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
What would you use to view contents of a large error log file?
How does a spinlock work?
What is the role of semaphores in linux?
What is the major advantage of a hash table?
Compare linux credit based algorithm with other scheduling algorithms?
mount -r is used to mount a file in read only mode. State Whether True or False?
what is linux operating system virus free?
How do I find my public ip address in linux?
Is kali linux legal?
Which is fastest linux distro?
What are daemons?
What are absolute and relative path in linux?
Which is best linux for beginners?
How can we check disk/device status/failure/errors using smartctl utility?
What is the minimum number of disk partitions required to install linux?