2021-05-12 14:32:11
Linux設定以root使用者開機自動登入桌面
Ubuntu 18.04 Linux系統下設定
1、 允許使用root使用者登入桌面
Ubuntu預設不允許使用root使用者登入桌面的,首先需要進行如下設定
編輯/usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf將該檔案的設定修改成如下
[Seat:*]
user-session=ubuntu
greeter-show-manual-login=true #在登入時允許使用者自己輸入使用者名稱和密碼
Ubuntu中的root使用者預設是沒有設定密碼的,所以還需要設定root密碼
sudo passwd root #在當前桌面登入的使用者下執行這條命令修改root密碼
[sudo] user 的密碼: #輸入當前登入使用者使用者user的密碼
輸入新的 UNIX 密碼: #輸入給root密碼
重新輸入新的 UNIX 密碼: #再次輸入root密碼
passwd:已成功更新密碼
2、 允許root開機自動登入桌面
再次編輯/usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf,在該檔案末尾新增如下兩行
allow-guset=flase #禁止訪客使用者登入
Autologin-user=root #指定root為自動登入使用者
編輯完成之後,還需要修改圖形桌面設定,編輯檔案/etc/gdm3/custom.conf,找到[daemon]項,將該項的設定修改至如下
[daemon]
AutomaticLoginEnable=true #啟用自動登入
AutomaticLogin=root #指定root使用者為自動登入使用者
3、 由於Ubuntu預設是禁止使用root使用者進行ssh遠端登入終端存取的,所以如果需要使用root登入ssh的話則需要再檔案中增加如下設定
PermitRootLogin yes
4、 重新啟動電腦生效
RedHat7.6系統下設定
相比與於Ubuntu系統,Redhat的設定就比較簡單了,只需要修改/etc/gdm/custom.conf檔案的[daemon]項設定,重新啟動後即可生效
[daemon]
AutomaticLoginEnable=True
AutomaticLogin=root
相關文章