Recursively change unix permissions on a directory
On my freenas server I sometimes need to change the permissions of files that were uploaded via FTP. Here is the command that can be issued to make those changes:
chmod -R 0777 "/mnt/Seagate650/FTP Root"
The quotes are important because my ftp root directory contains a space.
chmod -R 0777 "/mnt/Seagate650/FTP Root"
The quotes are important because my ftp root directory contains a space.
Comments