Results 1 to 2 of 2

Thread: problems with lvm automount via fstab

  1. #1
    Join Date
    Jan 2010
    Location
    Colorado
    Beans
    72
    Distro
    Ubuntu 10.04 Lucid Lynx

    problems with lvm automount via fstab

    Hello,

    I need help mounting an lvm partition at boot. I've done this a thousand times, but for some reason I'm doing something wrong...

    I can mount the partition directly:

    Code:
    root@chef1:~# mount /dev/mapper/VolGroup00-lv--opt /opt/
    root@chef1:~# mount | grep opt
    /dev/mapper/VolGroup00-lv--opt on /opt type ext4 (rw)
    root@chef1:~# umount /opt 
    root@chef1:~# mount /dev/VolGroup00/lv-opt /opt/
    root@chef1:~# mount | grep opt
    /dev/mapper/VolGroup00-lv--opt on /opt type ext4 (rw)
    root@chef1:~# umount /opt
    But when I attempt to mount via `mount /opt`, or at boot time, I get an error:

    Code:
    root@chef1:~# mount /opt
    mount: wrong fs type, bad option, bad superblock on /dev/mapper/VolGroup00-lv--opt,
           missing codepage or helper program, or other error
           In some cases useful info is found in syslog - try
           dmesg | tail  or so
    Here is my fstab, the commented out lines are other failed iterations I've attempted:

    Code:
    # /etc/fstab: static file system information.
    #
    # Use 'blkid' to print the universally unique identifier for a
    # device; this may be used with UUID= as a more robust way to name devices
    # that works even if disks are added and removed. See fstab(5).
    #
    # <file system> <mount point>   <type>  <options>       <dump>  <pass>
    # / was on /dev/sda1 during installation
    UUID=4e86f9a9-b9af-4259-8c37-d17540400d70 /               ext4    errors=remount-ro 0       1
    /dev/mapper/VolGroup00-lv--opt /opt     ext4    error=remount-ro        0       2
    
    
    # failed iterations
    #/dev/VolGroup00/lv-opt /opt    ext4    default 0       2
    #/dev/VolGroup00/lv-opt /opt    ext4    default 1       2
    #/dev/VolGroup00/lv-opt /opt    ext4    error=remount-ro        0       2
    #/dev/mapper/VolGroup00-lv--opt /opt    ext4    default 0       2
    #/dev/mapper/VolGroup00-lv--opt /opt    ext4    default 1       2
    What am I doing wrong?

    Thanks, I appreciate the assistance.

    EDIT: IF it makes a difference, Ubuntu 13.10 x86_64

    Code:
    root@chef1:~# lsb_release -a
    No LSB modules are available.
    Distributor ID: Ubuntu
    Description:    Ubuntu 13.10
    Release:        13.10
    Codename:       saucy
    root@chef1:~# uname -a
    Linux chef1 3.11.0-14-generic #21-Ubuntu SMP Tue Nov 12 17:04:55 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
    Last edited by PyrexKidd; January 16th, 2014 at 07:32 AM. Reason: add os details

  2. #2
    Join Date
    Jan 2010
    Location
    Colorado
    Beans
    72
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: problems with lvm automount via fstab

    "defaults" not "default"

Tags for this Thread

Bookmarks

Posting Permissions

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