Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
1 Svar
7936 Visninger

After installing the software odoo 12, I have a small problem. Temporary directories are full. To give you an idea, the server is 90 giga, and I have 73 gigabytes of temporary files. Can I delete them without any problem? 
How is it possible ? Temporary files do not empty automatically

Avatar
Kassér
Bedste svar

Folder /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.

sudo find /tmp -type f -atime +14 -delete

will delete all files older than 14 days.

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.


Avatar
Kassér
Related Posts Besvarelser Visninger Aktivitet
2
aug. 19
4361
2
sep. 23
6810
4
maj 25
49442
6
dec. 23
46354
3
okt. 21
18541