You are not logged in.
I have installed the iwlwifi driver and it worked fine a few days ago, but I usually use a network cable to surf the Internet and I didn't even notice that my wifi was no longer connected.
But it seems that the kernel module and firmware have been properly loaded on my computer, neither "ip link" nor "ifconfig" can see the wireless interface, I also checked "rfkill" and still can't see any wireless interface.
I searched on the Internet and it seems there should be a "/etc/udev/rules.d/70-persistent-net.rules" which is automatically generated by /lib/udev/write_net_rule but I can't find them...
Does this mean I need to write "70-persistent-net.rules" manually?
#lspci -k
09:00.0 Network controller: Intel Corporation Wi-Fi 6 AX200 (rev 1a)
Subsystem: Intel Corporation Wi-Fi 6 AX200NGW
Kernel driver in use: iwlwifi
Kernel modules: iwlwifi
#journalctl -b | grep iwlwifi
Aug 03 20:47:00 siralop kernel: iwlwifi 0000:09:00.0: enabling device (0000 -> 0002)
Aug 03 20:47:00 siralop kernel: iwlwifi 0000:09:00.0: Detected crf-id 0x3617, cnv-id 0x100530 wfpm id 0x80000000
Aug 03 20:47:00 siralop kernel: iwlwifi 0000:09:00.0: PCI dev 2723/0084, rev=0x340, rfid=0x10a100
Aug 03 20:47:00 siralop kernel: iwlwifi 0000:09:00.0: api flags index 2 larger than supported by driver
Aug 03 20:47:00 siralop kernel: iwlwifi 0000:09:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
Aug 03 20:47:00 siralop kernel: iwlwifi 0000:09:00.0: loaded firmware version 77.c360c4b1.0 cc-a0-77.ucode op_mode iwlmvm
#rfkill list
0: hci0: Bluetooth
Soft blocked: yes
Hard blocked: no
#ip link
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp10s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP mode DEFAULT group default qlen 1000
link/ether 58:11:22:c1:xx:xx brd ff:ff:ff:ff:ff:ff
Last edited by siralop (2024-08-04 13:36:25)
Offline
journalctl -b | grep iwlwifi
Don't grep for random tokens, this could be in iwlmvm or a race condition caused by an early iwd.
Please post your complete system journal for the boot:
sudo journalctl -b | curl -F 'file=@-' 0x0.st
Edit: actually report your thread as duplicate of https://bbs.archlinux.org/viewtopic.php?id=298275
Last edited by seth (2024-08-03 15:07:22)
Offline
alright,I just removed 'net' from /etc/mkinitcpio.conf/HOOKS and wifi is working well now...
MODULES=()
BINARIES=()
FILES=()
HOOKS=(base udev autodetect keyboard *net* keymap modconf block filesystems fsck plymouth)
Offline
Offline