How to recursively set owner or permissions to 'everyone' for all folders and files?

I have an external hard drive attached, and I need to set permissions to be 'free' for the user MyUser.

I think I need to set the owner to MyUser also.

How can I do this via terminal?

1 Answer

Find out the name of your external hard drive first, then navigate to:

cd /Volumes/your-drive/

Now, to give your current user ownership to all files:

sudo chown -R $(whoami) .

Or, alternatively

sudo chown -R MyUser .

That should allow you to do most operations, no need for any further modifications.


If you want to specifically have write permissions to all files and folders if they have been removed otherwise:

sudo chmod -R u+w .

And if you're really crazy and just want to give all permissions to everyone (as indicated by your title):

sudo chmod -R 777 .

But this shouldn't be necessary in most cases. Also, do note though that volumes with FAT32 file systems don't have that permissions concept.

In general, changing permissions like this on an external drive shouldn't be the solution to all of your problems though. Rather change the permissions based on a specific problem you face, for that particular folder only.

6

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