InterviewSolution
Saved Bookmarks
| 1. |
What are the file permissions and access modes in Unix? |
|
Answer» There are THREE TYPES of permissions – owner, group and other (public), all of which can be listed using the command ls -l. Each USER can have one or more of the following access – read (r), write (w), execute (X). Example, -rwxr-xr-- represent the file permissions for owner, members and everyone else as –
|
|