CentOS添加sudoers 1.chmod 740 /etc/sudoers 2. ## Allow root to run any commands anywhere root ALL=(ALL) ALL oracle ALL=(ALL) ALL aaa ALL=(ALL) ALL 3.chmod 440 /etc/sudoers
测试环境:CentOS 6.0 1.添加用户,首先用adduser命令添加一个普通用户,命令如下: #adduser tommy //添加一个名为tommy的用户 #passwd tommy //修改密码 Changing password for user tommy. New UNIX password: //在这里输入新密码 Retype new UNIX password: //再次输入新密码 passwd: all authentication tokens update
今天,我要描述的是如何在Centos Linux 系统中建立一个和Root账户等权限的用户账户.废话不多说,开始列出必要的操作. 1:首先,我们使用以下命令 进行用户的创建 和 用户密码的初始化. #adduser testuser//添加一个名为testuser的用户 #passwd testuser //修改密码 Changing password for user testuser. New UNIX password: //在这里输入新密码 Retype new UNIX passwor