For one, the wireless interface is soft-blocked by rfkill. This could mean you have some kind of switch for the wireless on your laptop - can you ensure that any physical switch for wireless is currently enabled? On many thinkpads there's a physical switch at the side of the laptop, please check that.
It could also be some other laptop-specific WMI kernel module, but that's more difficult to find out, and we'd need the logs for that, see further below.
Otherwise you can try to unblock your wireless as root with
- Code: Select all
rfkill unblock all
and afterwards check again with rfkill list all as previously - this is what you're looking for and what you need to fix:
[root@localhost mallus]# rfkill list all
1: tpacpi_bluetooth_sw: Bluetooth
Soft blocked: yes
Hard blocked: yes
2: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
3: hci0: Bluetooth
Soft blocked: yes
Hard blocked: no
[root@localhost mallus]#
Apart from that, the systemctl output is cut on the right side, this usually happens when you run this in a small terminal window. Please try to maximize the window and run it again.
Or redirect the output in a text file and later attach that here.
- Code: Select all
systemctl status network.service -al -n25 > /tmp/systemctl.log
You also missed the output for the last command, you can do the same and redirect it to a text file
- Code: Select all
journalctl -ab | grep -iE "fw|firmware|iwl|wifi|wire|80211" > /tmp/journalctl.log
Then later attach both files /tmp/systemctl.log and /tmp/journalctl.log here please.