Building a linux based music server, decision tree and installation recepie

Status
This old topic is closed. If you want to reopen this topic, contact a moderator using the "Report Post" button.
This quote uses false logic. It also uses dramatic wording. I would not use this to make a decision on a distribution.

I tried installing some Ubuntu flavour and installed mpd using the familiar

Code:
# apt-get install mpd

I have learned to love the debian installer. Much more gentle than the pacman

Code:
# pacman -S mpd

What does the -S even mean?

However, the Arch pacman installation results in an mpd about two year younger.

If I find a bug in mpd, I don´t want to compile the fix or wait for it two years.

Mårten
 
I still have a problem with usb soundcard being powered on/off before/after playing. Causing a thump in my speakers.

It was USB kernel autosuspend. Fix it like this:

21. Disable USB autosuspend
First check that autosuspend is active:
Code:
# cat /sys/module/usbcore/parameters/autosuspend
2
Then retrieve the current parameters
Code:
# cat /etc/default/grub | grep LINUX_DEFAULT
GRUB_CMDLINE_LINUX_DEFAULT="quiet apparmor=1 security=apparmor udev.log_priority=3"
Then add "usbcore.autosuspend=-1" to the current value:
Code:
# echo 'GRUB_CMDLINE_LINUX_DEFAULT="quiet apparmor=1 security=apparmor udev.log_priority=3 usbcore.autosuspend=-1"' >> /etc/default/grub
# update-grub
Generating grub configuration file ...
Found theme: /usr/share/grub/themes/manjaro/theme.txt
Found linux image: /boot/vmlinuz-5.4-x86_64
Found initrd image: /boot/intel-ucode.img /boot/initramfs-5.4-x86_64.img
Found initrd fallback image: /boot/initramfs-5.4-x86_64-fallback.img
Found linux image: /boot/vmlinuz-5.4-rt-x86_64
Found initrd image: /boot/intel-ucode.img /boot/initramfs-5.4-rt-x86_64.img
Found initrd fallback image: /boot/initramfs-5.4-rt-x86_64-fallback.img
Found memtest86+ image: /boot/memtest86+/memtest.bin
done
 
Status
This old topic is closed. If you want to reopen this topic, contact a moderator using the "Report Post" button.