I installed Ubuntu server on a 2011 iMac and set up the WiFi when promoted. After setup I decided to add a GUI by running
sudo apt install ubuntu-desktop
when I rebooted I installed Firefox and Chrome and ran a google search and they both of them worked. In settings, it says
no wifi adapter found
but when I run lspci | grep -i network
, it shows a detected WiFi controller.
cat /etc/netplan/*.yaml
Welcome to Ask Ubuntu. – chili555 Jul 04 '23 at 19:33This is the network config written by 'subiquity'
network: ethernets: enp2s0: dhcp4: true version: 2"
– Joemy Jul 04 '23 at 19:41lspci -nnk | grep -iA3 net
– Jeremy31 Jul 04 '23 at 19:58cat wireless-info.txt|nc termbin.com 9999
– Jeremy31 Jul 04 '23 at 20:33wget -N -t 5 -T 10 https://github.com/UbuntuForums/wireless-info/raw/master/wireless-info && chmod +x wireless-info && ./wireless-info && cat wireless-info.txt | nc termbin.com 9999
– Jeremy31 Jul 04 '23 at 20:40sudo cat /etc/netplan/00-installer-config-wifi.yaml| nc termbin.com 9999
– Jeremy31 Jul 04 '23 at 21:03