Debian - Switch back to the integrated wifi
I use Debian 8 and tonight I tried to switch between the integrated wifi and an wifi usb key using online tutorial. It worked. I did this just to see if wireless connection was better, but it isn't.
Now I would like to switch back to my integrated wifi... I'm using an Acer Aspire 7715. I used "modprobe mt7601Usta" as last command to install/use the wifi usb key, but how can I switch/reinstall (to) my integrated wifi now ? I tried to find the name of my wifi module, using "sudo lshw -C network". I got "AR928X" as wireless product.
debian wifi modprobe
add a comment |
I use Debian 8 and tonight I tried to switch between the integrated wifi and an wifi usb key using online tutorial. It worked. I did this just to see if wireless connection was better, but it isn't.
Now I would like to switch back to my integrated wifi... I'm using an Acer Aspire 7715. I used "modprobe mt7601Usta" as last command to install/use the wifi usb key, but how can I switch/reinstall (to) my integrated wifi now ? I tried to find the name of my wifi module, using "sudo lshw -C network". I got "AR928X" as wireless product.
debian wifi modprobe
1
Welcome to U&L . Thelspci
command will give you the required information about the wifi card e,g:lspci -knn | grep Net -A2
. You can edit your question here
– GAD3R
Dec 27 '17 at 22:33
add a comment |
I use Debian 8 and tonight I tried to switch between the integrated wifi and an wifi usb key using online tutorial. It worked. I did this just to see if wireless connection was better, but it isn't.
Now I would like to switch back to my integrated wifi... I'm using an Acer Aspire 7715. I used "modprobe mt7601Usta" as last command to install/use the wifi usb key, but how can I switch/reinstall (to) my integrated wifi now ? I tried to find the name of my wifi module, using "sudo lshw -C network". I got "AR928X" as wireless product.
debian wifi modprobe
I use Debian 8 and tonight I tried to switch between the integrated wifi and an wifi usb key using online tutorial. It worked. I did this just to see if wireless connection was better, but it isn't.
Now I would like to switch back to my integrated wifi... I'm using an Acer Aspire 7715. I used "modprobe mt7601Usta" as last command to install/use the wifi usb key, but how can I switch/reinstall (to) my integrated wifi now ? I tried to find the name of my wifi module, using "sudo lshw -C network". I got "AR928X" as wireless product.
debian wifi modprobe
debian wifi modprobe
edited Dec 16 at 4:25
Rui F Ribeiro
38.9k1479129
38.9k1479129
asked Dec 27 '17 at 22:11
Robg
1
1
1
Welcome to U&L . Thelspci
command will give you the required information about the wifi card e,g:lspci -knn | grep Net -A2
. You can edit your question here
– GAD3R
Dec 27 '17 at 22:33
add a comment |
1
Welcome to U&L . Thelspci
command will give you the required information about the wifi card e,g:lspci -knn | grep Net -A2
. You can edit your question here
– GAD3R
Dec 27 '17 at 22:33
1
1
Welcome to U&L . The
lspci
command will give you the required information about the wifi card e,g: lspci -knn | grep Net -A2
. You can edit your question here– GAD3R
Dec 27 '17 at 22:33
Welcome to U&L . The
lspci
command will give you the required information about the wifi card e,g: lspci -knn | grep Net -A2
. You can edit your question here– GAD3R
Dec 27 '17 at 22:33
add a comment |
1 Answer
1
active
oldest
votes
According to the debian wiki the Qualcomm Atheros AR928X Wireless Network Adapter use the ath9k
driver. It is included in the linux kernel.
To unload the driver use:
sudo modprobe -rv ath9k
or
sudo rmmod ath9k
To load the driver use:
sudo modprobe -v ath9k
To unload the driver of your USB wifi adapter you can use modprobe -rv mt7601Usta
(the best command the -v
= verbose) or the rmmod mt7601Usta
command.
Thank you for your answer. Unfortunately, I got : insmod /lib/modules/3.16.0-4-amd64/kernel/net/wireless/cfg80211.ko modprobe: ERROR: could not insert 'ath9k': Invalid argument after using "sudo modprobe -v ath9k".
– Robg
Dec 27 '17 at 23:20
@Robg Disable the secure boot from your BIOS settings then trysudo modprobe -rv ath9k
thensudo modprobe -v ath9k
– GAD3R
Dec 28 '17 at 11:39
add a comment |
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
});
}
});
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%2funix.stackexchange.com%2fquestions%2f413333%2fdebian-switch-back-to-the-integrated-wifi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
According to the debian wiki the Qualcomm Atheros AR928X Wireless Network Adapter use the ath9k
driver. It is included in the linux kernel.
To unload the driver use:
sudo modprobe -rv ath9k
or
sudo rmmod ath9k
To load the driver use:
sudo modprobe -v ath9k
To unload the driver of your USB wifi adapter you can use modprobe -rv mt7601Usta
(the best command the -v
= verbose) or the rmmod mt7601Usta
command.
Thank you for your answer. Unfortunately, I got : insmod /lib/modules/3.16.0-4-amd64/kernel/net/wireless/cfg80211.ko modprobe: ERROR: could not insert 'ath9k': Invalid argument after using "sudo modprobe -v ath9k".
– Robg
Dec 27 '17 at 23:20
@Robg Disable the secure boot from your BIOS settings then trysudo modprobe -rv ath9k
thensudo modprobe -v ath9k
– GAD3R
Dec 28 '17 at 11:39
add a comment |
According to the debian wiki the Qualcomm Atheros AR928X Wireless Network Adapter use the ath9k
driver. It is included in the linux kernel.
To unload the driver use:
sudo modprobe -rv ath9k
or
sudo rmmod ath9k
To load the driver use:
sudo modprobe -v ath9k
To unload the driver of your USB wifi adapter you can use modprobe -rv mt7601Usta
(the best command the -v
= verbose) or the rmmod mt7601Usta
command.
Thank you for your answer. Unfortunately, I got : insmod /lib/modules/3.16.0-4-amd64/kernel/net/wireless/cfg80211.ko modprobe: ERROR: could not insert 'ath9k': Invalid argument after using "sudo modprobe -v ath9k".
– Robg
Dec 27 '17 at 23:20
@Robg Disable the secure boot from your BIOS settings then trysudo modprobe -rv ath9k
thensudo modprobe -v ath9k
– GAD3R
Dec 28 '17 at 11:39
add a comment |
According to the debian wiki the Qualcomm Atheros AR928X Wireless Network Adapter use the ath9k
driver. It is included in the linux kernel.
To unload the driver use:
sudo modprobe -rv ath9k
or
sudo rmmod ath9k
To load the driver use:
sudo modprobe -v ath9k
To unload the driver of your USB wifi adapter you can use modprobe -rv mt7601Usta
(the best command the -v
= verbose) or the rmmod mt7601Usta
command.
According to the debian wiki the Qualcomm Atheros AR928X Wireless Network Adapter use the ath9k
driver. It is included in the linux kernel.
To unload the driver use:
sudo modprobe -rv ath9k
or
sudo rmmod ath9k
To load the driver use:
sudo modprobe -v ath9k
To unload the driver of your USB wifi adapter you can use modprobe -rv mt7601Usta
(the best command the -v
= verbose) or the rmmod mt7601Usta
command.
edited Dec 27 '17 at 22:43
answered Dec 27 '17 at 22:37
GAD3R
25.4k1750106
25.4k1750106
Thank you for your answer. Unfortunately, I got : insmod /lib/modules/3.16.0-4-amd64/kernel/net/wireless/cfg80211.ko modprobe: ERROR: could not insert 'ath9k': Invalid argument after using "sudo modprobe -v ath9k".
– Robg
Dec 27 '17 at 23:20
@Robg Disable the secure boot from your BIOS settings then trysudo modprobe -rv ath9k
thensudo modprobe -v ath9k
– GAD3R
Dec 28 '17 at 11:39
add a comment |
Thank you for your answer. Unfortunately, I got : insmod /lib/modules/3.16.0-4-amd64/kernel/net/wireless/cfg80211.ko modprobe: ERROR: could not insert 'ath9k': Invalid argument after using "sudo modprobe -v ath9k".
– Robg
Dec 27 '17 at 23:20
@Robg Disable the secure boot from your BIOS settings then trysudo modprobe -rv ath9k
thensudo modprobe -v ath9k
– GAD3R
Dec 28 '17 at 11:39
Thank you for your answer. Unfortunately, I got : insmod /lib/modules/3.16.0-4-amd64/kernel/net/wireless/cfg80211.ko modprobe: ERROR: could not insert 'ath9k': Invalid argument after using "sudo modprobe -v ath9k".
– Robg
Dec 27 '17 at 23:20
Thank you for your answer. Unfortunately, I got : insmod /lib/modules/3.16.0-4-amd64/kernel/net/wireless/cfg80211.ko modprobe: ERROR: could not insert 'ath9k': Invalid argument after using "sudo modprobe -v ath9k".
– Robg
Dec 27 '17 at 23:20
@Robg Disable the secure boot from your BIOS settings then try
sudo modprobe -rv ath9k
then sudo modprobe -v ath9k
– GAD3R
Dec 28 '17 at 11:39
@Robg Disable the secure boot from your BIOS settings then try
sudo modprobe -rv ath9k
then sudo modprobe -v ath9k
– GAD3R
Dec 28 '17 at 11:39
add a comment |
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.
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%2funix.stackexchange.com%2fquestions%2f413333%2fdebian-switch-back-to-the-integrated-wifi%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
1
Welcome to U&L . The
lspci
command will give you the required information about the wifi card e,g:lspci -knn | grep Net -A2
. You can edit your question here– GAD3R
Dec 27 '17 at 22:33