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,...
- 09-11-2009 #1Just Joined!
- Join Date
- Sep 2009
- Posts
- 1
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,
- 09-11-2009 #2
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
fdisk command will list partition structure of all available disks.Code:sudo fdisk -l
* 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.
You will have full access in that partition. Do the same for other partition, if any.Code:sudo mkdir /media/sdb1 sudo mount -t ntfs-3g /dev/sdb1 /media/sdb1 -o defaults, umask=0 ls /media/sdb1
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


Reply With Quote