zoukankan      html  css  js  c++  java
  • 【转】Linux下如何清除系统日志

    使用过Windows的人都知道,在使用windows系统的过程中系统会变得越来越慢。而对于Windows下饱受诟病的各种垃圾文件都需要自己想办法删除,不然系统将会变得越来越大,越来越迟钝!windows怎么清理垃圾相信大家都知道的,那么linux下怎么清理系统垃圾呢?

    Linux的文件系统比Windows的要优秀,不会产生碎片,对于长时间运行的服务器来说尤为重要,而且Linux系统本身也不会像Windows一样产生大量的垃圾文件。不知道这个说法有没有可信度!至少我们可以确定的是linux系统的文件系统是比较优秀的!

    错误

    1. rm -f logfile 

    原因

    应用已经打开文件句柄,直接删除会造成:

    1.应用无法正确释放日志文件和写入

    2.显示磁盘空间未释放

    正确

    1. cat /dev/null > logfile 

    把一下代码保存为.sh后缀脚本来运行即可清除Linux系统日志

    1. #!/bin/sh  
    2.  
    3. cat /dev/null > /var/log/syslog  
    4.  
    5. cat /dev/null > /var/adm/sylog  
    6.  
    7. cat /dev/null > /var/log/wtmp  
    8.  
    9. cat /dev/null > /var/log/maillog  
    10.  
    11. cat /dev/null > /var/log/messages  
    12.  
    13. cat /dev/null > /var/log/openwebmail.log  
    14.  
    15. cat /dev/null > /var/log/maillog  
    16.  
    17. cat /dev/null > /var/log/secure  
    18.  
    19. cat /dev/null > /var/log/httpd/error_log  
    20.  
    21. cat /dev/null > /var/log/httpd/ssl_error_log  
    22.  
    23. cat /dev/null > /var/log/httpd/ssl_request_log  
    24.  
    25. cat /dev/null > /var/log/httpd/ssl_access_log 

    另外清理linux系统垃圾还有以下命令

    sudo apt-get autoclean 清理旧版本的软件缓存

    sudo apt-get clean 清理所有软件缓存

    sudo apt-get autoremove 删除系统不再使用的孤立软件

  • 相关阅读:
    Android Activity的事件分发机制-源码解析
    Android ViewGroup的事件分发机制-源码分析
    Android View的事件分发机制-源码解析
    Activity中的setContentView(R.layout.xxx)源码分析
    android 6.0动态权限的申请
    java 回行矩阵的打印
    Masonry解析ios屏幕适配
    CollectionsUtil 类
    Request.url请求路径的一些属性
    .net中HttpCookie使用
  • 原文地址:https://www.cnblogs.com/dsc65749924/p/6117494.html
Copyright © 2011-2022 走看看