Displaying 3 results from an estimated 3 matches for "vg_f13x64".
2010 Jul 30
1
[PATCH] New API: is-lv: check if a block device is a logical volume (RHBZ#619793)
...Date: Fri, 30 Jul 2010 16:32:35 +0100
Subject: [PATCH] New API: is-lv: check if a block device is a logical volume (RHBZ#619793)
This adds a new API, guestfs_is_lv (g, device), which returns true iff
the named device is an LVM2 logical volume.
A sample guestfish session:
><fs> lvs
/dev/vg_f13x64/lv_root
/dev/vg_f13x64/lv_swap
><fs> list-devices
/dev/vda
><fs> list-partitions
/dev/vda1
/dev/vda2
><fs> is-lv /dev/vg_f13x64/lv_root
true
><fs> is-lv /dev/vg_f13x64/lv_swap
true
><fs> is-lv /dev/vda
false
><fs> is-lv /dev/vda1
false
><f...
2010 Nov 12
0
[PATCH] New APIs: inspect-get-package-format, inspect-get-package-management.
It's neat that you can now do:
$ guestfish -a F14x64.img -i \
inspect-get-package-management /dev/vg_f13x64/lv_root
yum
But it would be better if we didn't have to "know" the root
filesystem there, something like:
$ guestfish -a F14x64.img -i <<EOF
set roots inspect-get-roots
inspect-get-package-management %{roots[0]}
EOF
yum
I've not quite worked out what this wo...
2015 Jun 14
2
[PATCH] pod: Use F<> for filenames instead of C<>.
...e a regular emulated
serial port instead of virtio-serial.
diff --git a/df/virt-df.pod b/df/virt-df.pod
index 331f6fc..3f7fc3f 100644
--- a/df/virt-df.pod
+++ b/df/virt-df.pod
@@ -52,7 +52,7 @@ output human-readable:
F14x64:/dev/sda1 484M 66M 393M 14%
F14x64:/dev/vg_f13x64/lv_root 7.4G 3.4G 4.0G 46%
-Show disk usage for a disk image file called C<test.img>:
+Show disk usage for a disk image file called F<test.img>:
$ virt-df -a test1.img
Filesystem 1K-blocks Used Available Use%
@@ -129,12 +129,12 @@ For exampl...