linux用户管理

1、添加用户

adduser user1

2、设置密码

passwd user1

3、添加sudo权限

chmod u+w /etc/sudoers

vim /etc/sudoers

查找 root ALL=(ALL) ALL,在下面添加:user1 ALL=(ALL)ALL,保存退出

chmod u-w /etc/sudoers

4、赋予文件权限

chown user1:user1 file1

5、查看文件包含的所有组

cat /etc/group

6、查看系统存在的所有用户名

cat /etc/passwd

你可能感兴趣的:(linux,用户)