linux用户和文件目录管理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux用户和文件目录管理相关的知识,希望对你有一定的参考价值。

Linux用户及权限管理


用户管理 

多用户多任务的操作系统 


用户类型

管理员用户 root

普通用户

系统用户/程序用户


用户相关的文件:


/etc/passwd 用户信息 

格式:

用户名:x:UID:GID:说明信息:SHELL

UID:

1000---60000

0---999 系统用户 

SHELL:

/bin/bash 默认 

/sbin/nologin 系统用户 

/etc/shadow 用户密码信息



用户:

基本组

附加组 用户userA -----> 用户组userA;    caiwu, shichang, jishu, yanfa 



1、创建用户 


# useradd [option] 用户名称


option选项:



1) -u UID 指定用户的uid


[[email protected] ~]# useradd -u 2000 user2

[[email protected] ~]# id user2

uid=2000(user2) gid=2000(user2) 组=2000(user2)

[[email protected] ~]# 


2) 指定用户的基本组、附加组


-g gid/组名称

-G gid/组名称,... 


[[email protected] ~]# groupadd caiwu

[[email protected] ~]# useradd -g user1 -G caiwu user3

[[email protected] ~]# 

[[email protected] ~]# id user3

uid=2001(user3) gid=1001(user1) 组=1001(user1),2001(caiwu)



3) 指定用户shell名称 


-s shell名称

-M 不创建宿主目录 


[[email protected] ~]# useradd -s /sbin/nologin -M apache



4) 创建系统用户


-r 


[[email protected] ~]# useradd -r mysql



5) 指定用户的宿主目录 


[[email protected] ~]# useradd -d /tmp/hadoop hadoop



2、切换用户


# su - 用户名称



3、查看用户id信息


[[email protected] ~]# id user1

uid=1001(user1) gid=1001(user1) 组=1001(user1)



[[email protected] ~]# id user3

uid=2001(user3) gid=1001(user1) 组=1001(user1),2001(caiwu)


[[email protected] ~]# id -u user3

2001

[[email protected] ~]# id -g user3

1001

[[email protected] ~]# id -G user3

1001 2001


[[email protected] ~]# id -u -n user3

user3

[[email protected] ~]# id -g -n user3

user1

[[email protected] ~]# id -G -n user3

user1 caiwu

[[email protected] ~]# 



4、设置用户密码 


# passwd [option] [用户名称]


[[email protected] ~]# passwd user1


1) 查看用户密码状态


[[email protected] ~]# passwd -S user1

user1 PS 2017-04-11 0 99999 7 -1 (密码已设置,使用 SHA512 算法。)


2) 锁定用户密码(不能登录)


[[email protected] ~]# passwd -l user1

锁定用户 user1 的密码 。

passwd: 操作成功

[[email protected] ~]# passwd -S user1

user1 LK 2017-04-11 0 99999 7 -1 (密码已被锁定。)


3) 解锁用户密码


[[email protected] ~]# passwd -u user1

解锁用户 user1 的密码。

passwd: 操作成功

[[email protected] ~]# passwd -S user1

user1 PS 2017-04-11 0 99999 7 -1 (密码已设置,使用 SHA512 算法。)

[[email protected] ~]# 


4) 强制用户密码过期


[[email protected] ~]# passwd -e user1

正在终止用户 user1 的密码。

passwd: 操作成功



5、修改用户信息


# usermod [option] 用户名称


-u UID 

-g 组名称

-G 组名称

-s shell名称

[[email protected] ~]# usermod -aG caiwu user3

[[email protected] ~]# id user3

uid=2001(user3) gid=1001(user1) 组=1001(user1),2001(caiwu),2004(shichang)



6、删除用户


# userdel [option] 用户名称 


[[email protected] ~]# userdel user1


[[email protected] ~]# userdel -r user2 >>>同时删除用户的宿主目录



用户组管理


1、创建用户组


# groupadd 用户组名称 


2、删除用户组 


# groupdel 用户组名称 



[[email protected] ~]# groupadd jishu

[[email protected] ~]# useradd tom

[[email protected] ~]# useradd mike

[[email protected] ~]# useradd jerry


[[email protected] ~]# usermod -G jishu tom

[[email protected] ~]# usermod -G jishu jerry

[[email protected] ~]# usermod -G jishu mike

 

[[email protected] ~]# grep "jishu" /etc/group

jishu:x:2005:tom,jerry,mike


[[email protected] ~]# gpasswd -d tom jishu

正在将用户“tom”从“jishu”组中删除


[[email protected] ~]# grep "jishu" /etc/group

jishu:x:2005:jerry,mike

[[email protected] ~]# 





用户操作环境配置文件:


从/etc/skel目录复制而来


[[email protected] ~]# ls -a /home/userA/

.  ..  .bash_logout  .bash_profile  .bashrc  .mozilla



.bashrc 打开新终端 /etc/bashrc

.bash_profile 用户登录系统 /etc/profile

.bash_logout 注销系统



示例:设置命令别名 


# alias 命令别名=‘命令‘


针对单个用户设置别名:


[[email protected] ~]# vim /home/userA/.bashrc 

alias ipshow=‘cat /etc/sysconfig/network-scripts/ifcfg-eth0‘


[[email protected] ~]# source /home/userA/.bashrc



针对所有用户设置别名:


[[email protected] ~]# vim /etc/bashrc 

alias ipshow=‘cat /etc/sysconfig/network-scripts/ifcfg-eth0‘


[[email protected] ~]# source /etc/bashrc 







文件目录权限管理


常规权限:

r read 读取 4

w write 写入 2

x execute 执行 1


文件:

r 查看文件内容(cat/more/less/head/tail/grep)

w 编辑文件内容(vim)

x shell/python脚本

目录:

r 查看目录下的文件(ls /tmp)

w 修改目录下的文件(新建、删除、mv)

x 切换目录(cd)



查看文件权限


[[email protected] ~]# ls -l /etc/fstab 

-rw-r--r--. 1 root root 465 7月  28 2016 /etc/fstab



查看目录权限 


[[email protected] ~]# ls -ld /etc/

drwxr-xr-x. 136 root root 8192 4月  11 13:48 /etc/



设置文件目录权限 


1) chmod 修改权限


# chmod {augo}{+-=}{rwx} 文件名称 


a all 所有

u user 属主用户

g group   属组

o other 其他


[[email protected] ~]# chmod a+x /test/1.txt 

[[email protected] ~]# chmod g=rw /test/3.txt 



# chmod nnn 文件名称 


[[email protected] ~]# chmod 600 /test/4.txt 



2) 修改文件的属主、属组 


# chown 用户名称.用户组名称  文件名称 


[[email protected] ~]# chown user1.caiwu /test/1.txt 


[[email protected] ~]# chown user1 /test/2.txt 


[[email protected] ~]# chown root.caiwu /test/4.txt 


仅修改属组:


# chgrp 用户组名称 文件名称 


[[email protected] ~]# chgrp caiwu /test/3.txt 



方法2) facl ---- 文件访问控制列表 


设置权限:


针对单个用户设置权限 


# setfacl -m u:用户名:权限 文件名称 


[[email protected] ~]# setfacl -m u:user4:r /test/3.txt 


[[email protected] ~]# getfacl /test/3.txt 

getfacl: Removing leading ‘/‘ from absolute path names

# file: test/3.txt

# owner: user1

# group: user3

user::rw-

user:user4:r--

group::rwx

mask::rwx

other::r-x



针对单个用户组设置权限 


# setfacl -m g:用户组名称:权限 文件名称 



删除facl权限


针对单个用户删除权限


# setfacl -x u:用户名  文件名称 


[[email protected] ~]# setfacl -x u:user4 /test/3.txt 


针对单个用户组删除权限


# setfacl -x g:用户组名称 文件名称 



特殊权限:

suid 4

sgid 2

sticky bit 1 # chmod 644 file01 # chmod 6644 file02   # chmod 2700 


1、suid


作用:普通用户在执行命令期间,会临时获取到命令属主用户对操作系统的权限 


[[email protected] ~]# ls -l /usr/bin/passwd 

-rwsr-xr-x. 1 root root 27832 6月  10 2014 /usr/bin/passwd


设置suid权限 

# chmod u+s 文件名称 



2、sgid


针对目录设置 

作用:目录拥有sgid权限后,在目录下新创建的文件会继承目录的属组信息

设置sgid权限 


# chmod g+s 目录名称 


[[email protected] ~]# ls -ldh /linux/

drwxr-sr-x. 2 root caiwu 18 4月  11 15:37 /linux/

3、sticky bit 


针对目录设置 

作用: 

只有目录下文件的属主用户、目录属主用户及root可删除该文件 


[[email protected] ~]# ls -ldh /tmp/

drwxrwxrwt. 8 root root 4.0K 4月  11 15:45 /tmp/


设置sticky bit权限 


# chmod o+t 目录名称 


chmod, chown, chgrp, setfacl 


共同选项:-R 


本文出自 “lyw666” 博客,请务必保留此出处http://lyw666.blog.51cto.com/12823216/1957697

以上是关于linux用户和文件目录管理的主要内容,如果未能解决你的问题,请参考以下文章

Linux修改文件或目录所属用户和组

linux文件和目录操作

linux创建一个用户怎么给他创建文件的权限?

如何更改linux文件目录拥有者及用户组

Linux 目录和文件管理

linux用户文件放在啥地方