This is a draft cheat sheet. It is a work in progress and is not finished yet.
Intro
This little guide is for my new notebook.
It should make my work with my setup easier, it doesn't have to be a complete list for you.
The Linux version used is ArchLabs. Most commands should also run with Arch. |
software management
yaourt -Ss [keyword] |
Search for software by keyword |
yaourt -S [software name] |
install software |
network setup
nmcli connection show |
show all known connections |
nmcli connection modify [connection name] wifi.cloned-mac-address permanent |
use physical mac address for this network |
nmcli connection modify [connection name] wifi.cloned-mac-address random |
use random mac address for this network |
nmcli connection modify [connection name] wifi.cloned-mac-address stable |
use a stable and hashed MAC address for this network |
ip a s |
show all IPs |
|
|
network setup files
/etc/NetworkManager/conf.d/ |
30-mac-randomization.conf
[device-mac-randomization]
# "yes" is already the default for scanning
wifi.scan-rand-mac-address=yes
[connection-mac-randomization]
ethernet.cloned-mac-address=random
wifi.cloned-mac-address=random
|
31-ipv6-randomization.conf
[connection]
ipv6.ipv6-privacy=2
|
|