User Tools

Site Tools


command_line

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
command_line [2020/08/10 02:35]
127.0.0.1 external edit
command_line [2021/08/24 21:11]
k2patel
Line 152: Line 152:
  
 ==== Extract folder from KVM Guest Image ==== ==== Extract folder from KVM Guest Image ====
-This is appear ​to be far easy solution ​then i thought.\\+This appears ​to be the far easy solution ​than I thought.\\
 [[http://​libguestfs.org/​virt-copy-out.1.html|Link to official Document]] [[http://​libguestfs.org/​virt-copy-out.1.html|Link to official Document]]
  
-For RHEL you require following packages installed.+For RHEL you require ​the following packages installed.
   * libguestfs-tools   * libguestfs-tools
   * libguestfs-xfs ​ # if guest filesystem is XFS.   * libguestfs-xfs ​ # if guest filesystem is XFS.
Line 163: Line 163:
 virt-copy-out -a machine2.qcow2 /​metadata/​testing/​users test/ virt-copy-out -a machine2.qcow2 /​metadata/​testing/​users test/
 </​code>​ </​code>​
 +
 +==== 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
 +</​code>​
 +
 +List all the block devices, including newly scanned.
 +<code bash>
 +lsblk --fs
 +</​code>​
 +
 +Mounting the file system
 +<code bash>
 +mount /​dev/​loop0p2 /mnt/sdcard
 +</​code>​
 +
 +Once unmounted remove the lo drive.
 +<code bash>
 +losetup --detach-all
 +</​code>​
 +
 +
command_line.txt ยท Last modified: 2021/08/24 21:11 by k2patel