LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 05-25-2022, 02:59 PM   #61
yvesjv
Member
 
Registered: Sep 2015
Location: Australia
Distribution: Slackware, Devuan, Freebsd
Posts: 573

Rep: Reputation: Disabled

As previously requested, can you post the output of this command:
ls -lh /lib/firmwares/ | grep 67
 
Old 05-26-2022, 12:46 AM   #62
mrapathy
Member
 
Registered: Nov 2005
Distribution: Slackware,Debian
Posts: 366

Rep: Reputation: 66
Quote:
Originally Posted by linustalman View Post
Code:
sudo modinfo iwlwifi | grep Qu
Code:
firmware:       iwlwifi-QuQnj-b0-jf-b0-67.ucode
firmware:       iwlwifi-QuZ-a0-jf-b0-67.ucode
firmware:       iwlwifi-QuZ-a0-hr-b0-67.ucode
firmware:       iwlwifi-Qu-b0-jf-b0-67.ucode
firmware:       iwlwifi-Qu-c0-hr-b0-67.ucode
firmware:       iwlwifi-QuQnj-b0-hr-b0-67.ucode
firmware:       iwlwifi-Qu-b0-hr-b0-67.ucode
thats not the firmware for intel ax200 which is supposed to be AMD cpu compatible. ax200 is cc-aO
ax201 and 210 is not AMD cpu compatible.

what AMD cpu you using exactly?

Last edited by mrapathy; 05-26-2022 at 01:02 AM.
 
Old 05-26-2022, 01:09 AM   #63
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,726

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Quote:
Originally Posted by yvesjv View Post
As previously requested, can you post the output of this command:
ls -lh /lib/firmwares/ | grep 67
Code:
ls: cannot access '/lib/firmwares/': No such file or directory
 
Old 05-26-2022, 01:19 AM   #64
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,913

Rep: Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318
Quote:
Originally Posted by linustalman View Post
Code:
ls: cannot access '/lib/firmwares/': No such file or directory
I guess that is /lib/firmware, without s at the end
 
Old 05-26-2022, 01:54 AM   #65
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,726

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Quote:
Originally Posted by yvesjv View Post
As previously requested, can you post the output of this command:
ls -lh /lib/firmwares/ | grep 67
Code:
ls -lh /lib/firmware/ | grep 67
Code:
-rw-r--r-- 1 root root  674K Jul 25  2021 iwlwifi-105-6.ucode
 
Old 05-26-2022, 01:54 AM   #66
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,726

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Quote:
Originally Posted by pan64 View Post
I guess that is /lib/firmware, without s at the end
Thank you. \o
 
Old 05-26-2022, 04:12 AM   #67
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,726

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Quote:
Originally Posted by mrapathy View Post
... what AMD cpu you using exactly?
AMD Ryzen 7 3800X 8-Core @ 16x 3.9GHz
 
Old 05-26-2022, 04:27 AM   #68
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,913

Rep: Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318Reputation: 7318
this is where we started: https://www.linuxquestions.org/quest...1/#post6308340
based on your dmesg post https://www.linuxquestions.org/quest...ml#post6355782
it is not found. So this file is still missing from that directory.
 
Old 05-26-2022, 01:59 PM   #69
yvesjv
Member
 
Registered: Sep 2015
Location: Australia
Distribution: Slackware, Devuan, Freebsd
Posts: 573

Rep: Reputation: Disabled
Good thing it a an ax200 with that ryzen, an ax201 or ax210 would never have worked.

If you could download somewhere the firmwares, for example:
git clone git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git

Then cd into the new folder called 'linux-firmware/'
You should be able to copy all the required files to the /lib/firmware/ directory
Use the sudo cp command with maybe -nRv or -Ruv, not sure what your distro has for option to not clobber.

After that is done, guess next step you will have to reload the iwlwifi module.
sudo modprobe -r iwlwifi
sudo modprobe iwlwifi


If you could show us the output of
sudo dmesg | grep iwlwifi

Last edited by yvesjv; 05-26-2022 at 02:08 PM.
 
Old 05-27-2022, 12:52 PM   #70
mrapathy
Member
 
Registered: Nov 2005
Distribution: Slackware,Debian
Posts: 366

Rep: Reputation: 66
actually you need to run sudo rmmod module and before you do a rmmod the first module to unload first is iwlmvm
then you can remove iwlwifi.
 
Old 05-27-2022, 01:04 PM   #71
yvesjv
Member
 
Registered: Sep 2015
Location: Australia
Distribution: Slackware, Devuan, Freebsd
Posts: 573

Rep: Reputation: Disabled
Maybe add -v to rmmod so he can copy/paste what happens.
Being a Debian box thus systemd... does he need to run systemctl restart something

Last edited by yvesjv; 05-27-2022 at 01:13 PM.
 
Old 05-27-2022, 04:42 PM   #72
mrapathy
Member
 
Registered: Nov 2005
Distribution: Slackware,Debian
Posts: 366

Rep: Reputation: 66
shouldnt need to reboot. if he is using kde he may need to service NetworkManager restart though never had good results with restart so I will do a stop and start back up.

intel support leaves something to be desired they closed my post on intels site. didnt get to doing trace processes.

after you modprobe iwlwifi you will want to check dmesg for errors. I think my problem is I dont have virtualization enabled in bios. looking up uefi mods

turns out was a key combo to activate my advanced bios. no uefi hack or bios modding.

Last edited by mrapathy; 05-27-2022 at 08:45 PM.
 
Old 05-28-2022, 02:16 AM   #73
yvesjv
Member
 
Registered: Sep 2015
Location: Australia
Distribution: Slackware, Devuan, Freebsd
Posts: 573

Rep: Reputation: Disabled
Talking

Quote:
Originally Posted by mrapathy View Post
intel support leaves something to be desired they closed my post on intels site. didnt get to doing trace processes.
Swapping out the intel wnic for something better like an wifi6E qualcomm/atheros immediately voids support, but I'd do it for a usually better supported wnic.
And I'm looking forward to 6GHz + 802.11az to play with but openwrt supported routers aren't there yet.

Still think after copying the files to /lib/firmware/ he should compile a new kernel plus compile/install modules required, and boot into the new kernel.

Last edited by yvesjv; 05-28-2022 at 05:42 PM. Reason: No marketing for intel
 
Old 05-28-2022, 05:47 PM   #74
mrapathy
Member
 
Registered: Nov 2005
Distribution: Slackware,Debian
Posts: 366

Rep: Reputation: 66
updating to 5.17.11 may not work. I have 5.17.9 and latest firmware git and my ax200 wont work. works in windows Im sure

cant stand windows still. havent tried win11 yet and not intending too.

god help us all they turn on secure boot and give us the finger.

Last edited by mrapathy; 05-28-2022 at 06:00 PM.
 
Old 05-31-2022, 08:33 AM   #75
mrapathy
Member
 
Registered: Nov 2005
Distribution: Slackware,Debian
Posts: 366

Rep: Reputation: 66
Got my intel ax200 working with kernel 5.4.196 and firmware 50.3e391d3e.0
 
1 members found this post helpful.
  


Reply

Tags
intel, wifi, wifi card, wireless



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
AX200 can't connect to router richp1982 Linux - Wireless Networking 3 11-06-2020 11:37 AM
WIFI CARD NOT RECOGNIZED, WIFI DOESN'T WORK - Intel® Dual Band Wireless-AC 3165 3BmPC Linux - Networking 4 02-09-2020 11:33 PM
Trying to get Cardbus WiFi card to work in Bodhi Linux on old laptop voicedude Linux - Wireless Networking 4 06-12-2018 01:14 AM
[SOLVED] Can't get Network card or WiFi card to work in Fedora 13 kuade Linux - Newbie 3 09-17-2010 12:44 AM
Trying to get captive-ntfs to work, get an error when trying to mount EOHooligan Linux - General 1 06-09-2005 06:23 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 03:30 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration