Add disable ipv6

This commit is contained in:
Jean-Claude 2024-01-03 15:00:24 +01:00
parent 7c8ec8ca1b
commit 4032e9d95c
Signed by: jeanclaude
GPG Key ID: 8A300F57CBB9F63E
2 changed files with 8 additions and 0 deletions

6
networking.md Normal file
View File

@ -0,0 +1,6 @@
# Networking
## Disable IPv6
1. Check current settings: `nmcli connection show <CONNECTION>`
2. Disable ipv6: `nmcli connection modify <CONNECTION> ipv6.method "disabled"`
3. Restart connection: `nmcli connection up <CONNECTION>`

View File

@ -1,3 +1,5 @@
# Pacman
- Print no version info: Add `q` (quiet)
- List installed packages by size: `expac "%n %m" -l'\n' -Q $(pacman -Qq) | sort -rhk 2`