The suggested installation procedure in README.md creates several symbolic links using ln. In all cases, the arguments are in wrong order. E.g., after moving the configuration file from /etc to the current directory, the symbolic link should be created with
sudo ln -s /home/pi/hyperion-config-switch/hyperion.config.default.json /etc/hyperion.config.json
(note the use of sudo and the absolute path to the default config file).
On Raspbian, instead of initctl restart hyperion I had to use sudo /etc/init.d/hyperion restart.
Finally, hyperion-config-switch.daemon.sh has to be made executable. This should be documented.
The suggested installation procedure in README.md creates several symbolic links using
ln. In all cases, the arguments are in wrong order. E.g., after moving the configuration file from /etc to the current directory, the symbolic link should be created withsudo ln -s /home/pi/hyperion-config-switch/hyperion.config.default.json /etc/hyperion.config.json(note the use of sudo and the absolute path to the default config file).
On Raspbian, instead of
initctl restart hyperionI had to usesudo /etc/init.d/hyperion restart.Finally, hyperion-config-switch.daemon.sh has to be made executable. This should be documented.