#fdisk -l
/dev/sdb1 * 1 9702 77931283+ 8e Linux LVM
I tried the following command:
#mkdir /media/backup
#mount /dev/sdb1 /media/backup
mount: unknown file system 'LVM2_member'
How do I mount it?
|
feedback
|
|
I found the solution
| |||
|
feedback
|
|
You probably want to look at the *scan commands, pvscan, vgscan and lvscan. This will search for the various lvm components. If /dev/sdb1 is a physical volume that has a volume group with a logical volume, it should show up. If lvscan produces something like:
Then you can mount /dev/vg00/home as /home. | ||||
|
feedback
|
|
Did you create a filesystem on the new device? mkfs -j /dev/sdb1 or mkfs.ext3 /dev/sdb1 | |||||
feedback
|