Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12

Thread: auto mount spare internal HD without password?

  1. #11
    Join Date
    Dec 2009
    Beans
    6,776

    Re: auto mount spare internal HD without password?

    /dev/sdb1: LABEL="MAXTOR" UUID="4AB3-FBCE" TYPE="vfat"
    [1] If you currently have the partition mounted unmount it.

    [2] Create a permanent mount point for the partition:
    Code:
    sudo mkdir /media/Maxtor
    Note: any mount point in /home/user-name or /media will produce an icon on the desktop. If you don't want that to happen mount it somewhere else like /mnt/Maxtor or even /Maxtor.

    [3] Edit fstab as root:
    Code:
    gksu gedit /etc/fstab
    [4] Add the following line at the end of fstab:
    Code:
    UUID=4AB3-FBCE /media/Maxtor vfat utf8,umask=000,uid=1000 0 2
    Note: "uid=1000" will make you the owner of the mounted partition and "umask=000" will give r/w permissions to everyone.

    [5] Save fstab and back in the terminal run the following command which will test for errors and mount the partition without a reboot:
    Code:
    sudo mount -a

  2. #12
    Join Date
    Apr 2007
    Beans
    67

    Re: auto mount spare internal HD without password?

    That did the trick! Thanks for your help!
    E machines W2646 Desktop with 512 DDR , 2.60GHz Celeron processor and a Maxtor 500GB hard drive (Windows XP Dual Boot)

    24inch imac 2.8ghz with Nvidia Geforce 8800 GS, 2GB DDR2, 320GB HD

Page 2 of 2 FirstFirst 12

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
  •