I'm running a Ubuntu server and this evening since rebooting it I am not getting the error message Cannot write to '' (No space left on device)
.
Earlier I did unzip a large directory in to /root
which created around 100 files, I then removed these using rm /root/*
. I did check ls
prior to doing this and the only files in /root
were the actual ones that I wanted to remove. Did I do something wrong here?
Here are some outputs:
df -h
root@localhost:~# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/xvda 47G 47G 0 100% /
none 4.0K 0 4.0K 0% /sys/fs/cgroup
devtmpfs 494M 8.0K 494M 1% /dev
none 99M 192K 99M 1% /run
none 5.0M 0 5.0M 0% /run/lock
none 495M 0 495M 0% /run/shm
none 100M 0 100M 0% /run/user
df -i
root@localhost:~# df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/xvda 3129344 52147 3077197 2% /
none 126527 2 126525 1% /sys/fs/cgroup
devtmpfs 126232 1410 124822 2% /dev
none 126527 792 125735 1% /run
none 126527 4 126523 1% /run/lock
none 126527 1 126526 1% /run/shm
none 126527 2 126525 1% /run/user
du -Pshx /* 2>/dev/null
root@localhost:~# du -Pshx /* 2>/dev/null
9.1M /bin
4.0K /boot
4.0K /dev
6.8M /etc
31M /home
29M /lib
4.0K /lib64
16K /lost+found
8.0K /media
4.0K /mnt
4.0K /opt
0 /proc
76K /root
192K /run
7.6M /sbin
4.0K /srv
0 /sys
12K /tmp
611M /usr
541M /var
Can someone please suggest something here, as I'm out of ideas?