Find the answer to your Linux question:
Results 1 to 2 of 2
Hi All, I'm new to Linux. Currently installed Ubuntu 9.04. I want to mount a USB HDD to my PC. Please help me with some commands. Thanks,...
  1. #1
    Just Joined!
    Join Date
    Sep 2009
    Posts
    1

    Smile How to Mount a new external USB HDD

    Hi All,
    I'm new to Linux. Currently installed Ubuntu 9.04.
    I want to mount a USB HDD to my PC.
    Please help me with some commands.

    Thanks,

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Hi and Welcome !

    Does Ubuntu detect External HDD when you plug-in it?
    If its a brand new HDD without any partitions then you have to create partitions first.

    Just plug-in it, open Terminal and execute this
    Code:
    sudo fdisk -l
    fdisk command will list partition structure of all available disks.

    * Its small L in fdisk -l command.

    Create a folder (mount_point) for each partition and execute mount command to mount partition(s).

    Let say, /dev/sdb1 is first partition of USB disk and has NTFS filesystem.
    Create a folder and mount partition.
    Code:
    sudo mkdir /media/sdb1
    sudo mount -t ntfs-3g /dev/sdb1 /media/sdb1 -o defaults, umask=0
    ls /media/sdb1
    You will have full access in that partition. Do the same for other partition, if any.

    In case it doesn't work, post the output of sudo fdisk -l command here.
    Last edited by devils casper; 09-11-2009 at 05:41 AM.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Posting Permissions

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