How I successfully installed the Asus PCE-AC68 WiFi card without Internet connection on Debian 9.6 Stretch












-1














Like many people, I struggled installing the PCE-AC68 wireless PCIe card on Linux.



One additional difficulty was that the computer had no possibility of connecting the web through Ethernet, since the only available Internet connection mode available was 4G.
So, I had to download a limited number of packages from a computer running Windows for later offline installation.



Here's the solution that worked for me on Debian 9.6 Stretch with AMD64 architecture (Intel 64-bit processor in my case).



1) Open a Terminal



2) Check that the Broadcom Controller of your Asus PCE-AC68 card is detected



lspci -nn


or, if you want to filter the output: lspci -nn | grep 0280



The output should display the BCM4360 chip: Broadcom Corporation BCM4360 802.11ac Wireless Network Adapter (rev 03)



3) Check if your computer has the wireless-tools package:
dpkg -l wireless-tools



If not, download the wireless-tools from https://packages.debian.org/stretch/wireless-tools



N.B. The link is for the Debian Stretch (9.x) distribution.
If your Debian distribution is else (eg. "Jessie"), simply adapt the path.



If the Linux computer on which you want to install the card has a wired Internet connection through Ethernet, you can skip 4) to 6) ; at step 7) you can replace apt by apt-get in the commands.



4) Download the proprietary driver from Broadcom from this page:



https://packages.debian.org/stretch/all/broadcom-sta-dkms/download



N.B. Again, adapt the path to your distribution if necessary.



5) [Optional] Verify the checksums of the downloaded packages. If using Windows, open a Terminal as Administrator and enter:



certutil -hashfile {the path}/{the package name}.deb MD5


and check that the output checksums matches the ones displayed on the pages from which you downloaded the packages.



6) Copy the downloaded packages to an external drive like a USB stick.



7) On your Linux computer install the packages:



`sudo apt install /media/{your username}/wireless-tools_30~pre9-12+b1_amd64.deb`

`sudo apt install /media/{your username}/broadcom-sta-dkms_6.30.223.271-5_all.deb`


Prerequisite: Your user must be present in the sudoers file, so that it can pass commands prefixed by sudo. Else, don't worry, an error will be reported.



In case the rights would not suffice, you can switch as root with su - before installing the packages.



8) Unload possibly conflicting modules:
modprobe -r b44 b43 b43legacy ssb brcmsmac bcma



9) Load the wl module: (read "WL", not W1")



modprobe wl


That's done. Your card is installed and the list of wireless networks should display.



The solution above was inspired mostly from this WiKi page in French: https://wiki.debian.org/fr/wl










share|improve this question




















  • 2




    If you want to write questions and the answers, that is encouraged, but however please do make an effort to use the two boxes Question and Answer.
    – Rui F Ribeiro
    Dec 18 at 14:37
















-1














Like many people, I struggled installing the PCE-AC68 wireless PCIe card on Linux.



One additional difficulty was that the computer had no possibility of connecting the web through Ethernet, since the only available Internet connection mode available was 4G.
So, I had to download a limited number of packages from a computer running Windows for later offline installation.



Here's the solution that worked for me on Debian 9.6 Stretch with AMD64 architecture (Intel 64-bit processor in my case).



1) Open a Terminal



2) Check that the Broadcom Controller of your Asus PCE-AC68 card is detected



lspci -nn


or, if you want to filter the output: lspci -nn | grep 0280



The output should display the BCM4360 chip: Broadcom Corporation BCM4360 802.11ac Wireless Network Adapter (rev 03)



3) Check if your computer has the wireless-tools package:
dpkg -l wireless-tools



If not, download the wireless-tools from https://packages.debian.org/stretch/wireless-tools



N.B. The link is for the Debian Stretch (9.x) distribution.
If your Debian distribution is else (eg. "Jessie"), simply adapt the path.



If the Linux computer on which you want to install the card has a wired Internet connection through Ethernet, you can skip 4) to 6) ; at step 7) you can replace apt by apt-get in the commands.



4) Download the proprietary driver from Broadcom from this page:



https://packages.debian.org/stretch/all/broadcom-sta-dkms/download



N.B. Again, adapt the path to your distribution if necessary.



5) [Optional] Verify the checksums of the downloaded packages. If using Windows, open a Terminal as Administrator and enter:



certutil -hashfile {the path}/{the package name}.deb MD5


and check that the output checksums matches the ones displayed on the pages from which you downloaded the packages.



6) Copy the downloaded packages to an external drive like a USB stick.



7) On your Linux computer install the packages:



`sudo apt install /media/{your username}/wireless-tools_30~pre9-12+b1_amd64.deb`

`sudo apt install /media/{your username}/broadcom-sta-dkms_6.30.223.271-5_all.deb`


Prerequisite: Your user must be present in the sudoers file, so that it can pass commands prefixed by sudo. Else, don't worry, an error will be reported.



In case the rights would not suffice, you can switch as root with su - before installing the packages.



8) Unload possibly conflicting modules:
modprobe -r b44 b43 b43legacy ssb brcmsmac bcma



9) Load the wl module: (read "WL", not W1")



modprobe wl


That's done. Your card is installed and the list of wireless networks should display.



The solution above was inspired mostly from this WiKi page in French: https://wiki.debian.org/fr/wl










share|improve this question




















  • 2




    If you want to write questions and the answers, that is encouraged, but however please do make an effort to use the two boxes Question and Answer.
    – Rui F Ribeiro
    Dec 18 at 14:37














-1












-1








-1







Like many people, I struggled installing the PCE-AC68 wireless PCIe card on Linux.



One additional difficulty was that the computer had no possibility of connecting the web through Ethernet, since the only available Internet connection mode available was 4G.
So, I had to download a limited number of packages from a computer running Windows for later offline installation.



Here's the solution that worked for me on Debian 9.6 Stretch with AMD64 architecture (Intel 64-bit processor in my case).



1) Open a Terminal



2) Check that the Broadcom Controller of your Asus PCE-AC68 card is detected



lspci -nn


or, if you want to filter the output: lspci -nn | grep 0280



The output should display the BCM4360 chip: Broadcom Corporation BCM4360 802.11ac Wireless Network Adapter (rev 03)



3) Check if your computer has the wireless-tools package:
dpkg -l wireless-tools



If not, download the wireless-tools from https://packages.debian.org/stretch/wireless-tools



N.B. The link is for the Debian Stretch (9.x) distribution.
If your Debian distribution is else (eg. "Jessie"), simply adapt the path.



If the Linux computer on which you want to install the card has a wired Internet connection through Ethernet, you can skip 4) to 6) ; at step 7) you can replace apt by apt-get in the commands.



4) Download the proprietary driver from Broadcom from this page:



https://packages.debian.org/stretch/all/broadcom-sta-dkms/download



N.B. Again, adapt the path to your distribution if necessary.



5) [Optional] Verify the checksums of the downloaded packages. If using Windows, open a Terminal as Administrator and enter:



certutil -hashfile {the path}/{the package name}.deb MD5


and check that the output checksums matches the ones displayed on the pages from which you downloaded the packages.



6) Copy the downloaded packages to an external drive like a USB stick.



7) On your Linux computer install the packages:



`sudo apt install /media/{your username}/wireless-tools_30~pre9-12+b1_amd64.deb`

`sudo apt install /media/{your username}/broadcom-sta-dkms_6.30.223.271-5_all.deb`


Prerequisite: Your user must be present in the sudoers file, so that it can pass commands prefixed by sudo. Else, don't worry, an error will be reported.



In case the rights would not suffice, you can switch as root with su - before installing the packages.



8) Unload possibly conflicting modules:
modprobe -r b44 b43 b43legacy ssb brcmsmac bcma



9) Load the wl module: (read "WL", not W1")



modprobe wl


That's done. Your card is installed and the list of wireless networks should display.



The solution above was inspired mostly from this WiKi page in French: https://wiki.debian.org/fr/wl










share|improve this question















Like many people, I struggled installing the PCE-AC68 wireless PCIe card on Linux.



One additional difficulty was that the computer had no possibility of connecting the web through Ethernet, since the only available Internet connection mode available was 4G.
So, I had to download a limited number of packages from a computer running Windows for later offline installation.



Here's the solution that worked for me on Debian 9.6 Stretch with AMD64 architecture (Intel 64-bit processor in my case).



1) Open a Terminal



2) Check that the Broadcom Controller of your Asus PCE-AC68 card is detected



lspci -nn


or, if you want to filter the output: lspci -nn | grep 0280



The output should display the BCM4360 chip: Broadcom Corporation BCM4360 802.11ac Wireless Network Adapter (rev 03)



3) Check if your computer has the wireless-tools package:
dpkg -l wireless-tools



If not, download the wireless-tools from https://packages.debian.org/stretch/wireless-tools



N.B. The link is for the Debian Stretch (9.x) distribution.
If your Debian distribution is else (eg. "Jessie"), simply adapt the path.



If the Linux computer on which you want to install the card has a wired Internet connection through Ethernet, you can skip 4) to 6) ; at step 7) you can replace apt by apt-get in the commands.



4) Download the proprietary driver from Broadcom from this page:



https://packages.debian.org/stretch/all/broadcom-sta-dkms/download



N.B. Again, adapt the path to your distribution if necessary.



5) [Optional] Verify the checksums of the downloaded packages. If using Windows, open a Terminal as Administrator and enter:



certutil -hashfile {the path}/{the package name}.deb MD5


and check that the output checksums matches the ones displayed on the pages from which you downloaded the packages.



6) Copy the downloaded packages to an external drive like a USB stick.



7) On your Linux computer install the packages:



`sudo apt install /media/{your username}/wireless-tools_30~pre9-12+b1_amd64.deb`

`sudo apt install /media/{your username}/broadcom-sta-dkms_6.30.223.271-5_all.deb`


Prerequisite: Your user must be present in the sudoers file, so that it can pass commands prefixed by sudo. Else, don't worry, an error will be reported.



In case the rights would not suffice, you can switch as root with su - before installing the packages.



8) Unload possibly conflicting modules:
modprobe -r b44 b43 b43legacy ssb brcmsmac bcma



9) Load the wl module: (read "WL", not W1")



modprobe wl


That's done. Your card is installed and the list of wireless networks should display.



The solution above was inspired mostly from this WiKi page in French: https://wiki.debian.org/fr/wl







wifi drivers broadcom asus






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 18 at 23:03









Rui F Ribeiro

39k1479129




39k1479129










asked Dec 18 at 13:52









OuzoPower

2714




2714








  • 2




    If you want to write questions and the answers, that is encouraged, but however please do make an effort to use the two boxes Question and Answer.
    – Rui F Ribeiro
    Dec 18 at 14:37














  • 2




    If you want to write questions and the answers, that is encouraged, but however please do make an effort to use the two boxes Question and Answer.
    – Rui F Ribeiro
    Dec 18 at 14:37








2




2




If you want to write questions and the answers, that is encouraged, but however please do make an effort to use the two boxes Question and Answer.
– Rui F Ribeiro
Dec 18 at 14:37




If you want to write questions and the answers, that is encouraged, but however please do make an effort to use the two boxes Question and Answer.
– Rui F Ribeiro
Dec 18 at 14:37















active

oldest

votes











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',
autoActivateHeartbeat: false,
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%2f489689%2fhow-i-successfully-installed-the-asus-pce-ac68-wifi-card-without-internet-connec%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















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%2f489689%2fhow-i-successfully-installed-the-asus-pce-ac68-wifi-card-without-internet-connec%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