Hello,
I’m new to OpenSUSE, recently moved away from Arch Linux and I’ve been slowly getting familiar with what the distribution provides. My current problem right now is that I installed mpd , it provides a system-wide service file, not the user service file. No biggie, I created one and placed it under
/usr/lib/systemd/user/mpd.service
[Unit]Description=Music Player Daemon
After=network.target sound.target
[Service]
ExecStart=/usr/bin/mpd --no-daemon /etc/mpd.conf
ExecStop=/usr/bin/mpd --kill
[Install]
WantedBy=multi-user.target
Then I enabled/started it with **systemctl --user enable mpd.service **
Thus it created a symlink in /home/david/.local/share/systemd/user/multi-user.target.wants/
But… it’s not really starting, and nothing shows what’s hindering it. Any suggestions or recommendations are warmly welcomed.