
Code: Select all
chown -R trisha /home/trishaWrite permission was one of the main things I wanted, since I am not able to edit existing files without it.owning a file doesnt always mean you have write access to it. chmod like kashani suggested.

Not really any danger with a user's home directory, but I'd still do each directory seperately as kashani suggested. Looks like you may owe him a spinach pizzaTrisha wrote:Is there any danger in just doing chmod -R 755 /home/trisha, so I would have write permission on all files?

The command adds read and write permissions only for the owner for every file in /home/trisha... which is way more secure than blindly applying 755 to every single file.chmod -R u+rw /home/trisha

Well, it's just good practice in general. I don't plan on crashing into a tree with a car soon, but I still wear seat belts.Trisha wrote:Monkeywrench - right now I'm the only user on this computer, and most likely always will be so that may not be an issue.
Would chmod -R u+rw /home/trisha take away execute permission from files that already have it?