···
67
-
To manually configure the network on the graphical installer, first disable
68
-
network-manager with <command>systemctl stop NetworkManager</command>.
67
+
On the graphical installer, you can configure the network, wifi included,
68
+
through NetworkManager. Using the <command>nmtui</command> program, you
69
+
can do so even in a non-graphical session. If you prefer to configure the
70
+
network manually, disable NetworkManager with
71
+
<command>systemctl stop NetworkManager</command>.
72
-
To manually configure the wifi on the minimal installer, run
73
-
<command>wpa_supplicant -B -i interface -c <(wpa_passphrase 'SSID'
75
+
On the minimal installer, NetworkManager is not available, so configuration
76
+
must be perfomed manually. To configure the wifi, first start wpa_supplicant
77
+
with <command>sudo systemctl start wpa_supplicant</command>, then run
78
+
<command>wpa_cli</command>. For most home networks, you need to type
79
+
in the following commands:
81
+
<prompt>> </prompt>add_network
83
+
<prompt>> </prompt>set_network 0 ssid "myhomenetwork"
85
+
<prompt>> </prompt>set_network 0 psk "mypassword"
87
+
<prompt>> </prompt>set_network 0 key_mgmt WPA-PSK
89
+
<prompt>> </prompt>enable_network 0
92
+
For enterprise networks, for example <emphasis>eduroam</emphasis>, instead do:
94
+
<prompt>> </prompt>add_network
96
+
<prompt>> </prompt>set_network 0 ssid "eduroam"
98
+
<prompt>> </prompt>set_network 0 identity "myname@example.com"
100
+
<prompt>> </prompt>set_network 0 password "mypassword"
102
+
<prompt>> </prompt>set_network 0 key_mgmt WPA-EAP
104
+
<prompt>> </prompt>enable_network 0
107
+
When successfully connected, you should see a line such as this one
109
+
<3>CTRL-EVENT-CONNECTED - Connection to 32:85:ab:ef:24:5c completed [id=0 id_str=]
111
+
you can now leave <command>wpa_cli</command> by typing <command>quit</command>.