Argosy HD-530 USB2/FW Linux Driver.
From: Felipe Zottola Diz (fzottola_at_cantv.net)
Date: 12/31/03
- Previous message: Jeff Elkins: "Gnome:Sid"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
To: debian-user@lists.debian.org, jsahambi@iitg.ernet.in Date: Tue, 30 Dec 2003 22:21:34 -0400
The Argosy USB 2.0 / Firewire 2.5" Hard Disk Interface
is wholly usable in Linux.
I am running RedHat 9.0, and issuing 'uname -r' on my
linux box, it returns a kernel version 2.4.20-8... yeah!
I know... that's nothing out of this world!
To make things work nicely, there are a two files to
look at, which are:
The first one:
/etc/fstab
That probably already shows you the device you want to mount, but if not,
just read ahead. We'll return to this in a while, to make /etc/fstab look
how it should.
The other one:
/etc/sysconfig/hwconf
Take a special attention to sections describing your USB hardware.
To make all simpler here's my file section which applies to the case:
...
-
class: HD
bus: SCSI
detached: 0
device: sda
driver: ignore
desc: "Ibm-djsa -220"
host: 0
id: 0
channel: 0
lun: 0
generic: sg0
-
...
And guess what... the description field (desc:) shows the same label
Windows XP gives to your device (with the 2.5 HDD inside, of course).
So, try a text search inside your /etc/sysconfig/hwconf, using part
of the label. Don't forget using lower/upper case (ask your text editor
not to perform a case sensitive search).
When you have it, just use the label matching the "device" field, as in
my case "sda".
What we only need to know is which particular partition on your enclosed
disk you want to mount to. If you have only one (what it might be the case),
you should specify sda1 (or sda2, sda3, sdb1, sdc3, etc). Think as it were:
sd<scsi_device_letter><partition_number> all together.
Now we are ready for the magic:
'mount -t vfat /dev/sda1 /mnt/other'
OOOpps!!
"vfat" & "other"???
vfat: is the filesystem type of your partition, or better said, you should
put your filesystem type instead of vfat, but as my 2.5" HDD was formatted
in FAT32 filesystem then I've used vfat, which that's how linux names FATxx
filesystems. Note that standard linux distributions do NOT manage NTFS
filesystems, unless you made some tweaks.
other: that should be the famous mount point (a folder created to use it as
a known place to map your files). So choose a nice name to map your files
and create a folder on a nice place. Look what's inside /mnt, which
typically
will be:
.
..
floppy
cdrom
So issue a 'mkdir mypreferredfoldername'
and what you'll have is:
.
..
floppy
cdrom
mypreferredfoldername
Finally, the command will be:
'mount -t vfat /dev/sda1 /mnt/mypreferredfoldername'
Then take a look to what's inside '/mnt/myblahblah...'
There you go! (Hopefully).
Now, add this line to your forgotten /etc/fstab file:
/dev/sda1 /mnt/myblah vfat noauto,owner,users 0 0
Try to ident the text strings, just to make it look neat and clean.
It might help to figure out the details.
The next time what you only need is to attach your device and
mount using an abreviated form of mount:
mount /mnt/myblah
Sorry for being too boring, and hope this helped something!
Bye ;->
Felipe Zottola Diz.
Spain.
-- To UNSUBSCRIBE, email to debian-user-request@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
- Previous message: Jeff Elkins: "Gnome:Sid"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
- Re: Mount and read a solaris disk in Linux
... > I have a Solaris disk that I need to mount and read on a linux box.
... When you mount a filesystem, nothing should be written to it ... (comp.os.linux.misc) - Re: Mystery of file systems
... In my understanding linux operates on ext3/ext2 type of file ... > call the
mount points as file systems (please keep in mind that you are ... Calling a mount point
a filesystem is really a misuse of terms. ... (comp.os.linux.setup) - Re: Mystery of file systems
... In my understanding linux operates on ext3/ext2 type of file ... > call the
mount points as file systems (please keep in mind that you are ... Calling a mount point
a filesystem is really a misuse of terms. ... (comp.os.linux.misc) - Re: Mystery of file systems
... > system more like windows operate on fat or ntfs file systems. ... >
my understanding goes /proc is a mount point, how can it be a file ... linux, you
can mount any filesystem anyplace in your directory hierarchy. ... (comp.os.linux.setup) - Re: Mystery of file systems
... > system more like windows operate on fat or ntfs file systems. ... >
my understanding goes /proc is a mount point, how can it be a file ... linux, you
can mount any filesystem anyplace in your directory hierarchy. ... (comp.os.linux.misc)