How to set permission "-rw-rw-r--" to file?

I have a file with permission -rwxr-xr-x in Ubuntu. How can I change it to -rw-rw-r--. I played with chmod settings, but was unable to get -rw-rw-r--.

2

1 Answer

Either

chmod a-x,g+w file

or

chmod ug=rw,o=r file

or using octal representation

chmod 664 file

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like