Ubuntu 系統增加root使用者登入
然後執行: vim /etc/lightdm/lightdm.conf 修改配置檔案
手動輸入密碼才能登入
[SeatDefaults]
greeter-session=unity-greeter
user-session=ubuntu
greeter-show-manual-login=true #手工輸入登陸系統的使用者名稱和密碼
allow-guest=false #不允許guest登入
不用輸入密碼直接登入
[SeatDefaults]
allow-guest=false
autologin-user=root
autologin-user-timeout=0
autologin-session=lightdm-autologin
user-session=ubuntu
greeter-session=unity-greeter
然後我們啟動root帳號:
sudo passwd root
根據提示輸入roott帳號密碼。
重啟ubuntu,不需要手動輸入root使用者名稱密碼,系統會自動進入root使用者。
在剛修改完root許可權自動登入後,發現開機出現以下提示:
Error found when loading /root/.profile
stdin:is not a tty
…………
解決方法:在終端中用命令gedit /root/.profile,開啟檔案後找到“mesg n”,
#mesg n || true
在後面加上“tty -s && mesg n”。