zoukankan      html  css  js  c++  java
  • linux查看硬盘空间,删除大文件

    df -Ph
    du -h --max-depth=1

    du -ah /var 2> /dev/null | sort -rh | head -10
    du -sh /u02/weblogic/user_projects/domains/logs
    du -sh /u02/mysql
    find / -size +1G
    PURGE MASTER LOGS TO 'mysql-bin.000010';

     du -h | sort -rn | head

    find / -type f -size +50M -name "tempest-app-report*" -maxdepth 3 2>/dev/null

    find / -type f -size +3G -print0 | xargs -0 du -h | sort -nr | 2> /dev/null

    find / -type f -size +3G 2> /dev/null

    hostname

    firatessim1u

    du -ah /var 2> /dev/null | sort -rh | head -10

  • 相关阅读:
    数据库 mysql 语句
    document对象
    javascript
    css样式表及属性
    css格式布局
    html 标签
    html 标签
    第四章
    第三章
    第二章
  • 原文地址:https://www.cnblogs.com/tonggc1668/p/8024888.html
Copyright © 2011-2022 走看看