美文网首页
CentOS7取消服务器自动休眠

CentOS7取消服务器自动休眠

作者: 阿汤哥_8d27 | 来源:发表于2023-02-08 11:36 被阅读0次

    CentOS作为服务器操作系统,默认会自动休眠的设定有点匪夷所思。
    手动关闭自动休眠的方法如下:

    [root@CentOS ~]# vi /etc/X11/xorg.conf
    Section "ServerFlags"
            Option "BlankTime"   "0"   #关闭黑屏 
            Option "StandbyTime" "0"   #关闭待机
            Option "SuspendTime" "0"   #关闭睡眠
            Option "OffTime"     "0"
    EndSection
     
    Section "Monitor"
            Option "DPMS" "false"
    EndSection
    [root@CentOS ~]# reboot
    
    

    相关文章

      网友评论

          本文标题:CentOS7取消服务器自动休眠

          本文链接:https://www.haomeiwen.com/subject/wgdqkdtx.html