Skip to main content

Getting Access to a Seagate Central Hard Disk



  • List Available LVM Volume Groups
    • pvs


  • List what Logical Volumes exist inside the group
    • lvdisplay vg1   (enter the VG listed from the VG column from pvs) 


  • Mount normally, ie:
    • mount /dev/vg1/lv1 /mnt/disk
  •  However, if the block size is greater than 4KB, you'll need to use fuseext2, something like...
    • fuseext2 -o ro -o sync_read /dev/vg1/lv1 /mnt/disk

Comments

Popular posts from this blog