Re: Drive mounting

1998-08-03 Thread Patrick Olson
I don't know anything about the EtherPCI II card itself, but I have an EtherPCI card working with the Tulip driver. I don't know what the difference between my EtherPCI and your EtherPCI II is. If they are really similar, yours might work with the Tulip driver. On Sat, 18 Jul 1998, Cristov Russ

RE: Drive mounting

1998-07-20 Thread Richardson,Anthony
Should be: mkdir /dos mount -t msdos /dev/hdb6 /dos The mkdir command only has to be given once. The mount command needs to be given everytime you log in (or you can edit the /etc/fstab file so that the partition is automatically mounted). The second logical partition on the second drive is hdb

Re: Drive mounting

1998-07-18 Thread Keith Alen Vance
mkdir /dos should work. Keith [EMAIL PROTECTED] You only get one chance at life, but if you do it right, you only need one. http://www.naples.net/~nfn11988 On Sat, 18 Jul 1998, Cristov Russell wrote: > Hello all. I'm very green at Linux and unfortunately no one that I

Re: Drive mounting

1998-07-18 Thread Tom Pfeifer
Cristov, mkdir dos ==>> if you just logged in as root, this creates /root/dos mount -t msdos /dev/hdb3 /dos ==>> this tries to mount it at /dos which in fact doesn't exist to make the directory /dos you need to do this ==>> mkdir /dos Tom -- Unsubscribe? mail -s unsubscribe [EMAIL PROTE

Re: Drive mounting

1998-07-18 Thread Oliver Elphick
Cristov Russell wrote: >mount -t msdos /dev/hdb3 /dos > >I get an error that says the mount point doesn't exist. Also, i'm >attempting to access the second logical drive (E in DOS). I forgot to cover this point: /dev/hda is the Master IDE disk on the first IDE interface /dev/hdb is

Re: Drive mounting

1998-07-18 Thread Oliver Elphick
Cristov Russell wrote: >I'm having a little trouble understanding how to mount a drive. ... >I've tried using the following command immediately after logging in as >'root': > >mkdir dos >mount -t msdos /dev/hdb3 /dos > >I get an error that says the mount point doesn't exist. Also