Results 1 to 4 of 4
Hi all,
Here is our scenario, we installed OEL 5.5 on a new HP Proliat server after which, we ADDED a hard disk which was previously used as a primary ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 09-05-2012 #1Just Joined!
- Join Date
- Sep 2012
- Posts
- 1
Problem in mounting a Linux LVM
Hi all,
Here is our scenario, we installed OEL 5.5 on a new HP Proliat server after which, we ADDED a hard disk which was previously used as a primary hard disk with installed linux. After boot, we wanted to mount an fs from this hard disk so we tried: fsdisk -l
the result was:
fdisk.jpg
the fs we want to mount is /dev/sdc3 which is a Linux LVM, we followed a guide on how to properly mount a LVM and these were the results:
pvs.jpg
lvdisplay.jpg
but after mounting the desired fs '/dev/lvsystem/lvorcl' we get this error:
mount.jpg
Could you help me with this? I am a beginner in linux administration so I am completely oblivious on what to do.
Thanks very much!
- 09-06-2012 #2Linux Newbie
- Join Date
- Jun 2012
- Location
- SF Bay area
- Posts
- 101
I've never used Oracle Linux so I can't help much here. But if you get stuck and need some option to recover the data, even if it's not the best choice, here's a suggestion. You could boot off the old Linux disk, which should mount the LVM, then copy the data you need to an external USB connected drive. Then once you have saved everything you need that old disk can be repartitioned as appropriate, which will wipe out the old LVM.
- 09-24-2012 #3Just Joined!
- Join Date
- Sep 2012
- Posts
- 5
Before mounting logical volume you have to format the logical volume with appropriate file system. Since your error message is wrong file system type, the logical volume is not formatted with appropriate file system. To check the file system type use
. If it's not the supported file format use this to format your logical volumeCode:parted /dev/sdc print
I don't know ext4 will support OEL 5.5. So replace ext4 with your OS file system.Code:mkfs.ext4 /dev/lvsystem/lvorcl
- 09-24-2012 #4Linux Newbie
- Join Date
- Jun 2012
- Location
- SF Bay area
- Posts
- 101


Reply With Quote

