Advertisement
Guest User

Untitled

a guest
Jun 15th, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.68 KB | None | 0 0
  1. # Stop the 2 services (the 2nd one probably isn't running):
  2. sudo systemctl stop mythbackend.service
  3. sudo systemctl stop mythtv-backend.service
  4.  
  5. # Disable then remove the duplicate service:
  6. sudo systemctl disable mythbackend.service
  7. sudo rm /etc/systemd/system/mythbackend.service
  8. sudo systemctl daemon-reload
  9.  
  10. # Reenable the Mythbuntu version of the service and start it:
  11. sudo systemctl reenable mythtv-backend.service
  12. sudo systemctl start mythtv-backend.service
  13.  
  14. # Verify that the Mythbuntu version of the service is running:
  15. systemctl status mythtv-backend.service
  16.  
  17. # Double check that mythbackend.service has no links here:
  18. ls -l /etc/systemd/system/multi-user.target.wants
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement