ballu Site Admin
Joined: 17 Jan 2007 Posts: 34 Location: INDIA
|
Posted: Fri Mar 30, 2007 3:17 pm Post subject: How to determine the file permission |
|
|
Description Determine the file permission
File Permissions
- --- --- ---
Directory Owner Group Others
Owner rwx 111 in binary -> 7 in decimal
group rwx 111
Others rwx 111
owner full permissions group read and execute permissions and others only read permissions.
Owner 111 = 7
Group 101 = 5
Other 100 = 4
actual permission will be = 754
chmod 754 <file> |
|