Re-partition disk to allow more space for /var/log
Create another VM and reinstall Debian - mainly for cleanup
Move all running services to Docker
Configure VM backups on Proxmox hypervisor
Clean up Proxmox hypervisor update / upgrade errors
Remove enterprise repository
Add non-subscription repository
Add admin user to Proxmox hypervisor (stop logging in as root)
Re-installing Debian
Similar to Initial setup of my Raspberry Pi 5. Simple, straightforward, the Debian TUI installer handles everything nicely. Proxmox automatically connects the VM to the internet when you create it.
Partitioning scheme:
100GB for /
100GB for /var (previously only allocated 10GB - ran out quick)
14GB for swap (same as RAM)
remainder for /home
Install with SSH server and no desktop environment.
Configuring Debian install
I won’t write these out in detail, but I’m trying to get the process down so I’d like to record every step.
Log in as root via console
Verify sshd is enabled
Install sudo
Edit /etc/sudoers file to allow wheel to enter all commands with no password
Create the wheel group and add admin user
Change passwords for root user and admin user
Configure ssh login and dotfiles
ssh-copy-id from client machine
scp -r .config from client machine
Log in as admin user via ssh
Change shell to /bin/zsh; create symbolic link ./zshrc that points to .config/zsh/zshrc; log out and back in
My docker management has been miserable so far, so I am trying a different structure for the files and folders, to keep them separate from the default /var and /etc locations.
/home/user/docker subdirectories for docker-compose.yml files
My end goal is to have subdomains (e.g. jellyfin.nas.local) that point to the actual services on my LAN. I figured I’d give this a crack with an nginx reverse proxy to docker services, as that’s something I’m doing on this domain.
I added a rule to point nas.local, nas.lan, and nas.net
Unfortunately, it seems to be a massive pain, at least with my WireGuard VPN.
None of the requests from my client PC connected to the VPN go through my LAN DNS server. Defaults to 1.1.1.1.
If I use the .local tld, my browser will recognize it as a proper URL, but not get the proper name through my LAN Pi-hole DNS.
An unused tld such as .lan defaults to Google search unless prefixed with http:// (thanks, firefox)
If I use the .net tld, it defaults to trying to resolve that through another DNS provider, as in the first example.
So, this has been tabled for now. A goal for the future.