Prepare for your Next Interview
|
Welcome to the Geeks Talk forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
This is a discussion on Share your knowledge about UNIX permission within the Unix/Linux forums, part of the Operating Systems category; I want to know what are the permissions available in UNIX for achieving security? It would be nice if someone could share their thoughts about the UNIX permission usage in ...
|
|||||||
|
|||
|
Share your knowledge about UNIX permission
I want to know what are the permissions available in UNIX for achieving security? It would be nice if someone could share their thoughts about the UNIX permission usage in other words what level of access if provided to whom for security and how they are provided.
|
| Sponsored Links |
|
|||
|
Re: Share your knowledge about UNIX permission
I think you can achieve the same by using chmod a command available in UNIX. But there is lot of permission commands available in UNIX which I am not aware. Hope to get it the knowledge in this discussion. All the above UNIX is a system designed for getting higher security.
|
|
|||
|
Re: Share your knowledge about UNIX permission
Basically there are three types permission you can set on a file "read", "write" and "execute". These file permission can be changed with the help of command "chmod"
Ex: drwxrwxrwx 8 bin bin 8192 Mar 7 19:50 tmp r=read=4 w=write=2 x=excecute=1 in the above example the first "d" say's tmp is a directory file and after that there are three set of "rwx" in which the first set is for user, the second one is for group and the third is one for others. permission on a file can be changed by $ chmod 644 6=read and write permission on the file to users 4=only read permission on the file to group 4=only read permission on the file to others. for more information use "man" $man chmod |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Signal Handling in UNIX | blenda | Unix/Linux | 2 | 02-08-2007 02:17 AM |