1 類型 [-] regular file [d] directory [l] link, 類似Windows中的快捷方式 [b] block, 如硬碟 [c] character, 如鍵盤, 滑鼠 2 屬性 ls -al 列出文件屬性 例: - rwx rwx --- 1 root root 29
1 類型
[-] regular file [d] directory [l] link, 類似Windows中的快捷方式
[b] block, 如硬碟
[c] character, 如鍵盤, 滑鼠
2 屬性
ls -al 列出文件屬性
例: - rwx rwx --- 1 root root 290 Oct 19 21:24 test
[-] 文件類型
[rwx] user; [rwx] group; [---] others
[1] 連接數
[root] owner; [root] owner group
[290] 大小
[Oct 19 21:24] 最近修改時間
[test] 文件名
3 許可權更改
1) 用戶和用戶組
chown [-R] OWNER: GROUP FILE... (-R, recursive 遞歸更改)
chgrp [-R] GROUP FILE ...
2) 文件屬性
chmod [-R] xyz FILE... (xyz: r=4, w=2, x=1)
chmod | u, user |
+ (加入) - (除去) = (設置) |
r (讀) w (寫) x (執行) |
FILE... |
g, group | ||||
o, others | ||||
a, all users |
例: chmod 764 bashrc
chmod u=rwx, go=rx bashrc
chmod a+w bashrc