Search results

  1. N

    [SOLVED] [REGRESSION] Internal error bad disk name trying to assign an iso on btrfs storage on a dvd drive

    You don't even need to enable that repository. I just downloaded the updated package and installed it with apt. wget http://download.proxmox.com/debian/pve/dists/bookworm/pvetest/binary-amd64/libpve-storage-perl_8.3.2_all.deb
  2. N

    [SOLVED] [REGRESSION] Internal error bad disk name trying to assign an iso on btrfs storage on a dvd drive

    I downloaded and installed libpve-storage-perl 8.3.2 directly from pvetest. I can confirm that this resolved the issue for me. I am able to create new lxc containers with templates that are in my local-btrfs.
  3. N

    [SOLVED] [REGRESSION] Internal error bad disk name trying to assign an iso on btrfs storage on a dvd drive

    I also encountered this error when trying to use container images on btrfs storage internal error: bad disk name: debian-12-standard_12.2-1_amd64.tar.zst at /usr/share/perl5/PVE/Storage/BTRFSPlugin.pm: 200 (500) apt-cache policy libpve-storage-perl shows the latest version available to me at...
  4. N

    NFS container feature option?

    I have a privileged container that I installed nfs-common and mounted NFS shares via the /etc/fstab. It seems to be working fine. Today I noticed this NFS feature under options. what is this for?
  5. N

    Opt-in Linux 6.1 Kernel for Proxmox VE 7.x available

    Thanks that was it. The only reason I need that is for nvidia and dkms. Do I actually need the nvidia drivers installed on the host, or can I just install them on the guest and use GPU passthrough? I'm thinking I can remove the nvidia driver from the proxmox host and still use the nvidia driver...
  6. N

    Opt-in Linux 6.1 Kernel for Proxmox VE 7.x available

    After running `apt install pve-kernel-6.1` I receive the message: dkms: running auto installation service for kernel 6.1.10-1-pve:Error! Your kernel headers for kernel 6.1.10-1-pve cannot be found. Please install the linux-headers-6.1.10-1-pve packag I tried to install it with apt install but...
  7. N

    Priviledge Container: disabling apparmor does not work

    I'd like to know what changed. all my docker containers stopped running until I added --security-opt apparmor:unconfined to each of them.
  8. N

    Can't create container in ZFS storage pool

    whoops! my mistake. I was looking at the 2nd tab, which was the template storage location. Once I advanced to third tab, I was able to select the ZFS pool for storage. I appreciate your assistance.
  9. N

    Can't create container in ZFS storage pool

    Thank you for your reply. my ZFS pool is already listed there. I have attached a picture showing the ZFS pool listed there, but i'm still not able to store my disk images or containers there. Is there supposed to be something listed in Path/Target?
  10. N

    Can't create container in ZFS storage pool

    my boot drive is a mirrored btrfs filesystem. Additionally, I manually created created a raidz2 ZFS pool from the command line, which I can see in the Proxmox web GUI interface. How can I tell Proxmox that I can use this ZFS pool for VMor LXC storage? I can choose to create new LXC containers...
  11. N

    [SOLVED] Join Cluster failed IP not found on local node

    I solved the issue. Initially when I installed Proxmox on PVE2, I had used the IP address 192.168.2.11 but then quickly realized that IP was already in use. I subsequently changed it to 192.168.2.12 but it still had my hostname pve2 set to the old IP address in /etc/hosts. Once I fixed my...
  12. N

    [SOLVED] Join Cluster failed IP not found on local node

    Hello, I created a cluster on PVE1, and I'm trying to join PVE2 to it. PVE1: eno1 (Ethernet connected to gigabit switch) enp4s0f0 (fiber directly connected to PVE2) vmbr0 192.168.2.10/24 (port eno1) vmbr1 10.100.0.2/29 (port enp4s0f0) PVE2: eno1 (Ethernet connected to gigabit switch) enp4s0f1...
  13. N

    Replacing a drive that was set with pct set

    Hello, In my /etc/fstab I have a physical hard disk mounted as /data that I am giving direct access to a container. Originally I used the command: pct set 100 -mp0 mp=/data,/data Now I would like to replace the drive. What changes do I need to make? I'm guessing that all I have to do is...
  14. N

    [SOLVED] NFS Server on Proxmox Host

    I'm trying to share a directory on the proxmox server via NFS to other clients on the network and to virtual machine clients on Proxmox. drive to be shared /dev/sdb1 mounted on /data in /etc/fstab: /data /srv/nfs4/data none bind 0 0 in /etc/exports: /srv/nfs4...