清理linux日志

清理linux日志_第1张图片
清理linux日志_第2张图片
清理linux日志_第3张图片

查找大文件
[root@test-os testuser]# df -h   ###查看所有block使用情况
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda3       8.8G  8.8G     0 100% /
tmpfs           931M     0  931M   0% /dev/shm
/dev/sda1       190M   40M  141M  22% /boot
[root@test-os testuser]# du -sh /usr/* |grep G  ###查找大文件
7.3G    /usr/local
[root@test-os testuser]# du -sh /usr/local/* |grep G
7.3G    /usr/local/bin
[root@test-os testuser]# du -sh /usr/local/bin/* |grep G
7.3G    /usr/local/bin/1g

[root@test-os testuser]# \rm -f /usr/local/bin/1g  ###删除大文件
[root@test-os testuser]# 
[root@test-os testuser]# df -h    ###接着查看发现已经解决
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda3       8.8G  1.5G  6.9G  18% /
tmpfs           931M     0  931M   0% /dev/shm
/dev/sda1       190M   40M  141M  22% /boot

你可能感兴趣的:(linux)