-
Notifications
You must be signed in to change notification settings - Fork 7
Network Configuration
This is a guide for connecting to the internet on LnOS Arch Edition.
nmcli connection add type wifi connection.id 'UTA WiFi' wifi.ssid 'UTA WiFi' \
wifi.mode infrastructure wifi-sec.key-mgmt wpa-eap 802-1x.eap peap 802-1x.identity "<your UTA username here>" \
802-1x.phase2-auth mschapv2 802-1x.password "<your UTA password here>"nmtuiip linkThese are example network devices. Here wlp2s0 and enp3s0 would be the example network device interfaces from running the ip link command.
For wired:
sudo ip link set enp3s0 up
sudo dhclient enp3s0 # or sudo dhcpcd enp3s0For wireless:
sudo ip link set wlp2s0 upCheck available networks:
nmcli dev wifi list
# or
nmcli device wifi listConnect:
nmcli dev wifi connect "SSID" password "PASSWORD"
# or
nmcli device wifi connect "eduroam" \
--askping -c 3 ping.archlinux.orgIf your system does not detect a network card (NIC), the most common reasons are:
-
Missing driver – The kernel may not include the correct driver for your hardware (e.g., Realtek
r8168, Intel Wi-Fiiwlwifi). -
Missing firmware – Some devices require additional firmware files. The linux-firmware package covers most cases.
- For custom builds, ensure
linux-firmwareis listed underpackages.x86_64orpackages.aarch64.
- For custom builds, ensure
Recommendations:
-
Verify that your NIC is listed with
ip link. -
If no device appears, install or enable the appropriate driver and confirm
linux-firmwareis available. -
NetworkManager Text User Interface with
nmtui. -
Manually adding WiFi connection (advanced).
-
Depending on the desktop environment you install they should have the network configuration settings at installation time.
If all else fails for UTA students we recommend contacting the club or contacting UTA OIT to connect to WiFi internet: https://oit.uta.edu/services/wireless-network/
Secure programming is important.