My apologies for being an awkward customer!
No need to appologise.
OK, I've just gone through those instructions and managed to get thngs working on my dev box. With one additional change.
Revised instructions follow some steps can probably be skipped. New bit in bold:
- Install git:
Code:
sudo apt updatesudo apt install -y git
- Clone the wsdd repository:
Code:
git clone https://github.com/christgau/wsdd
- Copy the script:
Code:
sudo cp wsdd/src/wsdd.py /usr/bin/wsdd
- Ensure it is executable:
Code:
sudo chmod a+x /usr/bin/wsdd
- Copy the systemd service and settings:
Code:
sudo cp wsdd/etc/systemd/wsdd.service /etc/systemd/systemsudo cp wsdd/etc/systemd/wsdd.service /etc/default/wsdd
- Open /etc/systemd/system/wsdd.service in your preferred text editor. You will need to be root or use sudo.
- Replace User=wsdd with User=nobody
- Replace Group=wsdd with Group=nogroup
- Save and close
- Enable the service:
Code:
sudo systemctl enable wsdd
- Start the service:
Code:
sudo systemctl start wsdd
Statistics: Posted by thagrol — Sun Jan 21, 2024 10:56 pm