mirror of
https://github.com/tiyn/wiki.git
synced 2025-04-17 05:27:46 +02:00
1.1 KiB
1.1 KiB
Proxmox
Proxmox is an environment for virtual machines and containers.
Disk Management
Enlarging disk of a VM
SSH into Proxmox. Enlarge a disk by using:
qm resize <vmid> <vm-disk-to-enlarge> <size>
For example:
qm resize 100 ide0 +100G
After that grow the filesystem as described in the disk-management article.
qm resize 100 ide0 +100G
VM passthrough
USB passthrough
On the host system find the usb you're looking to pass through with
lsusb
Then assign it to the vm using
qm set <vm-id> -usb<id-to-set> host=<id-of-the-usb>
for example
qm set 101 -usb0 host=aaaa:8816
PCI/GPU passthrough
To use GPUs or other PCI devices you need to work with PCI passthrough. For documentation you can look in the Proxmox wiki. There is also an article on reddit, that focusses especially on windows 10 VMs with GPU passthrough.