Wednesday, May 1, 2024
 Popular · Latest · Hot · Upcoming
0
rated 0 times [  0] [ 0]  / answers: 1 / hits: 46733  / 3 Years ago, mon, july 5, 2021, 3:02:41

Ive been tearing my hair out for about a week now trying to figure out how to do this.



I have two HDD's in my server, both 250gig. They both have ubuntu installed, one is currently booted. I want to mount the second (old) drive to /mnt/external



If I mount through /dev/disk/by-uuid It just mounts the boot partition, and not my actual data.



I also tried vgs-v to determine, but the names are the same, and don't know where to go from here.



root@onlinelabtests:~# vgs -v
Finding all volume groups
Finding volume group "SysVolGroup"
Archiving volume group "SysVolGroup" metadata (seqno 3).
Archiving volume group "SysVolGroup" metadata (seqno 3).
Creating volume group backup "/etc/lvm/backup/SysVolGroup" (seqno 3).
Finding volume group "SysVolGroup"
Archiving volume group "SysVolGroup" metadata (seqno 3).
Archiving volume group "SysVolGroup" metadata (seqno 3).`
Creating volume group backup "/etc/lvm/backup/SysVolGroup" (seqno 3).
VG Attr Ext #PV #LV #SN VSize VFree VG UUID
SysVolGroup wz--n- 4.00m 1 2 0 233.72g 0 812dMv-qSf3-xnpP-khlB-mkIf-q64l-Z2Rawf
SysVolGroup wz--n- 4.00m 1 2 0 233.72g 0 Z3IbWM-FEvq-n6fs-lhm9-5uQq-mdxj-QNfDLJ


and this



root@onlinelabtests:~# vgchange -a y
2 logical volume(s) in volume group "SysVolGroup" now active
2 logical volume(s) in volume group "SysVolGroup" now active


But /dev/disk/by-uuid still doesnt show anything else.

Any help appreciated.


More From » mount

 Answers
7

Take a look at /dev/SysVolGroup and/or dev/mapper



ls /dev/SysVolGroup


Now mount the partitions listed there



sudo mkdir /media/LVM{1,2}
sudo mount /dev/SysVolGroup/first_lvm /media/LVM1
sudo mount /dev/SysVolGroup/second_lvm /media/LVM2


Please take care, Volume groups with the same name can cause problems, I would change the name of one of the two.


[#40025] Monday, July 5, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
vigorousom

Total Points: 394
Total Questions: 96
Total Answers: 110

Location: Pitcairn Islands
Member since Fri, Oct 15, 2021
3 Years ago
;