Home > Operation and Maintenance > CentOS > How to clean centos garbage

How to clean centos garbage

WJ
Release: 2020-06-03 15:44:19
Original
12892 people have browsed it

How to clean centos garbage

How to clean centos garbage?

First check the disk space usage, use the df command:

df –TH
“dev/mapper/vg_co65-lv_root”这个分区已经使用了93%了。
Copy after login

Cleaning method:

1, cd /usr;

2. du -sh * (See which directory takes up more space);

3. Repeat the first two steps and delete or move it according to the actual situation;

4. Can you run the log?cat /dev/null > file.log"Clear;

5. Find large files (more than 100M)"find / - size 100M -exec ls -lh {} ;", move or uninstall according to the situation, the software package can be uninstalled with "rpm -e", and the file can be deleted with "rm -rf dir";

6. You can also use "du -h --max-depth=1 /path" to query the folder occupation and display the total space occupied by the directory, for example: " du -h --max-depth=1 /var”, when deleting files, be careful not to delete system files.

Related references: centOS tutorial

The above is the detailed content of How to clean centos garbage. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template