Results 1 to 9 of 9

Thread: me vs fstab, again.

  1. #1
    Join Date
    Feb 2007
    Beans
    176
    Distro
    Ubuntu 7.04 Feisty Fawn

    me vs fstab, again.

    fstab has never been my friend. I had it working before upgrading to hardy yesterday, but now it is broken again. I have 4 sata disks and 1 ide disk, no raid setup.

    The IDE drive is not detected. It is divided into a small ext3 partition and a larger ntfs partition, and I see the drive in hardware info and in fstab -l, but it refuses to mount. Can anyone see anything wrong with my settings and help me out?

    Many thanks in advance

    mount -a
    Code:
    ntfs-3g: Failed to access volume '/dev/sde1': No such file or directory
    Please type '/sbin/mount.ntfs-3g --help' for more information.
    mount: special device /dev/sde2 does not exist
    fdisk -l
    Code:
    Disk /dev/sda: 200.0 GB, 200049647616 bytes
    255 heads, 63 sectors/track, 24321 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x4281598f
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/sda1   *           1       24321   195358401    7  HPFS/NTFS
    
    Disk /dev/sdb: 250.0 GB, 250059350016 bytes
    255 heads, 63 sectors/track, 30401 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x2ed3efcc
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/sdb1   *           1       17653   141797691    7  HPFS/NTFS
    /dev/sdb2           17654       30401   102398310    7  HPFS/NTFS
    
    Disk /dev/sdc: 250.0 GB, 250059350016 bytes
    255 heads, 63 sectors/track, 30401 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x2ed3efcb
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/sdc1   *           1       30401   244196001   83  Linux
    
    Disk /dev/sdd: 320.0 GB, 320072933376 bytes
    255 heads, 63 sectors/track, 38913 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0xdafb2e26
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/sdd1   *           1       38536   309540388+  83  Linux
    /dev/sdd2           38537       38913     3028252+   5  Extended
    /dev/sdd5           38537       38913     3028221   82  Linux swap / Solaris
    
    Disk /dev/sde: 200.0 GB, 200049647616 bytes
    255 heads, 63 sectors/track, 24321 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0xfb9133b2
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/sde1   *           1       21150   169887343+   7  HPFS/NTFS
    /dev/sde2           21151       24321    25471057+  83  Linux
    /etc/fstab
    Code:
    # /etc/fstab: static file system information.
    #
    # <file system> <mount point>   <type>  <options>       <dump>  <pass>
    proc            /proc           proc    defaults        0       0
    # /dev/sdd1
    UUID=89fde227-e9fe-4326-931c-5123da4aff53 /               ext3    defaults,errors=remount-ro 0       1
    # /dev/sdd5
    UUID=40c75d2d-713e-408c-8f77-85eea121f861 none            swap    sw              0       0
    /dev/scd0       /media/cdrom0   udf,iso9660 user,noauto,exec 0       0
    /dev/fd0        /media/floppy0  auto    rw,user,noauto,exec 0       0
    
    /dev/sde1	/media/Serenity ntfs-3g defaults,locale=en_GB.UTF-8 0 0
    /dev/sde2	/media/f248 ext3 defaults 0 0
    /dev/sda1	/media/Graendal ntfs-3g defaults,locale=en_GB.UTF-8 0 0
    /dev/sdb1	/media/Habu ntfs-3g defaults,locale=en_GB.UTF-8 0 0
    /dev/sdb2	/media/Ohabu ntfs-3g defaults,locale=en_GB.UTF-8 0 0
    /dev/sdc1	/media/River ext3 defaults 0 0
    Against TCPA | Hell, it's about time! | FORZA FERRARI
    Almost Sober tour 2008

  2. #2
    Join Date
    May 2008
    Location
    Arad, Romania
    Beans
    821
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: me vs fstab, again.

    Have you tried installing ntgs-config?It will mount your hard-drives automatically at start-up.
    Here's a link:
    http://www.ubuntugeek.com/widows-ntf...tu-feisty.html
    Cheers!

  3. #3
    Join Date
    Jun 2007
    Location
    Bombay,India
    Beans
    1,579
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: me vs fstab, again.

    Was the command you used
    Code:
    ntfs-3g /dev/sde1 /media/Serenity
    Last edited by meindian523; July 7th, 2008 at 01:48 PM.

  4. #4
    Join Date
    Feb 2007
    Beans
    176
    Distro
    Ubuntu 7.04 Feisty Fawn

    Re: me vs fstab, again.

    Quote Originally Posted by meindian523 View Post
    Was the command you used
    Code:
    ntfs-3g /dev/sde1 /media/Serenity
    Yes, I tried that. Still getting the not found error. Its puzzling me because fdisk tells me its sde1, but when I try to mount it tells me no such file or directory. Same error as I posted above.
    Against TCPA | Hell, it's about time! | FORZA FERRARI
    Almost Sober tour 2008

  5. #5
    Join Date
    Jun 2006
    Location
    Switzerland
    Beans
    Hidden!
    Distro
    Kubuntu Jaunty Jackalope (testing)

    Re: me vs fstab, again.

    try the use the UUID instead

    Code:
    ls -al /dev/disk/by-uuid

  6. #6
    Join Date
    Feb 2007
    Beans
    176
    Distro
    Ubuntu 7.04 Feisty Fawn

    Re: me vs fstab, again.

    Quote Originally Posted by hyper_ch View Post
    try the use the UUID instead

    Code:
    ls -al /dev/disk/by-uuid
    Thanks! Okai, curious results. When I check the UUID it only lists the disks currently mounted, but when i try "ls -al /dev/deisk/by-id" it lists the IDE disk as well. Can it be that this disk has not been assigned an UUID?

    (There is of course the hardware fault option, but I don't think that it is because it was working just fine prior to my upgrade)
    Against TCPA | Hell, it's about time! | FORZA FERRARI
    Almost Sober tour 2008

  7. #7
    Join Date
    Jun 2006
    Location
    Switzerland
    Beans
    Hidden!
    Distro
    Kubuntu Jaunty Jackalope (testing)

    Re: me vs fstab, again.

    it can happen that a partition does not have an UUID assigned

  8. #8
    Join Date
    Nov 2007
    Location
    Shangri La
    Beans
    316

    Re: me vs fstab, again.

    damn that ƒstab! u might want to try ƒshoot, ƒstrangle, or ƒbludgeon instead.

    sorry, couldn't resist!

  9. #9
    Join Date
    Feb 2007
    Beans
    176
    Distro
    Ubuntu 7.04 Feisty Fawn

    Re: me vs fstab, again.

    Ok so .. the device does not have an UUID that I can find. Gparted tells me:

    "The device /dev/sde1 doesn't exist

    ntfsreize v2.0.0 (libntfs 10:0:0)
    ERROR(2): Failed to check '/dev/sde1' mount state: No such file or directory
    Probably /etc/mtab is missing. It's too risky to continue."

    I'm at a loss. Can I possibly assign this device another UUID somehow?
    Against TCPA | Hell, it's about time! | FORZA FERRARI
    Almost Sober tour 2008

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
  •