Displaying 8 results from an estimated 8 matches for "pvchang".
Did you mean:
pvchange
2008 Mar 05
1
LVM: how do I change the UUID of a LV?
I know how to change the UUID of Physical Volumes and Volume Groups, but
when I try to do the same for a Logical Volume, lvchange complains that
"--uuid" is not an option. Here is how I've been changing the others
(note that "--uuid" does not appear in the man pages for pvchange and
vgchange for lvm2-2.02.26-3.el5):
pvchange --uuid {pv dev}
vgchange --uuid {vg name}
Any suggestions? I'm pretty much open to any arcane/convoluted
procedure, but I refrain from copying the data to a temp place so I can
re-create the LV as that would add too much work and would kinda de...
2012 Apr 22
1
problems with PV snapshots
Hello,
I have a Centos 6.2 clsuter with a CLVM partition on which I have a GFS2
file system.
The problem rises when I make a snapshot from my FC NetAPP FAS2020.
After I make the snapshot (it is a rw snapshot) of my LUN, I am not able
to mount it from any of my cluster nodes,
because the Physical Volume is seen two times one time on the standard
LVM partition
and the other time on the snapshot
2012 Aug 30
2
[PATCH v2] daemon: collect list of called external commands
..., &err, "lvm", "vgcfgbackup", "-f", tmp, vg, NULL);
+ r = command (NULL, &err, str_lvm, "vgcfgbackup", "-f", tmp, vg, NULL);
if (r == -1) {
reply_with_error ("vgcfgbackup: %s", err);
free (err);
@@ -968,7 +970,7 @@ do_pvchange_uuid (const char *device)
int r;
r = command (NULL, &err,
- "lvm", "pvchange", "-u", device, NULL);
+ str_lvm, "pvchange", "-u", device, NULL);
if (r == -1) {
reply_with_error ("%s: %s", dev...
2012 Aug 30
1
[PATCH] collect list of called external commands
..., &err, "lvm", "vgcfgbackup", "-f", tmp, vg, NULL);
+ r = command (NULL, &err, str_lvm, "vgcfgbackup", "-f", tmp, vg, NULL);
if (r == -1) {
reply_with_error ("vgcfgbackup: %s", err);
free (err);
@@ -968,7 +970,7 @@ do_pvchange_uuid (const char *device)
int r;
r = command (NULL, &err,
- "lvm", "pvchange", "-u", device, NULL);
+ str_lvm, "pvchange", "-u", device, NULL);
if (r == -1) {
reply_with_error ("%s: %s", dev...
2017 Jul 27
0
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
...amp;err, str_lvm, "vgcfgbackup", "-f", tmp, vg, NULL);
+ r = command (NULL, &err, "lvm", "vgcfgbackup", "-f", tmp, vg, NULL);
if (r == -1) {
reply_with_error ("vgcfgbackup: %s", err);
return NULL;
@@ -1056,7 +1054,7 @@ do_pvchange_uuid (const char *device)
int r;
r = command (NULL, &err,
- str_lvm, "pvchange", "-u", device, NULL);
+ "lvm", "pvchange", "-u", device, NULL);
if (r == -1) {
reply_with_error ("%s: %s", dev...
2017 Jul 24
0
[PATCH 2/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
...amp;err, str_lvm, "vgcfgbackup", "-f", tmp, vg, NULL);
+ r = command (NULL, &err, "lvm", "vgcfgbackup", "-f", tmp, vg, NULL);
if (r == -1) {
reply_with_error ("vgcfgbackup: %s", err);
return NULL;
@@ -1056,7 +1056,7 @@ do_pvchange_uuid (const char *device)
int r;
r = command (NULL, &err,
- str_lvm, "pvchange", "-u", device, NULL);
+ "lvm", "pvchange", "-u", device, NULL);
if (r == -1) {
reply_with_error ("%s: %s", dev...
2017 Jul 27
3
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
This is a simpler patch that removes GUESTFSD_EXT_CMD completely.
2017 Jul 24
6
[PATCH 0/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
Replace GUESTFSD_EXT_CMD with a command line option
‘./guestfsd --print-external-commands’