1. 程式人生 > >centos 配置IP和解除自動待機休眠

centos 配置IP和解除自動待機休眠

發現了個常見的問題就是會自動休眠,我是插上顯示器才發現的,本來在桌面環境下我是配置好的,但結果還是發生了,再次網上搜索結果後才找到解決方法

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

重啟伺服器,沒再發生長時間不用,就連不上的情況了,這個檔案不能出什麼錯誤,否則系統可能會起不來,所以配置的時候要格外小心。