NetworkManager
NetworkManager is a program for connecting to internet. It is only needed for wireless connections.
Installation
Debian probably has NetworkManager pre-installed. A manual install can be done by executing the following command:
sudo apt install network-manager
It is recommended to use iwd as a backend
for NetworkManager. Iwd is the modern replacement for wpa_supplicant
.
Usage
NetworkManager provides a command line (CLI) tool to connect with the internet
called nmcli
(NetworkManager CLI). The graphical equivalent provided is
nmtui
(NetworkManager Terminal User Interface).
To list the available Wi-Fi networks execute:
nmcli device wifi list
To connect to a Wi-Fi network using nmcli
execute:
nmcli device wifi connect <SSID> [password <password>]
<SSID>
is the name of the Wi-Fi network.<password>
is the password of the Wi-Fi network.
Eduroam
It is not possible to connect to the eduroam network using NetworkManager without custom configuration. For more information reference about how to the following:
- The Arch Wiki section about network configuration with eduroam.
- To generate configuration for NetworkManager use the eduroam Configuration Assistant Tool.
See also
- The Gentoo wiki article about NetworkManager.
- The Arch Wiki article about NetworkManager.
- The website of NetworkManager.