Have you tried ?JoelHinson wrote: ↑Thu Jul 04, 2019 8:01 pmbelieve i have a "model 3",.. what is the best/ sure fire technique at naming the USB as default audio at start up? can anyone say for sure what does work?
Code: Select all
Sudo nano /boot/config.txt
Code: Select all
# Enable audio (loads snd_bcm2835)
dtparam=audio=on
Code: Select all
lsusb
Code: Select all
[email protected]:~ $ lsusb
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 20b1:000a XMOS Ltd
Bus 001 Device 002: ID 2109:3431 VIA Labs, Inc. Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Code: Select all
lsmod
Code: Select all
[email protected]:~ $ lsmod
Module Size Used by
fuse 110592 3
rpcsec_gss_krb5 32768 0
rfcomm 49152 4
snd_usb_audio 192512 2
[email protected]:~ $
Code: Select all
$ cat /proc/asound/modules
[email protected]:~ $ cat /proc/asound/modules
0 snd_bcm2835
1 snd_usb_audio
[email protected]:~ $
Code: Select all
cd /etc/modprobe.d
sudo touch alsa-base.conf
sudo nano alsa-base.conf
Code: Select all
# This sets the index value of the cards but doesn't reorder.
options snd_usb_audio index=0
options snd_bcm2835 index=1
# Does the reordering.
options snd slots=snd_usb_audio,snd_bcm2835
Code: Select all
sudo reboot
Code: Select all
cat /proc/asound/modules
Code: Select all
aplay -L
and another# This sets the index value of the cards but doesn't reorder.
options snd_soc_iqaudio_dac index=0
options snd_bcm2835 index=1
# Does the reordering.
options snd slots=snd_soc_iqaudio_dac,snd_bcm2835
I hope you have better luck this time, remember to maybe try it on a copy first.# This sets the index value of the cards but doesn't reorder.
options snd_soc_allo_digione index=0
options snd_bcm2835 index=1
# Does the reordering.
options snd slots=snd_soc_allo_digione,snd_bcm2835