I am new to Linux, What bothers me is when i'm on my ruby on rails project and when i generate a controller or any file. If i looking into the file browser, it has a lock symbol. so, i have to do chmod 757 -R file everytime. So, is there anyway to set the default read and write permissions for my root folder?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
Take a look at the Alternatively it is a common pattern to use group ownership of files to allow two parties to access files vice versa, in this case a user person and a web server account maybe. This reduces the required rights to group level which is obviously more secore. |
|||
|
|
chown user:user -R <dirName>to change default ownership and permissions to that user. – Manav Jan 24 at 6:45