Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 12
Hi guys, I tried to mount a external hard disk.But when i try to mount the disk, it shows an error 'UNKNOWN FILE SYSTEM LVM_2'.But when the device is present ...
  1. #1
    Just Joined!
    Join Date
    Jul 2009
    Posts
    3

    Mounting a hard disk

    Hi guys,

    I tried to mount a external hard disk.But when i try to mount the disk, it shows an error 'UNKNOWN FILE SYSTEM LVM_2'.But when the device is present in /dev directory.

  2. #2
    Linux Engineer RobinVossen's Avatar
    Join Date
    Aug 2007
    Location
    The Netherlands
    Posts
    1,422
    Your trying to mount an Logical Volume as an Partition.
    This will help:
    Mounting a Linux LVM volume
    New Users, please read this..
    Google first, then ask..

  3. #3
    Just Joined!
    Join Date
    Jul 2009
    Posts
    3
    Can you just explain it in brief.

  4. #4
    Just Joined!
    Join Date
    Jun 2009
    Posts
    27
    tried to mount a external hard disk.But when i try to mount the disk, it shows an error 'UNKNOWN FILE SYSTEM LVM_2'.
    Did you do this manually? Post the command string you used.

    Have a look at this guide:

    brandonhutchinson.com/Mounting_a_Linux_LVM_volume.html

  5. #5
    Just Joined!
    Join Date
    Jul 2009
    Posts
    3
    Quote Originally Posted by deano_ferrari View Post
    Did you do this manually? Post the command string you used.

    Have a look at this guide:

    brandonhutchinson.com/Mounting_a_Linux_LVM_volume.html

    Yes, it was done manually using mount command.

  6. #6
    Just Joined!
    Join Date
    Jun 2009
    Posts
    27
    Since you haven't posted any info as asked, its not easy to guide you any further...

  7. #7
    Just Joined!
    Join Date
    Aug 2008
    Location
    Wales
    Posts
    15
    As there is no further info here could I take on this thread. I have just loaded Suse 11.1 and it won't mount my external hard drive. There are 4 partitions and formated NTFS. I really need to get to that information urgently. My Windows just kept collapsing which was a WinXP 32bit on a new 64bit comp and it just seemed to be stable. Suse at this present time seems to be the only stable Linux OS I have had on here.

    Thats besides the point really I am rambling. I have tried to access a root file fstab as I was told to do in Dolphiine but it just won't allow me to adjust or add to the script.
    /dev/sdg4/media/disk ntfs-3g force 0 0
    Have you any advice how else I can tackle this as everything else seems to be brilliant - touch wood. Which is not what I normally say!!

    Tony

  8. #8
    Just Joined!
    Join Date
    Jun 2009
    Posts
    27
    External dirves do not require fstab entries to mount. This is done by hal/udev/desktop. The external partitions should mount in /media directory. Have a look with Dolphin.

    Additionally, from a console, type 'mount' to see all mounted partitions (including the hal-mounted ones).

  9. #9
    Linux Guru
    Join Date
    Jan 2009
    Location
    Dover, NH
    Posts
    1,633
    I agree that you should not need a fstab entry for an external drive. Though, you might need to force a partition that was not unmounted cleanly, as HAL may refuse to do this on its own. This can be done at the command line. To list available partitions, use fdisk (as the superuser/root)...

    fdisk -l

    (that's FDISK -L in lower case)
    After you know what partition you are trying to mount, you can use ntfs-3g to gain access to the drive (this is what mount should be calling anyway).
    Simply type mount to see if it's already mounted and where. If not, then try this...

    mkdir /media/ntfs1

    ntfs-3g /dev/(device) /media/ntfs1 -o force,rw,umask=0


    That should give you full access to that partition... repeat with other partitions as necessary. Remember to manually umount the partitions before unplugging the drive.

  10. #10
    Linux Engineer RobinVossen's Avatar
    Join Date
    Aug 2007
    Location
    The Netherlands
    Posts
    1,422
    Quote Originally Posted by deano_ferrari View Post
    Did you do this manually? Post the command string you used.

    Have a look at this guide:

    brandonhutchinson.com/Mounting_a_Linux_LVM_volume.html

    You posted exactly the same Guide as I did..
    Kinda pointless
    New Users, please read this..
    Google first, then ask..

Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...