Iwd: Difference between revisions

From wikinotes
(Created page with "Manages network interfaces and connections. = Install = <blockquote> <syntaxhighlight lang="bash"> pacman -S iwd </syntaxhighlight> <syntaxhighlight lang="bash"> # arch syst...")
 
 
Line 17: Line 17:
<blockquote>
<blockquote>
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
device list
iwctl
station wlan0 scan
> device list
station wlan0 get-networks
> station wlan0 scan
station wlan0 connect ${SSID}
> station wlan0 get-networks
> station wlan0 connect ${SSID}
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Usage -->
</blockquote><!-- Usage -->

Latest revision as of 04:35, 6 March 2022

Manages network interfaces and connections.

Install

pacman -S iwd
# arch
systemctl enable iwd
systemctl start iwd

Usage

iwctl
> device list
> station wlan0 scan
> station wlan0 get-networks
> station wlan0 connect ${SSID}