2023-08-24, 06:58 PM
Code:
cd /mnt
touch list.txt
find . -type d -maxdepth 6 | while read dir ; do ls -ld "$dir" >> list.txt ; done
That will write all the directory permissions to /mnt/list.txt. If you don't mind sharing that with us, or to me via PM, that would greatly expedite the troubleshooting process.