View Single Post
pichlo's Avatar
Posts: 6,453 | Thanked: 20,983 times | Joined on Sep 2012 @ UK
#50
Originally Posted by viqtah View Post
/home/user # df
Filesystem 1k-blocks Used Available Use% Mounted on
rootfs 233104 228820 0 100% /
No space left in rootfs! No wonder you have problems. I bet most of it is taken up by /and.

/home/user # du -kx / | sort -n tail -n20
sort: invalid option -- 2
There is a pipe symbol ("|") missing between -n and tail.

/home/user # du -kx/home | sort -n | tail -n20
du: invalid option -- /
A space missing between -kx and /home.

Originally Posted by viqtah View Post
any idea unto how I can get rid of nitdroid?
Start with...
Code:
sudo gainroot
rm -rf /and
Be EXTREMELY careful to type it correctly. Mistyping may lead to rendering your phone completely unusable and having to reflash.

Once done, repeat the df and du commands from post #28, making sure you type them correctly this time.