Closed tamara-schmitz closed 5 years ago
In the section "Install / Update" https://github.com/ZeroQI/Absolute-Series-Scanner#install--update The last line of the "Linux install script example" code block contains an invalid command.
Simply change chmod 775 -R '/var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Scanners' to chmod -R 775 '/var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Scanners'.
chmod 775 -R '/var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Scanners'
chmod -R 775 '/var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Scanners'
This is how the chmod command is descriped in the man pages as well. Otherwise you receive an error message stating that -R is not a directory.
-R
Thanks, updated the readme
In the section "Install / Update" https://github.com/ZeroQI/Absolute-Series-Scanner#install--update The last line of the "Linux install script example" code block contains an invalid command.
Simply change
chmod 775 -R '/var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Scanners'
tochmod -R 775 '/var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Scanners'
.This is how the chmod command is descriped in the man pages as well. Otherwise you receive an error message stating that
-R
is not a directory.