How to unlock selected files from root?

I am trying to unlock files from my root to a admin account. I've tried by going into the account and moving the files into it, but when I go to the account its all locked. And when I do CTRL+A and it selects all of the files. And then I right click on one file because all of then are selected, then I change the permissions to my admin account. The folders are unlocked but the folders inside them aren't.

Is there a way to unlock them all?

1

1 Answer

When you change the permissions of the folder, use 'Change Permissions for Enclosed Files' or 'Apply Permissions to Enclosed Files' button:

permssions


Or just use chmod with the -R option. You can use the table on this page:

chmod

chmod -R 757 /PATH/TO/FOLDER

or you can change the owner with chown - see here:

chown -R USERNAME:USERNAME /PATH/TO/FOLDER

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