08-28-2019, 01:57 PM
Great, thanks.
In /etc.rc.local, udiskie might be running in the foreground and thus worker.php is never executed.
Try adding an ampersand to the end of the launch string which will cause it to run in the background.
To stop udisks from running disable the service. Replace "disable" with "enable" to have it automatically start after reboot.
In /etc.rc.local, udiskie might be running in the foreground and thus worker.php is never executed.
Try adding an ampersand to the end of the launch string which will cause it to run in the background.
Code:
/usr/bin/udiskie --config=/home/pi/.config/udiskie/config.yml > /dev/null 2>&1 &
To stop udisks from running disable the service. Replace "disable" with "enable" to have it automatically start after reboot.
Code:
sudo systemctl disable udisks
sudo reboot