You are not logged in.
Pages: 1
I've just installed Chimeara on my new(ish) Acer Aspire 3.
It hasn't set up wifi - when I ran the install it would only recognise the wired connection, so I completed the install with that.
I want to get WiFi working for use around the house and elsewhere, but it hasn't set anything up for it.
I tried putting an entry in /etc/network/interfaces, just:
allow-hotplug wlan0
wlan0 inet dhcp
and rebooted, but still ip address just shows the loopback and eth0 connections.
Any suggestions?
The machine came with Win 11 on it, and when I did the Windoze setup it didn't see wifi either, but when I had completed setup I was able to turn on
Wifi and connect without any problem.
Offline
I've just installed Chimeara on my new(ish) Acer Aspire 3.
It hasn't set up wifi - when I ran the install it would only recognise the wired connection, so I completed the install with that.
I want to get WiFi working for use around the house and elsewhere, but it hasn't set anything up for it.I tried putting an entry in /etc/network/interfaces, just:
allow-hotplug wlan0
wlan0 inet dhcpand rebooted, but still ip address just shows the loopback and eth0 connections.
Any suggestions?
The machine came with Win 11 on it, and when I did the Windoze setup it didn't see wifi either, but when I had completed setup I was able to turn on
Wifi and connect without any problem.
Short answer from my mobile:
iface wlan0 inet dhcp
Your line is incomplete.
Last edited by aitor (2023-07-01 14:32:53)
If you work systematically, things will come by itself (Lev D. Landau)
Offline
Sorry, switching between machines.
Line is as you suggest:
iface wlan0 inet dhcp
Offline
First thing to check is if the wlan adapter requires firmware.
Offline
Would like to add: lspci may give a hint to the needed firmware.
And for new'ish hardware, daedalus might be an option. It will become the new stable in the near future anyway.
Offline
Extract from lspci -v
-----------------------------------------------------------
0000:02:00.0 Network controller: MEDIATEK Corp. Device 7663
Subsystem: Lite-On Communications Inc Device 3801
Flags: fast devsel, IRQ 255, IOMMU group 13
Memory at 6003000000 (64-bit, prefetchable) [disabled] [size=1M]
Memory at 6003100000 (64-bit, prefetchable) [disabled] [size=16K]
Memory at 6003104000 (64-bit, prefetchable) [disabled] [size=4K]
Capabilities: [80] Express Endpoint, MSI 1f
Capabilities: [e0] MSI: Enable- Count=1/32 Maskable+ 64bit+
Capabilities: [f8] Power Management version 3
Capabilities: [100] Vendor Specific Information: ID=1556 Rev=1 Len=008 <
?>
Capabilities: [108] Latency Tolerance Reporting
Capabilities: [110] L1 PM Substates
Capabilities: [200] Advanced Error Reporting
------------------------------------------------------------------
how do I know if additional firmware is required?
Offline
Look at the boot messages or check the syslog for the phrase "missing firmware".
BTW, here is a tutorial: https://tutorialforlinux.com/2021/06/15 … tallation/
That talks about firmware. You will need to enable non-free in Chimaera's sources.list.
Offline
I guess for an mt7663 you'll need to install firmware-misc-nonfree, possibly from chimaera-backports/non-free, unless version 20210315-3 in chimaera/non-free is enough.
Typically kernel modules that need firmware will say so into dmesg and/or syslog.
Online
OK, installed firmware-linux-nonfree and firmware-misc-nonfree, still no wifi entry in 'ip address'. What next?
Offline
OK, installed firmware-linux-nonfree and firmware-misc-nonfree, still no wifi entry in 'ip address'. What next?
You may need to reboot.
Offline
Yes, I did. Now no 'missing firmware' entries on syslog, apart from ones before the reboot.
Offline
what's the output of
# rfkill
(install it if you don't have it)
Online
Have you got a network manager running?
Offline
$ sudo rfkill
[sudo] password for bill:
ID TYPE DEVICE SOFT HARD
0 wlan acer-wireless unblocked unblocked
1 bluetooth acer-bluetooth unblocked unblocked
2 bluetooth hci0 unblocked unblocked
and
yes, NetworkManager claims to be running - the network icon on the panel just shows the wired connection.
Offline
The NetworkManager appears to have the details for my wifi, not sure how, /etc/NetworkManager/system-connections/Wi-Fi\ connection\ 1.nmconnection contains:
-------------------------------------------------------------
[connection]
id=Wi-Fi connection 1
uuid=779db10d-3968-4372-aa75-fa2753fee9f9
type=wifi
permissions=
[wifi]
mac-address-blacklist=
mode=infrastructure
ssid=ChateauPenketh
[wifi-security]
key-mgmt=wpa-psk
psk=?????????? (psk obscured for security, but correct)
[ipv4]
dns-search=
method=auto
[ipv6]
addr-gen-mode=stable-privacy
dns-search=
method=auto
[proxy]
Offline
Further digging:
# nmcli connection show
NAME UUID TYPE DEVICE
Wired connection 1 ce8605fe-de1f-4ce6-97d9-3f6e4c51fbfc ethernet eth0
Wi-Fi connection 1 779db10d-3968-4372-aa75-fa2753fee9f9 wifi --
and
# nmcli radio wifi
enabled
I've got used to Ubuntu which never required any of this digging around, so I'm not familiar with the various commands.
Offline
Sorry, I only use traditional ifupdown for my networking, and since you mentioned editing /etc/network/interfaces I thought you did the same.
By the looks of it the kernel recognizes the hardware. I would have thought the boot-up log would mention that hardware and which firmware gets loaded. At least there should be some mt7663* module loaded. You may check that with lsmod.
Surely someone that uses NetworkManager may have further ideas.
Online
Ahhh, modprobe mt7663 says module not found!
Offline
synaptic search for mt7663 only pulls up firmware-misc-nonfree which I've installed, but that only provides firmware in /lib/firmware/mediatek.
Which package might contain the module?
Offline
Progress: found references to mediatek chips needing 5.12 kernel, with suggestion to install the xanmod kernel. Managed to do that:
# uname -r
6.1.37-x64v4-xanmod1
I now find wlan0 exists in 'ip address' but NetworkManager, show it with 'not managed'
Deleted the references to wlan0 in /etc/netwprk/interfaces and restarted NetworkManager and wifi has connected!
Thanks for all the help!!
Offline
Pages: 1