标签:前言 多次 chm included adduser lightdm for 设置密码 linux
前言:
要在Linux中运行管理任务,必须要具有root(也称为超级用户)访问权限。在大多数Linux发行版中,拥有一个单独的root账户是很常见的,但是Ubuntu默认禁用root账户。这可以防止用户出错,并防止系统受到入侵者的攻击。要运行需要root访问权限的命令,使用sudo。
ubuntu怎么切换到root用户,我们都知道使用su root命令,去切换到root权限,此时会提示输入密码,可是怎么也输不对,提示“Authentication failure”,
此时有两种情况一个是真的是密码错了,另一种就是刚安装好的Linux系统,没有给root设置密码。
给root用户设置密码:
命令:sudo passwd root
输入密码,并确认密码。
重新输入命令:su root
然后输入密码:
发现可以切换到root权限了。
方法一:
在命令前输入sudo。“Sudo”表示“代替用户做”。当你将sudo添加到命令的开头时,这条命令将在root权限下运行。
例如:sudo /etc/init.d/networking stop停止网络服务,sudo adduser向系统添加新用户。这两个任务都需要root访问权限。
在sudo运行这条命令前,会提示你输入密码。Linux会将你的密码保存15分钟,这样就不用一直输入密码了。
在运行命令打开使用“图形用户界面(GUI)”的程序之前,输入gksudo。出于安全考虑,Ubuntu不推荐使用“sudo”打开使用GUI的程序。而是在启动程序的命令前面输入gksudo。
例如:输入gksudo gedit /etc/fstab来打开GEdit中的“fstab”文件,GEdit是一个带有GUI的编辑程序。
如果你使用的是KDE Window Manager,用kdesudo,不要用gksudo。
模拟root环境。如果你是一个高级用户,需要访问实际的root shell(一种接口)来运行特定的脚本,使用sudo –i模拟root shell。这个命令将为你提供带有root环境变量的超级用户访问权限。
输入命令sudo passwd root。将会为root创建密码,本质上是“启用”这个账户。密码别忘了。
输入sudo -i。出现提示时输入root密码。
提示符将从$变为#,表示你具有root访问权限。
方法二:
ll /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
如果显示为-rw-r--r,表示文件只有只读权限
chmod 770 /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
vim /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
[Seat:*] autologin-guest=false autologin-user=root autologin-user-timeout=0
vi /root/.prpfile
在打开的编辑框输入i进入编辑模式,将以下命令复制到终端保存(按esc退出编辑模式,再按shit+:输入wq保存并退出)
#~/.profile:executed by Bourne-compatible login shells. if[ "$BASH" ]; then if[-f ~/.bashrc]; then . ~/.bashrc fi fi #mesg n || true 原来的 tty -s && mesg n || true #修改为
重启即可看到效果
若提示无vi命令,则需要执行以下命令安装(联网)vim包
sudo apt install vim 使用这个命令是下载gcc的命令----这个命令系统会自动去匹配与系统最适应的vim版本
# Please consider adding local content in /etc/sudoers.d/ instead of # directly modifying this file. # # See the man page for details on how to write a sudoers file. # Defaults env_reset Defaults mail_badpass Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" # Host alias specification # User alias specification # Cmnd alias specification # User privilege specification root ALL=(ALL:ALL) ALL username ALL=(ALL:ALL) ALL #username表示你需要设置root权限的用户名 # Members of the admin group may gain root privileges %admin ALL=(ALL) ALL # Allow members of group sudo to execute any command %sudo ALL=(ALL:ALL) ALL # See sudoers(5) for more information on "#include" directives: #includedir /etc/sudoers.d
注:本篇为博主阅读多篇文章多次尝试后总结,若转载,请标明来处,尊重劳动成果
标签:前言 多次 chm included adduser lightdm for 设置密码 linux
原文地址:https://www.cnblogs.com/wuhanjackh/p/12167172.html