Announcement

Collapse
No announcement yet.

Mounting second Hard Drive (Mtab,Fstab)

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Mounting second Hard Drive (Mtab,Fstab)

    I've got a secondary hard drive which I partitioned with Qtparted. It is hdc1.
    I created a desktop Icon but cannot mount it because of the Mstab,Fstab files in /etc.

    Do I need entries in both files to get the computer to find and recognize it?

    What do I need to enter specifically in either file to get it to mount properly. I'd like to use this drive
    for photo storage and panorama file manipulation.

    Any help would be appreciated.

    Richard

    #2
    Re: Mounting second Hard Drive (Mtab,Fstab)

    # http://www.tuxfiles.org/linuxhelp/fstab.html
    # http://linuxhelp.blogspot.com/2006/0...mystified.html
    # (In addition http://www.penguin.ch/dokuwiki/doku.php/debian:fstab

    Comment


      #3
      Re: Mounting second Hard Drive (Mtab,Fstab)

      Could not mount device.
      The reported error was:
      [mntent]: warning: no final newline at the end of /etc/fstab


      mount: can't find dev/hdc1 in /etc/fstab or /etc/mtab# /etc/fstab: static file system information.

      #
      # <file system> <mount point> <type> <options> <dump> <pass>
      proc /proc proc defaults 0 0
      # /dev/hda1
      UUID=db8e6c0e-df05-4a90-989c-2e5e7002294f / ext3 defaults,errors=remount-ro 0 1
      # /dev/hda5
      UUID=908ae91d-18f9-4670-be88-11377870a841 none swap sw 0 0
      /dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0
      /dev/hdd /media/cdrom1 udf,iso9660 user,noauto 0 0
      /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
      /dev/hdc1 /media/hdc1 auto rw,user,noauto 0 1


      I've seen these articles. . . Ok tell me what's the problem and what to rewrite to correct this mess. I'm still in the dark. It shouldn't be too difficult.

      Once again any help would be appreciate. . .

      Rich

      Comment


        #4
        Re: Mounting second Hard Drive (Mtab,Fstab)

        What was the command you used to (try to) mount it?
        For external use only.

        Comment


          #5
          Re: Mounting second Hard Drive (Mtab,Fstab)

          /dev/hdc1

          Comment


            #6
            Re: Mounting second Hard Drive (Mtab,Fstab)

            I assume you mean "mount /dev/hdc1".

            Anyway, it's complaining because you didn't specify a mount point, and it can't find an entry in the fstab.

            Make sure the directory /media/hdc1 (or wherever you want to mount it) exists (i.e. "sudo mkdir /media/hdc1"). You can then mount it there with "sudo mount /dev/hdc1 /media/hdc1".
            For external use only.

            Comment

            Working...
            X