Chinaunix首页 | 论坛 | 博客
  • 博客访问: 146179
  • 博文数量: 28
  • 博客积分: 1646
  • 博客等级: 上尉
  • 技术积分: 405
  • 用 户 组: 普通用户
  • 注册时间: 2007-03-12 14:28
文章分类

全部博文(28)

文章存档

2013年(28)

我的朋友

分类: LINUX

2013-03-15 15:13:14

6. The Filesystem
The filesystem can be thought of as comprising four main components:
A namespace, an API, a security model, and An implementation
6.1 Pathnames
Absolute and relative paths
Spaces in filenames
6.2 Filesystem mounting and unmounting
mount /dev/sda4 /users # /dev/sda4 is filesystem, /users is mounting point
umount [-l | -f]
fusers -c /usr
lsof
6.3 The organization of the file tree
6.4 File types
Regular files
Directories
mkdir, rmdir, rm -r
., ..
links: ln old new
Character device files
Block device files
Local domain sockets
Named pipes(FIFOs)
Symbolic links
ln -s old new
6.5 File attributes
12 mode bits + 4 file-type bits
The permission bits
9 permission bits: rwxrwxrwx
The setuid and setgid bits
setuid: 4000
setgid: 2000
The sticky bit
1000
ls: list and inspect files
chmod: change permissions
chown and chgrp: change ownership and group
chown user:group file...
umask: assign default permissions
Linux bonus flags
6.6 Access control list
A short and brutal history of UNIX ACLs
ACL implementation
ACL support by system
POSIX ACLs
NFSv4 ACLs
6.7 Exercises
阅读(1186) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~