Connecting via WiFi

How to connect the Ubuntu-Server to the network via WiFi?

Hi, Spoonman:
Sorry for the late response! And does your problem got resolved?

Actually, it’s common approach to setup wifi network with other Linux Distro. There are many different ways, and following steps for your reference:

Install network-manager package:

# apt update
# apt install network-manager

Note that to run apt you have to setup wired network first.

Start network service:

# service network-manager start

[Optional] To see list of available Wi-Fi hotspots:

# nmcli d wifi list

Connect to a Wi-Fi network:

# nmcli dev wifi connect khadas password pw_khadas

Note that khadas should be your ESSID, and pw_khadas should be the password of ESSID.

Enjoy!

1 Like

Thank you very much.