A PCRE internal error occured. This might be caused by a faulty plugin

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
tricks:mount-lvm [2016/06/08 18:33]
admin [Activating the Volume Group]
tricks:mount-lvm [2016/06/08 18:36]
admin [Renaming a Volume Group]
Line 29: Line 29:
  
 ===== Renaming a Volume Group ====== ===== Renaming a Volume Group ======
-In case the volume group standing on the external disk has the same name as your internal one, you won't be able to access both at the same time. In this situation first eject the external device, then rename your internal volume group (here vg00) before reconnecting the external one:+In case the volume group standing on the external disk has the same name as your internal one, you won't be able to access both at the same time. In this situation first eject the external device, then rename your internal volume group (here vg00):
  
 <​Code:​bash>​ <​Code:​bash>​
 > sudo vgscan > sudo vgscan
-> sudo vgchange -an+> sudo vgchange -a n
 > vgrename vg00 vg01 > vgrename vg00 vg01
 +</​Code>​
 +
 +Then reconnect the external device and issue:
 +<​Code:​bash>​
 +> sudo vgscan
 +> sudo vgchange -a y
 </​Code>​ </​Code>​