How can I ensure the `snd-hda-intel` module is loaded on startup?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I need to type sudo modprobe snd-hda-intel
in order to get my sound card to work.
What config file do I need to edit and what edit should I be looking to make so I can get the sound driver loading at start up so I don't have to type this every time?
sound sudo hda-intel modprobe
add a comment |
I need to type sudo modprobe snd-hda-intel
in order to get my sound card to work.
What config file do I need to edit and what edit should I be looking to make so I can get the sound driver loading at start up so I don't have to type this every time?
sound sudo hda-intel modprobe
add a comment |
I need to type sudo modprobe snd-hda-intel
in order to get my sound card to work.
What config file do I need to edit and what edit should I be looking to make so I can get the sound driver loading at start up so I don't have to type this every time?
sound sudo hda-intel modprobe
I need to type sudo modprobe snd-hda-intel
in order to get my sound card to work.
What config file do I need to edit and what edit should I be looking to make so I can get the sound driver loading at start up so I don't have to type this every time?
sound sudo hda-intel modprobe
sound sudo hda-intel modprobe
edited Aug 31 '13 at 17:56
Jorge Castro
37.3k107422618
37.3k107422618
asked May 16 '13 at 7:24
Matthew Brown aka Lord MattMatthew Brown aka Lord Matt
40921025
40921025
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Add snd-hda-intel
to the end of the file /etc/modules
. This will make the snd-hda-intel
module load up automatically at boot time.
You can use: sudo sh -c 'echo "snd-hda-intel" >> /etc/modules'
to do this.
It didn't work on my laptop with Debian 9.
– Roby Sottini
Jan 21 at 14:22
add a comment |
In /etc/modules
you can put every module (one per line) for those you need to load at boot time.
Running this command will append the module to the file:
echo "snd-hda-intel" | sudo tee -a /etc/modules
add a comment |
After attempting an "oss4" audio install, I lost audio, and reverting my mistake, did not recover the audio.
Needed to "manually": modprobe snd-hda-intel
every boot....
Until I found that the driver had been put in a blacklist.... on the oss4 attempt.
grep snd-hda-intel /etc/modprobe.d/*
/etc/modprobe.d/oss4-base_noALSA.conf:blacklist snd-hda-intel
moved the "oss4-base_noALSA.conf" away from the "/etc/modprobe.d"
sudo mv /etc/modprobe.d/oss4-base_noALSA.conf /root
and now, do not need to manually "modprobe snd-hda-intel" to get audio after every boot....
Hope it helps...
add a comment |
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',
autoActivateHeartbeat: false,
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f296095%2fhow-can-i-ensure-the-snd-hda-intel-module-is-loaded-on-startup%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
Add snd-hda-intel
to the end of the file /etc/modules
. This will make the snd-hda-intel
module load up automatically at boot time.
You can use: sudo sh -c 'echo "snd-hda-intel" >> /etc/modules'
to do this.
It didn't work on my laptop with Debian 9.
– Roby Sottini
Jan 21 at 14:22
add a comment |
Add snd-hda-intel
to the end of the file /etc/modules
. This will make the snd-hda-intel
module load up automatically at boot time.
You can use: sudo sh -c 'echo "snd-hda-intel" >> /etc/modules'
to do this.
It didn't work on my laptop with Debian 9.
– Roby Sottini
Jan 21 at 14:22
add a comment |
Add snd-hda-intel
to the end of the file /etc/modules
. This will make the snd-hda-intel
module load up automatically at boot time.
You can use: sudo sh -c 'echo "snd-hda-intel" >> /etc/modules'
to do this.
Add snd-hda-intel
to the end of the file /etc/modules
. This will make the snd-hda-intel
module load up automatically at boot time.
You can use: sudo sh -c 'echo "snd-hda-intel" >> /etc/modules'
to do this.
answered Aug 31 '13 at 17:58
Alaa AliAlaa Ali
22.7k97095
22.7k97095
It didn't work on my laptop with Debian 9.
– Roby Sottini
Jan 21 at 14:22
add a comment |
It didn't work on my laptop with Debian 9.
– Roby Sottini
Jan 21 at 14:22
It didn't work on my laptop with Debian 9.
– Roby Sottini
Jan 21 at 14:22
It didn't work on my laptop with Debian 9.
– Roby Sottini
Jan 21 at 14:22
add a comment |
In /etc/modules
you can put every module (one per line) for those you need to load at boot time.
Running this command will append the module to the file:
echo "snd-hda-intel" | sudo tee -a /etc/modules
add a comment |
In /etc/modules
you can put every module (one per line) for those you need to load at boot time.
Running this command will append the module to the file:
echo "snd-hda-intel" | sudo tee -a /etc/modules
add a comment |
In /etc/modules
you can put every module (one per line) for those you need to load at boot time.
Running this command will append the module to the file:
echo "snd-hda-intel" | sudo tee -a /etc/modules
In /etc/modules
you can put every module (one per line) for those you need to load at boot time.
Running this command will append the module to the file:
echo "snd-hda-intel" | sudo tee -a /etc/modules
answered Aug 31 '13 at 17:58
gertvdijkgertvdijk
51.5k18144240
51.5k18144240
add a comment |
add a comment |
After attempting an "oss4" audio install, I lost audio, and reverting my mistake, did not recover the audio.
Needed to "manually": modprobe snd-hda-intel
every boot....
Until I found that the driver had been put in a blacklist.... on the oss4 attempt.
grep snd-hda-intel /etc/modprobe.d/*
/etc/modprobe.d/oss4-base_noALSA.conf:blacklist snd-hda-intel
moved the "oss4-base_noALSA.conf" away from the "/etc/modprobe.d"
sudo mv /etc/modprobe.d/oss4-base_noALSA.conf /root
and now, do not need to manually "modprobe snd-hda-intel" to get audio after every boot....
Hope it helps...
add a comment |
After attempting an "oss4" audio install, I lost audio, and reverting my mistake, did not recover the audio.
Needed to "manually": modprobe snd-hda-intel
every boot....
Until I found that the driver had been put in a blacklist.... on the oss4 attempt.
grep snd-hda-intel /etc/modprobe.d/*
/etc/modprobe.d/oss4-base_noALSA.conf:blacklist snd-hda-intel
moved the "oss4-base_noALSA.conf" away from the "/etc/modprobe.d"
sudo mv /etc/modprobe.d/oss4-base_noALSA.conf /root
and now, do not need to manually "modprobe snd-hda-intel" to get audio after every boot....
Hope it helps...
add a comment |
After attempting an "oss4" audio install, I lost audio, and reverting my mistake, did not recover the audio.
Needed to "manually": modprobe snd-hda-intel
every boot....
Until I found that the driver had been put in a blacklist.... on the oss4 attempt.
grep snd-hda-intel /etc/modprobe.d/*
/etc/modprobe.d/oss4-base_noALSA.conf:blacklist snd-hda-intel
moved the "oss4-base_noALSA.conf" away from the "/etc/modprobe.d"
sudo mv /etc/modprobe.d/oss4-base_noALSA.conf /root
and now, do not need to manually "modprobe snd-hda-intel" to get audio after every boot....
Hope it helps...
After attempting an "oss4" audio install, I lost audio, and reverting my mistake, did not recover the audio.
Needed to "manually": modprobe snd-hda-intel
every boot....
Until I found that the driver had been put in a blacklist.... on the oss4 attempt.
grep snd-hda-intel /etc/modprobe.d/*
/etc/modprobe.d/oss4-base_noALSA.conf:blacklist snd-hda-intel
moved the "oss4-base_noALSA.conf" away from the "/etc/modprobe.d"
sudo mv /etc/modprobe.d/oss4-base_noALSA.conf /root
and now, do not need to manually "modprobe snd-hda-intel" to get audio after every boot....
Hope it helps...
edited Feb 16 at 20:01
Pilot6
53.9k15111198
53.9k15111198
answered Feb 16 at 19:54
nicolas_dhnicolas_dh
11
11
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f296095%2fhow-can-i-ensure-the-snd-hda-intel-module-is-loaded-on-startup%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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