Wi-Fi Setup & Troubleshooting
AcreetionOS ships NetworkManager, so Wi-Fi usually "just works".
Graphical way
Click the network icon in the system tray → choose network → enter password. That’s it. Tick Store password for all users for auto-connect at boot.
Terminal way
nmcli device wifi list # scan
nmcli device wifi connect "SSID" password "secret"
nmtui # friendly text UI if you prefer
Saved networks and priority:
nmcli connection show
nmcli connection delete "old-network"
nmcli connection modify "SSID" connection.autoconnect yes
Radio off / airplane
rfkill list # any hard/soft blocks?
sudo rfkill unblock wifi
nmcli radio wifi on
Common problems
Adapter not visible
Missing firmware is the top cause. Identify the chip and install its firmware package from repo-main:
lspci -k | grep -A3 -i network # or lsusb
sudo pacman -S linux-firmware # covers most chips
reboot
Realtek USB sticks sometimes need rtl8xxxu module tweaks — search your exact chipset + "arch" for the module options.
Still dead?
Work through Administration → NetworkManager CLI, then check journalctl -u NetworkManager -b for errors, and ask in the community channels listed on acreetionos.org with that log attached.