I have installed Ubuntu 16.04 a month ago alongside Windows 10, so I don't know much about Ubuntu. I got the following error:
The computer has only 0 bytes disk space remaining.
The error says to remove unused programs or by moving files to external disk, but how do I do that?
Here is the output of df
:
Filesystem 1K-blocks Used Available Use% Mounted on
udev 3897864 0 3897864 0% /dev
tmpfs 785524 78192 707332 10% /run
/dev/sda6 190492356 181956696 0 100% /
tmpfs 3927612 364 3927248 1% /dev/shm
tmpfs 5120 4 5116 1% /run/lock
tmpfs 3927612 0 3927612 0% /sys/fs/cgroup
tmpfs 785524 32 785492 1% /run/user/1000
/dev/sda3 184319996 121988304 62331692 67% /media/fauad/649EEF6E9EEF3768
/dev/sda2 101887996 78061748 23826248 77% /media/fauad/A8A2E811A2E7E234
Here is the output of df -i
:
Filesystem Inodes IUsed IFree IUse% Mounted on
udev 974466 653 973813 1% /dev
tmpfs 981903 808 981095 1% /run
/dev/sda6 12107776 520795 11586981 5% /
tmpfs 981903 11 981892 1% /dev/shm
tmpfs 981903 5 981898 1% /run/lock
tmpfs 981903 17 981886 1% /sys/fs/cgroup
tmpfs 981903 23 981880 1% /run/user/1000
/dev/sda3 62397228 5078 62392150 1% /media/fauad/649EEF6E9EEF3768
/dev/sda2 24416072 521305 23894767 3% /media/fauad/A8A2E811A2E7E234
df
anddf -i
, and copy-and-paste the complete output of both commands into your question. – user535733 Sep 22 '18 at 15:54sudo apt autoremove
to get at least a bit free space. then install ncdu viasudo apt install ncdu
and runncdu /
. ncdu is a small interactive disk-usage helper. It might help understanding which folders are big ... and therefor be a good starting point – dufte Sep 25 '18 at 08:36