Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Feb 2002 00:18:27 -0600
From:      "Mike Meyer" <mwm-dated-1013494708.912666@mired.org>
To:        "Kirk R. Wythers" <kwythers@forestry.umn.edu>
Cc:        questions@freebsd.org
Subject:   Re: a new kernel question
Message-ID:  <15458.7219.936586.329985@guru.mired.org>
In-Reply-To: <54731771@toto.iv>

next in thread | previous in thread | raw e-mail | index | archive | help
Kirk R. Wythers <kwythers@forestry.umn.edu> types:
> I just rebuilt my kernel (hopefully for smp and the ext2 file system).
> How do know if I am running on both processors now? I see in dmesg: 
> bash-2.05a$ dmesg | grep cpu
>  cpu0 (BSP): apic id:  0, version: 0x00040011, at 0xfee00000
>  cpu1 (AP):  apic id:  1, version: 0x00040011, at 0xfee00000
> Does that mean I'm good to go here? 

Yup.

> Also... I have a bunch of zip disks formatted ext2 that I want to read.
> I have my zip drive working for msdos and have the line:
> /dev/afd0s4		/zip250		ext2	rw,noauto	0	0
> in /etc/fstab
> However, when I try and mount the drive with mount /zip250, I get the
> error:
> bash-2.05a$ mount /zip250/
> mount: exec mount_ext2 not found in /sbin, /usr/sbin: No such file or
> directory
> Is there something I missed besides compiling my kernel with 
> options		EXT2FS			#Linux ext2fs file system

Note that they call the file system ext2fs, not ext2. There's a
mount_ext2fs in /sbin. You probably need to change your fstab to use
ext2fs instead of ext2. You can test it with

	mount -t ext2fs /dev/afd0s4 /zip50

	<mike
--
Mike Meyer <mwm@mired.org>			http://www.mired.org/home/mwm/
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?15458.7219.936586.329985>