查看sudo是否安装:
修改/etc/sudoers文件,修改命令必须为visudo才行
在root ALL=(ALL) ALL 之后增加
1 2
| tom ALL=(ALL) ALL Defaults:tom timestamp_timeout=-1,runaspw
|
1 2 3
| 增加普通账户tom的sudo权限 timestamp_timeout=-1 只需验证一次密码,以后系统自动记忆 runaspw 需要root密码,如果不加默认是要输入普通账户的密码
|
修改普通用户的.bash_profile文件
vi /home/tom/.bash_profile
在PATH变量中增加
/sbin:/usr/sbin:/usr/local/sbin:/usr/kerberos/sbin
1 2 3 4 5 6 7 8
| $ cat .bash_profile # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # User specific environment and startup programs PATH=$PATH:$HOME/bin:/sbin:/usr/sbin:/usr/local/sbin:/usr/kerberos/sbin
|
原文地址:CentOS普通用户增加sudo权限的简单配置