Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux chmod 755和chmod 777的意思和區別

Linux chmod 755和chmod 777的意思和區別

日期:2017/2/7 16:55:07      編輯:Linux教程

Linux chmod +755和chmod +777 各是什麼意思呢?

可以在linux終端先輸入ls -al,可以看到如:

-rwx-r--r-- (一共10個參數)
第一個跟參數跟chmod無關,先不管.
2-4參數:屬於user
5-7參數:屬於group
8-10參數:屬於others
接下來就簡單了:r==>可讀 w==>可寫 x==>可執行
r=4 w=2 x=1
所以755代表 rwxr-xr-x

755 代表用戶對該文件擁有讀,寫,執行的權限,同組其他人員擁有執行和讀的權限,沒有寫的權限,其他用戶的權限和同組人員權限一樣。。。

777代表,user,group ,others ,都有讀寫和可執行權限。

Copyright © Windows教程網 All Rights Reserved