ericvlog / note

6 stars 1 forks source link

how to fix issue signalr on arr automation media management #26

Closed ericvlog closed 2 years ago

ericvlog commented 2 years ago

reset permission omv use gui reset-perm grant chown appuser owner command line docker-compose stop reboot docker-compose start sudo chmod -R 755 sudo find /data -type f -exec chmod 644 {} \; change docker-compose umask from 022 to 002 and docker-compose up -d sudo find /data -type d -exec chmod 775 {} \;

Temporally signalr problem no appear using meximux.

useful command

chmod -R a=,a+rX,u+w,g+w /some/path/here #Recursively chmod to 775/664
sudo find /data -type d -exec chmod 775 {} \;
sudo find /data -type f -exec chmod 644 {} \;

useful link

https://tecadmin.net/how-to-search-recently-modified-files-in-linux/