View Single Post
wicket's Avatar
Posts: 634 | Thanked: 3,266 times | Joined on May 2010 @ Colombia
#5
Apps share the 2GB /home partition with other stuff so something else is probably using up the disk space. For example, Modest, the default email app stores emails under /home. Run the following command to find out where your space under /home has gone:

Code:
du -m /home | grep -vi mydocs | sort -n
It is better to run this as root as you may not permission on to read all directories but it sounds like you don't have rootsh/sudser installed. You should hopefully be able to get some idea without running as root, otherwise you will need to install rootsh/sudser.

Sizes are in MB. The last few lines should show you which directories are using up the disk space. Remember though that the /home and /home/user totals (most likely to be the last two lines) will include MyDocs in their disk usage.
 

The Following User Says Thank You to wicket For This Useful Post: