How discover (and find) all drivers that I'm using for a new minimal SO install?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
2
down vote

favorite












I'm using Debian 8 and want to formating my machine to Debian 9. I pretend to do a minimal install with just the right drivers and the necessary X modules. Everything will be done from the CLI. So, how can I discover the necessary drivers that I'm using and find them on Debian 9 (maybe the names have change?).



I have find on the web how discover my video and card drivers, but has something more?







share|improve this question
























    up vote
    2
    down vote

    favorite












    I'm using Debian 8 and want to formating my machine to Debian 9. I pretend to do a minimal install with just the right drivers and the necessary X modules. Everything will be done from the CLI. So, how can I discover the necessary drivers that I'm using and find them on Debian 9 (maybe the names have change?).



    I have find on the web how discover my video and card drivers, but has something more?







    share|improve this question






















      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      I'm using Debian 8 and want to formating my machine to Debian 9. I pretend to do a minimal install with just the right drivers and the necessary X modules. Everything will be done from the CLI. So, how can I discover the necessary drivers that I'm using and find them on Debian 9 (maybe the names have change?).



      I have find on the web how discover my video and card drivers, but has something more?







      share|improve this question












      I'm using Debian 8 and want to formating my machine to Debian 9. I pretend to do a minimal install with just the right drivers and the necessary X modules. Everything will be done from the CLI. So, how can I discover the necessary drivers that I'm using and find them on Debian 9 (maybe the names have change?).



      I have find on the web how discover my video and card drivers, but has something more?









      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 22 at 4:32







      user224753



























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          You can get the list of the driver through the command lspci then get the package name that provides this driver.



          e,g:



          Get the list of kernel modules driver.



          lspci -knn


          A sample output for the wifi driver:



          08:00.0 Network controller [0280]: Qualcomm Atheros AR9485 Wireless Network Adapter [168c:0032] (rev 01)
          Subsystem: Lite-On Communications Inc AR9485 Wireless Network Adapter [11ad:6617]
          Kernel driver in use: ath9k
          Kernel modules: ath9k


          To get the package name which provide the ath9k module :



          apt-file search ath9k | less


          The apt-file can be installed and updated through:



          apt install apt-file
          apt-file update


          sample output:



          firmware-atheros: /lib/firmware/ath9k_htc/htc_7010-1.4.0.fw
          firmware-atheros: /lib/firmware/ath9k_htc/htc_9271-1.4.0.fw
          ...


          From this example the ath9k belong to the firmware-atheros pacakge. Using the package name you can check on the official website if the package is available on debian Stretch.






          share|improve this answer






















          • Apt-file doesn't worked for me, but apt-cache search yes. But your tip have help-me. Thanks a lot. I found my graphic and wireless card drivers. There is an additional driver to install manually in my case? Or the monitor, keyboard, sound, etc, are automatically recognized?
            – user224753
            Jan 26 at 10:38










          • @PeterGriffin generally it should work without problem (if you don't have any issue with debian Jessie)
            – GAD3R
            Jan 26 at 13:52










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          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: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );








           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f418747%2fhow-discover-and-find-all-drivers-that-im-using-for-a-new-minimal-so-install%23new-answer', 'question_page');

          );

          Post as a guest





























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote



          accepted










          You can get the list of the driver through the command lspci then get the package name that provides this driver.



          e,g:



          Get the list of kernel modules driver.



          lspci -knn


          A sample output for the wifi driver:



          08:00.0 Network controller [0280]: Qualcomm Atheros AR9485 Wireless Network Adapter [168c:0032] (rev 01)
          Subsystem: Lite-On Communications Inc AR9485 Wireless Network Adapter [11ad:6617]
          Kernel driver in use: ath9k
          Kernel modules: ath9k


          To get the package name which provide the ath9k module :



          apt-file search ath9k | less


          The apt-file can be installed and updated through:



          apt install apt-file
          apt-file update


          sample output:



          firmware-atheros: /lib/firmware/ath9k_htc/htc_7010-1.4.0.fw
          firmware-atheros: /lib/firmware/ath9k_htc/htc_9271-1.4.0.fw
          ...


          From this example the ath9k belong to the firmware-atheros pacakge. Using the package name you can check on the official website if the package is available on debian Stretch.






          share|improve this answer






















          • Apt-file doesn't worked for me, but apt-cache search yes. But your tip have help-me. Thanks a lot. I found my graphic and wireless card drivers. There is an additional driver to install manually in my case? Or the monitor, keyboard, sound, etc, are automatically recognized?
            – user224753
            Jan 26 at 10:38










          • @PeterGriffin generally it should work without problem (if you don't have any issue with debian Jessie)
            – GAD3R
            Jan 26 at 13:52














          up vote
          1
          down vote



          accepted










          You can get the list of the driver through the command lspci then get the package name that provides this driver.



          e,g:



          Get the list of kernel modules driver.



          lspci -knn


          A sample output for the wifi driver:



          08:00.0 Network controller [0280]: Qualcomm Atheros AR9485 Wireless Network Adapter [168c:0032] (rev 01)
          Subsystem: Lite-On Communications Inc AR9485 Wireless Network Adapter [11ad:6617]
          Kernel driver in use: ath9k
          Kernel modules: ath9k


          To get the package name which provide the ath9k module :



          apt-file search ath9k | less


          The apt-file can be installed and updated through:



          apt install apt-file
          apt-file update


          sample output:



          firmware-atheros: /lib/firmware/ath9k_htc/htc_7010-1.4.0.fw
          firmware-atheros: /lib/firmware/ath9k_htc/htc_9271-1.4.0.fw
          ...


          From this example the ath9k belong to the firmware-atheros pacakge. Using the package name you can check on the official website if the package is available on debian Stretch.






          share|improve this answer






















          • Apt-file doesn't worked for me, but apt-cache search yes. But your tip have help-me. Thanks a lot. I found my graphic and wireless card drivers. There is an additional driver to install manually in my case? Or the monitor, keyboard, sound, etc, are automatically recognized?
            – user224753
            Jan 26 at 10:38










          • @PeterGriffin generally it should work without problem (if you don't have any issue with debian Jessie)
            – GAD3R
            Jan 26 at 13:52












          up vote
          1
          down vote



          accepted







          up vote
          1
          down vote



          accepted






          You can get the list of the driver through the command lspci then get the package name that provides this driver.



          e,g:



          Get the list of kernel modules driver.



          lspci -knn


          A sample output for the wifi driver:



          08:00.0 Network controller [0280]: Qualcomm Atheros AR9485 Wireless Network Adapter [168c:0032] (rev 01)
          Subsystem: Lite-On Communications Inc AR9485 Wireless Network Adapter [11ad:6617]
          Kernel driver in use: ath9k
          Kernel modules: ath9k


          To get the package name which provide the ath9k module :



          apt-file search ath9k | less


          The apt-file can be installed and updated through:



          apt install apt-file
          apt-file update


          sample output:



          firmware-atheros: /lib/firmware/ath9k_htc/htc_7010-1.4.0.fw
          firmware-atheros: /lib/firmware/ath9k_htc/htc_9271-1.4.0.fw
          ...


          From this example the ath9k belong to the firmware-atheros pacakge. Using the package name you can check on the official website if the package is available on debian Stretch.






          share|improve this answer














          You can get the list of the driver through the command lspci then get the package name that provides this driver.



          e,g:



          Get the list of kernel modules driver.



          lspci -knn


          A sample output for the wifi driver:



          08:00.0 Network controller [0280]: Qualcomm Atheros AR9485 Wireless Network Adapter [168c:0032] (rev 01)
          Subsystem: Lite-On Communications Inc AR9485 Wireless Network Adapter [11ad:6617]
          Kernel driver in use: ath9k
          Kernel modules: ath9k


          To get the package name which provide the ath9k module :



          apt-file search ath9k | less


          The apt-file can be installed and updated through:



          apt install apt-file
          apt-file update


          sample output:



          firmware-atheros: /lib/firmware/ath9k_htc/htc_7010-1.4.0.fw
          firmware-atheros: /lib/firmware/ath9k_htc/htc_9271-1.4.0.fw
          ...


          From this example the ath9k belong to the firmware-atheros pacakge. Using the package name you can check on the official website if the package is available on debian Stretch.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 26 at 13:48

























          answered Jan 22 at 13:24









          GAD3R

          22.4k154894




          22.4k154894











          • Apt-file doesn't worked for me, but apt-cache search yes. But your tip have help-me. Thanks a lot. I found my graphic and wireless card drivers. There is an additional driver to install manually in my case? Or the monitor, keyboard, sound, etc, are automatically recognized?
            – user224753
            Jan 26 at 10:38










          • @PeterGriffin generally it should work without problem (if you don't have any issue with debian Jessie)
            – GAD3R
            Jan 26 at 13:52
















          • Apt-file doesn't worked for me, but apt-cache search yes. But your tip have help-me. Thanks a lot. I found my graphic and wireless card drivers. There is an additional driver to install manually in my case? Or the monitor, keyboard, sound, etc, are automatically recognized?
            – user224753
            Jan 26 at 10:38










          • @PeterGriffin generally it should work without problem (if you don't have any issue with debian Jessie)
            – GAD3R
            Jan 26 at 13:52















          Apt-file doesn't worked for me, but apt-cache search yes. But your tip have help-me. Thanks a lot. I found my graphic and wireless card drivers. There is an additional driver to install manually in my case? Or the monitor, keyboard, sound, etc, are automatically recognized?
          – user224753
          Jan 26 at 10:38




          Apt-file doesn't worked for me, but apt-cache search yes. But your tip have help-me. Thanks a lot. I found my graphic and wireless card drivers. There is an additional driver to install manually in my case? Or the monitor, keyboard, sound, etc, are automatically recognized?
          – user224753
          Jan 26 at 10:38












          @PeterGriffin generally it should work without problem (if you don't have any issue with debian Jessie)
          – GAD3R
          Jan 26 at 13:52




          @PeterGriffin generally it should work without problem (if you don't have any issue with debian Jessie)
          – GAD3R
          Jan 26 at 13:52












           

          draft saved


          draft discarded


























           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f418747%2fhow-discover-and-find-all-drivers-that-im-using-for-a-new-minimal-so-install%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay