[SOLVED] Plex, Arrs, and storage

purplebarbyman

New Member
May 13, 2024
5
1
3
I'm so sorry... I feel like this has been asked 1000000 times and I still can't figure it out. I have followed like 15 guides and all lead to the same path, Each time I think I figured it out, its not right. Finally admitting defeat and asking for help.

I got my proxmox set up, got everything running and installed... I used the helper scrips for most, Everything looks to be configured correctly in all the settings...

Where I get stuck is.. I have 2 External Hard drives connected to my Proxmox PC, I'm trying to use those as my storage for my containers to access/download ect...

Ive tried doing it via ZFS, tried with ext4 format. I actually got close with what I wanted but realized that each container couldn't talk to eachother and share the directories... i just had created seperate directories on each one.

I currently have a 14TB. i created a EXT4 Directory and that is: mnt/pve/mediatv

Recently followed this guide (thought this was the one) https://hakedev.substack.com/p/prox...mpaign=post&utm_medium=web&triedRedirect=true

Made the directory on the node, made directory on the container.

Found the UUid and created the mountpoint in the nano /etc/fstab file

MyUUID /media/TV ext4 defaults,noatime,nofail 0 0
mounted it by doing a systemctl daemon-reload followed by mount -av

went to: nano /etc/pve/lxc/105.conf and edited that

mp0: /media/TV,mp=/media/TV

saved that did another systemctl daemon-reload followed by a mount -a

rebooted the container

after rebooting the container i can see the mount point in there as mp0 /media/TV,mp=media/

Everything looks right, looks correct... but when i got to the sonar website and try to add that directory as a media management it says it only has like 3.4g of storage available and not the 14T

not sure where i'm messing up in these steps, but if someone could guide me in the right direction I would greatly appreciate it.
 
Can you post the output of the following commands on the host (please put it in CODE tags, so it is easier to read)?


Code:
lsblk
df -h
cat /etc/pve/storage.cfg
cat /etc/fstab
pct config 105
 
Code:
root@zachsplexserver:~# lsblk
NAME     MAJ:MIN RM   SIZE RO TYPE MOUNTPOINTS
loop0      7:0    0     4G  0 loop
sda        8:0    0 931.5G  0 disk
├─sda1     8:1    0  1007K  0 part
├─sda2     8:2    0     1G  0 part
└─sda3     8:3    0 930.5G  0 part
sdb        8:16   0   3.6T  0 disk
sdc        8:32   0  12.7T  0 disk
└─sdc1     8:33   0  12.7T  0 part /mnt/pve/mediatv
zd0      230:0    0    32G  0 disk
├─zd0p1  230:1    0     1M  0 part
└─zd0p2  230:2    0    32G  0 part
zd16     230:16   0    32G  0 disk
├─zd16p1 230:17   0     1M  0 part
└─zd16p2 230:18   0    32G  0 part
root@zachsplexserver:~# df -h
Filesystem                    Size  Used Avail Use% Mounted on
udev                          7.7G     0  7.7G   0% /dev
tmpfs                         1.6G  2.8M  1.6G   1% /run
rpool/ROOT/pve-1              869G  2.6G  866G   1% /
tmpfs                         7.7G   46M  7.6G   1% /dev/shm
tmpfs                         5.0M     0  5.0M   0% /run/lock
efivarfs                      256K   89K  163K  36% /sys/firmware/efi/efivars
/dev/sdc1                      13T   56K   12T   1% /mnt/pve/mediatv
rpool                         866G  128K  866G   1% /rpool
rpool/var-lib-vz              875G  8.3G  866G   1% /var/lib/vz
rpool/ROOT                    866G  128K  866G   1% /rpool/ROOT
rpool/data                    866G  256K  866G   1% /rpool/data
rpool/data/subvol-101-disk-0   60G  831M   60G   2% /rpool/data/subvol-101-disk-0
rpool/data/subvol-107-disk-0  4.0G  569M  3.5G  14% /rpool/data/subvol-107-disk-0
rpool/data/subvol-112-disk-0  8.0G  741M  7.3G  10% /rpool/data/subvol-112-disk-0
rpool/data/subvol-104-disk-0  8.0G  2.8G  5.3G  35% /rpool/data/subvol-104-disk-0
rpool/data/subvol-105-disk-0  4.0G  583M  3.5G  15% /rpool/data/subvol-105-disk-0
rpool/data/subvol-102-disk-0  8.0G  2.5G  5.6G  32% /rpool/data/subvol-102-disk-0
rpool/data/subvol-109-disk-0  3.0G  992M  2.1G  33% /rpool/data/subvol-109-disk-0
rpool/data/subvol-111-disk-0  8.0G  740M  7.3G  10% /rpool/data/subvol-111-disk-0
rpool/data/subvol-103-disk-0  2.0G  554M  1.5G  28% /rpool/data/subvol-103-disk-0
rpool/data/subvol-110-disk-0  8.0G  1.1G  7.0G  14% /rpool/data/subvol-110-disk-0
rpool/data/subvol-106-disk-0  4.0G  580M  3.5G  15% /rpool/data/subvol-106-disk-0
rpool/data/subvol-108-disk-0  8.0G 1005M  7.1G  13% /rpool/data/subvol-108-disk-0
rpool/data/subvol-600-disk-0  8.0G  293M  7.8G   4% /rpool/data/subvol-600-disk-0
/dev/fuse                     128M   24K  128M   1% /etc/pve
tmpfs                         1.6G     0  1.6G   0% /run/user/0
root@zachsplexserver:~# cat /etc/pve/storage.cfg
dir: local
        path /var/lib/vz
        content rootdir,images,iso,backup,snippets,vztmpl
        shared 0

zfspool: local-zfs
        pool rpool/data
        content rootdir,images
        sparse 1

dir: mediatv
        path /mnt/pve/mediatv
        content backup,vztmpl,snippets,iso,rootdir,images
        is_mountpoint 1
        nodes zachsplexserver

root@zachsplexserver:~# cat /etc/fstab
# <file system> <mount point> <type> <options> <dump> <pass>
Thisismy-uuid-aae5-115834bbba83 /media/tv ext4 defaults,noatime,nofail 0 0
root@zachsplexserver:~# pct config 105
arch: amd64
cores: 2
description: <div align='center'><a href='https%3A//Helper-Scripts.com' target='_blank' rel='noopener noreferrer'><img src='https%3A//raw.githubusercontent.com/tteck/Proxmox/main/misc/images/logo-81x112.png'/></a>%0A%0A  # Sonarr LXC%0A%0A  <a href='https%3A//ko-fi.com/D1D7EP4GF'><img src='https%3A//img.shields.io/badge/&#x2615;-Buy me a coffee-blue' /></a>%0A  </div>%0APort 8989%0A uid map%3A from uid 0 map 1005 uids (in the ct) to the range starting 100000 (on the host), so 0..1004 (ct) %E2%86%92 100000..101004 (host)%0A we map 1 uid starting from uid 1005 onto 1005, so 1005 %E2%86%92 1005%0A we map the rest of 65535 from 1006 upto 101006, so 1006..65535 %E2%86%92 101006..165535%0A
features: keyctl=1,nesting=1
hostname: sonarr
memory: 1024
mp0: /media/TV,mp=/media/TV
net0: name=eth0,bridge=vmbr1,hwaddr=BC:24:11:DA:69:80,ip=dhcp,type=veth
onboot: 1
ostype: debian
rootfs: local-zfs:subvol-105-disk-0,size=4G
swap: 512
tags: proxmox-helper-scripts
unprivileged: 1
lxc.idmap: u 0 100000 1005
lxc.idmap: g 0 100000 1005
lxc.idmap: u 1005 1005 1
lxc.idmap: g 1005 1005 1
lxc.idmap: u 1006 101006 64530
lxc.idmap: g 1006 101006 64530
 

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!