How do I check if my laptop WiFi supports 5ghz feq











up vote
1
down vote

favorite












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










share|improve this question
























  • 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 at 14:51












  • @ThomasWard I think it's lspci.
    – George Udosen
    Dec 13 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 at 14:57















up vote
1
down vote

favorite












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










share|improve this question
























  • 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 at 14:51












  • @ThomasWard I think it's lspci.
    – George Udosen
    Dec 13 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 at 14:57













up vote
1
down vote

favorite









up vote
1
down vote

favorite











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










share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 14 at 4:24









muru

135k20291493




135k20291493










asked Dec 13 at 14:49









Aditya 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 at 14:51












  • @ThomasWard I think it's lspci.
    – George Udosen
    Dec 13 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 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 at 14:51












  • @ThomasWard I think it's lspci.
    – George Udosen
    Dec 13 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 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 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 at 14:51














@ThomasWard I think it's lspci.
– George Udosen
Dec 13 at 14:56




@ThomasWard I think it's lspci.
– George Udosen
Dec 13 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 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 at 14:57










1 Answer
1






active

oldest

votes

















up vote
2
down vote













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





share|improve this answer





















  • WiFi is still unable to search for 5ghz freq
    – Aditya Kumar
    Dec 14 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 at 16:02










  • Now i checked and found Freq is above 5.64
    – Aditya Kumar
    Dec 15 at 9:40










  • So it won't work. But Thanks for Help @chili555
    – Aditya Kumar
    Dec 15 at 9:41











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
});


}
});














draft saved

draft discarded


















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








up vote
2
down vote













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





share|improve this answer





















  • WiFi is still unable to search for 5ghz freq
    – Aditya Kumar
    Dec 14 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 at 16:02










  • Now i checked and found Freq is above 5.64
    – Aditya Kumar
    Dec 15 at 9:40










  • So it won't work. But Thanks for Help @chili555
    – Aditya Kumar
    Dec 15 at 9:41















up vote
2
down vote













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





share|improve this answer





















  • WiFi is still unable to search for 5ghz freq
    – Aditya Kumar
    Dec 14 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 at 16:02










  • Now i checked and found Freq is above 5.64
    – Aditya Kumar
    Dec 15 at 9:40










  • So it won't work. But Thanks for Help @chili555
    – Aditya Kumar
    Dec 15 at 9:41













up vote
2
down vote










up vote
2
down vote









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





share|improve this answer












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






share|improve this answer












share|improve this answer



share|improve this answer










answered Dec 13 at 15:05









chili555

38k55177




38k55177












  • WiFi is still unable to search for 5ghz freq
    – Aditya Kumar
    Dec 14 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 at 16:02










  • Now i checked and found Freq is above 5.64
    – Aditya Kumar
    Dec 15 at 9:40










  • So it won't work. But Thanks for Help @chili555
    – Aditya Kumar
    Dec 15 at 9:41


















  • WiFi is still unable to search for 5ghz freq
    – Aditya Kumar
    Dec 14 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 at 16:02










  • Now i checked and found Freq is above 5.64
    – Aditya Kumar
    Dec 15 at 9:40










  • So it won't work. But Thanks for Help @chili555
    – Aditya Kumar
    Dec 15 at 9:41
















WiFi is still unable to search for 5ghz freq
– Aditya Kumar
Dec 14 at 4:22




WiFi is still unable to search for 5ghz freq
– Aditya Kumar
Dec 14 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 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 at 16:02












Now i checked and found Freq is above 5.64
– Aditya Kumar
Dec 15 at 9:40




Now i checked and found Freq is above 5.64
– Aditya Kumar
Dec 15 at 9:40












So it won't work. But Thanks for Help @chili555
– Aditya Kumar
Dec 15 at 9:41




So it won't work. But Thanks for Help @chili555
– Aditya Kumar
Dec 15 at 9:41


















draft saved

draft discarded




















































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.





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%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





















































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

迪纳利

How did Captain America manage to do this?

南乌拉尔铁路局