• 脚本_修改 Linux 系统的最大打开文件数量


    #!bin/bash
    #作者:liusingbon
    #功能:修改 Linux 系统的最大打开文件数量
    #追加两行配置参数到文件/etc/security/limits.conf的末尾,修改最大打开文件数量为 65536
    cat >> /etc/security/limits.conf <<EOF
    * soft nofile 65536
    * hard nofile 65536
    EOF

  • 相关阅读:
    bzoj1221
    hdu3377
    bzoj3930
    bzoj3976
    bzoj4237
    fzu1977
    hdu1693
    ural1519
    bzoj1264
    回答自己的提问
  • 原文地址:https://www.cnblogs.com/liusingbon/p/11128491.html
Copyright © 2020-2023  润新知