用户的额角色是通过UID和GID识别的
UID:身份证
GID:所在的家庭或学校
用户分三类:
1、超级用户:root UID=0 GID=0
只要UID=0,那么该用户就是root,可把wuyike在/etc/passwd中将uid、gid改成0,在命令行中whoami,显示root
2、虚拟用户
存在linux中,满足文件或程序运行的需要而创建的,不能登录和使用,是个傀儡。UID:1-499。在/etc/passwd中都以/sbin/nologin结尾。
3、普通用户
管理员root创建的用户,UID:500-65535
时间戳:
[[email protected] ~]# ll --time-style=long-iso 显示友好的长格式时间
总用量 16
-rw-r--r--. 1 root root 31 2017-03-03 08:15 awk.txt
drwxr-xr-x. 6 root root 4096 2017-03-03 19:35 data
-rw-r--r--. 1 root root 7 2017-03-04 03:00 test.txt
crw-r--r--. 1 root root 5, 1 2017-04-16 10:50 wuyike
-rw-r--r--. 1 root root 30 2017-03-04 18:51 wuyike.txt
-rw-r--r--. 1 root root 0 2017-03-04 18:51 吴宜珂.txt
[[email protected] ~]# ll --time-style=full-iso
总用量 16
-rw-r--r--. 1 root root 31 2017-03-03 08:15:07.007119687 +0800 awk.txt
drwxr-xr-x. 6 root root 4096 2017-03-03 19:35:49.319097454 +0800 data
-rw-r--r--. 1 root root 7 2017-03-04 03:00:10.345085971 +0800 test.txt
crw-r--r--. 1 root root 5, 1 2017-04-16 10:50:47.378592006 +0800 wuyike
-rw-r--r--. 1 root root 30 2017-03-04 18:51:10.939045300 +0800 wuyike.txt
-rw-r--r--. 1 root root 0 2017-03-04 18:51:49.069053828 +0800 吴宜珂.txt
[[email protected] ~]# stat /etc/hosts
File: "/etc/hosts"
Size: 180 Blocks: 8 IO Block: 4096 普通文件
Device: 803h/2051d Inode: 390943 Links: 2
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2017-04-18 20:38:04.663012507 +0800 访问时间:find -atime
Modify: 2017-04-14 19:43:37.150680049 +0800 修改时间,内容发生变化:find -mtime
Change: 2017-04-14 19:43:37.275664353 +0800 变化时间,包含modify,可以是权限、属主、用户组的改变:find -ctime
stat命令查看