Linux教程

设置linux开机默认进入root用户

本文主要是介绍设置linux开机默认进入root用户,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

设置linux开机默认进入root用户

    • 进入root用户
    • 修改用户属性配置文件
    • 设置自动启动
    • 重启后重新登录

进入root用户

su命令输入密码后,先进入root用户,因为非root用户编辑文件保存时,会提示无法保存。

修改用户属性配置文件

vi /etc/gdm/custom.conf

设置自动启动

【daemon】下新增两行,设置自动启动,自动启动默认为True,用户为root

# GDM configuration storage

[daemon]
AutomaticLoginEnable=True
AutomaticLogin=root
[security]

[xdmcp]

[chooser]

[debug]
# Uncomment the line below to turn on debugging
#Enable=true

重启后重新登录

reboot重启服务,重新创建session登录,username为root,密码为自己设置的系统密码
在这里插入图片描述
成功登录,当前默认用户为root

[root@localhost ~]# who am i 
root     pts/1        2021-12-06 18:15 (192.168.43.1)
这篇关于设置linux开机默认进入root用户的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!