> On Thu, 27 Mar 2003 15:23:02 GMT, Kyler Laird staggered into the Black
> Sun and said:
> >>> Anyone know if there's a simple way to get at the status of
> >>> a Maxtor OneTouch button from Linux?
> > I've got the drives now. I'm ready to play.
> Excellent!
> >>What I'd start out by doing is plugging the drive in to a USB 2 or
> >>Firewire interface, loading the appropriate modules, then using a
> >>USB/Firewire snooping utility (usbsnoop? I forget what it's actually
> >>called...) to look at the raw data that goes through the bus when you
> >>push the button on the drive.
> > Anyone else know of such a utility? I haven't found one.
> Oddly enough, http://www.linux-usb.org/ lists a couple of utilities in
> the "Tools" section, USBSnoopy and SnoopyPro, that do what you need that
> are for Windows only. Weird! I'd guess these are used for sort of
> reverse engineering Windows USB drivers for weird devices. I haven't
> seen a similar utility for Firewire yet.
> >>The drive will of course work fine with the USB Mass Storage module or
> >>the sbp2 + SCSI support.
> > Yup, seems fine.
> Good to know. HTH,
> --
> Matt G|There is no Darkness in Eternity/But only Light too dim for us to see
> Brainbench MVP for Linux Admin /
> http://www.brainbench.com / "He is a rhythmic movement of the
> -----------------------------/ penguins, is Tux." --MegaHAL
I've got two of the Maxtor 5000XT (250G, 5400rpm, USB2.0/Firewire interface).
They work great using the ieee1394 interface and the sbp2 module. I'm running
kernel 2.4.18.
Plug in, install the sbp2 module, and suddenly as SCSI drive appears.
I have tortured the drive and SCSI emulation is solid. Also since
it is a SCSI device there is no fussing with master/slave,
size limitations, and DMA problems like IDE drives. This is as it should be:
a reliable drive without the IDE headaches.
General comments:
- sustained transfer rate, eg., measured by "bonnie" benchmark,
20MBytes/sec (at middle of drive)
This is about 50% the ideal firewire capacity, probably 75% of
of the drive's raw capacity if I had to guess.
- I have not tried more than one drive on the same firewire
connection (ie., daisy chain).
As far as "one touch" goes, I don't use it. I haven't tried to hit that
button. Maybe it sends something to the firewire. I don't know. To do
backups I use "rsync". This program is like rcp, but only updates files that
changed. I mirror my entire desktop machine every two weeks or so. It has
some 400,000 files. It only takes a few minutes each time.
Another concern I had was media reliability, so every so often I read the
entire filesystem media to make sure it is OK. If the drive is mounted on
/mnt/hd, I use the command:
cd /mnt/hd; tar c . > /dev/null
cd /mnt/hd; tar c . |md5sum
This does nothing more than read the media. The first line just reads,
while the second line does a checksum (eg., to compare multiple copies)
Anyway, have fun with it.
BTW, These drives are great for backup, but I would not recommend these drives
for continuous use as your main drive. Why? Well, I would rather have my
main drive in my desktop case so that it is not succeptable to bumps or other
damage while running. It is my belief that drives are much more sensitive
to bumps/vibrations while running than while off (when the heads are parked).
Richard