Recover data off LVM hard drive with USB Adapter
When a machine dies, how do you recover the data. Boot up a Linux VM and pass thru the USB drive. It wasn’t showing up when looking at it. Turns out you need to tell the system about it.
1
2
3
4
5
6
lvmdevices --add-dev=/dev/sda3
vgscan
lvscan
vgchange -ay
mkdir /mnt/folder
mount /dev/rl/folder /mnt/folder
This post is licensed under
CC BY 4.0
by the author.