Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: External hard drive mount

Hybrid View

  1. #1
    Join Date
    Dec 2005
    Location
    Virginia, USA
    Beans
    61
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    External hard drive mount

    I know this is the ubuntu forums but the command for mounting a hard drive should be the same, right? Well, opensuse 10.2 isn't showing my seagate 80gb external drive and I'm not sure if I'm suppose to mount it or something.. your thoughts?

    Thaaaanks.
    Love yourself.. and ubuntu.

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

    Re: External hard drive mount

    You have to log in as root and then do

    Code:
    mkdir /mnt/harddrive
    mount -t vfat /dev/sda1 /mnt/harddrive
    p.s. And move over to the suse area.
    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
    Nov 2006
    Location
    Green Bay, WI
    Beans
    2
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: External hard drive mount

    Quote Originally Posted by taurus View Post
    You have to log in as root and then do

    Code:
    mkdir /mnt/harddrive
    mount -t vfat /dev/sda1 /mnt/harddrive

    I did this, but now my mount point is only writable by root. How can I make it so regular users can write to this mount point?

    "sudo chmod a+w /mnt/harddrive" doesn't work.

    Any help would be greatly appreciated.

  4. #4
    Join Date
    Sep 2007
    Location
    Idaho
    Beans
    473
    Distro
    Xubuntu 10.04 Lucid Lynx

    Re: External hard drive mount

    Quote Originally Posted by hetLemming View Post
    I did this, but now my mount point is only writable by root. How can I make it so regular users can write to this mount point?

    "sudo chmod a+w /mnt/harddrive" doesn't work.

    Any help would be greatly appreciated.
    Code:
    sudo chmod 777 /mnt/<mountpoint>

  5. #5
    Join Date
    Oct 2006
    Location
    San Diego, CA
    Beans
    66
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: External hard drive mount

    you will want to do

    Code:
    sudo chmod -R 777 /media/external
    The -R parameter gives full permissions to all files/folders within the drive.
    Faithful Ubuntu user since 6.06
    Dell XPS 410

  6. #6
    Join Date
    Mar 2005
    Location
    Bloomington, Indiana
    Beans
    225
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: External hard drive mount

    what filesystem is your external drive

    i have a Western digital 500 GB My Book Essential and it loads automatically with all linux's i have tried

    assuming your drive is ext3

    sudo mkdir /media/External
    sudo mount -t <filesystem> /dev/<insert device name here (ie. sdb1) /media/External

    when you plug in your drive it should show the device name in your dmesg
    if its a USB drive its probably vfat filesystem

  7. #7
    Join Date
    Dec 2005
    Location
    Virginia, USA
    Beans
    61
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: External hard drive mount

    The device is called "ST380011A 8.01" in my boot options but.. I get this error when I put that in the terminal:

    Code:
    sudo mount -t vfat /dev/ST380011A 8.01/media/External
    mount: mount point 8.01/media/External does not exist
    Love yourself.. and ubuntu.

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

    Re: External hard drive mount

    What's the output of this command from a terminal (as root)?

    Code:
    fdisk -l
    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).

  9. #9
    Join Date
    Dec 2005
    Location
    Virginia, USA
    Beans
    61
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: External hard drive mount

    I fixed it. Thanks anyways.
    Love yourself.. and ubuntu.

  10. #10
    Join Date
    Jun 2007
    Beans
    6

    Re: External hard drive mount

    Quote Originally Posted by ubunick View Post
    I fixed it. Thanks anyways.
    Can you tell us how you fixed it? I am unable to mount my external HDD too.

    Thanks.

Page 1 of 2 12 LastLast

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
  •