[285] in linux-scsi channel archive
Re: SCSI drive still empty
daemon@ATHENA.MIT.EDU (Drew Eckhardt)
Thu Jun 22 19:17:01 1995
To: Jun Zhang <jzhang@scri.fsu.edu>
cc: linux-scsi@vger.rutgers.edu
In-reply-to: Your message of "Thu, 22 Jun 1995 09:02:26 CDT."
<199506221302.AA28093@ibm8.scri.fsu.edu>
Date: Thu, 22 Jun 1995 16:37:28 MDT
From: Drew Eckhardt <drew@boulder.openware.com>
In message <199506221302.AA28093@ibm8.scri.fsu.edu>, jzhang@scri.fsu.edu writes
:
>I haven't figured out yet how I can make use of this new drive while my
>existing IDE drive is crying for space with dos/window and linux 1.2.8
>installed on it.
>I used dos fdisk to create a 200Mb partition and linux fdisk to create
>another, which occupied the rest of this FUJITSU SCSI-2 drive with total
>of 530Mb. Everything seems fine.
>The 200Mb portion seen by dos/window is easy to use, since drives C and D
>are treated equally. But for linux, I tried
>
> mount -t ext2 /dev/sda2 /directory
>
>the answer is " /dev/sda2 is not a mount point ".
/dev/sda2 doesn't have a file system on it, so you can't mount
it (unless you're forgetting to tell us something)./
>Could anyone give me suggestions like where to read or point out some way
>to solve my problem?
>
>Jun
Sure.
mke2fs /dev/sda2
or
mke2fs -c /dev/sda2
or
mkfs -t ext2 -c /dev/sda2
etc. Unless you'd prefer some other filesystem on the device :-)
Then,
mount -t ext2 /dev/sda2 /directory
should be happy.