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;
}







9















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?










share|improve this question































    9















    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?










    share|improve this question



























      9












      9








      9








      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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






















          3 Answers
          3






          active

          oldest

          votes


















          7














          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.






          share|improve this answer
























          • It didn't work on my laptop with Debian 9.

            – Roby Sottini
            Jan 21 at 14:22



















          4














          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





          share|improve this answer































            0














            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...






            share|improve this answer


























              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
              });


              }
              });














              draft saved

              draft discarded


















              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









              7














              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.






              share|improve this answer
























              • It didn't work on my laptop with Debian 9.

                – Roby Sottini
                Jan 21 at 14:22
















              7














              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.






              share|improve this answer
























              • It didn't work on my laptop with Debian 9.

                – Roby Sottini
                Jan 21 at 14:22














              7












              7








              7







              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.






              share|improve this answer













              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.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              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



















              • 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













              4














              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





              share|improve this answer




























                4














                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





                share|improve this answer


























                  4












                  4








                  4







                  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





                  share|improve this answer













                  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






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Aug 31 '13 at 17:58









                  gertvdijkgertvdijk

                  51.5k18144240




                  51.5k18144240























                      0














                      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...






                      share|improve this answer






























                        0














                        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...






                        share|improve this answer




























                          0












                          0








                          0







                          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...






                          share|improve this answer















                          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...







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Feb 16 at 20:01









                          Pilot6

                          53.9k15111198




                          53.9k15111198










                          answered Feb 16 at 19:54









                          nicolas_dhnicolas_dh

                          11




                          11






























                              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.




                              draft saved


                              draft discarded














                              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





















































                              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

                              Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                              ComboBox Display Member on multiple fields

                              Is it possible to collect Nectar points via Trainline?