it may be a bad title, but I don't know how else to describe it.
So I have a Ubuntu Server VM on Proxmox and I want to passthrough some drives (as passing through a directory does nto work afaik). I used
to do so. I then mounted it in the guest by putting
info the fstab and running
Now to the part i dont understand. If I create a folder on that drive in the VM, it also appears on the host, but it takes a minute. Is it normal, that it takes so long? And when the host created a folder on that drives it only appears on the host, not on the VM. Why is that? And last, but not least: If the host deleted the folder created by the VM it disappears for the host, but reappears some time later. Also for the VM the folder never disappears.
Is all that behaviour normal? What I want is basically a container bind mount, but for VMs
So I have a Ubuntu Server VM on Proxmox and I want to passthrough some drives (as passing through a directory does nto work afaik). I used
Code:
sudo qm set 105 -scsi2 /dev/sdb1
Code:
/dev/sdb /mnt/festplatte1 ext4 defaults 0 0
mount -a
. The drive is also mounted on the host.Now to the part i dont understand. If I create a folder on that drive in the VM, it also appears on the host, but it takes a minute. Is it normal, that it takes so long? And when the host created a folder on that drives it only appears on the host, not on the VM. Why is that? And last, but not least: If the host deleted the folder created by the VM it disappears for the host, but reappears some time later. Also for the VM the folder never disappears.
Is all that behaviour normal? What I want is basically a container bind mount, but for VMs