1. 程式人生 > >例項:Ubuntu 配置單root使用者登入

例項:Ubuntu 配置單root使用者登入

環境搭建好後,用建立的使用者進入系統

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服務即可