Results 1 to 7 of 7
hello
i am using ubuntu and bought a external hard drive. it's not working and i looked on the internet how to solve this problem but i am new to ...
- 08-07-2007 #1Just Joined!
- Join Date
- Aug 2007
- Posts
- 4
external hard drive problem
hello
i am using ubuntu and bought a external hard drive. it's not working and i looked on the internet how to solve this problem but i am new to linux and can't solve it.
i think about switching to another linux version which can handle external hard drive better and easier.
has someone an idea wich distribution i should use?
- 08-07-2007 #2
Hi and Welcome !
Ubuntu recognize External Disks perfectly and its one of the best distro.
Open Terminal and execute this
Post output of both commands here.Code:sudo fdisk -l df -h
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 08-07-2007 #3Just Joined!
- Join Date
- Aug 2007
- Posts
- 4
sudo fdisk -l
df -hDisk /dev/hda: 60.0 GB, 60011642880 bytes
255 heads, 63 sectors/track, 7296 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 * 1 7108 57094978+ 83 Linux
/dev/hda2 7109 7296 1510110 5 Extended
/dev/hda5 7109 7296 1510078+ 82 Linux swap / Solaris
but hda: 60.0 GB is the hard drive in my computer on which linux isDateisystem Größe Benut Verf Ben% Eingehängt auf
/dev/hda1 54G 51G 475M 100% /
varrun 252M 92K 252M 1% /var/run
varlock 252M 0 252M 0% /var/lock
procbususb 10M 124K 9,9M 2% /proc/bus/usb
udev 10M 124K 9,9M 2% /dev
devshm 252M 0 252M 0% /dev/shm
lrm 252M 18M 235M 7% /lib/modules/2.6.17-12-generic/volatile
- 08-07-2007 #4
Did you plug-in External Hard Disk while executing fdisk command?
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 08-07-2007 #5Just Joined!
- Join Date
- Aug 2007
- Posts
- 4
i' m not sure, probably not, because i tried it again and now it looks like this
sudo fdisk -l
df -h is still the sameDisk /dev/hda: 60.0 GB, 60011642880 bytes
255 heads, 63 sectors/track, 7296 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 * 1 7108 57094978+ 83 Linux
/dev/hda2 7109 7296 1510110 5 Extended
/dev/hda5 7109 7296 1510078+ 82 Linux swap / Solaris
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 60801 488384001 7 HPFS/NTFS
Dateisystem Größe Benut Verf Ben% Eingehängt auf
/dev/hda1 54G 51G 475M 100% /
varrun 252M 92K 252M 1% /var/run
varlock 252M 0 252M 0% /var/lock
procbususb 10M 124K 9,9M 2% /proc/bus/usb
udev 10M 124K 9,9M 2% /dev
devshm 252M 0 252M 0% /dev/shm
lrm 252M 18M 235M 7% /lib/modules/2.6.17-12-generic/volatile
- 08-07-2007 #6
/dev/sda1 is your External HD.
Ubuntu supports NTFS read access out of box. You have to install ntfs-3g package to enable NTFS write access.
Execute this
Create mount_point ( folder ) and mount External HD.Code:sudo apt-get install ntfs-3g
You have to execute mkdir command once only.Code:sudo mkdir /media/sda1
To mount External HD, execute this
Check /media/sda1 folder.Code:sudo mount -t ntfs-3g /dev/sda1 /media/sda1 -o defaults,umask=0 ls /media/sda1
Execute this code before unplugging External HD.
Code:sudo umount /dev/sda1
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 08-07-2007 #7Just Joined!
- Join Date
- Aug 2007
- Posts
- 4
omg it's working
THANK YOU SO MUCH


Reply With Quote