To change all the directories to 755 (drwxr-xr-x):
find /mnt/storage -type d -exec chmod 755 {} \;
To change all the files to 644 (-rw-r–r–):
find /mnt/storage -type f -exec chmod 644 {} \;
To change all the directories to 755 (drwxr-xr-x):
find /mnt/storage -type d -exec chmod 755 {} \;
To change all the files to 644 (-rw-r–r–):
find /mnt/storage -type f -exec chmod 644 {} \;
To perform a full system update of all installed software run:
freebsd-update fetch freebsd-update install
To upgrade, run the following command and replace release with the one you want to upgrade to:
freebsd-update -r 12.0-RELEASE upgrade
Check https://www.freebsd.org for latest release version.