I installed Fedora 24 on my main drive, but later decided to install it on my solid state drive instead. After doing so, I tried to mount my main drive (after running cryptsetup), but this happened:
# lvrename /dev/fedora/home /dev/fedora/althome
Multiple VGs found with the same name: skipping fedora
Use the VG UUID with --select vg_uuid=<uuid>
# lvdisplay
: above lists my partitions uuids
# lvrename --select vg_uuid=my-vg-uuid /dev/fedora/home /dev/fedora/althome
lvrename: unrecognized option '--select'
Since the given instructions don't work, how do I resolve this?
lvm vgrename
instead of plainvgrename
. – koppor Jan 13 '19 at 00:04