command_line
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
command_line [2011/06/02 16:27] – k2patel | command_line [2021/08/24 21:11] (current) – k2patel | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | |||
+ | |||
====== KVM Command Line ====== | ====== KVM Command Line ====== | ||
Line 29: | Line 31: | ||
[[http:// | [[http:// | ||
+ | |||
+ | ==== Test your bootable USB on kvm ==== | ||
+ | In order to test your USB using KVM use following command. | ||
+ | <code bash> | ||
+ | qemu-kvm -hdb < | ||
+ | </ | ||
+ | In my case device was "/ | ||
==== Converting Existing Image ==== | ==== Converting Existing Image ==== | ||
=== Converting VMWARE image for KVM === | === Converting VMWARE image for KVM === | ||
+ | |||
use following command. | use following command. | ||
<code bash> | <code bash> | ||
Line 48: | Line 58: | ||
</ | </ | ||
- | Now use | + | converting .ova is just easy\\ |
+ | some times ovftool failing\\ | ||
+ | |||
+ | < | ||
+ | <span style=" | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | Now follow [[ #Converting VMWARE image for KVM | Converting VMWARE image for KVM ]] | ||
==== Create New KVM Guest using existing Image ==== | ==== Create New KVM Guest using existing Image ==== | ||
Line 112: | Line 131: | ||
detach-interface Detach a network interface from a guest. | detach-interface Detach a network interface from a guest. | ||
</ | </ | ||
+ | |||
+ | ==== FU Commands ==== | ||
+ | |||
+ | === Create Disk === | ||
+ | create disk of size 10G | ||
+ | <code bash | for dynamic allocation> | ||
+ | qemu-img create -f raw vdisk.img 10G | ||
+ | </ | ||
+ | OR | ||
+ | <code bash | preallowcation> | ||
+ | dd if=/ | ||
+ | </ | ||
+ | |||
+ | ==== How to allow network access to KVM Guest ==== | ||
+ | |||
+ | Modify guest.xml file and listen variable. | ||
+ | <code bash | vi / | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | ==== Extract folder from KVM Guest Image ==== | ||
+ | This appears to be the far easy solution than I thought.\\ | ||
+ | [[http:// | ||
+ | |||
+ | For RHEL you require the following packages installed. | ||
+ | * libguestfs-tools | ||
+ | * libguestfs-xfs | ||
+ | |||
+ | <code bash> | ||
+ | mkdir test | ||
+ | virt-copy-out -a machine2.qcow2 / | ||
+ | </ | ||
+ | |||
+ | ==== Image File explorer ==== | ||
+ | This is a simple way to extract or access files.\\ | ||
+ | Scan and assign the dev node. | ||
+ | <code bash> | ||
+ | losetup --partscan --find --show sdcard.img | ||
+ | </ | ||
+ | |||
+ | List all the block devices, including newly scanned. | ||
+ | <code bash> | ||
+ | lsblk --fs | ||
+ | </ | ||
+ | |||
+ | Mounting the file system | ||
+ | <code bash> | ||
+ | mount / | ||
+ | </ | ||
+ | |||
+ | Once unmounted remove the lo drive. | ||
+ | <code bash> | ||
+ | losetup --detach-all | ||
+ | </ | ||
+ | |||
command_line.1307032063.txt.gz · Last modified: 2020/08/10 02:28 (external edit)