Results 1 to 9 of 9
I just brought an IBM USB HDD. But the manufacture specification tells it is compatible for Windows 98/ME/XP/2000/2003 and Mac OS. How to mount such an USB HDD in Linux ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 08-29-2006 #1
USB HDD mounting
I just brought an IBM USB HDD. But the manufacture specification tells it is compatible for Windows 98/ME/XP/2000/2003 and Mac OS. How to mount such an USB HDD in Linux ? Where to check the hardware compatibility list for Linux ?
- 08-29-2006 #2
plug it in and boot knoppix.. It'll find it.. unless you didnt partition it yet..
then plug it in and
su -
<password>
fdisk -l | grep sd
OR
dmesg | grep sd
then to partition it --> (fdisk,cfdisk,gparted... etc )
then to format it --> (mke2fs,mkfs.ext2,mkfs.ext3,mkfs.jfs...etc)
hope that helps
- 08-29-2006 #3
In a live enironment we cannot reboot. So pl. suggest me with a command to mount the external USB HDD in Linux. Also pl. note that the HDD I specified was IBM make and it's compatibility list doen't shows any Linux OS. Your help in this regard is appreciated.
- 08-29-2006 #4
hi bravobritto
did you aredy formatt HDD.what filesistem type is it.?
let we say that is ext3
open terminal and type
mkdir /mnt/usb
mount -t ext3 /dev/sda /mnt/usb
that you can mount HDD with filesystem on it.If you havent any filesistem on that hdd please do what richiefrich said
i hope that helps
- 08-29-2006 #5
The external USB HDD is formatted in Windows. i.e. it is now NTFS partition so how can I proceed further. What does the file system ext3 means ? Why in some forums it is showing use vfat ? Is it for FAT file systems ? Can I use vfat to mount NTFS ?
- 08-29-2006 #6
hi bravobritto
ext3 is one of filesistems for linux
FAT and NTFS are not the same thing.when mounting NTFS type ntfs
mount -t ntfs /dev/sda /mnt/usb
linux can read NTFS partition but writing in it is not realy safe....we warned you
sure you can safe write into fat partitions.....
i hope that helps
- 08-29-2006 #7
Hi bravobritto !!!
ext3 is Linux File System.. vfat is used to mount FAT32 File System... you cant use vfat for NTFS.
Originally Posted by bravobritto
with NTFS, you can read/copy form USB drive... you can't write in NTFS from Linux OS... a few third party packages enables NTFS write mode but i dont suggest you that.....
convert your USB drive to FAT32 System.... you can do this using Windows machine...
after that use vfat option with mount and... read/write......
<=== { casper } ===>It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 09-11-2006 #8The way I learned to do that in knoppix was this command line:
Originally Posted by devils_casper
mkfs.vfat -F 32 /dev/sda1
This is the only way I know how to format a external hard drive to a fat32 system without any size restrictions.
- 09-12-2006 #9
Hello,
I got the solution. Thanks for all your kind replies. The actual problem is that it cannot be formatted to FAT filesystem even in Windows. Then comes the question of formatting in Linux. I suspect the external harddrive manufacturer.
Thanks and regards
Britto


Reply With Quote
