Proxmox

Post Install

bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/misc/post-pve-install.sh)"

Docker

fixed for use in LXC console (no sudo + apt vs apt-get)

apt update
apt install ca-certificates curl gnupg
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
chmod a+r /etc/apt/keyrings/docker.gpg
echo \
  "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \
  "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
  tee /etc/apt/sources.list.d/docker.list > /dev/null
apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

Single Storage Drive

nodename > Disks

  1. Select Disk > Wipe Disk

  2. Disks > ZFS > Create ZFS

Software

HA OS (VM)

BS Garb

10.0.0.104:9696 - Prowlarr

Expand Drive

Passthru Disk to VM

Check drives and show model and serial

https://www.wundertech.net/how-to-passthrough-a-disk-in-proxmox/

grab disk id

The SATA ribbon cable broke in my mini PC and I was able to swap out for a USB to SATA connector with the ID below I found with the found from the command above.

You can swap this out in the conf file:

Mount CIFS/SMB

https://tecadmin.net/mounting-samba-share-on-ubuntu/

Add your Samba creds

Chmod the creds file

Test the connection (if you want)

add to

Partition has a hold

lsblk -> find container id under numbered sdx# (sdb3) dmsetup remove [ID]

Resize LXC disk

Just change the containder ID #

Last updated