https://www.simplified.guide/linux/disk-health-check Install For ubuntu/debian based distros (which is what I primarly use presently) sudo apt update -y && sudo apt install smartmontools -y List hard drives lsblk | grep disk is one way or su ... read more →
Steps sudo fdisk -l then look for the device and partition get the Type column mount Example dumbledore in /media NO PYTHON VENV SET ❯ sudo fdisk -l ... Device Boot Start End Sectors Size Id Type /dev/sdk1 * 2048 60371951 ... read more →
Assuming you have a PXE server running you only need small edits to the virt-manager config read more →
I have started using VMs more and more in my development workflow and it's impossible to work in a VM without an internet connection for me most of the time. Setting up the KVM networking is kind of confusing to me and I've done it two different way ... read more →
man can be a pain to read... and there's lots of alternatives out there and one I've just started playing with is cheat man man will give you this plus a billion more lines of docs, which is useful when you need it... MAN(1) ... read more →
see samba config on hogwarts read more →
[email protected] [email protected] #! /bin/bash # pick multiple emails from list and combine into comma seperated array emails=`cat .../emails | fzf -m | sed 's/^\|$/"/g'|paste -sd,` echo $emails read more →
My Nextcloud woes I wrote here about setting up www-data as the owner of any directories you want nextcloud to manage. However, I regularly struggle wtih permissions issues on my NAS because of the external storage app anyways so I've decided to jus ... read more →
I ran out of space on the SSD in my server when doing some file transfers but only 100GB was used of a 256 GB SSD? LVM When installing Ubuntu live server the default option for how to partition the disk (in my experience) has been to setup an LVM gr ... read more →
apt-get by default wil go to the pve.enterprise repos so we need to point it to the non-enterprise ones. rm /etc/apt/sources.list.d/pve-enterprise.list vim /etc/apt/sources.list.d/pve-no-subscription.list # add deb http://download.proxmox.com/debi ... read more →