I intend to pass multiple directories from the Proxmox host to a VM using the 99p protocol.
so i added this line to the xxx.conf file:
But in the VM it mounts only 'backup' and 'source2'. The kernel log displays:
Host is Proxmox 7.4-16
VM is Debian 12
Host has loaded the kernel modules 9p, 9pnet and 9pnet_virtio
VM has loaded the kernel modules 9p, 9pnet and 9pnet_virtio
fstab reads:
Any hints ?
so i added this line to the xxx.conf file:
Code:
args: -virtfs local,id=fsdev0,path=/backup,security_model=passthrough,mount_tag=backup -virtfs local,id=fsdev1,path=/source1,security_model=passthrough,mount_tag=source1 -virtfs local,id=fsdev2,path=/source2,security_model=passthrough,mount_tag=source2
But in the VM it mounts only 'backup' and 'source2'. The kernel log displays:
Code:
[ 3.592110] 9pnet_virtio: no channels available for device source1
Host is Proxmox 7.4-16
VM is Debian 12
Host has loaded the kernel modules 9p, 9pnet and 9pnet_virtio
VM has loaded the kernel modules 9p, 9pnet and 9pnet_virtio
fstab reads:
Code:
backup /test/backup 9p trans=virtio,rw,_netdev 0 0
source1 /test/source1 9p trans=virtio,rw,_netdev 0 0
source2 /test/source2 9p trans=virtio,rw,_netdev 0 0
Any hints ?