How do I select a default sound card with alsa?











up vote
5
down vote

favorite
1












I wish to select a default sound card, or disable all others, in order to have the correct one selected after suspend.










share|improve this question






















  • How many sound cards do you have in the system?
    – Mitch
    Jun 14 '12 at 15:26










  • 2, but 4 things show up in sound settings for output and 3 things for input.
    – MarkovCh1
    Jun 14 '12 at 16:37















up vote
5
down vote

favorite
1












I wish to select a default sound card, or disable all others, in order to have the correct one selected after suspend.










share|improve this question






















  • How many sound cards do you have in the system?
    – Mitch
    Jun 14 '12 at 15:26










  • 2, but 4 things show up in sound settings for output and 3 things for input.
    – MarkovCh1
    Jun 14 '12 at 16:37













up vote
5
down vote

favorite
1









up vote
5
down vote

favorite
1






1





I wish to select a default sound card, or disable all others, in order to have the correct one selected after suspend.










share|improve this question













I wish to select a default sound card, or disable all others, in order to have the correct one selected after suspend.







sound pulseaudio alsa






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jun 14 '12 at 15:18









MarkovCh1

1,34711528




1,34711528












  • How many sound cards do you have in the system?
    – Mitch
    Jun 14 '12 at 15:26










  • 2, but 4 things show up in sound settings for output and 3 things for input.
    – MarkovCh1
    Jun 14 '12 at 16:37


















  • How many sound cards do you have in the system?
    – Mitch
    Jun 14 '12 at 15:26










  • 2, but 4 things show up in sound settings for output and 3 things for input.
    – MarkovCh1
    Jun 14 '12 at 16:37
















How many sound cards do you have in the system?
– Mitch
Jun 14 '12 at 15:26




How many sound cards do you have in the system?
– Mitch
Jun 14 '12 at 15:26












2, but 4 things show up in sound settings for output and 3 things for input.
– MarkovCh1
Jun 14 '12 at 16:37




2, but 4 things show up in sound settings for output and 3 things for input.
– MarkovCh1
Jun 14 '12 at 16:37










3 Answers
3






active

oldest

votes

















up vote
0
down vote



accepted










This is a way set default sound output card dynamically using PulseAudio (not ALSA).





  1. Check list of Sources and Sinks



    $ pactl list short sources
    0 alsa_output.pci-0000_00_1b.0.analog-stereo.monitor module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
    1 alsa_input.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
    2 combined.monitor module-combine-sink.c s16le 2ch 44100Hz SUSPENDED

    $ pactl list short sinks
    0 alsa_output.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
    1 combined module-combine-sink.c s16le 2ch 44100Hz IDLE
    2 alsa_output.pci-0000_01_00.1.hdmi-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING



  2. Set defaults:



    $ pactl set-default-source alsa_input.pci-0000_00_1b.0.analog-stereo
    $ pactl set-default-sink alsa_output.pci-0000_00_1b.0.analog-stereo



It is possible even to set ports too. See How to switch sound output with key shortcut



Reference: man pactl






share|improve this answer



















  • 1




    pactl is for pulseaudio, not alsa
    – slang
    Jan 5 '16 at 2:57










  • @slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
    – user.dz
    Jan 5 '16 at 6:15




















up vote
1
down vote













I personally use alsamixer



alsamixer


Hit F6 to select sound card.



enter image description here






share|improve this answer





















  • F6 only lets you choose which card to modify sound levels for, no?
    – MarkovCh1
    Jun 15 '12 at 0:22










  • Sets the selected card as default as well (at least it does for me).
    – Panther
    Jun 15 '12 at 1:33










  • You can select card with alsamixer (F6 or S) and than do sudo alsactl store to save your settings as default.
    – dmitry_romanov
    Dec 8 '15 at 17:31


















up vote
0
down vote













Seeing as I don't have Pulse, the accepted answer isn't valid for others like me.

This should provide a decent solution here that works off of ALSA alone.



I have a bit of detail since I have 3 devices (onboard 2-channel, video card HDMI, PCI 5.1-channel) in my machine, with my preferred device being last.



what worked for me was editing /etc/asound.conf with the following:

(resource: http://www.alsa-project.org/main/index.php/Asoundrc )



pcm.!default {
type hw
card 0
}

ctl.!default {
type hw
card 0
}


If I would've intuitively set my default device as 2, the order of the above devices would've flipped to this after restarting:



0: [CMI8738        ]
1: [Nvidia ]
2: [Nvidia_1 ]


with the default device being 2.

(this would continue after every reboot, and no restarting alsa did not make apps play audio)



To stop my machine from trolling me, I had to edit /etc/modprobe.d/alsa-base.conf and add the following line:

(resource (search for the 6th occurrence of "order"): https://alsa.opensrc.org/MultipleCards#How_to_choose_a_particular_order_for_multiple_installed_cards )



options snd slots=snd-cmipci,


which forced my preferred device at 0 so the default card would match:



Hopefully I'll never have to touch these settings again, and it'll help others like me who don't want to deal with PulseAudio dropping audio streams.

(yes this means poorly developed apps like Discord won't identify your audio devices without Pulse)






share|improve this answer





















  • never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
    – Tcll
    Nov 29 at 14:42











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f150851%2fhow-do-i-select-a-default-sound-card-with-alsa%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























3 Answers
3






active

oldest

votes








3 Answers
3






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote



accepted










This is a way set default sound output card dynamically using PulseAudio (not ALSA).





  1. Check list of Sources and Sinks



    $ pactl list short sources
    0 alsa_output.pci-0000_00_1b.0.analog-stereo.monitor module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
    1 alsa_input.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
    2 combined.monitor module-combine-sink.c s16le 2ch 44100Hz SUSPENDED

    $ pactl list short sinks
    0 alsa_output.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
    1 combined module-combine-sink.c s16le 2ch 44100Hz IDLE
    2 alsa_output.pci-0000_01_00.1.hdmi-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING



  2. Set defaults:



    $ pactl set-default-source alsa_input.pci-0000_00_1b.0.analog-stereo
    $ pactl set-default-sink alsa_output.pci-0000_00_1b.0.analog-stereo



It is possible even to set ports too. See How to switch sound output with key shortcut



Reference: man pactl






share|improve this answer



















  • 1




    pactl is for pulseaudio, not alsa
    – slang
    Jan 5 '16 at 2:57










  • @slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
    – user.dz
    Jan 5 '16 at 6:15

















up vote
0
down vote



accepted










This is a way set default sound output card dynamically using PulseAudio (not ALSA).





  1. Check list of Sources and Sinks



    $ pactl list short sources
    0 alsa_output.pci-0000_00_1b.0.analog-stereo.monitor module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
    1 alsa_input.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
    2 combined.monitor module-combine-sink.c s16le 2ch 44100Hz SUSPENDED

    $ pactl list short sinks
    0 alsa_output.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
    1 combined module-combine-sink.c s16le 2ch 44100Hz IDLE
    2 alsa_output.pci-0000_01_00.1.hdmi-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING



  2. Set defaults:



    $ pactl set-default-source alsa_input.pci-0000_00_1b.0.analog-stereo
    $ pactl set-default-sink alsa_output.pci-0000_00_1b.0.analog-stereo



It is possible even to set ports too. See How to switch sound output with key shortcut



Reference: man pactl






share|improve this answer



















  • 1




    pactl is for pulseaudio, not alsa
    – slang
    Jan 5 '16 at 2:57










  • @slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
    – user.dz
    Jan 5 '16 at 6:15















up vote
0
down vote



accepted







up vote
0
down vote



accepted






This is a way set default sound output card dynamically using PulseAudio (not ALSA).





  1. Check list of Sources and Sinks



    $ pactl list short sources
    0 alsa_output.pci-0000_00_1b.0.analog-stereo.monitor module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
    1 alsa_input.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
    2 combined.monitor module-combine-sink.c s16le 2ch 44100Hz SUSPENDED

    $ pactl list short sinks
    0 alsa_output.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
    1 combined module-combine-sink.c s16le 2ch 44100Hz IDLE
    2 alsa_output.pci-0000_01_00.1.hdmi-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING



  2. Set defaults:



    $ pactl set-default-source alsa_input.pci-0000_00_1b.0.analog-stereo
    $ pactl set-default-sink alsa_output.pci-0000_00_1b.0.analog-stereo



It is possible even to set ports too. See How to switch sound output with key shortcut



Reference: man pactl






share|improve this answer














This is a way set default sound output card dynamically using PulseAudio (not ALSA).





  1. Check list of Sources and Sinks



    $ pactl list short sources
    0 alsa_output.pci-0000_00_1b.0.analog-stereo.monitor module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
    1 alsa_input.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
    2 combined.monitor module-combine-sink.c s16le 2ch 44100Hz SUSPENDED

    $ pactl list short sinks
    0 alsa_output.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
    1 combined module-combine-sink.c s16le 2ch 44100Hz IDLE
    2 alsa_output.pci-0000_01_00.1.hdmi-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING



  2. Set defaults:



    $ pactl set-default-source alsa_input.pci-0000_00_1b.0.analog-stereo
    $ pactl set-default-sink alsa_output.pci-0000_00_1b.0.analog-stereo



It is possible even to set ports too. See How to switch sound output with key shortcut



Reference: man pactl







share|improve this answer














share|improve this answer



share|improve this answer








edited Oct 30 at 15:35









Murphy

555313




555313










answered Mar 16 '14 at 23:34









user.dz

34.4k1190175




34.4k1190175








  • 1




    pactl is for pulseaudio, not alsa
    – slang
    Jan 5 '16 at 2:57










  • @slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
    – user.dz
    Jan 5 '16 at 6:15
















  • 1




    pactl is for pulseaudio, not alsa
    – slang
    Jan 5 '16 at 2:57










  • @slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
    – user.dz
    Jan 5 '16 at 6:15










1




1




pactl is for pulseaudio, not alsa
– slang
Jan 5 '16 at 2:57




pactl is for pulseaudio, not alsa
– slang
Jan 5 '16 at 2:57












@slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
– user.dz
Jan 5 '16 at 6:15






@slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
– user.dz
Jan 5 '16 at 6:15














up vote
1
down vote













I personally use alsamixer



alsamixer


Hit F6 to select sound card.



enter image description here






share|improve this answer





















  • F6 only lets you choose which card to modify sound levels for, no?
    – MarkovCh1
    Jun 15 '12 at 0:22










  • Sets the selected card as default as well (at least it does for me).
    – Panther
    Jun 15 '12 at 1:33










  • You can select card with alsamixer (F6 or S) and than do sudo alsactl store to save your settings as default.
    – dmitry_romanov
    Dec 8 '15 at 17:31















up vote
1
down vote













I personally use alsamixer



alsamixer


Hit F6 to select sound card.



enter image description here






share|improve this answer





















  • F6 only lets you choose which card to modify sound levels for, no?
    – MarkovCh1
    Jun 15 '12 at 0:22










  • Sets the selected card as default as well (at least it does for me).
    – Panther
    Jun 15 '12 at 1:33










  • You can select card with alsamixer (F6 or S) and than do sudo alsactl store to save your settings as default.
    – dmitry_romanov
    Dec 8 '15 at 17:31













up vote
1
down vote










up vote
1
down vote









I personally use alsamixer



alsamixer


Hit F6 to select sound card.



enter image description here






share|improve this answer












I personally use alsamixer



alsamixer


Hit F6 to select sound card.



enter image description here







share|improve this answer












share|improve this answer



share|improve this answer










answered Jun 14 '12 at 18:20









Panther

77.4k12156258




77.4k12156258












  • F6 only lets you choose which card to modify sound levels for, no?
    – MarkovCh1
    Jun 15 '12 at 0:22










  • Sets the selected card as default as well (at least it does for me).
    – Panther
    Jun 15 '12 at 1:33










  • You can select card with alsamixer (F6 or S) and than do sudo alsactl store to save your settings as default.
    – dmitry_romanov
    Dec 8 '15 at 17:31


















  • F6 only lets you choose which card to modify sound levels for, no?
    – MarkovCh1
    Jun 15 '12 at 0:22










  • Sets the selected card as default as well (at least it does for me).
    – Panther
    Jun 15 '12 at 1:33










  • You can select card with alsamixer (F6 or S) and than do sudo alsactl store to save your settings as default.
    – dmitry_romanov
    Dec 8 '15 at 17:31
















F6 only lets you choose which card to modify sound levels for, no?
– MarkovCh1
Jun 15 '12 at 0:22




F6 only lets you choose which card to modify sound levels for, no?
– MarkovCh1
Jun 15 '12 at 0:22












Sets the selected card as default as well (at least it does for me).
– Panther
Jun 15 '12 at 1:33




Sets the selected card as default as well (at least it does for me).
– Panther
Jun 15 '12 at 1:33












You can select card with alsamixer (F6 or S) and than do sudo alsactl store to save your settings as default.
– dmitry_romanov
Dec 8 '15 at 17:31




You can select card with alsamixer (F6 or S) and than do sudo alsactl store to save your settings as default.
– dmitry_romanov
Dec 8 '15 at 17:31










up vote
0
down vote













Seeing as I don't have Pulse, the accepted answer isn't valid for others like me.

This should provide a decent solution here that works off of ALSA alone.



I have a bit of detail since I have 3 devices (onboard 2-channel, video card HDMI, PCI 5.1-channel) in my machine, with my preferred device being last.



what worked for me was editing /etc/asound.conf with the following:

(resource: http://www.alsa-project.org/main/index.php/Asoundrc )



pcm.!default {
type hw
card 0
}

ctl.!default {
type hw
card 0
}


If I would've intuitively set my default device as 2, the order of the above devices would've flipped to this after restarting:



0: [CMI8738        ]
1: [Nvidia ]
2: [Nvidia_1 ]


with the default device being 2.

(this would continue after every reboot, and no restarting alsa did not make apps play audio)



To stop my machine from trolling me, I had to edit /etc/modprobe.d/alsa-base.conf and add the following line:

(resource (search for the 6th occurrence of "order"): https://alsa.opensrc.org/MultipleCards#How_to_choose_a_particular_order_for_multiple_installed_cards )



options snd slots=snd-cmipci,


which forced my preferred device at 0 so the default card would match:



Hopefully I'll never have to touch these settings again, and it'll help others like me who don't want to deal with PulseAudio dropping audio streams.

(yes this means poorly developed apps like Discord won't identify your audio devices without Pulse)






share|improve this answer





















  • never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
    – Tcll
    Nov 29 at 14:42















up vote
0
down vote













Seeing as I don't have Pulse, the accepted answer isn't valid for others like me.

This should provide a decent solution here that works off of ALSA alone.



I have a bit of detail since I have 3 devices (onboard 2-channel, video card HDMI, PCI 5.1-channel) in my machine, with my preferred device being last.



what worked for me was editing /etc/asound.conf with the following:

(resource: http://www.alsa-project.org/main/index.php/Asoundrc )



pcm.!default {
type hw
card 0
}

ctl.!default {
type hw
card 0
}


If I would've intuitively set my default device as 2, the order of the above devices would've flipped to this after restarting:



0: [CMI8738        ]
1: [Nvidia ]
2: [Nvidia_1 ]


with the default device being 2.

(this would continue after every reboot, and no restarting alsa did not make apps play audio)



To stop my machine from trolling me, I had to edit /etc/modprobe.d/alsa-base.conf and add the following line:

(resource (search for the 6th occurrence of "order"): https://alsa.opensrc.org/MultipleCards#How_to_choose_a_particular_order_for_multiple_installed_cards )



options snd slots=snd-cmipci,


which forced my preferred device at 0 so the default card would match:



Hopefully I'll never have to touch these settings again, and it'll help others like me who don't want to deal with PulseAudio dropping audio streams.

(yes this means poorly developed apps like Discord won't identify your audio devices without Pulse)






share|improve this answer





















  • never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
    – Tcll
    Nov 29 at 14:42













up vote
0
down vote










up vote
0
down vote









Seeing as I don't have Pulse, the accepted answer isn't valid for others like me.

This should provide a decent solution here that works off of ALSA alone.



I have a bit of detail since I have 3 devices (onboard 2-channel, video card HDMI, PCI 5.1-channel) in my machine, with my preferred device being last.



what worked for me was editing /etc/asound.conf with the following:

(resource: http://www.alsa-project.org/main/index.php/Asoundrc )



pcm.!default {
type hw
card 0
}

ctl.!default {
type hw
card 0
}


If I would've intuitively set my default device as 2, the order of the above devices would've flipped to this after restarting:



0: [CMI8738        ]
1: [Nvidia ]
2: [Nvidia_1 ]


with the default device being 2.

(this would continue after every reboot, and no restarting alsa did not make apps play audio)



To stop my machine from trolling me, I had to edit /etc/modprobe.d/alsa-base.conf and add the following line:

(resource (search for the 6th occurrence of "order"): https://alsa.opensrc.org/MultipleCards#How_to_choose_a_particular_order_for_multiple_installed_cards )



options snd slots=snd-cmipci,


which forced my preferred device at 0 so the default card would match:



Hopefully I'll never have to touch these settings again, and it'll help others like me who don't want to deal with PulseAudio dropping audio streams.

(yes this means poorly developed apps like Discord won't identify your audio devices without Pulse)






share|improve this answer












Seeing as I don't have Pulse, the accepted answer isn't valid for others like me.

This should provide a decent solution here that works off of ALSA alone.



I have a bit of detail since I have 3 devices (onboard 2-channel, video card HDMI, PCI 5.1-channel) in my machine, with my preferred device being last.



what worked for me was editing /etc/asound.conf with the following:

(resource: http://www.alsa-project.org/main/index.php/Asoundrc )



pcm.!default {
type hw
card 0
}

ctl.!default {
type hw
card 0
}


If I would've intuitively set my default device as 2, the order of the above devices would've flipped to this after restarting:



0: [CMI8738        ]
1: [Nvidia ]
2: [Nvidia_1 ]


with the default device being 2.

(this would continue after every reboot, and no restarting alsa did not make apps play audio)



To stop my machine from trolling me, I had to edit /etc/modprobe.d/alsa-base.conf and add the following line:

(resource (search for the 6th occurrence of "order"): https://alsa.opensrc.org/MultipleCards#How_to_choose_a_particular_order_for_multiple_installed_cards )



options snd slots=snd-cmipci,


which forced my preferred device at 0 so the default card would match:



Hopefully I'll never have to touch these settings again, and it'll help others like me who don't want to deal with PulseAudio dropping audio streams.

(yes this means poorly developed apps like Discord won't identify your audio devices without Pulse)







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 27 at 15:23









Tcll

2931213




2931213












  • never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
    – Tcll
    Nov 29 at 14:42


















  • never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
    – Tcll
    Nov 29 at 14:42
















never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
– Tcll
Nov 29 at 14:42




never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
– Tcll
Nov 29 at 14:42


















draft saved

draft discarded




















































Thanks for contributing an answer to Ask Ubuntu!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f150851%2fhow-do-i-select-a-default-sound-card-with-alsa%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

Mangá

 ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕