shell命令
sudo vim usr/share/lightdm.conf.d/50-ubuntu.conf //編輯器不限
[SeatDefaults]
user-session=ubuntu
greeter-show-manual-login=true #手工輸入登錄系統的賬號密碼
allow-guest=false #禁止guest登錄
修改root密碼
sudo passwd root
修改/root/.profile
sudo vim /root/.profile //root首次登錄會報錯解決方法
# ~/.profile: executed by Bourne-compatible login shells.
if [ "$BASH" ]; then
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
fi
#mesg n 註釋掉mesg n 增加一行tty -s && mesg n
tty -s && mesg n
修改ssh配置文件允許root登錄
sudo vim /etc/ssh/sshd_config
#permitRootLogin without-password 註釋掉這行,新增下面一行
permitRootLogin yes
重啟ssh服務即可
閱讀更多 IT生涯 的文章