Changes between Version 5 and Version 6 of KVM
- Timestamp:
- 03/29/16 18:35:13 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
KVM
v5 v6 45 45 }}} 46 46 47 == Attach Disk == 48 49 {{{ 50 51 ## RAW (vdb) 52 qemu-img create -f raw /opt/kvm/test101-vdb.raw 200G 53 virsh attach-disk --domain test101 --source /opt/kvm/test101-vdb.raw --target vdb --persistent 54 55 ## QCOW2 (vdc) 56 qemu-img create -f qcow2 /opt/kvm/test101-vdc.qcow2 200G 57 virsh attach-disk test101 /opt/kvm/test101-vdc.qcow2 vdc --persistent --driver qemu --subdriver qcow2 58 59 }}}