Ubuntu 配置单root用户登录具体方法

2023年 7月 17日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

Ubuntu 配置单root用户登录具体方法

本篇文章中重点为大家讲解一下Linux中配置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服务即可

本文来源:www.lxlinux.net/4811.html,若引用不当,请联系修改。

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: