permission
Contents
user
su:
-
what
- change user
- excute a command as another
-
how
-
-, -l: simulate a full login
-
-c: excute command
user - group
- file belong to a group which the owner doesnt belong to
yes: share the data to other groups /public.html owner: root, group: apache,www
inspect permission
permission list
excute permission for directory
-
read:
- read list: ls
-
write: delte/update/add the items(must enter the item first)
-
excute:
- cd
- read the meta of item: ls -l
1 2 3 4 5
01/01.txt ls -l 01 ls: cannot access '01/01.txt': Permission denied total 0 -????????? ? ? ? ? ? 01.txt
/var/root: rwx — —;
-
permiss list
-
noraml
- read:+r
- write:+w
- excute:x
-
supplement,special permission bits
- sticky:+t, only the owner can rename/delete the file
- setuid,setgid: +s, grant permission temporarily
other user run passwd as root
1
-rwsr-xr-x root root /usr/bin/passwd
-
change permission
umask
-
what? change the file permissions
-
when
- change new filles: processs(toucch,mkdir).
- chmod with symbol
-
how:
- file: 666-unmask(022): user:rw, group/other: r
- directory: 777-unmask(022) user:rwx ,group/other:rx;
chmod
-
what change the permission of the files
-
types
- number: chmod 777 a
- symbol:(will delete the maskvalue)
- chmod ugo=rwx,a=rwx;
- chmod u=rwx,g=rwx,o+r