So this morning I turned on my Acer C710 running ChrUbuntu 12.04.4 LTS (I like this version better than the newer updated ones.) and the screen says that "The system is running in low graphics mode".
I ran this script:
df -h
And got this:
Filesystem Size Used Avail Use% Mounted on
/dev/sda7 9.0G 8.6G 0 100% /
devtmpfs 936M 4.0K 936M 1% /dev
none 188M 704K 187M 1% /run
none 5.0M 0 5.0M 0% /run/lock
none 937M 0 937M 0% /run/shm
overflow 1.0M 4.0K 1020K 1% /tmp
Then I tried to delete directories by running this:
To free space you can:
sudo apt-get autoclean
Look for large directories with:
sudo du -sc /*/* |sort -g
and delete unwanted content
3.Clean your home directory using a combination of
cd ~
du -sc * |sort -g
rm myLargeFile
I keep getting an error that I cannot delete my desktop, downloads, and pictures because they are directories. Why??? Where do I go from here? Can I salvage any documents?
Thanks guys