-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add additional info to network settings
- Loading branch information
1 parent
a47acd5
commit 3769d0f
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
=== "Wired device check" | ||
|
||
In order to configure your network devices, they need to be supported the kernel. | ||
|
||
To verify, use command: | ||
|
||
```sh | ||
ip addr | ||
``` | ||
|
||
It is usually something like eth0, enp4s3 or lan. | ||
|
||
=== "Wireless device check" | ||
|
||
In order to configure your wireless network devices, they need to be supported the kernel. | ||
|
||
To verify, use command: | ||
|
||
```sh | ||
iw dev | awk '$1=="Interface"{print $2}' | ||
``` | ||
|
||
It is usually something like `wlan0`, `wlo1` or `wlx12334c47dec3`. If you get blank response, it means your WiFi device / dongle is not supported by the kernel. |