- BlendOS allows installing packages from multiple distros Ubuntu, Fedora, and Arch.
- elementary OS bills itself as a thoughtful, capable, ethical replacement for Windows and macOS. It is based on Ubuntu.
- omarchy is a DHH project based on Arch and Hyperland. Essentially a dotfiles repo.
Debian
Find ip address: ip addr
WiFi From the Command Line
Desktop Environments
Budgie is a refined version of GNOME. Lacks significant support channels as of 2023-01-31.
systemd
Harden VPS security
- 
Set root users password to randomly generated value 
- 
Create local user 
- 
Copy authorizedkey to local user 
- 
Logout/SSH in as local user 
- 
su -
- 
Disable root login and password auth for ssh sed -i -E 's/^(#)?PasswordAuthentication yes/PasswordAuthentication no/' /etc/ssh/sshd_config sed -i -E 's/^(#)?PermitRootLogin (prohibit-password|yes)/PermitRootLogin no/' /etc/ssh/sshd_config
- 
Restart ssh systemctl restart ssh