Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
8256 Переглядів

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

Аватар
Відмінити
Найкраща відповідь

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.


Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
2
серп. 19
4600
2
вер. 23
7141
4
трав. 25
51331
6
груд. 23
46876
3
жовт. 21
19102