View Single Post
Posts: 2,102 | Thanked: 1,937 times | Joined on Sep 2008 @ Berlin, Germany
#31
Try to find, 'what is yours', to eliminate some file the hard way, BUT please keep track of what you move.

First make sure, that your data partition is mount and working. The command
Code:
mount
must have a line like this
/dev/mmcblk0p1 on /home/user/MyDocs type vfat (rw,noauto,nodev,exec,nosuid,noatime,nodiratime,ut f8,uid=29999,shortname=mixed,dmask=000,fmask=0000, rodir)
Then find and sort everything that is belonging to the user.
Code:
find / -xdev -path /proc -prune -o -user user > /home/user/user.txt
du -a $(</home/user/user.txt) | sort -n | tail -20
Note: These are two lines of code, not more!
 

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