Linux 命令整理
一、centos7 命令整理
1、CentOS關閉休眠和屏保模式 方法一: #xset s 300 #設置屏保時間為300秒,時間單位為秒 #xset s 0 #關閉屏幕保護 #xset dpms 0 0 0 # 三個數(shù)值分別為Standby、Suspend、Off,單位秒 #xset -dpms #關閉電源管理 方法二: vim /etc/X11/xorg.conf Section “ServerFlags” Option “BlankTime” “0″ #關閉黑屏 Option “StandbyTime” “0″ #關閉待機功能 Option “SuspendTime” “0″ #關閉睡眠功能 Option “OffTime” “0″ EndSection -------------------------------------------------------------------------------------------
2、centos7 關閉圖形界面級啟動圖形界面
方法一:
vim /etc/inintab
#mv /etc/systemd/system/default.target /etc/systemd/system/default.target.bak? ?? ?? ?(改名備份)
# ln -sf /lib/systemd/system/multi-user.target /etc/systemd/system/default.target? ?? ?(重新軟連接文本界面為啟動默認值界面)
#systemctl reboot? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?(重啟)?
恢復圖形界面
#rm -rf??/etc/systemd/system/default.target? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ? (移除當前配置鏈接)
#mv??/etc/systemd/system/default.target.bak /etc/systemd/system/default.target? ?? ? (恢復備份配置鏈接)
#systemctl reboot? ??
方法二:?
systemctl set-default multi-user.target //命令模式
systemctl set-default graphical.target ??? //圖形模式
-------------------------------------------------------------------------------------------
3、 centos7 power_button 處理問題
參考出處:https://feichashao.com/rhel7_power_button/
1) centos7? 圖形界面? poweroff_button?? 默認為‘suspend’模式。? 設置關機模式需要修改配置文件。
(1)創(chuàng)建 /etc/dconf/db/local.d/00-power 文件,寫入以下內容:
[org/gnome/settings-daemon/plugins/power]
button-power='shutdown'
(2) 創(chuàng)建/etc/dconf/db/local.d/locks/power 文件,寫入以下內容:
/org/gnome/settings-daemon/plugins/power/button-power
(3) 更新 dconf:
# dconf update
2) centos7 字符界面 poweroff_button? 默認為 ‘poweroff’? 模式
更改方式需要修改以下配置信息: vim /etc/systemd/logind.conf
上一個教程:linux常用基本命令
下一個教程:linux每日命令(10):touch命令