Okay I couldn't figure out how to rename the volume group when two shared the same name in a system, so I moved the hard drive from the USB back into its original system, then I booted with a rescue disk. Make sure to choose SKIP when it says it will find Linux installations, you want the logical volumes to be inactive so the volume group can be renamed so don't let it mount it. Then I these steps which I found in a previous post (
http://www.linuxquestions.org/questi...o-do-375928/):
lvm vgscan
lvm lvscan
lvm vgchange -a y
lvm pvscan
lvm lvscan
lvm vgchange -a n
lvm vgrename VolGroup00 VolGroup11
Then I put the disk back in my other system as a USB drive, I did these steps to mount it:
[root@localhost ~]# vgscan
Reading all physical volumes. This may take a while...
Found volume group "VolGroup11" using metadata type lvm2
Found volume group "VolGroup00" using metadata type lvm2
[root@localhost ~]# lvscan
inactive '/dev/VolGroup11/LogVol00' [463.72 GB] inherit
inactive '/dev/VolGroup11/LogVol01' [1.94 GB] inherit
ACTIVE '/dev/VolGroup00/LogVol00' [463.72 GB] inherit
ACTIVE '/dev/VolGroup00/LogVol01' [1.94 GB] inherit
[root@localhost ~]# vgchange -a y
2 logical volume(s) in volume group "VolGroup11" now active
2 logical volume(s) in volume group "VolGroup00" now active
[root@localhost ~]# pvscan
PV /dev/sdb2 VG VolGroup11 lvm2 [465.66 GB / 0 free]
PV /dev/sda2 VG VolGroup00 lvm2 [465.66 GB / 0 free]
Total: 2 [931.31 GB] / in use: 2 [931.31 GB] / in no VG: 0 [0 ]
[root@localhost ~]# mount -t ext3 /dev/mapper/VolGroup11-LogVol00 /mnt/externaldisk/