Find the answer to your Linux question:
Results 1 to 8 of 8
I am a newbie. I followed what I read on the forums but I am stuck trying to mount a Seagate 100GB ext hardrive over usb. I am giving the ...
  1. #1
    Just Joined!
    Join Date
    Dec 2009
    Posts
    4

    how to mount fat32 ext usb hard drive (Solved)

    I am a newbie. I followed what I read on the forums but I am stuck trying to mount a Seagate 100GB ext hardrive over usb. I am giving the info here: (ubuntu 9.04)
    ================================================== ========
    # fdisk -l

    Disk /dev/sda: 320.0 GB, 320072933376 bytes
    255 heads, 63 sectors/track, 38913 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x33957100

    Device Boot Start End Blocks Id System
    /dev/sda1 * 1 37488 301115392 7 HPFS/NTFS
    /dev/sda2 37488 38913 11451392 7 HPFS/NTFS

    Disk /dev/sdc: 100.0 GB, 100030242816 bytes
    255 heads, 63 sectors/track, 12161 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0xa60b9538

    Device Boot Start End Blocks Id System
    /dev/sdc1 * 1 12161 97683201 c W95 FAT32 (LBA)
    ======================
    I suppose I have to mount /dev/sdc1 . So I tried:
    root-ubuntu# mkdir seagate
    root-ubuntu# mount /dev/sdc1 seagate
    error==>mount: you must specify the filesystem type

    At this point I did "man mount" and realized I had reached the limit of my expertise!.
    Could someone please kindly help me here.
    Thanks in advance.
    Last edited by MikeTbob; 12-19-2009 at 02:49 AM. Reason: Solved.

  2. #2
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,145
    Hello and Welcome.
    Try this one.
    Code:
    sudo mount -t vfat /dev/sdc1 /seagate
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

  3. #3
    Just Joined!
    Join Date
    Dec 2009
    Posts
    4
    Thank you very much. It worked !
    couple of follow-up qns:
    a) I suppose I should do the mount each time I want to connect the drive (it will not be connected all the time. So I guess I should not do an auto anything for this)
    b) what's the unmount command going to look like ? (also if I fail to remember to unmount will it be a major disaster ?)
    thanks and appreciate your response,

  4. #4
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,145
    You can add the drive to fstab so that you only need to issue
    Code:
    mount /dev/sdc1 /seagate
    To unmount it
    Code:
    umount /seagate
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

  5. #5
    Just Joined!
    Join Date
    Dec 2009
    Posts
    2
    i've also tried this and it worked but all files on that hard drive are "locked", how do you mount with read write access?

  6. #6
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Use default and umask options in mount command.
    Execute this
    Code:
    mount -t vfat /dev/<partition>  /mount_point  -o defaults,umask=0
    vfat is for FAT32. Replace it with ntfs-3g for NTFS.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  7. #7
    Just Joined!
    Join Date
    Dec 2009
    Posts
    2
    thanks works fine now =)

  8. #8
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,145
    Glad you got it working to your satisfaction. Don't hesitate to start a new thread should you find the need to.
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...