| HOME > MISC > LINUX > NETWORK BACKUP |
|---|
Just getting started on this. I'm going to slowly update this page as I have consistent success with my configuration.
Short summary:
The ADS USB2.0/1394 case does work. I had another cheaper unit that
was nothing but trouble. A friend brought his WinNT drive in a different
enclosure over today
and plugged it into the same Linux system and we had nothing but trouble
with it, constant stream of I/O errors.
This is the one I bought:
http://store.yahoo.com/pcsound/840971.html
The StorTecc PM-350U2-LCS also works and is more compact, but will only
hold a regular sized 3.5" hard drive.
This is the one I bought:
http://www.dealsonic.com/stalidetousb.html
the local MicroCenter. I figured if it doesn't work I could just take
it back and try another one. I've been told many times to be sure
to stay away from VIA chipsets.
This is how this card comes up in lspci:
00:0c.0 USB Controller: ALi Corporation USB 1.1 Controller (rev 03) 00:0c.1 USB Controller: ALi Corporation USB 1.1 Controller (rev 03) 00:0c.2 USB Controller: ALi Corporation USB 1.1 Controller (rev 03) 00:0c.3 USB Controller: ALi Corporation USB 2.0 Controller (rev 01)Strangely I had another USB2.0/1394 card from OrangeMicro (also recommended by other Linux users) that I had a lot trouble with.
... kernel: hub.c: new USB device 00:0c.3-3, assigned address 2 ... kernel: scsi2 : SCSI emulation for USB Mass Storage devices ... kernel: Vendor: WDC WD25 Model: 00JB-32FUA0 Rev: 0 0 ... kernel: Type: Direct-Access ANSI SCSI revision: 02 ... kernel: Attached scsi disk sdd at scsi2, channel 0, id 0, lun 0 ... kernel: SCSI device sdd: 488397168 512-byte hdwr sectors (250059 MB) ... kernel: sdd: sdd2In this example you can see the hard drive is already formatted because it shows my existing partition sdd2 . If your drive isn't partitioned use fdisk /dev/sdX to partition the drive in whatever way makes sense to you.
mkfs.ext3 -j -m 0 -T largefile4 /dev/sdd2The meaning of all the options are:
| -j | - Create the filesystem with the ext3 journal |
|---|---|
| -m 0 | - Specify the percentage of the filesystem blocks reserved for the super-user. I set this to 0 because only root will write to this filesystem. |
| -T largefile4 | - Use one inode per 4 megabytes, more efficient for very large files. |
# umount /dev/sdd1 # eject /dev/sdd # mount /dev/sdd1 /mnt/XXXXX