iwd
parent
a5c98b64a2
commit
a1ac1d9dc5
|
@ -8,5 +8,5 @@
|
|||
Enable and start service:
|
||||
|
||||
```sh
|
||||
sudo systemctl enable --now earlyoom
|
||||
sudo systemctl enable --now earlyoom.service
|
||||
```
|
||||
|
|
|
@ -0,0 +1,31 @@
|
|||
# [iwd](https://git.kernel.org/pub/scm/network/wireless/iwd.git/)
|
||||
|
||||
| Distribution | Package |
|
||||
| ------------ | ------- |
|
||||
| Arch Linux | `iwd` |
|
||||
|
||||
Enable and start service:
|
||||
|
||||
```sh
|
||||
sudo systemctl enable --now iwd.service
|
||||
```
|
||||
|
||||
Inside `iwctl`:
|
||||
|
||||
```sh
|
||||
device list
|
||||
|
||||
# Change device to real device
|
||||
station {device} scan
|
||||
station {device} get-networks
|
||||
|
||||
# Change SSID to real SSID
|
||||
station {device} connect {SSID}
|
||||
```
|
||||
|
||||
To use NetworkManager, edit `/etc/NetworkManager/conf.d/wifi_backend.conf`
|
||||
|
||||
```txt
|
||||
[device]
|
||||
wifi.backend=iwd
|
||||
```
|
|
@ -22,25 +22,7 @@ dd bs=4M if=path/to/archlinux.iso of=/dev/sdx status=progress oflag=sync
|
|||
|
||||
### Connect to the internet
|
||||
|
||||
Read [iwd/iwctl](https://wiki.archlinux.org/index.php/Iwd#iwctl):
|
||||
|
||||
```sh
|
||||
iwctl
|
||||
```
|
||||
|
||||
Inside `iwctl`:
|
||||
|
||||
```sh
|
||||
device list
|
||||
|
||||
# Change device to real device
|
||||
station device scan
|
||||
|
||||
station device get-networks
|
||||
|
||||
# Change SSID to real SSID
|
||||
station device connect SSID
|
||||
```
|
||||
Read [iwd/iwctl](Applications/System/iwd.md).
|
||||
|
||||
### Partition the disks
|
||||
|
||||
|
|
Loading…
Reference in New Issue