28 KiB
Arch Base
This is the base configuration from which you can build a variety of systems. Right now I have instructions for building a:
Table of Contents
- Arch Base
Installation
Preparation
Follow most of the instructions here: https://wiki.archlinux.org/title/Installation_guide
-
Download Arch
-
Verify the image
gpg --auto-key-locate clear,wkd -v --locate-external-key pierre@archlinux.org gpg --keyserver-options auto-key-retrieve --verify archlinux-... -
Create a bootable ISO https://wiki.archlinux.org/title/USB_flash_installation_medium
-
If you are booting into a VM, create an ISO with installation files so you don't have to copy-paste:
sudo pacman -S cdrtools mkisofs -r -iso-level 4 -l -o /tmp/arch-files.iso ./arch -
If you are booting from a live usb, copy the files in ./arch to the usb drive
-
-
Disable secureboot (reenable later)
Installation
You'll want two usb drives while following this guide. One will be the Arch boot drive. The other will be a support drive with critical files and passwords which we will need to access after we finish the install.
-
Boot into the live image
-
If you only have wifi, use iwctl to connect https://wiki.archlinux.org/title/Iwd#iwctl
iwctldevice listadapter wlan0 set-property Powered on<- Note: replace "wlan0" with the name of your devicestation wlan0 scanstation wlan0 get-networksstation wlan0 connect SSID
-
Check for network connectivity
# Check for internet ip a ping archlinux.org -
timedatectlto update system clock -
Sync the pacman database with
pacman -Sy -
Install pwgen for password generation
pacman -S pwgen -
If using a VM, mount the iso with arch conf files
mount --mkdir /dev/sr1 /media -
If using a physical computer, mount your support drive
mount --mkdir /dev/sdb1 /media -
Create disk partitions. Use gdisk or beware "bootctl install is not on a gpt partition table"
fdisk -l gdisk /dev/vda- Delete all existing partitions with
d - Create a new partition (partition 1) with
n - When prompted for
last sectortype+1G - When prompted for partition structure, type
Land search forEFI SYSTEM, then use that hex code - Create a second new partition (partition 2) with
n - Press enter through the remaining options (the defaults are good)
- Delete all existing partitions with
-
mkfs.fat -F 32 /dev/vda1(/mnt/boot partition) -
This next step involves generating a secure, random password. We're going to save this to our support drive.
echo -n $(pwgen 8 5) | sed 's/ /-/g' > /media/root-key.txt -
cryptsetup luksFormat /dev/vda2 --key-file /path/to/root-key.txt -
cryptsetup luksOpen /dev/vda2 root --key-file /path/to/root-key.txt -
mkfs.btrfs /dev/mapper/root(root partition) -
At this point you can choose how to subvolume your root partition
mount --mkdir -o subvolid=5 /btr_pool btrfs sub create root /btr_pool btrfs sub create home /btr_pool -
Mount the root partition with
mount -o subvol=root /dev/mapper/root /mnt -
Mount the home partition with
mount -o subvol=home /dev/mapper/root /mnt/home -
Mount the boot partition with
mount --mkdir /dev/vda1 /mnt/boot -
pacstrap -K /mnt base linux linux-firmwareThis command might show an error. This is ok, we'll fix it later.
-
genfstab -U /mnt >> /mnt/etc/fstab -
If on VM: Mount the conf files with
mount --mkdir /dev/sr1 /mnt/media -
If on a physical computer: mount the support parition with
mount --mkdir /dev/sdb1 /mnt/media -
arch-chroot /mnt -
ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime -
hwclock --systohc -
echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen -
echo 'KEYMAP=us' > /etc/vconsole.conf -
echo 'hostname' > /etc/hostname -
pacman -S sudo vim bash-completion btrfs-progs plymouth fwupd- bash-completion provides tab complete
- btrfs-progs provides fsck for btrfs
- plymouth gives a nice bootloader screen
-
Edit /etc/mkinitcpio.conf and uncomment the line for systemd-boot with an encrypted drive.
-
mkinitcpio -P -
Install systemd-boot
https://wiki.archlinux.org/title/systemd-boot
bootctl installIf this raises an error like "efi partition not found" you probably forgot to format /mnt/boot as an EFI partition. Edit this by reformatting it with gdisk (ef00 is the hex code).
-
edit your loader.conf with some defaults
/boot/loader/loader.conf
default arch.conf timeout 4 console-mode max editor no -
Create a loader (/usr/share/systemd/bootctl/arch.conf for example)
/boot/loader/entries/arch.conf
title Arch Linux linux /vmlinuz-linux initrd /initramfs-linux.img options ... rd.luks.name=d9828faa-2b8c-4184-9e74-9054ae328c6d=root root=/dev/mapper/root rootflags=subvol=root ...You can get the UUID of the disk into arch.conf with some grepping. Use vim to cut the excess and copy it into the correct location.
blkid | grep /dev/vda2 >> /boot/loader/entries/arch.conf -
useradd ducoterra -
passwd ducoterra -
groupadd sudo -
Edit /etc/sudoers and uncomment the section allowing sudo and wheel group privilege
-
usermod -aG sudo ducoterra -
usermod -aG wheel ducoterra -
mkdir /home/ducoterra -
chown ducoterra:ducoterra /home/ducoterra -
locale-gen -
If on VM install guest drivers:
pacman -S qemu-guest-agent spice-vdagent -
If you need ssh:
pacman -S openssh; systemctl enable sshd -
Add a pacman hook for systemd-boot updates
/etc/pacman.d/hooks/95-systemd-boot.hook
[Trigger] Type = Package Operation = Upgrade Target = systemd [Action] Description = Gracefully upgrading systemd-boot... When = PostTransaction Exec = /usr/bin/systemctl restart systemd-boot-update.service -
Install gnome:
pacman -S gdm gnome gnome-tweaks dconf-editor seahorse- choose pipewire-jack
- choose wireplumber
- choose noto-fonts-emoji
(You can remove gnome with pacman -Rcns gnome)
-
Or install KDE:
pacman -S sddm plasma-meta konsole dolphin- choose pipewire-jack
- choose wireplumber
- choose noto-fonts-emoji
(You can remove KDE with
pacman -Rcns plasma-meta konsole dolphin) -
systemctl enable gdmorsystemctl enable sddm -
Install NetworkManager
pacman -S networkmanager -
systemctl enable NetworkManager -
Install tpm2-tss for tpm2 disk decryption
pacman -S tpm2-tss -
Setup tpm2 disk decryption
systemd-cryptenroll /dev/vda2 --wipe-slot=tpm2 --tpm2-device=auto --tpm2-pcrs="" --unlock-key-file=/media/root-key.txt -
exit -
reboot
Post Install
Backup (or restore)
Dot directories:
.aws
.bash_history
.cache
.config
.continue
.gitconfig
.icons
.kube
.local
.minecraft
.pyenv
.ssh
.steam
.var
.vimrc
.vim
.vscode
.vscode-oss
.wireguard
.zshrc
.zprofile
.zsh_history
And then your home directories:
AUR
Applications
Desktop
Documents
Downloads
Homelab
Music
Pictures
Projects
Recovery
Videos
'VirtualBox VMs'
And then various root directories:
/var/lib/libvirt
I would recommend creating a directory called ".backup" to store relevant files.
You can put the contents of your file lists into three files:
.backup/dotfiles.txt .backup/homefiles.txt .backup/rootfiles.txt
Then you can use rsync to backup or restore them:
rsync -arv --progress --files-from=$HOME/.backup/dotfiles.txt /home/ducoterra/ /btr_pools/backup/112224_Backup/dotfiles
rsync -arv --progress --files-from=$HOME/.backup/homefiles.txt /home/ducoterra/ /btr_pools/backup/112224_Backup/homefiles
rsync -arv --progress --files-from=$HOME/.backup/rootfiles.txt / /btr_pools/backup/112224_Backup/rootfiles
Then, using rsync, either backup or restore the relevant directories.
Base Tools
# gvfs and gvfs-dnssd are for webdav support
pacman -S rsync which git iperf3 pwgen dosfstools exfatprogs gvfs gvfs-dnssd wget man-db net-tools
ZSH
pacman -S zsh grml-zsh-config zsh-syntax-highlighting zsh-autosuggestions pkgfile
chsh -s $(which zsh)
cat <<EOF > ~/.zshrc
# Basic settings
autoload bashcompinit && bashcompinit
autoload -U compinit; compinit
zstyle ':completion:*' menu select
# Prompt settings
autoload -Uz promptinit
promptinit
PROMPT_EOL_MARK=
# Syntax Highlighting
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
# Command Not Found Autocomplete
source /usr/share/doc/pkgfile/command-not-found.zsh
### Custom Commands and Aliases ###
EOF
Prompt Themes
See: https://wiki.archlinux.org/title/Zsh#Prompt_themes
Use prompt -l to list prompts
Use prompt -p to see previews
In your .zshrc set the following:
autoload -Uz promptinit
promptinit
prompt grml
Pacman
https://wiki.archlinux.org/title/Pacman
Rollback previous upgrade
This script will roll back a pacman update if something goes wrong.
~/.local/scripts/rollback_update.sh
#!/bin/bash
# Extract the list of most recent updates and save them to /tmp/lastupdates.txt
grep -a upgraded /var/log/pacman.log| grep $(date +"%Y-%m-%d") > /tmp/lastupdates.txt
# Extract the package names, save to /tmp/lines1
awk '{print $4}' /tmp/lastupdates.txt > /tmp/lines1
# Extract the previous version of each package, save to /tmp/lines2
awk '{print $5}' /tmp/lastupdates.txt | sed 's/(/-/g' > /tmp/lines2
# concat package name with previous version, save to /tmp/lines
paste /tmp/lines1 /tmp/lines2 > /tmp/lines
# Remove the whitespace between the package name and the version
tr -d "[:blank:]" < /tmp/lines > /tmp/packages
# Old versions of packages are stored here
cd /var/cache/pacman/pkg/
# For each package, install from cache
for i in $(cat /tmp/packages);
do
sudo pacman --noconfirm -U "$i"*
done
AUR
The AUR lets you install community-created and maintained packages. Here are the basics:
pacman -S --needed git base-devel
# For packages you plan on keeping (works with auto-update script)
mkdir -p ~/AUR/install
# For packages you are experimenting with (no auto-update)
mkdir -p ~/AUR/inspect
# When you find a project, the basic installation looks like this:
cd ~/AUR/inspect
git clone <git repo from aur>
cd <folder name>
PAUSE!
Read through the PKGBUILD. Specifically check:
depends=: Do these make sense? Is there anything you wouldn't install?source=: This should be a link to an official repository. If it links to https://joes-back-door.git don't install it.sha256sums=: Make sure this matches the package! If you have to - wget https://link-to-deb andsha256sum something.debpackage() {: This is the script for installing the package. Does everything look right? Is there something going on you don't understand? Are wecurling orwgeting things we shouldn't be?- Also look through the remaining fields and check for oddities. Remember, anyone can slip anything into these PKGBUILD files, but if the info looks kosher you're good to go. Basically there won't be any surprises since the PKGBUILD defines everything related to the install/build process.
If you've already installed a few packages and keep them in a folder, you can run a quick and dirty check with:
# Find all PKGBUILD files in the current tree and grep for `https` so we can find potentially unwanted web downloads.
find . -name "PKGBUILD" -exec grep --color -Hni "https://" {} \;
makepkg -si
We can update our AUR packages with a script. As long as you clone your AUR packages into ~/AUR/install this will work:
- Add
#%sudo ALL=(ALL) NOPASSWD: /usr/bin/pacman(commented out) to/etc/sudoers - Create the following script:
~./local/scripts/update-aur.sh
#!/bin/bash
# Ensure password is required for pacman if ctrl+c pressed
trap 'on_exit' SIGINT
function on_exit() {
# Comment out pacman NOPASSWD line in /etc/sudoers
sudo sed -i -E 's/^([^#].*ALL=\(ALL\) NOPASSWD: \/usr\/bin\/pacman)/#\1/g' /etc/sudoers
exit
}
# Allow sudo pacman without password temporarily
sudo sed -i -E 's/#(.*ALL=\(ALL\) NOPASSWD: \/usr\/bin\/pacman)/\1/g' /etc/sudoers
for file in $(ls ~/AUR/install);
do
cd ~/AUR/install/$file
git pull
makepkg -si --noconfirm
done
# Ensure sudoers is put back to normal
on_exit
Now you can run ~/.local/scripts/update-aur.sh and update all AUR packages.
Security
https://wiki.archlinux.org/title/security
Every machine, regardless of use-case, should perform some basic hardening. You don't need to follow every instruction in the above wiki, but you should at least enable secure boot, tpm2 disk decryption, firewall, clamav, btrfs snapshots, and btrfs backups.
Security Philosophy
-
Secure Boot
Protection from pre-boot malware that might hijack your EFI binary.
-
TPM2 Decryption
Since we have secure boot enabled we can safely auto-decrypt our hard drive with a tpm2 device. This is purely a convenience.
-
Firewall
This should be self-explanatory, but I'll explain anyway. Don't allow any arbitrary network traffic into your device. Block those ports. Only open what you need. Firewalls drastically reduce the risk of remote exploits by stopping them before they can even establish a connection. Firewalls can also be used to limit an attacker's ability to even discover you on a network with icmp blocking.
-
ClamAV
Much like Windows has Windows Defender, Linux has ClamAV. Running an antivirus scanner certainly isn't the end-all-be-all of security, and it definitely isn't good enough on its own to keep your system safe, but in combination with apparmor and a firewall you can identify and quarantine malware before it has a chance to compromise your system. That being said, finding any malware on a system is reason enough to nuke it from orbit and restore from a known good backup.
-
BTRFS Snapshots
This is not a backup, this is a snapshot. It serves an equally important function, however, in that it protects you from accidental deletion and corruption. Let's imagine you perform an update, reboot, and your computer crashes mid-startup. You could easily restore root from a btrfs snapshot on your system and go on with your day like nothing happened.
-
BTRFS Backups
This is a backup. Unlike snapshots, which live on the same drive your system exists on, backups are physically separate copies of your computer stored (hopefully) in a physically separate location. In the event your computer is lost or stolen these backups give you a way to perfectly restore your system to its former glory.
Secure Boot
-
Put your machine in setup mode
On framework this is done in the UEFI setup page for Security, sub-page Secure Boot, choose “Erase all Secure Boot Settings.”
On my Gigabyte motherboard this is done in the BIOS under security. Set secure boot to custom.
-
pacman -S efitools sbctl -
cd /btr_pools/root/support/ -
for var in PK KEK db dbx ; do efi-readvar -v $var -o old_${var}.esl ; done -
sbctl create-keys -
sbctl enroll-keys -m -
sbctl status -
sbctl verify -
sbctl sign -s /boot/vmlinuz-linux -
sbctl sign -s /boot/EFI/BOOT/BOOTX64.EFI -
sbctl sign -s /boot/EFI/systemd/systemd-bootx64.efi -
sbctl verify -
reboot -
Enable secure boot
-
sbctl statusto check secure boot -
bootctlto check boot loader status
There is a pacman hook which will automatically sign new binaries on update.
TPM2 LUKS Decryption with Secure Boot
You can optionally allow tpm2 decryption only while secure boot is active.
Using --tpm2-pcrs=7 enforces secure boot and will require password if secure boot is disabled.
pacman -S tpm2-tsssystemd-cryptenroll /dev/vda2 --wipe-slot=tpm2 --tpm2-device=auto --tpm2-pcrs=7 --unlock-key-file=/btr_pools/root/support/root-key.txt
Re-enroll
systemd-cryptenroll /dev/nvme0n1p2 --wipe-slot=tpm2 --tpm2-device=auto --tpm2-pcrs=7 --unlock-key-file=/btr_pools/root/support/root-key.txt
systemd-cryptenroll /dev/nvme0n1p3 --wipe-slot=tpm2 --tpm2-device=auto --tpm2-pcrs=7 --unlock-key-file=/btr_pools/root/support/root-key.txt
FIDO2 LUKS Decryption
pacman -S libfido2
Firewall
pacman -S ufw
systemctl enable --now ufw
ClamAV
pacman -S clamavclamscan --recursive --infected /path/to/dir
- OR -
touch /var/log/clamav/freshclam.logsystemctl enable --now clamav-freshclam.servicesystemctl enable --now clamav-daemon.serviceclamdscan --multiscan --fdpass /home/ducoterra
btrbk
sudo pacman -S mbuffer # for progress monitoring
cd Downloads
wget https://raw.githubusercontent.com/digint/btrbk/master/btrbk
clamdscan .
chmod +x btrbk
sudo mv btrbk /usr/bin/
fstab
You'll need to mount your btrfs volumes in a location which exposes their subvolumes.
mkdir -p /btr_pools/root
/etc/fstab
# btr_pools
UUID=84153269-f194-43f7-a4fe-e72aaffdb97a /btr_pools/root btrfs rw,relatime,ssd,space_cache=v2,subvolid=5 0 0
systemctl daemon-reload
mount -a
btrfs sub create /btr_pools/root/.snapshots
BTRBK Snapshots
mkdir /etc/btrbk
Create a snapshot config
/etc/btrbk/snapshots.conf
snapshot_preserve_min 7d
# root
volume /btr_pools/root
subvolume root
snapshot_dir .snapshots
# home
volume /btr_pools/root
subvolume home
snapshot_dir .snapshots
Then create a snapshot service
/etc/systemd/system/btrbk_snapshots.service
[Unit]
Description=Runs btrbk with config file at /etc/btrbk/snapshots.conf
[Service]
ExecStart=/usr/bin/btrbk -c /etc/btrbk/snapshots.conf --progress run
Then create a timer for the service
/etc/systemd/system/btrbk_snapshots.timer
[Unit]
Description=Run snapshots every hour
[Timer]
OnCalendar=hourly
AccuracySec=10min
Persistent=true
Unit=btrbk_snapshots.service
[Install]
WantedBy=timers.target
Then enable the service
systemctl enable --now btrbk_snapshots.timer
BTRBK Backups
Before you begin, go through the usual process of setting up an encrypted drive. If you're using Gnome I recommend using the GUI since it handles encrypted USB drives really nicely.
First, I'd recommend manually creating the mountpoint and setting it as a read-only. This prevents backups from being written to the root device when the backup disk isn't mounted.
btrfs sub create /btr_pools/backup
btrfs property set /btr_pools/backup ro true
Second, I'd recommend creating subvolumes within your existing volumes for things you don't want backed up. These include:
- /var/lib/libvirt
- Nextcloud
Now set up the backup:
-
Create a backup config
/etc/btrbk/backups.conf
snapshot_create no target_preserve_min 7d # root volume /btr_pools/root target /btr_pools/backup subvolume root snapshot_dir .snapshots # home volume /btr_pools/root target /btr_pools/backup subvolume home snapshot_dir .snapshots -
Create a backup service
/etc/systemd/system/btrbk_backups.service
[Unit] Description=Runs btrbk with config file at /etc/btrbk/backups.conf [Service] ExecStart=/usr/bin/btrbk -c /etc/btrbk/backups.conf --progress run -
Create a timer to activate the service
/etc/systemd/system/btrbk_backups.timer
[Unit] Description=Run btrbk backups every hour [Timer] OnCalendar=hourly AccuracySec=10min Persistent=true Unit=btrbk_backups.service [Install] WantedBy=timers.target -
Enable the timer
systemctl enable --now btrbk_backup.conf
Running the backup manually with progress is a good way to make things go well the first time:
# Prevent anything from putting the machine to sleep
systemctl mask sleep.target
btrbk -c /etc/btrbk/backups.conf --progress run
systemctl unmask sleep.target
Backing up a snapshot
pacman -S pv
btrfs send /mnt/btr_backup/root.20230727T1000 | pv | btrfs receive /mnt/btr_iscsi
Restoring a snapshot
export ROOT_SNAPSHOT_NAME=<name>
export HOME_SNAPSHOT_NAME=<name>
rsync -av --delete /btr_pools/root/.snapshots/${ROOT_SNAPSHOT_NAME}/ /btr_pools/root/root/
rsync -av --delete /btr_pools/root/.snapshots/${HOME_SNAPSHOT_NAME}/ /btr_pools/root/home/
pacman -Syu # This is only required if you're restoring a snapshot from an old kernel
reboot
Chroots
You can create chroot environments to run firejails or just use for testing purposes.
cd /btr_pools/rootbtrfs sub create chrootsmkdir /btr_pools/root/chroots/testingpacman -S arch-install-scriptspacstrap -K /btr_pools/root/chroots/testing base base-develarch-chroot /btr_pools/root/chroots/testing
Hardware Management
Power Profiles
https://wiki.archlinux.org/title/CPU_frequency_scaling#power-profiles-daemon
pacman -S power-profiles-daemon
systemctl enable --now power-profiles-daemon
Color Management
https://wiki.archlinux.org/title/Framework_Laptop_13#Display
https://wiki.archlinux.org/title/ICC_profiles#Wayland
cp /home/ducoterra/Downloads/BOE_CQ... /usr/share/color/icc/colord/
colormgr get-profiles
colormgr get-devices
colormgr device-add-profile xrandr-BOE-0x095f-0x00000000 icc-eca2e6d155d550a5e78c97a34ac3fcae
Washed out colors with power-profiles-daemon
systemctl edit power-profiles-daemon.service --drop-in=disable_panel_powersavings
[Service]
ExecStart=
ExecStart=/usr/lib/power-profiles-daemon --block-action=amdgpu_panel_power
Hardware Acceleration
(This helps enable hardware encoding/decoding for steam streaming)
Intel
pacman -S libva-utils intel-media-driver
vainfo
AMD
pacman -S vulkan-radeon libva-utils libva-mesa-driver xf86-video-amdgpu
vainfo
Don't sleep while plugged in
This is needed for the Framework 13 (11th gen) since sleeping while plugged in to a dock will prevent it from waking up.
vim /etc/systemd/logind.conf
Bluetooth
pacman -S bluez bluez-utilssystemctl enable --now bluetooth
Note that SBC-XQ is usually lower latency and higher quality than AAC.
Audio
Without pipewire-pulse the audio level/device will reset every reboot.
pacman -S pipewire-pulse(remove conflicting packages)
Software Stores
Flatpak
pacman -S flatpak
AppImage
Install fuse for appimage support.
sudo pacman -S fuse
Make sure to chmod +x the .appimage file before running.
-
cp ~/Downloads/xxxxxxx.appimage ~/Applications -
Find an icon online and save it to ~/.icons
-
Write a .desktop entry at ~/.local/share/applications/
[Desktop Entry] Name= Exec=/home/ducoterra/Applications/ Icon=/home/ducoterra/.icons/ Type=Application -
desktop-file-validate ~/.local/share/applications/*.desktop -
update-desktop-database
Overriding .desktop files
Sometimes you need to make changes to the default .desktop files. You can do this by copying
the .desktop file to ~/.local/share/applications/ and editing its settings.
Finding the .desktop file can be tricky. I usually use the following find command:
# 2>/dev/null pipes all the "permission denied" errors to /dev/null
# Searching in the btr_pools/root/root will skip .snapshots, /home, and /proc, /sys, etc.
find /btr_pools/root/root/ -name '*.desktop' 2>/dev/null
Flatpak
cp /var/lib/flatpak/exports/share/applications/... ~/.local/share/applications/
Networking
IPv6
IPv6 Privacy by Default
Create /etc/NetworkManager/conf.d/01-ip6.conf:
[ipv6]
ip6-privacy=2
EUI64
Set address generation type to eui64 with nmcli:
nmcli connection modify Wired\ connection\ 1 ipv6.ip6-privacy 0
nmcli connection modify Wired\ connection\ 1 ipv6.addr-gen-mode eui64
systemctl restart NetworkManager
You can also start an interactive session to edit a connection:
nmcli connection edit Wired\ connection\ 1
# Show all current settings
print
# Set something
set ipv6.ip6-privacy 0
set ipv6.addr-gen-mode eui64
# Save the changed setting
save
quit
Networking Privacy
Mac Address Randomization
https://wiki.archlinux.org/title/NetworkManager#Configuring_MAC_address_randomization
https://blogs.gnome.org/thaller/2016/08/26/mac-address-spoofing-in-networkmanager-1-4-0/
edit /etc/NetworkManager/conf.d/wifi_rand_mac.conf
[device-mac-randomization]
# "yes" is already the default for scanning
wifi.scan-rand-mac-address=yes
[connection-mac-randomization]
# Randomize MAC for every ethernet connection
ethernet.cloned-mac-address=random
# Generate a random MAC for each WiFi and associate the two permanently.
wifi.cloned-mac-address=stable
VLAN Setup
# Create
sudo nmcli con add type VLAN con-name enp195s0f3u1u3.4 dev enp195s0f3u1u3 id 4
# Bring up (optional)
sudo nmcli connection up enp195s0f3u1u3.2
# Delete
sudo nmcli connection down enp11s0.1
sudo nmcli connection del enp11s0.1
Date and Time
If you're like me and like 24 hour time use C.UTF-8:
localectl set-locale C.UTF-8