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
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
1
回复
8111
查看
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.
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
2
8月 19
|
4504 | ||
|
2
9月 23
|
6987 | ||
|
4
5月 25
|
50344 | ||
|
6
12月 23
|
46672 | ||
|
3
10月 21
|
18873 |