first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:29:38 +03:00
commit 427856cd3a
176 changed files with 27613 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
## How to find your mac address (Linux)
On Linux, you can use the `ip -c addr` command to find the mac address:
```
$ ip -c addr
...
3: enp36s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:11:22:33:44:55 brd ff:ff:ff:ff:ff:ff
inet 10.12.0.20/24 brd 10.12.0.255 scope global enp36s0
valid_lft forever preferred_lft forever
...
```
Here we see an interface called `enp36s0` that has the mac address `00:11:22:33:44:55`.
You will see multiple interfaces - use the one with your IP address listed.