What Linux Distro contains support for Killer E2200 Ethernet chip?











up vote
2
down vote

favorite
1












I've been very interested in switching over to a Linux based system lately. I've decided I'm going to dual boot, but my primary machine will be the Linux system. I found that Ubuntu 12.04 didn't have any support for this Ethernet chip, and I found some solutions but none worked. And it was awfully difficult navigating through web pages on Wifi, maybe that chip doesn't work so well either on Ubuntu.



Anyway, I'd like to know if there are any Linux distributions that already come with this needed support?



I have an MSI GT70 onc-494us










share|improve this question




























    up vote
    2
    down vote

    favorite
    1












    I've been very interested in switching over to a Linux based system lately. I've decided I'm going to dual boot, but my primary machine will be the Linux system. I found that Ubuntu 12.04 didn't have any support for this Ethernet chip, and I found some solutions but none worked. And it was awfully difficult navigating through web pages on Wifi, maybe that chip doesn't work so well either on Ubuntu.



    Anyway, I'd like to know if there are any Linux distributions that already come with this needed support?



    I have an MSI GT70 onc-494us










    share|improve this question


























      up vote
      2
      down vote

      favorite
      1









      up vote
      2
      down vote

      favorite
      1






      1





      I've been very interested in switching over to a Linux based system lately. I've decided I'm going to dual boot, but my primary machine will be the Linux system. I found that Ubuntu 12.04 didn't have any support for this Ethernet chip, and I found some solutions but none worked. And it was awfully difficult navigating through web pages on Wifi, maybe that chip doesn't work so well either on Ubuntu.



      Anyway, I'd like to know if there are any Linux distributions that already come with this needed support?



      I have an MSI GT70 onc-494us










      share|improve this question















      I've been very interested in switching over to a Linux based system lately. I've decided I'm going to dual boot, but my primary machine will be the Linux system. I found that Ubuntu 12.04 didn't have any support for this Ethernet chip, and I found some solutions but none worked. And it was awfully difficult navigating through web pages on Wifi, maybe that chip doesn't work so well either on Ubuntu.



      Anyway, I'd like to know if there are any Linux distributions that already come with this needed support?



      I have an MSI GT70 onc-494us







      linux ubuntu






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 26 at 0:27









      Rui F Ribeiro

      38.3k1477127




      38.3k1477127










      asked May 3 '13 at 22:29









      Daniel Contreras

      131115




      131115






















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          3
          down vote













          I found these threads on the Ubuntu Forums which discus the support (lack of support) for the Killer E2200 Ethernet network driver under Linux.




          • BigFoot Killer e2200 not recognized

          • Qualcomm Atheros Bigfoot Killer E2200 Ethernet working in linux


          Buried in these threads were directions for taking an alx driver and patching it so that it would work with the E2200.



          The first link contains the details of figuring out how to patch the alx driver. The second thread contains better details and also various fixes for getting the driver to work with later versions of the Linux kernel 3.2+.



          General steps




          1. Installed kernel 3.6 (as described here)

          2. Downloaded drivers from here and apply both patches

          3. Extract archive and chdir into it

          4. run: sudo su

          5. run: ./scripts/driver-select alx

          6. run: make

          7. run: make install

          8. run: make unload

          9. reboot


          I would read through those threads before attempting to compile the drivers, also there were no distros mentioned in the threads that natively supported this hardware, so you'll be on your own for getting support for it, at least in the short term.



          Finally on page 7 of the second thread someone had forked the compat-drivers (package that contains alx) on github and had applied the various patches to this code base. They claimed they had filed a pull request so hopefully these fixes will be making their way into the mainline at some point down the road.






          share|improve this answer




























            up vote
            3
            down vote













            In The Killer E2200 Network Platform and Linux it reads:




            [...] The E2200 series is supported with Linux kernel 3.10 and higher. [...]







            [...] With kernel 3.10, the E2205 port is just as fast as a standard gigabit port, and no problems have been encountered. [...]







            share|improve this answer






























              up vote
              1
              down vote













              Linux distributions use roughly the same kernel, so either any will support it (if the driver is stable and in the vanilla kernel) or there is only support through experimental or third party drivers.






              share|improve this answer





















                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: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: null,
                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%2funix.stackexchange.com%2fquestions%2f74617%2fwhat-linux-distro-contains-support-for-killer-e2200-ethernet-chip%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
                3
                down vote













                I found these threads on the Ubuntu Forums which discus the support (lack of support) for the Killer E2200 Ethernet network driver under Linux.




                • BigFoot Killer e2200 not recognized

                • Qualcomm Atheros Bigfoot Killer E2200 Ethernet working in linux


                Buried in these threads were directions for taking an alx driver and patching it so that it would work with the E2200.



                The first link contains the details of figuring out how to patch the alx driver. The second thread contains better details and also various fixes for getting the driver to work with later versions of the Linux kernel 3.2+.



                General steps




                1. Installed kernel 3.6 (as described here)

                2. Downloaded drivers from here and apply both patches

                3. Extract archive and chdir into it

                4. run: sudo su

                5. run: ./scripts/driver-select alx

                6. run: make

                7. run: make install

                8. run: make unload

                9. reboot


                I would read through those threads before attempting to compile the drivers, also there were no distros mentioned in the threads that natively supported this hardware, so you'll be on your own for getting support for it, at least in the short term.



                Finally on page 7 of the second thread someone had forked the compat-drivers (package that contains alx) on github and had applied the various patches to this code base. They claimed they had filed a pull request so hopefully these fixes will be making their way into the mainline at some point down the road.






                share|improve this answer

























                  up vote
                  3
                  down vote













                  I found these threads on the Ubuntu Forums which discus the support (lack of support) for the Killer E2200 Ethernet network driver under Linux.




                  • BigFoot Killer e2200 not recognized

                  • Qualcomm Atheros Bigfoot Killer E2200 Ethernet working in linux


                  Buried in these threads were directions for taking an alx driver and patching it so that it would work with the E2200.



                  The first link contains the details of figuring out how to patch the alx driver. The second thread contains better details and also various fixes for getting the driver to work with later versions of the Linux kernel 3.2+.



                  General steps




                  1. Installed kernel 3.6 (as described here)

                  2. Downloaded drivers from here and apply both patches

                  3. Extract archive and chdir into it

                  4. run: sudo su

                  5. run: ./scripts/driver-select alx

                  6. run: make

                  7. run: make install

                  8. run: make unload

                  9. reboot


                  I would read through those threads before attempting to compile the drivers, also there were no distros mentioned in the threads that natively supported this hardware, so you'll be on your own for getting support for it, at least in the short term.



                  Finally on page 7 of the second thread someone had forked the compat-drivers (package that contains alx) on github and had applied the various patches to this code base. They claimed they had filed a pull request so hopefully these fixes will be making their way into the mainline at some point down the road.






                  share|improve this answer























                    up vote
                    3
                    down vote










                    up vote
                    3
                    down vote









                    I found these threads on the Ubuntu Forums which discus the support (lack of support) for the Killer E2200 Ethernet network driver under Linux.




                    • BigFoot Killer e2200 not recognized

                    • Qualcomm Atheros Bigfoot Killer E2200 Ethernet working in linux


                    Buried in these threads were directions for taking an alx driver and patching it so that it would work with the E2200.



                    The first link contains the details of figuring out how to patch the alx driver. The second thread contains better details and also various fixes for getting the driver to work with later versions of the Linux kernel 3.2+.



                    General steps




                    1. Installed kernel 3.6 (as described here)

                    2. Downloaded drivers from here and apply both patches

                    3. Extract archive and chdir into it

                    4. run: sudo su

                    5. run: ./scripts/driver-select alx

                    6. run: make

                    7. run: make install

                    8. run: make unload

                    9. reboot


                    I would read through those threads before attempting to compile the drivers, also there were no distros mentioned in the threads that natively supported this hardware, so you'll be on your own for getting support for it, at least in the short term.



                    Finally on page 7 of the second thread someone had forked the compat-drivers (package that contains alx) on github and had applied the various patches to this code base. They claimed they had filed a pull request so hopefully these fixes will be making their way into the mainline at some point down the road.






                    share|improve this answer












                    I found these threads on the Ubuntu Forums which discus the support (lack of support) for the Killer E2200 Ethernet network driver under Linux.




                    • BigFoot Killer e2200 not recognized

                    • Qualcomm Atheros Bigfoot Killer E2200 Ethernet working in linux


                    Buried in these threads were directions for taking an alx driver and patching it so that it would work with the E2200.



                    The first link contains the details of figuring out how to patch the alx driver. The second thread contains better details and also various fixes for getting the driver to work with later versions of the Linux kernel 3.2+.



                    General steps




                    1. Installed kernel 3.6 (as described here)

                    2. Downloaded drivers from here and apply both patches

                    3. Extract archive and chdir into it

                    4. run: sudo su

                    5. run: ./scripts/driver-select alx

                    6. run: make

                    7. run: make install

                    8. run: make unload

                    9. reboot


                    I would read through those threads before attempting to compile the drivers, also there were no distros mentioned in the threads that natively supported this hardware, so you'll be on your own for getting support for it, at least in the short term.



                    Finally on page 7 of the second thread someone had forked the compat-drivers (package that contains alx) on github and had applied the various patches to this code base. They claimed they had filed a pull request so hopefully these fixes will be making their way into the mainline at some point down the road.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered May 4 '13 at 1:58









                    slm

                    245k66505671




                    245k66505671
























                        up vote
                        3
                        down vote













                        In The Killer E2200 Network Platform and Linux it reads:




                        [...] The E2200 series is supported with Linux kernel 3.10 and higher. [...]







                        [...] With kernel 3.10, the E2205 port is just as fast as a standard gigabit port, and no problems have been encountered. [...]







                        share|improve this answer



























                          up vote
                          3
                          down vote













                          In The Killer E2200 Network Platform and Linux it reads:




                          [...] The E2200 series is supported with Linux kernel 3.10 and higher. [...]







                          [...] With kernel 3.10, the E2205 port is just as fast as a standard gigabit port, and no problems have been encountered. [...]







                          share|improve this answer

























                            up vote
                            3
                            down vote










                            up vote
                            3
                            down vote









                            In The Killer E2200 Network Platform and Linux it reads:




                            [...] The E2200 series is supported with Linux kernel 3.10 and higher. [...]







                            [...] With kernel 3.10, the E2205 port is just as fast as a standard gigabit port, and no problems have been encountered. [...]







                            share|improve this answer














                            In The Killer E2200 Network Platform and Linux it reads:




                            [...] The E2200 series is supported with Linux kernel 3.10 and higher. [...]







                            [...] With kernel 3.10, the E2205 port is just as fast as a standard gigabit port, and no problems have been encountered. [...]








                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Oct 4 '15 at 9:24

























                            answered Oct 4 '15 at 7:30









                            Paul Vargas

                            1313




                            1313






















                                up vote
                                1
                                down vote













                                Linux distributions use roughly the same kernel, so either any will support it (if the driver is stable and in the vanilla kernel) or there is only support through experimental or third party drivers.






                                share|improve this answer

























                                  up vote
                                  1
                                  down vote













                                  Linux distributions use roughly the same kernel, so either any will support it (if the driver is stable and in the vanilla kernel) or there is only support through experimental or third party drivers.






                                  share|improve this answer























                                    up vote
                                    1
                                    down vote










                                    up vote
                                    1
                                    down vote









                                    Linux distributions use roughly the same kernel, so either any will support it (if the driver is stable and in the vanilla kernel) or there is only support through experimental or third party drivers.






                                    share|improve this answer












                                    Linux distributions use roughly the same kernel, so either any will support it (if the driver is stable and in the vanilla kernel) or there is only support through experimental or third party drivers.







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered May 3 '13 at 23:21









                                    vonbrand

                                    14.1k22444




                                    14.1k22444






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Unix & Linux Stack Exchange!


                                        • 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%2funix.stackexchange.com%2fquestions%2f74617%2fwhat-linux-distro-contains-support-for-killer-e2200-ethernet-chip%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

                                        Morgemoulin

                                        Scott Moir

                                        Souastre