rizhas@rizhas-laptop:~$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda7 67G 58G 5,2G 92% /
none 4,0K 0 4,0K 0% /sys/fs/cgroup
udev 1,5G 12K 1,5G 1% /dev
tmpfs 303M 1,2M 302M 1% /run
none 5,0M 0 5,0M 0% /run/lock
none 1,5G 348K 1,5G 1% /run/shm
none 100M 80K 100M 1% /run/user
overflow 1,0M 1,0M 0 100% /tmp
overflow 1,0M 1,0M 0 100% /tmp
How to clean up /tmp
?
/tmp is supposed to be cleaned up on reboot, but if you don't reboot (which is normal for servers), clean up will not happen
find /tmp -ctime +10 -exec rm -rf {} +
will delete all files and folders older than 10 days. you may want to add it to the daily cron.
UPDATE
In comments below @sfussenegger recommends a slightly different format of this command that may be better suited to your needs and to the system you're operating on.
sudo find /tmp -type f -atime +10 -delete
Here the command is using
sudo
to make sure everything is deleted (or you could run it as root), operating on files that haven't been accessed for more than 10 days and only deletes files, not folders. It also uses-delete
to avoid having to executerm
commandYou can assume that anything inside a tmp directory (/tmp/ /usr/tmp etc) can be deleted. BEFORE you start deleting stop all programs and services you are using since /tmp/ can be used by programs to temporarily store information for that session. So do a
sudo service mysql stop
andsudo service apache2 stop
if you have a mysql and/or apache running. The name of the files in the /tmp/ directory most times give a clue to what program they belong.So from command line...
will empty the /tmp/ directory and remove all files and subdirectories. Be careful to type it correctly. The command
pwd
in there is not necessary but should show/tmp
.If you want it interactively (so you need to confirm deleting):
Also worth noting that a reboot will clear /tmp aswell as shown here: How is the /tmp directory cleaned up? So if /tmp/ is full of files after a reboot you need to investigate where those files originate from.
I also would like to state that 1 Mb for /tmp is not a lot of space. Are you using MySQL? See https://unix.stackexchange.com/a/76058/10017 on how to fix this (thanks @drc)
The
tmpreaper
program can be used to clean up /tmp periodically. This program deletes everything that has not been accessed in a given timeframe, typically two weeks. For this to work properly, the filesystem it is on should have theatimes
option enabled. If you use a tmpfs, which it appears you are doing, then you should be fine.Of course, rebooting also clears /tmp, but that would be boring.
The directory
/tmp
means temporary.This directory stores temporary data. You don't need to delete anything from it, the data contained in it gets deleted automatically after every reboot.
Still if you want to delete the data present in it use
sudo rm -r /tmp/*
deleting from it won't cause any problem as these are temporary files.
Be careful before running a command like
rm -r ./*
. Once you run it, it will be very difficult or impossible to recover any data.All will be removed. Make sure that the directory you are deleting in is right.
There is a safer way to handle things.
That way, when you accidentally run this command from inside your shell
history
, it won't delete the wrong files (unless you're keeping them in/tmp
).The
/tmp
directory was cleared by default at every boot, becauseTMPTIME
is0
by default.If your “/tmp” mount on a linux filesystem is mounted as overflow (often sized at 1MB), this is likely due to you not specifying “/tmp” as its own partition and your root filesystem filled up and “/tmp” was remounted as a fallback. To fix this after you’ve cleared space, just unmount the fallback and it should remount at its original point:
if device is busy use
Here's what worked for me:
sudo reboot
After a runaway process filled up my drive through the
/tmp
directory, I too consideredrm -rf /tmp/*
but instead just rebooted anddf
of my root directory went from99%
full to77%
full.Ye ol' adage strikes again: "Did you turn it off and then on again?"
use built-in
tmpfiles.d
instead of. Check this answer: https://askubuntu.com/a/857154/453746