02-27-2021, 10:39 AM
Hi Manfred,
for running mpd-service in isolated cores you have to add something in cmdline.txt and modify mpd.service
add in this line:
modify mpd.service
modify the line
to
save all changes you made and reboot.
for running mpd-service in isolated cores you have to add something in cmdline.txt and modify mpd.service
Code:
sudo pico /boot/cmdline.txt
Code:
isolcpus=2,3
modify mpd.service
Code:
sudo pico /lib/systemd/system/mpd.service
modify the line
Code:
ExecStart=/usr/local/bin/mpd --no-daemon $MPDCONF
Code:
ExecStart=/usr/bin/taskset -c 2,3 /usr/local/bin/mpd --no-daemon $MPDCONF
save all changes you made and reboot.