This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| computing:virtmanagerhell [2026/03/14 00:38] – oemb1905 | computing:virtmanagerhell [2026/04/05 00:45] (current) – oemb1905 | ||
|---|---|---|---|
| Line 7: | Line 7: | ||
| ------------------------------------------- | ------------------------------------------- | ||
| - | To make a VM from the command line, do the following. Note that this recipe assumes you have already created your virtual switch, br0. It also presumes you have already created your virtual disk, and if you have not, simply run '' | + | To make a VM from the command line, do the following. Note that this recipe assumes you have already created your virtual switch, br0. It also presumes you have already created your virtual disk, and if you have not, simply run '' |
| sudo virt-install --name=new.img \ | sudo virt-install --name=new.img \ | ||
| Line 18: | Line 18: | ||
| --location=/ | --location=/ | ||
| --network bridge:br0 | --network bridge:br0 | ||
| + | |||
| + | Here's a more complex block, that enables trim on vdd, uses a preseed.cfg file to automate install, establishes a custom vnet name, enables the guest agent, and opens a terminal/ | ||
| + | |||
| + | virt-install --name=domain.com.qcow2 \ | ||
| + | --os-variant=debian12 \ | ||
| + | --vcpu=2 \ | ||
| + | --memory 4096 \ | ||
| + | --disk path=/ | ||
| + | --check path_in_use=off \ | ||
| + | --graphics none \ | ||
| + | --location=/ | ||
| + | --network bridge: | ||
| + | --channel unix, | ||
| + | --initrd-inject=/ | ||
| + | --extra-args=" | ||
| To clone an existing image, do the following: | To clone an existing image, do the following: | ||
| Line 227: | Line 242: | ||
| newgrp kvm | newgrp kvm | ||
| - | --- // | + | Add network interface as custom name for easy tracking: |
| + | |||
| + | < | ||
| + | virsh edit domain.com.qcow2 | ||
| + | |||
| + | < | ||
| + | <mac address=' | ||
| + | <source bridge=' | ||
| + | <target dev=' | ||
| + | <model type=' | ||
| + | <address type=' | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | Make sure that Cockpit can access a terminal: | ||
| + | |||
| + | < | ||
| + | virsh edit domain.com.qcow2 | ||
| + | < | ||
| + | <listen type=' | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | If you don't have video enabled, do the following (also needed for Cockpit Terminal rendering): | ||
| + | |||
| + | Option 1 (cirrus): | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | Option 2 (qxl) | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | Option 3 (use commands) | ||
| + | virt-xml domain.com.qcow2 --add-device --graphics vnc, | ||
| + | virt-xml domain.com.qcow2 --add-device --video qxl | ||
| + | virsh reboot domain.com.qcow2 | ||
| + | |||
| + | Add virtiofs mount point. Here's two, note the staggered bus entry of '' | ||
| + | |||
| + | < | ||
| + | < | ||
| + | <driver type=' | ||
| + | <source dir='/ | ||
| + | <target dir=' | ||
| + | <address type=' | ||
| + | </ | ||
| + | < | ||
| + | <driver type=' | ||
| + | <source dir='/ | ||
| + | <target dir=' | ||
| + | <address type=' | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | Then, inside the VM: | ||
| + | |||
| + | mkdir -p / | ||
| + | mkdir -p / | ||
| + | nano / | ||
| + | support1 | ||
| + | support2 | ||
| + | |||
| + | If you find '' | ||
| + | |||
| + | sudo systemctl enable serial-getty@ttyS0.service | ||
| + | sudo systemctl start serial-getty@ttyS0.service | ||
| + | |||
| + | Migrating an existing VDD and virsh instance ... just dump or copy paste the .xml with '' | ||
| + | |||
| + | virsh define host.com.xml | ||
| + | virsh start host.com | ||
| + | |||
| + | You should for sure check the network interface and MAC address, the storage location directory, and obviously run through anything else that might be different on the target migration host. | ||
| + | |||
| + | --- // | ||