【Linux 命令】添加用户


$ useradd -r -m -s /bin/bash ldy
$ passwd ldy
New passwd:
Retype new passwd:
passwd: password updated successfully


为用户赋予部分 sudo 权限

  • 用户:ldy
  • 命令权限:sudo mount

1, 用which 查看mount 命令的路径
$ which mount
/bin/mount
2, 用 sudoedit 编辑 /etc/sudoers
$ sudoedit /etc/sudoers
3, 打开 /etc/sudoers 文件后,添加如下内容
ldy ALL=(ALL) NOPASSWD:/bin/mount

NOPASSWD是为让用户在使用sudo时不需要输入密码

  • 脚本权限:/etc/init.d/nagios restart

1, 用which 查看mount 命令的路径
$ which mount
/bin/mount
2, 用 sudoedit 编辑 /etc/sudoers
$ sudoedit /etc/sudoers
3, 打开 /etc/sudoers 文件后,添加如下内容
lin ALL=NOPASSWD:/etc/init.d/nagios restart

为用户赋予全部 sudo 权限

  • 用户:ldy
  • 权限:sudo su

1, 用 sudoedit 编辑 /etc/sudoers
$ sudoedit /etc/sudoers
2, 打开 /etc/sudoers 文件后,添加如下内容
ldy ALL=(ALL) ALL


reference: https://blog.csdn.net/hgq522/article/details/121347540

原创文章,作者:bd101bd101,如若转载,请注明出处:https://blog.ytso.com/270590.html

(0)
上一篇 2022年6月28日
下一篇 2022年6月28日

相关推荐

发表回复

登录后才能评论