Linux 赋予用户 root 权限,设置 root 密码

问题引出:天大寒,砚冰坚,手指不可屈伸,大冷天的懒得输sudo的密码。。。

🎈赋予用户 root 权限

查看用户名

whoami

改写入权限

千万不要使用 sudo chmod 777 /etc/sudoers

否则会触发linux的保护而报错:sudo: /etc/sudoers is world writable

  • 正确方法:
sudo chmod u+w /etc/sudoers

编辑 /etc/sudoers

sudo vim /etc/sudoers
  • 在 root 的下方写入 [用户名] ALL=(ALL:ALL) ALL
  • 免密码登陆的话使用 [用户名] ALL=(ALL:ALL) NOPASSWD:ALL

-

关闭写入权限

sudo chmod u-w /etc/sudoers

附:改写 root 密码

sudo passwd root

⚡⚡⚡ OVER ⚡⚡⚡