How do you change permissions on a directory of file?
Answer Posted / bhaskar
To change permission on a file we can use chmod command.
Only thing to remember that to change a file permission one
must be the owner of that file or root in that system.
the typical format of chmod is
chmod <permissions> <filename(s)>
e.g. chmod +777 examplefile
The above command will provide read, write and execute
permission to all in the file examplename.
value for read is 4
write is 2
execute is 1
now to give all permissions it becomes 4+2+1=7
first digit refers to the permission of the owner.
second digit refers to the group permission and last digit
refers to permission to all
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Which daemon controls the print spooling process?
Explain /proc file system?
How can you run a linux program in the background simultaneously when you start your linux server?
Where is wget installed on linux?
To implement new application on IBM z/10. Which of the following options need to be considered if it to be implemented in Linux?
What are the advantages of arch linux?
Are semaphores atomic?
How can you enhance the security of the password file?
How to switch to a previously used directory?
Is linux a scripting language?
How do I see what services are running in linux?
How can we find the current value for shell variables?
You have a large spreadsheet located in the /data directory that five different people need to be able to change. How can you enable each user to edit the spreadsheet from their individual home directories?
How will you restrict ip so that the restricted ip’s may not use the ftp server?
How do mutexes work?