External Lacie USB hard disks


 
Thread Tools Search this Thread
Special Forums Hardware Filesystems, Disks and Memory External Lacie USB hard disks
# 1  
Old 04-03-2002
Question External Lacie USB hard disks

I'm trying to mount a USB Lacie external hardrive in my Linux system but am having trouble doing so, I'm also having trouble mounting my USB ZIP 250 drive.
It is totally me being stupid, but I'm new to unix and am having a few teathing problems.
the command I'm using is the following mount /dev/sda /mnt/ZIP & mount /dev/sdb /mnt/Lacie.
I have created the mount points in /mnt and the file system used on those drives is FAT32, is FAT32 compatible with Linux.
I'm running Suse 7.1.
please don't be afraid of giving me complex commands, I'm used to using DOS and Windows. Like DOS hate windows, but hey that's why I'm converting to Linux
# 2  
Old 04-03-2002
You may need to specify to the mount command which filesystem you're mounting, in the case of mounting FAT volumes. If I recall correctly, the command would be something like "mount -t msdos /dev/blah /mnt/my_blah". Check the man page to be sure...

And I'm not sure is /dev/sd* is right for a USB device, although I've never tried mounting one myself. Typically, Linux systems use /dev/sd* for SCSI and /dev/hd* for IDE drives. What you can do is use the "dmesg" command in Linux to get a replay of the bootup messages, then read at your leisure:
dmesg | less
Look for a reference to your ZIP drive (assuming it was plugged in when you booted) - it should mention the device name with it.

If you can't find it in the dmesg output, post back, and we'll look a few other places...
# 3  
Old 04-03-2002
I was just looking around a little, and saw that there is little, if any, support for USB storage devices in the 2.2.* kernel tree...
What kernel do you have? You can find out by running the command:
uname -r
# 4  
Old 04-03-2002
I've tried this, it gives me "wrong fs type, bad option, bad superblock on /dev/sda, or too many mounted file systems"
which I think is strange, I've also tried fatfs fat16 fat32, each of which seems strange.
when specifying the device /dev/sda it does access the USB ZIP drive as the drive lights up and you can hear it accessing the device. also in the xconsole window it tells me that it has found the device and gives me "SCSI device sdb: 39070080 512-byte hdrw sectors (20004 MB) which is my Lacie drive, it seems to know what it is as it seems to know that it is 20 Gig, which is correct. it is also the only 20 gig device on this machine so I know it's definitly finding My lacie.
I have no SCSI devices in this particular system so it seems that USB devices are accessed as sda: sdb: sdc and so on for each device
uname returns the result 2.4.0-4GB.
I'm going to try and mount a clean drive by formating it in Linux and hopefully it will access it correctly then, at least then I will know that my system can actually write to this device, even though I won't then be able to access this device on Windows XP
# 5  
Old 04-04-2002
Ahh, it you're using it in WinXP, it may be a NTFS filesystem.
Linux system can read NTFS, but it will damage the filesystem if you write to it (which you can't do by default, since it is dangerous).
Try "mount -t ntfs -o ro /dev/sda1 /mnt/ZIP". You might play with it a bit, like using /dev/sda or /dev/sda1 (for first partition), or trying without specifying a filesystem (see it is figure it out for you). I've also has luck using umsdos, and msdos as a filesystem type.

Post back and let us know if you find anything out...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Waking Up USB External Hard Drive for file archiving

Hello Experts, I hope I'm writing to the correct category for my question. I have a very basic shell script for doing file archiving to the external usb hard drive (WD studio edition II 2TB formatted as FAT32 for compatibility). The shell script only needs to run once per day. It basically... (8 Replies)
Discussion started by: johankor
8 Replies

2. UNIX for Advanced & Expert Users

script to automatically mount external usb hard disk

hi all, I have a debian lenny 5.0 server without GNOME installed. the server is at a customer's premise. I want to backup data from the server to the external usb hard disk. the backup will start at e.g 01:00 everyday. the user will plug the drive before going home. also the user will... (1 Reply)
Discussion started by: coolatt
1 Replies

3. Solaris

USB External Hard Drive for Solaris 10 Sparc

Hi- I would like to know if anyone has used any USB External Hard Drive, about 500/750GB or 1TB, with any of the Solaris 10 "SPARC" systems. Not on intel nor amd platform. I'm looking for the compatible drive and found a few listed on Sun solaris ready page, but I'd like to have inputs from... (3 Replies)
Discussion started by: agfa_109
3 Replies

4. Filesystems, Disks and Memory

external USb hard disk reading problem

Hello, I am facing a hard disk drive reading problem since last one month and not able to resolve it. The thing is I purchased external USB hard disk (seagate 40 gb) 2 years back.And uptil now its working perfectly fine. But suddenly one day I am not able to read my data. The problem goes like... (1 Reply)
Discussion started by: albertspade
1 Replies

5. Solaris

Get onyl local hard disks

How can I get only the local hard disks in Solaris? I've tried iostat -x, iostat -E, etc, but it shows the cdroms, dvds, external storage... I want only the local physical hard disks. Thanks. (2 Replies)
Discussion started by: psimoes79
2 Replies

6. Solaris

FAT32 usb external hard drive - how to mount??

Hello ! What is the comand to mount and usb hard disk ? I have Solaris 10 installed! 10nx! (1 Reply)
Discussion started by: daniel.balasa
1 Replies

7. Solaris

Hard disks in solaris

I need to insert a new hard disk into a Sun Fire v210 machine. The (only) internal disk which is already in the machine is part number XRA-SC1CB-73G10K (DISK DRIVE ASSY. 73GB, 10K RPM, with SPUD BRACKET). I also have nearly endless access to IBM hard disks at extremely low prices and would there... (2 Replies)
Discussion started by: sprellari
2 Replies

8. UNIX for Dummies Questions & Answers

mounting lacie hard drive to another suns system

I have two unix workstations. One crashed :( , but the other is still operating efficiently. We have a Lacie external hard drive attached to the workstation that failed. I would like to mount the external drive to the workstation that is still functioning. I am not very familiar with how to do... (1 Reply)
Discussion started by: Tmarsha6
1 Replies

9. Solaris

External USB

Is it possible to install Solaris 10 on an external USB drive? I'd like to dual boot Linux and Solaris 10. Thanks! (2 Replies)
Discussion started by: otterit
2 Replies
Login or Register to Ask a Question