I know there are lots of posts on in the stack exchange web with problems similar to mine but I have not found one that quite helps yet. As you can see from the output below df
shows my /tmp
directory to be completely full. This has happened to me before in the past and it was easy to spot the large file(s) causing the problem.
$ df -h /tmp/
Filesystem Size Used Avail Use% Mounted on
- 1.0M 1.0M 0 100% /tmp
This time there are no large files, in fact du
and ls
will confirm this
$ du -h /tmp/
0 /tmp/.ICE-unix
0 /tmp/.X11-unix
56K /tmp/
$ ls -lahtr
total 60K
drwxrwxrwt 2 root root 40 Mar 7 22:17 .X11-unix
drwxrwxrwt 2 root root 40 Mar 7 22:17 .ICE-unix
-rw------- 1 root root 1 Mar 9 09:37 fileVZLNrC
-rw------- 1 root root 0 May 1 14:02 file6lz1VS
-rw------- 1 root root 0 May 1 14:28 file7ELZD8
drwxr-xr-x 24 root root 4.0K Jun 27 10:45 ..
-rw-rw-r-- 1 vlc vlc 0 Jun 27 21:02 camp_report_log2
-rw-rw-r-- 1 vlc vlc 36 Jun 28 06:00 usage
-rw-rw-r-- 1 vlc vlc 0 Jun 28 06:00 load_span
-rw-r--r-- 1 root root 1 Jun 28 15:57 voa_somali.log
-rw-r--r-- 1 root root 1 Jun 28 15:57 vision_pm.log
-rw-r--r-- 1 root root 1 Jun 28 15:57 vision_am.log
-rw-r--r-- 1 root root 1 Jun 28 15:57 sc_serv.log
-rw-r--r-- 1 root root 1 Jun 28 15:57 scoop.log
-rw-r--r-- 1 root root 1 Jun 28 15:57 ranmase.log
-rw-r--r-- 1 root root 1 Jun 28 15:57 okazyon.log
-rw-r--r-- 1 root root 1 Jun 28 15:57 n4e.log
-rw-r--r-- 1 root root 1 Jun 28 15:57 kiskeya_sunday.log
-rw-r--r-- 1 root root 1 Jun 28 15:57 intersection.log
-rw-r--r-- 1 root root 1 Jun 28 15:57 ghana.log
-rw-r--r-- 1 root root 1 Jun 28 15:57 bbc_somali.log
drwxrwxrwt 4 root root 440 Jun 28 15:57 .
So I am still getting errors like these
$ crontab -e
/tmp/crontab.0kGihV/crontab: No space left on device
$ echo 'test' | mail -s 'test' user@mail.com
mail: cannot send message: No space left on device
What else could casue the /tmp
dir to fill?