Results 1 to 5 of 5

Thread: [SOLVED] where did hard drive space go?

  1. #1
    Join Date
    May 2006
    Beans
    Hidden!

    [SOLVED] where did hard drive space go?

    For some reason my drive is reporting 51GB of used space, but only 29GB of files? What gives?

    There's nothing in my trash. And there are no other drives attached.
    Attached Images Attached Images

  2. #2
    Join Date
    Jan 2008
    Beans
    636
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: where did hard drive space go?

    are you using vmware server or some other VM software? they somtimes clog up hard disk space

  3. #3
    Join Date
    Jun 2008
    Location
    England
    Beans
    2,568

    Re: where did hard drive space go?

    Nothing in your user trash but how about other users or roots trash?

    Run the following command in terminal and wait for the output, it will give you location of trash dirs

    Code:
    sudo find / -type d -iname *Trash* | grep Trash
    Then navigate to them using nautilus example to root trash is below

    Code:
    sudo nautilus /root/.local/share/Trash/
    Also sometimes you may have trouble deleting files using nautilus, if so you could run this command but be sure you dont need anything in your trash!

    Code:
    sudo rm -rf /root/.local/share/Trash/files
    Also df is much better than disk analyzer for correct disk usage

    Code:
    df
    Last edited by tuxxy; October 6th, 2008 at 11:47 PM.

  4. #4
    Join Date
    May 2006
    Beans
    Hidden!

    Re: where did hard drive space go?

    If I start nautilus with sudo and go to the root trash folder nautilus hangs and says it can't read the contents or something like that, so I assume that's the problem. Will try from the command line...

    edit -- Awesome, 'sudo rm -rf /root/.local/share/Trash/files' did it! Thanx!
    Last edited by stewacide; October 7th, 2008 at 12:13 AM.

  5. #5
    Join Date
    Jun 2008
    Location
    England
    Beans
    2,568

    Re: where did hard drive space go?

    Glad it worked out you can mark the thread solved aswell now

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •