Can you show the output of fdisk -l /dev/hdb
[EMAIL PROTECTED] ~]# fdisk -v fdisk (util-linux 2.13-pre7) [EMAIL PROTECTED] ~]# fdisk -l /dev/hdb Disk /dev/hdb: 10.2 GB, 10242892800 bytes 16 heads, 63 sectors/track, 19846 cylinders Units = cylinders of 1008 * 512 = 516096 bytes Disk /dev/hdb doesn't contain a valid partition table [EMAIL PROTECTED] ~]#
Can you point out the steps you did in creating the LVM stuff?
# pvcreate /dev/hdb # vgcreate devel /dev/hdb # vgchange -a y devel # lvcreate -L12 -n alpha devel # lvcreate -L12 -n beta devel These were mainly taken (or learnt) from: http://www.tldp.org/HOWTO/LVM-HOWTO/commontask.html Please note that the logical volumes are behaving 'normally' since I am able to create files on them, and read them. Happy hacking, Debarshi -- Anything free is worth what you pay for it. _______________________________________________ bug-parted mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-parted
