文件的格式
bash
[root@localhost ~]# ls -al
总用量 40
dr-xr-x---. 7 root root 275 11月 2 15:12 .
dr-xr-xr-x. 17 root root 224 10月 29 23:11 ..
-rw-------. 1 root root 1755 10月 29 23:12 anaconda-ks.cfg
-rw-------. 1 root root 9 10月 30 17:03 .bash_history
-rw-r--r--. 1 root root 18 12月 29 2013 .bash_logout
-rw-r--r--. 1 root root 176 12月 29 2013 .bash_profile
-rw-r--r--. 1 root root 176 12月 29 2013 .bashrc
drwx------. 5 root root 42 10月 30 14:59 .cache
drwx------. 6 root root 58 10月 30 14:59 .config
-rw-r--r--. 1 root root 100 12月 29 2013 .cshrc
drwx------. 3 root root 25 10月 29 23:19 .dbus
-rw-r--r--. 1 root root 1969 10月 29 23:38 initial-setup-ks.cfg
drwxr-xr-x. 3 root root 19 10月 29 23:36 .local
drwxr-xr-x. 2 root root 6 11月 2 15:12 ShellDemo
-rw-r--r--. 1 root root 129 12月 29 2013 .tcshrc
-rw-------. 1 root root 67 11月 2 15:09 .xauthDQ1oOy
-rw-------. 1 root root 67 10月 30 14:59 .Xauthority
以ShellDemo这个为例
bash
drwxr-xr-x. 2 root root 6 11月 2 15:12 ShellDemo
1. drwxr-xr-x. :表示文件类型权限, 一共10个字符。
第一个字符d表示这个是个文件目录,- 表示是文件,还有 | 表示链接文件,b 表示设备文件中可以存储的周边,c 表示串行设备被,键盘鼠标这些
剩下的9个字符,连续的三个为一组,r读,w写,x执行
- 第一组rwx:表示文件拥有者具备的权限
- 第二组r-x:表示加入此用户组的账号的权限,可读可执行,不可写
- 第三组r-x:表示非本人且没有加入此用户组的其他账号权限