You are not logged in.

#1 2023-06-07 13:13:09

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

[SOLVED] wlp3s0 interface does not support scanning

I recently downloaded Arch and I am having trouble connecting to the wifi for the first time.

My network manager is not scanning for available networks. I also used iwlist to scan but it gave me the error Interface doesn't support scanning: Network is down

Some commands I input and there output:

---

 nmcli dev wifi list

Nothing (the list does not show any networks)

---

iwlist wlp3s0 scan

wlp3s0   Interface doesn't support scanning : Network is down

---

lspci -vnn | grep -i net

00:19.0 Ethernet controller [0200]: Intel Corporation Ethernet Connection I218-V [8086:1559] (rev 04)
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8192EE PCIe Wireless Network Adapter [10ec:818b]

---

nmcli radio wifi

enabled


I tried to update the system or drivers but since there is no wifi or internet connect I cannot update any packages or install any new packages. How can I solve this issue and make the interface scan for wifi networks around me? Let me know if you need more info.

Last edited by eimi_outis (2023-06-08 05:16:35)

Offline

#2 2023-06-07 13:30:56

seth
Member
Registered: 2012-09-03
Posts: 52,731

Re: [SOLVED] wlp3s0 interface does not support scanning

Don't use networkmanager and iw in parallel.
Stop networkmanager, post the output of "ip a" and try to connect w/ either wifi-menu (from the netctl package) or manuall, https://wiki.archlinux.org/title/Networ … ireless#iw

Offline

#3 2023-06-07 13:46:57

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

I tried using iw to connect but it is not working.

---

iw dev

bash: iw:command not found

I don't know why it says that.

---

ip a

1: lo <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
                link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
                inet 127.0.0.1/8 scope host lo
                   valid_lft forever prefered_lft forever
                inet6 ::1/128 scope host
                   valid_lft forever preferred_lft forever
2. wlp3s0: <BRODCAST,MULTICAST> mt u 1500 qdisc noop state DOWN group default qlen 1000
                  link/ether 6a:53:56:0f:ed:63 brd ff:ff:ff:ff:ff:ff permaddr 14:2d:27:77:45:03
3; emp0s25: <BROADCAST,MULTICAST> mtu 1500 qdisc fq_model state DOWN group default qlen 1000

Offline

#4 2023-06-07 13:52:51

seth
Member
Registered: 2012-09-03
Posts: 52,731

Re: [SOLVED] wlp3s0 interface does not support scanning

https://archlinux.org/packages/core/x86_64/iw/

Try wifi-menu first, but make sure that the NM service is stopped.

Offline

#5 2023-06-07 13:59:45

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

I did try with wifi menu. I already did 'ip link set wlp3s0 up' before I ran 'wifi-menu'

sudo wifi-menu

Scanning for networks... Could not set interface wlp3s0 flags (UP): Invalid argument
nl80211: Could not set interface 'wlp3s0' UP
Could not set interface wlp3s0 flags (UP): Invalid argument
WEXT: Could not set interface 'wlp3s0' UP
wlp3s0: Failed to initialize driver interface
failed
No networks found

Offline

#6 2023-06-07 14:02:36

seth
Member
Registered: 2012-09-03
Posts: 52,731

Re: [SOLVED] wlp3s0 interface does not support scanning

nl80211: Could not set interface 'wlp3s0' UP

I already did 'ip link set wlp3s0 up' before

wifi-menu will not use NICs that are already up to not interfere w/ other services.
So first put it down again.

Offline

#7 2023-06-07 14:07:12

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

I used 'ip link set wlp3s0 down' to put it down but it still gives me the same error when I run 'wifi-menu'. Is that what you were talking about?

Offline

#8 2023-06-07 14:08:32

seth
Member
Registered: 2012-09-03
Posts: 52,731

Re: [SOLVED] wlp3s0 interface does not support scanning

Please post your complete system journal for the boot:

sudo journalctl -b | curl -F 'f:1=<-' ix.io

Offline

#9 2023-06-07 14:14:30

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

sudo journalctl -b | curl -F 'f:1=<-' ix.io

curl: (6) Could bot resolve host:ix.io

Is there any other command I can use? When I use that command it gives me this error

Last edited by eimi_outis (2023-06-07 14:17:40)

Offline

#10 2023-06-07 14:18:59

seth
Member
Registered: 2012-09-03
Posts: 52,731

Re: [SOLVED] wlp3s0 interface does not support scanning

You need an internet connection for this, how do you post at the moment?
You can also redirect the output into a file and upload that.

Offline

#11 2023-06-07 14:21:32

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

I have another laptop which I am using to post at the moment. I installed arch on my other laptop.

Offline

#12 2023-06-07 14:23:51

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

What output though? because this command

sudo journalctl -b | curl -F 'f:1=<-' ix.io

give me an error as an output

Offline

#13 2023-06-07 14:25:12

seth
Member
Registered: 2012-09-03
Posts: 52,731

Re: [SOLVED] wlp3s0 interface does not support scanning

"sudo journalctl -b" prints the journal, "curl -F 'f:1=<-' ix.io" uploads it and "|" is a pipe.

sudo journalctl -b > /tmp/journal.txt

Offline

#14 2023-06-07 15:16:35

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

OK, I got the output from 'journalctl -b'. Is there anything I should hide or change for my privacy and safety before uploading it to this forum?

Last edited by eimi_outis (2023-06-07 15:17:15)

Offline

#15 2023-06-07 15:21:53

seth
Member
Registered: 2012-09-03
Posts: 52,731

Re: [SOLVED] wlp3s0 interface does not support scanning

If you gave your user a salacious name, that's your problem wink
But the journal isn't supposed to contain sensitive data.
Be aware that sudo is logged, so if you typed "sudo mpv hamsterporn.mp4", that'll show up.

Offline

#16 2023-06-07 15:52:46

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

Gotchu, Nah I haven't transferred my world-class porn collection to this laptop yet wink. So, I should be fine.

Here is the link to the journal.txt ->journal.txt

Let me know if the link does not work

Last edited by eimi_outis (2023-06-16 08:56:18)

Offline

#17 2023-06-07 17:55:31

seth
Member
Registered: 2012-09-03
Posts: 52,731

Re: [SOLVED] wlp3s0 interface does not support scanning

Please post that as actual text, I'm not gonna research some pdf…

Offline

#18 2023-06-07 18:02:41

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

I can repost the text based on any specifications I can look up keywords like network or whatnot and put them all together and post them...just let me know it is a lot of lines and I don't expect you to go through all of it. Sorry about posting the pdf I thought it would be easier but whatever you is easier is fine with me

Last edited by eimi_outis (2023-06-07 18:13:52)

Offline

#19 2023-06-07 18:10:23

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

smile

Last edited by eimi_outis (2023-06-16 08:56:45)

Offline

#20 2023-06-07 18:13:28

seth
Member
Registered: 2012-09-03
Posts: 52,731

Re: [SOLVED] wlp3s0 interface does not support scanning

pacman -Qs firmware

https://archlinux.org/packages/core/any/linux-firmware/

You can also use pastebin services, but yes - generally all lines unless specifically askes elsewise.

Offline

#21 2023-06-07 18:19:13

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

pacman -Qs firmware

When I run that command nothing is printed as output

Last edited by eimi_outis (2023-06-07 18:20:08)

Offline

#22 2023-06-07 18:20:14

seth
Member
Registered: 2012-09-03
Posts: 52,731

Re: [SOLVED] wlp3s0 interface does not support scanning

Yeah, I kinda knew that wink
Install the package I linked.

Edit, inb4: you can download it from the webpage and "pacman -U linux-firmware-123.tar.xyz" it

Last edited by seth (2023-06-07 18:21:15)

Offline

#23 2023-06-07 18:27:05

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

I can't install new packages using pacman because I am not connected to the internet. I am using another Windows laptop that has a Wi-Fi connection, is there a way I can download them on the Windows device and transfer them to the arch device via USB?

Offline

#24 2023-06-07 18:29:17

seth
Member
Registered: 2012-09-03
Posts: 52,731

Re: [SOLVED] wlp3s0 interface does not support scanning

seth wrote:

inb4: you can download it from the webpage and "pacman -U linux-firmware-123.tar.xyz" it

Offline

#25 2023-06-07 18:53:41

eimi_outis
Member
Registered: 2023-06-07
Posts: 19

Re: [SOLVED] wlp3s0 interface does not support scanning

Sorry about that after posting the comment I realized you already told me I can download it through the webpage. Once I download it, extract it, and transfer it over what directory should I save it in?

Offline

Board footer

Powered by FluxBB