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

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.