1. 程式人生 > >ubuntu16.04預設使用root使用者登入

ubuntu16.04預設使用root使用者登入

在workstations中安裝了一個ubuntu16.04玩玩,但是每次需要許可權執行什麼操作的時候總是需要登入一遍root使用者,很麻煩。下面講講怎麼讓系統預設登入root使用者吧!

剛安裝的ubuntu16.04系統的root使用者是沒設定密碼的
第一步我們先給root使用者設定一個密碼:

sudo passwd root

輸入sudo passwd root然後輸入兩次自己要設定的密碼就可以了。

第二步是在配置檔案裡設定root自啟
編輯 /etc/lightdm/lightdm.conf 檔案

sudo gedit  /etc/lightdm/lightdm.conf

[Seat:*]
autologin-guest=false
autologin-user=root autologin-user-timeout=0 greeter-session=lightdm-gtk-greeter

編輯/root/.profile檔案,增加tty -s &&:

sudo gedit /root/.profile 

# ~/.profile: executed by Bourne-compatible login shells.

if [ "$BASH" ]; then
  if [ -f ~/.bashrc ]; then
    . ~/.bashrc
  fi
fi

tty -s && mesg n || true

第三步:重啟系統即可。