Notifications
Clear all
Topic starter
I have the witty pi 4 mini, which is scheduled to turn the Pi on and off every day and it's working great -- now I want to disable the UWI web interface.
What's the recommended way to do that on Raspberry Pi OS?
I don't want to break the on/off scheduling I've set up.
Posted : 27/07/2023 3:13 pm
If you want to keep the UWI installed but do not want it to start automatically after boot, you may run
sudo update-rc.d uwi remove
If you want to it to auto-start on boot in the future, you may run
sudo update-rc.d uwi defaults
If you want to fully uninstall UWI, you may do these:
sudo update-rc.d uwi remove
sudo rm /etc/init.d/uwi
sudo rm -r ~/uwi
Posted : 27/07/2023 3:25 pm
Ox008 reacted
Topic starter
Awesome, thank you.
Posted : 27/07/2023 3:30 pm