How do I check if my laptop WiFi supports 5ghz feq
I am using Ubuntu 18.04
I wanna check if my laptop supports 5ghz Freq because it is unable to search for my 5ghz freq
I attached the screenshot of available channels=>
Available channels
wireless
add a comment |
I am using Ubuntu 18.04
I wanna check if my laptop supports 5ghz Freq because it is unable to search for my 5ghz freq
I attached the screenshot of available channels=>
Available channels
wireless
Get the info for your card -lspci | grep -i network
- share what model card you have. Or, look up the card online to see if it's dual band capable (dual band means it also supports 5Ghz)
– Thomas Ward♦
Dec 13 '18 at 14:51
@ThomasWard I think it'slspci
.
– George Udosen
Dec 13 '18 at 14:56
@GeorgeUdosen it is - but that was simply a small typo thanks to me typing fast on a phone without autocorrect :P
– Thomas Ward♦
Dec 13 '18 at 14:57
add a comment |
I am using Ubuntu 18.04
I wanna check if my laptop supports 5ghz Freq because it is unable to search for my 5ghz freq
I attached the screenshot of available channels=>
Available channels
wireless
I am using Ubuntu 18.04
I wanna check if my laptop supports 5ghz Freq because it is unable to search for my 5ghz freq
I attached the screenshot of available channels=>
Available channels
wireless
wireless
edited Dec 14 '18 at 4:24
muru
1
1
asked Dec 13 '18 at 14:49
Aditya KumarAditya Kumar
84
84
Get the info for your card -lspci | grep -i network
- share what model card you have. Or, look up the card online to see if it's dual band capable (dual band means it also supports 5Ghz)
– Thomas Ward♦
Dec 13 '18 at 14:51
@ThomasWard I think it'slspci
.
– George Udosen
Dec 13 '18 at 14:56
@GeorgeUdosen it is - but that was simply a small typo thanks to me typing fast on a phone without autocorrect :P
– Thomas Ward♦
Dec 13 '18 at 14:57
add a comment |
Get the info for your card -lspci | grep -i network
- share what model card you have. Or, look up the card online to see if it's dual band capable (dual band means it also supports 5Ghz)
– Thomas Ward♦
Dec 13 '18 at 14:51
@ThomasWard I think it'slspci
.
– George Udosen
Dec 13 '18 at 14:56
@GeorgeUdosen it is - but that was simply a small typo thanks to me typing fast on a phone without autocorrect :P
– Thomas Ward♦
Dec 13 '18 at 14:57
Get the info for your card -
lspci | grep -i network
- share what model card you have. Or, look up the card online to see if it's dual band capable (dual band means it also supports 5Ghz)– Thomas Ward♦
Dec 13 '18 at 14:51
Get the info for your card -
lspci | grep -i network
- share what model card you have. Or, look up the card online to see if it's dual band capable (dual band means it also supports 5Ghz)– Thomas Ward♦
Dec 13 '18 at 14:51
@ThomasWard I think it's
lspci
.– George Udosen
Dec 13 '18 at 14:56
@ThomasWard I think it's
lspci
.– George Udosen
Dec 13 '18 at 14:56
@GeorgeUdosen it is - but that was simply a small typo thanks to me typing fast on a phone without autocorrect :P
– Thomas Ward♦
Dec 13 '18 at 14:57
@GeorgeUdosen it is - but that was simply a small typo thanks to me typing fast on a phone without autocorrect :P
– Thomas Ward♦
Dec 13 '18 at 14:57
add a comment |
1 Answer
1
active
oldest
votes
You can check the channels that your wireless card supports with the terminal command:
sudo iwlist chan
Please note that setting your regulatory domain may affect the usable channels. In case yours is unset, here is the procedure:
Check yours:
sudo iw reg get
If you get 00, that is a one-size-maybe-fits-all setting. Find yours here: http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 Then set it temporarily:
sudo iw reg set IS
Of course, substitute your country code if not Iceland. Set it permanently:
sudo nano /etc/default/crda
Change the last line to read:
REGDOMAIN=IS
Proofread carefully, save and close the text editor.
Now check again:
sudo iwlist chan
WiFi is still unable to search for 5ghz freq
– Aditya Kumar
Dec 14 '18 at 4:22
Does it scan at all?sudo iwlist scan
What channel is the desired access point on? It is, by any chance, above 124?
– chili555
Dec 14 '18 at 16:02
Now i checked and found Freq is above 5.64
– Aditya Kumar
Dec 15 '18 at 9:40
So it won't work. But Thanks for Help @chili555
– Aditya Kumar
Dec 15 '18 at 9:41
add a comment |
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
});
}
});
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%2faskubuntu.com%2fquestions%2f1100636%2fhow-do-i-check-if-my-laptop-wifi-supports-5ghz-feq%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
You can check the channels that your wireless card supports with the terminal command:
sudo iwlist chan
Please note that setting your regulatory domain may affect the usable channels. In case yours is unset, here is the procedure:
Check yours:
sudo iw reg get
If you get 00, that is a one-size-maybe-fits-all setting. Find yours here: http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 Then set it temporarily:
sudo iw reg set IS
Of course, substitute your country code if not Iceland. Set it permanently:
sudo nano /etc/default/crda
Change the last line to read:
REGDOMAIN=IS
Proofread carefully, save and close the text editor.
Now check again:
sudo iwlist chan
WiFi is still unable to search for 5ghz freq
– Aditya Kumar
Dec 14 '18 at 4:22
Does it scan at all?sudo iwlist scan
What channel is the desired access point on? It is, by any chance, above 124?
– chili555
Dec 14 '18 at 16:02
Now i checked and found Freq is above 5.64
– Aditya Kumar
Dec 15 '18 at 9:40
So it won't work. But Thanks for Help @chili555
– Aditya Kumar
Dec 15 '18 at 9:41
add a comment |
You can check the channels that your wireless card supports with the terminal command:
sudo iwlist chan
Please note that setting your regulatory domain may affect the usable channels. In case yours is unset, here is the procedure:
Check yours:
sudo iw reg get
If you get 00, that is a one-size-maybe-fits-all setting. Find yours here: http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 Then set it temporarily:
sudo iw reg set IS
Of course, substitute your country code if not Iceland. Set it permanently:
sudo nano /etc/default/crda
Change the last line to read:
REGDOMAIN=IS
Proofread carefully, save and close the text editor.
Now check again:
sudo iwlist chan
WiFi is still unable to search for 5ghz freq
– Aditya Kumar
Dec 14 '18 at 4:22
Does it scan at all?sudo iwlist scan
What channel is the desired access point on? It is, by any chance, above 124?
– chili555
Dec 14 '18 at 16:02
Now i checked and found Freq is above 5.64
– Aditya Kumar
Dec 15 '18 at 9:40
So it won't work. But Thanks for Help @chili555
– Aditya Kumar
Dec 15 '18 at 9:41
add a comment |
You can check the channels that your wireless card supports with the terminal command:
sudo iwlist chan
Please note that setting your regulatory domain may affect the usable channels. In case yours is unset, here is the procedure:
Check yours:
sudo iw reg get
If you get 00, that is a one-size-maybe-fits-all setting. Find yours here: http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 Then set it temporarily:
sudo iw reg set IS
Of course, substitute your country code if not Iceland. Set it permanently:
sudo nano /etc/default/crda
Change the last line to read:
REGDOMAIN=IS
Proofread carefully, save and close the text editor.
Now check again:
sudo iwlist chan
You can check the channels that your wireless card supports with the terminal command:
sudo iwlist chan
Please note that setting your regulatory domain may affect the usable channels. In case yours is unset, here is the procedure:
Check yours:
sudo iw reg get
If you get 00, that is a one-size-maybe-fits-all setting. Find yours here: http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 Then set it temporarily:
sudo iw reg set IS
Of course, substitute your country code if not Iceland. Set it permanently:
sudo nano /etc/default/crda
Change the last line to read:
REGDOMAIN=IS
Proofread carefully, save and close the text editor.
Now check again:
sudo iwlist chan
answered Dec 13 '18 at 15:05
chili555chili555
38.4k55177
38.4k55177
WiFi is still unable to search for 5ghz freq
– Aditya Kumar
Dec 14 '18 at 4:22
Does it scan at all?sudo iwlist scan
What channel is the desired access point on? It is, by any chance, above 124?
– chili555
Dec 14 '18 at 16:02
Now i checked and found Freq is above 5.64
– Aditya Kumar
Dec 15 '18 at 9:40
So it won't work. But Thanks for Help @chili555
– Aditya Kumar
Dec 15 '18 at 9:41
add a comment |
WiFi is still unable to search for 5ghz freq
– Aditya Kumar
Dec 14 '18 at 4:22
Does it scan at all?sudo iwlist scan
What channel is the desired access point on? It is, by any chance, above 124?
– chili555
Dec 14 '18 at 16:02
Now i checked and found Freq is above 5.64
– Aditya Kumar
Dec 15 '18 at 9:40
So it won't work. But Thanks for Help @chili555
– Aditya Kumar
Dec 15 '18 at 9:41
WiFi is still unable to search for 5ghz freq
– Aditya Kumar
Dec 14 '18 at 4:22
WiFi is still unable to search for 5ghz freq
– Aditya Kumar
Dec 14 '18 at 4:22
Does it scan at all?
sudo iwlist scan
What channel is the desired access point on? It is, by any chance, above 124?– chili555
Dec 14 '18 at 16:02
Does it scan at all?
sudo iwlist scan
What channel is the desired access point on? It is, by any chance, above 124?– chili555
Dec 14 '18 at 16:02
Now i checked and found Freq is above 5.64
– Aditya Kumar
Dec 15 '18 at 9:40
Now i checked and found Freq is above 5.64
– Aditya Kumar
Dec 15 '18 at 9:40
So it won't work. But Thanks for Help @chili555
– Aditya Kumar
Dec 15 '18 at 9:41
So it won't work. But Thanks for Help @chili555
– Aditya Kumar
Dec 15 '18 at 9:41
add a comment |
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.
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%2faskubuntu.com%2fquestions%2f1100636%2fhow-do-i-check-if-my-laptop-wifi-supports-5ghz-feq%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
Get the info for your card -
lspci | grep -i network
- share what model card you have. Or, look up the card online to see if it's dual band capable (dual band means it also supports 5Ghz)– Thomas Ward♦
Dec 13 '18 at 14:51
@ThomasWard I think it's
lspci
.– George Udosen
Dec 13 '18 at 14:56
@GeorgeUdosen it is - but that was simply a small typo thanks to me typing fast on a phone without autocorrect :P
– Thomas Ward♦
Dec 13 '18 at 14:57