Tag: Linux

  • Creating a Personal Music Server – Navidrome

    In this article I’ll be installing an configuring a personal music server based on Navidrome. The first part of the install will be specific to my home network setup which is covered in numerous other posts. Music Share Setup The step assumes that you have a file server configured as per the Building a NAS…

  • Mounting a Samba Share Under Debian

    In this article we’ll permanently mount a Samba share on a Debian based system, this process will be similar for other Linux distributions too. It is assumed that you have a share somewhere else already configured and ready to go. Start by installing the required utilities, this will install a few other utilities as well.…

  • Setting up Sudo on Debian

    In this article I’ll set up the sudo system on Debian. By default the Debian installer only sets up sudo if you don’t supply a root password at install time. You don’t need sudo on a machine to to use it effectively and I have used Debian machines without it for years. The problem is…

  • Automatic Updates on Debian

    When you’ve got a few machines, virtual or real, to keep updated it can become quite a chore. There are tools like Ansible that can automate day to day jobs but right now that feels like overkill for what I need. I’m, instead, going to first install automatic updates for my Debian based systems (e.g.…

  • Installing Docker and Portainer on a Proxmox VM

    This article will cover installing Docker and Portainer on a Proxmox VM, we created the VM in the previous article. There’s a bit of a shift in the home server Proxmox world over to using containers rather than Docker. Personally, I’m on the fence with this. On the one hand containers are good because they…

  • Building a NAS Using Proxmox – Part 3

    This is the third article in the series about using Proxmox as a NAS. For this article to make sense you’ll need to have a container set up and sharing host files via Samba similar to shat was set up in step one and two. In this article I’ll look at mapping container users onto…

  • Building a NAS Using Proxmox – Part 1

    The first thing many people do with their home server is set up file sharing. If you’re running an OS such as TrueNAS this is really simple, but I’m running Proxmox so that I can also easily run virtual machines and this has one big downside: Proxmox is not really set up to act as…

  • Automatically Scrubbing ZFS Under Proxmox

    I thought this one was going to be a challenge to set up but it turns out it’s set up automatically to scrub the disks on the server Sunday of every month. The important files for this setup are: The file in cron.d sets the schedule and calls the scrub script which actually performs the…

  • Understanding the Default Filesystem on Proxmox

    When you install Proxmox it’s quite common to choose just a single local disk and let the installer use LVM to partition it. This turns the drive into a physical volume (PV) onto which the installer will create a single volume group (VG) called pve. Inside that volume group the installer will create three logical…

  • Setting up SMART Monitoring in Proxmox

    The aim of this article is to configure SMART monitoring in Proxmox and to send emails in the case anything untoward is found. You should already have the email system set up as per this earlier article. This article assumes that you have disks attached directly to the system rather than via a RAID controller.…

  • Setting up Email Notifications in Proxmox Using Gmail

    Getting email notifications from Proxmox is important as you absolutely want to know what that disk fails at 3AM or if the backup decides it’s had enough and gives up. The first thing you need to check is that you have set a valid email addresses for where the email will come from. By default…

  • Building a Home Server with Proxmox – ZFS

    The installation of Proxmox is well covered in official guide so I won’t cover that here. There really aren’t many choices to be made during install anyway. I installed the OS on a 1TB M.2 drive and I plan on storing most of my VM’s there as well. Obviously, this will be backed up as…