Results 1 to 3 of 3

Thread: help with fstab and new internal hard drive

  1. #1
    Join Date
    Aug 2005
    Beans
    10

    help with fstab and new internal hard drive

    Hello,

    I just added a new internal HD to my ubuntu 8.04 machine. It has been partitioned and I am able to mount it manually using the following command:
    sudo mount -t ext3 /dev/sda1 /media/backup

    However that appears to be the only way to mount it.

    I modified my /etc/fstab as follows:

    /dev/sda1 /media/backup ext3 default 0 0
    169.254.244.97:/replicate /media/Snap410 nfs defaults 0 0
    169.254.244.98:/replicate /media/Snap4100 nfs defaults 0 0

    When I startup the two nfs mounts automatically appear on my desktop but not the new one.

    Also if I try the command: sudo mount /media/backup
    I get the following error message:

    mount: wrong fs type, bad option, bad superblock on /dev/sda1,
    missing codepage or helper program, or other error
    In some cases useful info is found in syslog - try
    dmesg | tail or so


    I am at loss to explain what I am doing wrong. You help would be appreciated.

    -Dr Q
    Last edited by drmoqu; November 18th, 2008 at 03:41 AM.

  2. #2
    Join Date
    Oct 2005
    Location
    Jacksonville, FL
    Beans
    29,420

    Re: help with fstab and new internal hard drive

    There is a typo for the /dev/sda1 entry in /etc/fstab.

    Code:
    /dev/sda1 /media/backup ext3 defaults 0 0
    In the world of Linux, who needs Windows and Gates...

    Got most of my golden beans at an auction on eBay (with a couple of free drinks).

  3. #3
    Join Date
    Aug 2005
    Beans
    10

    Re: help with fstab and new internal hard drive

    LOL. After staring at that line for so long, you would think I would have noticed the typo. Thank you so much.

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
  •