From owner-freebsd-stable Sun Feb 11 0:20:16 2001 Delivered-To: freebsd-stable@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 171C737B401 for ; Sun, 11 Feb 2001 00:19:58 -0800 (PST) Received: (from dillon@localhost) by earth.backplane.com (8.11.1/8.9.3) id f1B8Jk430590; Sun, 11 Feb 2001 00:19:46 -0800 (PST) (envelope-from dillon) Date: Sun, 11 Feb 2001 00:19:46 -0800 (PST) From: Matt Dillon Message-Id: <200102110819.f1B8Jk430590@earth.backplane.com> To: Blaz Zupan Cc: , , Subject: Re: RE: Proposed makewhatis perl script fix References: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG :> :of what is broken. :> : :> :Kent :> :> makewhatis is just makewhatis... it has nothing to do with tar. :> :> When you tar something up, tar writes full blocks. But when you untar :> something the actual end of the archive may occur in the middle of a :> block. tar will close the input descriptor 'early' in this case, :> potentially before gunzip or uncompress manage to write the last block :> of zeros. : :I also don't believe that this is the real fix - there is something fishy :going on in stable. I just upgraded all of our servers from 4.2-RELEASE to :4.2-STABLE and I see the following messages upon installing *any* package: : :/home/blaz# pkg_add gmake-3.79.1.tgz : :gzip: stdout: Broken pipe :tar: child returned status 1 :/home/blaz# : :The package actually appears to install and work fine. I also noticed similar :messages from gzip during "make" on a port, but again the port built and :installed fine after that. : :So no, your makewhatis patch only appears to be a bandaid, but there is :something going on deeper (possibly in the kernel) that was not there in :4.2-RELEASE. : :Blaz Zupan, Medinet d.o.o, Linhartova 21, 2000 Maribor, Slovenia :E-mail: blaz@amis.net, Tel: +386-2-320-6320, Fax: +386-2-320-6325 There's nothing wrong with the kernel. It's exactly what I said it was. pkg_add runs tar with the --fast-read option to extract the table of contents. When I remove the option pkg_add no longer reports broken pipes. When gunzip'ing piped to tar, and tar exits early due to the option, gunzip properly gets a 'gzip: stdout: Broken pipe' error. Maybe 'tar' was changed recently, maybe 'gunzip' was changed recently, I don't know. But it isn't a kernel problem. The kernel is doing exactly what it is supposed to be doing. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 0:25:15 2001 Delivered-To: freebsd-stable@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id A9B8937B401 for ; Sun, 11 Feb 2001 00:24:58 -0800 (PST) Received: (from dillon@localhost) by earth.backplane.com (8.11.1/8.9.3) id f1B8OG930647; Sun, 11 Feb 2001 00:24:16 -0800 (PST) (envelope-from dillon) Date: Sun, 11 Feb 2001 00:24:16 -0800 (PST) From: Matt Dillon Message-Id: <200102110824.f1B8OG930647@earth.backplane.com> To: Kazutaka YOKOTA Cc: Warner Losh , Jesper Skriver , Robert , freebsd-stable@FreeBSD.ORG, yokota@zodiac.mech.utsunomiya-u.ac.jp Subject: Re: uh oh - after 4 -> 4.2 cvsup, no keyboard. any ideas? References: <20010204112503.E71706@skriver.dk> <200102110424.f1B4OVW18984@harmony.village.org> <200102110446.f1B4ksR29654@earth.backplane.com> <200102110525.OAA06084@zodiac.mech.utsunomiya-u.ac.jp> <200102110549.f1B5n8A29927@earth.backplane.com> <200102110616.PAA07027@zodiac.mech.utsunomiya-u.ac.jp> <200102110619.f1B6Jn830124@earth.backplane.com> <200102110638.PAA07364@zodiac.mech.utsunomiya-u.ac.jp> <200102110644.f1B6imq30235@earth.backplane.com> <200102110705.QAA07655@zodiac.mech.utsunomiya-u.ac.jp> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG :If the flags 0x100 is specified to syscons (this is now default in :GENERIC), syscons should revert to the AT keyboard when the USB :keyboard has gone. : :Kazu ok... so if we remove 'flags 0x1' from atkbd0, and leave 'flags 0x100' on sc0, and add an entry to /etc/usbd.conf to transfer control to the USB keyboard, then we will be ok? Or not? -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 0:29:19 2001 Delivered-To: freebsd-stable@freebsd.org Received: from titanic.medinet.si (titanic.medinet.si [212.18.32.66]) by hub.freebsd.org (Postfix) with ESMTP id BAFE037B491 for ; Sun, 11 Feb 2001 00:29:02 -0800 (PST) Received: by titanic.medinet.si (Postfix, from userid 1000) id AAB5126C06; Sun, 11 Feb 2001 09:29:01 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by titanic.medinet.si (Postfix) with ESMTP id 9A2B21170C; Sun, 11 Feb 2001 09:29:01 +0100 (CET) Date: Sun, 11 Feb 2001 09:29:01 +0100 (CET) From: Blaz Zupan To: Kent Stewart Cc: Matt Dillon , , Subject: Re: Proposed makewhatis perl script fix In-Reply-To: <3A864675.3A752582@urx.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Were you using ssh to login on to the computers when you were doing the > package/port work? That seems to be the common thread from my end. At > least, the broken pipes didn't start occuring until the version of > Openssh was updated. If I telnet and do my work no problem; however, if > I use ssh, then I see broken pipes. Yes, actually ssh was the main reason for the upgrade. Blaz Zupan, Medinet d.o.o, Linhartova 21, 2000 Maribor, Slovenia E-mail: blaz@amis.net, Tel: +386-2-320-6320, Fax: +386-2-320-6325 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 0:36: 1 2001 Delivered-To: freebsd-stable@freebsd.org Received: from titanic.medinet.si (titanic.medinet.si [212.18.32.66]) by hub.freebsd.org (Postfix) with ESMTP id CE37437B401 for ; Sun, 11 Feb 2001 00:35:44 -0800 (PST) Received: by titanic.medinet.si (Postfix, from userid 1000) id 0509226C06; Sun, 11 Feb 2001 09:35:43 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by titanic.medinet.si (Postfix) with ESMTP id E818D11708; Sun, 11 Feb 2001 09:35:43 +0100 (CET) Date: Sun, 11 Feb 2001 09:35:43 +0100 (CET) From: Blaz Zupan To: Matt Dillon Cc: , , Subject: Re: RE: Proposed makewhatis perl script fix In-Reply-To: <200102110819.f1B8Jk430590@earth.backplane.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > pkg_add runs tar with the --fast-read option to extract the table of > contents. When I remove the option pkg_add no longer reports broken > pipes. When gunzip'ing piped to tar, and tar exits early due to > the option, gunzip properly gets a 'gzip: stdout: Broken pipe' error. > > Maybe 'tar' was changed recently, maybe 'gunzip' was changed recently, > I don't know. But it isn't a kernel problem. The kernel is doing > exactly what it is supposed to be doing. A simple "cvs diff" between RELENG_4_2_0_RELEASE and RELENG_4 reveals, that gzip has not changed at all, while tar has only grown bzip2 support. As Kent suggests, ssh might be the problem. To verify, I have just logged in through telnet and done a "pkg_add gmake-3.79.1.tgz". And yes indeed, the broken pipe message disappears. So the OpenSSH 2.3.0 seems to be causing the problem. Blaz Zupan, Medinet d.o.o, Linhartova 21, 2000 Maribor, Slovenia E-mail: blaz@amis.net, Tel: +386-2-320-6320, Fax: +386-2-320-6325 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 0:42:46 2001 Delivered-To: freebsd-stable@freebsd.org Received: from pit.databus.com (p101-45.acedsl.com [160.79.101.45]) by hub.freebsd.org (Postfix) with ESMTP id 01F4037B503 for ; Sun, 11 Feb 2001 00:42:25 -0800 (PST) Received: (from barney@localhost) by pit.databus.com (8.11.1/8.11.1) id f1B8fmd52008; Sun, 11 Feb 2001 03:41:48 -0500 (EST) (envelope-from barney) Date: Sun, 11 Feb 2001 03:41:48 -0500 From: Barney Wolff To: Blaz Zupan Cc: Matt Dillon , Andrew.Hodgkins@hurlburt.af.mil, kstewart@urx.com, freebsd-stable@FreeBSD.ORG Subject: Re: RE: Proposed makewhatis perl script fix Message-ID: <20010211034147.A51972@pit.databus.com> References: <200102110819.f1B8Jk430590@earth.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from blaz@amis.net on Sun, Feb 11, 2001 at 09:35:43AM +0100 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Er, could it possibly be that telnet has been hiding the error all along? It's really, really hard to see how ssh could *create* this sort of error. Barney Wolff On Sun, Feb 11, 2001 at 09:35:43AM +0100, Blaz Zupan wrote: > > pkg_add runs tar with the --fast-read option to extract the table of > > contents. When I remove the option pkg_add no longer reports broken > > pipes. When gunzip'ing piped to tar, and tar exits early due to > > the option, gunzip properly gets a 'gzip: stdout: Broken pipe' error. > > > > Maybe 'tar' was changed recently, maybe 'gunzip' was changed recently, > > I don't know. But it isn't a kernel problem. The kernel is doing > > exactly what it is supposed to be doing. > > A simple "cvs diff" between RELENG_4_2_0_RELEASE and RELENG_4 reveals, that > gzip has not changed at all, while tar has only grown bzip2 support. > > As Kent suggests, ssh might be the problem. To verify, I have just logged in > through telnet and done a "pkg_add gmake-3.79.1.tgz". And yes indeed, the > broken pipe message disappears. > > So the OpenSSH 2.3.0 seems to be causing the problem. > > Blaz Zupan, Medinet d.o.o, Linhartova 21, 2000 Maribor, Slovenia > E-mail: blaz@amis.net, Tel: +386-2-320-6320, Fax: +386-2-320-6325 > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 0:47:28 2001 Delivered-To: freebsd-stable@freebsd.org Received: from outmail.utsunomiya-u.ac.jp (outmail.utsunomiya-u.ac.jp [160.12.196.3]) by hub.freebsd.org (Postfix) with ESMTP id 2265B37B699 for ; Sun, 11 Feb 2001 00:47:11 -0800 (PST) Received: from zodiac.mech.utsunomiya-u.ac.jp (IDENT:+Zbhu1Ih0ql86MmNLcALScPNciJuvIBk@zodiac.mech.utsunomiya-u.ac.jp [160.12.42.1]) by outmail.utsunomiya-u.ac.jp (8.11.0/3.7Wpl2) with ESMTP id f1B8l9M11553; Sun, 11 Feb 2001 17:47:09 +0900 (JST) Received: from zodiac.mech.utsunomiya-u.ac.jp (IDENT:Y5sF8fQo9yfm27BMTEokN9NS2zURyAEK@zodiac.mech.utsunomiya-u.ac.jp [160.12.42.1]) by zodiac.mech.utsunomiya-u.ac.jp (8.9.3+3.2W/3.7W/zodiac-May2000) with ESMTP id RAA08201; Sun, 11 Feb 2001 17:55:09 +0900 (JST) Message-Id: <200102110855.RAA08201@zodiac.mech.utsunomiya-u.ac.jp> To: Matt Dillon Cc: Warner Losh , Jesper Skriver , Robert , freebsd-stable@FreeBSD.ORG, yokota@zodiac.mech.utsunomiya-u.ac.jp Reply-To: kazutaka.yokota@nifty.com Subject: Re: uh oh - after 4 -> 4.2 cvsup, no keyboard. any ideas? In-reply-to: Your message of "Sun, 11 Feb 2001 00:24:16 PST." <200102110824.f1B8OG930647@earth.backplane.com> References: <20010204112503.E71706@skriver.dk> <200102110424.f1B4OVW18984@harmony.village.org> <200102110446.f1B4ksR29654@earth.backplane.com> <200102110525.OAA06084@zodiac.mech.utsunomiya-u.ac.jp> <200102110549.f1B5n8A29927@earth.backplane.com> <200102110616.PAA07027@zodiac.mech.utsunomiya-u.ac.jp> <200102110619.f1B6Jn830124@earth.backplane.com> <200102110638.PAA07364@zodiac.mech.utsunomiya-u.ac.jp> <200102110644.f1B6imq30235@earth.backplane.com> <200102110705.QAA07655@zodiac.mech.utsunomiya-u.ac.jp> <200102110824.f1B8OG930647@earth.backplane.com> Date: Sun, 11 Feb 2001 17:55:08 +0900 From: Kazutaka YOKOTA Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >:If the flags 0x100 is specified to syscons (this is now default in >:GENERIC), syscons should revert to the AT keyboard when the USB >:keyboard has gone. >: >:Kazu > > ok... so if we remove 'flags 0x1' from atkbd0, and leave > 'flags 0x100' on sc0, and add an entry to /etc/usbd.conf to > transfer control to the USB keyboard, then we will be ok? Or not? Yes, it should be OK. But, I have to check several things before we go committing things. IIRC, currently USB keyboards (for that matter, the AT keyboard too) don't have explicit /dev entries. We need to add them, otherwise usbd and kbdcontrol won't be able to refer to the newly attached USB keyboard. Kazu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 1:29:51 2001 Delivered-To: freebsd-stable@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id D75B737B401 for ; Sun, 11 Feb 2001 01:29:32 -0800 (PST) Received: from [212.238.54.101] (helo=freebie.demon.nl) by post.mail.nl.demon.net with smtp (Exim 3.14 #2) id 14Rsoz-0004I3-00; Sun, 11 Feb 2001 09:29:30 +0000 Received: (from wkb@localhost) by freebie.demon.nl (8.11.1/8.11.1) id f1B9W6l17350; Sun, 11 Feb 2001 10:32:06 +0100 (CET) (envelope-from wkb) Date: Sun, 11 Feb 2001 10:32:06 +0100 From: Wilko Bulte To: Danny Braniss Cc: Kirill Ponomarew , freebsd-stable@freebsd.org Subject: Re: troubles with Adaptec 29160 ULTRA160 SCSI Message-ID: <20010211103206.C16600@freebie.demon.nl> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from danny@cs.huji.ac.il on Sun, Feb 11, 2001 at 09:13:59AM +0200 X-OS: FreeBSD 4.2-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Feb 11, 2001 at 09:13:59AM +0200, Danny Braniss wrote: FWIW: My 29160 works just fine with yesterdays stable. I suspect plumbing problems like Danny says Wilko > i've had similar problems, in my case after changing cable/terminator > the problem was fixed. > > danny > > In message <20010211031935.A520@uni-duesseldorf.de>you write: > }Hi, > } > }I've installed FreeBSD 4.2 -RELEASE and did cvsup last night to -STABLE, > }then tried /stand/sysinstall and the console hung with message > }"Probing devices" , in dmesg there was following information: > } > }Feb 10 01:27:50 arne /kernel: Untagged Q(6): 13 > }Feb 10 01:27:50 arne /kernel: (sa0:ahc0:0:6:0): Queuing a BDR SCB > }Feb 10 01:27:50 arne /kernel: (sa0:ahc0:0:6:0): Bus Device Reset Message > }Sent > }Feb 10 01:27:50 arne /kernel: (sa0:ahc0:0:6:0): no longer in timeout, > }status = 34b > }Feb 10 01:27:50 arne /kernel: ahc0: Bus Device Reset on A:6. 1 SCBs > aborted > }Feb 10 03:27:47 arne /kernel: (sa0:ahc0:0:6:0): SCB 0xd - timed out > }while idle, SEQADDR == 0x4 > }Feb 10 03:27:47 arne /kernel: STACK == 0x1, 0x106, 0x15e, 0x174 > }Feb 10 03:27:47 arne /kernel: SXFRCTL0 == 0x80 > }Feb 10 03:27:47 arne /kernel: SCB count = 230 > }Feb 10 03:27:48 arne /kernel: QINFIFO entries: > }Feb 10 03:27:48 arne /kernel: Waiting Queue entries: > }Feb 10 03:27:49 arne /kernel: Disconnected Queue entries: 23:13 > }Feb 10 03:27:49 arne /kernel: QOUTFIFO entries: > }Feb 10 03:27:49 arne /kernel: Sequencer Free SCB List: 21 5 31 2 14 15 > }30 28 4 18 11 17 27 22 13 12 26 9 8 25 20 1 16 0 3 24 7 10 6 29 19 > }Feb 10 03:27:50 arne /kernel: Pending list: 13 > }Feb 10 03:27:50 arne /kernel: Kernel Free SCB list: 77 39 61 128 125 55 > }95 30 27 23 84 123 67 92 88 103 129 19 58 75 108 85 34 100 28 56 115 50 > } > }every 2 hours this messages repeated > } > }I have Adaptec 29160 ULTRA160 SCSI, IBM SCSI harddisks and HP-DAT > }Streamer. > } > }-- > }Kirill Ponomarew > } > } > }To Unsubscribe: send mail to majordomo@FreeBSD.org > }with "unsubscribe freebsd-stable" in the body of the message > } > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message ---end of quoted text--- -- | / o / / _ Arnhem, The Netherlands email: wilko@freebsd.org |/|/ / / /( (_) Bulte http://www.freebsd.org http://www.nlfug.nl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 1:54:10 2001 Delivered-To: freebsd-stable@freebsd.org Received: from musique.teaser.fr (musique.teaser.net [213.91.2.11]) by hub.freebsd.org (Postfix) with ESMTP id 5189737B4EC for ; Sun, 11 Feb 2001 01:53:53 -0800 (PST) Received: from titine.fr.eu.org (Cour-N1D34-006.teaser.net [213.91.34.6]) by musique.teaser.fr (Postfix) with ESMTP id BFC127250C for ; Sun, 11 Feb 2001 10:53:49 +0100 (CET) Received: by titine.fr.eu.org (Postfix, from userid 1001) id B9408EB; Sun, 11 Feb 2001 10:49:17 +0100 (CET) X-Attribution: Jaco To: Subject: Re: ata driver and HighPoint HPT370 ATA100 controller References: <86vgqigi6j.fsf@titine.fr.eu.org> <002501c093cf$fa1a8810$1200a8c0@gsicomp.on.ca> From: Eric Jacoboni Date: 11 Feb 2001 10:49:17 +0100 In-Reply-To: <002501c093cf$fa1a8810$1200a8c0@gsicomp.on.ca> ("Matthew Emmerton"'s message of "Sat, 10 Feb 2001 21:11:39 -0500") Message-ID: <86itmh5z36.fsf@titine.fr.eu.org> Lines: 15 User-Agent: Gnus/5.090001 (Oort Gnus v0.01) Emacs/21.0.97 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> "Matthew" == Matthew Emmerton writes: Matthew> Even though your controller supports UDMA operation, not all Matthew> devices use it. Thanks, i know that ;-) Matthew> A quick scan of the manual for your Plextor Matthew> seems to indicate that it only operates in PIO4 mode, and not Matthew> UDMA33/66/100.. ???? What are you talking about ? I've read the Plextor manual, and there's no such an indication. -- Éric Jacoboni, né il y a 1285246056 secondes. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 3:28:22 2001 Delivered-To: freebsd-stable@freebsd.org Received: from arg1.demon.co.uk (arg1.demon.co.uk [194.222.34.166]) by hub.freebsd.org (Postfix) with ESMTP id 1311B37B401 for ; Sun, 11 Feb 2001 03:28:02 -0800 (PST) Received: by arg1.demon.co.uk (Postfix, from userid 300) id 4769B9B1E; Sun, 11 Feb 2001 11:28:00 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by arg1.demon.co.uk (Postfix) with ESMTP id 121D25D16; Sun, 11 Feb 2001 11:28:00 +0000 (GMT) Date: Sun, 11 Feb 2001 11:27:59 +0000 (GMT) From: Andrew Gordon X-Sender: arg@server.arg.sj.co.uk To: Warner Losh Cc: FreeBSD Subject: Re: 4.0 Release -> 4.2-Stable should be ok ? via cvsup ? In-Reply-To: <200102110429.f1B4TMW19017@harmony.village.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 10 Feb 2001, Warner Losh wrote: > > Yes. I've done this with Feb 4th sources on our 4.0-RELEASE > firewall. Well, I'm waiting for a time to do the make > installworld/installkernel since the machine isn't at my house and I'm > nervous about doing it remotely since I screw 4 people if something > goes wrong. I hope that's _late_ Feb 4th sources if your firewall uses ipfw: ipfw was substantially broken from 2001/02/01 20:25:09 to 2001/02/04 05:48:59 (/sys/netinet/ip_fw.c rev 1.131.2.13 is the bad version). We were upgrading our firewall around that time and were dismayed to find it wide-open after the upgrade! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 4:14:26 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hobbiton.shire.net (frogmorton.shire.net [204.228.145.136]) by hub.freebsd.org (Postfix) with ESMTP id 5F6C237B401 for ; Sun, 11 Feb 2001 04:14:04 -0800 (PST) Received: from [38.37.111.52] (helo=lime) by hobbiton.shire.net with esmtp (Exim 2.04 #5) id 14Ropo-0001df-00; Sat, 10 Feb 2001 22:14:05 -0700 Date: Sun, 11 Feb 2001 07:15:34 -0500 From: "Chad Leigh, Pengar Ent Inc & Shire.Net LLC" Reply-To: chad@pengar.com To: Danny Braniss , Kirill Ponomarew Cc: freebsd-stable@FreeBSD.ORG Subject: Re: troubles with Adaptec 29160 ULTRA160 SCSI Message-ID: <2623191215.981875734@lime> In-Reply-To: X-Mailer: Mulberry/2.0.0 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi Yes, I concur. I had similar problems on an Adaptec 3985 (788x based) where I changed out a cable and the messages went away and so did the physical hanging problems I was having. Chad --On Sunday, February 11, 2001 9:13 AM +0200 Danny Braniss wrote: > i've had similar problems, in my case after changing cable/terminator > the problem was fixed. > > danny > > In message <20010211031935.A520@uni-duesseldorf.de>you write: > }Hi, > } > }I've installed FreeBSD 4.2 -RELEASE and did cvsup last night to -STABLE, > }then tried /stand/sysinstall and the console hung with message > }"Probing devices" , in dmesg there was following information: > } > }Feb 10 01:27:50 arne /kernel: Untagged Q(6): 13 > }Feb 10 01:27:50 arne /kernel: (sa0:ahc0:0:6:0): Queuing a BDR SCB > }Feb 10 01:27:50 arne /kernel: (sa0:ahc0:0:6:0): Bus Device Reset Message > }Sent > }Feb 10 01:27:50 arne /kernel: (sa0:ahc0:0:6:0): no longer in timeout, > }status = 34b > }Feb 10 01:27:50 arne /kernel: ahc0: Bus Device Reset on A:6. 1 SCBs > aborted > }Feb 10 03:27:47 arne /kernel: (sa0:ahc0:0:6:0): SCB 0xd - timed out > }while idle, SEQADDR == 0x4 > }Feb 10 03:27:47 arne /kernel: STACK == 0x1, 0x106, 0x15e, 0x174 > }Feb 10 03:27:47 arne /kernel: SXFRCTL0 == 0x80 > }Feb 10 03:27:47 arne /kernel: SCB count = 230 > }Feb 10 03:27:48 arne /kernel: QINFIFO entries: > }Feb 10 03:27:48 arne /kernel: Waiting Queue entries: > }Feb 10 03:27:49 arne /kernel: Disconnected Queue entries: 23:13 > }Feb 10 03:27:49 arne /kernel: QOUTFIFO entries: > }Feb 10 03:27:49 arne /kernel: Sequencer Free SCB List: 21 5 31 2 14 15 > }30 28 4 18 11 17 27 22 13 12 26 9 8 25 20 1 16 0 3 24 7 10 6 29 19 > }Feb 10 03:27:50 arne /kernel: Pending list: 13 > }Feb 10 03:27:50 arne /kernel: Kernel Free SCB list: 77 39 61 128 125 55 > }95 30 27 23 84 123 67 92 88 103 129 19 58 75 108 85 34 100 28 56 115 50 > } > }every 2 hours this messages repeated > } > }I have Adaptec 29160 ULTRA160 SCSI, IBM SCSI harddisks and HP-DAT > }Streamer. > } > }-- > }Kirill Ponomarew > } > } > }To Unsubscribe: send mail to majordomo@FreeBSD.org > }with "unsubscribe freebsd-stable" in the body of the message > } > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 4:29:32 2001 Delivered-To: freebsd-stable@freebsd.org Received: from gw-nl1.origin-it.com (gw-nl1.origin-it.com [193.79.128.34]) by hub.freebsd.org (Postfix) with ESMTP id 6353937B401 for ; Sun, 11 Feb 2001 04:29:10 -0800 (PST) Received: from mail.de.origin-it.com (localhost.origin-it.com [127.0.0.1]) by gw-nl1.origin-it.com with ESMTP id NAA13178; Sun, 11 Feb 2001 13:28:20 +0100 (MET) (envelope-from Helge.Oldach@de.origin-it.com) Received: from smtprelay-de1.origin-it.com(172.16.188.53) by gw-nl1.origin-it.com via mwrap (4.0a) id xma013176; Sun, 11 Feb 01 13:28:20 +0100 Received: from mailhub.de.origin-it.com (mailhub.de.origin-it.com [172.16.189.20]) by mail.de.origin-it.com (8.9.3/8.8.5-1.2.2m-19990317) with ESMTP id NAA04677; Sun, 11 Feb 2001 13:28:19 +0100 (MET) Received: from galaxy.de.cp.philips.com (galaxy.de.cp.philips.com [130.143.166.29]) by mailhub.de.origin-it.com (8.11.1/8.11.1/hmo23oct00) with ESMTP id f1BCSIK50963; Sun, 11 Feb 2001 13:28:18 +0100 (CET) (envelope-from Helge.Oldach@de.origin-it.com) Received: (from hmo@localhost) by galaxy.de.cp.philips.com (8.9.3/8.9.3/hmo14aug98) id NAA06399; Sun, 11 Feb 2001 13:28:16 +0100 (MET) Message-Id: <200102111228.NAA06399@galaxy.de.cp.philips.com> Subject: Re: Ports updating... Good ways? In-Reply-To: from Jim Weeks at "Feb 8, 2001 7:18:50 pm" To: jim@siteplus.net (Jim Weeks) Date: Sun, 11 Feb 2001 13:28:16 +0100 (MET) Cc: david@bushong.net, freebsd-stable@FreeBSD.ORG, mvh@ix.netcom.com, kaltorak@quake.com.au From: Helge Oldach X-Address: Atos Origin, Billstrasse 80, D-20539 Hamburg, Germany X-Phone: +49 40 7886 464, Fax: +49 40 7886 235, Mobile: +49 160 4782517 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jim Weeks: >On Thu, 8 Feb 2001, David Bushong wrote: >> I'll try to put a "cleanup" mode in one of these days, but it's rather nasty, >> since basically you have to: >> >> pkg_delete all of the versions (including the most recent), pkg_delete all >> of the programs that depended on older versions, reinstall/rebuild the most >> recent version, then rebuild the dependent packages. > >You don't really have to do this. You can remove the info files for the >old versions from /var/db/pkg/. For instance, if you have checked >pkg_info and found you have two versions of zip ie zip-2.3 and zip-2.2, >simply rm -r /var/db/pkg/zip-2.2 Disagree. Consider that zip-2.2 had added a file /usr/local/where/ever which is no longer part of zip-2.3. Now you want that one cleaned up as well, don't you? Having two versions of one port installed is generally a Bad Thing as it may result in orphan files. Helge To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 5: 2:47 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hda.hda.com (host65.hda.com [63.104.68.65]) by hub.freebsd.org (Postfix) with ESMTP id 9D81637B4EC for ; Sun, 11 Feb 2001 05:02:27 -0800 (PST) Received: (from dufault@localhost) by hda.hda.com (8.11.1/8.11.1) id f1BD1ML14545 for stable@freebsd.org; Sun, 11 Feb 2001 08:01:22 -0500 (EST) (envelope-from dufault) From: Peter Dufault Message-Id: <200102111301.f1BD1ML14545@hda.hda.com> Subject: Re: uh oh - after 4 -> 4.2 cvsup, no keyboard. any ideas? In-Reply-To: <200102110855.RAA08201@zodiac.mech.utsunomiya-u.ac.jp> from Kazutaka YOKOTA at "Feb 11, 2001 05:55:08 pm" To: stable@freebsd.org Date: Sun, 11 Feb 2001 08:01:12 -0500 (EST) X-Mailer: ELM [version 2.4ME+ PL61 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > >:If the flags 0x100 is specified to syscons (this is now default in > >:GENERIC), syscons should revert to the AT keyboard when the USB > >:keyboard has gone. > >: > >:Kazu > > > > ok... so if we remove 'flags 0x1' from atkbd0, and leave > > 'flags 0x100' on sc0, and add an entry to /etc/usbd.conf to > > transfer control to the USB keyboard, then we will be ok? Or not? > > Yes, it should be OK. But, I have to check several things before we go > committing things. IIRC, currently USB keyboards (for that matter, > the AT keyboard too) don't have explicit /dev entries. We need to add > them, otherwise usbd and kbdcontrol won't be able to refer to the > newly attached USB keyboard. To work properly it has to be done at a lower level than usbd, you want it working when you boot into ddb. USB keyboards do have /dev entries, I have a cordless USB keyboard, I've been doing this insufficient hack at boot: if [ -c /dev/kbd1 ]; then cp /dev/null /dev/kbd1 2> /dev/null if [ $? = 0 ]; then /usr/sbin/kbdcontrol -k /dev/kbd1 fi fi which works for me especially since I just leave a second keyboard plugged into it. Yes, I know this is no solution. I assume there was a problem with leaving both keyboards enabled and mixing the input? That would work for me. Peter -- Peter Dufault (dufault@hda.com) Realtime development, Machine control, HD Associates, Inc. Fail-Safe systems, Agency approval To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 5:37:14 2001 Delivered-To: freebsd-stable@freebsd.org Received: from kline-station.ckdhr.com (kline-station.ckdhr.com [209.58.172.141]) by hub.freebsd.org (Postfix) with SMTP id 61CF037B401 for ; Sun, 11 Feb 2001 05:37:11 -0800 (PST) Received: (qmail 17155 invoked by uid 139); 11 Feb 2001 13:37:09 -0000 To: Barney Wolff Cc: Blaz Zupan , Matt Dillon , Andrew.Hodgkins@hurlburt.af.mil, kstewart@urx.com, freebsd-stable@FreeBSD.ORG Subject: Re: Proposed makewhatis perl script fix References: <200102110819.f1B8Jk430590@earth.backplane.com> <20010211034147.A51972@pit.databus.com> X-Face: I8Alb*-ZdjN\/8k_QR,^l^m6GQB'S-B:}DVP].1HOw#tx:TX$k;Wl;4zqjWR|-jheM#? &beRf(!|0b0m=M~=%.Am>"QEY.(#Ys.%"s?z,hmwp&y0%p>9+T X-Attribution: ckd Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Christopher K Davis Date: 11 Feb 2001 08:37:09 -0500 In-Reply-To: Barney Wolff's message of "Sun, 11 Feb 2001 03:41:48 -0500" Message-ID: Lines: 46 X-Mailer: Gnus v5.6.44/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Barney Wolff writes: > Er, could it possibly be that telnet has been hiding the error > all along? It's really, really hard to see how ssh could > *create* this sort of error. Try the following patch (which I dug up off the Web after the previous go-round on this problem). It seems to work. (The indentation is wrong, I know. I had to apply the patch -l because the HTMLization of the original mail message hosed the whitespace.) --- /usr/src/crypto/openssh/session.c Sun Feb 4 10:01:29 2001 +++ /usr/src/crypto/openssh/session.c.PIPE_PATCH Sun Feb 4 10:01:58 2001 @@ -448,8 +448,6 @@ if (s == NULL) fatal("do_exec_no_pty: no session"); - signal(SIGPIPE, SIG_DFL); - session_proctitle(s); #ifdef USE_PAM @@ -461,6 +459,8 @@ /* Child. Reinitialize the log since the pid has changed. */ log_init(__progname, options.log_level, options.log_facility, log_stderr); + signal(SIGPIPE, SIG_DFL); + /* * Create a new session and process group since the 4.4BSD * setlogin() affects the entire process group. @@ -569,6 +569,8 @@ if ((pid = fork()) == 0) { /* Child. Reinitialize the log because the pid has changed. */ log_init(__progname, options.log_level, options.log_facility, log_stderr); + + signal(SIGPIPE, SIG_DFL); /* Close the master side of the pseudo tty. */ close(ptyfd); -- Christopher Davis * * Put location information in your DNS! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 5:40: 6 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ultra.ultra.net.au (ultra.ultra.net.au [203.20.237.5]) by hub.freebsd.org (Postfix) with ESMTP id 2BA3D37B401 for ; Sun, 11 Feb 2001 05:40:02 -0800 (PST) Received: from ultraNB (j.brizzy.ultra.net.au [203.46.33.140]) by ultra.ultra.net.au (8.10.2/8.10.2) with SMTP id f1BDduG23991 for ; Sun, 11 Feb 2001 23:39:57 +1000 (EST) From: "Allan McDonald" To: Subject: Date: Sun, 11 Feb 2001 23:29:49 +1000 Message-ID: <000f01c0942e$b54e7c00$2a5150ca@ultra.net.au> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Importance: Normal Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG subscribe allan@nq.com.au To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 6:10:57 2001 Delivered-To: freebsd-stable@freebsd.org Received: from titanic.medinet.si (titanic.medinet.si [212.18.32.66]) by hub.freebsd.org (Postfix) with ESMTP id F3A9E37B401 for ; Sun, 11 Feb 2001 06:10:52 -0800 (PST) Received: by titanic.medinet.si (Postfix, from userid 1000) id DD72826C06; Sun, 11 Feb 2001 15:10:51 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by titanic.medinet.si (Postfix) with ESMTP id D18DB11708; Sun, 11 Feb 2001 15:10:51 +0100 (CET) Date: Sun, 11 Feb 2001 15:10:51 +0100 (CET) From: Blaz Zupan To: Christopher K Davis Cc: Barney Wolff , Matt Dillon , , , Subject: Re: Proposed makewhatis perl script fix In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Try the following patch (which I dug up off the Web after the previous > go-round on this problem). It seems to work. > > (The indentation is wrong, I know. I had to apply the patch -l because > the HTMLization of the original mail message hosed the whitespace.) Excellent, this seems to be the fix! Could a commiter please review and commit this? Blaz Zupan, Medinet d.o.o, Linhartova 21, 2000 Maribor, Slovenia E-mail: blaz@amis.net, Tel: +386-2-320-6320, Fax: +386-2-320-6325 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 6:27:57 2001 Delivered-To: freebsd-stable@freebsd.org Received: from point.osg.gov.bc.ca (point.osg.gov.bc.ca [142.32.102.44]) by hub.freebsd.org (Postfix) with ESMTP id 7274B37B4EC for ; Sun, 11 Feb 2001 06:27:53 -0800 (PST) Received: (from daemon@localhost) by point.osg.gov.bc.ca (8.8.7/8.8.8) id GAA12224; Sun, 11 Feb 2001 06:26:46 -0800 Received: from passer.osg.gov.bc.ca(142.32.110.29) via SMTP by point.osg.gov.bc.ca, id smtpda12222; Sun Feb 11 06:26:32 2001 Received: (from uucp@localhost) by passer.osg.gov.bc.ca (8.11.2/8.9.1) id f1BEQRG77572; Sun, 11 Feb 2001 06:26:27 -0800 (PST) Received: from cwsys9.cwsent.com(10.2.2.1), claiming to be "cwsys.cwsent.com" via SMTP by passer9.cwsent.com, id smtpdZ77570; Sun Feb 11 06:26:03 2001 Received: (from uucp@localhost) by cwsys.cwsent.com (8.11.2/8.9.1) id f1BEQ3K98277; Sun, 11 Feb 2001 06:26:03 -0800 (PST) Message-Id: <200102111426.f1BEQ3K98277@cwsys.cwsent.com> Received: from localhost.cwsent.com(127.0.0.1), claiming to be "cwsys" via SMTP by localhost.cwsent.com, id smtpdl98271; Sun Feb 11 06:25:45 2001 X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 Reply-To: Cy Schubert - ITSD Open Systems Group From: Cy Schubert - ITSD Open Systems Group X-Sender: schubert To: Kent Stewart Cc: Blaz Zupan , Matt Dillon , Andrew.Hodgkins@hurlburt.af.mil, freebsd-stable@FreeBSD.ORG Subject: Re: Proposed makewhatis perl script fix In-reply-to: Your message of "Sat, 10 Feb 2001 23:59:49 PST." <3A864675.3A752582@urx.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 11 Feb 2001 06:25:44 -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <3A864675.3A752582@urx.com>, Kent Stewart writes: > > > Blaz Zupan wrote: > > > > > :Actually, I don't think it fixed everything. There have been ports > > > :that also had problems with piping to tar and broken pipes. It > > > :wouldn't surprise me if the makewhatis problem was only a little piece > > > :of what is broken. > > > : > > > :Kent > > > > > > makewhatis is just makewhatis... it has nothing to do with tar. > > > > > > When you tar something up, tar writes full blocks. But when you unta > r > > > something the actual end of the archive may occur in the middle of a > > > block. tar will close the input descriptor 'early' in this case, > > > potentially before gunzip or uncompress manage to write the last bloc > k > > > of zeros. > > > > I also don't believe that this is the real fix - there is something fishy > > going on in stable. I just upgraded all of our servers from 4.2-RELEASE to > > 4.2-STABLE and I see the following messages upon installing *any* package: > > > > /home/blaz# pkg_add gmake-3.79.1.tgz > > > > gzip: stdout: Broken pipe > > tar: child returned status 1 > /home/blaz# > > > > The package actually appears to install and work fine. I also noticed simil > ar > > messages from gzip during "make" on a port, but again the port built and > > installed fine after that. > > > > So no, your makewhatis patch only appears to be a bandaid, but there is > > something going on deeper (possibly in the kernel) that was not there in > > 4.2-RELEASE. > > Were you using ssh to login on to the computers when you were doing the > package/port work? That seems to be the common thread from my end. At > least, the broken pipes didn't start occuring until the version of > Openssh was updated. If I telnet and do my work no problem; however, if > I use ssh, then I see broken pipes. Could it be some interaction between -STABLE and OpenSSH 2.3.0? I installed OpenSSH 2.3.0 on some 4.2-RELEASE systems, including the src/secure bits, and have had no broken pipes problems when using ssh. Regards, Phone: (250)387-8437 Cy Schubert Fax: (250)387-5766 Team Leader, Sun/Alpha Team Internet: Cy.Schubert@osg.gov.bc.ca Open Systems Group, ITSD, ISTA Province of BC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 6:45:38 2001 Delivered-To: freebsd-stable@freebsd.org Received: from snark.ptc.spbu.ru (snark.ptc.spbu.ru [195.19.225.131]) by hub.freebsd.org (Postfix) with ESMTP id A75CB37B401 for ; Sun, 11 Feb 2001 06:45:34 -0800 (PST) Received: (from uwe@localhost) by snark.ptc.spbu.ru (8.8.8+Sun/8.8.8) id RAA09820 for freebsd-stable@freebsd.org; Sun, 11 Feb 2001 17:45:32 +0300 (MSK) Date: Sun, 11 Feb 2001 17:45:31 +0300 From: "Valeriy E. Ushakov" To: freebsd-stable@freebsd.org Subject: Re: Proposed makewhatis perl script fix Message-ID: <20010211174531.A9773@snark.ptc.spbu.ru> Mail-Followup-To: freebsd-stable@freebsd.org References: <3A864675.3A752582@urx.com> <200102111426.f1BEQ3K98277@cwsys.cwsent.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.3i In-Reply-To: <200102111426.f1BEQ3K98277@cwsys.cwsent.com>; from "Cy Schubert - ITSD Open Systems Group" on Sun, Feb 11, 2001 at 06:25:44 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Feb 11, 2001 at 06:25:44 -0800, Cy Schubert wrote: > > > So no, your makewhatis patch only appears to be a bandaid, but > > > there is something going on deeper (possibly in the kernel) that > > > was not there in 4.2-RELEASE. > > > > Were you using ssh to login on to the computers when you were > > doing the package/port work? That seems to be the common thread > > from my end. At least, the broken pipes didn't start occuring > > until the version of Openssh was updated. If I telnet and do my > > work no problem; however, if I use ssh, then I see broken pipes. > > Could it be some interaction between -STABLE and OpenSSH 2.3.0? I > installed OpenSSH 2.3.0 on some 4.2-RELEASE systems, including the > src/secure bits, and have had no broken pipes problems when using ssh. Well, in Russian BSD newsgroup I see complaints that even $ program | more # and press `q' while program is still running giving the same error. OTOH, I have -STABLE as of Feb 3 (i.e. with openssh 2.3.0) on my home box and I do *not* see this problem when I slogin to it from office. SY, Uwe -- uwe@ptc.spbu.ru | Zu Grunde kommen http://www.ptc.spbu.ru/~uwe/ | Ist zu Grunde gehen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 6:57:44 2001 Delivered-To: freebsd-stable@freebsd.org Received: from point.osg.gov.bc.ca (point.osg.gov.bc.ca [142.32.102.44]) by hub.freebsd.org (Postfix) with ESMTP id AF5E737B401 for ; Sun, 11 Feb 2001 06:57:41 -0800 (PST) Received: (from daemon@localhost) by point.osg.gov.bc.ca (8.8.7/8.8.8) id GAA12265; Sun, 11 Feb 2001 06:56:47 -0800 Received: from passer.osg.gov.bc.ca(142.32.110.29) via SMTP by point.osg.gov.bc.ca, id smtpda12263; Sun Feb 11 06:56:37 2001 Received: (from uucp@localhost) by passer.osg.gov.bc.ca (8.11.2/8.9.1) id f1BEuWd77665; Sun, 11 Feb 2001 06:56:32 -0800 (PST) Received: from cwsys9.cwsent.com(10.2.2.1), claiming to be "cwsys.cwsent.com" via SMTP by passer9.cwsent.com, id smtpdw77663; Sun Feb 11 06:56:07 2001 Received: (from uucp@localhost) by cwsys.cwsent.com (8.11.2/8.9.1) id f1BEu7r98447; Sun, 11 Feb 2001 06:56:07 -0800 (PST) Message-Id: <200102111456.f1BEu7r98447@cwsys.cwsent.com> Received: from localhost.cwsent.com(127.0.0.1), claiming to be "cwsys" via SMTP by localhost.cwsent.com, id smtpdL98442; Sun Feb 11 06:55:56 2001 X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 Reply-To: Cy Schubert - ITSD Open Systems Group From: Cy Schubert - ITSD Open Systems Group X-Sender: schubert To: "Valeriy E. Ushakov" Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Proposed makewhatis perl script fix In-reply-to: Your message of "Sun, 11 Feb 2001 17:45:31 +0300." <20010211174531.A9773@snark.ptc.spbu.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 11 Feb 2001 06:55:56 -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20010211174531.A9773@snark.ptc.spbu.ru>, "Valeriy E. Ushakov" write s: > On Sun, Feb 11, 2001 at 06:25:44 -0800, Cy Schubert wrote: > > > > > So no, your makewhatis patch only appears to be a bandaid, but > > > > there is something going on deeper (possibly in the kernel) that > > > > was not there in 4.2-RELEASE. > > > > > > Were you using ssh to login on to the computers when you were > > > doing the package/port work? That seems to be the common thread > > > from my end. At least, the broken pipes didn't start occuring > > > until the version of Openssh was updated. If I telnet and do my > > > work no problem; however, if I use ssh, then I see broken pipes. > > > > Could it be some interaction between -STABLE and OpenSSH 2.3.0? I > > installed OpenSSH 2.3.0 on some 4.2-RELEASE systems, including the > > src/secure bits, and have had no broken pipes problems when using ssh. > > Well, in Russian BSD newsgroup I see complaints that even > > $ program | more # and press `q' while program is still running > > giving the same error. > > OTOH, I have -STABLE as of Feb 3 (i.e. with openssh 2.3.0) on my home > box and I do *not* see this problem when I slogin to it from office. Based upon what I've seen on this list and my own empirical evidence, I think it must be combination of conditions, e.g. -STABLE as of and OpenSSH 2.3.0. Regards, Phone: (250)387-8437 Cy Schubert Fax: (250)387-5766 Team Leader, Sun/Alpha Team Internet: Cy.Schubert@osg.gov.bc.ca Open Systems Group, ITSD, ISTA Province of BC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 7:28:58 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ece.cmu.edu (ECE.CMU.EDU [128.2.236.200]) by hub.freebsd.org (Postfix) with ESMTP id 0690537B401 for ; Sun, 11 Feb 2001 07:28:56 -0800 (PST) Received: from pyanfar.ece.cmu.edu (r8cimp@PYANFAR.REM.CMU.EDU [128.2.87.225]) by ece.cmu.edu (8.11.0/8.10.2) with ESMTP id f1BFSPZ29073; Sun, 11 Feb 2001 10:28:25 -0500 (EST) Date: Sun, 11 Feb 2001 10:28:23 -0500 From: "Brandon S. Allbery KF8NH" To: Barney Wolff , Blaz Zupan Cc: Matt Dillon , Andrew.Hodgkins@hurlburt.af.mil, kstewart@urx.com, freebsd-stable@FreeBSD.ORG Subject: Re: RE: Proposed makewhatis perl script fix Message-ID: <23180000.981905303@pyanfar.ece.cmu.edu> In-Reply-To: <20010211034147.A51972@pit.databus.com> X-Mailer: Mulberry/2.0.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sunday, February 11, 2001 03:41:48 -0500, Barney Wolff wrote: +----- | Er, could it possibly be that telnet has been hiding the error | all along? It's really, really hard to see how ssh could | *create* this sort of error. +--->8 Someone mentioned earlier that sshd seemed to be setting SIGPIPE to SIG_IGN in the child shell; that would lead to subprocesses getting EPIPE instead of SIGPIPE, and typically the application reports the former and tar's parent the latter, so the new error behavior would be expected. -- brandon s. allbery [os/2][linux][solaris][japh] allbery@kf8nh.apk.net system administrator [WAY too many hats] allbery@ece.cmu.edu electrical and computer engineering KF8NH carnegie mellon university ["better check the oblivious first" -ke6sls] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 7:36:51 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ece.cmu.edu (ECE.CMU.EDU [128.2.236.200]) by hub.freebsd.org (Postfix) with ESMTP id BD1D437B491 for ; Sun, 11 Feb 2001 07:36:47 -0800 (PST) Received: from pyanfar.ece.cmu.edu (dslp24@PYANFAR.REM.CMU.EDU [128.2.87.225]) by ece.cmu.edu (8.11.0/8.10.2) with ESMTP id f1BFaQZ29393; Sun, 11 Feb 2001 10:36:26 -0500 (EST) Date: Sun, 11 Feb 2001 10:36:25 -0500 From: "Brandon S. Allbery KF8NH" To: chad@pengar.com, Danny Braniss , Kirill Ponomarew Cc: freebsd-stable@FreeBSD.ORG Subject: Re: troubles with Adaptec 29160 ULTRA160 SCSI Message-ID: <29740000.981905785@pyanfar.ece.cmu.edu> In-Reply-To: <2623191215.981875734@lime> X-Mailer: Mulberry/2.0.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sunday, February 11, 2001 07:15:34 -0500, "Chad Leigh, Pengar Ent Inc & Shire.Net LLC" wrote: +----- | Hi | | Yes, I concur. I had similar problems on an Adaptec 3985 (788x based) | where I changed out a cable and the messages went away and so did the | physical hanging problems I was having. | | Chad | | --On Sunday, February 11, 2001 9:13 AM +0200 Danny Braniss | wrote: | | > i've had similar problems, in my case after changing cable/terminator | > the problem was fixed. +--->8 Absolutely. I just tracked down a SCSI problem that variously manifested as hangs, disk errors, or sometimes not at all depending on what devices were plugged/unplugged as improper termination of the last device on the narrow leg on the SCSI chain. (Interestingly, the problem had existed for several *years* but only caused problems when I plugged a wide device in.) SCSI is notorious for this kind of behavior. -- brandon s. allbery [os/2][linux][solaris][japh] allbery@kf8nh.apk.net system administrator [WAY too many hats] allbery@ece.cmu.edu electrical and computer engineering KF8NH carnegie mellon university ["better check the oblivious first" -ke6sls] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 7:37:49 2001 Delivered-To: freebsd-stable@freebsd.org Received: from netcore.fi (netcore.fi [193.94.160.1]) by hub.freebsd.org (Postfix) with ESMTP id E43BC37B491 for ; Sun, 11 Feb 2001 07:37:44 -0800 (PST) Received: from localhost (pekkas@localhost) by netcore.fi (8.11.1/8.11.1) with ESMTP id f1BFbgo15309 for ; Sun, 11 Feb 2001 17:37:43 +0200 Date: Sun, 11 Feb 2001 17:37:42 +0200 (EET) From: Pekka Savola To: Subject: 3.5-S->4.2-S: still fail w/ setresuid on miniperl Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello all, As a lot of others including some @FreeBSD.org people, I got: --- cd /usr/src/gnu/usr.bin/perl/miniperl && make miniperl Extracting config.h (with variable substitutions) cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -c /usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5/miniperlmain.c ln -sf /usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5/op.c opmini.c cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -c opmini.c cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -L/usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl -static -o miniperl miniperlmain.o opmini.o /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl/libperl.a -lm -lcrypt -lutil /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl/libperl.a(pp_hot.o): In function `Perl_pp_aassign': pp_hot.o(.text+0x16a1): undefined reference to `setresuid' pp_hot.o(.text+0x16d4): undefined reference to `setresgid' *** Error code 1 --- while trying to update from the latest 3.5-S to 4.2-S. Both had been CVSupped within 24h. I followed the UPDATING instructions. make buildworld -DNOPERL works around this, of course. But shouldn't this be fixed? Or are 3.x users such a diminishing community it's not worth risking breaking the tree? For the record, I think these commits fubared the build (as 4.1-R has been reported to work): http://www.freebsd.org/cgi/cvsweb.cgi/src/gnu/usr.bin/perl/Makefile.diff?r1=1.9&r2=1.9.2.1 ITOH, I guess MFC'ing these change, it _might_ work again: http://www.freebsd.org/cgi/cvsweb.cgi/src/gnu/usr.bin/perl/Makefile.diff?r1=1.12&r2=1.13 Please Cc:. -- Pekka Savola "Tell me of difficulties surmounted, Netcore Oy not those you stumble over and fall" Systems. Networks. Security. -- Robert Jordan: A Crown of Swords To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 7:39:39 2001 Delivered-To: freebsd-stable@freebsd.org Received: from moon.harmonic.co.il (moon.harmonic.co.il [192.116.140.65]) by hub.freebsd.org (Postfix) with ESMTP id 0C62C37B491 for ; Sun, 11 Feb 2001 07:39:35 -0800 (PST) Received: (from nobody@localhost) by moon.harmonic.co.il (8.9.3/8.9.3) id RAA02974; Sun, 11 Feb 2001 17:36:35 +0200 To: Matt Dillon Subject: Re: RE: Proposed makewhatis perl script fix Message-ID: <981905794.3a86b1830102a@webmail.harmonic.co.il> Date: Sun, 11 Feb 2001 17:36:35 +0200 (IST) From: Roman Shterenzon Cc: freebsd-stable@FreeBSD.ORG References: <200102110819.f1B8Jk430590@earth.backplane.com> In-Reply-To: <200102110819.f1B8Jk430590@earth.backplane.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP IMAP webmail program 2.2.2 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Quoting Matt Dillon : > :> :of what is broken. > :> : > :> :Kent > :> > :> makewhatis is just makewhatis... it has nothing to do with tar. > :> > :> When you tar something up, tar writes full blocks. But when you > untar > :> something the actual end of the archive may occur in the middle > of a > :> block. tar will close the input descriptor 'early' in this case, > :> potentially before gunzip or uncompress manage to write the last > block > :> of zeros. > : > :I also don't believe that this is the real fix - there is something > fishy > :going on in stable. I just upgraded all of our servers from 4.2-RELEASE > to > :4.2-STABLE and I see the following messages upon installing *any* > package: > : > :/home/blaz# pkg_add gmake-3.79.1.tgz > : > :gzip: stdout: Broken pipe > :tar: child returned status 1 > :/home/blaz# > : > :The package actually appears to install and work fine. I also noticed > similar > :messages from gzip during "make" on a port, but again the port built > and > :installed fine after that. > : > :So no, your makewhatis patch only appears to be a bandaid, but there is > :something going on deeper (possibly in the kernel) that was not there > in > :4.2-RELEASE. > : > :Blaz Zupan, Medinet d.o.o, Linhartova 21, 2000 Maribor, Slovenia > :E-mail: blaz@amis.net, Tel: +386-2-320-6320, Fax: +386-2-320-6325 > > There's nothing wrong with the kernel. It's exactly what I said it > was. > > pkg_add runs tar with the --fast-read option to extract the table of > contents. When I remove the option pkg_add no longer reports broken > pipes. When gunzip'ing piped to tar, and tar exits early due to > the option, gunzip properly gets a 'gzip: stdout: Broken pipe' > error. > > Maybe 'tar' was changed recently, maybe 'gunzip' was changed > recently, > I don't know. But it isn't a kernel problem. The kernel is doing > exactly what it is supposed to be doing. > I'm not sure, but there were rumors floating around that its due to some bug in the new OpenSSH. Can you confirm it? --Roman Shterenzon, UNIX System Administrator and Consultant [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 7:55: 4 2001 Delivered-To: freebsd-stable@freebsd.org Received: from barbera.system.pl (barbera.system.pl [195.205.185.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BD7737B401 for ; Sun, 11 Feb 2001 07:55:00 -0800 (PST) Received: (from saper@localhost) by barbera.system.pl (SYSTEM Internet) id f1BFoJf45685 for freebsd-stable@FreeBSD.org; Sun, 11 Feb 2001 16:50:19 +0100 (CET) Date: Sun, 11 Feb 2001 16:50:19 +0100 From: Marcin Cieslak To: freebsd-stable@FreeBSD.org Subject: Re: uh oh - after 4 -> 4.2 cvsup, no keyboard. any ideas? Message-ID: <20010211165019.A43734@barbera.system.pl> Mail-Followup-To: freebsd-stable@FreeBSD.org References: <200102110424.f1B4OVW18984@harmony.village.org> <200102110446.f1B4ksR29654@earth.backplane.com> <200102110525.OAA06084@zodiac.mech.utsunomiya-u.ac.jp> <200102110549.f1B5n8A29927@earth.backplane.com> <200102110616.PAA07027@zodiac.mech.utsunomiya-u.ac.jp> <200102110619.f1B6Jn830124@earth.backplane.com> <200102110638.PAA07364@zodiac.mech.utsunomiya-u.ac.jp> <200102110644.f1B6imq30235@earth.backplane.com> <200102110705.QAA07655@zodiac.mech.utsunomiya-u.ac.jp> <200102110824.f1B8OG930647@earth.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <200102110824.f1B8OG930647@earth.backplane.com>; from dillon@earth.backplane.com on Sun, Feb 11, 2001 at 12:24:16AM -0800 Organization: SYSTEM Internet Provider - http://www.system.pl/ Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Matt Dillon (dillon@earth.backplane.com) napisa³(a): > > :If the flags 0x100 is specified to syscons (this is now default in > :GENERIC), syscons should revert to the AT keyboard when the USB > :keyboard has gone. > : > :Kazu > > ok... so if we remove 'flags 0x1' from atkbd0, and leave > 'flags 0x100' on sc0, and add an entry to /etc/usbd.conf to > transfer control to the USB keyboard, then we will be ok? Or not? Lemme complicate things a little bit. I have 0x0100 with sc0, no flags 0x1 with atkbd0: atkbdc0: at port 0x60,0x64 on isa0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x100> and... surprise... I have console="comconsole" in my /boot/loader.conf The box has a built-in VGA card, so we've plugged in kbd/vga multiplexer, we have ttyv0 enabled in /etc/ttys and... we experience a login prompt, but no kbd response. Serial console works fine - it's still used remotely and definitely deserves its /etc/ttys entry, however it would be nice to have a possibility to play with virtual console while in server room. kbdcontrol -k /dev/kbd0 didn't help much... A whole com/at/usb keyboard, serial/vga console plus "dual console" feature and -h flags are getting a bit messy to me... Although much better than ol' Solaris /etc/system entry. -- << Marcin Cieslak // saper@system.pl >> ----------------------------------------------------------------- SYSTEM Internet Provider http://www.system.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 7:58:48 2001 Delivered-To: freebsd-stable@freebsd.org Received: from titanic.medinet.si (titanic.medinet.si [212.18.32.66]) by hub.freebsd.org (Postfix) with ESMTP id DBB1037B401 for ; Sun, 11 Feb 2001 07:58:46 -0800 (PST) Received: by titanic.medinet.si (Postfix, from userid 1000) id CE69326C06; Sun, 11 Feb 2001 16:58:45 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by titanic.medinet.si (Postfix) with ESMTP id C106F1170C; Sun, 11 Feb 2001 16:58:45 +0100 (CET) Date: Sun, 11 Feb 2001 16:58:45 +0100 (CET) From: Blaz Zupan To: "Valeriy E. Ushakov" Cc: Subject: Re: Proposed makewhatis perl script fix In-Reply-To: <20010211174531.A9773@snark.ptc.spbu.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Well, in Russian BSD newsgroup I see complaints that even > > $ program | more # and press `q' while program is still running > > giving the same error. I don't see that myself. Blaz Zupan, Medinet d.o.o, Linhartova 21, 2000 Maribor, Slovenia E-mail: blaz@amis.net, Tel: +386-2-320-6320, Fax: +386-2-320-6325 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 8:15:28 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 813D037B69D for ; Sun, 11 Feb 2001 08:15:25 -0800 (PST) Received: from billy-club.village.org (billy-club.village.org [10.0.0.3]) by rover.village.org (8.11.2/8.11.0) with ESMTP id f1BGFMh13352; Sun, 11 Feb 2001 09:15:23 -0700 (MST) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (localhost [127.0.0.1]) by billy-club.village.org (8.11.1/8.8.3) with ESMTP id f1BGCuE03386; Sun, 11 Feb 2001 09:12:56 -0700 (MST) Message-Id: <200102111612.f1BGCuE03386@billy-club.village.org> To: Andrew Gordon Subject: Re: 4.0 Release -> 4.2-Stable should be ok ? via cvsup ? Cc: FreeBSD In-reply-to: Your message of "Sun, 11 Feb 2001 11:27:59 GMT." References: Date: Sun, 11 Feb 2001 09:12:56 -0700 From: Warner Losh Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message Andrew Gordon writes: : I hope that's _late_ Feb 4th sources if your firewall uses ipfw: ipfw was : substantially broken from 2001/02/01 20:25:09 to 2001/02/04 05:48:59 : (/sys/netinet/ip_fw.c rev 1.131.2.13 is the bad version). : : We were upgrading our firewall around that time and were dismayed to find : it wide-open after the upgrade! Yes. Since I'm on the security-officer's list still, I had planned the upgrade for a day earlier, but put things off until the fixes were committed. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 8:45:15 2001 Delivered-To: freebsd-stable@freebsd.org Received: from beta.root-servers.ch (beta.root-servers.ch [195.49.33.19]) by hub.freebsd.org (Postfix) with SMTP id 6543337B401 for ; Sun, 11 Feb 2001 08:45:08 -0800 (PST) Received: (qmail 7826 invoked from network); 11 Feb 2001 16:45:06 -0000 Received: from dclient106-31.hispeed.ch (HELO WORK) (62.2.106.31) by beta.root-servers.ch with SMTP; 11 Feb 2001 16:45:06 -0000 Date: Sun, 11 Feb 2001 17:46:27 +0100 From: Gabriel Ambuehl X-Mailer: The Bat! (v1.49) UNREG / CD5BF9353B3B7091 Organization: BUZ Internet Services X-Priority: 3 (Normal) Message-ID: <2489184901.20010211174627@buz.ch> To: stable@freebsd.org Subject: 4.2 STABLE kernel broken? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hello, I built new world and kernels today. Trying to boot them, I always run into the following: Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-STABLE #2: Sun Feb 11 13:16:55 CET 2001 root@local.root.li:/usr/obj/usr/src/sys/ffnonwpboxes Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 501887921 Hz CPU: AMD-K6(tm) 3D processor (unknown-class CPU) Origin = "AuthenticAMD" Id = 0x58c Stepping = 12 Features=0x8021bf AMD Features=0x80000800 panic: CPU class not configured This is a K6-2 500 (on, IIRC, VIA MVP3). I haven't changed the config file since the last build (which was as smooth as always) except that I ramped up maxusers to 64. Loading an old kernel by hand works perfectly smooth. On another note: my K6-2 500 running 5-CURRENT won't boot 5-CURRENT kernels of today... Best regards, Gabriel -----BEGIN PGP SIGNATURE----- Version: PGP 6.0.2i iQEVAwUBOoaz1MZa2WpymlDxAQEOQAf+IKpM5kVEdSANEKWEV6qSwZ+VnbZJ8L4r Jn5ArmTDdIZMx+OqVKJZ7KhNmuZXHBX2zsCKjHalIAFwWufaDLEy0ck0MzHohvZT FGChQrE49ahKYcookgDj48uMenKqPuoYjcP30003cjLgAaP+A7Kov1qYv+Hj1Btq RAX5krT63PyTXpU9QvZs4Ql7oC6WFDPsNXdW+ljFA405dpCYhTQ2G/nJIXadl2cX vGQCGBlnNGB7DW4uTuwDkH+xYV1NVeOVDvRcQzt0jXUQAqK9WbZdbRu/XYFsKoOR uV53887JuheJqzhb+E5m1hDoGs3O0IA4nvPO5zMIMwpxo8izR86TKA== =orqF -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 8:48:54 2001 Delivered-To: freebsd-stable@freebsd.org Received: from webhydra.com (cc520639-a.ewndsr1.nj.home.com [24.180.76.250]) by hub.freebsd.org (Postfix) with SMTP id 6E00C37B401 for ; Sun, 11 Feb 2001 08:48:51 -0800 (PST) Received: (qmail 1162 invoked from network); 11 Feb 2001 16:48:49 -0000 Received: from localhost (HELO webhydra.com) (127.0.0.1) by localhost with SMTP; 11 Feb 2001 16:48:49 -0000 From: Rossen Raykov Date: Sun, 11 Feb 2001 11:48:23 -0500 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: freebsd-stable@freebsd.org Subject: sysinstall and ports for 4.2-STABBLE MIME-Version: 1.0 Message-Id: <01021111482300.00511@webhydra.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi All, After "make world" when I started /stand/sysinstall and tryed to install ports collection, I received the following message: lqqqqqqqqqqqqqqqq User Confirmation Requested qqqqqqqqqqqqqqqqk x Warning: Can't find the `4.2-STABLE' distribution on this x x FTP server. You may need to visit a different server for x x the release you are trying to fetch or go to the Options x x menu and to set the release name to explicitly match what's x x available on ftp.freebsd.org (or set to "any"). x x x x Would you like to select another FTP server? x tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqu x [ Yes ] No x mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj This happend for the primary site and for releng4.freebsd.org. Any help? Thanks, Rossen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 10: 8: 2 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mongoose.slip.net (www2.sntccaidc.firstworld.net [216.127.92.130]) by hub.freebsd.org (Postfix) with ESMTP id F0A8337B491 for ; Sun, 11 Feb 2001 10:08:00 -0800 (PST) Received: from oak-pm2-45-237.dialup.slip.net ([209.209.14.237]) by mongoose.slip.net with esmtp (Exim 3.13 #3) id 14S0sz-0005Yr-00; Sun, 11 Feb 2001 10:06:10 -0800 Mime-Version: 1.0 X-Sender: cshishid@pop.slip.net Message-Id: In-Reply-To: References: Date: Sun, 11 Feb 2001 10:09:31 -0800 To: Pekka Savola , From: Clark Shishido Subject: Re: 3.5-S->4.2-S: still fail w/ setresuid on miniperl Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG try these instructions: http://www.FreeBSD.org/cgi/getmsg.cgi?fetch=699499+706204+/usr/local/www/db/text/2000/freebsd-stable/20000806.freebsd-stable I did it once on a mail server and vowed never to do it again if I didn't have to. Basically you have to build perl separately. --clark 3.5-STABLE to 4-STABLE upgrade. miniperl, setresuid, 3.5-STABLE, RELENG_3, 4-STABLE, RELENG_4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 10:52:22 2001 Delivered-To: freebsd-stable@freebsd.org Received: from shemp.palomine.net (shemp.palomine.net [205.198.88.200]) by hub.freebsd.org (Postfix) with SMTP id A50BE37B491 for ; Sun, 11 Feb 2001 10:52:16 -0800 (PST) Received: (qmail 28296 invoked by uid 1000); 11 Feb 2001 18:52:14 -0000 Date: Sun, 11 Feb 2001 13:52:14 -0500 From: Chris Johnson To: Pekka Savola Cc: freebsd-stable@freebsd.org Subject: Re: 3.5-S->4.2-S: still fail w/ setresuid on miniperl Message-ID: <20010211135214.A28014@palomine.net> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="J/dobhs11T7y2rNN" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from pekkas@netcore.fi on Sun, Feb 11, 2001 at 05:37:42PM +0200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --J/dobhs11T7y2rNN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Feb 11, 2001 at 05:37:42PM +0200, Pekka Savola wrote: > As a lot of others including some @FreeBSD.org people, I got: [snip] > pp_hot.o(.text+0x16a1): undefined reference to `setresuid' > pp_hot.o(.text+0x16d4): undefined reference to `setresgid' > *** Error code 1 > --- >=20 > while trying to update from the latest 3.5-S to 4.2-S. Both had been > CVSupped within 24h. I followed the UPDATING instructions. Have you tried to upgrade to 4.0-RELEASE first, and then to 4.2-STABLE? I've never had the problem you're having, but I've never tried to make as big a = jump as you're trying to do. Chris --J/dobhs11T7y2rNN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6ht9dyeUEMvtGLWERAuSTAJ9NbZl8LhWpyE33CV914ln8Y6EjfwCcCSNN G8Aot8s94fPBgeA2IjoYcD0= =lyi7 -----END PGP SIGNATURE----- --J/dobhs11T7y2rNN-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 11:27:16 2001 Delivered-To: freebsd-stable@freebsd.org Received: from copernicus.tranquility.net (the.outroad.org [206.152.117.186]) by hub.freebsd.org (Postfix) with ESMTP id 1607637B401 for ; Sun, 11 Feb 2001 11:27:08 -0800 (PST) Received: (from bweaver@localhost) by copernicus.tranquility.net (8.11.1/8.11.1) id f1BJUCO00234; Sun, 11 Feb 2001 13:30:12 -0600 (CST) (envelope-from bweaver) Date: Sun, 11 Feb 2001 13:30:12 -0600 From: Ben Weaver To: Rossen Raykov Cc: freebsd-stable@FreeBSD.ORG Subject: Re: sysinstall and ports for 4.2-STABBLE Message-ID: <20010211133011.A167@tranquility.net> References: <01021111482300.00511@webhydra.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="fdj2RfSjLxBAspz7" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01021111482300.00511@webhydra.com>; from rossen@webhydra.com on Sun, Feb 11, 2001 at 11:48:23AM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --fdj2RfSjLxBAspz7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable What you probaby need to do is either: 1. Go to "Options" in the main menu of sysinstall, and change "Release Name= " to 4.2-RELEASE. THe ports are the same for the entire 4.x branch, so you= will be OK 2. Use cvsup to sync your ports tree. If find this the easiest, anyway, bu= t it's all a matter of taste. To install cvsup: cd /usr/ports/net/cvsup make all install clean You can find documentation on cvsup at http://www.freebsd.org/handbook/cvsu= p.htnl -Ben=20 On Sun, Feb 11, 2001 at 11:48:23AM -0500, Rossen Raykov wrote: > Hi All, >=20 > After "make world" when I started /stand/sysinstall and tryed to install= =20 > ports collection, I received the following message: >=20 >=20 > lqqqqqqqqqqqqqqqq User Confirmation Requested qqqqqqqqqqqqqqqqk > x Warning: Can't find the `4.2-STABLE' distribution on this x > x FTP server. You may need to visit a different server for x > x the release you are trying to fetch or go to the Options x > x menu and to set the release name to explicitly match what's x > x available on ftp.freebsd.org (or set to "any"). x > x x > x Would you like to select another FTP server? x > tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqu > x [ Yes ] No x > mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj >=20 >=20 > This happend for the primary site and for releng4.freebsd.org. >=20 > Any help? >=20 > Thanks, > Rossen >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message --fdj2RfSjLxBAspz7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6huhDlLyqskZtc9ERAtuMAJ4kKmr2Cb0/hn4KFm47I+5zrIDonACcDNxO cPFljeAjuVMOn0yllwz3Q24= =zQA/ -----END PGP SIGNATURE----- --fdj2RfSjLxBAspz7-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 11:31:25 2001 Delivered-To: freebsd-stable@freebsd.org Received: from level3.dynacom.net (level3.dynacom.net [206.107.213.213]) by hub.freebsd.org (Postfix) with SMTP id 821C237B401 for ; Sun, 11 Feb 2001 11:31:20 -0800 (PST) Received: (qmail 5619 invoked by uid 0); 11 Feb 2001 19:31:19 -0000 Received: from dsl1-160.dynacom.net (HELO urx.com) (206.159.132.160) by mail.urx.com with SMTP; 11 Feb 2001 19:31:19 -0000 Message-ID: <3A86E888.832840FC@urx.com> Date: Sun, 11 Feb 2001 11:31:20 -0800 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Warner Losh Cc: Andrew Gordon , FreeBSD Subject: Re: 4.0 Release -> 4.2-Stable should be ok ? via cvsup ? References: <200102111612.f1BGCuE03386@billy-club.village.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh wrote: > > In message Andrew Gordon writes: > : I hope that's _late_ Feb 4th sources if your firewall uses ipfw: ipfw was > : substantially broken from 2001/02/01 20:25:09 to 2001/02/04 05:48:59 > : (/sys/netinet/ip_fw.c rev 1.131.2.13 is the bad version). > : > : We were upgrading our firewall around that time and were dismayed to find > : it wide-open after the upgrade! > > Yes. Since I'm on the security-officer's list still, I had planned > the upgrade for a day earlier, but put things off until the fixes were > committed. Thanks for this thread because of it, I found that I could telnet in from the outside world. Something that was supposed to be completely turned off. I was still logging the activity but was really kind of shocked. Kent > > Warner > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 11:40:21 2001 Delivered-To: freebsd-stable@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id F3B5237B401 for ; Sun, 11 Feb 2001 11:40:18 -0800 (PST) Received: (from dillon@localhost) by earth.backplane.com (8.11.1/8.9.3) id f1BJdpC33248; Sun, 11 Feb 2001 11:39:51 -0800 (PST) (envelope-from dillon) Date: Sun, 11 Feb 2001 11:39:51 -0800 (PST) From: Matt Dillon Message-Id: <200102111939.f1BJdpC33248@earth.backplane.com> To: "Brandon S. Allbery KF8NH" Cc: Barney Wolff , Blaz Zupan , Andrew.Hodgkins@hurlburt.af.mil, kstewart@urx.com, freebsd-stable@FreeBSD.ORG Subject: Re: RE: Proposed makewhatis perl script fix References: <23180000.981905303@pyanfar.ece.cmu.edu> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG From the signal() manual page: When a process which has installed signal handlers forks, the child pro- cess inherits the signals. All caught signals may be reset to their de- fault action by a call to the execve(2) function; ignored signals remain ignored. So I would say that it is definitely ssh that is changing the SIGPIPE methodology. gunzip must be exiting without generating an error message with SIGPIPE is SIG_DFL. If gunzip were ever to catch the signal and report it, though, we will wind up with the errors popping up again, even if we fix ssh. For now I think ssh should be fixed. -Matt :On Sunday, February 11, 2001 03:41:48 -0500, Barney Wolff : wrote: :+----- :| Er, could it possibly be that telnet has been hiding the error :| all along? It's really, really hard to see how ssh could :| *create* this sort of error. :+--->8 : :Someone mentioned earlier that sshd seemed to be setting SIGPIPE to SIG_IGN :in the child shell; that would lead to subprocesses getting EPIPE instead :of SIGPIPE, and typically the application reports the former and tar's :parent the latter, so the new error behavior would be expected. : :-- :brandon s. allbery [os/2][linux][solaris][japh] allbery@kf8nh.apk.net :system administrator [WAY too many hats] allbery@ece.cmu.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 14:20:14 2001 Delivered-To: freebsd-stable@freebsd.org Received: from m08.alpha-net.ne.jp (m08.alpha-net.ne.jp [210.229.64.38]) by hub.freebsd.org (Postfix) with ESMTP id 27A1137B401; Sun, 11 Feb 2001 14:20:07 -0800 (PST) Received: from kyoto-tc012-p149.alpha-net.ne.jp (kyoto-tc012-p149.alpha-net.ne.jp [210.237.118.183]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id HAA23844; Mon, 12 Feb 2001 07:19:53 +0900 (JST) Received: from souffle.bogus-local.net (localhost [127.0.0.1]) by kyoto-tc012-p149.alpha-net.ne.jp (Postfix) with ESMTP id 308E116B8A; Mon, 12 Feb 2001 07:19:57 +0900 (JST) Date: Mon, 12 Feb 2001 07:19:56 +0900 Message-ID: <86r914amlv.wl@cheerful.com> From: FUJISHIMA Satsuki To: Barney Wolff Cc: Kenneth W Cochran , ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: Mozilla build failure, 4-stable In-Reply-To: <20010210010445.A43496@pit.databus.com> References: <200102100231.VAA00143@world.std.com> <20010210010445.A43496@pit.databus.com> User-Agent: Wanderlust/2.4.0 (Rio) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.1 (AOI) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Sat, 10 Feb 2001 01:04:45 -0500, Barney Wolff wrote: > > Try anything BUT /usr/obj as WRKDIRPREFIX. /usr/obj/ports, for > example. I found most or all ports fail to build if that > specific directory is used. I have no idea why. man make and read .OBJDIR section. -- FUJISHIMA Satsuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 15: 9:52 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mls.gtonet.net (mls.gtonet.net [216.112.90.195]) by hub.freebsd.org (Postfix) with ESMTP id 044C637B401 for ; Sun, 11 Feb 2001 15:09:48 -0800 (PST) Received: from pld (pld.gtonet.net [216.112.90.200]) by mls.gtonet.net (8.11.2/8.11.2) with SMTP id f1BN9lZ04868 for ; Sun, 11 Feb 2001 15:09:48 -0800 (PST) (envelope-from oldfart@gtonet.net) Reply-To: From: "oldfart@gtonet" To: Subject: RE: 3.5-S->4.2-S: still fail w/ setresuid on miniperl Date: Sun, 11 Feb 2001 15:09:46 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 In-Reply-To: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've been having the exact same problem with the same upgrade for 3 days now. I keep cvsuping/making buildworld/etc, hoping that someone will fix it soon but it doesn't look like it's going to happen. For the amount of time I've spent so far, just trying to get it to work right, I could have formatted/re-installed/reconfigured. OF > -----Original Message----- > From: owner-freebsd-stable@FreeBSD.ORG > [mailto:owner-freebsd-stable@FreeBSD.ORG]On Behalf Of Pekka Savola > Sent: Sunday, February 11, 2001 7:38 AM > To: freebsd-stable@FreeBSD.ORG > Subject: 3.5-S->4.2-S: still fail w/ setresuid on miniperl > > > Hello all, > > As a lot of others including some @FreeBSD.org people, I got: > --- > cd /usr/src/gnu/usr.bin/perl/miniperl && make miniperl > Extracting config.h (with variable substitutions) > cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 > -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -c > /usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5/minip > erlmain.c > ln -sf /usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5/op.c > opmini.c > cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 > -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -c opmini.c > cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 > -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl > -L/usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl -static -o > miniperl miniperlmain.o opmini.o > /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl/libperl.a -lm > -lcrypt -lutil > /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl/libperl.a(pp_hot.o): > In function `Perl_pp_aassign': > pp_hot.o(.text+0x16a1): undefined reference to `setresuid' > pp_hot.o(.text+0x16d4): undefined reference to `setresgid' > *** Error code 1 > --- > > while trying to update from the latest 3.5-S to 4.2-S. Both had been > CVSupped within 24h. I followed the UPDATING instructions. > > > make buildworld -DNOPERL works around this, of course. > > > But shouldn't this be fixed? Or are 3.x users such a diminishing > community it's not worth risking breaking the tree? > > > For the record, I think these commits fubared the build (as 4.1-R has been > reported to work): > > http://www.freebsd.org/cgi/cvsweb.cgi/src/gnu/usr.bin/perl/Makefil e.diff?r1=1.9&r2=1.9.2.1 ITOH, I guess MFC'ing these change, it _might_ work again: http://www.freebsd.org/cgi/cvsweb.cgi/src/gnu/usr.bin/perl/Makefile.diff?r1= 1.12&r2=1.13 Please Cc:. -- Pekka Savola "Tell me of difficulties surmounted, Netcore Oy not those you stumble over and fall" Systems. Networks. Security. -- Robert Jordan: A Crown of Swords To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 15:32: 7 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ibis.worldnet.net (ibis.worldnet.net [195.3.3.14]) by hub.freebsd.org (Postfix) with ESMTP id 028A637B401 for ; Sun, 11 Feb 2001 15:32:04 -0800 (PST) Received: from m3.worldnet.net (m3.worldnet.net [195.3.3.7]) by ibis.worldnet.net (8.11.2/8.11.1) with ESMTP id f1C1R6759488 for ; Mon, 12 Feb 2001 02:27:06 +0100 (CET) (envelope-from chainess@worldnet.net) Received: from pern.worldnet.net (ppp33-net1-idf3-bas1.isdnet.net [195.154.52.33]) by m3.worldnet.net (8.9.3/8.9.3) with ESMTP id AAA27433 for ; Mon, 12 Feb 2001 00:32:00 +0100 (CET) Message-Id: <5.0.2.1.2.20010212003432.01bf8b90@step.polymtl.ca> X-Sender: chainess@pop.worldnet.net X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Mon, 12 Feb 2001 00:35:06 +0100 To: From: Frederic Nguyen Subject: Re: 3.5-S->4.2-S: still fail w/ setresuid on miniperl Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You have to do it from step to step. Not a one-time upgrade. Add the following option in you make.conf : NOPERL = true NOSUIDPERL = true then, you can issue 'make world' if it fails, you'll have to compile libc and install it before if you still have complains about miniperl, edit Makefiles and erase it from there Make sure you did not intstall FreeBSD 3.x with badblock scans. Otherwise after upgrade, you won't be able to boot anymore. FreeBSD 4.x is not able to handle file system marked with badblocks Nobody ever *cared* about it. So if you did use badblock scan on your file system, you'll have to install a FreeBSD 4.x from scratch Or else, stick with FreeBSD 3.x CHaiNeSS At 17:37 01-02-11 +0200, you wrote: Hello all, As a lot of others including some @FreeBSD.org people, I got: --- cd /usr/src/gnu/usr.bin/perl/miniperl && make miniperl Extracting config.h (with variable substitutions) cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -c /usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5/miniperlmain.c ln -sf /usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5/op.c opmini.c cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -c opmini.c cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -L/usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl -static -o miniperl miniperlmain.o opmini.o /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl/libperl.a -lm -lcrypt -lutil /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl/libperl.a(pp_hot.o): In function `Perl_pp_aassign': pp_hot.o(.text+0x16a1): undefined reference to `setresuid' pp_hot.o(.text+0x16d4): undefined reference to `setresgid' *** Error code 1 --- while trying to update from the latest 3.5-S to 4.2-S. Both had been CVSupped within 24h. I followed the UPDATING instructions. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 17:12:39 2001 Delivered-To: freebsd-stable@freebsd.org Received: from pit.databus.com (p101-45.acedsl.com [160.79.101.45]) by hub.freebsd.org (Postfix) with ESMTP id 9CE5037B401; Sun, 11 Feb 2001 17:12:30 -0800 (PST) Received: (from barney@localhost) by pit.databus.com (8.11.1/8.11.1) id f1C1CTS54609; Sun, 11 Feb 2001 20:12:29 -0500 (EST) (envelope-from barney) Date: Sun, 11 Feb 2001 20:12:29 -0500 From: Barney Wolff To: FUJISHIMA Satsuki Cc: Barney Wolff , Kenneth W Cochran , ports@FreeBSD.org, stable@FreeBSD.org Subject: Re: Mozilla build failure, 4-stable Message-ID: <20010211201229.A54579@pit.databus.com> References: <200102100231.VAA00143@world.std.com> <20010210010445.A43496@pit.databus.com> <86r914amlv.wl@cheerful.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <86r914amlv.wl@cheerful.com>; from sf@FreeBSD.org on Mon, Feb 12, 2001 at 07:19:56AM +0900 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yes I understand the significance of /usr/obj, but not why, in detail, the port builds fail. In any case, if there are some specific directories that cause problems, perhaps bsd.port.mk should check for them and complain, rather than letting the build fail with baffling errors. Barney On Mon, Feb 12, 2001 at 07:19:56AM +0900, FUJISHIMA Satsuki wrote: > At Sat, 10 Feb 2001 01:04:45 -0500, > Barney Wolff wrote: > > > > Try anything BUT /usr/obj as WRKDIRPREFIX. /usr/obj/ports, for > > example. I found most or all ports fail to build if that > > specific directory is used. I have no idea why. > > man make and read .OBJDIR section. > > -- > FUJISHIMA Satsuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 17:55:11 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 360D837B401 for ; Sun, 11 Feb 2001 17:55:09 -0800 (PST) Received: from billy-club.village.org (billy-club.village.org [10.0.0.3]) by rover.village.org (8.11.2/8.11.0) with ESMTP id f1C1t1h15061; Sun, 11 Feb 2001 18:55:01 -0700 (MST) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (localhost [127.0.0.1]) by billy-club.village.org (8.11.1/8.8.3) with ESMTP id f1C1qSE05451; Sun, 11 Feb 2001 18:52:28 -0700 (MST) Message-Id: <200102120152.f1C1qSE05451@billy-club.village.org> To: Barney Wolff Subject: Re: Proposed makewhatis perl script fix Cc: Blaz Zupan , Matt Dillon , Andrew.Hodgkins@hurlburt.af.mil, kstewart@urx.com, freebsd-stable@FreeBSD.ORG In-reply-to: Your message of "Sun, 11 Feb 2001 03:41:48 EST." <20010211034147.A51972@pit.databus.com> References: <20010211034147.A51972@pit.databus.com> <200102110819.f1B8Jk430590@earth.backplane.com> Date: Sun, 11 Feb 2001 18:52:28 -0700 From: Warner Losh Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20010211034147.A51972@pit.databus.com> Barney Wolff writes: : Er, could it possibly be that telnet has been hiding the error : all along? It's really, really hard to see how ssh could : *create* this sort of error. Resource issues? Maybe the login class for telnet is different than the login class for ssh and thus has a bigger pipe buffer? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 17:58: 0 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 7D38937B401 for ; Sun, 11 Feb 2001 17:57:58 -0800 (PST) Received: from billy-club.village.org (billy-club.village.org [10.0.0.3]) by rover.village.org (8.11.2/8.11.0) with ESMTP id f1C1vvh15073; Sun, 11 Feb 2001 18:57:57 -0700 (MST) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (localhost [127.0.0.1]) by billy-club.village.org (8.11.1/8.8.3) with ESMTP id f1C1tYE05473; Sun, 11 Feb 2001 18:55:35 -0700 (MST) Message-Id: <200102120155.f1C1tYE05473@billy-club.village.org> To: Pekka Savola Subject: Re: 3.5-S->4.2-S: still fail w/ setresuid on miniperl Cc: freebsd-stable@FreeBSD.ORG In-reply-to: Your message of "Sun, 11 Feb 2001 17:37:42 +0200." References: Date: Sun, 11 Feb 2001 18:55:34 -0700 From: Warner Losh Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message Pekka Savola writes: : As a lot of others including some @FreeBSD.org people, I got: I'd suggest building -DNOPERL when upgrading. If that works (I have no 3.x boxes fast enough to test this on), then let me know so I can update UPDATING. : make buildworld -DNOPERL works around this, of course. Oh, that's different, I'll update UPDATING. : But shouldn't this be fixed? Or are 3.x users such a diminishing : community it's not worth risking breaking the tree? I think it should just work, but I'm afraid to touch perl to fix it :-) Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 18: 9: 7 2001 Delivered-To: freebsd-stable@freebsd.org Received: from outmail.utsunomiya-u.ac.jp (outmail.utsunomiya-u.ac.jp [160.12.196.3]) by hub.freebsd.org (Postfix) with ESMTP id CD9A937B401 for ; Sun, 11 Feb 2001 18:09:04 -0800 (PST) Received: from zodiac.mech.utsunomiya-u.ac.jp (IDENT:sHkU7i/lUK8Z0/sxfnRo/bLsxcig/Lc6@zodiac.mech.utsunomiya-u.ac.jp [160.12.42.1]) by outmail.utsunomiya-u.ac.jp (8.11.0/3.7Wpl2) with ESMTP id f1C292M17273; Mon, 12 Feb 2001 11:09:03 +0900 (JST) Received: from zodiac.mech.utsunomiya-u.ac.jp (IDENT:viTBzMsOhgenNRg1dxxKyVqajn3HY7mF@zodiac.mech.utsunomiya-u.ac.jp [160.12.42.1]) by zodiac.mech.utsunomiya-u.ac.jp (8.9.3+3.2W/3.7W/zodiac-May2000) with ESMTP id LAA12798; Mon, 12 Feb 2001 11:16:57 +0900 (JST) Message-Id: <200102120216.LAA12798@zodiac.mech.utsunomiya-u.ac.jp> To: Marcin Cieslak Cc: freebsd-stable@FreeBSD.org, yokota@zodiac.mech.utsunomiya-u.ac.jp Subject: Re: uh oh - after 4 -> 4.2 cvsup, no keyboard. any ideas? In-reply-to: Your message of "Sun, 11 Feb 2001 16:50:19 +0100." <20010211165019.A43734@barbera.system.pl> References: <200102110424.f1B4OVW18984@harmony.village.org> <200102110446.f1B4ksR29654@earth.backplane.com> <200102110525.OAA06084@zodiac.mech.utsunomiya-u.ac.jp> <200102110549.f1B5n8A29927@earth.backplane.com> <200102110616.PAA07027@zodiac.mech.utsunomiya-u.ac.jp> <200102110619.f1B6Jn830124@earth.backplane.com> <200102110638.PAA07364@zodiac.mech.utsunomiya-u.ac.jp> <200102110644.f1B6imq30235@earth.backplane.com> <200102110705.QAA07655@zodiac.mech.utsunomiya-u.ac.jp> <200102110824.f1B8OG930647@earth.backplane.com> <20010211165019.A43734@barbera.system.pl> Date: Mon, 12 Feb 2001 11:16:56 +0900 From: Kazutaka YOKOTA Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >Lemme complicate things a little bit. >I have 0x0100 with sc0, no flags 0x1 with atkbd0: > >atkbdc0: at port 0x60,0x64 on isa0 >vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 >sc0: at flags 0x100 on isa0 >sc0: VGA <16 virtual consoles, flags=0x100> Umm, this is strange. It's 4.2-STABLE, isn't it? Without the flags 0x1, atkbd0 should always install... Would you boot the system by giving "boot -v" at the boot loader prompt and let me see dmesg's output? Kazu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 18:55:53 2001 Delivered-To: freebsd-stable@freebsd.org Received: from pit.databus.com (p101-45.acedsl.com [160.79.101.45]) by hub.freebsd.org (Postfix) with ESMTP id 6EEC237B401 for ; Sun, 11 Feb 2001 18:55:47 -0800 (PST) Received: (from barney@localhost) by pit.databus.com (8.11.1/8.11.1) id f1C2tPF54997; Sun, 11 Feb 2001 21:55:25 -0500 (EST) (envelope-from barney) Date: Sun, 11 Feb 2001 21:55:25 -0500 From: Barney Wolff To: "Brandon S. Allbery KF8NH" Cc: Barney Wolff , Blaz Zupan , Matt Dillon , Andrew.Hodgkins@hurlburt.af.mil, kstewart@urx.com, freebsd-stable@FreeBSD.ORG Subject: Re: RE: Proposed makewhatis perl script fix Message-ID: <20010211215525.A54971@pit.databus.com> References: <20010211034147.A51972@pit.databus.com> <23180000.981905303@pyanfar.ece.cmu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <23180000.981905303@pyanfar.ece.cmu.edu>; from allbery@ece.cmu.edu on Sun, Feb 11, 2001 at 10:28:23AM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG If it's any comfort, I just noticed that Openssh 2.3.0 installed on an Irix system does the same thing, so at least it's not something FreeBSD did to it. I agree that the openssh behavior should be changed, but luckily the error message is likely to be just cosmetic unless the pipe writer does something destructive on EPIPE. Barney On Sun, Feb 11, 2001 at 10:28:23AM -0500, Brandon S. Allbery KF8NH wrote: > > Someone mentioned earlier that sshd seemed to be setting SIGPIPE to SIG_IGN > in the child shell; that would lead to subprocesses getting EPIPE instead > of SIGPIPE, and typically the application reports the former and tar's > parent the latter, so the new error behavior would be expected. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 18:56:39 2001 Delivered-To: freebsd-stable@freebsd.org Received: from veldy.net (w028.z064001117.msp-mn.dsl.cnc.net [64.1.117.28]) by hub.freebsd.org (Postfix) with ESMTP id 6657C37B401 for ; Sun, 11 Feb 2001 18:56:33 -0800 (PST) Received: from cascade (cascade.veldy.net [64.1.117.29]) by veldy.net (Postfix) with SMTP id 175DF8C71; Sun, 11 Feb 2001 20:55:56 -0600 (CST) Message-ID: <001601c0949f$3cf34260$1d750140@cascade> From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Cc: References: <200102110405.UAA90354@miles.cs.washington.edu> <00da01c093e0$72429f20$931576d8@inethouston.net> Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: Sun, 11 Feb 2001 20:55:20 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Why not? It works great for me. Also, when watching a DVD video (via Windows ;( ), you can not get the best performance unless you turn DMA on. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Matthew Emmerton" ; "Alec Wolman" Cc: ; "Eric Jacoboni" Sent: Saturday, February 10, 2001 10:09 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > There's a difference between UDMA and WDMA. From what I hear you don't want > UDMA on ATAPI devices anyways. > > > My plextor drive (same model) supports DMA. It is hooked up > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 19: 1:36 2001 Delivered-To: freebsd-stable@freebsd.org Received: from leviathan.inethouston.net (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id B560737B6AE for ; Sun, 11 Feb 2001 19:01:27 -0800 (PST) Received: from dwcjr (216-118-21-147.pdq.net [216.118.21.147]) by leviathan.inethouston.net (Postfix) with ESMTP id 431FF177E8B; Sun, 11 Feb 2001 21:01:29 -0600 (CST) Message-ID: <021801c094a0$173fa8a0$931576d8@inethouston.net> From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: References: <200102110405.UAA90354@miles.cs.washington.edu> <00da01c093e0$72429f20$931576d8@inethouston.net> <001601c0949f$3cf34260$1d750140@cascade> Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: Sun, 11 Feb 2001 21:01:23 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yes, but DMA != UDMA, they are two difference things, you'll have to ask soren and the group why not, but it was explained to me a while ago and made sense at the time. ----- Original Message ----- From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Cc: Sent: Sunday, February 11, 2001 8:55 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Why not? It works great for me. Also, when watching a DVD video (via > Windows ;( ), you can not get the best performance unless you turn DMA on. > > Tom Veldhouse > veldy@veldy.net > > ----- Original Message ----- > From: "David W. Chapman Jr." > To: "Matthew Emmerton" ; "Alec Wolman" > > Cc: ; "Eric Jacoboni" > Sent: Saturday, February 10, 2001 10:09 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > There's a difference between UDMA and WDMA. From what I hear you don't > want > > UDMA on ATAPI devices anyways. > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 20:41: 1 2001 Delivered-To: freebsd-stable@freebsd.org Received: from scaup.prod.itd.earthlink.net (scaup.prod.itd.earthlink.net [207.217.121.49]) by hub.freebsd.org (Postfix) with ESMTP id 91C9C37B401 for ; Sun, 11 Feb 2001 20:40:56 -0800 (PST) Received: from veager.siteplus.net (1Cust169.tnt10.chattanooga.tn.da.uu.net [63.22.145.169]) by scaup.prod.itd.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id UAA23967; Sun, 11 Feb 2001 20:40:52 -0800 (PST) Date: Sun, 11 Feb 2001 23:40:46 -0500 (EST) From: Jim Weeks To: Helge Oldach Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Ports updating... Good ways? In-Reply-To: <200102111228.NAA06399@galaxy.de.cp.philips.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 11 Feb 2001, Helge Oldach wrote: > Jim Weeks: > >On Thu, 8 Feb 2001, David Bushong wrote: > >> I'll try to put a "cleanup" mode in one of these days, but it's rather nasty, > >> since basically you have to: > >> > >> pkg_delete all of the versions (including the most recent), pkg_delete all > >> of the programs that depended on older versions, reinstall/rebuild the most > >> recent version, then rebuild the dependent packages. > > > >You don't really have to do this. You can remove the info files for the > >old versions from /var/db/pkg/. For instance, if you have checked > >pkg_info and found you have two versions of zip ie zip-2.3 and zip-2.2, > >simply rm -r /var/db/pkg/zip-2.2 > > Disagree. Consider that zip-2.2 had added a file /usr/local/where/ever > which is no longer part of zip-2.3. Now you want that one cleaned up as > well, don't you? Well, as I said in an earlier amendment to this thread, no. My opinion of this matter, and it is just that, my opinion. Disk real-estate is cheaper than down time. Sometimes cleaning out every dependacy associated with a critical package can results in the machine becoming inoperable for too long a period. I hold to the opinion that a good house-cleaning, as in moving user files to a completely new installation, is a better choice when you feel things have become to muddled. This is purely my opinion. I appreciate yours ;-) Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 20:43:36 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ugai.uvd-omsk.su (unknown [195.162.36.70]) by hub.freebsd.org (Postfix) with ESMTP id EB6EA37B401 for ; Sun, 11 Feb 2001 20:43:29 -0800 (PST) Received: from sergey (sergey.gibdd.uvd-omsk.su [94.1.0.85]) by ugai.uvd-omsk.su (8.11.2/8.11.0) with ESMTP id f1C4hR243045 for ; Mon, 12 Feb 2001 10:43:27 +0600 (OMST) Date: Mon, 12 Feb 2001 10:43:21 +0600 From: Sergey Akifiev X-Mailer: The Bat! (v1.49) Personal Reply-To: Sergey Akifiev Organization: Road Police X-Priority: 3 (Normal) Message-ID: <1843641235.20010212104321@road.omskelecom.ru> To: freebsd-stable@FreeBSD.ORG Subject: sshd in 4.2-STABLE Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello freebsd-stable, sshd stops working after cvsup'ing up to 4.2-STABLE. But on 4.1-RELEASE it works fine! Here is result of 'sshd -d': debug1: sshd version OpenSSH_2.3.0 debug1: read DSA private key done debug1: Forcing server key to 1152 bits to make it differ from host key. debug1: Bind to port 22 on 0.0.0.0. Server listening on 0.0.0.0 port 22. Generating 1152 bit RSA key. RSA key generation complete. debug1: Server will not fork when running in debugging mode. Connection from sergey.gibdd.uvd-omsk.su port 1179 Connection from 94.1.0.85 port 1179 debug1: Client protocol version 2.1; client software version OpenSSH_3.26.00_Telneat debug1: no match: OpenSSH_3.26.00_Telneat Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-1.99-OpenSSH_2.3.0 debug1: send KEXINIT debug1: done debug1: wait KEXINIT debug1: got kexinit: diffie-hellman-group1-sha1 debug1: got kexinit: ssh-dss debug1: got kexinit: 3des-cbc,blowfish-cbc,arcfour,cast128-cbc debug1: got kexinit: 3des-cbc,blowfish-cbc,arcfour,cast128-cbc debug1: got kexinit: hmac-sha1,hmac-md5,hmac-ripemd160@openssh.com debug1: got kexinit: hmac-sha1,hmac-md5,hmac-ripemd160@openssh.com debug1: got kexinit: none debug1: got kexinit: none debug1: got kexinit: debug1: got kexinit: debug1: first kex follow: 0 debug1: reserved: 0 debug1: done debug1: kex: client->server 3des-cbc hmac-sha1 none debug1: kex: server->client 3des-cbc hmac-sha1 none debug1: Wait SSH2_MSG_KEXDH_INIT. debug1: bits set: 495/1024 debug1: bits set: 515/1024 debug1: sig size 20 20 debug1: send SSH2_MSG_NEWKEYS. debug1: done: send SSH2_MSG_NEWKEYS. debug1: Wait SSH2_MSG_NEWKEYS. debug1: GOT SSH2_MSG_NEWKEYS. debug1: done: KEX2. debug1: userauth-request for user sergey service ssh-connection method publickey debug1: attempt #1 debug1: Starting up PAM with username "sergey" debug1: matching key found: file /home/sergey/.ssh/authorized_keys2, line 1 debug1: len 55 datafellows 0 debug1: dsa_verify: signature incorrect Failed publickey for sergey from 94.1.0.85 port 1179 ssh2 fatal: Read from socket failed: Connection reset by peer debug1: Calling cleanup 0x8058150(0x0) debug1: Calling cleanup 0x805e480(0x0) PS -- Best regards, Sergey mailto:sergey@road.omskelecom.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 21:15: 7 2001 Delivered-To: freebsd-stable@freebsd.org Received: from gatekeeper.orem.verio.net (gatekeeper.orem.verio.net [192.41.0.8]) by hub.freebsd.org (Postfix) with ESMTP id 7D78E37B491 for ; Sun, 11 Feb 2001 21:14:59 -0800 (PST) Received: from mx.dmz.orem.verio.net (mx.dmz.orem.verio.net [10.1.1.10]) by gatekeeper.orem.verio.net (Postfix) with ESMTP id 16CA03BF116 for ; Sun, 11 Feb 2001 22:14:59 -0700 (MST) Received: from localhost (aaronm@localhost) by mx.dmz.orem.verio.net (8.11.1/8.11.1) with ESMTP id f1C5EvD72746; Sun, 11 Feb 2001 22:14:57 -0700 (MST) (envelope-from aaronm@mx.dmz.orem.verio.net) Date: Sun, 11 Feb 2001 22:14:57 -0700 (MST) From: Aaron Mildenstein To: Sergey Akifiev Cc: Subject: Re: sshd in 4.2-STABLE In-Reply-To: <1843641235.20010212104321@road.omskelecom.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I had the same problem. And do you know what I found was the problem? /etc/pam.conf was missing the following lines: sshd auth sufficient pam_skey.so sshd auth required pam_unix.so try_first_pass sshd session required pam_permit.so And that was all it took to get sshd to work right. Somewhere in there sshd started requiring pam. Go figure. Aaron Mildenstein On Mon, 12 Feb 2001, Sergey Akifiev wrote: > Hello freebsd-stable, > > sshd stops working after cvsup'ing up to 4.2-STABLE. But on > 4.1-RELEASE it works fine! > Here is result of 'sshd -d': > > debug1: sshd version OpenSSH_2.3.0 > debug1: read DSA private key done > debug1: Forcing server key to 1152 bits to make it differ from host key. > debug1: Bind to port 22 on 0.0.0.0. > Server listening on 0.0.0.0 port 22. > Generating 1152 bit RSA key. > RSA key generation complete. > debug1: Server will not fork when running in debugging mode. > Connection from sergey.gibdd.uvd-omsk.su port 1179 > Connection from 94.1.0.85 port 1179 > debug1: Client protocol version 2.1; client software version > OpenSSH_3.26.00_Telneat > debug1: no match: OpenSSH_3.26.00_Telneat > Enabling compatibility mode for protocol 2.0 > debug1: Local version string SSH-1.99-OpenSSH_2.3.0 > debug1: send KEXINIT > debug1: done > debug1: wait KEXINIT > debug1: got kexinit: diffie-hellman-group1-sha1 > debug1: got kexinit: ssh-dss > debug1: got kexinit: 3des-cbc,blowfish-cbc,arcfour,cast128-cbc > debug1: got kexinit: 3des-cbc,blowfish-cbc,arcfour,cast128-cbc > debug1: got kexinit: hmac-sha1,hmac-md5,hmac-ripemd160@openssh.com > debug1: got kexinit: hmac-sha1,hmac-md5,hmac-ripemd160@openssh.com > debug1: got kexinit: none > debug1: got kexinit: none > debug1: got kexinit: > debug1: got kexinit: > debug1: first kex follow: 0 > debug1: reserved: 0 > debug1: done > debug1: kex: client->server 3des-cbc hmac-sha1 none > debug1: kex: server->client 3des-cbc hmac-sha1 none > debug1: Wait SSH2_MSG_KEXDH_INIT. > debug1: bits set: 495/1024 > debug1: bits set: 515/1024 > debug1: sig size 20 20 > debug1: send SSH2_MSG_NEWKEYS. > debug1: done: send SSH2_MSG_NEWKEYS. > debug1: Wait SSH2_MSG_NEWKEYS. > debug1: GOT SSH2_MSG_NEWKEYS. > debug1: done: KEX2. > debug1: userauth-request for user sergey service ssh-connection method > publickey > debug1: attempt #1 > debug1: Starting up PAM with username "sergey" > debug1: matching key found: file /home/sergey/.ssh/authorized_keys2, line 1 > debug1: len 55 datafellows 0 > debug1: dsa_verify: signature incorrect > Failed publickey for sergey from 94.1.0.85 port 1179 ssh2 > fatal: Read from socket failed: Connection reset by peer > debug1: Calling cleanup 0x8058150(0x0) > debug1: Calling cleanup 0x805e480(0x0) > > PS > > -- > Best regards, > Sergey mailto:sergey@road.omskelecom.ru > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 21:20:21 2001 Delivered-To: freebsd-stable@freebsd.org Received: from cx587235-a.chnd1.az.home.com (cx587235-a.chnd1.az.home.com [24.11.88.170]) by hub.freebsd.org (Postfix) with ESMTP id 0AACF37B4EC for ; Sun, 11 Feb 2001 21:20:17 -0800 (PST) Received: from whale.home-net (whale [192.168.1.2]) by cx587235-a.chnd1.az.home.com (8.11.2/8.11.2) with ESMTP id f1C5KGt60576 for ; Sun, 11 Feb 2001 22:20:16 -0700 (MST) (envelope-from jjreynold@home.com) Received: (from jjreynold@localhost) by whale.home-net (8.11.1/8.11.1) id f1C5KGw85657; Sun, 11 Feb 2001 22:20:16 -0700 (MST) (envelope-from jjreynold@home.com) From: John Reynolds MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14983.29328.298241.606895@whale.home-net> Date: Sun, 11 Feb 2001 22:20:16 -0700 To: freebsd-stable@freebsd.org Subject: Re: sshd in 4.2-STABLE In-Reply-To: References: <1843641235.20010212104321@road.omskelecom.ru> X-Mailer: VM 6.88 under Emacs 20.7.1 Cc: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ On Sunday, February 11, Aaron Mildenstein wrote: ] > I had the same problem. And do you know what I found was the problem? > /etc/pam.conf > was missing the following lines: > > sshd auth sufficient pam_skey.so > sshd auth required pam_unix.so try_first_pass > sshd session required pam_permit.so > > And that was all it took to get sshd to work right. > Somewhere in there sshd started requiring pam. Go figure. Yes, but always always always running "mergemaster" (or if you are sadistic, doing it by hand) to update /etc/ will avoid gotchas like this. Everybody tracking -STABLE should also be looking at the RELENG_4 relevent bits from cvs-all too, just so that you spot a change and your brain and register it. -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation jreynold@sedona.ch.intel.com My opinions are mine, not Intel's. Running jjreynold@home.com FreeBSD 4.2-STABLE. FreeBSD: The Power to Serve. http://www.reynoldsnet.org/ Come join us!!! @ http://www.FreeBSD.org/ =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 21:21:36 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtprelay1.abs.adelphia.net (smtprelay.abs.adelphia.net [64.8.20.11]) by hub.freebsd.org (Postfix) with ESMTP id 90D7E37B4EC for ; Sun, 11 Feb 2001 21:21:31 -0800 (PST) Received: from warpig ([24.48.165.183]) by smtprelay1.abs.adelphia.net (Netscape Messaging Server 4.15) with SMTP id G8MPJT00.L5C for ; Mon, 12 Feb 2001 00:21:29 -0500 From: "Andrew Penniman" Cc: Subject: RE: sshd in 4.2-STABLE Date: Mon, 12 Feb 2001 00:19:34 -0500 Message-ID: <000001c094b3$63da94a0$b7a53018@bur.adelphia.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) In-Reply-To: Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hello freebsd-stable, > > sshd stops working after cvsup'ing up to 4.2-STABLE. But on > 4.1-RELEASE it works fine! You should always read /usr/src/UPDATING before doing a make buildworld. This is mentioned in there somewheres. Run mergemaster to bring your /etc directory up to speed, but read the man pages first. ;) I learned the hard way as well and now I read UPDATING like it's a newspaper. :) Cheers! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 21:32:14 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ugai.uvd-omsk.su (unknown [195.162.36.70]) by hub.freebsd.org (Postfix) with ESMTP id 6AD5537B491 for ; Sun, 11 Feb 2001 21:32:10 -0800 (PST) Received: from sergey (sergey.gibdd.uvd-omsk.su [94.1.0.85]) by ugai.uvd-omsk.su (8.11.2/8.11.0) with ESMTP id f1C5W6245351 for ; Mon, 12 Feb 2001 11:32:07 +0600 (OMST) Date: Mon, 12 Feb 2001 11:32:01 +0600 From: Sergey Akifiev X-Mailer: The Bat! (v1.49) Personal Reply-To: Sergey Akifiev Organization: Road Police X-Priority: 3 (Normal) Message-ID: <446561274.20010212113201@road.omskelecom.ru> To: freebsd-stable@FreeBSD.ORG Subject: Re[2]: sshd in 4.2-STABLE In-reply-To: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello Aaron, Monday, February 12, 2001, 11:14:57 AM, you wrote: AM> I had the same problem. And do you know what I found was the problem? AM> /etc/pam.conf AM> was missing the following lines: AM> sshd auth sufficient pam_skey.so AM> sshd auth required pam_unix.so try_first_pass AM> sshd session required pam_permit.so this was the first thing i've done after 'make intallworld' and building new kernel. BTW do i need to reboot my BSD box or kill/start any processes after adding those lines? -- Best regards, Sergey mailto:sergey@road.omskelecom.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 21:43:56 2001 Delivered-To: freebsd-stable@freebsd.org Received: from pendragon.tacni.net (unknown [216.178.136.165]) by hub.freebsd.org (Postfix) with SMTP id CB19B37B401 for ; Sun, 11 Feb 2001 21:43:51 -0800 (PST) Received: (qmail 60134 invoked by alias); 12 Feb 2001 05:43:49 -0000 Received: from unknown (HELO mail.tacni.net) (204.155.159.101) by ns2.sohos.net with SMTP; 12 Feb 2001 05:43:49 -0000 Received: (qmail 5943 invoked by uid 1000); 12 Feb 2001 05:43:48 -0000 Date: Sun, 11 Feb 2001 23:43:48 -0600 From: Erich Zigler To: stable@freebsd.org Subject: getenv() problems on 4.2-STABLE Message-ID: <20010211234348.A5894@superhero.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've currently been working on the Gabber port. I'm running in to a constant problem though. Whenever gettext or GNOME makes a getenv() call it segfaults. This is Gabber 0.8.1. Here is an example of one of the backtraces... #0 0x28c0e7a3 in getenv () from /usr/lib/libc_r.so.4 #1 0x2881aa5d in guess_category_value () from /usr/local/lib/libintl.so.1 #2 0x2881a36a in dcgettext__ () from /usr/local/lib/libintl.so.1 #3 0x2881ab0c in dgettext__ () from /usr/local/lib/libintl.so.1 #4 0x2881ab38 in gettext__ () from /usr/local/lib/libintl.so.1 #5 0x28819ffe in gettext () from /usr/local/lib/libintl.so.1 #6 0x80c0efb in GabberWin::OnSessionConnected (this=0x8390a00, t=@0x838b200) at GabberWin.cc:302 I wrote a small getenv() test program, and it works fine. So why is this coring? Here is the test program.. #include main() { printf("HOME=%s\n", getenv("HOME")); } Any help would be greatly appreciated, the developers of Gabber and I are completely stumped. -- Erich Zigler Mind like a steel trap - Rusty and Illegal in 37 States! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 21:53: 2 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hellraiser.cannoncreek.com (unknown [202.78.79.4]) by hub.freebsd.org (Postfix) with SMTP id 911A237B401 for ; Sun, 11 Feb 2001 21:52:59 -0800 (PST) Received: (qmail 7312 invoked by uid 1001); 12 Feb 2001 05:59:27 -0000 From: Mars G.Miro To: freebsd-stable@freebsd.org, sos@freebsd.dk Subject: UDMA ICRC Read Errors Date: Mon, 12 Feb 2001 13:36:55 +0800 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <01021213592700.01116@hellraiser.cannoncreek.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, I have a 20Gig Maxtor IDE HD that's acting as a secondary master (/dev/ad3c) where /home is mounted and is also used to back up everything (so it's one big UFS slice) $ cat fstab # Device Mountpoint FStype Options Dump Pass# /dev/ad0s2b none swap sw 0 0 /dev/ad0s2a / ufs rw 1 1 /dev/ad3c /home ufs rw 2 2 /dev/ad0s2f /usr ufs rw 2 2 /dev/ad0s2e /var ufs rw 2 2 /dev/acd0c /cdrom cd9660 ro,noauto 0 0 proc /proc procfs rw 0 0 I still kept encountering these errors even when I have upgraded (just a few hours ago) to 4.2-Stable: Feb 12 13:36:00 x kernel ad3: UDMA ICRC READ ERROR blk# 35848256 retrying Feb 12 13:36:00 x kernel ad3: UDMA ICRC READ ERROR blk# 33882176 retrying I first encountered them after installing the HD(by way of fbsd handbook section 10.3.2.2, alternative method) circa Jan13 , but that time there was a discussion on the same type of errors and that a patch(Soren) was to be MFC'ed that was gonna fix them all. I was not able to upgrade it that time but only now. Do the above errors tell that the HD may be broken? It's only about 1 month old. Attached is a verbose dmesg. cheers mars To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 21:56:41 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hellraiser.cannoncreek.com (unknown [202.78.79.4]) by hub.freebsd.org (Postfix) with SMTP id 435EB37B401 for ; Sun, 11 Feb 2001 21:56:24 -0800 (PST) Received: (qmail 7332 invoked by uid 1001); 12 Feb 2001 06:02:53 -0000 From: Mars G.Miro To: freebsd-stable@freebsd.org, sos@freebsd.dk Subject: Re: UDMA ICRC Read Errors Date: Mon, 12 Feb 2001 14:01:31 +0800 X-Mailer: KMail [version 1.0.28] Content-Type: Multipart/Mixed; boundary="Boundary-=_zAZOHsNGHcxSfUBSnsNWfUJeLgtK" References: <01021213592700.01116@hellraiser.cannoncreek.com> In-Reply-To: <01021213592700.01116@hellraiser.cannoncreek.com> MIME-Version: 1.0 Message-Id: <01021214025301.01116@hellraiser.cannoncreek.com> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --Boundary-=_zAZOHsNGHcxSfUBSnsNWfUJeLgtK Content-Type: text/plain Content-Transfer-Encoding: 8bit sorry, forgot to attach it the first time ;-) --Boundary-=_zAZOHsNGHcxSfUBSnsNWfUJeLgtK Content-Type: text/english; name="dmesg" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="dmesg" Q29weXJpZ2h0IChjKSAxOTkyLTIwMDEgVGhlIEZyZWVCU0QgUHJvamVjdC4KQ29weXJpZ2h0IChj KSAxOTc5LCAxOTgwLCAxOTgzLCAxOTg2LCAxOTg4LCAxOTg5LCAxOTkxLCAxOTkyLCAxOTkzLCAx OTk0CglUaGUgUmVnZW50cyBvZiB0aGUgVW5pdmVyc2l0eSBvZiBDYWxpZm9ybmlhLiBBbGwgcmln aHRzIHJlc2VydmVkLgpGcmVlQlNEIDQuMi1TVEFCTEUgIzA6IE1vbiBGZWIgMTIgMTE6MzQ6NDcg UEhUIDIwMDEKICAgIG1hcnNAWFhYWFg6L3Vzci9vYmovdXNyL3NyYy9zeXMvSEVMTFJBSVNFUgpD YWxpYnJhdGluZyBjbG9jayhzKSAuLi4gVFNDIGNsb2NrOiA3MzE0MTY1MDMgSHosIGk4MjU0IGNs b2NrOiAxMTkzMTAwIEh6CkNMS19VU0VfSTgyNTRfQ0FMSUJSQVRJT04gbm90IHNwZWNpZmllZCAt IHVzaW5nIGRlZmF1bHQgZnJlcXVlbmN5ClRpbWVjb3VudGVyICJpODI1NCIgIGZyZXF1ZW5jeSAx MTkzMTgyIEh6CkNMS19VU0VfVFNDX0NBTElCUkFUSU9OIG5vdCBzcGVjaWZpZWQgLSB1c2luZyBv bGQgY2FsaWJyYXRpb24gbWV0aG9kCkNQVTogUGVudGl1bSBJSUkvUGVudGl1bSBJSUkgWGVvbi9D ZWxlcm9uICg3MzEuNDctTUh6IDY4Ni1jbGFzcyBDUFUpCiAgT3JpZ2luID0gIkdlbnVpbmVJbnRl bCIgIElkID0gMHg2ODMgIFN0ZXBwaW5nID0gMwogIEZlYXR1cmVzPTB4MzgzZjlmZjxGUFUsVk1F LERFLFBTRSxUU0MsTVNSLFBBRSxNQ0UsQ1g4LFNFUCxNVFJSLFBHRSxNQ0EsQ01PVixQQVQsUFNF MzYsTU1YLEZYU1IsU1NFPgpyZWFsIG1lbW9yeSAgPSAxMzQyMDU0NDAgKDEzMTA2MEsgYnl0ZXMp ClBoeXNpY2FsIG1lbW9yeSBjaHVuayhzKToKMHgwMDAwMTAwMCAtIDB4MDAwOWVmZmYsIDY0NzE2 OCBieXRlcyAoMTU4IHBhZ2VzKQoweDAwMzM3MDAwIC0gMHgwN2ZmNGZmZiwgMTMwODAxNjY0IGJ5 dGVzICgzMTkzNCBwYWdlcykKYXZhaWwgbWVtb3J5ID0gMTI3NTE2NjcyICgxMjQ1MjhLIGJ5dGVz KQpiaW9zMzI6IEZvdW5kIEJJT1MzMiBTZXJ2aWNlIERpcmVjdG9yeSBoZWFkZXIgYXQgMHhjMDBm OTE0MApiaW9zMzI6IEVudHJ5ID0gMHhmMDY4MCAoYzAwZjA2ODApICBSZXYgPSAwICBMZW4gPSAx CnBjaWJpb3M6IFBDSSBCSU9TIGVudHJ5IGF0IDB4NmIwCnBucGJpb3M6IEZvdW5kIFBuUCBCSU9T IGRhdGEgYXQgMHhjMDBmYzEzMApwbnBiaW9zOiBFbnRyeSA9IGYwMDAwOmMxNjAgIFJldiA9IDEu MApwbnBiaW9zOiBPRU0gSUQgY2QwNDEKT3RoZXIgQklPUyBzaWduYXR1cmVzIGZvdW5kOgpBQ1BJ OiAwMDBmNTVlMApQcmVsb2FkZWQgZWxmIGtlcm5lbCAia2VybmVsIiBhdCAweGMwMzExMDAwLgpQ ZW50aXVtIFBybyBNVFJSIHN1cHBvcnQgZW5hYmxlZAptZDA6IE1hbGxvYyBkaXNrCkNyZWF0aW5n IERJU0sgbWQwCk1hdGggZW11bGF0b3IgcHJlc2VudApwY2lfb3BlbigxKToJbW9kZSAxIGFkZHIg cG9ydCAoMHgwY2Y4KSBpcyAweDgwMDAwMDYwCnBjaV9vcGVuKDFhKToJbW9kZTFyZXM9MHg4MDAw MDAwMCAoMHg4MDAwMDAwMCkKcGNpX2NmZ2NoZWNrOglkZXZpY2UgMCBbY2xhc3M9MDYwMDAwXSBb aGRyPTAwXSBpcyB0aGVyZSAoaWQ9MDY5MTExMDYpCnBjaWItOiBwY2liMCBleGlzdHMsIHVzaW5n IG5leHQgYXZhaWxhYmxlIHVuaXQgbnVtYmVyCm5weDA6IDxtYXRoIHByb2Nlc3Nvcj4gb24gbW90 aGVyYm9hcmQKbnB4MDogSU5UIDE2IGludGVyZmFjZQpwY2lfb3BlbigxKToJbW9kZSAxIGFkZHIg cG9ydCAoMHgwY2Y4KSBpcyAweDAwMDAwMDAwCnBjaV9vcGVuKDFhKToJbW9kZTFyZXM9MHg4MDAw MDAwMCAoMHg4MDAwMDAwMCkKcGNpX2NmZ2NoZWNrOglkZXZpY2UgMCBbY2xhc3M9MDYwMDAwXSBb aGRyPTAwXSBpcyB0aGVyZSAoaWQ9MDY5MTExMDYpCnBjaWIwOiA8SG9zdCB0byBQQ0kgYnJpZGdl PiBvbiBtb3RoZXJib2FyZApmb3VuZC0+CXZlbmRvcj0weDExMDYsIGRldj0weDA2OTEsIHJldmlk PTB4NDQKCWNsYXNzPTA2LTAwLTAwLCBoZHJ0eXBlPTB4MDAsIG1mZGV2PTAKCXN1Ym9yZGluYXRl YnVzPTAgCXNlY29uZGFyeWJ1cz0wCgltYXBbMTBdOiB0eXBlIDEsIHJhbmdlIDMyLCBiYXNlIGU0 MDAwMDAwLCBzaXplIDI2CmZvdW5kLT4JdmVuZG9yPTB4MTEwNiwgZGV2PTB4ODU5OCwgcmV2aWQ9 MHgwMAoJY2xhc3M9MDYtMDQtMDAsIGhkcnR5cGU9MHgwMSwgbWZkZXY9MAoJc3Vib3JkaW5hdGVi dXM9MSAJc2Vjb25kYXJ5YnVzPTEKZm91bmQtPgl2ZW5kb3I9MHgxMTA2LCBkZXY9MHgwNTk2LCBy ZXZpZD0weDIzCgljbGFzcz0wNi0wMS0wMCwgaGRydHlwZT0weDAwLCBtZmRldj0xCglzdWJvcmRp bmF0ZWJ1cz0wIAlzZWNvbmRhcnlidXM9MApmb3VuZC0+CXZlbmRvcj0weDExMDYsIGRldj0weDA1 NzEsIHJldmlkPTB4MTAKCWNsYXNzPTAxLTAxLThhLCBoZHJ0eXBlPTB4MDAsIG1mZGV2PTAKCXN1 Ym9yZGluYXRlYnVzPTAgCXNlY29uZGFyeWJ1cz0wCgltYXBbMjBdOiB0eXBlIDEsIHJhbmdlIDMy LCBiYXNlIDAwMDBkODAwLCBzaXplICA0CmZvdW5kLT4JdmVuZG9yPTB4MTEwNiwgZGV2PTB4MzAz OCwgcmV2aWQ9MHgxMQoJY2xhc3M9MGMtMDMtMDAsIGhkcnR5cGU9MHgwMCwgbWZkZXY9MAoJc3Vi b3JkaW5hdGVidXM9MCAJc2Vjb25kYXJ5YnVzPTAKCWludHBpbj1kLCBpcnE9MTAKCW1hcFsyMF06 IHR5cGUgMSwgcmFuZ2UgMzIsIGJhc2UgMDAwMGQ0MDAsIHNpemUgIDUKZm91bmQtPgl2ZW5kb3I9 MHgxMTA2LCBkZXY9MHgzMDUwLCByZXZpZD0weDMwCgljbGFzcz0wNi0wMC0wMCwgaGRydHlwZT0w eDAwLCBtZmRldj0wCglzdWJvcmRpbmF0ZWJ1cz0wIAlzZWNvbmRhcnlidXM9MApmb3VuZC0+CXZl bmRvcj0weDEwYjcsIGRldj0weDkwNTUsIHJldmlkPTB4MjQKCWNsYXNzPTAyLTAwLTAwLCBoZHJ0 eXBlPTB4MDAsIG1mZGV2PTAKCXN1Ym9yZGluYXRlYnVzPTAgCXNlY29uZGFyeWJ1cz0wCglpbnRw aW49YSwgaXJxPTExCgltYXBbMTBdOiB0eXBlIDEsIHJhbmdlIDMyLCBiYXNlIDAwMDBkMDAwLCBz aXplICA3CgltYXBbMTRdOiB0eXBlIDEsIHJhbmdlIDMyLCBiYXNlIGRiODAwMDAwLCBzaXplICA3 CnBjaTA6IDxQQ0kgYnVzPiBvbiBwY2liMApwY2liMjogPFZJQSA4MkM1OThNVlAgKEFwb2xsbyBN VlAzKSBQQ0ktUENJIChBR1ApIGJyaWRnZT4gYXQgZGV2aWNlIDEuMCBvbiBwY2kwCmZvdW5kLT4J dmVuZG9yPTB4NTMzMywgZGV2PTB4OGExMywgcmV2aWQ9MHgwMgoJY2xhc3M9MDMtMDAtMDAsIGhk cnR5cGU9MHgwMCwgbWZkZXY9MAoJc3Vib3JkaW5hdGVidXM9MCAJc2Vjb25kYXJ5YnVzPTAKCW1h cFsxMF06IHR5cGUgMSwgcmFuZ2UgMzIsIGJhc2UgZGMwMDAwMDAsIHNpemUgMjYKcGNpMTogPFBD SSBidXM+IG9uIHBjaWIyCnBjaTE6IDxTMyBUcmlvM0QvMlggZ3JhcGhpY3MgYWNjZWxlcmF0b3I+ ICh2ZW5kb3I9MHg1MzMzLCBkZXY9MHg4YTEzKSBhdCAwLjAKaXNhYjA6IDxWSUEgODJDNTk2QiBQ Q0ktSVNBIGJyaWRnZT4gYXQgZGV2aWNlIDQuMCBvbiBwY2kwCmlzYTA6IDxJU0EgYnVzPiBvbiBp c2FiMAphdGFwY2kwOiA8VklBIDgyQzU5NiBBVEE2NiBjb250cm9sbGVyPiBwb3J0IDB4ZDgwMC0w eGQ4MGYgYXQgZGV2aWNlIDQuMSBvbiBwY2kwCmF0YTA6IGlvYmFzZT0weDAxZjAgYWx0aW9iYXNl PTB4MDNmNiBibWFkZHI9MHhkODAwCmF0YTA6IG1hc2s9MDMgc3RhdHVzMD01MCBzdGF0dXMxPTAw CmF0YTA6IG1hc2s9MDMgb3N0YXQwPTUwIG9zdGF0Mj0wMAphdGEwLW1hc3RlcjogQVRBUEkgcHJv YmUgYT0wMCBiPTAwCmF0YTAtc2xhdmU6IEFUQVBJIHByb2JlIGE9MDAgYj0wMAphdGEwOiBtYXNr PTAzIHN0YXR1czA9NTAgc3RhdHVzMT0wMAphdGEwLW1hc3RlcjogQVRBIHByb2JlIGE9MDEgYj1h NQphdGEwOiBkZXZpY2VzPTAxCmF0YTA6IGF0IDB4MWYwIGlycSAxNCBvbiBhdGFwY2kwCmF0YTE6 IGlvYmFzZT0weDAxNzAgYWx0aW9iYXNlPTB4MDM3NiBibWFkZHI9MHhkODA4CmF0YTE6IG1hc2s9 MDMgc3RhdHVzMD01MCBzdGF0dXMxPTUwCmF0YTE6IG1hc2s9MDMgb3N0YXQwPTUwIG9zdGF0Mj01 MAphdGExLW1hc3RlcjogQVRBUEkgcHJvYmUgYT0xNCBiPWViCmF0YTEtc2xhdmU6IEFUQVBJIHBy b2JlIGE9MDAgYj0wMAphdGExOiBtYXNrPTAzIHN0YXR1czA9MDAgc3RhdHVzMT01MAphdGExLXNs YXZlOiBBVEEgcHJvYmUgYT0wMSBiPWE1CmF0YTE6IGRldmljZXM9MDYKYXRhMTogYXQgMHgxNzAg aXJxIDE1IG9uIGF0YXBjaTAKcGNpMDogPFZJQSA4M0M1NzIgVVNCIGNvbnRyb2xsZXI+ICh2ZW5k b3I9MHgxMTA2LCBkZXY9MHgzMDM4KSBhdCA0LjIgaXJxIDEwCnhsMDogPDNDb20gM2M5MDVCLVRY IEZhc3QgRXRoZXJsaW5rIFhMPiBwb3J0IDB4ZDAwMC0weGQwN2YgbWVtIDB4ZGI4MDAwMDAtMHhk YjgwMDA3ZiBpcnEgMTEgYXQgZGV2aWNlIDExLjAgb24gcGNpMAp4bDA6IEV0aGVybmV0IGFkZHJl c3M6IDAwOjEwOjRiOjc5OjNkOjM3CnhsMDogbWVkaWEgb3B0aW9ucyB3b3JkOiBhCnhsMDogZm91 bmQgTUlJL0FVVE8KbWlpYnVzMDogPE1JSSBidXM+IG9uIHhsMAp4bHBoeTA6IDwzQ29tIGludGVy bmFsIG1lZGlhIGludGVyZmFjZT4gb24gbWlpYnVzMAp4bHBoeTA6ICAxMGJhc2VULCAxMGJhc2VU LUZEWCwgMTAwYmFzZVRYLCAxMDBiYXNlVFgtRkRYLCBhdXRvCmJwZjogeGwwIGF0dGFjaGVkCnBj aV9vcGVuKDEpOgltb2RlIDEgYWRkciBwb3J0ICgweDBjZjgpIGlzIDB4MDAwMDAwMDAKcGNpX29w ZW4oMWEpOgltb2RlMXJlcz0weDgwMDAwMDAwICgweDgwMDAwMDAwKQpwY2lfY2ZnY2hlY2s6CWRl dmljZSAwIFtjbGFzcz0wNjAwMDBdIFtoZHI9MDBdIGlzIHRoZXJlIChpZD0wNjkxMTEwNikKcGNp LTogcGNpMSBleGlzdHMsIHVzaW5nIG5leHQgYXZhaWxhYmxlIHVuaXQgbnVtYmVyCnBjaWIxOiA8 SG9zdCB0byBQQ0kgYnJpZGdlPiBvbiBtb3RoZXJib2FyZApwY2kyOiA8UENJIGJ1cz4gb24gcGNp YjEKYXRhLTogYXRhMCBleGlzdHMsIHVzaW5nIG5leHQgYXZhaWxhYmxlIHVuaXQgbnVtYmVyCmF0 YS06IGF0YTEgZXhpc3RzLCB1c2luZyBuZXh0IGF2YWlsYWJsZSB1bml0IG51bWJlcgpUcnlpbmcg UmVhZF9Qb3J0IGF0IDIwMwpUcnlpbmcgUmVhZF9Qb3J0IGF0IDI0MwpUcnlpbmcgUmVhZF9Qb3J0 IGF0IDI4MwpUcnlpbmcgUmVhZF9Qb3J0IGF0IDJjMwpUcnlpbmcgUmVhZF9Qb3J0IGF0IDMwMwpU cnlpbmcgUmVhZF9Qb3J0IGF0IDM0MwpUcnlpbmcgUmVhZF9Qb3J0IGF0IDM4MwpUcnlpbmcgUmVh ZF9Qb3J0IGF0IDNjMwppc2FfcHJvYmVfY2hpbGRyZW46IGRpc2FibGluZyBQblAgZGV2aWNlcwpp c2FfcHJvYmVfY2hpbGRyZW46IHByb2Jpbmcgbm9uLVBuUCBkZXZpY2VzCmZkYzA6IDxORUMgNzIw NjVCIG9yIGNsb25lPiBhdCBwb3J0IDB4M2YwLTB4M2Y1LDB4M2Y3IGlycSA2IGRycSAyIG9uIGlz YTAKZmRjMDogRklGTyBlbmFibGVkLCA4IGJ5dGVzIHRocmVzaG9sZApmZDA6IDwxNDQwLUtCIDMu NSIgZHJpdmU+IG9uIGZkYzAgZHJpdmUgMAphdGEyIGZhaWxlZCB0byBwcm9iZSBhdCBwb3J0IDB4 MWYwIGlycSAxNCBvbiBpc2EwCmF0YTMgZmFpbGVkIHRvIHByb2JlIGF0IHBvcnQgMHgxNzAgaXJx IDE1IG9uIGlzYTAKYXRrYmRjMDogPEtleWJvYXJkIGNvbnRyb2xsZXIgKGk4MDQyKT4gYXQgcG9y dCAweDYwLDB4NjQgb24gaXNhMAphdGtiZDA6IDxBVCBLZXlib2FyZD4gaXJxIDEgb24gYXRrYmRj MAphdGtiZDogdGhlIGN1cnJlbnQga2JkIGNvbnRyb2xsZXIgY29tbWFuZCBieXRlIDAwNDcKYXRr YmQ6IGtleWJvYXJkIElEIDB4NDFhYiAoMikKa2JkMDogYXRrYmQwLCBBVCAxMDEvMTAyICgyKSwg Y29uZmlnOjB4MCwgZmxhZ3M6MHgzZDAwMDAKcHNtMDogY3VycmVudCBjb21tYW5kIGJ5dGU6MDA0 Nwpwc20wOiA8UFMvMiBNb3VzZT4gaXJxIDEyIG9uIGF0a2JkYzAKcHNtMDogbW9kZWwgR2VuZXJp YyBQUy8yIG1vdXNlLCBkZXZpY2UgSUQgMC0wMCwgMiBidXR0b25zCnBzbTA6IGNvbmZpZzowMDAw MDAwMCwgZmxhZ3M6MDAwMDAwMDAsIHBhY2tldCBzaXplOjMKcHNtMDogc3luY21hc2s6YzAsIHN5 bmNiaXRzOjAwCnZnYTA6IDxHZW5lcmljIElTQSBWR0E+IGF0IHBvcnQgMHgzYzAtMHgzZGYgaW9t ZW0gMHhhMDAwMC0weGJmZmZmIG9uIGlzYTAKZmIwOiB2Z2EwLCB2Z2EsIHR5cGU6VkdBICg1KSwg ZmxhZ3M6MHg3MDA3ZgpmYjA6IHBvcnQ6MHgzYzAtMHgzZGYsIGNydGM6MHgzZDQsIG1lbToweGEw MDAwIDB4MjAwMDAKZmIwOiBpbml0IG1vZGU6MjQsIGJpb3MgbW9kZTozLCBjdXJyZW50IG1vZGU6 MjQKZmIwOiB3aW5kb3c6MHhjMDBiODAwMCBzaXplOjMyayBncmFuOjMyaywgYnVmOjAgc2l6ZToz MmsKVkdBIHBhcmFtZXRlcnMgdXBvbiBwb3dlci11cAo1MCAxOCAxMCAwMCAwMCAwMCAwMyAwMCAw MiA2NyA1ZiA0ZiA1MCA4MiA1NSA4MSAKYmYgMWYgMDAgNGYgMGQgMGUgMDAgMDAgMDcgODAgOWMg OGUgOGYgMjggMWYgOTYgCmI5IGEzIGZmIDAwIDAxIDAyIDAzIDA0IDA1IDE0IDA3IDM4IDM5IDNh IDNiIDNjIAozZCAzZSAzZiAwYyAwMCAwZiAwOCAwMCAwMCAwMCAwMCAwMCAxMCAwZSAwMCBmZiAK VkdBIHBhcmFtZXRlcnMgaW4gQklPUyBmb3IgbW9kZSAyNAo1MCAxOCAxMCAwMCAxMCAwMCAwMyAw MCAwMiA2NyA1ZiA0ZiA1MCA4MiA1NSA4MSAKYmYgMWYgMDAgNGYgMGQgMGUgMDAgMDAgMDAgMDAg OWMgOGUgOGYgMjggMWYgOTYgCmI5IGEzIGZmIDAwIDAxIDAyIDAzIDA0IDA1IDE0IDA3IDM4IDM5 IDNhIDNiIDNjIAozZCAzZSAzZiAwYyAwMCAwZiAwOCAwMCAwMCAwMCAwMCAwMCAxMCAwZSAwMCBm ZiAKRUdBL1ZHQSBwYXJhbWV0ZXJzIHRvIGJlIHVzZWQgZm9yIG1vZGUgMjQKNTAgMTggMTAgMDAg MTAgMDAgMDMgMDAgMDIgNjcgNWYgNGYgNTAgODIgNTUgODEgCmJmIDFmIDAwIDRmIDBkIDBlIDAw IDAwIDAwIDAwIDljIDhlIDhmIDI4IDFmIDk2IApiOSBhMyBmZiAwMCAwMSAwMiAwMyAwNCAwNSAx NCAwNyAzOCAzOSAzYSAzYiAzYyAKM2QgM2UgM2YgMGMgMDAgMGYgMDggMDAgMDAgMDAgMDAgMDAg MTAgMGUgMDAgZmYgCnNjMDogPFN5c3RlbSBjb25zb2xlPiBvbiBpc2EwCnNjMDogVkdBIDwxNiB2 aXJ0dWFsIGNvbnNvbGVzLCBmbGFncz0weDIwMD4Kc2MwOiBmYjAsIGtiZDAsIHRlcm1pbmFsIGVt dWxhdG9yOiBzYyAoc3lzY29ucyB0ZXJtaW5hbCkKc2lvMDogaXJxIG1hcHM6IDB4NDEgMHg1MSAw eDQxIDB4NDEKc2lvMCBhdCBwb3J0IDB4M2Y4LTB4M2ZmIGlycSA0IGZsYWdzIDB4MTAgb24gaXNh MApzaW8wOiB0eXBlIDE2NTUwQQpzaW8xOiBpcnEgbWFwczogMHg0MSAweDQ5IDB4NDEgMHg0MQpz aW8xIGF0IHBvcnQgMHgyZjgtMHgyZmYgaXJxIDMgb24gaXNhMApzaW8xOiB0eXBlIDE2NTUwQQpw cGMwOiBwYXJhbGxlbCBwb3J0IGZvdW5kIGF0IDB4Mzc4CnBwYzA6IHVzaW5nIGV4dGVuZGVkIEkv TyBwb3J0IHJhbmdlCnBwYzA6IEVQUCBTUFAKcHBjMDogPFBhcmFsbGVsIHBvcnQ+IGF0IHBvcnQg MHgzNzgtMHgzN2YgaXJxIDcgb24gaXNhMApwcGMwOiBHZW5lcmljIGNoaXBzZXQgKEVQUC9OSUJC TEUpIGluIENPTVBBVElCTEUgbW9kZQpscHQwOiA8UHJpbnRlcj4gb24gcHBidXMwCmxwdDA6IElu dGVycnVwdC1kcml2ZW4gcG9ydApwcGkwOiA8UGFyYWxsZWwgSS9PPiBvbiBwcGJ1czAKaXNhX3By b2JlX2NoaWxkcmVuOiBwcm9iaW5nIFBuUCBkZXZpY2VzCkJJT1MgR2VvbWV0cmllczoKIDA6MDNm ZmZlM2YgMC4uMTAyMz0xMDI0IGN5bGluZGVycywgMC4uMjU0PTI1NSBoZWFkcywgMS4uNjM9NjMg c2VjdG9ycwogMTowM2ZmZmUzZiAwLi4xMDIzPTEwMjQgY3lsaW5kZXJzLCAwLi4yNTQ9MjU1IGhl YWRzLCAxLi42Mz02MyBzZWN0b3JzCiAwIGFjY291bnRlZCBmb3IKRGV2aWNlIGNvbmZpZ3VyYXRp b24gZmluaXNoZWQuCmJwZjogZmFpdGgwIGF0dGFjaGVkCmJwZjogZ2lmMCBhdHRhY2hlZApicGY6 IGdpZjEgYXR0YWNoZWQKYnBmOiBnaWYyIGF0dGFjaGVkCmJwZjogZ2lmMyBhdHRhY2hlZApicGY6 IGxvMCBhdHRhY2hlZApicGY6IHBwcDAgYXR0YWNoZWQKYnBmOiBwcHAxIGF0dGFjaGVkCm5ldyBt YXNrczogYmlvIDY4YzA0MCwgdHR5IDYzMTA5YSwgbmV0IDY3MTg5YQpicGY6IHNsMCBhdHRhY2hl ZAphdGEwLW1hc3Rlcjogc3VjY2VzcyBzZXR0aW5nIFVETUE0IG9uIFZJQSBjaGlwCkNyZWF0aW5n IERJU0sgYWQwCkNyZWF0aW5nIERJU0sgd2QwCmFkMDogPFNUMzEwMjEyQS8zLjAyPiBBVEEtNSBk aXNrIGF0IGF0YTAtbWFzdGVyCmFkMDogOTc2OE1CICgyMDAwNTY1MCBzZWN0b3JzKSwgMTk4NDYg Y3lscywgMTYgaGVhZHMsIDYzIFMvVCwgNTEyIEIvUwphZDA6IDE2IHNlY3MvaW50LCAxIGRlcHRo IHF1ZXVlLCBVRE1BNjYKYWQwOiBwaW9tb2RlPTQgZG1hbW9kZT0yIHVkbWFtb2RlPTQgY2JsaWQ9 MQphZDA6IDk3NjhNQiA8U1QzMTAyMTJBPiBbMTk4NDYvMTYvNjNdIGF0IGF0YTAtbWFzdGVyIFVE TUE2NgphdGExLXNsYXZlOiBzdWNjZXNzIHNldHRpbmcgVURNQTQgb24gVklBIGNoaXAKQ3JlYXRp bmcgRElTSyBhZDMKQ3JlYXRpbmcgRElTSyB3ZDMKYWQzOiA8TWF4dG9yIDMyMDQ5VTMvQkFDNTFL SjA+IEFUQS02IGRpc2sgYXQgYXRhMS1zbGF2ZQphZDM6IDE5NTQxTUIgKDQwMDIxNjMyIHNlY3Rv cnMpLCAzOTcwNCBjeWxzLCAxNiBoZWFkcywgNjMgUy9ULCA1MTIgQi9TCmFkMzogMTYgc2Vjcy9p bnQsIDEgZGVwdGggcXVldWUsIFVETUE2NgphZDM6IHBpb21vZGU9NCBkbWFtb2RlPTIgdWRtYW1v ZGU9NCBjYmxpZD0xCmFkMzogMTk1NDFNQiA8TWF4dG9yIDMyMDQ5VTM+IFszOTcwNC8xNi82M10g YXQgYXRhMS1zbGF2ZSBVRE1BNjYKYXRhMS1tYXN0ZXI6IHBpb21vZGU9NCBkbWFtb2RlPTIgdWRt YW1vZGU9MiBkbWFmbGFnPTEKYXRhMS1tYXN0ZXI6IHN1Y2Nlc3Mgc2V0dGluZyBVRE1BMiBvbiBW SUEgY2hpcAphY2QwOiA8Q0QtUk9NIERyaXZlL0Y1Qi9NMS4xMD4gQ0RST00gZHJpdmUgYXQgYXRh MSBhcyBtYXN0ZXIKYWNkMDogMTI4S0IgYnVmZmVyLCBVRE1BMzMKYWNkMDogUmVhZHM6IENELVIs IENELVJXLCBDRC1EQSBzdHJlYW0sIHBhY2tldAphY2QwOiBBdWRpbzogcGxheSwgMjU1IHZvbHVt ZSBsZXZlbHMKYWNkMDogTWVjaGFuaXNtOiBlamVjdGFibGUgdHJheQphY2QwOiBNZWRpdW06IG5v L2JsYW5rIGRpc2MgaW5zaWRlLCB1bmxvY2tlZApNb3VudGluZyByb290IGZyb20gdWZzOi9kZXYv YWQwczJhCmFkMHMxOiB0eXBlIDB4Yiwgc3RhcnQgNjMsIGVuZCA9IDgyMjUyNzksIHNpemUgODIy NTIxNyA6IE9LCmFkMHMyOiB0eXBlIDB4YTUsIHN0YXJ0IDgyMjUyODAsIGVuZCA9IDIwMDAwOTI0 LCBzaXplIDExNzc1NjQ1IDogT0sKc3RhcnRfaW5pdDogdHJ5aW5nIC9zYmluL2luaXQKc3BsYXNo OiBpbWFnZSBkZWNvZGVyIGZvdW5kOiBsb2dvX3NhdmVyCg== --Boundary-=_zAZOHsNGHcxSfUBSnsNWfUJeLgtK-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 22:20:32 2001 Delivered-To: freebsd-stable@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id D50A737B491; Sun, 11 Feb 2001 22:20:15 -0800 (PST) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id UAA38620; Sun, 11 Feb 2001 20:19:36 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Sun, 11 Feb 2001 20:19:35 -1000 (HST) From: Vincent Poy To: Luigi Rizzo Cc: Masachika ISHIZUKA , , Subject: Re: BRIDGE breaks ARP? In-Reply-To: <200102051155.f15Bt0p20537@iguana.aciri.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 5 Feb 2001, Luigi Rizzo wrote: > > I cvsuped three hours ago and the same ARP troubles happened. > > can you repeat exactly what the problem was (bridge machine not > responding to ARP requests ?) and what is your exact setup (i > am interested in ipfw config, and the following sysctl vars: > > net.link.ether.bridge > net.link.ether.bridge_ipfw > net.link.ether.bridge_cfg > > so i can try to reproduce the problem locally. I'm not sure if this is related but we're using FreeBSD with a Emerging Technologies T1 card to do ADSL Bridging and ran into a problem where for example, if a bridge group was like... 216.235.44.1 255.255.255.0 All the nodes 216.235.44.2-254 can see 216.235.44.1 fine but it nothing in 216.235.44.2 - 254 can see each other. It seems to be they can't see each other if they are in the same subnet. So it seems all machines in the bridge group can see the gateway and the rest of the world but not each other. Is there a way around this? This is with 4.1-RELEASE, 4.1.1-RELEASE and even 4.2-RELEASE. Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 22:32: 1 2001 Delivered-To: freebsd-stable@freebsd.org Received: from iguana.aciri.org (iguana.aciri.org [192.150.187.36]) by hub.freebsd.org (Postfix) with ESMTP id 6C1AC37B491; Sun, 11 Feb 2001 22:31:54 -0800 (PST) Received: (from rizzo@localhost) by iguana.aciri.org (8.11.1/8.11.1) id f1C6VfI74774; Sun, 11 Feb 2001 22:31:41 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200102120631.f1C6VfI74774@iguana.aciri.org> Subject: Re: BRIDGE breaks ARP? In-Reply-To: from Vincent Poy at "Feb 11, 2001 8:19:35 pm" To: vince@oahu.WURLDLINK.NET (Vincent Poy) Date: Sun, 11 Feb 2001 22:31:41 -0800 (PST) Cc: rizzo@aciri.org, ishizuka@ish.org, freebsd-net@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Pardon me, but what bridging code are you using ? Is it from Etinc or it is the std FreeBSD bridging code ? luigi > > I'm not sure if this is related but we're using FreeBSD with a > Emerging Technologies T1 card to do ADSL Bridging and ran into a problem > where for example, if a bridge group was like... > > 216.235.44.1 255.255.255.0 > > All the nodes 216.235.44.2-254 can see 216.235.44.1 fine but it > nothing in 216.235.44.2 - 254 can see each other. It seems to be they > can't see each other if they are in the same subnet. So it seems all > machines in the bridge group can see the gateway and the rest of the > world but not each other. Is there a way around this? This is with > 4.1-RELEASE, 4.1.1-RELEASE and even 4.2-RELEASE. > > > Cheers, > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > WurldLink Corporation / / / / | / | __] ] > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-net" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 22:37:20 2001 Delivered-To: freebsd-stable@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id BC08137B401; Sun, 11 Feb 2001 22:37:08 -0800 (PST) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id UAA40469; Sun, 11 Feb 2001 20:36:50 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Sun, 11 Feb 2001 20:36:50 -1000 (HST) From: Vincent Poy To: Luigi Rizzo Cc: , , Subject: Re: BRIDGE breaks ARP? In-Reply-To: <200102120631.f1C6VfI74774@iguana.aciri.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 11 Feb 2001, Luigi Rizzo wrote: > Pardon me, but what bridging code are you using ? Is it from Etinc > or it is the std FreeBSD bridging code ? I'm not sure if the bridging code is from ET or if it's the standard FreeBSD but it seems to be standard FreeBSD bridging code. root@oahu [8:24pm][/usr/temp/zebra] >> ifconfig bg0 bg0: flags=8843 mtu 1500 inet 216.235.44.1 netmask 0xffffff00 broadcast 216.235.44.255 inet 216.235.45.1 netmask 0xffffff00 broadcast 216.235.45.255 inet 216.235.56.193 netmask 0xffffffe0 broadcast 216.235.56.223 ether 00:00:00:03:00:00 I've asked Dennis at ETinc the question and his response was: if you want to route from one DLCI to the other then you have to put them in separate bridge groups with their own subnet. You are creating isolated segments with the ipmap functionality...the mechanism is designed for end users who get 1 or 2 addresses. You COULD fix the O/S to route back to the same interface, but I dont know how complicated that would be. I dont think there is an easy way to disable split-horizon. Dennis Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > I'm not sure if this is related but we're using FreeBSD with a > > Emerging Technologies T1 card to do ADSL Bridging and ran into a problem > > where for example, if a bridge group was like... > > > > 216.235.44.1 255.255.255.0 > > > > All the nodes 216.235.44.2-254 can see 216.235.44.1 fine but it > > nothing in 216.235.44.2 - 254 can see each other. It seems to be they > > can't see each other if they are in the same subnet. So it seems all > > machines in the bridge group can see the gateway and the rest of the > > world but not each other. Is there a way around this? This is with > > 4.1-RELEASE, 4.1.1-RELEASE and even 4.2-RELEASE. > > > > > > Cheers, > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > WurldLink Corporation / / / / | / | __] ] > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-net" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 22:40:31 2001 Delivered-To: freebsd-stable@freebsd.org Received: from iguana.aciri.org (iguana.aciri.org [192.150.187.36]) by hub.freebsd.org (Postfix) with ESMTP id 6E4DE37B491; Sun, 11 Feb 2001 22:40:14 -0800 (PST) Received: (from rizzo@localhost) by iguana.aciri.org (8.11.1/8.11.1) id f1C6e4R76338; Sun, 11 Feb 2001 22:40:04 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200102120640.f1C6e4R76338@iguana.aciri.org> Subject: Re: BRIDGE breaks ARP? In-Reply-To: from Vincent Poy at "Feb 11, 2001 8:36:50 pm" To: vince@oahu.WURLDLINK.NET (Vincent Poy) Date: Sun, 11 Feb 2001 22:40:04 -0800 (PST) Cc: rizzo@aciri.org, ishizuka@ish.org, freebsd-net@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On Sun, 11 Feb 2001, Luigi Rizzo wrote: > > > Pardon me, but what bridging code are you using ? Is it from Etinc > > or it is the std FreeBSD bridging code ? > > I'm not sure if the bridging code is from ET or if it's the > standard FreeBSD but it seems to be standard FreeBSD bridging code. the output from /var/log/dmesg.boot should clarify this. cheers luigi > root@oahu [8:24pm][/usr/temp/zebra] >> ifconfig bg0 > bg0: flags=8843 mtu 1500 > inet 216.235.44.1 netmask 0xffffff00 broadcast 216.235.44.255 > inet 216.235.45.1 netmask 0xffffff00 broadcast 216.235.45.255 > inet 216.235.56.193 netmask 0xffffffe0 broadcast 216.235.56.223 > ether 00:00:00:03:00:00 > > I've asked Dennis at ETinc the question and his response was: > > if you want to route from one DLCI to the other then you have to put them > in separate bridge groups with their own subnet. You are creating isolated > segments with the ipmap functionality...the mechanism is designed for end > users who get 1 or 2 addresses. > > You COULD fix the O/S to route back to the same interface, but I dont know > how complicated that would be. I dont think there is an easy way to > disable > split-horizon. > > Dennis > > > Cheers, > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > WurldLink Corporation / / / / | / | __] ] > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > I'm not sure if this is related but we're using FreeBSD with a > > > Emerging Technologies T1 card to do ADSL Bridging and ran into a problem > > > where for example, if a bridge group was like... > > > > > > 216.235.44.1 255.255.255.0 > > > > > > All the nodes 216.235.44.2-254 can see 216.235.44.1 fine but it > > > nothing in 216.235.44.2 - 254 can see each other. It seems to be they > > > can't see each other if they are in the same subnet. So it seems all > > > machines in the bridge group can see the gateway and the rest of the > > > world but not each other. Is there a way around this? This is with > > > 4.1-RELEASE, 4.1.1-RELEASE and even 4.2-RELEASE. > > > > > > > > > Cheers, > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > > WurldLink Corporation / / / / | / | __] ] > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-net" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 23:39:11 2001 Delivered-To: freebsd-stable@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id 7960937B401; Sun, 11 Feb 2001 23:38:58 -0800 (PST) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id VAA05857; Sun, 11 Feb 2001 21:38:38 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Sun, 11 Feb 2001 21:38:38 -1000 (HST) From: Vincent Poy To: Luigi Rizzo Cc: , , Subject: Re: BRIDGE breaks ARP? In-Reply-To: <200102120640.f1C6e4R76338@iguana.aciri.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 11 Feb 2001, Luigi Rizzo wrote: > > On Sun, 11 Feb 2001, Luigi Rizzo wrote: > > > > > Pardon me, but what bridging code are you using ? Is it from Etinc > > > or it is the std FreeBSD bridging code ? > > > > I'm not sure if the bridging code is from ET or if it's the > > standard FreeBSD but it seems to be standard FreeBSD bridging code. > > the output from /var/log/dmesg.boot should clarify this. I don't have a dmesg.boot, only a dmesg.yesterday and dmesg.today. What specifically should I be looking for? Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > root@oahu [8:24pm][/usr/temp/zebra] >> ifconfig bg0 > > bg0: flags=8843 mtu 1500 > > inet 216.235.44.1 netmask 0xffffff00 broadcast 216.235.44.255 > > inet 216.235.45.1 netmask 0xffffff00 broadcast 216.235.45.255 > > inet 216.235.56.193 netmask 0xffffffe0 broadcast 216.235.56.223 > > ether 00:00:00:03:00:00 > > > > I've asked Dennis at ETinc the question and his response was: > > > > if you want to route from one DLCI to the other then you have to put them > > in separate bridge groups with their own subnet. You are creating isolated > > segments with the ipmap functionality...the mechanism is designed for end > > users who get 1 or 2 addresses. > > > > You COULD fix the O/S to route back to the same interface, but I dont know > > how complicated that would be. I dont think there is an easy way to > > disable > > split-horizon. > > > > Dennis > > > > > > Cheers, > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > WurldLink Corporation / / / / | / | __] ] > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > I'm not sure if this is related but we're using FreeBSD with a > > > > Emerging Technologies T1 card to do ADSL Bridging and ran into a problem > > > > where for example, if a bridge group was like... > > > > > > > > 216.235.44.1 255.255.255.0 > > > > > > > > All the nodes 216.235.44.2-254 can see 216.235.44.1 fine but it > > > > nothing in 216.235.44.2 - 254 can see each other. It seems to be they > > > > can't see each other if they are in the same subnet. So it seems all > > > > machines in the bridge group can see the gateway and the rest of the > > > > world but not each other. Is there a way around this? This is with > > > > 4.1-RELEASE, 4.1.1-RELEASE and even 4.2-RELEASE. > > > > > > > > > > > > Cheers, > > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > > > WurldLink Corporation / / / / | / | __] ] > > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-net" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 23:41:36 2001 Delivered-To: freebsd-stable@freebsd.org Received: from freebsd.dk (freebsd.dk [212.242.42.178]) by hub.freebsd.org (Postfix) with ESMTP id 7A11E37B401 for ; Sun, 11 Feb 2001 23:41:33 -0800 (PST) Received: (from sos@localhost) by freebsd.dk (8.9.3/8.9.1) id IAA77288; Mon, 12 Feb 2001 08:41:08 +0100 (CET) (envelope-from sos) From: Soren Schmidt Message-Id: <200102120741.IAA77288@freebsd.dk> Subject: Re: UDMA ICRC Read Errors In-Reply-To: <01021213592700.01116@hellraiser.cannoncreek.com> from "Mars G.Miro" at "Feb 12, 2001 01:36:55 pm" To: mars@cannoncreek.com (Mars G.Miro) Date: Mon, 12 Feb 2001 08:41:07 +0100 (CET) Cc: freebsd-stable@freebsd.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It seems Mars G.Miro wrote: > I still kept encountering these errors even when I have upgraded (just a > few hours ago) to 4.2-Stable: > Feb 12 13:36:00 x kernel ad3: UDMA ICRC READ ERROR blk# 35848256 retrying > Feb 12 13:36:00 x kernel ad3: UDMA ICRC READ ERROR blk# 33882176 retrying > I first encountered them after installing the HD(by way of fbsd handbook > section 10.3.2.2, alternative method) circa Jan13 , but that time there was a > discussion on the same type of errors and that a patch(Soren) was to be MFC'ed > that was gonna fix them all. I was not able to upgrade it that time but only > now. > Do the above errors tell that the HD may be broken? It's only about 1 > month old. Hmm, are you sure your cabling is OK ? Do you use disk drawers ? there is a lot of them that are not ata66 ready even if they claim so, ATA100 is even worse.. -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 11 23:45:56 2001 Delivered-To: freebsd-stable@freebsd.org Received: from iguana.aciri.org (iguana.aciri.org [192.150.187.36]) by hub.freebsd.org (Postfix) with ESMTP id 9F4C737B401; Sun, 11 Feb 2001 23:45:47 -0800 (PST) Received: (from rizzo@localhost) by iguana.aciri.org (8.11.1/8.11.1) id f1C7jXN84390; Sun, 11 Feb 2001 23:45:33 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200102120745.f1C7jXN84390@iguana.aciri.org> Subject: Re: BRIDGE breaks ARP? In-Reply-To: from Vincent Poy at "Feb 11, 2001 9:38:38 pm" To: vince@oahu.WURLDLINK.NET (Vincent Poy) Date: Sun, 11 Feb 2001 23:45:33 -0800 (PST) Cc: rizzo@aciri.org, ishizuka@ish.org, freebsd-net@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I don't have a dmesg.boot, only a dmesg.yesterday and dmesg.today. > What specifically should I be looking for? whether or not you have "options BRIDGE' in your kernel config file. (or a message saying "BRIDGE ..." when the system boots) luigi > > Cheers, > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > WurldLink Corporation / / / / | / | __] ] > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > root@oahu [8:24pm][/usr/temp/zebra] >> ifconfig bg0 > > > bg0: flags=8843 mtu 1500 > > > inet 216.235.44.1 netmask 0xffffff00 broadcast 216.235.44.255 > > > inet 216.235.45.1 netmask 0xffffff00 broadcast 216.235.45.255 > > > inet 216.235.56.193 netmask 0xffffffe0 broadcast 216.235.56.223 > > > ether 00:00:00:03:00:00 > > > > > > I've asked Dennis at ETinc the question and his response was: > > > > > > if you want to route from one DLCI to the other then you have to put them > > > in separate bridge groups with their own subnet. You are creating isolated > > > segments with the ipmap functionality...the mechanism is designed for end > > > users who get 1 or 2 addresses. > > > > > > You COULD fix the O/S to route back to the same interface, but I dont know > > > how complicated that would be. I dont think there is an easy way to > > > disable > > > split-horizon. > > > > > > Dennis > > > > > > > > > Cheers, > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > > WurldLink Corporation / / / / | / | __] ] > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > I'm not sure if this is related but we're using FreeBSD with a > > > > > Emerging Technologies T1 card to do ADSL Bridging and ran into a problem > > > > > where for example, if a bridge group was like... > > > > > > > > > > 216.235.44.1 255.255.255.0 > > > > > > > > > > All the nodes 216.235.44.2-254 can see 216.235.44.1 fine but it > > > > > nothing in 216.235.44.2 - 254 can see each other. It seems to be they > > > > > can't see each other if they are in the same subnet. So it seems all > > > > > machines in the bridge group can see the gateway and the rest of the > > > > > world but not each other. Is there a way around this? This is with > > > > > 4.1-RELEASE, 4.1.1-RELEASE and even 4.2-RELEASE. > > > > > > > > > > > > > > > Cheers, > > > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > > > > WurldLink Corporation / / / / | / | __] ] > > > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 0:23:33 2001 Delivered-To: freebsd-stable@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id 44CD137B491; Mon, 12 Feb 2001 00:23:20 -0800 (PST) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id WAA11515; Sun, 11 Feb 2001 22:23:07 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Sun, 11 Feb 2001 22:23:07 -1000 (HST) From: Vincent Poy To: Luigi Rizzo Cc: , , Subject: Re: BRIDGE breaks ARP? In-Reply-To: <200102120745.f1C7jXN84390@iguana.aciri.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 11 Feb 2001, Luigi Rizzo wrote: > > I don't have a dmesg.boot, only a dmesg.yesterday and dmesg.today. > > What specifically should I be looking for? > > whether or not you have "options BRIDGE' in your kernel config file. > (or a message saying "BRIDGE ..." when the system boots) My kernel config doesn't have the BRIDGE option so I guess the bridging code is part of ET's drivers. Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > root@oahu [8:24pm][/usr/temp/zebra] >> ifconfig bg0 > > > > bg0: flags=8843 mtu 1500 > > > > inet 216.235.44.1 netmask 0xffffff00 broadcast 216.235.44.255 > > > > inet 216.235.45.1 netmask 0xffffff00 broadcast 216.235.45.255 > > > > inet 216.235.56.193 netmask 0xffffffe0 broadcast 216.235.56.223 > > > > ether 00:00:00:03:00:00 > > > > > > > > I've asked Dennis at ETinc the question and his response was: > > > > > > > > if you want to route from one DLCI to the other then you have to put them > > > > in separate bridge groups with their own subnet. You are creating isolated > > > > segments with the ipmap functionality...the mechanism is designed for end > > > > users who get 1 or 2 addresses. > > > > > > > > You COULD fix the O/S to route back to the same interface, but I dont know > > > > how complicated that would be. I dont think there is an easy way to > > > > disable > > > > split-horizon. > > > > > > > > Dennis > > > > > > > > > > > > Cheers, > > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > > > WurldLink Corporation / / / / | / | __] ] > > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > > I'm not sure if this is related but we're using FreeBSD with a > > > > > > Emerging Technologies T1 card to do ADSL Bridging and ran into a problem > > > > > > where for example, if a bridge group was like... > > > > > > > > > > > > 216.235.44.1 255.255.255.0 > > > > > > > > > > > > All the nodes 216.235.44.2-254 can see 216.235.44.1 fine but it > > > > > > nothing in 216.235.44.2 - 254 can see each other. It seems to be they > > > > > > can't see each other if they are in the same subnet. So it seems all > > > > > > machines in the bridge group can see the gateway and the rest of the > > > > > > world but not each other. Is there a way around this? This is with > > > > > > 4.1-RELEASE, 4.1.1-RELEASE and even 4.2-RELEASE. > > > > > > > > > > > > > > > > > > Cheers, > > > > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > > > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > > > > > WurldLink Corporation / / / / | / | __] ] > > > > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > > > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > > > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 0:25:41 2001 Delivered-To: freebsd-stable@freebsd.org Received: from iguana.aciri.org (iguana.aciri.org [192.150.187.36]) by hub.freebsd.org (Postfix) with ESMTP id C1F0137B491; Mon, 12 Feb 2001 00:25:31 -0800 (PST) Received: (from rizzo@localhost) by iguana.aciri.org (8.11.1/8.11.1) id f1C8PLH84645; Mon, 12 Feb 2001 00:25:21 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200102120825.f1C8PLH84645@iguana.aciri.org> Subject: Re: BRIDGE breaks ARP? In-Reply-To: from Vincent Poy at "Feb 11, 2001 10:23: 7 pm" To: vince@oahu.WURLDLINK.NET (Vincent Poy) Date: Mon, 12 Feb 2001 00:25:21 -0800 (PST) Cc: rizzo@aciri.org, ishizuka@ish.org, freebsd-net@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > whether or not you have "options BRIDGE' in your kernel config file. > > (or a message saying "BRIDGE ..." when the system boots) > > My kernel config doesn't have the BRIDGE option so I guess the > bridging code is part of ET's drivers. yes, i suspected so... luigi > > Cheers, > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > WurldLink Corporation / / / / | / | __] ] > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > root@oahu [8:24pm][/usr/temp/zebra] >> ifconfig bg0 > > > > > bg0: flags=8843 mtu 1500 > > > > > inet 216.235.44.1 netmask 0xffffff00 broadcast 216.235.44.255 > > > > > inet 216.235.45.1 netmask 0xffffff00 broadcast 216.235.45.255 > > > > > inet 216.235.56.193 netmask 0xffffffe0 broadcast 216.235.56.223 > > > > > ether 00:00:00:03:00:00 > > > > > > > > > > I've asked Dennis at ETinc the question and his response was: > > > > > > > > > > if you want to route from one DLCI to the other then you have to put them > > > > > in separate bridge groups with their own subnet. You are creating isolated > > > > > segments with the ipmap functionality...the mechanism is designed for end > > > > > users who get 1 or 2 addresses. > > > > > > > > > > You COULD fix the O/S to route back to the same interface, but I dont know > > > > > how complicated that would be. I dont think there is an easy way to > > > > > disable > > > > > split-horizon. > > > > > > > > > > Dennis > > > > > > > > > > > > > > > Cheers, > > > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > > > > WurldLink Corporation / / / / | / | __] ] > > > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > > > > > I'm not sure if this is related but we're using FreeBSD with a > > > > > > > Emerging Technologies T1 card to do ADSL Bridging and ran into a problem > > > > > > > where for example, if a bridge group was like... > > > > > > > > > > > > > > 216.235.44.1 255.255.255.0 > > > > > > > > > > > > > > All the nodes 216.235.44.2-254 can see 216.235.44.1 fine but it > > > > > > > nothing in 216.235.44.2 - 254 can see each other. It seems to be they > > > > > > > can't see each other if they are in the same subnet. So it seems all > > > > > > > machines in the bridge group can see the gateway and the rest of the > > > > > > > world but not each other. Is there a way around this? This is with > > > > > > > 4.1-RELEASE, 4.1.1-RELEASE and even 4.2-RELEASE. > > > > > > > > > > > > > > > > > > > > > Cheers, > > > > > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > > > > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > > > > > > WurldLink Corporation / / / / | / | __] ] > > > > > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > > > > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > > > > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-net" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 0:28:28 2001 Delivered-To: freebsd-stable@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id 82F5237B401; Mon, 12 Feb 2001 00:28:15 -0800 (PST) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id WAA11585; Sun, 11 Feb 2001 22:28:01 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Sun, 11 Feb 2001 22:28:01 -1000 (HST) From: Vincent Poy To: Luigi Rizzo Cc: , , Subject: Re: BRIDGE breaks ARP? In-Reply-To: <200102120825.f1C8PLH84645@iguana.aciri.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 12 Feb 2001, Luigi Rizzo wrote: > > > whether or not you have "options BRIDGE' in your kernel config file. > > > (or a message saying "BRIDGE ..." when the system boots) > > > > My kernel config doesn't have the BRIDGE option so I guess the > > bridging code is part of ET's drivers. > > yes, i suspected so... Thanks Luigi for confirming it isn't FreeBSD that's the problem... Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > root@oahu [8:24pm][/usr/temp/zebra] >> ifconfig bg0 > > > > > > bg0: flags=8843 mtu 1500 > > > > > > inet 216.235.44.1 netmask 0xffffff00 broadcast 216.235.44.255 > > > > > > inet 216.235.45.1 netmask 0xffffff00 broadcast 216.235.45.255 > > > > > > inet 216.235.56.193 netmask 0xffffffe0 broadcast 216.235.56.223 > > > > > > ether 00:00:00:03:00:00 > > > > > > > > > > > > I've asked Dennis at ETinc the question and his response was: > > > > > > > > > > > > if you want to route from one DLCI to the other then you have to put them > > > > > > in separate bridge groups with their own subnet. You are creating isolated > > > > > > segments with the ipmap functionality...the mechanism is designed for end > > > > > > users who get 1 or 2 addresses. > > > > > > > > > > > > You COULD fix the O/S to route back to the same interface, but I dont know > > > > > > how complicated that would be. I dont think there is an easy way to > > > > > > disable > > > > > > split-horizon. > > > > > > > > > > > > Dennis > > > > > > > > > > > > > > > > > > Cheers, > > > > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > > > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > > > > > WurldLink Corporation / / / / | / | __] ] > > > > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > > > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > > > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > > > > > > > > I'm not sure if this is related but we're using FreeBSD with a > > > > > > > > Emerging Technologies T1 card to do ADSL Bridging and ran into a problem > > > > > > > > where for example, if a bridge group was like... > > > > > > > > > > > > > > > > 216.235.44.1 255.255.255.0 > > > > > > > > > > > > > > > > All the nodes 216.235.44.2-254 can see 216.235.44.1 fine but it > > > > > > > > nothing in 216.235.44.2 - 254 can see each other. It seems to be they > > > > > > > > can't see each other if they are in the same subnet. So it seems all > > > > > > > > machines in the bridge group can see the gateway and the rest of the > > > > > > > > world but not each other. Is there a way around this? This is with > > > > > > > > 4.1-RELEASE, 4.1.1-RELEASE and even 4.2-RELEASE. > > > > > > > > > > > > > > > > > > > > > > > > Cheers, > > > > > > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > > > > > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > > > > > > > WurldLink Corporation / / / / | / | __] ] > > > > > > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > > > > > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > > > > > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-net" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 0:43:59 2001 Delivered-To: freebsd-stable@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 5687837B401 for ; Mon, 12 Feb 2001 00:43:54 -0800 (PST) Received: (from dillon@localhost) by earth.backplane.com (8.11.2/8.9.3) id f1C8hhM03375; Mon, 12 Feb 2001 00:43:43 -0800 (PST) (envelope-from dillon) Date: Mon, 12 Feb 2001 00:43:43 -0800 (PST) From: Matt Dillon Message-Id: <200102120843.f1C8hhM03375@earth.backplane.com> To: John Reynolds Cc: freebsd-stable@FreeBSD.ORG Subject: Re: sshd in 4.2-STABLE References: <1843641235.20010212104321@road.omskelecom.ru> <14983.29328.298241.606895@whale.home-net> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG :[ On Sunday, February 11, Aaron Mildenstein wrote: ] :> I had the same problem. And do you know what I found was the problem? :> /etc/pam.conf :> was missing the following lines: :> :> sshd auth sufficient pam_skey.so :> sshd auth required pam_unix.so try_first_pass :> sshd session required pam_permit.so :> :> And that was all it took to get sshd to work right. :> Somewhere in there sshd started requiring pam. Go figure. : :Yes, but always always always running "mergemaster" (or if you are sadistic, :doing it by hand) to update /etc/ will avoid gotchas like this. Everybody :tracking -STABLE should also be looking at the RELENG_4 relevent bits from :cvs-all too, just so that you spot a change and your brain and register it. : :-Jr : :-- :=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= :John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation ... or maybe installworld should just check to see if /etc/pam.conf is the unmodified older version and overwrite it with /usr/src/etc/pam.conf by default, rather then create little gotchas for people trying to upgrade. Hmmmmmm. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 0:49:52 2001 Delivered-To: freebsd-stable@freebsd.org Received: from vimfuego.saarinen.org (saarinen.org [203.79.82.14]) by hub.freebsd.org (Postfix) with ESMTP id D4FAB37B491 for ; Mon, 12 Feb 2001 00:49:49 -0800 (PST) Received: from vimfuego.saarinen.org ([192.168.1.1] ident=foobar) by vimfuego.saarinen.org with esmtp (Exim 3.20 #1) id 14SEfX-0007hT-00; Mon, 12 Feb 2001 21:49:11 +1300 Date: Mon, 12 Feb 2001 21:48:59 +1300 (NZDT) From: Juha Saarinen To: Matt Dillon Cc: John Reynolds , "freebsd-stable@FreeBSD.ORG" Subject: Re: sshd in 4.2-STABLE In-Reply-To: <200102120843.f1C8hhM03375@earth.backplane.com> Message-ID: X-S: Always MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > ... or maybe installworld should just check to see if /etc/pam.conf is > the unmodified older version and overwrite it with /usr/src/etc/pam.conf > by default, rather then create little gotchas for people trying to > upgrade. Hmmmmmm. Maybe that'd be too Microsoft... ;-> -- Juha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 2:27:34 2001 Delivered-To: freebsd-stable@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id D082837B401 for ; Mon, 12 Feb 2001 02:27:31 -0800 (PST) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97] ident=root) by probity.mcc.ac.uk with esmtp (Exim 2.05 #4) id 14SGCg-000Ftz-00 for stable@freebsd.org; Mon, 12 Feb 2001 10:27:30 +0000 Received: (from rasputin@localhost) by dogma.freebsd-uk.eu.org (8.11.1/8.11.1) id f1CARTY06859 for stable@freebsd.org; Mon, 12 Feb 2001 10:27:29 GMT (envelope-from rasputin) Date: Mon, 12 Feb 2001 10:27:29 +0000 From: Rasputin To: stable@freebsd.org Subject: Re: getenv() problems on 4.2-STABLE Message-ID: <20010212102729.A6521@dogma.freebsd-uk.eu.org> References: <20010211234348.A5894@superhero.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20010211234348.A5894@superhero.org>; from erichz@superhero.org on Sun, Feb 11, 2001 at 11:43:48PM -0600 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Erich Zigler [010212 05:45]: > I've currently been working on the Gabber port. I'm running in to a constant > problem though. Whenever gettext or GNOME makes a getenv() call it > segfaults. This is Gabber 0.8.1. Here is an example of one of the backtraces... > > #0 0x28c0e7a3 in getenv () from /usr/lib/libc_r.so.4 > #1 0x2881aa5d in guess_category_value () from /usr/local/lib/libintl.so.1 > #2 0x2881a36a in dcgettext__ () from /usr/local/lib/libintl.so.1 > #3 0x2881ab0c in dgettext__ () from /usr/local/lib/libintl.so.1 > #4 0x2881ab38 in gettext__ () from /usr/local/lib/libintl.so.1 > #5 0x28819ffe in gettext () from /usr/local/lib/libintl.so.1 > #6 0x80c0efb in GabberWin::OnSessionConnected (this=0x8390a00, > t=@0x838b200) > at GabberWin.cc:302 I assume Gabber uses X libraries, etc. to reach getenv? Is there a possibility one of those libraries may have it's own version of getenv? The one you'd want is defined in stdlib.h (which wasn't in your code snippet). Sorry, that's all I got (still new to C). -- Rasputin Jack of All Trades :: Master of Nuns To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 2:36:52 2001 Delivered-To: freebsd-stable@freebsd.org Received: from blake.arcadia.spb.ru (ns.arcadia.spb.ru [212.119.177.2]) by hub.freebsd.org (Postfix) with ESMTP id 4303E37B401 for ; Mon, 12 Feb 2001 02:36:48 -0800 (PST) Received: from antigw.arcadia.intranet (antigw.arcadia.intranet [172.16.16.4]) by blake.arcadia.spb.ru (8.9.2/8.8.6) with SMTP id OAA77309 for ; Mon, 12 Feb 2001 14:00:12 +0300 (MSK) Received: from dhcp85.arcadia.intranet ([172.16.16.85]:2154) (HELO dhcp85.arcadia.intranet) by antigw.arcadia.intranet ([172.16.16.4]:25) (F-Secure Anti-Virus for Internet Mail 5.0.53 Release) with SMTP; Mon, 12 Feb 2001 10:28:31 -0000 Date: Mon, 12 Feb 2001 13:34:34 +0300 From: Lev Serebryakov X-Mailer: The Bat! (v1.46d) Personal Reply-To: Lev Serebryakov Organization: Arcadia, Inc. X-Priority: 3 (Normal) Message-ID: <79254222252.20010212133434@arcadia.spb.ru> To: Barney Wolff Subject: Re[3]: Proposed makewhatis perl script fix In-reply-To: <20010211034147.A51972@pit.databus.com> References: <200102110819.f1B8Jk430590@earth.backplane.com> <20010211034147.A51972@pit.databus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello Barney, Sunday, February 11, 2001, 11:41:48 AM, you wrote: BW> Er, could it possibly be that telnet has been hiding the error BW> all along? It's really, really hard to see how ssh could BW> *create* this sort of error. But it is true. On my 4.2-STABLE from 02/02/2001, I've got this error over SSH, but not over telnet or on local console. -- Best regards, Lev mailto:Lev.Serebryakov@arcadia.spb.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 3:55:25 2001 Delivered-To: freebsd-stable@freebsd.org Received: from AMSPRV-SMTP02.prv.versatel.com (unknown [62.58.16.73]) by hub.freebsd.org (Postfix) with ESMTP id 0FD0637B401 for ; Mon, 12 Feb 2001 03:55:20 -0800 (PST) Received: from amshqb-exch02.versatel.com ([10.205.18.36]) by AMSPRV-SMTP02.prv.versatel.com with Microsoft SMTPSVC(5.0.2195.1600); Mon, 12 Feb 2001 12:55:48 +0100 Received: by AMSHQB-EXCH02 with Internet Mail Service (5.5.2650.21) id <1ZH4YSP8>; Mon, 12 Feb 2001 12:55:56 +0100 Message-ID: <77A588078DF6D3118C0A00508B8E03670387584B@AMSHQB-EXCH02> From: Lisa Goulet To: stable@freebsd.org Subject: OpenSSH - remote vulnerabilities Date: Mon, 12 Feb 2001 12:55:54 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain X-OriginalArrivalTime: 12 Feb 2001 11:55:48.0978 (UTC) FILETIME=[BD8D3520:01C094EA] Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I wanted to make openssh port with tcp wrappers and got the following message: ===> OpenSSH-2.2.0 is forbidden: Remote vulnerabilities. What is the bestway to upgrade this? My version is FreeBSD 4.2-STABLE #1. Regards, Lisa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 3:57:52 2001 Delivered-To: freebsd-stable@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id 26A9437B401 for ; Mon, 12 Feb 2001 03:57:46 -0800 (PST) Received: by peitho.fxp.org (Postfix, from userid 1501) id B851C1360C; Mon, 12 Feb 2001 06:57:45 -0500 (EST) Date: Mon, 12 Feb 2001 06:57:45 -0500 From: Chris Faulhaber To: Lisa Goulet Cc: stable@freebsd.org Subject: Re: OpenSSH - remote vulnerabilities Message-ID: <20010212065745.A7127@peitho.fxp.org> References: <77A588078DF6D3118C0A00508B8E03670387584B@AMSHQB-EXCH02> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <77A588078DF6D3118C0A00508B8E03670387584B@AMSHQB-EXCH02>; from Lisa.Goulet@versatel.nl on Mon, Feb 12, 2001 at 12:55:54PM +0100 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Feb 12, 2001 at 12:55:54PM +0100, Lisa Goulet wrote: > Hi, >=20 > I wanted to make openssh port with tcp wrappers and got the following > message: >=20 > =3D=3D=3D> OpenSSH-2.2.0 is forbidden: Remote vulnerabilities. >=20 > What is the bestway to upgrade this? My version is FreeBSD 4.2-STABLE #1. >=20 Well, openssh in the base system already has tcp wrapper support: $ ldd /usr/sbin/sshd /usr/sbin/sshd: libkrb.so.3 =3D> /usr/lib/libkrb.so.3 (0x28092000) libcom_err.so.2 =3D> /usr/lib/libcom_err.so.2 (0x280ab000) libopie.so.2 =3D> /usr/lib/libopie.so.2 (0x280ad000) libmd.so.2 =3D> /usr/lib/libmd.so.2 (0x280b6000) libcrypt.so.2 =3D> /usr/lib/libcrypt.so.2 (0x280c0000) libcrypto.so.1 =3D> /usr/lib/libcrypto.so.1 (0x280d5000) libutil.so.3 =3D> /usr/lib/libutil.so.3 (0x28191000) libz.so.2 =3D> /usr/lib/libz.so.2 (0x2819a000) libwrap.so.3 =3D> /usr/lib/libwrap.so.3 (0x281a7000) ^^^^^^^^^^^^ libpam.so.1 =3D> /usr/lib/libpam.so.1 (0x281af000) libc.so.4 =3D> /usr/lib/libc.so.4 (0x281b8000) --=20 Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org --lrZ03NoBR/3+SXJZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: FreeBSD: The Power To Serve iEYEARECAAYFAjqHz7kACgkQObaG4P6BelBnWACeL2rCqg+fgek4jUL24f75RCgJ ZpgAn3YBvVnpzynUZrRBQJT8ny1iToAY =3Up0 -----END PGP SIGNATURE----- --lrZ03NoBR/3+SXJZ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 4:14:43 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by hub.freebsd.org (Postfix) with ESMTP id 46A3237B401; Mon, 12 Feb 2001 04:14:36 -0800 (PST) Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.physik.uni-mainz.de [134.93.180.54]) by ipamzlx.physik.uni-mainz.de (8.11.2/8.11.2) with ESMTP id f1CCFe984991; Mon, 12 Feb 2001 13:15:41 +0100 (CET) (envelope-from ohartman@ipamzlx.physik.uni-mainz.de) Date: Mon, 12 Feb 2001 13:15:40 +0100 (CET) From: "O. Hartmann" To: freebsd-stable@freebsd.org Cc: freebsd-questions@freebsd.org Subject: compiler and network problems since update Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Sirs. Maybe it is only a kind of subjective impression or some kind of bad luck, but since last week, after a cvsupdate and buldworld, I have problems with TFTP and diskless clients. The phenomenon is that PXE booting X stations run into a TFTP timeout when trying to boot. I didn't change the configuration, but compiled new kernels and installed the binaries proper on all systems (on the bootserver also). I recompiled the DHCP server and installed it, too. Another problem concerns to buildworld. Sometimes we have on our server a buildworld running an some other climate research programs. I realized that when these programs are running (compiled with Lahey Fortran 95 for Linux) FreeBSD's gcc stops compiling with an error SIG 11. This occurs many times. One time I realized a reset of the server. What are the causes of this failure? Hardware? A memory leak? A bug in FreeBSD? Is there a kind of strategy to come closer to this problem? I'm not very firm in debugging, so I have to ask for that. Thanks, Oliver -- MfG O. Hartmann ohartman@mail.physik.uni-mainz.de ---------------------------------------------------------------- IT-Administration des Institut fuer Physik der Atmosphaere (IPA) ---------------------------------------------------------------- Johannes Gutenberg Universitaet Mainz Becherweg 21 55099 Mainz Tel: +496131/3924662 (Maschinensaal) Tel: +496131/3924144 FAX: +496131/3923532 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 4:37: 5 2001 Delivered-To: freebsd-stable@freebsd.org Received: from AMSPRV-SMTP02.prv.versatel.com (unknown [62.58.16.73]) by hub.freebsd.org (Postfix) with ESMTP id D3BBB37B401 for ; Mon, 12 Feb 2001 04:37:02 -0800 (PST) Received: from amshqb-exch02.versatel.com ([10.205.18.36]) by AMSPRV-SMTP02.prv.versatel.com with Microsoft SMTPSVC(5.0.2195.1600); Mon, 12 Feb 2001 13:37:31 +0100 Received: by AMSHQB-EXCH02 with Internet Mail Service (5.5.2650.21) id <1ZH4YTBX>; Mon, 12 Feb 2001 13:37:38 +0100 Message-ID: <77A588078DF6D3118C0A00508B8E03670387584D@AMSHQB-EXCH02> From: Lisa Goulet To: 'Chris Faulhaber' Cc: stable@freebsd.org Subject: RE: OpenSSH - remote vulnerabilities Date: Mon, 12 Feb 2001 13:37:36 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain X-OriginalArrivalTime: 12 Feb 2001 12:37:31.0317 (UTC) FILETIME=[910FD650:01C094F0] Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On Mon, Feb 12, 2001 at 12:55:54PM +0100, Lisa Goulet wrote: > > Hi, > > > > I wanted to make openssh port with tcp wrappers and got the following > > message: > > > > ===> OpenSSH-2.2.0 is forbidden: Remote vulnerabilities. > > > > What is the bestway to upgrade this? My version is FreeBSD 4.2-STABLE > #1. > > > > Well, openssh in the base system already has tcp wrapper support: > [Lisa Goulet] Thanks for the tip! Regards, Lisa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 5:57:13 2001 Delivered-To: freebsd-stable@freebsd.org Received: from weirdo.netcraft.com (weirdo.netcraft.com [195.92.95.47]) by hub.freebsd.org (Postfix) with ESMTP id 24C7E37B491 for ; Mon, 12 Feb 2001 05:57:09 -0800 (PST) Received: (from sketchy@localhost) by weirdo.netcraft.com (8.11.2/8.11.2) id f1CDv5M08534 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 13:57:05 GMT (envelope-from sketchy) Date: Mon, 12 Feb 2001 13:57:05 +0000 From: Jonathan Perkin To: freebsd-stable@freebsd.org Subject: Constantly crashing SMP box Message-ID: <20010212135705.F358@netcraft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD/i386 4.2-STABLE Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey guys, This is probably a hardware issue, but I need to make sure :/ Box is an ASUS P2B-DS with dual P3/600's and 1Gb of ram. With a UP kernel, the box is completely stable, but boot an SMP kernel and it will invariably crash within a couple of minutes. I've tried two different BIOS revisions (the latest is still nearly a year old :/) and tweaking MPS configurations in the BIOS to no avail. The ram is brand new, but the CPU's have been taken from previously-working boxes. Here's the crash dump. It happens both on 4.2-RELEASE and -STABLE as of last Friday. Kernel configuration is basically GENERIC with a lot of cruft removed as to narrow down the problem (tried various with/without options, still the same result). mptable looks ok. jeeves# gdb -k /kernel.debug /var/crash/vmcore.5 GNU gdb 4.18 [...] This GDB was configured as "i386-unknown-freebsd"... SMP 2 cpus IdlePTD 2887680 initial pcb at 2468a0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode mp_lock = 00000003; cpuid = 0; lapic.id = 01000000 fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x8:0x0 stack pointer = 0x10:0xdfaf9c30 frame pointer = 0x10:0xdfaf9c30 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 3800 (cpp) interrupt mask = net bio cam <- SMP: XXX trap number = 12 panic: page fault mp_lock = 00000003; cpuid = 0; lapic.id = 01000000 boot() called on cpu#0 [...] #0 dumpsys () at ../../kern/kern_shutdown.c:469 469 if (dumping++) { (kgdb) where #0 dumpsys () at ../../kern/kern_shutdown.c:469 #1 0xc014efef in boot (howto=256) at ../../kern/kern_shutdown.c:309 #2 0xc014f3b9 in panic (fmt=0xc02204ef "page fault") at ../../kern/kern_shutdown.c:556 #3 0xc01f1cf8 in trap_fatal (frame=0xdfaf9bf0, eva=0) at ../../i386/i386/trap.c:951 #4 0xc01f1969 in trap_pfault (frame=0xdfaf9bf0, usermode=0, eva=0) at ../../i386/i386/trap.c:844 #5 0xc01f14bf in trap (frame={tf_fs = -1062666216, tf_es = -542179312, tf_ds = -542179312, tf_edi = 0, tf_esi = -625308436, tf_ebp = -542139344, tf_isp = -542139364, tf_ebx = 134692864, tf_edx = -542146560, tf_ecx = 1, tf_eax = 14, tf_trapno = 12, tf_err = 0, tf_eip = 0, tf_cs = 8, tf_eflags = 66118, tf_esp = -542139292, tf_ss = -1071714136}) at ../../i386/i386/trap.c:443 #6 0x0 in ?? () 443 (void) trap_pfault(&frame, FALSE, eva); -- Jonathan Perkin +44 (0)1225 867914 Netcraft Ltd, Bradford on Avon, UK - http://www.netcraft.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6: 0: 5 2001 Delivered-To: freebsd-stable@freebsd.org Received: from raven.ravenbrook.com (raven.ravenbrook.com [193.82.131.18]) by hub.freebsd.org (Postfix) with ESMTP id 691C837B491 for ; Mon, 12 Feb 2001 05:59:47 -0800 (PST) Received: from thrush.ravenbrook.com (thrush.ravenbrook.com [193.112.141.249]) by raven.ravenbrook.com (8.9.3/8.9.3) with ESMTP id NAA05318; Mon, 12 Feb 2001 13:59:19 GMT Received: from thrush.ravenbrook.com (localhost [127.0.0.1]) by thrush.ravenbrook.com (8.11.2/8.11.2) with ESMTP id f1CDwVY00343; Mon, 12 Feb 2001 13:58:35 GMT (envelope-from nb@thrush.ravenbrook.com) From: Nick Barnes To: freebsd-stable@freebsd.org Cc: tonyr@cs-cape.co.za, gandalf@vilnya.demon.co.uk, markk@knigma.org Subject: Re: Sound on Intel Easton In-Reply-To: Date: Mon, 12 Feb 2001 13:58:31 +0000 Message-ID: <341.981986311@thrush.ravenbrook.com> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mark Knight wrote: > In article <03ac01c08639$f2982910$1004020a@darkstar>, Cameron Grant > writes > >> Any suggestions would be greatly appreciated > > > >not yet supported. > > > Odd. I have a D815EEA motherboard with 4.2-STABLE from 16th Jan. I have > 'device pcm' in my kernel config. dmesg reports: > > pcm0: port 0xde80-0xdebf irq 10 at device 7.0 on pci1 > > It seems to work just fine playing mp3's. The D815EEA has two PCI audio subsystems. The basic audio subsystem uses ICH2 (Intel 82801BA I/O controller hub) and an AD1885 codec. The optional audio subsystem uses (the ICH2 and) a Creative Labs ES1373. Your system includes the ES1373. I'm guessing that Tony's doesn't, and neither does mine. However, I believe ICH2 support is on its way. The ICH2 generates this message: pci0: (vendor=0x8086, dev=0x2445) at 31.5 irq 9 If whoever is working on ICH2 support wants help coding or testing it, they should get in touch. Nick Barnes -- FreeBSD 4.2-STABLE: up 30 mins last reboot Fri Feb 9 16:54 (upgraded to FreeBSD STABLE) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6: 8: 5 2001 Delivered-To: freebsd-stable@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 28A9337B491 for ; Mon, 12 Feb 2001 06:08:03 -0800 (PST) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 12 Feb 2001 14:08:02 +0000 (GMT) Date: Mon, 12 Feb 2001 14:08:01 +0000 From: David Malone To: Jonathan Perkin Cc: freebsd-stable@freebsd.org Subject: Re: Constantly crashing SMP box Message-ID: <20010212140801.A46354@walton.maths.tcd.ie> References: <20010212135705.F358@netcraft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010212135705.F358@netcraft.com>; from sketchy@netcraft.com on Mon, Feb 12, 2001 at 01:57:05PM +0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Feb 12, 2001 at 01:57:05PM +0000, Jonathan Perkin wrote: > The ram is brand new, but the CPU's have been taken from > previously-working boxes. Were the previous boxes SMP? We had a problem with a machine running fine un UP mode but died within minutes in SMP mode. The problem turned out to be heat related and getting better fans fixed the problem. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:13:10 2001 Delivered-To: freebsd-stable@freebsd.org Received: from weirdo.netcraft.com (weirdo.netcraft.com [195.92.95.47]) by hub.freebsd.org (Postfix) with ESMTP id 175EC37B401 for ; Mon, 12 Feb 2001 06:13:08 -0800 (PST) Received: (from sketchy@localhost) by weirdo.netcraft.com (8.11.2/8.11.2) id f1CECtN08593; Mon, 12 Feb 2001 14:12:55 GMT (envelope-from sketchy) Date: Mon, 12 Feb 2001 14:12:55 +0000 From: Jonathan Perkin To: David Malone Cc: freebsd-stable@freebsd.org Subject: Re: Constantly crashing SMP box Message-ID: <20010212141255.G358@netcraft.com> References: <20010212135705.F358@netcraft.com> <20010212140801.A46354@walton.maths.tcd.ie> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010212140801.A46354@walton.maths.tcd.ie>; from dwmalone@maths.tcd.ie on Mon, Feb 12, 2001 at 02:08:01pm +0000 X-Operating-System: FreeBSD/i386 4.2-STABLE Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Feb 12, 2001 at 02:08:01pm +0000, David Malone wrote: > On Mon, Feb 12, 2001 at 01:57:05PM +0000, Jonathan Perkin wrote: > > > The ram is brand new, but the CPU's have been taken from > > previously-working boxes. > > Were the previous boxes SMP? We had a problem with a machine > running fine un UP mode but died within minutes in SMP mode. > The problem turned out to be heat related and getting better > fans fixed the problem. No they weren't, thanks for the tip. I'll give that a try and see what happens - odd that it only affects the 2nd cpu though. -- Jonathan Perkin +44 (0)1225 867914 Netcraft Ltd, Bradford on Avon, UK - http://www.netcraft.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:14:38 2001 Delivered-To: freebsd-stable@freebsd.org Received: from aifhs8.alcatel.fr (aifhs8.alcatel.fr [212.208.74.153]) by hub.freebsd.org (Postfix) with ESMTP id 3282A37B401 for ; Mon, 12 Feb 2001 06:14:34 -0800 (PST) Received: from frmta003.netfr.alcatel.fr (frmta003.netfr.alcatel.fr [155.132.251.32]) by aifhs8.alcatel.fr (ALCANET/SMTP2) with SMTP id PAA06511; Mon, 12 Feb 2001 15:13:43 +0100 (MET) Received: by frmta003.netfr.alcatel.fr(Lotus SMTP MTA v4.6.7 (934.1 12-30-1999)) id C12569F1.004E232E ; Mon, 12 Feb 2001 15:13:28 +0100 X-Lotus-FromDomain: ALCATEL From: Thierry.Herbelot@alcatel.fr To: David Malone Cc: Jonathan Perkin , freebsd-stable@FreeBSD.ORG Message-ID: Date: Mon, 12 Feb 2001 15:13:24 +0100 Subject: Re: Constantly crashing SMP box Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG furthermore, you better have SMP processors with the same stepping number (if your processors came from two different boxes, the CPUs may have come from different production batches) TfH David Malone on 12/02/2001 15:08:01 To: Jonathan Perkin cc: freebsd-stable@FreeBSD.ORG(bcc: Thierry HERBELOT/FR/ALCATEL) Subject: Re: Constantly crashing SMP box On Mon, Feb 12, 2001 at 01:57:05PM +0000, Jonathan Perkin wrote: > The ram is brand new, but the CPU's have been taken from > previously-working boxes. Were the previous boxes SMP? We had a problem with a machine running fine un UP mode but died within minutes in SMP mode. The problem turned out to be heat related and getting better fans fixed the problem. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:20:11 2001 Delivered-To: freebsd-stable@freebsd.org Received: from veldy.net (w028.z064001117.msp-mn.dsl.cnc.net [64.1.117.28]) by hub.freebsd.org (Postfix) with ESMTP id E769837B401 for ; Mon, 12 Feb 2001 06:20:07 -0800 (PST) Received: from HP2500B (veldy.net [64.1.117.28]) by veldy.net (Postfix) with SMTP id E2C8F8C7D; Mon, 12 Feb 2001 08:19:27 -0600 (CST) Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Cc: References: <200102110405.UAA90354@miles.cs.washington.edu> <00da01c093e0$72429f20$931576d8@inethouston.net> <001601c0949f$3cf34260$1d750140@cascade> <021801c094a0$173fa8a0$931576d8@inethouston.net> Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: Mon, 12 Feb 2001 08:19:32 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:20:46 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 9ABE637B401 for ; Mon, 12 Feb 2001 06:20:40 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEKdI40306 for ; Mon, 12 Feb 2001 14:20:39 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA04453 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:20:39 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:20:38 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:21:16 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 1AF7637B4EC for ; Mon, 12 Feb 2001 06:21:12 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CELBI40322 for ; Mon, 12 Feb 2001 14:21:11 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA04491 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:21:10 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:21:09 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:22: 6 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id CB4CD37B4EC for ; Mon, 12 Feb 2001 06:21:58 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CELvI40335 for ; Mon, 12 Feb 2001 14:21:57 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA04544 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:21:57 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:21:56 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:23:15 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 40AB237B503 for ; Mon, 12 Feb 2001 06:23:07 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEN6I40363 for ; Mon, 12 Feb 2001 14:23:06 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA04668 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:23:05 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:23:05 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:24: 5 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 6867F37B491 for ; Mon, 12 Feb 2001 06:23:57 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CENuI40380 for ; Mon, 12 Feb 2001 14:23:56 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA04728 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:23:56 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:23:55 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:25:15 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id CAB7037B401 for ; Mon, 12 Feb 2001 06:25:06 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEP5I40411 for ; Mon, 12 Feb 2001 14:25:05 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA04804 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:25:05 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:25:04 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:25:39 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 0E80B37B4EC for ; Mon, 12 Feb 2001 06:25:35 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEPYI40424 for ; Mon, 12 Feb 2001 14:25:34 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA04840 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:25:33 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:25:33 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:26:24 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 8975D37B4EC for ; Mon, 12 Feb 2001 06:26:17 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEQGI40437 for ; Mon, 12 Feb 2001 14:26:16 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA04897 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:26:16 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:26:15 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:27:30 2001 Delivered-To: freebsd-stable@freebsd.org Received: from dilbert.fcg.co.uk (dilbert.firstcallgroup.co.uk [194.203.69.166]) by hub.freebsd.org (Postfix) with ESMTP id 9B61D37B491 for ; Mon, 12 Feb 2001 06:27:25 -0800 (PST) Received: from pfrench by dilbert.fcg.co.uk with local (Exim 3.20 #1) id 14SJwf-000MVY-00; Mon, 12 Feb 2001 14:27:13 +0000 To: dwmalone@maths.tcd.ie, Thierry.Herbelot@alcatel.fr Subject: Re: Constantly crashing SMP box Cc: freebsd-stable@FreeBSD.ORG, sketchy@netcraft.com In-Reply-To: Message-Id: From: Pete French Date: Mon, 12 Feb 2001 14:27:13 +0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > furthermore, you better have SMP processors with the same stepping > number (if your processors came from two different boxes, the CPUs > may have come from different production batches) Is this an absolute necessity ? I'm thinking of buying a 2nd CPU to run -stable on, but getting a matching one will be hard ! -pete. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:28:40 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 98AA737B401 for ; Mon, 12 Feb 2001 06:28:35 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CESYI40494 for ; Mon, 12 Feb 2001 14:28:34 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05103 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:28:34 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:28:33 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:29:31 2001 Delivered-To: freebsd-stable@freebsd.org Received: from veldy.net (w028.z064001117.msp-mn.dsl.cnc.net [64.1.117.28]) by hub.freebsd.org (Postfix) with ESMTP id 0604637B6DA for ; Mon, 12 Feb 2001 06:29:20 -0800 (PST) Received: from HP2500B (veldy.net [64.1.117.28]) by veldy.net (Postfix) with SMTP id 45DE88C67 for ; Mon, 12 Feb 2001 08:28:41 -0600 (CST) Message-ID: <00b201c09500$1b9b38f0$3028680a@tgt.com> From: "Thomas T. Veldhouse" To: References: <004f01c094fe$d1cc6010$3028680a@tgt.com> Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: Mon, 12 Feb 2001 08:28:45 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sorry about the multiple postings - I am not sure what happened here :( Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Sent: Monday, February 12, 2001 8:26 AM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It > > > > > > > > > works wonderfully for both of them. > > Tom Veldhouse > veldy@veldy.net > > ----- Original Message ----- > From: "David W. Chapman Jr." > To: "Thomas T. Veldhouse" > Cc: > Sent: Sunday, February 11, 2001 9:01 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > > soren and the group why not, but it was explained to me a while ago and > made > > sense at the time. > > > > ----- Original Message ----- > > From: "Thomas T. Veldhouse" > > To: "David W. Chapman Jr." > > Cc: > > Sent: Sunday, February 11, 2001 8:55 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > Why not? It works great for me. Also, when watching a DVD video (via > > > Windows ;( ), you can not get the best performance unless you turn DMA > > on. > > > > > > Tom Veldhouse > > > veldy@veldy.net > > > > > > ----- Original Message ----- > > > From: "David W. Chapman Jr." > > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > > > Cc: ; "Eric Jacoboni" > > > Sent: Saturday, February 10, 2001 10:09 PM > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > There's a difference between UDMA and WDMA. From what I hear you > don't > > > want > > > > UDMA on ATAPI devices anyways. > > > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > > to a VIA 82C686 controller. Here is the message from my boot > probe... > > > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:30:34 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id E226637B401 for ; Mon, 12 Feb 2001 06:30:31 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEURI40515 for ; Mon, 12 Feb 2001 14:30:27 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05230 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:30:27 GMT From: freebsd-stable-local@insignia.com To: dwmalone@insignia.com, Thierry.Herbelot@insignia.com Subject: Re: Constantly crashing SMP box Date: 12 Feb 2001 14:30:24 -0000 Message-ID: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > furthermore, you better have SMP processors with the same stepping > number (if your processors came from two different boxes, the CPUs > may have come from different production batches) Is this an absolute necessity ? I'm thinking of buying a 2nd CPU to run -stable on, but getting a matching one will be hard ! -pete. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:32:12 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id CF7E337B401 for ; Mon, 12 Feb 2001 06:32:06 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEW5I40532 for ; Mon, 12 Feb 2001 14:32:05 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05319 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:32:05 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:32:04 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:33:24 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 3E66A37B684 for ; Mon, 12 Feb 2001 06:33:18 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEXGI40553 for ; Mon, 12 Feb 2001 14:33:16 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05390 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:33:16 GMT From: "Thomas T. Veldhouse" To: Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:33:14 -0000 Message-ID: <00b201c09500$1b9b38f0$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sorry about the multiple postings - I am not sure what happened here :( Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Sent: Monday, February 12, 2001 8:26 AM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It > > > > > > > > > works wonderfully for both of them. > > Tom Veldhouse > veldy@veldy.net > > ----- Original Message ----- > From: "David W. Chapman Jr." > To: "Thomas T. Veldhouse" > Cc: > Sent: Sunday, February 11, 2001 9:01 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > > soren and the group why not, but it was explained to me a while ago and > made > > sense at the time. > > > > ----- Original Message ----- > > From: "Thomas T. Veldhouse" > > To: "David W. Chapman Jr." > > Cc: > > Sent: Sunday, February 11, 2001 8:55 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > Why not? It works great for me. Also, when watching a DVD video (via > > > Windows ;( ), you can not get the best performance unless you turn DMA > > on. > > > > > > Tom Veldhouse > > > veldy@veldy.net > > > > > > ----- Original Message ----- > > > From: "David W. Chapman Jr." > > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > > > Cc: ; "Eric Jacoboni" > > > Sent: Saturday, February 10, 2001 10:09 PM > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > There's a difference between UDMA and WDMA. From what I hear you > don't > > > want > > > > UDMA on ATAPI devices anyways. > > > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > > to a VIA 82C686 controller. Here is the message from my boot > probe... > > > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:34:51 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 0302D37B65D for ; Mon, 12 Feb 2001 06:34:43 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEYfI40579 for ; Mon, 12 Feb 2001 14:34:42 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05482 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:34:41 GMT From: freebsd-stable-local@insignia.com To: "Thomas T. Veldhouse" Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:34:37 -0000 Message-ID: <3A87F594.4E05AC@ivision.co.uk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Pls stop sending this reply...you bcc'd it to FreeBSD about 6 times now! Cheers Richard "Thomas T. Veldhouse" wrote: > > OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It > > works wonderfully for both of them. > > Tom Veldhouse > veldy@veldy.net > > ----- Original Message ----- > From: "David W. Chapman Jr." > To: "Thomas T. Veldhouse" > Cc: > Sent: Sunday, February 11, 2001 9:01 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > > soren and the group why not, but it was explained to me a while ago and > made > > sense at the time. > > > > ----- Original Message ----- > > From: "Thomas T. Veldhouse" > > To: "David W. Chapman Jr." > > Cc: > > Sent: Sunday, February 11, 2001 8:55 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > Why not? It works great for me. Also, when watching a DVD video (via > > > Windows ;( ), you can not get the best performance unless you turn DMA > > on. > > > > > > Tom Veldhouse > > > veldy@veldy.net > > > > > > ----- Original Message ----- > > > From: "David W. Chapman Jr." > > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > > > Cc: ; "Eric Jacoboni" > > > Sent: Saturday, February 10, 2001 10:09 PM > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > There's a difference between UDMA and WDMA. From what I hear you > don't > > > want > > > > UDMA on ATAPI devices anyways. > > > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > > to a VIA 82C686 controller. Here is the message from my boot > probe... > > > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:34:58 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 8905337B6A8 for ; Mon, 12 Feb 2001 06:34:51 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEYnI40592 for ; Mon, 12 Feb 2001 14:34:49 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05505 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:34:48 GMT From: freebsd-stable-local@insignia.com To: dwmalone@insignia.com, Thierry.Herbelot@insignia.com Subject: Re: Constantly crashing SMP box Date: 12 Feb 2001 14:34:48 -0000 Message-ID: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > furthermore, you better have SMP processors with the same stepping > number (if your processors came from two different boxes, the CPUs > may have come from different production batches) Is this an absolute necessity ? I'm thinking of buying a 2nd CPU to run -stable on, but getting a matching one will be hard ! -pete. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:35:41 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id E032237B401 for ; Mon, 12 Feb 2001 06:35:32 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEZVI40611 for ; Mon, 12 Feb 2001 14:35:31 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05554 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:35:31 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:35:30 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:36:59 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 5984C37B401 for ; Mon, 12 Feb 2001 06:36:50 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEanI40639 for ; Mon, 12 Feb 2001 14:36:49 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05638 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:36:48 GMT From: "Thomas T. Veldhouse" To: Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:36:42 -0000 Message-ID: <00b201c09500$1b9b38f0$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sorry about the multiple postings - I am not sure what happened here :( Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Sent: Monday, February 12, 2001 8:26 AM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It > > > > > > > > > works wonderfully for both of them. > > Tom Veldhouse > veldy@veldy.net > > ----- Original Message ----- > From: "David W. Chapman Jr." > To: "Thomas T. Veldhouse" > Cc: > Sent: Sunday, February 11, 2001 9:01 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > > soren and the group why not, but it was explained to me a while ago and > made > > sense at the time. > > > > ----- Original Message ----- > > From: "Thomas T. Veldhouse" > > To: "David W. Chapman Jr." > > Cc: > > Sent: Sunday, February 11, 2001 8:55 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > Why not? It works great for me. Also, when watching a DVD video (via > > > Windows ;( ), you can not get the best performance unless you turn DMA > > on. > > > > > > Tom Veldhouse > > > veldy@veldy.net > > > > > > ----- Original Message ----- > > > From: "David W. Chapman Jr." > > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > > > Cc: ; "Eric Jacoboni" > > > Sent: Saturday, February 10, 2001 10:09 PM > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > There's a difference between UDMA and WDMA. From what I hear you > don't > > > want > > > > UDMA on ATAPI devices anyways. > > > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > > to a VIA 82C686 controller. Here is the message from my boot > probe... > > > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:37:47 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 8A47037B401 for ; Mon, 12 Feb 2001 06:37:39 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEbcI40652 for ; Mon, 12 Feb 2001 14:37:38 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05693 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:37:38 GMT From: freebsd-stable-local@insignia.com To: "Thomas T. Veldhouse" Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:37:37 -0000 Message-ID: <3A87F594.4E05AC@ivision.co.uk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Pls stop sending this reply...you bcc'd it to FreeBSD about 6 times now! Cheers Richard "Thomas T. Veldhouse" wrote: > > OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It > > works wonderfully for both of them. > > Tom Veldhouse > veldy@veldy.net > > ----- Original Message ----- > From: "David W. Chapman Jr." > To: "Thomas T. Veldhouse" > Cc: > Sent: Sunday, February 11, 2001 9:01 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > > soren and the group why not, but it was explained to me a while ago and > made > > sense at the time. > > > > ----- Original Message ----- > > From: "Thomas T. Veldhouse" > > To: "David W. Chapman Jr." > > Cc: > > Sent: Sunday, February 11, 2001 8:55 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > Why not? It works great for me. Also, when watching a DVD video (via > > > Windows ;( ), you can not get the best performance unless you turn DMA > > on. > > > > > > Tom Veldhouse > > > veldy@veldy.net > > > > > > ----- Original Message ----- > > > From: "David W. Chapman Jr." > > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > > > Cc: ; "Eric Jacoboni" > > > Sent: Saturday, February 10, 2001 10:09 PM > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > There's a difference between UDMA and WDMA. From what I hear you > don't > > > want > > > > UDMA on ATAPI devices anyways. > > > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > > to a VIA 82C686 controller. Here is the message from my boot > probe... > > > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:38:19 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id DB97437B491 for ; Mon, 12 Feb 2001 06:38:16 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEcFI40674 for ; Mon, 12 Feb 2001 14:38:15 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05746 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:38:15 GMT From: freebsd-stable-local@insignia.com To: dwmalone@insignia.com, Thierry.Herbelot@insignia.com Subject: Re: Constantly crashing SMP box Date: 12 Feb 2001 14:38:14 -0000 Message-ID: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > furthermore, you better have SMP processors with the same stepping > number (if your processors came from two different boxes, the CPUs > may have come from different production batches) Is this an absolute necessity ? I'm thinking of buying a 2nd CPU to run -stable on, but getting a matching one will be hard ! -pete. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:38:51 2001 Delivered-To: freebsd-stable@freebsd.org Received: from p133.inode.at (p133.inode.at [195.58.160.3]) by hub.freebsd.org (Postfix) with ESMTP id CB48737B401 for ; Mon, 12 Feb 2001 06:38:39 -0800 (PST) Received: from inode.at (line166.adsl.wien.inode.at [213.229.7.166]) by p133.inode.at (8.11.1/8.10.0.0) with ESMTP id f1CEcaO04889 for ; Mon, 12 Feb 2001 15:38:36 +0100 Message-ID: <3A87F5C8.D99B1787@inode.at> Date: Mon, 12 Feb 2001 15:40:08 +0100 From: Michael Bretterklieber X-Mailer: Mozilla 4.75 [de] (Windows NT 5.0; U) X-Accept-Language: de MIME-Version: 1.0 To: freebsd-stable@FreeBSD.org Subject: Athlon TB 700 w. Asus K7M vs. FreeBSD (2nd try) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, The problems with my Athlon Thunderbird 700 on an Asus K7M Motherboard (Bios 1009) and FreeBSD 4.2 still exists. I didn't get a solution from the FreeBSD-community to solve this problems. Now I installed RedHat 7.0 Linux an it works. I think there is a bug in the FreeBSD-kernel, witch slows down my system, because three other OS's work without Problems (Linux, W98, Win2k). Here's the problem-description again: The system is very very slow, like on an old 386. Keyboard clicks are delayed, its like I work over a slow network. I have this problems since I updatet from an Athlon 500 to an Athlon Thunderbird 700. I use already the latest BIOS from Asus. dmesg: kernel output: Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-RELEASE #1: Sat Dec 2 21:47:42 CET 2000 root@worf.jawa.at:/usr/src/sys/compile/WORF Timecounter "i8254" frequency 1193182 Hz CPU: AMD Athlon(tm) Processor (704.94-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x642 Stepping = 2 Features=0x183f9ff AMD Features=0xc0440000<,AMIE,DSP,3DNow!> real memory = 134152192 (131008K bytes) config> q avail memory = 127262720 (124280K bytes) Preloaded elf kernel "kernel" at 0xc0354000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc035409c. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 5.0 irq 11 isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 4.2 irq 9 chip1: at device 4.4 on pci0 pcm0: port 0xd000-0xd003,0xd400-0xd4ff irq 10 at device 4.5 on pci0 bktr0: mem 0xeddfd000-0xeddfdfff irq 5 at device 14.0 on pci0 iicbb0: on bti2c0 iicbus0: on iicbb0 master-only smbus0: on bti2c0 bktr0: Card has no configuration EEPROM. Cannot determine card make. bktr0: Pinnacle/Miro TV, Temic NTSC tuner. pci0: (vendor=0x109e, dev=0x0878) at 14.1 irq 5 sym0: <810a> port 0xd800-0xd8ff mem 0xefffff00-0xefffffff irq 10 at device 15.0 on pci0 sym0: Symbios NVRAM, ID 7, Fast-10, SE, parity checking sym0: open drain IRQ line driver sym0: using LOAD/STORE-based firmware. de0: port 0xc800-0xc87f mem 0xeffffe80-0xeffffeff irq 9 at device 16.0 on pci0 de0: SMC 21041 [10Mb/s] pass 1.1 de0: address 00:00:c0:99:b5:bf fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold ppbus0: IEEE1284 device found /NIBBLE/PS2/ECP Probing for PnP devices on ppbus0: ppbus0: PCL,MLC,PML lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 ppi0: on ppbus0 joy0 at port 0x201 on isa0 de0: enabling 10baseT port ad0: 29314MB [59560/16/63] at ata0-master UDMA66 ad2: 9641MB [19590/16/63] at ata1-master UDMA33 ad3: 6197MB [12592/16/63] at ata1-slave UDMA33 Waiting 5 seconds for SCSI devices to settle (noperiph:sym0:0:-1:-1): SCSI BUS reset delivered. (probe5:sym0:0:5:0): phase change 6-7 6@07e2ef8c resid=4. Mounting root from ufs:/dev/ad0s3a cd0 at sym0 bus 0 target 4 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 10.000MB/s transfers (10.000MHz, offset 8) cd0: Attempt to query device size failed: NOT READY, Medium not present - tray closed da0 at sym0 bus 0 target 5 lun 0 da0: Removable Direct Access SCSI-2 device da0: 3.300MB/s transfers da0: Attempt to query device size failed: NOT READY, Medium not present uhci0: port 0xcc00-0xcc1f irq 9 at device 4.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered bye, -- -------------------------------------- E-mail: Michael.Bretterklieber@jawa.at ---------------------------- JAWA MANAGEMENT und SOFTWARE Liebenauer Hauptstr. 200 A-8041 GRAZ Tel: ++43-(0)316-403274-12 Fax: ++43-(0)316-403274-10 GSM: ++43-(0)676-93 96 698 homepage: http://www.jawa.at --------- privat ----------- E-mail: mbretter@inode.at homepage: http://www.inode.at/mbretter -------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:39: 1 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hotmail.com (f151.pav1.hotmail.com [64.4.31.151]) by hub.freebsd.org (Postfix) with ESMTP id 6D0BB37B401 for ; Mon, 12 Feb 2001 06:38:56 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 12 Feb 2001 06:38:56 -0800 Received: from 132.18.128.3 by pv1fd.pav1.hotmail.msn.com with HTTP; Mon, 12 Feb 2001 14:38:55 GMT X-Originating-IP: [132.18.128.3] Reply-To: kam@salsolutions.net From: "Kam Salisbury" To: sketchy@netcraft.com Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Constantly crashing SMP box Date: Mon, 12 Feb 2001 14:38:55 -0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 12 Feb 2001 14:38:56.0219 (UTC) FILETIME=[8733AAB0:01C09501] Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -snip >No they weren't, thanks for the tip. I'll give that a try and see >what happens - odd that it only affects the 2nd cpu though. -snip Just noticed and checked my SMP box as well. I have an ABit BP6 with two Celeron 400 CPUs (I know, whimpy CPUs but they were cheap) and the 2nd CPU always runs hotter than the first. I tried reapplying thermal grease, better (3pin thermo controlled) fans and even switching CPU positions, the CPU in position two is always running 4 to 10 degrees hotter on average. Kam Salisbury Network Alchemist http://www.salsolutions.net/ _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:39:13 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 6626B37B401 for ; Mon, 12 Feb 2001 06:39:04 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEd3I40691 for ; Mon, 12 Feb 2001 14:39:03 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05854 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:39:03 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:39:02 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:39:59 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 2644237B401 for ; Mon, 12 Feb 2001 06:39:53 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEdqI40704 for ; Mon, 12 Feb 2001 14:39:52 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05902 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:39:51 GMT From: "Thomas T. Veldhouse" To: Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:39:50 -0000 Message-ID: <00b201c09500$1b9b38f0$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sorry about the multiple postings - I am not sure what happened here :( Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Sent: Monday, February 12, 2001 8:26 AM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It > > > > > > > > > works wonderfully for both of them. > > Tom Veldhouse > veldy@veldy.net > > ----- Original Message ----- > From: "David W. Chapman Jr." > To: "Thomas T. Veldhouse" > Cc: > Sent: Sunday, February 11, 2001 9:01 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > > soren and the group why not, but it was explained to me a while ago and > made > > sense at the time. > > > > ----- Original Message ----- > > From: "Thomas T. Veldhouse" > > To: "David W. Chapman Jr." > > Cc: > > Sent: Sunday, February 11, 2001 8:55 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > Why not? It works great for me. Also, when watching a DVD video (via > > > Windows ;( ), you can not get the best performance unless you turn DMA > > on. > > > > > > Tom Veldhouse > > > veldy@veldy.net > > > > > > ----- Original Message ----- > > > From: "David W. Chapman Jr." > > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > > > Cc: ; "Eric Jacoboni" > > > Sent: Saturday, February 10, 2001 10:09 PM > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > There's a difference between UDMA and WDMA. From what I hear you > don't > > > want > > > > UDMA on ATAPI devices anyways. > > > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > > to a VIA 82C686 controller. Here is the message from my boot > probe... > > > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:41: 8 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 7C2C037B401 for ; Mon, 12 Feb 2001 06:41:02 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEf1I40730 for ; Mon, 12 Feb 2001 14:41:01 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA05994 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:41:01 GMT From: freebsd-stable-local@insignia.com To: "Thomas T. Veldhouse" Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:41:00 -0000 Message-ID: <3A87F594.4E05AC@ivision.co.uk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Pls stop sending this reply...you bcc'd it to FreeBSD about 6 times now! Cheers Richard "Thomas T. Veldhouse" wrote: > > OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It > > works wonderfully for both of them. > > Tom Veldhouse > veldy@veldy.net > > ----- Original Message ----- > From: "David W. Chapman Jr." > To: "Thomas T. Veldhouse" > Cc: > Sent: Sunday, February 11, 2001 9:01 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > > soren and the group why not, but it was explained to me a while ago and > made > > sense at the time. > > > > ----- Original Message ----- > > From: "Thomas T. Veldhouse" > > To: "David W. Chapman Jr." > > Cc: > > Sent: Sunday, February 11, 2001 8:55 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > Why not? It works great for me. Also, when watching a DVD video (via > > > Windows ;( ), you can not get the best performance unless you turn DMA > > on. > > > > > > Tom Veldhouse > > > veldy@veldy.net > > > > > > ----- Original Message ----- > > > From: "David W. Chapman Jr." > > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > > > Cc: ; "Eric Jacoboni" > > > Sent: Saturday, February 10, 2001 10:09 PM > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > There's a difference between UDMA and WDMA. From what I hear you > don't > > > want > > > > UDMA on ATAPI devices anyways. > > > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > > to a VIA 82C686 controller. Here is the message from my boot > probe... > > > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:42:27 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id A363037B401 for ; Mon, 12 Feb 2001 06:42:20 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEgFI40752 for ; Mon, 12 Feb 2001 14:42:15 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA06075 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:42:15 GMT From: freebsd-stable-local@insignia.com To: dwmalone@insignia.com, Thierry.Herbelot@insignia.com Subject: Re: Constantly crashing SMP box Date: 12 Feb 2001 14:42:14 -0000 Message-ID: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > furthermore, you better have SMP processors with the same stepping > number (if your processors came from two different boxes, the CPUs > may have come from different production batches) Is this an absolute necessity ? I'm thinking of buying a 2nd CPU to run -stable on, but getting a matching one will be hard ! -pete. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:43: 2 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 23AEA37B401 for ; Mon, 12 Feb 2001 06:42:55 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEgsI40768 for ; Mon, 12 Feb 2001 14:42:54 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA06115 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:42:53 GMT From: "Kam Salisbury" To: sketchy@insignia.com Subject: Re: Constantly crashing SMP box Date: 12 Feb 2001 14:42:52 -0000 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -snip >No they weren't, thanks for the tip. I'll give that a try and see >what happens - odd that it only affects the 2nd cpu though. -snip Just noticed and checked my SMP box as well. I have an ABit BP6 with two Celeron 400 CPUs (I know, whimpy CPUs but they were cheap) and the 2nd CPU always runs hotter than the first. I tried reapplying thermal grease, better (3pin thermo controlled) fans and even switching CPU positions, the CPU in position two is always running 4 to 10 degrees hotter on average. Kam Salisbury Network Alchemist http://www.salsolutions.net/ _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:43:59 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id D37E837B6A8 for ; Mon, 12 Feb 2001 06:43:45 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEhiI40784 for ; Mon, 12 Feb 2001 14:43:44 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA06162 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:43:44 GMT From: freebsd-stable-local@insignia.com To: freebsd-stable@insignia.com Subject: Athlon TB 700 w. Asus K7M vs. FreeBSD (2nd try) Date: 12 Feb 2001 14:43:43 -0000 Message-ID: <3A87F5C8.D99B1787@inode.at> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, The problems with my Athlon Thunderbird 700 on an Asus K7M Motherboard (Bios 1009) and FreeBSD 4.2 still exists. I didn't get a solution from the FreeBSD-community to solve this problems. Now I installed RedHat 7.0 Linux an it works. I think there is a bug in the FreeBSD-kernel, witch slows down my system, because three other OS's work without Problems (Linux, W98, Win2k). Here's the problem-description again: The system is very very slow, like on an old 386. Keyboard clicks are delayed, its like I work over a slow network. I have this problems since I updatet from an Athlon 500 to an Athlon Thunderbird 700. I use already the latest BIOS from Asus. dmesg: kernel output: Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-RELEASE #1: Sat Dec 2 21:47:42 CET 2000 root@worf.jawa.at:/usr/src/sys/compile/WORF Timecounter "i8254" frequency 1193182 Hz CPU: AMD Athlon(tm) Processor (704.94-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x642 Stepping = 2 Features=0x183f9ff AMD Features=0xc0440000<,AMIE,DSP,3DNow!> real memory = 134152192 (131008K bytes) config> q avail memory = 127262720 (124280K bytes) Preloaded elf kernel "kernel" at 0xc0354000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc035409c. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 5.0 irq 11 isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 4.2 irq 9 chip1: at device 4.4 on pci0 pcm0: port 0xd000-0xd003,0xd400-0xd4ff irq 10 at device 4.5 on pci0 bktr0: mem 0xeddfd000-0xeddfdfff irq 5 at device 14.0 on pci0 iicbb0: on bti2c0 iicbus0: on iicbb0 master-only smbus0: on bti2c0 bktr0: Card has no configuration EEPROM. Cannot determine card make. bktr0: Pinnacle/Miro TV, Temic NTSC tuner. pci0: (vendor=0x109e, dev=0x0878) at 14.1 irq 5 sym0: <810a> port 0xd800-0xd8ff mem 0xefffff00-0xefffffff irq 10 at device 15.0 on pci0 sym0: Symbios NVRAM, ID 7, Fast-10, SE, parity checking sym0: open drain IRQ line driver sym0: using LOAD/STORE-based firmware. de0: port 0xc800-0xc87f mem 0xeffffe80-0xeffffeff irq 9 at device 16.0 on pci0 de0: SMC 21041 [10Mb/s] pass 1.1 de0: address 00:00:c0:99:b5:bf fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold ppbus0: IEEE1284 device found /NIBBLE/PS2/ECP Probing for PnP devices on ppbus0: ppbus0: PCL,MLC,PML lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 ppi0: on ppbus0 joy0 at port 0x201 on isa0 de0: enabling 10baseT port ad0: 29314MB [59560/16/63] at ata0-master UDMA66 ad2: 9641MB [19590/16/63] at ata1-master UDMA33 ad3: 6197MB [12592/16/63] at ata1-slave UDMA33 Waiting 5 seconds for SCSI devices to settle (noperiph:sym0:0:-1:-1): SCSI BUS reset delivered. (probe5:sym0:0:5:0): phase change 6-7 6@07e2ef8c resid=4. Mounting root from ufs:/dev/ad0s3a cd0 at sym0 bus 0 target 4 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 10.000MB/s transfers (10.000MHz, offset 8) cd0: Attempt to query device size failed: NOT READY, Medium not present - tray closed da0 at sym0 bus 0 target 5 lun 0 da0: Removable Direct Access SCSI-2 device da0: 3.300MB/s transfers da0: Attempt to query device size failed: NOT READY, Medium not present uhci0: port 0xcc00-0xcc1f irq 9 at device 4.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered bye, -- -------------------------------------- E-mail: Michael.Bretterklieber@jawa.at ---------------------------- JAWA MANAGEMENT und SOFTWARE Liebenauer Hauptstr. 200 A-8041 GRAZ Tel: ++43-(0)316-403274-12 Fax: ++43-(0)316-403274-10 GSM: ++43-(0)676-93 96 698 homepage: http://www.jawa.at --------- privat ----------- E-mail: mbretter@inode.at homepage: http://www.inode.at/mbretter -------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:44:41 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mail.sysformance.com (mail.sysformance.com [195.49.2.173]) by hub.freebsd.org (Postfix) with ESMTP id 1370737B401 for ; Mon, 12 Feb 2001 06:44:36 -0800 (PST) Received: from romer (romer [10.0.0.8]) by mail.sysformance.com (8.11.1/8.11.1) with SMTP id f1CEiZ033829 for ; Mon, 12 Feb 2001 15:44:35 +0100 (CET) (envelope-from jann.romer@sysformance.com) Message-ID: <025101c09502$51021ca0$0800000a@syscontrol.ch> From: "Jann Romer" To: Subject: Date: Mon, 12 Feb 2001 15:44:34 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG auth 1a20c7bd subscribe freebsd-stable jann.romer@sysformance.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:45:17 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 0279337B401 for ; Mon, 12 Feb 2001 06:45:10 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEj8I40816 for ; Mon, 12 Feb 2001 14:45:08 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA06258 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:45:08 GMT From: "David W. Chapman Jr." To: Subject: Re: Constantly crashing SMP box Date: 12 Feb 2001 14:45:07 -0000 Message-ID: <006f01c09502$5ded9b60$931576d8@inethouston.net> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is about the 3rd time I got this email, any idea on what's going on? ----- Original Message ----- From: To: ; Sent: Monday, February 12, 2001 8:38 AM Subject: Re: Constantly crashing SMP box > > furthermore, you better have SMP processors with the same stepping > > > > > number (if your processors came from two different boxes, the CPUs > > may have come from different production batches) > > Is this an absolute necessity ? I'm thinking of buying a 2nd CPU to > run -stable on, but getting a matching one will be hard ! > > -pete. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:45:26 2001 Delivered-To: freebsd-stable@freebsd.org Received: from aifhs8.alcatel.fr (aifhs8.alcatel.fr [212.208.74.153]) by hub.freebsd.org (Postfix) with ESMTP id 0063137B401 for ; Mon, 12 Feb 2001 06:45:23 -0800 (PST) Received: from frmta003.netfr.alcatel.fr (frmta003.netfr.alcatel.fr [155.132.251.32]) by aifhs8.alcatel.fr (ALCANET/SMTP2) with SMTP id PAA14695; Mon, 12 Feb 2001 15:44:35 +0100 (MET) Received: by frmta003.netfr.alcatel.fr(Lotus SMTP MTA v4.6.7 (934.1 12-30-1999)) id C12569F1.0050F6D1 ; Mon, 12 Feb 2001 15:44:20 +0100 X-Lotus-FromDomain: ALCATEL From: Thierry.Herbelot@alcatel.fr To: Pete French Cc: dwmalone@maths.tcd.ie, freebsd-stable@FreeBSD.ORG, sketchy@netcraft.com Message-ID: Date: Mon, 12 Feb 2001 15:44:15 +0100 Subject: Re: Constantly crashing SMP box Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG According to the official SMP specification from Intel this should not mandatory, according to experiences from an SMP designer, this is absolutely recommended. YMMV TfH PS : the serial numbers of the Celerons of my BP6 are in exact sequence Pete French on 12/02/2001 15:27:13 To: dwmalone@maths.tcd.ie, Thierry HERBELOT/FR/ALCATEL@ALCATEL cc: freebsd-stable@FreeBSD.ORG, sketchy@netcraft.com Subject: Re: Constantly crashing SMP box > furthermore, you better have SMP processors with the same stepping > number (if your processors came from two different boxes, the CPUs > may have come from different production batches) Is this an absolute necessity ? I'm thinking of buying a 2nd CPU to run -stable on, but getting a matching one will be hard ! -pete. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:45:51 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 4334A37B401 for ; Mon, 12 Feb 2001 06:45:45 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEjiI40832 for ; Mon, 12 Feb 2001 14:45:44 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA06301 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:45:44 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:45:43 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:47:40 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 8D97737B65D for ; Mon, 12 Feb 2001 06:47:29 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CElSI40851 for ; Mon, 12 Feb 2001 14:47:28 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA06547 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:47:28 GMT From: "Thomas T. Veldhouse" To: Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:47:27 -0000 Message-ID: <00b201c09500$1b9b38f0$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sorry about the multiple postings - I am not sure what happened here :( Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Sent: Monday, February 12, 2001 8:26 AM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It > > > > > > > > > works wonderfully for both of them. > > Tom Veldhouse > veldy@veldy.net > > ----- Original Message ----- > From: "David W. Chapman Jr." > To: "Thomas T. Veldhouse" > Cc: > Sent: Sunday, February 11, 2001 9:01 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > > soren and the group why not, but it was explained to me a while ago and > made > > sense at the time. > > > > ----- Original Message ----- > > From: "Thomas T. Veldhouse" > > To: "David W. Chapman Jr." > > Cc: > > Sent: Sunday, February 11, 2001 8:55 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > Why not? It works great for me. Also, when watching a DVD video (via > > > Windows ;( ), you can not get the best performance unless you turn DMA > > on. > > > > > > Tom Veldhouse > > > veldy@veldy.net > > > > > > ----- Original Message ----- > > > From: "David W. Chapman Jr." > > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > > > Cc: ; "Eric Jacoboni" > > > Sent: Saturday, February 10, 2001 10:09 PM > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > There's a difference between UDMA and WDMA. From what I hear you > don't > > > want > > > > UDMA on ATAPI devices anyways. > > > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > > to a VIA 82C686 controller. Here is the message from my boot > probe... > > > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:47:45 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id B155A37B4EC for ; Mon, 12 Feb 2001 06:47:35 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CElYI40864 for ; Mon, 12 Feb 2001 14:47:34 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA06559 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:47:34 GMT From: "Thomas T. Veldhouse" To: Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:47:33 -0000 Message-ID: <011701c09502$a3c16e50$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It seems to be an error either with Outlook Express (client at work) or postfix. I checked my postfix mail queue and it is empty. There is no sign that Outlook sent it more than once, but I suspect that is where the fault lay. I have even gone so far as to stop and restart postfix (pl13). I apologize for the extra postings - I assure you I hit send once. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: To: "Thomas T. Veldhouse" Sent: Monday, February 12, 2001 8:37 AM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Pls stop sending this reply...you bcc'd it to FreeBSD about 6 times now! > > Cheers > Richard > > "Thomas T. Veldhouse" wrote: > > > > OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It > > > > works wonderfully for both of them. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Thomas T. Veldhouse" > > Cc: > > Sent: Sunday, February 11, 2001 9:01 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > > > soren and the group why not, but it was explained to me a while ago and > > made > > > sense at the time. > > > > > > ----- Original Message ----- > > > From: "Thomas T. Veldhouse" > > > To: "David W. Chapman Jr." > > > Cc: > > > Sent: Sunday, February 11, 2001 8:55 PM > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > Why not? It works great for me. Also, when watching a DVD video (via > > > > Windows ;( ), you can not get the best performance unless you turn DMA > > > on. > > > > > > > > Tom Veldhouse > > > > veldy@veldy.net > > > > > > > > ----- Original Message ----- > > > > From: "David W. Chapman Jr." > > > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > > > > > Cc: ; "Eric Jacoboni" > > > > Sent: Saturday, February 10, 2001 10:09 PM > > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > > > > There's a difference between UDMA and WDMA. From what I hear you > > don't > > > > want > > > > > UDMA on ATAPI devices anyways. > > > > > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > > > to a VIA 82C686 controller. Here is the message from my boot > > probe... > > > > > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:49: 9 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 4E2F237B503 for ; Mon, 12 Feb 2001 06:49:00 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEmxI40884 for ; Mon, 12 Feb 2001 14:48:59 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA06655 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:48:59 GMT From: freebsd-stable-local@insignia.com To: "Thomas T. Veldhouse" Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:48:58 -0000 Message-ID: <3A87F594.4E05AC@ivision.co.uk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Pls stop sending this reply...you bcc'd it to FreeBSD about 6 times now! Cheers Richard "Thomas T. Veldhouse" wrote: > > OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It > > works wonderfully for both of them. > > Tom Veldhouse > veldy@veldy.net > > ----- Original Message ----- > From: "David W. Chapman Jr." > To: "Thomas T. Veldhouse" > Cc: > Sent: Sunday, February 11, 2001 9:01 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > > soren and the group why not, but it was explained to me a while ago and > made > > sense at the time. > > > > ----- Original Message ----- > > From: "Thomas T. Veldhouse" > > To: "David W. Chapman Jr." > > Cc: > > Sent: Sunday, February 11, 2001 8:55 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > Why not? It works great for me. Also, when watching a DVD video (via > > > Windows ;( ), you can not get the best performance unless you turn DMA > > on. > > > > > > Tom Veldhouse > > > veldy@veldy.net > > > > > > ----- Original Message ----- > > > From: "David W. Chapman Jr." > > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > > > Cc: ; "Eric Jacoboni" > > > Sent: Saturday, February 10, 2001 10:09 PM > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > There's a difference between UDMA and WDMA. From what I hear you > don't > > > want > > > > UDMA on ATAPI devices anyways. > > > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > > to a VIA 82C686 controller. Here is the message from my boot > probe... > > > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:50:23 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 5030E37B4EC for ; Mon, 12 Feb 2001 06:50:19 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEoII40911 for ; Mon, 12 Feb 2001 14:50:18 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA06813 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:50:18 GMT From: freebsd-stable-local@insignia.com To: dwmalone@insignia.com, Thierry.Herbelot@insignia.com Subject: Re: Constantly crashing SMP box Date: 12 Feb 2001 14:50:17 -0000 Message-ID: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > furthermore, you better have SMP processors with the same stepping > number (if your processors came from two different boxes, the CPUs > may have come from different production batches) Is this an absolute necessity ? I'm thinking of buying a 2nd CPU to run -stable on, but getting a matching one will be hard ! -pete. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:50:41 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 13EE237B4EC for ; Mon, 12 Feb 2001 06:50:32 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEoVI40924 for ; Mon, 12 Feb 2001 14:50:31 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA06836 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:50:30 GMT From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:50:30 -0000 Message-ID: <009d01c09503$222897a0$931576d8@inethouston.net> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm still getting this and I don't think its an outlook express error, some sort of virus possibly because every time I get a new copy of it there is one more extra space between OK and "works wonderfully" ----- Original Message ----- From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Sent: Monday, February 12, 2001 8:39 AM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It > > > > > > > > > > > > > works wonderfully for both of them. > > Tom Veldhouse > veldy@veldy.net > > ----- Original Message ----- > From: "David W. Chapman Jr." > To: "Thomas T. Veldhouse" > Cc: > Sent: Sunday, February 11, 2001 9:01 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > > soren and the group why not, but it was explained to me a while ago and > made > > sense at the time. > > > > ----- Original Message ----- > > From: "Thomas T. Veldhouse" > > To: "David W. Chapman Jr." > > Cc: > > Sent: Sunday, February 11, 2001 8:55 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > Why not? It works great for me. Also, when watching a DVD video (via > > > Windows ;( ), you can not get the best performance unless you turn DMA > > on. > > > > > > Tom Veldhouse > > > veldy@veldy.net > > > > > > ----- Original Message ----- > > > From: "David W. Chapman Jr." > > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > > > Cc: ; "Eric Jacoboni" > > > Sent: Saturday, February 10, 2001 10:09 PM > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > There's a difference between UDMA and WDMA. From what I hear you > don't > > > want > > > > UDMA on ATAPI devices anyways. > > > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > > to a VIA 82C686 controller. Here is the message from my boot > probe... > > > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:51:26 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 5B71837B503 for ; Mon, 12 Feb 2001 06:51:20 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEpJI40946 for ; Mon, 12 Feb 2001 14:51:19 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA06890 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:51:19 GMT From: "Kam Salisbury" To: sketchy@insignia.com Subject: Re: Constantly crashing SMP box Date: 12 Feb 2001 14:51:18 -0000 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -snip >No they weren't, thanks for the tip. I'll give that a try and see >what happens - odd that it only affects the 2nd cpu though. -snip Just noticed and checked my SMP box as well. I have an ABit BP6 with two Celeron 400 CPUs (I know, whimpy CPUs but they were cheap) and the 2nd CPU always runs hotter than the first. I tried reapplying thermal grease, better (3pin thermo controlled) fans and even switching CPU positions, the CPU in position two is always running 4 to 10 degrees hotter on average. Kam Salisbury Network Alchemist http://www.salsolutions.net/ _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:51:50 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 32EDD37B503 for ; Mon, 12 Feb 2001 06:51:37 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEpaI40961 for ; Mon, 12 Feb 2001 14:51:36 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA06915 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:51:35 GMT From: "Brent" To: "Kam Salisbury" , Subject: Re: Constantly crashing SMP box Date: 12 Feb 2001 14:51:35 -0000 Message-ID: <001001c09503$4358afa0$e32b82d0@cybertours.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I also run a SMP machine duel PIII 550's and i have the same differrence in temps....although the machine seems to run fine... running Tyan 1832DL 440BX chipset w/ 256 megs of memory. runs stable B ----- Original Message ----- From: Kam Salisbury To: Sent: Monday, February 12, 2001 9:42 AM Subject: Re: Constantly crashing SMP box -snip >No they weren't, thanks for the tip. I'll give that a try and see >what happens - odd that it only affects the 2nd cpu though. -snip Just noticed and checked my SMP box as well. I have an ABit BP6 with two Celeron 400 CPUs (I know, whimpy CPUs but they were cheap) and the 2nd CPU always runs hotter than the first. I tried reapplying thermal grease, better (3pin thermo controlled) fans and even switching CPU positions, the CPU in position two is always running 4 to 10 degrees hotter on average. Kam Salisbury Network Alchemist http://www.salsolutions.net/ _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:54:13 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 5341D37B491 for ; Mon, 12 Feb 2001 06:54:00 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CErxI41001 for ; Mon, 12 Feb 2001 14:53:59 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA07045 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:53:58 GMT From: freebsd-stable-local@insignia.com To: freebsd-stable@insignia.com Subject: Athlon TB 700 w. Asus K7M vs. FreeBSD (2nd try) Date: 12 Feb 2001 14:53:58 -0000 Message-ID: <3A87F5C8.D99B1787@inode.at> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, The problems with my Athlon Thunderbird 700 on an Asus K7M Motherboard (Bios 1009) and FreeBSD 4.2 still exists. I didn't get a solution from the FreeBSD-community to solve this problems. Now I installed RedHat 7.0 Linux an it works. I think there is a bug in the FreeBSD-kernel, witch slows down my system, because three other OS's work without Problems (Linux, W98, Win2k). Here's the problem-description again: The system is very very slow, like on an old 386. Keyboard clicks are delayed, its like I work over a slow network. I have this problems since I updatet from an Athlon 500 to an Athlon Thunderbird 700. I use already the latest BIOS from Asus. dmesg: kernel output: Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-RELEASE #1: Sat Dec 2 21:47:42 CET 2000 root@worf.jawa.at:/usr/src/sys/compile/WORF Timecounter "i8254" frequency 1193182 Hz CPU: AMD Athlon(tm) Processor (704.94-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x642 Stepping = 2 Features=0x183f9ff AMD Features=0xc0440000<,AMIE,DSP,3DNow!> real memory = 134152192 (131008K bytes) config> q avail memory = 127262720 (124280K bytes) Preloaded elf kernel "kernel" at 0xc0354000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc035409c. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 5.0 irq 11 isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 4.2 irq 9 chip1: at device 4.4 on pci0 pcm0: port 0xd000-0xd003,0xd400-0xd4ff irq 10 at device 4.5 on pci0 bktr0: mem 0xeddfd000-0xeddfdfff irq 5 at device 14.0 on pci0 iicbb0: on bti2c0 iicbus0: on iicbb0 master-only smbus0: on bti2c0 bktr0: Card has no configuration EEPROM. Cannot determine card make. bktr0: Pinnacle/Miro TV, Temic NTSC tuner. pci0: (vendor=0x109e, dev=0x0878) at 14.1 irq 5 sym0: <810a> port 0xd800-0xd8ff mem 0xefffff00-0xefffffff irq 10 at device 15.0 on pci0 sym0: Symbios NVRAM, ID 7, Fast-10, SE, parity checking sym0: open drain IRQ line driver sym0: using LOAD/STORE-based firmware. de0: port 0xc800-0xc87f mem 0xeffffe80-0xeffffeff irq 9 at device 16.0 on pci0 de0: SMC 21041 [10Mb/s] pass 1.1 de0: address 00:00:c0:99:b5:bf fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold ppbus0: IEEE1284 device found /NIBBLE/PS2/ECP Probing for PnP devices on ppbus0: ppbus0: PCL,MLC,PML lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 ppi0: on ppbus0 joy0 at port 0x201 on isa0 de0: enabling 10baseT port ad0: 29314MB [59560/16/63] at ata0-master UDMA66 ad2: 9641MB [19590/16/63] at ata1-master UDMA33 ad3: 6197MB [12592/16/63] at ata1-slave UDMA33 Waiting 5 seconds for SCSI devices to settle (noperiph:sym0:0:-1:-1): SCSI BUS reset delivered. (probe5:sym0:0:5:0): phase change 6-7 6@07e2ef8c resid=4. Mounting root from ufs:/dev/ad0s3a cd0 at sym0 bus 0 target 4 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 10.000MB/s transfers (10.000MHz, offset 8) cd0: Attempt to query device size failed: NOT READY, Medium not present - tray closed da0 at sym0 bus 0 target 5 lun 0 da0: Removable Direct Access SCSI-2 device da0: 3.300MB/s transfers da0: Attempt to query device size failed: NOT READY, Medium not present uhci0: port 0xcc00-0xcc1f irq 9 at device 4.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered bye, -- -------------------------------------- E-mail: Michael.Bretterklieber@jawa.at ---------------------------- JAWA MANAGEMENT und SOFTWARE Liebenauer Hauptstr. 200 A-8041 GRAZ Tel: ++43-(0)316-403274-12 Fax: ++43-(0)316-403274-10 GSM: ++43-(0)676-93 96 698 homepage: http://www.jawa.at --------- privat ----------- E-mail: mbretter@inode.at homepage: http://www.inode.at/mbretter -------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:54:36 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 514A237B401 for ; Mon, 12 Feb 2001 06:54:31 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEsUI41016 for ; Mon, 12 Feb 2001 14:54:30 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA07083 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:54:30 GMT From: "David W. Chapman Jr." To: Subject: Re: Constantly crashing SMP box Date: 12 Feb 2001 14:54:29 -0000 Message-ID: <00c801c09503$b14b0c60$931576d8@inethouston.net> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yes and not just on freebsd > Is this an absolute necessity ? I'm thinking of buying a 2nd CPU to > run -stable on, but getting a matching one will be hard ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:54:55 2001 Delivered-To: freebsd-stable@freebsd.org Received: from vorbis.noc.easynet.net (vorbis.noc.easynet.net [195.40.1.254]) by hub.freebsd.org (Postfix) with SMTP id 61C1037B401 for ; Mon, 12 Feb 2001 06:54:53 -0800 (PST) Received: (qmail 29229 invoked by uid 1943); 12 Feb 2001 14:54:51 -0000 Date: Mon, 12 Feb 2001 14:54:51 +0000 From: Chrisy Luke To: Warner Losh Cc: Pekka Savola , freebsd-stable@FreeBSD.ORG Subject: Re: 3.5-S->4.2-S: still fail w/ setresuid on miniperl Message-ID: <20010212145451.D28647@flix.net> References: <200102120155.f1C1tYE05473@billy-club.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200102120155.f1C1tYE05473@billy-club.village.org>; from imp@village.org on Sun, Feb 11, 2001 at 06:55:34PM -0700 Organization: The Flirble Internet Exchange X-URL: http://www.flix.net/ X-FTP: ftp://ftp.flirble.org/ Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh wrote (on Feb 12): > In message Pekka Savola writes: > : As a lot of others including some @FreeBSD.org people, I got: > > I'd suggest building -DNOPERL when upgrading. If that works (I have > no 3.x boxes fast enough to test this on), then let me know so I can > update UPDATING. On a different track altogether, 3.5-S to 4.1-REL does go. 4.1-REL does odd things with where it installkernels (not /kernel but /. I've done this many times to get to 4.2-S and it works fine. Chris. -- == chris.luke@group.easynet.net T: +44 20 7900 4444 == Group Network Manager for Easynet Group PLC F: +44 845 333 0122 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:55:33 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 4EF9237B4EC for ; Mon, 12 Feb 2001 06:55:26 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEtPI41058 for ; Mon, 12 Feb 2001 14:55:25 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA07160 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:55:25 GMT From: "David W. Chapman Jr." To: Subject: Re: Constantly crashing SMP box Date: 12 Feb 2001 14:55:24 -0000 Message-ID: <006f01c09502$5ded9b60$931576d8@inethouston.net> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is about the 3rd time I got this email, any idea on what's going on? ----- Original Message ----- From: To: ; Sent: Monday, February 12, 2001 8:38 AM Subject: Re: Constantly crashing SMP box > > furthermore, you better have SMP processors with the same stepping > > > > > number (if your processors came from two different boxes, the CPUs > > may have come from different production batches) > > Is this an absolute necessity ? I'm thinking of buying a 2nd CPU to > run -stable on, but getting a matching one will be hard ! > > -pete. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:56:16 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 4420737B4EC for ; Mon, 12 Feb 2001 06:56:09 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEu8I41081 for ; Mon, 12 Feb 2001 14:56:08 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA07293 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:56:08 GMT From: freebsd-stable-local@insignia.com To: Pete French Subject: Re: Constantly crashing SMP box Date: 12 Feb 2001 14:56:05 -0000 Message-ID: Mime-Version: 1.0 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG According to the official SMP specification from Intel this should not mandatory, according to experiences from an SMP designer, this is absolutely recommended. YMMV TfH PS : the serial numbers of the Celerons of my BP6 are in exact sequence Pete French on 12/02/2001 15:27:13 To: dwmalone@maths.tcd.ie, Thierry HERBELOT/FR/ALCATEL@ALCATEL cc: freebsd-stable@FreeBSD.ORG, sketchy@netcraft.com Subject: Re: Constantly crashing SMP box > furthermore, you better have SMP processors with the same stepping > number (if your processors came from two different boxes, the CPUs > may have come from different production batches) Is this an absolute necessity ? I'm thinking of buying a 2nd CPU to run -stable on, but getting a matching one will be hard ! -pete. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:56:59 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id C8F3F37B401 for ; Mon, 12 Feb 2001 06:56:47 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEukI41097 for ; Mon, 12 Feb 2001 14:56:46 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA07356 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:56:46 GMT From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:56:45 -0000 Message-ID: <004f01c094fe$d1cc6010$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It works wonderfully for both of them. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "David W. Chapman Jr." To: "Thomas T. Veldhouse" Cc: Sent: Sunday, February 11, 2001 9:01 PM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > soren and the group why not, but it was explained to me a while ago and made > sense at the time. > > ----- Original Message ----- > From: "Thomas T. Veldhouse" > To: "David W. Chapman Jr." > Cc: > Sent: Sunday, February 11, 2001 8:55 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Why not? It works great for me. Also, when watching a DVD video (via > > Windows ;( ), you can not get the best performance unless you turn DMA > on. > > > > Tom Veldhouse > > veldy@veldy.net > > > > ----- Original Message ----- > > From: "David W. Chapman Jr." > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > Cc: ; "Eric Jacoboni" > > Sent: Saturday, February 10, 2001 10:09 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > There's a difference between UDMA and WDMA. From what I hear you don't > > want > > > UDMA on ATAPI devices anyways. > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > to a VIA 82C686 controller. Here is the message from my boot probe... > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 6:57:41 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 0C60737B401 for ; Mon, 12 Feb 2001 06:57:32 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CEvVI41119 for ; Mon, 12 Feb 2001 14:57:31 GMT Received: (from daemon@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id OAA07416 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 14:57:30 GMT From: "Thomas T. Veldhouse" To: Subject: Re: ata driver and HighPoint HPT370 ATA100 controller Date: 12 Feb 2001 14:57:29 -0000 Message-ID: <00b201c09500$1b9b38f0$3028680a@tgt.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sorry about the multiple postings - I am not sure what happened here :( Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "Thomas T. Veldhouse" To: "David W. Chapman Jr." Sent: Monday, February 12, 2001 8:26 AM Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > OK - I will rephrase - I USE UDMA33 on my DVD (10X) and CDRW(HP 9100i). It > > > > > > > > > works wonderfully for both of them. > > Tom Veldhouse > veldy@veldy.net > > ----- Original Message ----- > From: "David W. Chapman Jr." > To: "Thomas T. Veldhouse" > Cc: > Sent: Sunday, February 11, 2001 9:01 PM > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > Yes, but DMA != UDMA, they are two difference things, you'll have to ask > > soren and the group why not, but it was explained to me a while ago and > made > > sense at the time. > > > > ----- Original Message ----- > > From: "Thomas T. Veldhouse" > > To: "David W. Chapman Jr." > > Cc: > > Sent: Sunday, February 11, 2001 8:55 PM > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > Why not? It works great for me. Also, when watching a DVD video (via > > > Windows ;( ), you can not get the best performance unless you turn DMA > > on. > > > > > > Tom Veldhouse > > > veldy@veldy.net > > > > > > ----- Original Message ----- > > > From: "David W. Chapman Jr." > > > To: "Matthew Emmerton" ; "Alec Wolman" > > > > > > Cc: ; "Eric Jacoboni" > > > Sent: Saturday, February 10, 2001 10:09 PM > > > Subject: Re: ata driver and HighPoint HPT370 ATA100 controller > > > > > > > > > > There's a difference between UDMA and WDMA. From what I hear you > don't > > > want > > > > UDMA on ATAPI devices anyways. > > > > > > > > > My plextor drive (same model) supports DMA. It is hooked up > > > > > to a VIA 82C686 controller. Here is the message from my boot > probe... > > > > > > > > > > acd0: DVD-ROM at ata1-master using UDMA33 > > > > > acd1: CD-RW at ata1-slave using WDMA2 > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 7: 1:31 2001 Delivered-To: freebsd-stable@freebsd.org Received: from veldy.net (w028.z064001117.msp-mn.dsl.cnc.net [64.1.117.28]) by hub.freebsd.org (Postfix) with ESMTP id D7FD137B401 for ; Mon, 12 Feb 2001 07:01:25 -0800 (PST) Received: from HP2500B (veldy.net [64.1.117.28]) by veldy.net (Postfix) with SMTP id BF24C7017; Mon, 12 Feb 2001 09:00:45 -0600 (CST) Message-ID: <004301c09504$96be5e00$3028680a@tgt.com> From: "Thomas T. Veldhouse" To: "Tim Zingelman" Cc: References: Subject: Re: MAIL LIST PROBLEM Date: Mon, 12 Feb 2001 09:00:50 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks - it was a reply to all message that I used and that address was on the list. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "Tim Zingelman" To: Sent: Monday, February 12, 2001 8:58 AM Subject: MAIL LIST PROBLEM > The problem seems to be with the freebsd-stable-local@insignia.com & > freebsd-stable@insignia.com accounts somehow looping. Please look into > that... I do not think it is related to your email client. > > Tim Zingelman > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 7: 2:49 2001 Delivered-To: freebsd-stable@freebsd.org Received: from scully.zoominternet.net (scully.zoominternet.net [63.67.120.3]) by hub.freebsd.org (Postfix) with SMTP id C4FB437B401 for ; Mon, 12 Feb 2001 07:02:44 -0800 (PST) Received: (qmail 5811 invoked from network); 12 Feb 2001 14:58:36 -0000 Received: from acs-24-154-53-11.zoominternet.net (HELO cvzoom.net) (24.154.53.11) by scully.zoominternet.net with SMTP; 12 Feb 2001 14:58:36 -0000 Message-ID: <3A87FB13.B3A263B5@cvzoom.net> Date: Mon, 12 Feb 2001 10:02:43 -0500 From: Donn Miller X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: stable@freebsd.org Subject: Re: Constantly crashing SMP box References: <006f01c09502$5ded9b60$931576d8@inethouston.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "David W. Chapman Jr." wrote: > > This is about the 3rd time I got this email, any idea on what's going on? Looks like "freebsd-stable-local@insignia.com" is screwed up someplace. Is this a mailing list mirror? For now, just check to see if you've got in your "To:" or "CC:" field, and just replace with . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 7: 3: 6 2001 Delivered-To: freebsd-stable@freebsd.org Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.217.222.20]) by hub.freebsd.org (Postfix) with ESMTP id 72DA337B401 for ; Mon, 12 Feb 2001 07:02:58 -0800 (PST) Received: from wolf.isltd.insignia.com (wolf-c1.isltd.insignia.com [193.112.16.10]) by highland.isltd.insignia.com (8.11.2/8.11.2/check_local4.2) with ESMTP id f1CF2vI41278 for ; Mon, 12 Feb 2001 15:02:57 GMT Received: (from news@localhost) by wolf.isltd.insignia.com (8.9.3/8.9.3) id PAA07829 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 15:02:57 GMT X-Authentication-Warning: wolf.isltd.insignia.com: news set sender to freebsd-stable-local@insignia.com using -f From: "Jim Hatfield" To: freebsd-stable@freebsd.org Subject: Apologies for spamming Date: Mon, 12 Feb 2001 14:58:52 -0000 Message-ID: <968tv0$7ki$1@wolf.isltd.insignia.com> Mime-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It was a badly configured mail-news-mail gateway, the configuration error masked by a bug which I fixed :-( Jim Hatfield To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 8:54:40 2001 Delivered-To: freebsd-stable@freebsd.org Received: from p133.inode.at (p133.inode.at [195.58.160.3]) by hub.freebsd.org (Postfix) with ESMTP id 5828437B4EC for ; Mon, 12 Feb 2001 08:54:32 -0800 (PST) Received: from inode.at (line200.adsl.wien.inode.at [213.229.7.200]) by p133.inode.at (8.11.1/8.10.0.0) with ESMTP id f1CGsUO16965 for ; Mon, 12 Feb 2001 17:54:30 +0100 Message-ID: <3A8815A2.FEBB41E8@inode.at> Date: Mon, 12 Feb 2001 17:56:02 +0100 From: Michael Bretterklieber X-Mailer: Mozilla 4.75 [de] (Windows NT 5.0; U) X-Accept-Language: de MIME-Version: 1.0 To: stable@FreeBSD.org Subject: Re: Athlon TB 700 w. Asus K7M vs. FreeBSD (2nd try) References: <3A87F5C8.D99B1787@inode.at> <20010212100922.A14566@n4cnw.dyndns.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mike Murphree schrieb: > It appears that you have two cards on irq 5. This may or may not be > a problem. One thing you may want to check is your BIOS settings. Find > the setting for Plug-n-Play OS and set it to NO. This will force the > BIOS to preconfigure the address ranges and interrupts prior to loading > FreeBSD and shouldn't bother Windows at all. Also there are some cases > on Via chipset motherboards where disabling certain on-board peripherals > will have an adverse effect on others. > I tried already to disable the internal Hardware like USB and Audio, without success. I also removed and disabled some drivers (like sym) in the kernel, also without success. bye, -- -------------------------------------- E-mail: Michael.Bretterklieber@jawa.at ---------------------------- JAWA MANAGEMENT und SOFTWARE Liebenauer Hauptstr. 200 A-8041 GRAZ Tel: ++43-(0)316-403274-12 Fax: ++43-(0)316-403274-10 GSM: ++43-(0)676-93 96 698 homepage: http://www.jawa.at --------- privat ----------- E-mail: mbretter@inode.at homepage: http://www.inode.at/mbretter -------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 9: 2:12 2001 Delivered-To: freebsd-stable@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id D878C37B491 for ; Mon, 12 Feb 2001 09:02:05 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.2/8.11.1) with ESMTP id f1CH1xH78121; Mon, 12 Feb 2001 09:01:59 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: "David W. Chapman Jr." Cc: stable@freebsd.org Subject: Re: Screwed up mailer(s) at insignia.com In-Reply-To: Message from "David W. Chapman Jr." of "12 Feb 2001 14:55:24 GMT." <006f01c09502$5ded9b60$931576d8@inethouston.net> Date: Mon, 12 Feb 2001 09:01:58 -0800 Message-ID: <78117.981997318@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Something's screwed up at insignia.com with a local mailing list reflector or something - I'll add a spam-block against the entire domain later on today if this doesn't clear up since it's the only way to prevent all this email being reflected; I've seen about 4 separate threads get repeated ad-nauseum and it's having a bad effect on our mailing lists. - Jordan > This is about the 3rd time I got this email, any idea on what's going on? > > > > ----- Original Message ----- > From: > To: ; > Sent: Monday, February 12, 2001 8:38 AM > Subject: Re: Constantly crashing SMP box > > > > > furthermore, you better have SMP processors with the same stepping > > > > > > > > > number (if your processors came from two different boxes, the CPUs > > > may have come from different production batches) > > > > Is this an absolute necessity ? I'm thinking of buying a 2nd CPU to > > run -stable on, but getting a matching one will be hard ! > > > > -pete. > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 11: 6:14 2001 Delivered-To: freebsd-stable@freebsd.org Received: from news.IAEhv.nl (news.IAE.nl [194.151.64.4]) by hub.freebsd.org (Postfix) with ESMTP id 7EB1F37B491 for ; Mon, 12 Feb 2001 11:06:08 -0800 (PST) Received: (from uucp@localhost) by news.IAEhv.nl (8.9.1/8.9.1) with IAEhv.nl id UAA08822 for stable@freebsd.org; Mon, 12 Feb 2001 20:06:07 +0100 (MET) Received: by adv.devet.org (Postfix, from userid 100) id 54F3F3E20; Mon, 12 Feb 2001 20:05:57 +0100 (CET) Date: Mon, 12 Feb 2001 20:05:57 +0100 To: stable@freebsd.org Subject: Sound modules not compiled/installed by default? Message-ID: <20010212200557.A24758@adv.devet.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i From: Arjan.deVet@adv.iae.nl (Arjan de Vet) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there any reason why the sound modules are not compiled and installed on -stable? Index: Makefile =================================================================== RCS file: /home/freebsd/CVS/src/sys/modules/Makefile,v retrieving revision 1.110.2.21 diff -u -r1.110.2.21 Makefile --- Makefile 2001/01/02 23:11:52 1.110.2.21 +++ Makefile 2001/01/16 19:02:04 @@ -6,7 +6,7 @@ ccd cd9660 coda cue dc fdesc fxp if_disc if_ef if_ppp \ if_sl if_tap if_tun ip6fw ipfilter ipfw ispfw joy kernfs kue \ linux md mfs mii mlx msdos ncp pcn netgraph nfs ntfs nullfs \ - nwfs portal procfs rl sf sis sk ste syscons ti tl twe \ + nwfs portal procfs rl sf sis sk sound ste syscons ti tl twe \ ugen uhid ukbd ulpt umapfs umass umodem ums union usb uscanner \ vinum vn vpo vr wb wx xl Arjan -- Arjan de Vet, Eindhoven, The Netherlands URL: http://www.iae.nl/users/devet/ for PGP key: finger devet@iae.nl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 11: 6:34 2001 Delivered-To: freebsd-stable@freebsd.org Received: from picspc01.pics.com (picspc01.pics.com [192.135.189.20]) by hub.freebsd.org (Postfix) with ESMTP id A13B337B503 for ; Mon, 12 Feb 2001 11:06:31 -0800 (PST) Received: from pics2000.hq.pics.com (pics2000.pics.com [192.135.189.30]) by picspc01.pics.com (8.9.3/8.9.3) with ESMTP id OAA01494 for ; Mon, 12 Feb 2001 14:06:27 -0500 (EST) (envelope-from tpr@hq.pics.com) content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 Subject: sub tpr@pics.com Date: Mon, 12 Feb 2001 14:10:00 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: sub tpr@pics.com Thread-Index: AcCVJ1nz2CjQCQDtEdWzjQBQ2ndIsQ== From: "Terry Rossi" To: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sub tpr@pics.com =20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 11:20:22 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id 521E237B65D for ; Mon, 12 Feb 2001 11:20:16 -0800 (PST) Received: from smtp.ntlworld.com ([62.252.168.201]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with SMTP id <20010212192014.HOWC6427.mta01-svc.ntlworld.com@smtp.ntlworld.com> for ; Mon, 12 Feb 2001 19:20:14 +0000 Date: Mon, 12 Feb 2001 19:20:23 +0000 From: David Goodwin To: freebsd-stable@freebsd.org Message-ID: <20010212192023.A254@weetabix> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.0.1 Content-Length: 27 Lines: 1 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG unsubscribe freebsd-stable To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 11:38: 6 2001 Delivered-To: freebsd-stable@freebsd.org Received: from wattres.Watt.COM (wattres.watt.com [205.178.120.6]) by hub.freebsd.org (Postfix) with ESMTP id BDACA37B491 for ; Mon, 12 Feb 2001 11:37:58 -0800 (PST) Received: (from steve@localhost) by wattres.Watt.COM (8.11.2/8.11.2) id f1CJbtO47588 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 11:37:55 -0800 (PST) (envelope-from steve) Message-Id: <200102121937.f1CJbtO47588@wattres.Watt.COM> X-Newsgroups: local.freebsd-stable In-Reply-To: <200102092218.f19MI8s47018@wattres.Watt.COM> From: steve@Watt.COM (Steve Watt) Date: Mon, 12 Feb 2001 11:37:55 -0800 X-Mailer: Mail User's Shell (7.2.6 beta(5) 10/07/98) To: freebsd-stable@freebsd.org Subject: Re: Is -stable broken, or am I? Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <200102092218.f19MI8s47018@wattres.Watt.COM> I wrote: >I did a cvsup of -stable last night (0106Z on 9 Feb), and did a >"make buildworld". It failed during the stage 3 tools build: > >-------------------------------------------------------------- >>>> stage 3: cross tools >-------------------------------------------------------------- [ environment setup deleted ] > make -f Makefile.inc1 cross-tools > >[ deletia ] > >building standard binutils library >ranlib libbinutils.a >===> addr2line [ cleaned out -I list ] >cc -O -pipe -D_GNU_SOURCE -o addr2line addr2line.o ../libbinutils/libbinutils.a ../libbfd/libbfd.a ../libiberty/libiberty.a >./libbinutils/libbinutils.a(bucomm.o): In function `make_tempname': >./libiberty/libiberty.a(cplus-dem.o): In function `cplus_demangle': >cplus-dem.o(.text+0x815): undefined reference to `cplus_demangle_new_abi' >*** Error code 1 A little more information: I had updated the box from 4.2-RELEASE to -STABLE in early January, and all went fine. I have an identical (so I thought) installation at home, and it works fine. So I checked things like /etc/make.conf. They're (now) the same, and one system still works, and one doesn't. So I tried blowing away /usr/src/contrib/binutils and redoing the buildworld. Still no good. Any guesses on what I should try next? Thanks, -- Steve Watt KD6GGD PP-ASEL-IA ICBM: 121W 56' 57.8" / 37N 20' 14.9" Internet: steve @ Watt.COM Whois: SW32 Free time? There's no such thing. It just comes in varying prices... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 12:45:10 2001 Delivered-To: freebsd-stable@freebsd.org Received: from picspc01.pics.com (picspc01.pics.com [192.135.189.20]) by hub.freebsd.org (Postfix) with ESMTP id 3EE1C37B4EC for ; Mon, 12 Feb 2001 12:45:05 -0800 (PST) Received: from pics2000.hq.pics.com (pics2000.pics.com [192.135.189.30]) by picspc01.pics.com (8.9.3/8.9.3) with ESMTP id PAA21710 for ; Mon, 12 Feb 2001 15:45:04 -0500 (EST) (envelope-from tpr@hq.pics.com) content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 Subject: make buildworld fails with File Exists error Date: Mon, 12 Feb 2001 15:48:37 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: make buildworld fails with File Exists error Thread-Index: AcCVNR+VHD9PbAD7EdWzjQBQ2ndIsQ== From: "Terry Rossi" To: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello. I am trying to upgrade a 3.5-STABLE to a 4 release with the following tags in the stable-supfile=20 *default release=3Dcvs tag=3DRELENG_4 *default delete use-rel-suffix=20 I have successfully sup'ed all the file and now I am running=20 make buildworld=20 based on the instructions in UPDATING buildworld is failing with the following error >>> stage 2: rebuilding the object tree ... =3D=3D=3D> usr.sbin/lpr/filters.ru =3D=3D=3D> usr.sbin/lpr/filters.ru/koi2alt mkdir: /usr/obj/usr/src/usr.sbin/lpr/filters.ru/koi2alt: File exists *** Error code 1 Stop. *** Error code 1 Any ideas on what I am doing wrong? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 12:50:35 2001 Delivered-To: freebsd-stable@freebsd.org Received: from bg.sics.se (bg.sics.se [193.10.66.124]) by hub.freebsd.org (Postfix) with ESMTP id 4414E37B4EC for ; Mon, 12 Feb 2001 12:50:06 -0800 (PST) Received: (from bg@localhost) by bg.sics.se (8.11.1/8.11.1) id f1CKogD08962; Mon, 12 Feb 2001 21:50:43 +0100 (CET) (envelope-from bg) To: freebsd-stable@FreeBSD.ORG Subject: "Fatal trap 12" during boot From: Bjoern Groenvall Date: 12 Feb 2001 21:49:44 +0100 Message-ID: Lines: 342 X-Mailer: Gnus v5.7/Emacs 20.6 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Sirs, Today I cvsup:ed 4.2-STABLE and built a new kernel. The new kernel receives a "Fatal trap 12" where it usually prints "Waiting 3 seconds for SCSI devices to settle". Does anybody have any hints about what's wrong? Dmesg output and config file is attached. Cheers, Bjoern ------------------------------------- FreeBSD 4.2-STABLE #0: Mon Feb 12 19:21:02 CET 2001 root@:/usr/src/sys/compile/KRUMELUR Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 799620991 Hz CPU: Pentium III/Pentium III Xeon/Celeron (799.62-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x686 Stepping = 6 Features=0x383fbff real memory = 536805376 (524224K bytes) avail memory = 517849088 (505712K bytes) Preloaded elf kernel "kernel" at 0xc03df000. Preloaded elf module "nfs.ko" at 0xc03df09c. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib4: at device 0.1 on pci0 pci1: on pcib4 pci1: at 0.0 irq 11 fxp0: port 0xc800-0xc83f mem 0xfe800000-0xfe8f ffff,0xfeafb000-0xfeafbfff irq 11 at device 4.0 on pci0 fxp0: Ethernet address 00:30:48:10:6f:76 ahc0: port 0xd000-0xd0ff mem 0xfeafc000- 0xfeafcfff irq 5 at device 5.0 on pci0 aic7899: Wide Channel A, SCSI Id=7, 32/255 SCBs ahc1: port 0xd800-0xd8ff mem 0xfeaff000- 0xfeafffff irq 10 at device 5.1 on pci0 aic7899: Wide Channel B, SCSI Id=7, 32/255 SCBs fxp1: port 0xd400-0xd43f mem 0xfe900000-0xfe9f ffff,0xfeafd000-0xfeafdfff irq 9 at device 6.0 on pci0 fxp1: Ethernet address 00:30:48:10:6f:75 isab0: at device 15.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 15.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 ohci0: mem 0xfeafe000-0xfeafefff irq 10 at devic e 15.2 on pci0 usb0: OHCI version 1.0, legacy support usb0: on ohci0 usb0: USB revision 1.0 uhub0: (unknown) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 4 ports with 4 removable, self powered pcib1: on motherboard pci2: on pcib1 pcib2: on motherboard pci3: on pcib2 pcib3: on motherboard pci4: on pcib3 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x100> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A, console sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold ppi0: on ppbus0 acd0: CDROM at ata0-master using PIO4 Fatal trap 12: page fault while in kernel mode fault virtual address = 0x123 fault code = supervisor read, page not present instruction pointer = 0x8:0xc0152ad4 stack pointer = 0x10:0xc0400a88 frame pointer = 0x10:0xc0400ab4 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) interrupt mask = cam trap number = 12 panic: page fault syncing disks... done Uptime: 1s Automatic reboot in 15 seconds - press a key on the console to abort --> Press a key on the console to reboot <-- Rebooting... # Based on GENERIC /bg # $Header: /usr/src/sys/i386/conf/RCS/KRUMELUR,v 1.2 2001/01/07 14:57:00 bg Exp $ machine i386 cpu I686_CPU ident KRUMELUR maxusers 512 #makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options INCLUDE_CONFIG_FILE # Include this file in kernel #options NMBCLUSTERS=24576 options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options QUOTA #enable disk quotas #options PROCFS #Process filesystem #options NFS #Network File System options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=3000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev # To make an SMP kernel, the next two are needed #options SMP # Symmetric MultiProcessor Kernel #options APIC_IO # Symmetric (APIC) I/O device isa device eisa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device fd1 at fdc0 drive 1 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID #Static device numbering #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # SCSI Controllers device ahb # EISA AHA1742 family device ahc # AHA2940 and onboard AIC7xxx devices device amd # AMD 53C974 (Teckram DC-390(T)) device isp # Qlogic family device ncr # NCR/Symbios Logic device sym # NCR/Symbios Logic (newer chipsets) options SYM_SETUP_LP_PROBE_MAP=0x40 # Allow ncr to attach legacy NCR devices when # both sym and ncr are configured device adv0 at isa? device adw device bt0 at isa? device aha0 at isa? device aic0 at isa? device ncv # NCR 53C500 device nsp # Workbit Ninja SCSI-3 device stg # TMC 18C30/18C50 # SCSI peripherals device scbus # SCSI bus (required) device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) # RAID controllers interfaced to the SCSI subsystem device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID device dpt # DPT Smartcache - See LINT for options! device mly # Mylex AcceleRAID/eXtremeRAID # RAID controllers device ida # Compaq Smart RAID device amr # AMI MegaRAID device mlx # Mylex DAC960 family device twe # 3ware Escalade # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) #device apm0 at nexus? disable flags 0x20 # Advanced Power Management # PCCARD (PCMCIA) support #device card #device pcic0 at isa? irq 0 port 0x3e0 iomem 0xd0000 #device pcic1 at isa? irq 0 port 0x3e2 iomem 0xd4000 disable # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device sio2 at isa? disable port IO_COM3 irq 5 device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) #device lpt # Printer #device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device fxp # Intel EtherExpress PRO/100B (82557, 82558) device tx # SMC 9432TX (83c170 ``EPIC'') device vx # 3Com 3c590, 3c595 (``Vortex'') device wx # Intel Gigabit Ethernet Card (``Wiseman'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support device dc # DEC/Intel 21143 and various workalikes device pcn # AMD Am79C79x PCI 10/100 NICs device rl # RealTek 8129/8139 device sf # Adaptec AIC-6915 (``Starfire'') device sis # Silicon Integrated Systems SiS 900/SiS 7016 device ste # Sundance ST201 (D-Link DFE-550TX) device tl # Texas Instruments ThunderLAN device vr # VIA Rhine, Rhine II device wb # Winbond W89C840F device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. #device ed0 at isa? port 0x280 irq 10 iomem 0xd8000 #device ex #device ep #device fe0 at isa? port 0x300 # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attatement needed # and resources will always be dynamically assigned by the pccard code. #device wi # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP # mode (the factory default). If you set the switches on your ISA # card for a manually chosen I/O address and IRQ, you must specify # those paremeters here. #device an # Xircom Ethernet #device xe # The probe order of these is presently determined by i386/isa/isa_compat.c. #device ie0 at isa? port 0x300 irq 10 iomem 0xd0000 #device le0 at isa? port 0x300 irq 5 iomem 0xd0000 #device lnc0 at isa? port 0x280 irq 10 drq 0 #device cs0 at isa? port 0x300 #device sn0 at isa? port 0x300 irq 10 # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support #pseudo-device sl 1 # Kernel SLIP #pseudo-device ppp 1 # Kernel PPP #pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) #pseudo-device md # Memory "disks" #pseudo-device gif 4 # IPv6 and IPv4 tunneling #pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse device uscanner # Scanners # USB Ethernet, requires mii device aue # ADMtek USB ethernet device cue # CATC USB ethernet device kue # Kawasaki LSI USB ethernet # # Enable the kernel debugger. # options DDB # # Don't drop into DDB for a panic. Intended for unattended operation # where you may want to drop to DDB from the console, but still want # the machine to recover from a panic # options DDB_UNATTENDED # Solaris implements a new BREAK which is initiated by a character # sequence CR ~ ^b which is similar to a familiar pattern used on # Sun servers by the Remote Console. options ALT_BREAK_TO_DEBUGGER To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 13: 3:13 2001 Delivered-To: freebsd-stable@freebsd.org Received: from www3.infolink.com.br (www3.infolink.com.br [200.255.108.4]) by hub.freebsd.org (Postfix) with ESMTP id 306DD37B491 for ; Mon, 12 Feb 2001 13:03:06 -0800 (PST) Received: from diala11 (unverified [200.255.108.11]) by www3.infolink.com.br (Vircom SMTPRS 4.2.181) with SMTP id ; Mon, 12 Feb 2001 19:03:02 -0300 Message-ID: <00b401c0953f$92453020$0b6cffc8@infolink.com.br> From: "Antonio Carlos Pina" To: "Luigi Rizzo" Cc: References: <200102120825.f1C8PLH84645@iguana.aciri.org> Subject: Re: BRIDGE breaks ARP? Date: Mon, 12 Feb 2001 19:03:02 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4029.2901 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4029.2901 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Luigi, I'm running a Bridge+IPFW+Dummynet box between my lan and my router (which is my default gateway). I access the box via SSH and everything is working great. I would like to do some routing in this box too (offloading the router), but I would like to do that WITHOUT have to change all default gateways in our Workstations. I thought the best option here would be to configure the DEFAULT GATEWAY IP ADDRESS in the Bridge Box, but in this scenario I would have to change the router ip address also (since I will be using it in our bridge box). Is there any way you know that I can intercept and re-route packets using the box as bridge ? I mean, the default gateway is still my router, but some packets don't arrive in it, because the bridge box can send them to another ethernet card. Thanks for listening and best regards, Antonio Carlos Pina apina@infolink.com.br ----- Original Message ----- From: "Luigi Rizzo" To: "Vincent Poy" Cc: ; ; ; Sent: Monday, February 12, 2001 5:25 AM Subject: Re: BRIDGE breaks ARP? > > > whether or not you have "options BRIDGE' in your kernel config file. > > > (or a message saying "BRIDGE ..." when the system boots) > > > > My kernel config doesn't have the BRIDGE option so I guess the > > bridging code is part of ET's drivers. > > yes, i suspected so... > > luigi > > > > > Cheers, > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > WurldLink Corporation / / / / | / | __] ] > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > root@oahu [8:24pm][/usr/temp/zebra] >> ifconfig bg0 > > > > > > bg0: flags=8843 mtu 1500 > > > > > > inet 216.235.44.1 netmask 0xffffff00 broadcast 216.235.44.255 > > > > > > inet 216.235.45.1 netmask 0xffffff00 broadcast 216.235.45.255 > > > > > > inet 216.235.56.193 netmask 0xffffffe0 broadcast 216.235.56.223 > > > > > > ether 00:00:00:03:00:00 > > > > > > > > > > > > I've asked Dennis at ETinc the question and his response was: > > > > > > > > > > > > if you want to route from one DLCI to the other then you have to put them > > > > > > in separate bridge groups with their own subnet. You are creating isolated > > > > > > segments with the ipmap functionality...the mechanism is designed for end > > > > > > users who get 1 or 2 addresses. > > > > > > > > > > > > You COULD fix the O/S to route back to the same interface, but I dont know > > > > > > how complicated that would be. I dont think there is an easy way to > > > > > > disable > > > > > > split-horizon. > > > > > > > > > > > > Dennis > > > > > > > > > > > > > > > > > > Cheers, > > > > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > > > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > > > > > WurldLink Corporation / / / / | / | __] ] > > > > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > > > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > > > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > > > > > > > > I'm not sure if this is related but we're using FreeBSD with a > > > > > > > > Emerging Technologies T1 card to do ADSL Bridging and ran into a problem > > > > > > > > where for example, if a bridge group was like... > > > > > > > > > > > > > > > > 216.235.44.1 255.255.255.0 > > > > > > > > > > > > > > > > All the nodes 216.235.44.2-254 can see 216.235.44.1 fine but it > > > > > > > > nothing in 216.235.44.2 - 254 can see each other. It seems to be they > > > > > > > > can't see each other if they are in the same subnet. So it seems all > > > > > > > > machines in the bridge group can see the gateway and the rest of the > > > > > > > > world but not each other. Is there a way around this? This is with > > > > > > > > 4.1-RELEASE, 4.1.1-RELEASE and even 4.2-RELEASE. > > > > > > > > > > > > > > > > > > > > > > > > Cheers, > > > > > > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ > > > > > > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] > > > > > > > > WurldLink Corporation / / / / | / | __] ] > > > > > > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] > > > > > > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] > > > > > > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-net" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 13: 8:16 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hand.dotat.at (sfo-gw.covalent.net [207.44.198.62]) by hub.freebsd.org (Postfix) with ESMTP id D290937B491; Mon, 12 Feb 2001 13:07:59 -0800 (PST) Received: from fanf by hand.dotat.at with local (Exim 3.20 #3) id 14SQCI-000Ag7-00; Mon, 12 Feb 2001 21:07:46 +0000 Date: Mon, 12 Feb 2001 21:07:46 +0000 From: Tony Finch To: Barney Wolff Cc: FUJISHIMA Satsuki , Kenneth W Cochran , ports@FreeBSD.org, stable@FreeBSD.org, Tony Finch , freebsd-gnats-submit@freebsd.org Subject: Re: ports/24711: Mozilla build failure, 4-stable Message-ID: <20010212210746.E35416@hand.dotat.at> References: <200102100231.VAA00143@world.std.com> <20010210010445.A43496@pit.databus.com> <86r914amlv.wl@cheerful.com> <20010211201229.A54579@pit.databus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010211201229.A54579@pit.databus.com> Organization: Covalent Technologies, Inc Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Barney Wolff wrote: >FUJISHIMA Satsuki wrote: >> Barney Wolff wrote: >> > >> > Try anything BUT /usr/obj as WRKDIRPREFIX. /usr/obj/ports, for >> > example. I found most or all ports fail to build if that >> > specific directory is used. I have no idea why. >> >> man make and read .OBJDIR section. > >Yes I understand the significance of /usr/obj, but not why, in >detail, the port builds fail. In any case, if there are some specific >directories that cause problems, perhaps bsd.port.mk should check for >them and complain, rather than letting the build fail with baffling >errors. See PR#24711. The reason it doesn't work is that the ports system uses ${MAKEFILE} to name the Makefile in the work directory that should be used to build the port. If the port's Makefile doesn't set MAKEFILE then bsd.port.mk tries to set it to "${BUILD_WRKSRC}/Makefile". However, it fails because ${MAKEFILE} also happens to be a special variable set by make itself. It is set in a slightly complicated way to support separate object trees. If /usr/obj/`pwd` exists then it is used as the object directory, so in order to refer back to the original Makefile make sets MAKEFILE to "`pwd`/Makefile". If the object directory doesn't exist then MAKEFILE is set to just "Makefile". So the MAKEFILE?=${BUILD_WRKSRC}/Makefile line in bsd.port.mk is entirely redundant because MAKEFILE is always set by make. Most of the time you are lucky and things still work, *unless* an object directory exists, in which case make sets MAKEFILE to a value that doesn't work and the build explodes. The problem occurs when bsd.port.mk tries to run make inside the work directory. If the port didn't set MAKEFILE and the object tree exists, then the port ends up trying to use /usr/ports/foo/bar/Makefile to build the port rather than /usr/obj/usr/ports/foo/bar/work/bar-1.2.3/Makefile. Tony. -- f.a.n.finch fanf@covalent.net dot@dotat.at FISHER: NORTHWEST 5 OR 6 DECREASING 3. SHOWERS. GOOD. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 13:14:37 2001 Delivered-To: freebsd-stable@freebsd.org Received: from relay4.inwind.it (relay4.inwind.it [212.141.53.75]) by hub.freebsd.org (Postfix) with ESMTP id 4844737B491 for ; Mon, 12 Feb 2001 13:14:34 -0800 (PST) Received: from [62.98.58.174] (62.98.58.174) by relay4.inwind.it (5.1.056) id 3A88018C00014FCD for freebsd-stable@FreeBSD.org; Mon, 12 Feb 2001 22:14:32 +0100 Received: (qmail 505 invoked by uid 1001); 12 Feb 2001 21:11:40 -0000 Date: Mon, 12 Feb 2001 22:11:40 +0100 From: Francesco Casadei To: Danny Braniss Cc: Paul Saab , John Baldwin , Terry Lambert , freebsd-stable@FreeBSD.org, hackers@FreeBSD.org Subject: Re: Really odd "BTX halted" problem booting - PXE/diskless Message-ID: <20010212221140.B413@junior.kasby> Mail-Followup-To: Danny Braniss , Paul Saab , John Baldwin , Terry Lambert , freebsd-stable@FreeBSD.org, hackers@FreeBSD.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from danny@cs.huji.ac.il on Fri, Feb 09, 2001 at 12:13:40PM +0200 X-Operating-System: FreeBSD 3.5-STABLE i386 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Feb 09, 2001 at 12:13:40PM +0200, Danny Braniss wrote: > In message <20010207031637.A32676@elvis.mu.org>you write: > }It its the bios disk probe that is causing the machine to fault. > > I can now confirm that it's a divide by zero in the Adaptec BIOS GRRRRRR. > (in biosdisk, when 'probing' the adaptec) and it happens on a AIC 7899, but > works ok on some other ADAPTECs. > > the problem is nasty because it's not easy to zero out the first block of the > disk if you can't get the os working :-) > > }I suppose you really dont need to probe the disks when you are netbooting. > > i got the pxeboot not to check the disks but then the kernel stepped on it :-( > > is there a way to prevent BTX to halt if the 'caller' expects a div/zero? > > (in the days of the PDP/11 i could trap such things, print a message, and > continue). > > danny > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > end of the original message I had this problem a couple of days ago with an Adaptec AHA-2940UW SCSI controller and an IBM DDRS-34560W SCSI disk. I created one large slice in dangerously dedicated mode and I wasn't able to boot anymore: I got "BTX halted" and the registers dump. I low-level formatted the disk using the controller BIOS, recreated the slice (this time in coperative mode!) and everything worked! Francesco Casadei P.S. The DDRS-34560W uses part of the buffer for the firmware so I could safely low-level format the disk. Check if you can low-level format your disk without destroying it! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 13:25:23 2001 Delivered-To: freebsd-stable@freebsd.org Received: from harmony.village.org (rover.village.org [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 9164237B491 for ; Mon, 12 Feb 2001 13:25:19 -0800 (PST) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.1/8.11.1) with ESMTP id f1CLONW31606; Mon, 12 Feb 2001 14:24:27 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200102122124.f1CLONW31606@harmony.village.org> To: Matt Dillon Subject: Re: sshd in 4.2-STABLE Cc: John Reynolds , freebsd-stable@FreeBSD.ORG In-reply-to: Your message of "Mon, 12 Feb 2001 00:43:43 PST." <200102120843.f1C8hhM03375@earth.backplane.com> References: <200102120843.f1C8hhM03375@earth.backplane.com> <1843641235.20010212104321@road.omskelecom.ru> <14983.29328.298241.606895@whale.home-net> Date: Mon, 12 Feb 2001 14:24:23 -0700 From: Warner Losh Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200102120843.f1C8hhM03375@earth.backplane.com> Matt Dillon writes: : ... or maybe installworld should just check to see if /etc/pam.conf is : the unmodified older version and overwrite it with /usr/src/etc/pam.conf : by default, rather then create little gotchas for people trying to : upgrade. Hmmmmmm. This would violate POLA worse than having it break, I think. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 13:26:17 2001 Delivered-To: freebsd-stable@freebsd.org Received: from wg.pu.ru (wg.pu.ru [193.124.85.219]) by hub.freebsd.org (Postfix) with ESMTP id E3B7F37B491 for ; Mon, 12 Feb 2001 13:26:09 -0800 (PST) Received: from YB3791.UUCP (uucp@localhost) by wg.pu.ru (8.9.1a/8.9.1) with UUCP id VAA14972 for stable@freebsd.org; Mon, 12 Feb 2001 21:26:03 GMT Received: by YB3791.spb.edu (UUPC/@ v7.02, 01May98) id AA00057; Tue, 13 Feb 2001 00:21:49 +0300 (MSK) From: "Yan V. Batuto" To: "stable@freebsd.org" Date: Tue, 13 Feb 2001 00:21:47 +0300 (MSK) Reply-To: "Yan V. Batuto" X-Mailer: PMMail 2.10.1999 for OS/2 Warp 4.00 MIME-Version: 1.0 Subject: Re: UDMA ICRC Read Errors Message-Id: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Lines: 39 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I still kept encountering these errors even when I have upgraded (just a > few hours ago) to 4.2-Stable: > Feb 12 13:36:00 x kernel ad3: UDMA ICRC READ ERROR blk# 35848256 retrying > Feb 12 13:36:00 x kernel ad3: UDMA ICRC READ ERROR blk# 33882176 retrying > I first encountered them after installing the HD(by way of fbsd handbook > section 10.3.2.2, alternative method) circa Jan13 , but that time there was a > discussion on the same type of errors and that a patch(Soren) was to be MFC'ed > that was gonna fix them all. I was not able to upgrade it that time but only > now. > Do the above errors tell that the HD may be broken? It's only about 1 > month old. I encountered the same troubles with my transport Seagate ST32110 hdd. It works fine as UDMA/2 under OS/2, but FreeBSD 4.2-RELEASE #1 says: atapci0: port 0xf000-0xf00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 [lines skipped] ad0: 8063MB [16383/16/63] at ata0-master UDMA33 ad1: 2014MB [4092/16/63] at ata0-slave UDMA33 acd0: CDROM at ata1-master using PIO4 Mounting root from ufs:/dev/ad0s3a ad1: UDMA ICRC READ ERROR blk# 1024129 retrying ad1: UDMA ICRC READ ERROR blk# 1024223 retrying ad1: UDMA ICRC READ ERROR blk# 1024231 retrying ad1: UDMA ICRC READ ERROR blk# 1024231 retrying ad1: UDMA ICRC READ ERROR blk# 1024231 retrying ad1: UDMA ICRC READ ERROR blk# 1024231 falling back to PIO mode The same happens when this drive connected as a secondary (single) master instead of primary slave. But Fujitsu drive works fine as UDMA2 under both OS/2 and FreeBSD systems. What's wrong? Yan V. Batuto batuto@mailru.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 13:34:38 2001 Delivered-To: freebsd-stable@freebsd.org Received: from iguana.aciri.org (iguana.aciri.org [192.150.187.36]) by hub.freebsd.org (Postfix) with ESMTP id 5CAEF37B491 for ; Mon, 12 Feb 2001 13:34:28 -0800 (PST) Received: (from rizzo@localhost) by iguana.aciri.org (8.11.1/8.11.1) id f1CLYNd90428; Mon, 12 Feb 2001 13:34:23 -0800 (PST) (envelope-from rizzo) From: Luigi Rizzo Message-Id: <200102122134.f1CLYNd90428@iguana.aciri.org> Subject: Re: BRIDGE breaks ARP? In-Reply-To: <00b401c0953f$92453020$0b6cffc8@infolink.com.br> from Antonio Carlos Pina at "Feb 12, 2001 7: 3: 2 pm" To: apina@infolink.com.br (Antonio Carlos Pina) Date: Mon, 12 Feb 2001 13:34:18 -0800 (PST) Cc: rizzo@aciri.org, freebsd-stable@freebsd.org X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi, i am not sure i understand what you want to do. luigi > > I'm running a Bridge+IPFW+Dummynet box between my lan and my router (which > is my default gateway). I access the box via SSH and everything is working > great. > > I would like to do some routing in this box too (offloading the router), but > I would like to do that WITHOUT have to change all default gateways in our > Workstations. I thought the best option here would be to configure the > DEFAULT GATEWAY IP ADDRESS in the Bridge Box, but in this scenario I would > have to change the router ip address also (since I will be using it in our > bridge box). > > Is there any way you know that I can intercept and re-route packets using > the box as bridge ? I mean, the default gateway is still my router, but some > packets don't arrive in it, because the bridge box can send them to another > ethernet card. > > Thanks for listening and best regards, > Antonio Carlos Pina > apina@infolink.com.br > > > > > > ----- Original Message ----- > From: "Luigi Rizzo" > To: "Vincent Poy" > Cc: ; ; ; > > Sent: Monday, February 12, 2001 5:25 AM > Subject: Re: BRIDGE breaks ARP? > > > > > > whether or not you have "options BRIDGE' in your kernel config file. > > > > (or a message saying "BRIDGE ..." when the system boots) > > > > > > My kernel config doesn't have the BRIDGE option so I guess the > > > bridging code is part of ET's drivers. > > > > yes, i suspected so... > > > > luigi > > > > > > > > Cheers, > > > Vince - vince@WURLDLINK.NET - Vice President ________ __ > ____ > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / > |[__ ] > > > WurldLink Corporation / / / / | / | > __] ] > > > San Francisco - Honolulu - Hong Kong / / / / / |/ / | > __] ] > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin > /_/_/_/_/|___/|_|[____] > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > > > > > > > > > > > > > root@oahu [8:24pm][/usr/temp/zebra] >> ifconfig bg0 > > > > > > > bg0: flags=8843 mtu 1500 > > > > > > > inet 216.235.44.1 netmask 0xffffff00 broadcast > 216.235.44.255 > > > > > > > inet 216.235.45.1 netmask 0xffffff00 broadcast > 216.235.45.255 > > > > > > > inet 216.235.56.193 netmask 0xffffffe0 broadcast > 216.235.56.223 > > > > > > > ether 00:00:00:03:00:00 > > > > > > > > > > > > > > I've asked Dennis at ETinc the question and his response was: > > > > > > > > > > > > > > if you want to route from one DLCI to the other then you have to > put them > > > > > > > in separate bridge groups with their own subnet. You are > creating isolated > > > > > > > segments with the ipmap functionality...the mechanism is > designed for end > > > > > > > users who get 1 or 2 addresses. > > > > > > > > > > > > > > You COULD fix the O/S to route back to the same interface, but I > dont know > > > > > > > how complicated that would be. I dont think there is an easy way > to > > > > > > > disable > > > > > > > split-horizon. > > > > > > > > > > > > > > Dennis > > > > > > > > > > > > > > > > > > > > > Cheers, > > > > > > > Vince - vince@WURLDLINK.NET - Vice President > ________ __ ____ > > > > > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / / / > | / |[__ ] > > > > > > > WurldLink Corporation / / / / > | / | __] ] > > > > > > > San Francisco - Honolulu - Hong Kong / / / / / > |/ / | __] ] > > > > > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin > /_/_/_/_/|___/|_|[____] > > > > > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server > Admin > > > > > > > > > > > > > > > > > > > > > > > I'm not sure if this is related but we're using FreeBSD with > a > > > > > > > > > Emerging Technologies T1 card to do ADSL Bridging and ran > into a problem > > > > > > > > > where for example, if a bridge group was like... > > > > > > > > > > > > > > > > > > 216.235.44.1 255.255.255.0 > > > > > > > > > > > > > > > > > > All the nodes 216.235.44.2-254 can see 216.235.44.1 fine but > it > > > > > > > > > nothing in 216.235.44.2 - 254 can see each other. It seems > to be they > > > > > > > > > can't see each other if they are in the same subnet. So it > seems all > > > > > > > > > machines in the bridge group can see the gateway and the > rest of the > > > > > > > > > world but not each other. Is there a way around this? This > is with > > > > > > > > > 4.1-RELEASE, 4.1.1-RELEASE and even 4.2-RELEASE. > > > > > > > > > > > > > > > > > > > > > > > > > > > Cheers, > > > > > > > > > Vince - vince@WURLDLINK.NET - Vice President > ________ __ ____ > > > > > > > > > Unix Networking Operations - FreeBSD-Real Unix for Free / / > / / | / |[__ ] > > > > > > > > > WurldLink Corporation / / / > / | / | __] ] > > > > > > > > > San Francisco - Honolulu - Hong Kong / / / > / / |/ / | __] ] > > > > > > > > > HongKong Stars/Gravis UltraSound Mailing Lists Admin > /_/_/_/_/|___/|_|[____] > > > > > > > > > Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network > Server Admin > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > > > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-net" in the body of the message > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 13:49:41 2001 Delivered-To: freebsd-stable@freebsd.org Received: from milquetoast.cs.mcgill.ca (milquetoast.CS.McGill.CA [132.206.2.5]) by hub.freebsd.org (Postfix) with ESMTP id EA88F37B491 for ; Mon, 12 Feb 2001 13:49:37 -0800 (PST) Received: (from andrewb@localhost) by milquetoast.cs.mcgill.ca (8.9.3/8.9.3) id QAA16874 for freebsd-stable@FreeBSD.ORG; Mon, 12 Feb 2001 16:48:59 -0500 (EST) Date: Mon, 12 Feb 2001 16:48:59 -0500 From: Andrew BOGECHO To: freebsd-stable@FreeBSD.ORG Subject: top not working on STABLE SMP box Message-ID: <20010212164859.A15845@cs.mcgill.ca> Mail-Followup-To: Andrew BOGECHO , freebsd-stable@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Organization: SOCS, McGill University, Montreal, CANADA Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mon Feb 12 16:38:09 EST 2001 Hi guys, I posted last week on questions, and got some replies, but nothing worked. This Sunday, I deleted the whole stable tree cvsuped the whole thing and built again still no go. All the other apps work fine. It seems that top is the only app that does not work. doing a truss on it, gives no output at all. The only suspicious message is the following from my dmesg output: APIC_IO: Testing 8254 interrupt delivery APIC_IO: Broken MP table detected: 8254 is not connected to IOAPIC #0 intpin 2 APIC_IO: routing 8254 via 8259 and IOAPIC #0 intpin 0 SMP: AP CPU #1 Launched! Does anyone else have top not working on their SMPs? I am running a dual CPU: Pentium III/Pentium III Xeon/Celeron (733.37-MHz 686-class CPU) Please let me know if you need any more info. Other output on bootup: Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (733.37-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383fbff real memory = 268414976 (262124K bytes) avail memory = 256421888 (250412K bytes) Changing APIC ID for IO APIC #1 from 3 to 1 in MP table Changing APIC ID for IO APIC #1 from 3 to 1 on chip Programming 16 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 Programming 16 pins in IOAPIC #1 IOAPIC #1 intpin 1 -> irq 5 IOAPIC #1 intpin 3 -> irq 7 IOAPIC #1 intpin 4 -> irq 2 IOAPIC #1 intpin 8 -> irq 11 IOAPIC #1 intpin 9 -> irq 13 IOAPIC #1 intpin 14 -> irq 10 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 3, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x000f0011, at 0xfec00000 io1 (APIC): apic id: 1, version: 0x000f0011, at 0xfec01000 Any info would be appreciated. Andrew. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 14:10:50 2001 Delivered-To: freebsd-stable@freebsd.org Received: from sm5.texas.rr.com (sm5.texas.rr.com [24.93.35.219]) by hub.freebsd.org (Postfix) with ESMTP id B83FE37B4EC for ; Mon, 12 Feb 2001 14:10:37 -0800 (PST) Received: from bilbo.midearth.org (cs16080-107.houston.rr.com [24.160.80.107]) by sm5.texas.rr.com (8.11.0/8.11.1) with ESMTP id f1CM8ie05639 for ; Mon, 12 Feb 2001 16:08:49 -0600 Received: from localhost (slpalmer@localhost) by bilbo.midearth.org (8.11.1/8.11.1) with ESMTP id f1CMAVF36628 for ; Mon, 12 Feb 2001 16:10:31 -0600 (CST) (envelope-from slpalmer@midearth.org) Date: Mon, 12 Feb 2001 16:10:30 -0600 (CST) From: "Stephen L. Palmer" X-X-Sender: To: Subject: card_if.h: No such file Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-991228136-982015830=:36623" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-991228136-982015830=:36623 Content-Type: TEXT/PLAIN; charset=US-ASCII While trying to update a 4.2-release to 4.2 stable I do: make buildworld (succeeds) make buildkernel KERNEL=MIDEARTH (fails) (config file included below) Am I missing something obvious here? This is my first attempt to track -stable. I used to track -current long ago (when it was 4.0-current) the buildkernel fails with: /usr/src/sys/dev/xe/if_xe.c:138: card_if.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /usr/obj/usr/src/sys/MIDEARTH. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. --- Stephen L. Palmer slpalmer@midearth.org --0-991228136-982015830=:36623 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=MIDEARTH Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Kernel Config File Content-Disposition: attachment; filename=MIDEARTH Iw0KIyBHRU5FUklDIC0tIEdlbmVyaWMga2VybmVsIGNvbmZpZ3VyYXRpb24g ZmlsZSBmb3IgRnJlZUJTRC9pMzg2DQojDQojIEZvciBtb3JlIGluZm9ybWF0 aW9uIG9uIHRoaXMgZmlsZSwgcGxlYXNlIHJlYWQgdGhlIGhhbmRib29rIHNl Y3Rpb24gb24NCiMgS2VybmVsIENvbmZpZ3VyYXRpb24gRmlsZXM6DQojDQoj ICAgIGh0dHA6Ly93d3cuRnJlZUJTRC5vcmcvaGFuZGJvb2sva2VybmVsY29u ZmlnLWNvbmZpZy5odG1sDQojDQojIFRoZSBoYW5kYm9vayBpcyBhbHNvIGF2 YWlsYWJsZSBsb2NhbGx5IGluIC91c3Ivc2hhcmUvZG9jL2hhbmRib29rDQoj IGlmIHlvdSd2ZSBpbnN0YWxsZWQgdGhlIGRvYyBkaXN0cmlidXRpb24sIG90 aGVyd2lzZSBhbHdheXMgc2VlIHRoZQ0KIyBGcmVlQlNEIFdvcmxkIFdpZGUg V2ViIHNlcnZlciAoaHR0cDovL3d3dy5GcmVlQlNELm9yZy8pIGZvciB0aGUN CiMgbGF0ZXN0IGluZm9ybWF0aW9uLg0KIw0KIyBBbiBleGhhdXN0aXZlIGxp c3Qgb2Ygb3B0aW9ucyBhbmQgbW9yZSBkZXRhaWxlZCBleHBsYW5hdGlvbnMg b2YgdGhlDQojIGRldmljZSBsaW5lcyBpcyBhbHNvIHByZXNlbnQgaW4gdGhl IC4vTElOVCBjb25maWd1cmF0aW9uIGZpbGUuIElmIHlvdSBhcmUNCiMgaW4g ZG91YnQgYXMgdG8gdGhlIHB1cnBvc2Ugb3IgbmVjZXNzaXR5IG9mIGEgbGlu ZSwgY2hlY2sgZmlyc3QgaW4gTElOVC4NCiMNCiMgJEZyZWVCU0Q6IHNyYy9z eXMvaTM4Ni9jb25mL0dFTkVSSUMsdiAxLjI0Ni4yLjIxIDIwMDEvMDEvMTIg MjM6NDU6MTQgc2NvdHRsIEV4cCAkDQoNCm1hY2hpbmUJCWkzODYNCmNwdQkJ STM4Nl9DUFUNCmNwdQkJSTQ4Nl9DUFUNCmNwdQkJSTU4Nl9DUFUNCmNwdQkJ STY4Nl9DUFUNCmlkZW50CQlNSURFQVJUSA0KbWF4dXNlcnMJMzINCg0KI21h a2VvcHRpb25zCURFQlVHPS1nCQkjQnVpbGQga2VybmVsIHdpdGggZ2RiKDEp IGRlYnVnIHN5bWJvbHMNCg0KI29wdGlvbnMgCU1BVEhfRU1VTEFURQkJI1N1 cHBvcnQgZm9yIHg4NyBlbXVsYXRpb24NCm9wdGlvbnMgCUlORVQJCQkjSW50 ZXJORVR3b3JraW5nDQpvcHRpb25zIAlJTkVUNgkJCSNJUHY2IGNvbW11bmlj YXRpb25zIHByb3RvY29scw0Kb3B0aW9ucyAJRkZTCQkJI0JlcmtlbGV5IEZh c3QgRmlsZXN5c3RlbQ0Kb3B0aW9ucyAJRkZTX1JPT1QJCSNGRlMgdXNhYmxl IGFzIHJvb3QgZGV2aWNlIFtrZWVwIHRoaXMhXQ0Kb3B0aW9ucyAJU09GVFVQ REFURVMJCSNFbmFibGUgRkZTIHNvZnQgdXBkYXRlcyBzdXBwb3J0DQpvcHRp b25zIAlNRlMJCQkjTWVtb3J5IEZpbGVzeXN0ZW0NCm9wdGlvbnMgCU1EX1JP T1QJCQkjTUQgaXMgYSBwb3RlbnRpYWwgcm9vdCBkZXZpY2UNCm9wdGlvbnMg CU5GUwkJCSNOZXR3b3JrIEZpbGVzeXN0ZW0NCm9wdGlvbnMgCU5GU19ST09U CQkjTkZTIHVzYWJsZSBhcyByb290IGRldmljZSwgTkZTIHJlcXVpcmVkDQpv cHRpb25zIAlNU0RPU0ZTCQkJI01TRE9TIEZpbGVzeXN0ZW0NCm9wdGlvbnMg CUNEOTY2MAkJCSNJU08gOTY2MCBGaWxlc3lzdGVtDQpvcHRpb25zIAlDRDk2 NjBfUk9PVAkJI0NELVJPTSB1c2FibGUgYXMgcm9vdCwgQ0Q5NjYwIHJlcXVp cmVkDQpvcHRpb25zIAlQUk9DRlMJCQkjUHJvY2VzcyBmaWxlc3lzdGVtDQpv cHRpb25zIAlDT01QQVRfNDMJCSNDb21wYXRpYmxlIHdpdGggQlNEIDQuMyBb S0VFUCBUSElTIV0NCm9wdGlvbnMgCVNDU0lfREVMQVk9MTUwMDAJI0RlbGF5 IChpbiBtcykgYmVmb3JlIHByb2JpbmcgU0NTSQ0Kb3B0aW9ucyAJVUNPTlNP TEUJCSNBbGxvdyB1c2VycyB0byBncmFiIHRoZSBjb25zb2xlDQpvcHRpb25z IAlVU0VSQ09ORklHCQkjYm9vdCAtYyBlZGl0b3INCm9wdGlvbnMgCVZJU1VB TF9VU0VSQ09ORklHCSN2aXN1YWwgYm9vdCAtYyBlZGl0b3INCm9wdGlvbnMg CUtUUkFDRQkJCSNrdHJhY2UoMSkgc3VwcG9ydA0Kb3B0aW9ucyAJU1lTVlNI TQkJCSNTWVNWLXN0eWxlIHNoYXJlZCBtZW1vcnkNCm9wdGlvbnMgCVNZU1ZN U0cJCQkjU1lTVi1zdHlsZSBtZXNzYWdlIHF1ZXVlcw0Kb3B0aW9ucyAJU1lT VlNFTQkJCSNTWVNWLXN0eWxlIHNlbWFwaG9yZXMNCm9wdGlvbnMgCVAxMDAz XzFCCQkjUG9zaXggUDEwMDNfMUIgcmVhbC10aW1lIGV4dGVuc2lvbnMNCm9w dGlvbnMgCV9LUE9TSVhfUFJJT1JJVFlfU0NIRURVTElORw0Kb3B0aW9ucwkJ SUNNUF9CQU5ETElNCQkjUmF0ZSBsaW1pdCBiYWQgcmVwbGllcw0Kb3B0aW9u cyAJS0JEX0lOU1RBTExfQ0RFVgkjIGluc3RhbGwgYSBDREVWIGVudHJ5IGlu IC9kZXYNCg0KIyBGb3IgTkFUDQpvcHRpb25zCQlJUEZJUkVXQUxMDQpvcHRp b25zCQlJUERJVkVSVA0KDQoNCiMgVG8gbWFrZSBhbiBTTVAga2VybmVsLCB0 aGUgbmV4dCB0d28gYXJlIG5lZWRlZA0KI29wdGlvbnMgCVNNUAkJCSMgU3lt bWV0cmljIE11bHRpUHJvY2Vzc29yIEtlcm5lbA0KI29wdGlvbnMgCUFQSUNf SU8JCQkjIFN5bW1ldHJpYyAoQVBJQykgSS9PDQoNCmRldmljZQkJaXNhDQoj ZGV2aWNlCQllaXNhDQpkZXZpY2UJCXBjaQ0KDQojIEZsb3BweSBkcml2ZXMN CmRldmljZQkJZmRjMAlhdCBpc2E/IHBvcnQgSU9fRkQxIGlycSA2IGRycSAy DQpkZXZpY2UJCWZkMAlhdCBmZGMwIGRyaXZlIDANCmRldmljZQkJZmQxCWF0 IGZkYzAgZHJpdmUgMQ0KDQojIEFUQSBhbmQgQVRBUEkgZGV2aWNlcw0KZGV2 aWNlCQlhdGEwCWF0IGlzYT8gcG9ydCBJT19XRDEgaXJxIDE0DQpkZXZpY2UJ CWF0YTEJYXQgaXNhPyBwb3J0IElPX1dEMiBpcnEgMTUNCmRldmljZQkJYXRh DQpkZXZpY2UJCWF0YWRpc2sJCQkjIEFUQSBkaXNrIGRyaXZlcw0KZGV2aWNl CQlhdGFwaWNkCQkJIyBBVEFQSSBDRFJPTSBkcml2ZXMNCmRldmljZQkJYXRh cGlmZAkJCSMgQVRBUEkgZmxvcHB5IGRyaXZlcw0KI2RldmljZQkJYXRhcGlz dAkJCSMgQVRBUEkgdGFwZSBkcml2ZXMNCm9wdGlvbnMgCUFUQV9TVEFUSUNf SUQJCSNTdGF0aWMgZGV2aWNlIG51bWJlcmluZw0Kb3B0aW9ucyAJQVRBX0VO QUJMRV9BVEFQSV9ETUEJI0VuYWJsZSBETUEgb24gQVRBUEkgZGV2aWNlcw0K DQojIFNDU0kgQ29udHJvbGxlcnMNCmRldmljZQkJYWhiCQkjIEVJU0EgQUhB MTc0MiBmYW1pbHkNCmRldmljZQkJYWhjCQkjIEFIQTI5NDAgYW5kIG9uYm9h cmQgQUlDN3h4eCBkZXZpY2VzDQojZGV2aWNlCQlhbWQJCSMgQU1EIDUzQzk3 NCAoVGVja3JhbSBEQy0zOTAoVCkpDQojZGV2aWNlCQlpc3AJCSMgUWxvZ2lj IGZhbWlseQ0KI2RldmljZQkJbmNyCQkjIE5DUi9TeW1iaW9zIExvZ2ljDQoj ZGV2aWNlCQlzeW0JCSMgTkNSL1N5bWJpb3MgTG9naWMgKG5ld2VyIGNoaXBz ZXRzKQ0KI29wdGlvbnMJCVNZTV9TRVRVUF9MUF9QUk9CRV9NQVA9MHg0MA0K CQkJCSMgQWxsb3cgbmNyIHRvIGF0dGFjaCBsZWdhY3kgTkNSIGRldmljZXMg d2hlbiANCgkJCQkjIGJvdGggc3ltIGFuZCBuY3IgYXJlIGNvbmZpZ3VyZWQN Cg0KZGV2aWNlCQlhZHYwCWF0IGlzYT8NCmRldmljZQkJYWR3DQpkZXZpY2UJ CWJ0MAlhdCBpc2E/DQpkZXZpY2UJCWFoYTAJYXQgaXNhPw0KZGV2aWNlCQlh aWMwCWF0IGlzYT8NCg0KI2RldmljZQkJbmN2CQkjIE5DUiA1M0M1MDANCiNk ZXZpY2UJCW5zcAkJIyBXb3JrYml0IE5pbmphIFNDU0ktMw0KI2RldmljZQkJ c3RnCQkjIFRNQyAxOEMzMC8xOEM1MA0KDQojIFNDU0kgcGVyaXBoZXJhbHMN CmRldmljZQkJc2NidXMJCSMgU0NTSSBidXMgKHJlcXVpcmVkKQ0KZGV2aWNl CQlkYQkJIyBEaXJlY3QgQWNjZXNzIChkaXNrcykNCmRldmljZQkJc2EJCSMg U2VxdWVudGlhbCBBY2Nlc3MgKHRhcGUgZXRjKQ0KZGV2aWNlCQljZAkJIyBD RA0KZGV2aWNlCQlwYXNzCQkjIFBhc3N0aHJvdWdoIGRldmljZSAoZGlyZWN0 IFNDU0kgYWNjZXNzKQ0KDQojIFJBSUQgY29udHJvbGxlcnMgaW50ZXJmYWNl ZCB0byB0aGUgU0NTSSBzdWJzeXN0ZW0NCiNkZXZpY2UJCWFzcgkJIyBEUFQg U21hcnRSQUlEIFYsIFZJIGFuZCBBZGFwdGVjIFNDU0kgUkFJRA0KI2Rldmlj ZQkJZHB0CQkjIERQVCBTbWFydGNhY2hlIC0gU2VlIExJTlQgZm9yIG9wdGlv bnMhDQojZGV2aWNlCQltbHkJCSMgTXlsZXggQWNjZWxlUkFJRC9lWHRyZW1l UkFJRA0KDQojIFJBSUQgY29udHJvbGxlcnMNCiNkZXZpY2UJCWFhYwkJIyBB ZGFwdGVjIEZTQSBSQUlELCBEZWxsIFBFUkMyL1BFUkMzDQojZGV2aWNlCQlp ZGEJCSMgQ29tcGFxIFNtYXJ0IFJBSUQNCiNkZXZpY2UJCWFtcgkJIyBBTUkg TWVnYVJBSUQNCiNkZXZpY2UJCW1seAkJIyBNeWxleCBEQUM5NjAgZmFtaWx5 DQojZGV2aWNlCQl0d2UJCSMgM3dhcmUgRXNjYWxhZGUNCg0KIyBhdGtiZGMw IGNvbnRyb2xzIGJvdGggdGhlIGtleWJvYXJkIGFuZCB0aGUgUFMvMiBtb3Vz ZQ0KZGV2aWNlCQlhdGtiZGMwCWF0IGlzYT8gcG9ydCBJT19LQkQNCmRldmlj ZQkJYXRrYmQwCWF0IGF0a2JkYz8gaXJxIDEgZmxhZ3MgMHgxDQpkZXZpY2UJ CXBzbTAJYXQgYXRrYmRjPyBpcnEgMTINCg0KZGV2aWNlCQl2Z2EwCWF0IGlz YT8NCg0KIyBzcGxhc2ggc2NyZWVuL3NjcmVlbiBzYXZlcg0KcHNldWRvLWRl dmljZQlzcGxhc2gNCg0KIyBzeXNjb25zIGlzIHRoZSBkZWZhdWx0IGNvbnNv bGUgZHJpdmVyLCByZXNlbWJsaW5nIGFuIFNDTyBjb25zb2xlDQpkZXZpY2UJ CXNjMAlhdCBpc2E/IGZsYWdzIDB4MTAwDQoNCiMgRW5hYmxlIHRoaXMgYW5k IFBDVlRfRlJFRUJTRCBmb3IgcGN2dCB2dDIyMCBjb21wYXRpYmxlIGNvbnNv bGUgZHJpdmVyDQojZGV2aWNlCQl2dDAJYXQgaXNhPw0KI29wdGlvbnMgCVhT RVJWRVIJCQkjIHN1cHBvcnQgZm9yIFggc2VydmVyIG9uIGEgdnQgY29uc29s ZQ0KI29wdGlvbnMgCUZBVF9DVVJTT1IJCSMgc3RhcnQgd2l0aCBibG9jayBj dXJzb3INCiMgSWYgeW91IGhhdmUgYSBUaGlua1BBRCwgdW5jb21tZW50IHRo aXMgYWxvbmcgd2l0aCB0aGUgcmVzdCBvZiB0aGUgUENWVCBsaW5lcw0KI29w dGlvbnMgCVBDVlRfU0NBTlNFVD0yCQkjIElCTSBrZXlib2FyZHMgYXJlIG5v bi1zdGQNCg0KIyBGbG9hdGluZyBwb2ludCBzdXBwb3J0IC0gZG8gbm90IGRp c2FibGUuDQpkZXZpY2UJCW5weDAJYXQgbmV4dXM/IHBvcnQgSU9fTlBYIGly cSAxMw0KDQojIFBvd2VyIG1hbmFnZW1lbnQgc3VwcG9ydCAoc2VlIExJTlQg Zm9yIG1vcmUgb3B0aW9ucykNCmRldmljZQkJYXBtMCAgICBhdCBuZXh1cz8g ZGlzYWJsZSBmbGFncyAweDIwICMgQWR2YW5jZWQgUG93ZXIgTWFuYWdlbWVu dA0KDQojIFBDQ0FSRCAoUENNQ0lBKSBzdXBwb3J0DQojZGV2aWNlCQljYXJk DQojZGV2aWNlCQlwY2ljMAlhdCBpc2E/IGlycSAwIHBvcnQgMHgzZTAgaW9t ZW0gMHhkMDAwMA0KI2RldmljZQkJcGNpYzEJYXQgaXNhPyBpcnEgMCBwb3J0 IDB4M2UyIGlvbWVtIDB4ZDQwMDAgZGlzYWJsZQ0KDQojIFNlcmlhbCAoQ09N KSBwb3J0cw0KZGV2aWNlCQlzaW8wCWF0IGlzYT8gcG9ydCBJT19DT00xIGZs YWdzIDB4MTAgaXJxIDQNCmRldmljZQkJc2lvMQlhdCBpc2E/IHBvcnQgSU9f Q09NMiBpcnEgMw0KZGV2aWNlCQlzaW8yCWF0IGlzYT8gZGlzYWJsZSBwb3J0 IElPX0NPTTMgaXJxIDUNCmRldmljZQkJc2lvMwlhdCBpc2E/IGRpc2FibGUg cG9ydCBJT19DT000IGlycSA5DQoNCiMgUGFyYWxsZWwgcG9ydA0KZGV2aWNl CQlwcGMwCWF0IGlzYT8gaXJxIDcNCmRldmljZQkJcHBidXMJCSMgUGFyYWxs ZWwgcG9ydCBidXMgKHJlcXVpcmVkKQ0KZGV2aWNlCQlscHQJCSMgUHJpbnRl cg0KZGV2aWNlCQlwbGlwCQkjIFRDUC9JUCBvdmVyIHBhcmFsbGVsDQpkZXZp Y2UJCXBwaQkJIyBQYXJhbGxlbCBwb3J0IGludGVyZmFjZSBkZXZpY2UNCiNk ZXZpY2UJCXZwbwkJIyBSZXF1aXJlcyBzY2J1cyBhbmQgZGENCg0KDQojIFBD SSBFdGhlcm5ldCBOSUNzLg0KZGV2aWNlCQlkZQkJIyBERUMvSW50ZWwgREMy MXg0eCAoYGBUdWxpcCcnKQ0KZGV2aWNlCQlmeHAJCSMgSW50ZWwgRXRoZXJF eHByZXNzIFBSTy8xMDBCICg4MjU1NywgODI1NTgpDQpkZXZpY2UJCXR4CQkj IFNNQyA5NDMyVFggKDgzYzE3MCBgYEVQSUMnJykNCmRldmljZQkJdngJCSMg M0NvbSAzYzU5MCwgM2M1OTUgKGBgVm9ydGV4JycpDQpkZXZpY2UJCXd4CQkj IEludGVsIEdpZ2FiaXQgRXRoZXJuZXQgQ2FyZCAoYGBXaXNlbWFuJycpDQoN CiMgUENJIEV0aGVybmV0IE5JQ3MgdGhhdCB1c2UgdGhlIGNvbW1vbiBNSUkg YnVzIGNvbnRyb2xsZXIgY29kZS4NCiMgTk9URTogQmUgc3VyZSB0byBrZWVw IHRoZSAnZGV2aWNlIG1paWJ1cycgbGluZSBpbiBvcmRlciB0byB1c2UgdGhl c2UgTklDcyENCmRldmljZQkJbWlpYnVzCQkjIE1JSSBidXMgc3VwcG9ydA0K ZGV2aWNlCQlkYwkJIyBERUMvSW50ZWwgMjExNDMgYW5kIHZhcmlvdXMgd29y a2FsaWtlcw0KZGV2aWNlCQlwY24JCSMgQU1EIEFtNzlDNzl4IFBDSSAxMC8x MDAgTklDcw0KZGV2aWNlCQlybAkJIyBSZWFsVGVrIDgxMjkvODEzOQ0KZGV2 aWNlCQlzZgkJIyBBZGFwdGVjIEFJQy02OTE1IChgYFN0YXJmaXJlJycpDQpk ZXZpY2UJCXNpcwkJIyBTaWxpY29uIEludGVncmF0ZWQgU3lzdGVtcyBTaVMg OTAwL1NpUyA3MDE2DQpkZXZpY2UJCXN0ZQkJIyBTdW5kYW5jZSBTVDIwMSAo RC1MaW5rIERGRS01NTBUWCkNCmRldmljZQkJdGwJCSMgVGV4YXMgSW5zdHJ1 bWVudHMgVGh1bmRlckxBTg0KZGV2aWNlCQl2cgkJIyBWSUEgUmhpbmUsIFJo aW5lIElJDQpkZXZpY2UJCXdiCQkjIFdpbmJvbmQgVzg5Qzg0MEYNCmRldmlj ZQkJeGwJCSMgM0NvbSAzYzkweCAoYGBCb29tZXJhbmcnJywgYGBDeWNsb25l JycpDQoNCiMgSVNBIEV0aGVybmV0IE5JQ3MuDQpkZXZpY2UJCWVkMAlhdCBp c2E/IHBvcnQgMHgyODAgaXJxIDEwIGlvbWVtIDB4ZDgwMDANCmRldmljZQkJ ZXgNCmRldmljZQkJZXANCmRldmljZQkJZmUwCWF0IGlzYT8gcG9ydCAweDMw MA0KIyBXYXZlTEFOL0lFRUUgODAyLjExIHdpcmVsZXNzIE5JQ3MuIE5vdGU6 IHRoZSBXYXZlTEFOL0lFRUUgcmVhbGx5DQojIGV4aXN0cyBvbmx5IGFzIGEg UENNQ0lBIGRldmljZSwgc28gdGhlcmUgaXMgbm8gSVNBIGF0dGF0ZW1lbnQg bmVlZGVkDQojIGFuZCByZXNvdXJjZXMgd2lsbCBhbHdheXMgYmUgZHluYW1p Y2FsbHkgYXNzaWduZWQgYnkgdGhlIHBjY2FyZCBjb2RlLg0KZGV2aWNlCQl3 aQ0KIyBBaXJvbmV0IDQ1MDAvNDgwMCA4MDIuMTEgd2lyZWxlc3MgTklDcy4g Tm90ZTogdGhlIGRlY2xhcmF0aW9uIGJlbG93IHdpbGwNCiMgd29yayBmb3Ig UENNQ0lBIGFuZCBQQ0kgY2FyZHMsIGFzIHdlbGwgYXMgSVNBIGNhcmRzIHNl dCB0byBJU0EgUG5QDQojIG1vZGUgKHRoZSBmYWN0b3J5IGRlZmF1bHQpLiBJ ZiB5b3Ugc2V0IHRoZSBzd2l0Y2hlcyBvbiB5b3VyIElTQQ0KIyBjYXJkIGZv ciBhIG1hbnVhbGx5IGNob3NlbiBJL08gYWRkcmVzcyBhbmQgSVJRLCB5b3Ug bXVzdCBzcGVjaWZ5DQojIHRob3NlIHBhcmVtZXRlcnMgaGVyZS4NCmRldmlj ZQkJYW4NCiMgWGlyY29tIEV0aGVybmV0DQpkZXZpY2UJCXhlDQojIFRoZSBw cm9iZSBvcmRlciBvZiB0aGVzZSBpcyBwcmVzZW50bHkgZGV0ZXJtaW5lZCBi eSBpMzg2L2lzYS9pc2FfY29tcGF0LmMuDQpkZXZpY2UJCWllMAlhdCBpc2E/ IHBvcnQgMHgzMDAgaXJxIDEwIGlvbWVtIDB4ZDAwMDANCiNkZXZpY2UJCWxl MAlhdCBpc2E/IHBvcnQgMHgzMDAgaXJxIDUgaW9tZW0gMHhkMDAwMA0KZGV2 aWNlCQlsbmMwCWF0IGlzYT8gcG9ydCAweDI4MCBpcnEgMTAgZHJxIDANCmRl dmljZQkJY3MwCWF0IGlzYT8gcG9ydCAweDMwMA0KZGV2aWNlCQlzbjAJYXQg aXNhPyBwb3J0IDB4MzAwIGlycSAxMA0KDQojIFBzZXVkbyBkZXZpY2VzIC0g dGhlIG51bWJlciBpbmRpY2F0ZXMgaG93IG1hbnkgdW5pdHMgdG8gYWxsb2Nh dGVkLg0KcHNldWRvLWRldmljZQlsb29wCQkjIE5ldHdvcmsgbG9vcGJhY2sN CnBzZXVkby1kZXZpY2UJZXRoZXIJCSMgRXRoZXJuZXQgc3VwcG9ydA0KcHNl dWRvLWRldmljZQlzbAkxCSMgS2VybmVsIFNMSVANCnBzZXVkby1kZXZpY2UJ cHBwCTEJIyBLZXJuZWwgUFBQDQpwc2V1ZG8tZGV2aWNlCXR1bgkJIyBQYWNr ZXQgdHVubmVsLg0KcHNldWRvLWRldmljZQlwdHkJCSMgUHNldWRvLXR0eXMg KHRlbG5ldCBldGMpDQpwc2V1ZG8tZGV2aWNlCW1kCQkjIE1lbW9yeSAiZGlz a3MiDQpwc2V1ZG8tZGV2aWNlCWdpZgk0CSMgSVB2NiBhbmQgSVB2NCB0dW5u ZWxpbmcNCnBzZXVkby1kZXZpY2UJZmFpdGgJMQkjIElQdjYtdG8tSVB2NCBy ZWxheWluZyAodHJhbnNsYXRpb24pDQoNCiMgVGhlIGBicGYnIHBzZXVkby1k ZXZpY2UgZW5hYmxlcyB0aGUgQmVya2VsZXkgUGFja2V0IEZpbHRlci4NCiMg QmUgYXdhcmUgb2YgdGhlIGFkbWluaXN0cmF0aXZlIGNvbnNlcXVlbmNlcyBv ZiBlbmFibGluZyB0aGlzIQ0KcHNldWRvLWRldmljZQlicGYJCSNCZXJrZWxl eSBwYWNrZXQgZmlsdGVyDQoNCiMgVVNCIHN1cHBvcnQNCmRldmljZQkJdWhj aQkJIyBVSENJIFBDSS0+VVNCIGludGVyZmFjZQ0KZGV2aWNlCQlvaGNpCQkj IE9IQ0kgUENJLT5VU0IgaW50ZXJmYWNlDQpkZXZpY2UJCXVzYgkJIyBVU0Ig QnVzIChyZXF1aXJlZCkNCmRldmljZQkJdWdlbgkJIyBHZW5lcmljDQpkZXZp Y2UJCXVoaWQJCSMgIkh1bWFuIEludGVyZmFjZSBEZXZpY2VzIg0KZGV2aWNl CQl1a2JkCQkjIEtleWJvYXJkDQpkZXZpY2UJCXVscHQJCSMgUHJpbnRlcg0K ZGV2aWNlCQl1bWFzcwkJIyBEaXNrcy9NYXNzIHN0b3JhZ2UgLSBSZXF1aXJl cyBzY2J1cyBhbmQgZGENCmRldmljZQkJdW1zCQkjIE1vdXNlDQpkZXZpY2UJ CXVzY2FubmVyCSMgU2Nhbm5lcnMNCiMgVVNCIEV0aGVybmV0LCByZXF1aXJl cyBtaWkNCmRldmljZQkJYXVlCQkjIEFETXRlayBVU0IgZXRoZXJuZXQNCmRl dmljZQkJY3VlCQkjIENBVEMgVVNCIGV0aGVybmV0DQpkZXZpY2UJCWt1ZQkJ IyBLYXdhc2FraSBMU0kgVVNCIGV0aGVybmV0DQo= --0-991228136-982015830=:36623-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 14:22:20 2001 Delivered-To: freebsd-stable@freebsd.org Received: from www3.infolink.com.br (www3.infolink.com.br [200.255.108.4]) by hub.freebsd.org (Postfix) with ESMTP id 9B35A37B491 for ; Mon, 12 Feb 2001 14:22:16 -0800 (PST) Received: from diala11 (unverified [200.255.108.11]) by www3.infolink.com.br (Vircom SMTPRS 4.2.181) with SMTP id for ; Mon, 12 Feb 2001 20:22:14 -0300 Message-ID: <001d01c0954a$a21c0e00$0b6cffc8@infolink.com.br> From: "Antonio Carlos Pina" To: References: <200102122134.f1CLYNd90428@iguana.aciri.org> Subject: Bridge+Routing ? (Was BRIDGE breaks ARP?) Date: Mon, 12 Feb 2001 20:22:13 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4029.2901 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4029.2901 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Luigi, Sorry my fragmented English! Here's the deal: |Another LAN|Gateway| -| |INTERNAL LAN| -> |BRIDGE| -> |ROUTER| -> Internet |Another LAN|Gateway| -| I'm not running NAT, ok ? All my IPs are public ones. Internal Lan talks directly to our Bridge Another Lan talks via "Gateway" to our Bridge (another ethernet card too) The router has 2 static routes pointing to "Gateway" so we can reach "Another LAN" With this configuration, whenever "Another LAN" wants to talk with "INTERNAL LAN", it needs to go until ROUTER, then go back. My question is: Is there any way you know the box can intercept and re-route the traffic (as it was the "default gateway") ? But I would like not to change our configuration, instead I would like to really intercept and change the IP traffic. Thank you again for your attention, Best Regards, Antonio Carlos Pina apina@infolink.com.br > hi, > i am not sure i understand what you want to do. > > luigi > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 14:25:48 2001 Delivered-To: freebsd-stable@freebsd.org Received: from romulus.bhi-net.com (romulus.bhi-net.com [204.253.245.10]) by hub.freebsd.org (Postfix) with ESMTP id 356AD37B491 for ; Mon, 12 Feb 2001 14:25:09 -0800 (PST) Received: from bsssysvsc01 (204-253-245-34.bhi-net.com [204.253.245.34] (may be forged)) by romulus.bhi-net.com (8.9.2/8.9.0) with SMTP id QAA20875 for ; Mon, 12 Feb 2001 16:19:57 -0600 (CST) Received: FROM omnibus BY bsssysvsc01 ; Mon Feb 12 16:12:38 2001 -0600 Received: from slpalmer ([172.18.10.212]) by omnibus (4.1/SMI-4.1) id AA29683; Mon, 12 Feb 01 16:19:47 CST Message-Id: <02c101c09543$2e9f6780$d40a12ac@bakerhughes.com> From: "Stephen L. Palmer" To: References: Subject: Re: card_if.h: No such file Date: Mon, 12 Feb 2001 16:28:53 -0600 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-Msmail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-Mimeole: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Please disregard my prior message, I noticed the obvious, and commented out the xe driver just after posting... ----- Original Message ----- From: "Stephen L. Palmer" To: Sent: Monday, February 12, 2001 4:10 PM Subject: card_if.h: No such file > Am I missing something obvious here? This is my first attempt to track > -stable. I used to track -current long ago (when it was 4.0-current) > > the buildkernel fails with: > /usr/src/sys/dev/xe/if_xe.c:138: card_if.h: No such file or directory > mkdep: compile failed > *** Error code 1 > --- Stephen L. Palmer slpalmer@midearth.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 14:26:38 2001 Delivered-To: freebsd-stable@freebsd.org Received: from level3.dynacom.net (level3.dynacom.net [206.107.213.213]) by hub.freebsd.org (Postfix) with SMTP id 4B41F37B4EC for ; Mon, 12 Feb 2001 14:26:32 -0800 (PST) Received: (qmail 6346 invoked by uid 0); 12 Feb 2001 22:26:21 -0000 Received: from dsl1-160.dynacom.net (HELO urx.com) (206.159.132.160) by mail.urx.com with SMTP; 12 Feb 2001 22:26:21 -0000 Message-ID: <3A88630C.79EA729F@urx.com> Date: Mon, 12 Feb 2001 14:26:20 -0800 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: "Stephen L. Palmer" Cc: freebsd-stable@freebsd.org Subject: Re: card_if.h: No such file References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Stephen L. Palmer" wrote: > > While trying to update a 4.2-release to 4.2 stable I do: > > make buildworld (succeeds) > make buildkernel KERNEL=MIDEARTH (fails) (config file included below) > > Am I missing something obvious here? This is my first attempt to track > -stable. I used to track -current long ago (when it was 4.0-current) > > the buildkernel fails with: > /usr/src/sys/dev/xe/if_xe.c:138: card_if.h: No such file or directory > mkdep: compile failed > *** Error code 1 > > Stop in /usr/obj/usr/src/sys/MIDEARTH. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > Well, you deleted card support with # PCCARD (PCMCIA) support #device card and if it isn't there, your xe driver won't compile. Since you don't appear to have a pc-card NIC, you probably have to delete those NIC's, i.e., an and xe. One thing hasn't made it to /usr/src/UPDATING but you might as well get used to it now. I would use KERNCONF=MIDEARTH instead of the KERNEL form, which has been depricated. Kent > --- > Stephen L. Palmer > slpalmer@midearth.org > > ---------------------------------------------------------------------- > Name: MIDEARTH > MIDEARTH Type: Plain Text (TEXT/PLAIN) > Encoding: BASE64 > Description: Kernel Config File -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 14:28:39 2001 Delivered-To: freebsd-stable@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id 8345237B491 for ; Mon, 12 Feb 2001 14:28:37 -0800 (PST) Received: from hornet.unixfreak.org (hornet [63.198.170.140]) by bazooka.unixfreak.org (Postfix) with ESMTP id 77B713E09; Mon, 12 Feb 2001 14:28:29 -0800 (PST) To: "Stephen L. Palmer" Cc: freebsd-stable@freebsd.org Subject: Re: card_if.h: No such file In-Reply-To: Message from "Stephen L. Palmer" of "Mon, 12 Feb 2001 16:10:30 CST." Date: Mon, 12 Feb 2001 14:28:29 -0800 From: Dima Dorfman Message-Id: <20010212222829.77B713E09@bazooka.unixfreak.org> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > /usr/src/sys/dev/xe/if_xe.c:138: card_if.h: No such file or directory > mkdep: compile failed I haven't read your kernel config because mime/uuencode/whatever you used is a PITA, but trying sticking ``device card'' back into your kernel if it isn't there. Dima Dorfman dima@unixfreak.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 14:37:49 2001 Delivered-To: freebsd-stable@freebsd.org Received: from sm5.texas.rr.com (sm5.texas.rr.com [24.93.35.219]) by hub.freebsd.org (Postfix) with ESMTP id 7660E37B491 for ; Mon, 12 Feb 2001 14:37:46 -0800 (PST) Received: from bilbo.midearth.org (cs16080-107.houston.rr.com [24.160.80.107]) by sm5.texas.rr.com (8.11.0/8.11.1) with ESMTP id f1CMZve25851 for ; Mon, 12 Feb 2001 16:35:57 -0600 Received: from localhost (slpalmer@localhost) by bilbo.midearth.org (8.11.1/8.11.1) with ESMTP id f1CMbiR53145 for ; Mon, 12 Feb 2001 16:37:45 -0600 (CST) (envelope-from slpalmer@midearth.org) Date: Mon, 12 Feb 2001 16:37:44 -0600 (CST) From: "Stephen L. Palmer" X-X-Sender: To: Subject: Re: card_if.h: No such file In-Reply-To: <20010212222829.77B713E09@bazooka.unixfreak.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks all for the quick response! I did notice the xe device right after posting the first message. > I haven't read your kernel config because mime/uuencode/whatever you > used is a PITA Sorry about that, I'll stick with pasting the text in next time... --- Stephen L. Palmer slpalmer@midearth.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 14:38:14 2001 Delivered-To: freebsd-stable@freebsd.org Received: from milquetoast.cs.mcgill.ca (milquetoast.CS.McGill.CA [132.206.2.5]) by hub.freebsd.org (Postfix) with ESMTP id C241C37B491 for ; Mon, 12 Feb 2001 14:38:04 -0800 (PST) Received: (from andrewb@localhost) by milquetoast.cs.mcgill.ca (8.9.3/8.9.3) id RAA19650; Mon, 12 Feb 2001 17:36:32 -0500 (EST) Date: Mon, 12 Feb 2001 17:36:32 -0500 From: Andrew BOGECHO To: Clark Shishido Cc: freebsd-stable@FreeBSD.ORG Subject: Re: top not working on STABLE SMP box Message-ID: <20010212173632.D15845@cs.mcgill.ca> Mail-Followup-To: Andrew BOGECHO , Clark Shishido , freebsd-stable@FreeBSD.ORG References: <20010212164859.A15845@cs.mcgill.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from cshishid@slip.net on Mon, Feb 12, 2001 at 02:25:36PM -0800 Organization: SOCS, McGill University, Montreal, CANADA Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mon Feb 12 17:35:40 EST 2001 Yup, tried that, still no go. Sorry :( Andrew. On Mon, Feb 12, 2001 at 02:25:36PM -0800, Clark Shishido wrote: > > > > I posted last week on questions, and got some replies, but > > nothing worked. This Sunday, I deleted the whole stable tree > > cvsuped the whole thing and built again still no go. > > > > did you recompile top with your newly built kernel? > > this happened to me once where I had to recompile top > separately after I had installed the new world and kernel. > > just cd /usr/src/usr.bin/top > and do a make && make install > > see if that helps. > > --clark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 14:40:35 2001 Delivered-To: freebsd-stable@freebsd.org Received: from slip-3.slip.net (slip-3.slip.net [207.171.193.17]) by hub.freebsd.org (Postfix) with ESMTP id B49E937B491 for ; Mon, 12 Feb 2001 14:40:33 -0800 (PST) Received: from cshishid by slip-3.slip.net with local (Exim 2.02 #1) id 14SRPd-0004qO-00; Mon, 12 Feb 2001 14:25:37 -0800 Subject: Re: top not working on STABLE SMP box To: andrewb@cs.mcgill.ca (Andrew BOGECHO) Date: Mon, 12 Feb 2001 14:25:36 -0800 (PST) Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: <20010212164859.A15845@cs.mcgill.ca> from "Andrew BOGECHO" at Feb 12, 2001 04:48:59 PM X-Mailer: ELM [version 2.5 PL2] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: From: Clark Shishido Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > I posted last week on questions, and got some replies, but > nothing worked. This Sunday, I deleted the whole stable tree > cvsuped the whole thing and built again still no go. > did you recompile top with your newly built kernel? this happened to me once where I had to recompile top separately after I had installed the new world and kernel. just cd /usr/src/usr.bin/top and do a make && make install see if that helps. --clark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 15:53: 7 2001 Delivered-To: freebsd-stable@freebsd.org Received: from camus.cybercable.fr (camus.cybercable.fr [212.198.0.200]) by hub.freebsd.org (Postfix) with SMTP id 15C6537B503 for ; Mon, 12 Feb 2001 15:53:04 -0800 (PST) Received: (qmail 7175564 invoked from network); 12 Feb 2001 23:53:02 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by camus.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 12 Feb 2001 23:53:02 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f1CNqxv13762; Tue, 13 Feb 2001 00:52:59 +0100 (CET) (envelope-from clefevre@poboxes.com) To: freebsd-stable@freebsd.org Subject: why there is no news.freebsd.org ? X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C From: Cyrille Lefevre Reply-To: clefevre@poboxes.com Mail-Copies-To: never Date: 13 Feb 2001 00:52:57 +0100 Message-ID: Lines: 14 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG why there is no news server piped to the mailing lists at FreeBSD ? this may have some advantage over mailing lists, no ? - less datas transfered - open access to everyone - no need to subscribe - etc. Cyrille. -- home: mailto:clefevre@poboxes.com UNIX is user-friendly; it's just particular work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 16:31: 2 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hub.ucsb.edu (hub.ucsb.edu [128.111.24.40]) by hub.freebsd.org (Postfix) with ESMTP id 85E5F37B491 for ; Mon, 12 Feb 2001 16:30:57 -0800 (PST) Received: from oit.ucsb.edu ([128.111.1.12]) by hub.ucsb.edu with esmtp id 14STMv-000Hx9-00 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 16:30:57 -0800 Received: from kps (helo=localhost) by oit.ucsb.edu with local-esmtp id 14STMu-0002Ju-00 for freebsd-stable@freebsd.org; Mon, 12 Feb 2001 16:30:56 -0800 Date: Mon, 12 Feb 2001 16:30:56 -0800 (PST) From: Kevin Schmidt To: freebsd-stable@freebsd.org Subject: Problem with sshd via inetd Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Just curious if I've gotten my box in an unusual state or if this is a problem others are seeing: I did a cvsup earlier today, buildworld, buildkernel, single-user installworld, and reboot. My sshd starts out of inetd (yes, I know that adds a little performance hit on connect). From inetd.conf: ssh stream tcp nowait root /usr/sbin/sshd sshd -i box-ttyp0% uname -a FreeBSD box.ucsb.edu 4.2-STABLE FreeBSD 4.2-STABLE #2: Mon Feb 12 13:09:38 PST 2001 root@box.ucsb.edu:/usr/obj/usr/src/sys/BOX i386 The problem is, slogins from a host of similar cvsup date fail as follows: otherhost-ttyp0% slogin box 2f 65 74 63 2f 73 73 68 Disconnecting: Bad packet length 795178083. Another person reported identical connection failures when trying an slogin from a RedHat 7.0 box with OpenSSH 2.3.0p1. An slogin from an old FBSD 3.5 box worked, even with sshd starting out of inetd. Making sshd standalone resolves the issue, but that's a workaround, and doesn't seem like a Good Thing. I'm also seeing a problem with my stunnel-wrapped imapd, but I haven't determined if it's a related problem. If it is related, life gets much uglier since the imapd doesn't want to run standalone. Is anyone else seeing this, and if so, is there a proper solution? Thanks, Kevin Schmidt kps@ucsb.edu Campus Network Programmer (805) 893-7779 Engineering Computing Infrastructure (805) 893-8553 FAX University of California, Santa Barbara Santa Barbara, CA 93106 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 18:41:37 2001 Delivered-To: freebsd-stable@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id BDBCF37B503 for ; Mon, 12 Feb 2001 18:41:26 -0800 (PST) Received: (from dillon@localhost) by earth.backplane.com (8.11.2/8.9.3) id f1D2fMp68169; Mon, 12 Feb 2001 18:41:22 -0800 (PST) (envelope-from dillon) Date: Mon, 12 Feb 2001 18:41:22 -0800 (PST) From: Matt Dillon Message-Id: <200102130241.f1D2fMp68169@earth.backplane.com> To: Cyrille Lefevre Cc: freebsd-stable@FreeBSD.ORG Subject: Re: why there is no news.freebsd.org ? References: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG :why there is no news server piped to the mailing lists at FreeBSD ? : :this may have some advantage over mailing lists, no ? : :- less datas transfered :- open access to everyone :- no need to subscribe :- etc. : :Cyrille. :-- :home: mailto:clefevre@poboxes.com UNIX is user-friendly; it's just particular :work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. Too much garbage. USENET has been dying for the last decade. I'm a big fan of the USENET, but even I don't use it much any more. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 20:43:17 2001 Delivered-To: freebsd-stable@freebsd.org Received: from harmony.village.org (rover.village.org [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id A798A37B491 for ; Mon, 12 Feb 2001 20:43:11 -0800 (PST) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.1/8.11.1) with ESMTP id f1D4giW35232; Mon, 12 Feb 2001 21:42:48 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200102130442.f1D4giW35232@harmony.village.org> To: "Stephen L. Palmer" Subject: Re: card_if.h: No such file Cc: freebsd-stable@FreeBSD.ORG In-reply-to: Your message of "Mon, 12 Feb 2001 16:28:53 CST." <02c101c09543$2e9f6780$d40a12ac@bakerhughes.com> References: <02c101c09543$2e9f6780$d40a12ac@bakerhughes.com> Date: Mon, 12 Feb 2001 21:42:44 -0700 From: Warner Losh Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <02c101c09543$2e9f6780$d40a12ac@bakerhughes.com> "Stephen L. Palmer" writes: : Please disregard my prior message, I noticed the obvious, and commented out : the xe driver just after posting... I've just fixed the bug that allows for this to happen in stable. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 20:53:46 2001 Delivered-To: freebsd-stable@freebsd.org Received: from leviathan.inethouston.net (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 93D1637B491 for ; Mon, 12 Feb 2001 20:53:43 -0800 (PST) Received: from dwcjr (216-118-21-147.pdq.net [216.118.21.147]) by leviathan.inethouston.net (Postfix) with ESMTP id 09CB611131B; Mon, 12 Feb 2001 22:53:35 -0600 (CST) Message-ID: <00d401c09578$ec1e5980$931576d8@inethouston.net> From: "David W. Chapman Jr." To: Cc: "Greg Lehey" Subject: Vinum problem Date: Mon, 12 Feb 2001 22:53:11 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Every time I start up vinum I get this error, whether cold boot or vinum stop and then vinum start, is there something I'm doing wrong. I just cvsuped to -stable a half hour ago and make world and new kernel. Anyone have any ideas Warning: defective objects P str1c.p0 S State: flaky Subdisks: 2 Size: 17 GB S str1c.p0.s1 State: reborn PO: 283 kB Size: 8712 MB I can fix it by running vinum setstate up str1c.p0.s1 On a fresh boot, I get this output Feb 12 22:45:31 leviathan /kernel: vinum: reading configuration from /dev/da1s1e Feb 12 22:45:31 leviathan /kernel: vinum: updating configuration from /dev/da0s1e Feb 12 22:48:14 leviathan /kernel: vinum: /dev is mounted read-only, not rebuilding /dev/vinum I am starting vinum buy putting start_vinum="YES" in my rc.conf, but the second problem is the least of my problems. /var/log/messages doesn't tell me much Feb 12 22:45:31 leviathan /kernel: vinum: loaded Feb 12 22:45:31 leviathan /kernel: vinum: reading configuration from /dev/da1s1e Feb 12 22:45:31 leviathan /kernel: vinum: updating configuration from /dev/da0s1 here is my config drive d1 device /dev/da0s1e drive d2 device /dev/da1s1e volume str1c plex org striped 283k sd length 8713m drive d1 sd length 8713m drive d2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 21: 0:50 2001 Delivered-To: freebsd-stable@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 8F6C337B491 for ; Mon, 12 Feb 2001 21:00:45 -0800 (PST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 22DE36ACC8; Tue, 13 Feb 2001 15:30:43 +1030 (CST) Date: Tue, 13 Feb 2001 15:30:43 +1030 From: Greg Lehey To: "David W. Chapman Jr." Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Vinum problem Message-ID: <20010213153043.F30961@wantadilla.lemis.com> References: <00d401c09578$ec1e5980$931576d8@inethouston.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <00d401c09578$ec1e5980$931576d8@inethouston.net>; from dwcjr@inethouston.net on Mon, Feb 12, 2001 at 10:53:11PM -0600 Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [Format recovered--see http://www.lemis.com/email/email-format.html] Please don't wrap log output. On Monday, 12 February 2001 at 22:53:11 -0600, David W. Chapman Jr. wrote: > Every time I start up vinum I get this error, whether cold boot or vinum > stop and then vinum start, is there something I'm doing wrong. I just > cvsuped to -stable a half hour ago and make world and new kernel. Anyone > have any ideas > > Warning: defective objects > > P str1c.p0 S State: flaky Subdisks: 2 Size: 17 GB > S str1c.p0.s1 State: reborn PO: 283 kB Size: 8712 MB > > I can fix it by running vinum setstate up str1c.p0.s1 Well, no, you can work around it like that. > On a fresh boot, I get this output > Feb 12 22:45:31 leviathan /kernel: vinum: reading configuration from /dev/da1s1e > Feb 12 22:45:31 leviathan /kernel: vinum: updating configuration from /dev/da0s1e > Feb 12 22:48:14 leviathan /kernel: vinum: /dev is mounted read-only, not rebuilding /dev/vinum That's normal. Nothing to worry about. > I am starting vinum buy putting start_vinum="YES" in my rc.conf, but > the second problem is the least of my problems. > > /var/log/messages doesn't tell me much > > Feb 12 22:45:31 leviathan /kernel: vinum: loaded > Feb 12 22:45:31 leviathan /kernel: vinum: reading configuration from /dev/da1s1e > Feb 12 22:45:31 leviathan /kernel: vinum: updating configuration from /dev/da0s1 > > here is my config > > drive d1 device /dev/da0s1e > drive d2 device /dev/da1s1e > > volume str1c > plex org striped 283k > sd length 8713m drive d1 > sd length 8713m drive d2 All looks OK. The problem you have is that some time in the distant past, something probably went wrong. Vinum doesn't forget the state. setstate is a recovery tool without a guard, and as a result Vinum doesn't record the changes you make on the disk: you have to do that manually. As a result, when you reboot, they go back into the old state. In this case, since your volume is not replicated, it's about your only chance. Next time you change the state, do a 'vinum saveconfig' afterwards, and all should be well. You can check what's on the disk with 'vinum dumpconfig'. Greg -- When replying to this message, please take care not to mutilate the original text. For more information, see http://www.lemis.com/email.html Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 21: 2:12 2001 Delivered-To: freebsd-stable@freebsd.org Received: from tomts8-srv.bellnexxia.net (tomts8.bellnexxia.net [209.226.175.52]) by hub.freebsd.org (Postfix) with ESMTP id 15D6337B491 for ; Mon, 12 Feb 2001 21:02:05 -0800 (PST) Received: from unios.dhs.org ([206.172.131.58]) by tomts8-srv.bellnexxia.net (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20010213050202.PASE29113.tomts8-srv.bellnexxia.net@unios.dhs.org> for ; Tue, 13 Feb 2001 00:02:02 -0500 Message-ID: <3A88BEF1.76C231C2@unios.dhs.org> Date: Mon, 12 Feb 2001 23:58:25 -0500 From: Pat Wendorf X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: LICQ Reboots Machine Content-Type: multipart/mixed; boundary="------------39104F7FB7A97DBF75120A1C" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------39104F7FB7A97DBF75120A1C Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit IIRC, we had some major bug fixes to the threading libs a while back which seems to have fixed LICQ from core dumping with a sig 6 every 30 min on me (I'm not sure what the bugfixes were for but this was the general result for me). I'm experiencing another issue at the moment though: Every time I recieve an incoming URL, the sound will go into a loop (about 7 repitions) and the machine will reboot itself. The only solution seems to be to shut the sound off. I've tried using sox play and esdplay and the result is the same. It happens to quicky to break into the debugger to find out what's going on, and unfortunatly it seems /var/log/messages is also bare of any clue. This is a laptop, running 4.2-STABLE compiled (and make world'ed) Sat Feb 10 00:11:39 EST 2001, XFree86 3.3.6_4 from the ports collection, LICQ 1.0.2 from ports, QT 2.2.3 from ports and sox 12.16 from ports. If it helps the laptop is a Digital HiNote VP575. My DMESG and kernel config are attached. Thanks for any help on this one. BTW: APM stuff is completly broken on this machine also if it helps. Keyboard and mouse lock up tight when it comes out of sleep mode, which it does about 1 second after it goes into sleep mode. I only enable APM so I can use wmbattery to see my battery status. Pat Wendorf --------------39104F7FB7A97DBF75120A1C Content-Type: text/plain; charset=us-ascii; name="LAPTOP" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="LAPTOP" machine i386 cpu I586_CPU ident GENERIC maxusers 32 options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device options NFS #Network Filesystem options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev device isa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives #options ATA_STATIC_ID #Static device numbering #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) #device apm0 at nexus? disable flags 0x20 # Advanced Power Management device apm0 # PCCARD (PCMCIA) support device card device pcic0 at isa? irq 0 port 0x3e0 iomem 0xd0000 # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer device ed # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device bpf #Berkeley packet filter device pcm device sbc0 at isa? port 0x220 irq 5 drq 1 --------------39104F7FB7A97DBF75120A1C Content-Type: text/plain; charset=us-ascii; name="dmesg" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dmesg" Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-STABLE #0: Sat Feb 10 00:11:39 EST 2001 beholder@laptop.unios.ca:/server/src/sys/compile/LAPTOP Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P55C (167.05-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x544 Stepping = 4 Features=0x8001bf real memory = 83886080 (81920K bytes) avail memory = 78368768 (76532K bytes) Preloaded elf kernel "kernel" at 0xc0327000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc032709c. Preloaded elf module "splash_bmp.ko" at 0xc03270ec. Preloaded splash_image_data "/boot/splash.bmp" at 0xc0327190. Intel Pentium detected, installing workaround for F00F bug apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 chip1: at device 1.0 on pci0 pci0: at 2.0 pcic-pci0: mem 0xcc000-0xccfff irq 9 at device 4.0 on pci0 pcic-pci1: mem 0xcd000-0xcdfff irq 10 at device 4.1 on pci0 isa0: on motherboard fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ata0 at port 0x1f0-0x1f7,0x3f6 irq 14 on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> pcic0: at port 0x3e0 iomem 0xd0000 on isa0 pcic0: Polling mode pccard0: on pcic0 pccard1: on pcic0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode lpt0: on ppbus0 lpt0: Interrupt-driven port sbc0: at port 0x220-0x22f irq 5 drq 1 on isa0 pcm0: on sbc0 ad0: 2067MB [4200/16/63] at ata0-master BIOSPIO acd0: CDROM at ata0-slave using BIOSPIO Mounting root from ufs:/dev/ad0s1a WARNING: / was not properly dismounted pccard: card inserted, slot 0 pccard: card inserted, slot 0 ed0 at port 0x340-0x35f irq 15 slot 0 on pccard0 ed0: address 00:e0:98:04:54:b2, type Linksys (16 bit) --------------39104F7FB7A97DBF75120A1C-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 21:11:18 2001 Delivered-To: freebsd-stable@freebsd.org Received: from leviathan.inethouston.net (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id B991437B491 for ; Mon, 12 Feb 2001 21:11:15 -0800 (PST) Received: from dwcjr (216-118-21-147.pdq.net [216.118.21.147]) by leviathan.inethouston.net (Postfix) with ESMTP id 9B0AC11131A for ; Mon, 12 Feb 2001 23:11:13 -0600 (CST) Message-ID: <013401c0957b$62eba3e0$931576d8@inethouston.net> From: "David W. Chapman Jr." To: Subject: Fw: Yahoo! Auto Response Date: Mon, 12 Feb 2001 23:11:13 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I got this when sending a post to this mailist list, anyone own this email? ----- Original Message ----- From: To: "David W. Chapman Jr." Sent: Monday, February 12, 2001 11:00 PM Subject: Yahoo! Auto Response > This mailbox is for sending only. Do not send me any messages to this address. Please use my other accounts instead. > > -------------------- > > > Original Message: > > > >From owner-freebsd-stable@freebsd.org Tue Feb 13 05:00:55 2001 > Return-Path: > Received: from mail-relay1.yahoo.com (206.132.105.34) > by mta519.mail.yahoo.com with SMTP; 12 Feb 2001 20:55:18 -0800 (PST) > Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) > by mail-relay1.yahoo.com (Postfix) with ESMTP > id F226A8B625; Mon, 12 Feb 2001 20:55:17 -0800 (PST) > Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) > by mx1.FreeBSD.org (Postfix) with ESMTP > id 967A86E2ED1; Mon, 12 Feb 2001 20:53:49 -0800 (PST) > Received: by hub.freebsd.org (Postfix, from userid 538) > id 18C7F37B4EC; Mon, 12 Feb 2001 20:53:46 -0800 (PST) > Received: from localhost (localhost [127.0.0.1]) > by hub.freebsd.org (Postfix) with SMTP > id 94A8A2E80EF; Mon, 12 Feb 2001 20:53:46 -0800 (PST) > Received: by hub.freebsd.org (bulk_mailer v1.12); Mon, 12 Feb 2001 20:53:46 -0800 > Delivered-To: freebsd-stable@freebsd.org > Received: from leviathan.inethouston.net (216-118-21-146 > _________________________________________________________ > DO YOU YAHOO!? > Get your free @yahoo.com address at http://mail.yahoo.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 21:41:21 2001 Delivered-To: freebsd-stable@freebsd.org Received: from empty1.ekahuna.com (empty1.ekahuna.com [205.178.102.196]) by hub.freebsd.org (Postfix) with ESMTP id 5168D37B491 for ; Mon, 12 Feb 2001 21:41:19 -0800 (PST) Received: from pc-02 (pc02.ekahuna.com [205.178.102.197]) by empty1.ekahuna.com (Post.Office MTA v3.5.3 release 223 ID# 0-0U10L2S100V35) with ESMTP id com for ; Mon, 12 Feb 2001 21:41:18 -0800 From: "Philip J. Koenig" Organization: The Electric Kahuna Organization To: stable@FreeBSD.ORG Date: Mon, 12 Feb 2001 21:41:19 -0800 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: OpenSSH 2.3.0 fixes Reply-To: pjklist@ekahuna.com Message-ID: <3A88587F.20001.382E4B1@localhost> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG A couple days ago the list was discussing a problem with OpenSSH 2.3.0, and these "broken pipe" errors. Did the fix for that ever make it into STABLE? (I did a cvsup on 2/11 (-0800) and couldn't ascertain from the list of OpenSSH patches and files whether this issue was fixed or not. Since I primarily use SSH to access the box [and will probably use it to do the rebuild] I don't want to start until I'm fairly sure the problem is gone.) TIA, Phil -- Philip J. Koenig pjklist@ekahuna.com Electric Kahuna Systems -- Computers & Communications for the New Millenium To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 12 23: 9:51 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hecubus.mx (CC2-1326.charter-stl.com [24.217.117.56]) by hub.freebsd.org (Postfix) with ESMTP id CEC3537B491 for ; Mon, 12 Feb 2001 23:09:48 -0800 (PST) Received: (from ajh3@localhost) by hecubus.mx (8.11.2/8.11.1) id f1D79YW10325 for freebsd-stable@freebsd.org; Tue, 13 Feb 2001 01:09:34 -0600 (CST) (envelope-from ajh3) Date: Tue, 13 Feb 2001 01:09:33 -0600 From: Andrew Hesford To: FreeBSD-stable Subject: Dual Head XFree86 Message-ID: <20010213010933.A10313@cec.wustl.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Loop: Andrew Hesford Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello. I recently acquired a second graphics card, and have XFree86 4.0.1 running quite nicely on two physical screens. However, when I'm not running X, the secondary card and monitor just say "ATI RAGE SDRAM BIOS P/N 113-72301-100" and display a blinking cursor. This seems like a horrible waste of screen resources. Is there a way to expand the FreeBSD console to two screens, maybe attaching a second terminal to the second screen? Thanks. -- Andrew Hesford - ajh3@chmod.ath.cx "355/113 -- Not the famous irrational number PI, but an incredible simulation!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 1: 2: 2 2001 Delivered-To: freebsd-stable@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id E6F6F37B4EC for ; Tue, 13 Feb 2001 01:01:58 -0800 (PST) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id KAA94267; Tue, 13 Feb 2001 10:01:57 +0100 (CET) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: stable@freebsd.org Subject: -STABLE installworld broken? From: Dag-Erling Smorgrav Date: 13 Feb 2001 10:01:57 +0100 Message-ID: Lines: 49 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Latest & greatest -STABLE (cvsupped less than twelve hours ago): root@md5 /usr/src# make installworld DESTDIR=/mnt [...] ===> gnu/usr.bin/perl ===> gnu/usr.bin/perl/libperl install -C -c -o root -g wheel -m 444 libperl.a /mnt/usr/lib install -C -c -o root -g wheel -m 444 libperl_p.a /mnt/usr/lib install -C -c -s -o root -g wheel -m 444 libperl.so.3 /mnt/usr/lib ln -sf libperl.so.3 /mnt/usr/lib/libperl.so ===> gnu/usr.bin/perl/miniperl ===> gnu/usr.bin/perl/perl install -C -c -s -o root -g wheel -m 555 perl /mnt/usr/bin /mnt/usr/bin/perl5 -> /mnt/usr/bin/perl /mnt/usr/bin/perl5.00503 -> /mnt/usr/bin/perl ===> gnu/usr.bin/perl/suidperl install -C -c -s -o root -g wheel -m 511 suidperl /mnt/usr/bin /mnt/usr/bin/sperl5 -> /mnt/usr/bin/suidperl /mnt/usr/bin/sperl5.00503 -> /mnt/usr/bin/suidperl ===> gnu/usr.bin/perl/library install: opnames.h: No such file or directory *** Error code 71 Stop in /usr/src/gnu/usr.bin/perl/library. *** Error code 1 Stop in /usr/src/gnu/usr.bin/perl. *** Error code 1 Stop in /usr/src/gnu/usr.bin. *** Error code 1 Stop in /usr/src/gnu. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 2:19:53 2001 Delivered-To: freebsd-stable@freebsd.org Received: from level3.dynacom.net (level3.dynacom.net [206.107.213.213]) by hub.freebsd.org (Postfix) with SMTP id CA0EE37B491 for ; Tue, 13 Feb 2001 02:19:49 -0800 (PST) Received: (qmail 22321 invoked by uid 0); 13 Feb 2001 10:19:48 -0000 Received: from dsl1-160.dynacom.net (HELO urx.com) (206.159.132.160) by mail.urx.com with SMTP; 13 Feb 2001 10:19:48 -0000 Message-ID: <3A890A43.39050EB1@urx.com> Date: Tue, 13 Feb 2001 02:19:47 -0800 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Dag-Erling Smorgrav Cc: stable@freebsd.org Subject: Re: -STABLE installworld broken? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dag-Erling Smorgrav wrote: > > Latest & greatest -STABLE (cvsupped less than twelve hours ago): > > root@md5 /usr/src# make installworld DESTDIR=/mnt > [...] > ===> gnu/usr.bin/perl > ===> gnu/usr.bin/perl/libperl > install -C -c -o root -g wheel -m 444 libperl.a /mnt/usr/lib > install -C -c -o root -g wheel -m 444 libperl_p.a /mnt/usr/lib > install -C -c -s -o root -g wheel -m 444 libperl.so.3 /mnt/usr/lib > ln -sf libperl.so.3 /mnt/usr/lib/libperl.so > ===> gnu/usr.bin/perl/miniperl > ===> gnu/usr.bin/perl/perl > install -C -c -s -o root -g wheel -m 555 perl /mnt/usr/bin > /mnt/usr/bin/perl5 -> /mnt/usr/bin/perl > /mnt/usr/bin/perl5.00503 -> /mnt/usr/bin/perl > ===> gnu/usr.bin/perl/suidperl > install -C -c -s -o root -g wheel -m 511 suidperl /mnt/usr/bin > /mnt/usr/bin/sperl5 -> /mnt/usr/bin/suidperl > /mnt/usr/bin/sperl5.00503 -> /mnt/usr/bin/suidperl > ===> gnu/usr.bin/perl/library > install: opnames.h: No such file or directory Could you have been using two different make files. I can't find an opnames.h on my 4.2-stable system. I cvsuped RELENG_4 at 2122 GMT on 12 Feb and didn't have any trouble updating my world and installing everything. I also didn't mount anything. The only place I can find the header file is on the system with a full cvs-mirror. Kent > *** Error code 71 > > Stop in /usr/src/gnu/usr.bin/perl/library. > *** Error code 1 > > Stop in /usr/src/gnu/usr.bin/perl. > *** Error code 1 > > Stop in /usr/src/gnu/usr.bin. > *** Error code 1 > > Stop in /usr/src/gnu. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > > DES > -- > Dag-Erling Smorgrav - des@ofug.org > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 2:24: 6 2001 Delivered-To: freebsd-stable@freebsd.org Received: from xkis.kis.ru (xkis.kis.ru [195.98.32.200]) by hub.freebsd.org (Postfix) with ESMTP id D36CF37B491 for ; Tue, 13 Feb 2001 02:24:02 -0800 (PST) Received: from localhost (dv@localhost) by xkis.kis.ru (8.9.3/8.9.3) with SMTP id NAA10013; Tue, 13 Feb 2001 13:23:38 +0300 (MSK) Date: Tue, 13 Feb 2001 13:23:35 +0300 (MSK) From: Dmitry Valdov X-Sender: dv@xkis.kis.ru To: Matt Dillon Cc: Cyrille Lefevre , freebsd-stable@FreeBSD.ORG Subject: Re: why there is no news.freebsd.org ? In-Reply-To: <200102130241.f1D2fMp68169@earth.backplane.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! No, no! Why not to have freebsd's news server which isn't connected to usenet? Just to be able to use NNTP protocol for reading maillists. Dmitry. On Mon, 12 Feb 2001, Matt Dillon wrote: > Date: Mon, 12 Feb 2001 18:41:22 -0800 (PST) > From: Matt Dillon > To: Cyrille Lefevre > Cc: freebsd-stable@FreeBSD.ORG > Subject: Re: why there is no news.freebsd.org ? > > > :why there is no news server piped to the mailing lists at FreeBSD ? > : > :this may have some advantage over mailing lists, no ? > : > :- less datas transfered > :- open access to everyone > :- no need to subscribe > :- etc. > : > :Cyrille. > :-- > :home: mailto:clefevre@poboxes.com UNIX is user-friendly; it's just particular > :work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. > > Too much garbage. USENET has been dying for the last decade. I'm a big > fan of the USENET, but even I don't use it much any more. > > -Matt > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 2:46:12 2001 Delivered-To: freebsd-stable@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id B45A637B491 for ; Tue, 13 Feb 2001 02:45:56 -0800 (PST) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id OAA42622 for ; Tue, 13 Feb 2001 14:24:14 +0300 (MSK) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.1) id f1DAjFQ10159 for freebsd-stable@FreeBSD.ORG; Tue, 13 Feb 2001 13:45:15 +0300 Date: Tue, 13 Feb 2001 13:45:15 +0300 From: Igor Robul To: freebsd-stable@FreeBSD.ORG Subject: Re: why there is no news.freebsd.org ? Message-ID: <20010213134515.A10122@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-stable@FreeBSD.ORG References: <200102130241.f1D2fMp68169@earth.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit X-Mailer: Mutt 1.0pre4i In-Reply-To: ; from dv@dv.ru on Tue, Feb 13, 2001 at 01:23:35PM +0300 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Feb 13, 2001 at 01:23:35PM +0300, Dmitry Valdov wrote: > Hi! > > No, no! Why not to have freebsd's news server which isn't connected to usenet? > Just to be able to use NNTP protocol for reading maillists. Same reason. If it will be _public_ it'll have all USENET problems. If it'll require auth, then what is advatage opposed to mailing list? ëÁË ÔÁÍ × îÉÖÎÅÍ ÐÏÇÏÄÁ? -- Igor Robul, Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 2:48:10 2001 Delivered-To: freebsd-stable@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id ADF2B37B491 for ; Tue, 13 Feb 2001 02:48:04 -0800 (PST) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97] ident=root) by serenity.mcc.ac.uk with esmtp (Exim 2.05 #4) id 14Sd07-0004l5-00 for stable@freebsd.org; Tue, 13 Feb 2001 10:48:03 +0000 Received: (from rasputin@localhost) by dogma.freebsd-uk.eu.org (8.11.1/8.11.1) id f1DAm3K16798 for stable@freebsd.org; Tue, 13 Feb 2001 10:48:03 GMT (envelope-from rasputin) Date: Tue, 13 Feb 2001 10:48:03 +0000 From: Rasputin To: stable@freebsd.org Subject: Re: why there is no news.freebsd.org ? Message-ID: <20010213104802.A16768@dogma.freebsd-uk.eu.org> References: <200102130241.f1D2fMp68169@earth.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from dv@dv.ru on Tue, Feb 13, 2001 at 01:23:35PM +0300 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Dmitry Valdov [010213 10:25]: > Hi! > > No, no! Why not to have freebsd's news server which isn't connected to usenet? > Just to be able to use NNTP protocol for reading maillists. Oh, you mean a read-only kind of setup for archiving the lists? Hell yes, that's a top idea. You get my vote. -- Rasputin Jack of All Trades :: Master of Nuns To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 2:54:14 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-67.dsl.lsan03.pacbell.net [63.207.60.67]) by hub.freebsd.org (Postfix) with ESMTP id A3DD237B491 for ; Tue, 13 Feb 2001 02:54:11 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 11BE866B32; Tue, 13 Feb 2001 02:54:10 -0800 (PST) Date: Tue, 13 Feb 2001 02:54:10 -0800 From: Kris Kennaway To: Rasputin Cc: stable@freebsd.org Subject: Re: why there is no news.freebsd.org ? Message-ID: <20010213025410.A49474@mollari.cthul.hu> References: <200102130241.f1D2fMp68169@earth.backplane.com> <20010213104802.A16768@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010213104802.A16768@dogma.freebsd-uk.eu.org>; from rasputin@FreeBSD-uk.eu.org on Tue, Feb 13, 2001 at 10:48:03AM +0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 13, 2001 at 10:48:03AM +0000, Rasputin wrote: > * Dmitry Valdov [010213 10:25]: > > Hi! > >=20 > > No, no! Why not to have freebsd's news server which isn't connected to = usenet?=20 > > Just to be able to use NNTP protocol for reading maillists. >=20 > Oh, you mean a read-only kind of setup for archiving the lists? >=20 > Hell yes, that's a top idea. You get my vote. One of you folks who would use such a service needs to go and set it up..if there's a working service there which just needs a name delegation, it is much more likely for core to approve it. Kris --2oS5YaxWCcQjTEyO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6iRJSWry0BWjoQKURAkOqAKCjxyVfQGf258XjKN028KTqmtIP4gCglfHa Y2Q6NI1Abtgf3GAyMci4NeI= =Yhno -----END PGP SIGNATURE----- --2oS5YaxWCcQjTEyO-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 2:58:24 2001 Delivered-To: freebsd-stable@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 28D1437B491 for ; Tue, 13 Feb 2001 02:58:20 -0800 (PST) Received: from [195.11.243.26] (helo=Debug) by post.mail.nl.demon.net with smtp (Exim 3.14 #2) id 14SdA2-0006Te-00; Tue, 13 Feb 2001 10:58:18 +0000 To: Rasputin , stable@freebsd.org From: wkb@freebie.demon.nl Subject: Re: why there is no news.freebsd.org ? Date: Tue, 13 Feb 2001 10:58:18 GMT X-Mailer: www.webmail.nl.demon.net X-Sender: postmaster@wkb@freebie.demon.nl X-Originating-IP: 207.122.110.165 Message-Id: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can we please take this discussion to -chat instead of clogging -stable with it? W/ > * Dmitry Valdov [010213 10:25]: > > Hi! > > > > No, no! Why not to have freebsd's news server which isn't connected to usenet? > > Just to be able to use NNTP protocol for reading maillists. > > Oh, you mean a read-only kind of setup for archiving the lists? > > Hell yes, that's a top idea. You get my vote. > -- > Rasputin > Jack of All Trades :: Master of Nuns > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 3:11:13 2001 Delivered-To: freebsd-stable@freebsd.org Received: from weirdo.netcraft.com (weirdo.netcraft.com [195.92.95.47]) by hub.freebsd.org (Postfix) with ESMTP id A1BAB37B491 for ; Tue, 13 Feb 2001 03:11:10 -0800 (PST) Received: (from sketchy@localhost) by weirdo.netcraft.com (8.11.2/8.11.2) id f1DBAxN26557; Tue, 13 Feb 2001 11:10:59 GMT (envelope-from sketchy) Date: Tue, 13 Feb 2001 11:10:59 +0000 From: Jonathan Perkin To: David Malone Cc: freebsd-stable@freebsd.org Subject: Re: Constantly crashing SMP box Message-ID: <20010213111059.H358@netcraft.com> References: <20010212135705.F358@netcraft.com> <20010212140801.A46354@walton.maths.tcd.ie> <20010212141255.G358@netcraft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010212141255.G358@netcraft.com>; from sketchy@netcraft.com on Mon, Feb 12, 2001 at 02:12:55pm +0000 X-Operating-System: FreeBSD/i386 4.2-STABLE Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Feb 12, 2001 at 02:12:55pm +0000, Jonathan Perkin wrote: > On Mon, Feb 12, 2001 at 02:08:01pm +0000, David Malone wrote: > > > On Mon, Feb 12, 2001 at 01:57:05PM +0000, Jonathan Perkin wrote: > > > > > The ram is brand new, but the CPU's have been taken from > > > previously-working boxes. > > > > Were the previous boxes SMP? We had a problem with a machine > > running fine un UP mode but died within minutes in SMP mode. > > The problem turned out to be heat related and getting better > > fans fixed the problem. > > No they weren't, thanks for the tip. I'll give that a try and see > what happens - odd that it only affects the 2nd cpu though. Ok, it's now 20 minutes into a make -j16 buildworld after adding fans :) Considering it would die just by giving it a strange look earlier, I'd say this was an improvement. Thanks again for the suggestion. -- Jonathan Perkin +44 (0)1225 867914 Netcraft Ltd, Bradford on Avon, UK - http://www.netcraft.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 4:28:28 2001 Delivered-To: freebsd-stable@freebsd.org Received: from weirdo.netcraft.com (weirdo.netcraft.com [195.92.95.47]) by hub.freebsd.org (Postfix) with ESMTP id B252137B491 for ; Tue, 13 Feb 2001 04:28:24 -0800 (PST) Received: (from sketchy@localhost) by weirdo.netcraft.com (8.11.2/8.11.2) id f1DCSMd26762 for freebsd-stable@freebsd.org; Tue, 13 Feb 2001 12:28:22 GMT (envelope-from sketchy) Date: Tue, 13 Feb 2001 12:28:22 +0000 From: Jonathan Perkin To: freebsd-stable@freebsd.org Subject: Re: Yahoo! Auto Response Message-ID: <20010213122822.A26744@netcraft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD/i386 4.2-STABLE Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Someone might want to blacklist this person until he fixes his account, else everyone who posts to -stable will receive this back. From: hangkinsin@yahoo.com Message-ID: <20010213112642.39589.qmail@mta424.mail.yahoo.com> Date: Tue, 13 Feb 2001 03:26:42 -0800 (PST) Subject: Yahoo! Auto Response To: Jonathan Perkin MIME-Version: 1.0 Content-Type: text This mailbox is for sending only. Do not send me any messages to this address. Please use my other accounts instead. -------------------- Original Message: >From owner-freebsd-stable@freebsd.org Tue Feb 13 11:26:36 2001 Return-Path: Received: from mail-relay1.yahoo.com (206.132.105.34) by mta424.mail.yahoo.com with SMTP; 13 Feb 2001 03:11:44 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by mail-relay1.yahoo.com (Postfix) with ESMTP id A5FF88B605; Tue, 13 Feb 2001 03:11:44 -0800 (PST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25E0B6E2C1F; Tue, 13 Feb 2001 03:11:16 -0800 (PST) Received: by hub.freebsd.org (Postfix, from userid 538) id D6CAE37B4EC; Tue, 13 Feb 2001 03:11:13 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with SMTP id 984532E81BA; Tue, 13 Feb 2001 03:11:13 -0800 (PST) Received: by hub.freebsd.org (bulk_mailer v1.12); Tue, 13 Feb 2001 03:11:13 +-0800 Delivered-To: freebsd-stable@freebsd.org Received: from weirdo.netcraft.com (weirdo.netcraft.com _________________________________________________________ DO YOU YAHOO!? Get your free @yahoo.com address at http://mail.yahoo.com -- Jonathan Perkin +44 (0)1225 867914 Netcraft Ltd, Bradford on Avon, UK - http://www.netcraft.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 4:45:36 2001 Delivered-To: freebsd-stable@freebsd.org Received: from balzac.cybercable.fr (balzac.cybercable.fr [212.198.0.198]) by hub.freebsd.org (Postfix) with SMTP id 9BE2437B491 for ; Tue, 13 Feb 2001 04:45:33 -0800 (PST) Received: (qmail 16096766 invoked from network); 13 Feb 2001 12:45:31 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by balzac.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 13 Feb 2001 12:45:31 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f1DCjUQ74969; Tue, 13 Feb 2001 13:45:30 +0100 (CET) (envelope-from root) From: Cyrille Lefevre Message-Id: <200102131245.f1DCjUQ74969@gits.dyndns.org> Subject: Re: why there is no news.freebsd.org ? In-Reply-To: "from Dmitry Valdov at Feb 13, 2001 01:23:35 pm" To: Dmitry Valdov Date: Tue, 13 Feb 2001 13:45:29 +0100 (CET) Cc: Matt Dillon , freebsd-stable@FreeBSD.ORG Reply-To: clefevre@poboxes.com Organization: ACME X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C X-Mailer: ELM [version 2.4ME+ PL88 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dmitry Valdov wrote: > > No, no! Why not to have freebsd's news server which isn't connected to usenet? s/isn't/is/ > Just to be able to use NNTP protocol for reading maillists. exactly what I wanted to say :) thanks. Cyrille. -- home: mailto:clefevre@poboxes.com UNIX is user-friendly; it's just particular work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 5:24:29 2001 Delivered-To: freebsd-stable@freebsd.org Received: from gw.nectar.com (gw.nectar.com [208.42.49.153]) by hub.freebsd.org (Postfix) with ESMTP id 8C59F37B491 for ; Tue, 13 Feb 2001 05:24:27 -0800 (PST) Received: by gw.nectar.com (Postfix, from userid 1001) id 0014918D41; Tue, 13 Feb 2001 07:24:26 -0600 (CST) Date: Tue, 13 Feb 2001 07:24:26 -0600 From: "Jacques A. Vidrine" To: Dag-Erling Smorgrav Cc: stable@freebsd.org Subject: Re: -STABLE installworld broken? Message-ID: <20010213072426.A42268@spawn.nectar.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Feb 13, 2001 at 10:01:57AM +0100 X-Url: http://www.nectar.com/ Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Feb 13, 2001 at 10:01:57AM +0100, Dag-Erling Smorgrav wrote: > Latest & greatest -STABLE (cvsupped less than twelve hours ago): > > root@md5 /usr/src# make installworld DESTDIR=/mnt [snip] > ===> gnu/usr.bin/perl/library > install: opnames.h: No such file or directory > *** Error code 71 Make sure you have removed /usr/bin/miniperl. Then re-do the buildworld, at least for the gnu/usr.bin/perl directory. Cheers, -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 5:29:11 2001 Delivered-To: freebsd-stable@freebsd.org Received: from fnord.ir.bbn.com (FNORD.IR.BBN.COM [192.1.100.210]) by hub.freebsd.org (Postfix) with SMTP id 6F38A37B65D for ; Tue, 13 Feb 2001 05:29:07 -0800 (PST) Received: (qmail 71772 invoked by uid 10853); 13 Feb 2001 13:29:06 -0000 To: Warner Losh Cc: Matt Dillon , John Reynolds , freebsd-stable@FreeBSD.ORG Subject: Re: sshd in 4.2-STABLE References: <200102120843.f1C8hhM03375@earth.backplane.com> <1843641235.20010212104321@road.omskelecom.ru> <14983.29328.298241.606895@whale.home-net> <200102122124.f1CLONW31606@harmony.village.org> From: Greg Troxel Date: 13 Feb 2001 08:29:06 -0500 In-Reply-To: Warner Losh's message of "Mon, 12 Feb 2001 14:24:23 -0700" Message-ID: Lines: 35 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh writes: > In message <200102120843.f1C8hhM03375@earth.backplane.com> Matt Dillon writes: > : ... or maybe installworld should just check to see if /etc/pam.conf is > : the unmodified older version and overwrite it with /usr/src/etc/pam.conf > : by default, rather then create little gotchas for people trying to > : upgrade. Hmmmmmm. > This would violate POLA worse than having it break, I think. The Debian package system does something like this, and I found it very helpful for the brief time I ran a GNU/Linux system. IIRC, packages distinguished between regular files (that weren't expected to change) and configuration files. When upgrading to a new version of a package, the rule was that if a config file was unchanged (same md5) from the installed package, it was replaced by the new version. If changed, the user was asked to merge/cope. Also, config files were left on pkg_delete (well, dpkg --remove), unless one asked to have them removed. I realize we are talking about the base system, but the concept is the same. This could perhaps be done by having a db of md5 sums of files under /etc that were 'installed' from the source tree (installworld, from-scratch install, mergemaster, automatic upgrade), and have upgrade procedures replace files that match (and that therefore have not been modified). While realizing that the instructions which tell you to merge /etc are clear: To me, POLA says that if I install 3.3, don't muck with stuff, and upgrade to 4.2, then I should have 4.2 without having to think about stuff I never mucked with (it's fair enough to have to understand stuff I changed). Greg Troxel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 8: 9:41 2001 Delivered-To: freebsd-stable@freebsd.org Received: from yez.hyperreal.org (penelope.ny.collab.net [64.61.9.189]) by hub.freebsd.org (Postfix) with SMTP id 63B9F37B491 for ; Tue, 13 Feb 2001 08:09:39 -0800 (PST) Received: (qmail 3236 invoked by uid 1000); 13 Feb 2001 16:10:19 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 13 Feb 2001 16:10:19 -0000 Date: Tue, 13 Feb 2001 08:10:19 -0800 (PST) From: Brian Behlendorf X-X-Sender: To: Greg Troxel Cc: Subject: Re: sshd in 4.2-STABLE In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 13 Feb 2001, Greg Troxel wrote: > The Debian package system does something like this, and I found it > very helpful for the brief time I ran a GNU/Linux system. IIRC, > packages distinguished between regular files (that weren't expected to > change) and configuration files. When upgrading to a new version of a > package, the rule was that if a config file was unchanged (same md5) > from the installed package, it was replaced by the new version. If > changed, the user was asked to merge/cope. Also, config files were > left on pkg_delete (well, dpkg --remove), unless one asked to have > them removed. I have to agree - many of the changes mergemaster makes are to files that no one would recommend editing directly in regular use, like MAKEDEV and /etc/rc.network and all the stuff in /etc/defaults. Modifying mergemaster to only ask to merge files that have been changed sounds like a good idea to me... Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 8:27:24 2001 Delivered-To: freebsd-stable@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 527FC37B491 for ; Tue, 13 Feb 2001 08:27:22 -0800 (PST) Received: (from dillon@localhost) by earth.backplane.com (8.11.2/8.9.3) id f1DGR0N72293; Tue, 13 Feb 2001 08:27:00 -0800 (PST) (envelope-from dillon) Date: Tue, 13 Feb 2001 08:27:00 -0800 (PST) From: Matt Dillon Message-Id: <200102131627.f1DGR0N72293@earth.backplane.com> To: Cyrille Lefevre Cc: Dmitry Valdov , freebsd-stable@FreeBSD.ORG Subject: Re: why there is no news.freebsd.org ? References: <200102131245.f1DCjUQ74969@gits.dyndns.org> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG : :Dmitry Valdov wrote: :> :> No, no! Why not to have freebsd's news server which isn't connected to usenet? :s/isn't/is/ :> Just to be able to use NNTP protocol for reading maillists. : :exactly what I wanted to say :) thanks. : :Cyrille. :-- Ah. I think that's an excellent idea. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 9:25:37 2001 Delivered-To: freebsd-stable@freebsd.org Received: from pop3.ids.net (pop3.ids.net [155.212.1.107]) by hub.freebsd.org (Postfix) with ESMTP id A1F9337B491 for ; Tue, 13 Feb 2001 09:25:31 -0800 (PST) Received: from ids.net (dialup71g.egr-ri.ids.net [155.212.223.71]) by pop3.ids.net (8.10.1/8.10.1) with ESMTP id f1DHPTO20090 for ; Tue, 13 Feb 2001 12:25:29 -0500 (EST) Message-ID: <3A896BD9.F1F82963@ids.net> Date: Tue, 13 Feb 2001 12:16:09 -0500 From: "Christopher M. Giordano" Reply-To: CGiordano@ids.net X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-stable@FreeBSD.ORG Subject: gnufpu module broken? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Using sources cvsup'ed 11:00 PM EST 12-Feb-2001: $ sudo kldload gnufpu.ko link_elf: symbol reg_mul undefined kldload: can't load gnufpu.ko: Exec format error Chris Giordano CGiordano@ids.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 10: 4:21 2001 Delivered-To: freebsd-stable@freebsd.org Received: from got.wedgie.org (got.wedgie.org [216.181.169.146]) by hub.freebsd.org (Postfix) with ESMTP id 6F48537B491 for ; Tue, 13 Feb 2001 10:04:18 -0800 (PST) Received: by got.wedgie.org (Postfix, from userid 1000) id 25183D99F; Tue, 13 Feb 2001 13:04:14 -0500 (EST) Date: Tue, 13 Feb 2001 13:04:14 -0500 From: Jason Garman To: "Philip J. Koenig" Cc: stable@FreeBSD.ORG Subject: Re: OpenSSH 2.3.0 fixes Message-ID: <20010213130413.A20888@got.wedgie.org> Reply-To: jgarman@wedgie.org References: <3A88587F.20001.382E4B1@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <3A88587F.20001.382E4B1@localhost>; from Philip J. Koenig on Mon, Feb 12, 2001 at 09:41:19PM -0800 X-Phase-Of-Moon: The Moon is Waning Gibbous (66% of Full) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Feb 12, 2001 at 09:41:19PM -0800, Philip J. Koenig wrote: > A couple days ago the list was discussing a problem with OpenSSH > 2.3.0, and these "broken pipe" errors. Did the fix for that ever > make it into STABLE? > Unfortunately I don't see it committed yet. Its already in the PR database and assigned to green. Some people argue the real problem is in user applications, but this breaks enough stuff that I think it needs to be fixed in sshd. Latest problem I've seen is remote backups with amanda. enjoy -- Jason Garman http://web.wedgie.org/ Student, University of Maryland jgarman@wedgie.org From fortune(1): Whois: JAG145 "... Had this been an actual emergency, we would have fled in terror, and you would not have been informed." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 10:21:44 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ece.cmu.edu (ECE.CMU.EDU [128.2.236.200]) by hub.freebsd.org (Postfix) with ESMTP id 8258637B503 for ; Tue, 13 Feb 2001 10:21:41 -0800 (PST) Received: from pyanfar.ece.cmu.edu (wz6pfj@DYN-66-180.WV.CC.CMU.EDU [128.2.66.180]) by ece.cmu.edu (8.11.0/8.10.2) with ESMTP id f1DIKaZ03813; Tue, 13 Feb 2001 13:20:36 -0500 (EST) Date: Tue, 13 Feb 2001 13:20:35 -0500 From: "Brandon S. Allbery KF8NH" To: jgarman@wedgie.org, "Philip J. Koenig" Cc: stable@FreeBSD.ORG Subject: Re: OpenSSH 2.3.0 fixes Message-ID: <56140000.982088435@pyanfar.ece.cmu.edu> In-Reply-To: <20010213130413.A20888@got.wedgie.org> X-Mailer: Mulberry/2.0.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tuesday, February 13, 2001 13:04:14 -0500, Jason Garman wrote: +----- | On Mon, Feb 12, 2001 at 09:41:19PM -0800, Philip J. Koenig wrote: | > A couple days ago the list was discussing a problem with OpenSSH | > 2.3.0, and these "broken pipe" errors. Did the fix for that ever | > make it into STABLE? | > | Unfortunately I don't see it committed yet. Its already in the PR | database and assigned to green. Some people argue the real problem is in | user applications, but this breaks enough stuff that I think it needs to | be fixed in sshd. Latest problem I've seen is remote backups with amanda. +--->8 It is entirely reasonable for applications to assume that they have not inherited SIG_IGN for random signals, with the exceptions of SIGHUP and SIGINT (and maybe SIGQUIT) for which that is expected for a nohup'd job. -- brandon s. allbery [os/2][linux][solaris][japh] allbery@kf8nh.apk.net system administrator [WAY too many hats] allbery@ece.cmu.edu electrical and computer engineering KF8NH carnegie mellon university ["better check the oblivious first" -ke6sls] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 10:45:44 2001 Delivered-To: freebsd-stable@freebsd.org Received: from forrie.net (forrie.net [216.67.14.69]) by hub.freebsd.org (Postfix) with ESMTP id EA85F37B503 for ; Tue, 13 Feb 2001 10:45:32 -0800 (PST) Received: from boomer.forrie.com (dhcp-north-71-168.navipath.net [64.20.71.168]) by forrie.net with id f1DIjVV45419 for ; Tue, 13 Feb 2001 13:45:31 -0500 (EST) Message-Id: <5.0.2.1.2.20010213134353.00a72400@216.67.14.69> X-Sender: forrie@216.67.14.69 X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Tue, 13 Feb 2001 13:44:25 -0500 To: freebsd-stable@freebsd.org From: Forrest Aldrich Subject: Core dump with "pw" command Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Made a typo today, but found that this command will dump core: su-2.04# pw lock help Segmentation fault (core dumped) su-2.04# Is this normal behavior for this command. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 10:47:32 2001 Delivered-To: freebsd-stable@freebsd.org Received: from dataloss.net (massive.dataloss.net [212.189.232.193]) by hub.freebsd.org (Postfix) with SMTP id 1FC8437B491 for ; Tue, 13 Feb 2001 10:47:30 -0800 (PST) Received: (qmail 58150 invoked by uid 1000); 13 Feb 2001 18:43:11 -0000 Date: Tue, 13 Feb 2001 19:43:11 +0100 From: Peter van Dijk To: freebsd-stable@freebsd.org Subject: Re: Core dump with "pw" command Message-ID: <20010213194310.L53272@dataloss.net> Mail-Followup-To: freebsd-stable@freebsd.org References: <5.0.2.1.2.20010213134353.00a72400@216.67.14.69> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5.0.2.1.2.20010213134353.00a72400@216.67.14.69>; from forrie@forrie.com on Tue, Feb 13, 2001 at 01:44:25PM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Feb 13, 2001 at 01:44:25PM -0500, Forrest Aldrich wrote: > Made a typo today, but found that this command will dump core: > > su-2.04# pw lock help > Segmentation fault (core dumped) > su-2.04# Same here (world couple weeks old). Looks like a little bug. Greetz, Peter -- dataloss networks '/ignore-ance is bliss' - me 'Het leven is een stuiterbal, maar de mijne plakt aan t plafond!' - me To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 11:17:46 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91C9E37B69E for ; Tue, 13 Feb 2001 11:17:42 -0800 (PST) Received: from mile.nevermind.kiev.ua (ppp-244.nav.kiev.ua [213.169.65.244]) by mx1.FreeBSD.org (Postfix) with ESMTP id A97946E287B for ; Tue, 13 Feb 2001 11:14:26 -0800 (PST) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.11.1/8.11.1) id f1DIOfR16474; Tue, 13 Feb 2001 20:24:42 +0200 (EET) (envelope-from never) Date: Tue, 13 Feb 2001 20:23:20 +0200 From: Nevermind To: Kris Kennaway Cc: Rasputin , stable@FreeBSD.ORG, seva@sevasoft.kiev.ua Subject: Re: why there is no news.freebsd.org ? Message-ID: <20010213202320.A14781@nevermind.kiev.ua> References: <200102130241.f1D2fMp68169@earth.backplane.com> <20010213104802.A16768@dogma.freebsd-uk.eu.org> <20010213025410.A49474@mollari.cthul.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.2.5i In-Reply-To: <20010213025410.A49474@mollari.cthul.hu>; from kris@obsecurity.org on Tue, Feb 13, 2001 at 02:54:10AM -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Kris Kennaway! On Tue, Feb 13, 2001 at 02:54:10AM -0800, you wrote: > On Tue, Feb 13, 2001 at 10:48:03AM +0000, Rasputin wrote: > > * Dmitry Valdov [010213 10:25]: > > > Hi! > > >=20 > > > No, no! Why not to have freebsd's news server which isn't connected t= o usenet?=20 > > > Just to be able to use NNTP protocol for reading maillists. > >=20 > > Oh, you mean a read-only kind of setup for archiving the lists? > >=20 > > Hell yes, that's a top idea. You get my vote. >=20 > One of you folks who would use such a service needs to go and set it > up..if there's a working service there which just needs a name > delegation, it is much more likely for core to approve it. A friend of my had setuped news server which handles all of the freebsd maillists (including cvs-all one which is sorted for commits to ports/* sections, release versions and so on) but he has no suitable place to put i= t on for public use -- lack of bandwith. I Cc:'ed him, if bandwidth is still problem , I suppose to set up it on some other volounteer's machine... 2 Seva: what do you think about that? --=20 NEVE-RIPE The instructions said to install Windows 98 or better, so I installed FreeBSD. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 11:27:16 2001 Delivered-To: freebsd-stable@freebsd.org Received: from netcore.fi (netcore.fi [193.94.160.1]) by hub.freebsd.org (Postfix) with ESMTP id CD26537B491 for ; Tue, 13 Feb 2001 11:27:13 -0800 (PST) Received: from localhost (pekkas@localhost) by netcore.fi (8.11.1/8.11.1) with ESMTP id f1DJR0h05982; Tue, 13 Feb 2001 21:27:04 +0200 Date: Tue, 13 Feb 2001 21:26:59 +0200 (EET) From: Pekka Savola To: Warner Losh Cc: Subject: Re: 3.5-S->4.2-S: still fail w/ setresuid on miniperl In-Reply-To: <200102120155.f1C1tYE05473@billy-club.village.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 11 Feb 2001, Warner Losh wrote: > In message Pekka Savola writes: > : As a lot of others including some @FreeBSD.org people, I got: > > I'd suggest building -DNOPERL when upgrading. If that works (I have > no 3.x boxes fast enough to test this on), then let me know so I can > update UPDATING. > > : make buildworld -DNOPERL works around this, of course. > > Oh, that's different, I'll update UPDATING. Actually, that's not the only problem with 3.5 -> RELENG_4 update. Further into the buildworld, there's an error in 'vim': groff doesn't support -U AFAIR. Sigh. Better to tell people to update to 4.1-RELEASE first. That at least works, just finished that one. -- Pekka Savola "Tell me of difficulties surmounted, Netcore Oy not those you stumble over and fall" Systems. Networks. Security. -- Robert Jordan: A Crown of Swords To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 11:27:31 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-67.dsl.lsan03.pacbell.net [63.207.60.67]) by hub.freebsd.org (Postfix) with ESMTP id 366CE37B491 for ; Tue, 13 Feb 2001 11:27:28 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D7B5C66B26; Tue, 13 Feb 2001 11:27:27 -0800 (PST) Date: Tue, 13 Feb 2001 11:27:27 -0800 From: Kris Kennaway To: Brian Behlendorf Cc: Greg Troxel , freebsd-stable@FreeBSD.ORG Subject: Re: sshd in 4.2-STABLE Message-ID: <20010213112727.C56175@mollari.cthul.hu> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="p2kqVDKq5asng8Dg" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from brian@collab.net on Tue, Feb 13, 2001 at 08:10:19AM -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --p2kqVDKq5asng8Dg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 13, 2001 at 08:10:19AM -0800, Brian Behlendorf wrote: > On 13 Feb 2001, Greg Troxel wrote: > > The Debian package system does something like this, and I found it > > very helpful for the brief time I ran a GNU/Linux system. IIRC, > > packages distinguished between regular files (that weren't expected to > > change) and configuration files. When upgrading to a new version of a > > package, the rule was that if a config file was unchanged (same md5) > > from the installed package, it was replaced by the new version. If > > changed, the user was asked to merge/cope. Also, config files were > > left on pkg_delete (well, dpkg --remove), unless one asked to have > > them removed. >=20 > I have to agree - many of the changes mergemaster makes are to files that > no one would recommend editing directly in regular use, like MAKEDEV and > /etc/rc.network and all the stuff in /etc/defaults. Modifying mergemaster > to only ask to merge files that have been changed sounds like a good idea > to me... Have you read the mergemaster docs? It can already do this. Kris --p2kqVDKq5asng8Dg Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6iYqfWry0BWjoQKURAnEPAJ0SoB/FZyuozxIq4qP8vuYZShxvzACgwTKS sOdlQJnfkX4tgGYNSn0LoKo= =4gnB -----END PGP SIGNATURE----- --p2kqVDKq5asng8Dg-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 12:24:58 2001 Delivered-To: freebsd-stable@freebsd.org Received: from fnord.ir.bbn.com (FNORD.IR.BBN.COM [192.1.100.210]) by hub.freebsd.org (Postfix) with SMTP id 4E8DF37B4EC for ; Tue, 13 Feb 2001 12:24:55 -0800 (PST) Received: (qmail 92576 invoked from network); 13 Feb 2001 20:24:54 -0000 Received: from localhost.bbn.com (HELO fnord.ir.bbn.com) (127.0.0.1) by localhost.bbn.com with SMTP; 13 Feb 2001 20:24:54 -0000 From: Greg Troxel To: Kris Kennaway Cc: Brian Behlendorf , freebsd-stable@FreeBSD.ORG Subject: automatic /etc handling (was Re: sshd in 4.2-STABLE) In-Reply-To: Message from Kris Kennaway of "Tue, 13 Feb 2001 11:27:27 PST." <20010213112727.C56175@mollari.cthul.hu> Date: Tue, 13 Feb 2001 15:24:54 -0500 Message-Id: <20010213202455.4E8DF37B4EC@hub.freebsd.org> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I had read the mergemaster man page previously, and used it. I just read it again, and then looked at the -current source (I'm running 4.2 release with some stuff updated to RELENG_4). I can't see that it does what I want - or could, given that it would need information that I don't think is maintained anywhere. Specifically, I'd like to see a scheme such that: all mechanisms that put files in /etc (when those files are automatically drived from src/etc somehow), should record (e.g. md5 checksum in /var/db/etc.md5) the version of each file as automatically installed. These mechanisms include normal installs normal upgrades running mergemaster running make install from src/etc all these mechanisms also, when putting files in /etc, put the new file in place if the old file doesn't exist or is recorded as being unchanged (e.g. md5 matches database). Additionally, the database is updated with the md5 of the file that should be installed, so that copying those bits in resets the state to 'not locally modified'. I don't understand how to do this with mergemaster. In particular, I don't understand how mergemaster could possibly know whether an existing file is untouched from an older release or locally modified. I also don't understand how to use mergemaster to accomplish /etc updates without having a source tree when upgrading to a new binary release (off CD or the net). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 12:36:25 2001 Delivered-To: freebsd-stable@freebsd.org Received: from sevasoft.kiev.ua (sevasoft.kiev.ua [212.109.53.38]) by hub.freebsd.org (Postfix) with ESMTP id D518C37B491 for ; Tue, 13 Feb 2001 12:36:15 -0800 (PST) Received: from localhost (seva@localhost) by sevasoft.kiev.ua (8.11.1/8.11.1) with ESMTP id f1DKa4C43561; Tue, 13 Feb 2001 22:36:05 +0200 (EET) (envelope-from seva@sevasoft.kiev.ua) Date: Tue, 13 Feb 2001 22:36:04 +0200 (EET) From: To: Nevermind Cc: stable@freebsd.org Subject: Re: why there is no news.freebsd.org ? In-Reply-To: <20010213202320.A14781@nevermind.kiev.ua> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 13 Feb 2001, Nevermind wrote: > Hello, Kris Kennaway! > > On Tue, Feb 13, 2001 at 02:54:10AM -0800, you wrote: > > > On Tue, Feb 13, 2001 at 10:48:03AM +0000, Rasputin wrote: > > > * Dmitry Valdov [010213 10:25]: > > > > Hi! > > > > > > > > No, no! Why not to have freebsd's news server which isn't connected to usenet? > > > > Just to be able to use NNTP protocol for reading maillists. > > > > > > Oh, you mean a read-only kind of setup for archiving the lists? > > > > > > Hell yes, that's a top idea. You get my vote. > > > > One of you folks who would use such a service needs to go and set it > > up..if there's a working service there which just needs a name > > delegation, it is much more likely for core to approve it. > A friend of my had setuped news server which handles all of the freebsd > maillists (including cvs-all one which is sorted for commits to ports/* > sections, release versions and so on) but he has no suitable place to put it on > for public use -- lack of bandwith. I Cc:'ed him, if bandwidth is > still problem , I suppose to set up it on some other volounteer's machine... > > 2 Seva: what do you think about that? Never, thanks for advertising :)) Yes, I have such a setup, it's realy single .pl script, which posts mesages to local news server. It handle not only freebsd maillist but some other lists, for which i need more processing - striping static parts of message/etc. I put this script to http://sevasoft.kiev.ua/ml-filter/post-send.pl Not a HighTech but it works for some 2 year :)) And I dont like perl too much :)) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 12:38: 2 2001 Delivered-To: freebsd-stable@freebsd.org Received: from bitbucket.extern.uniface.nl (bitbucket.extern.uniface.nl [193.78.88.139]) by hub.freebsd.org (Postfix) with ESMTP id B263237B491 for ; Tue, 13 Feb 2001 12:37:57 -0800 (PST) Received: from bh2.nl.compuware.com (unknown [172.16.17.82]) by bitbucket.extern.uniface.nl (Postfix) with ESMTP id A287B8282 for ; Tue, 13 Feb 2001 21:37:55 +0100 (CET) Received: from trashcan.nl.compuware.com ([172.16.16.52]) by bh2.nl.compuware.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id 1LAJHLTV; Tue, 13 Feb 2001 21:37:55 +0100 Received: from c1111.nl.compuware.com (c1111.nl.compuware.com [172.16.16.36]) by trashcan.nl.compuware.com (Postfix) with ESMTP id 50F73145A4; Tue, 13 Feb 2001 21:37:55 +0100 (CET) Date: Tue, 13 Feb 2001 21:37:55 +0100 (CET) From: Bert Driehuis X-Sender: bertd@c1111.nl.compuware.com To: stable@freebsd.org Subject: Re: getenv() problems on 4.2-STABLE In-Reply-To: <20010212102729.A6521@dogma.freebsd-uk.eu.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 12 Feb 2001, Rasputin wrote: > * Erich Zigler [010212 05:45]: > > I've currently been working on the Gabber port. I'm running in to a constant > > problem though. Whenever gettext or GNOME makes a getenv() call it > > segfaults. This is Gabber 0.8.1. Here is an example of one of the backtraces... > > #0 0x28c0e7a3 in getenv () from /usr/lib/libc_r.so.4 > > #1 0x2881aa5d in guess_category_value () from /usr/local/lib/libintl.so.1 > I assume Gabber uses X libraries, etc. to reach getenv? > Is there a possibility one of those libraries may have it's own > version of getenv? More likely, there is an incompatible malloc somewhere (or a corrupted malloc arena). The MALLOC_OPTIONS (see man malloc) may help if something corrupts the malloc arena. Cheers, -- Bert -- Bert Driehuis -- driehuis@playbeing.org -- +31-20-3116119 If the only tool you've got is an axe, every problem looks like fun! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 12:48:25 2001 Delivered-To: freebsd-stable@freebsd.org Received: from shepherd.hurlburt.af.mil (shepherd.hurlburt.af.mil [151.166.15.65]) by hub.freebsd.org (Postfix) with ESMTP id 831D037B503 for ; Tue, 13 Feb 2001 12:48:20 -0800 (PST) Received: from shepherd.hurlburt.af.mil (root@localhost) by shepherd.hurlburt.af.mil with ESMTP id OAA02780; Tue, 13 Feb 2001 14:47:56 -0600 (CST) From: Andrew.Hodgkins@hurlburt.af.mil Received: from exwncc02.hurlburt.af.mil (exwncc02.hurlburt.af.mil [151.166.208.36]) by shepherd.hurlburt.af.mil with ESMTP id OAA02739; Tue, 13 Feb 2001 14:47:47 -0600 (CST) Received: by EXWNCC02 with Internet Mail Service (5.5.2650.21) id <1Z90JQ5P>; Tue, 13 Feb 2001 14:47:21 -0600 Message-ID: To: pekkas@netcore.fi, imp@village.org Cc: freebsd-stable@FreeBSD.ORG Subject: RE: 3.5-S->4.2-S: still fail w/ setresuid on miniperl Date: Tue, 13 Feb 2001 14:47:57 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ralf Engelschall posted a detailed procedure that he used for updating from 3.5-S to 4.1-S, which can be found in the archives at: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=699499+0+/usr/local/www/db/text /2000/freebsd-stable/20000806.freebsd-stable I've also used it to go to 4.2-S and it works equally well...it might help with your buildworld snags, Pekka. Worth a look at least. ;) It could also be useful to incorporate some or all of Ralf's procedure into UPDATING. There have been a few minor changes since it was written ('make kernel' target, KERNCONF variable instead of KERNEL, etc.) but nothing that breaks it AFAIK. HTH, Andy -----Original Message----- From: Pekka Savola [mailto:pekkas@netcore.fi] Sent: Tuesday, February 13, 2001 1:27 PM To: Warner Losh Cc: freebsd-stable@FreeBSD.ORG Subject: Re: 3.5-S->4.2-S: still fail w/ setresuid on miniperl On Sun, 11 Feb 2001, Warner Losh wrote: > In message Pekka Savola writes: > : As a lot of others including some @FreeBSD.org people, I got: > > I'd suggest building -DNOPERL when upgrading. If that works (I have > no 3.x boxes fast enough to test this on), then let me know so I can > update UPDATING. > > : make buildworld -DNOPERL works around this, of course. > > Oh, that's different, I'll update UPDATING. Actually, that's not the only problem with 3.5 -> RELENG_4 update. Further into the buildworld, there's an error in 'vim': groff doesn't support -U AFAIR. Sigh. Better to tell people to update to 4.1-RELEASE first. That at least works, just finished that one. -- Pekka Savola "Tell me of difficulties surmounted, Netcore Oy not those you stumble over and fall" Systems. Networks. Security. -- Robert Jordan: A Crown of Swords To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 13:32:45 2001 Delivered-To: freebsd-stable@freebsd.org Received: from yez.hyperreal.org (penelope.ny.collab.net [64.61.9.189]) by hub.freebsd.org (Postfix) with SMTP id A918337B65D for ; Tue, 13 Feb 2001 13:32:40 -0800 (PST) Received: (qmail 6008 invoked by uid 1000); 13 Feb 2001 21:26:39 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 13 Feb 2001 21:26:39 -0000 Date: Tue, 13 Feb 2001 13:26:39 -0800 (PST) From: Brian Behlendorf X-X-Sender: To: Kris Kennaway Cc: Greg Troxel , Subject: Re: sshd in 4.2-STABLE In-Reply-To: <20010213112727.C56175@mollari.cthul.hu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 13 Feb 2001, Kris Kennaway wrote: > On Tue, Feb 13, 2001 at 08:10:19AM -0800, Brian Behlendorf wrote: > > I have to agree - many of the changes mergemaster makes are to files that > > no one would recommend editing directly in regular use, like MAKEDEV and > > /etc/rc.network and all the stuff in /etc/defaults. Modifying mergemaster > > to only ask to merge files that have been changed sounds like a good idea > > to me... > > Have you read the mergemaster docs? It can already do this. Er, how? You mean the MM_PRE_COMPARE_SCRIPT and MM_EXIT_SCRIPT script hooks? It's been a long week and is only Tuesday, but I must be missing something... Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 14:49:14 2001 Delivered-To: freebsd-stable@freebsd.org Received: from chmls20.mediaone.net (chmls20.mediaone.net [24.147.1.156]) by hub.freebsd.org (Postfix) with ESMTP id D278737B491 for ; Tue, 13 Feb 2001 14:48:56 -0800 (PST) Received: from toddpc (medoonga@h0000e85749b9.ne.mediaone.net [66.31.80.111]) by chmls20.mediaone.net (8.11.1/8.11.1) with SMTP id f1DMms614188 for ; Tue, 13 Feb 2001 17:48:54 -0500 (EST) From: "Todd Punderson" To: Subject: FW: make buildworld on 4.2-STABLE Date: Tue, 13 Feb 2001 17:51:01 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just cvsupdated at 5:30PM EST. Now when I run make buildworld, I am getting this: I have run this several times, rebooted, tried single user mode, removed the obj directory and still no luck. If this is the wrong mailing list, please send me in the right direction with my apologies. Thanks for any assistance. Todd -------------------------------------------------------------- >>> Rebuilding the temporary build tree -------------------------------------------------------------- rm -rf /usr/obj/usr/src/i386 mkdir -p /usr/obj/usr/src/i386/usr/bin mkdir -p /usr/obj/usr/src/i386/usr/lib/compat/aout mkdir -p /usr/obj/usr/src/i386/usr/games mkdir -p /usr/obj/usr/src/i386/usr/libdata/ldscripts mkdir -p /usr/obj/usr/src/i386/usr/libexec/elf mkdir -p /usr/obj/usr/src/i386/usr/sbin mkdir -p /usr/obj/usr/src/i386/usr/share/misc mkdir -p /usr/obj/usr/src/i386/usr/include/arpa mkdir -p /usr/obj/usr/src/i386/usr/include/g++/std mkdir -p /usr/obj/usr/src/i386/usr/include/objc mkdir -p /usr/obj/usr/src/i386/usr/include/protocols mkdir -p /usr/obj/usr/src/i386/usr/include/readline mkdir -p /usr/obj/usr/src/i386/usr/include/rpc mkdir -p /usr/obj/usr/src/i386/usr/include/rpcsvc mkdir -p /usr/obj/usr/src/i386/usr/include/openssl mkdir -p /usr/obj/usr/src/i386/usr/include/security mkdir -p /usr/obj/usr/src/i386/usr/include/ss ln -sf /usr/src/sys /usr/obj/usr/src/i386/sys ------------------------------------------------- ------------- >>> stage 1: bootstrap tools -------------------------------------------------------------- cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj/usr/src/i386 DESTDIR=/usr/obj/usr/src/i386 INSTALL="sh /usr/src/tools/install.sh" MACHINE_ARCH=i386 TOOLS_PREFIX=/usr/obj/usr/src/i386 PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/u sr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin make -f Makefile.inc1 -DNOMAN -DNOINFO -DNOHTML bootstrap-tools cd /usr/src/games/fortune/strfile; make obj; make depend; make all; make install /usr/obj/usr/src/i386/usr/src/games/fortune/strfile created for /usr/src/games/fortune/strfile rm -f .depend mkdep -f pend -a -I/usr/obj/usr/src/i386/usr/include /usr/src/games/fortune/strfile/strfile.c cd /usr/src/games/fortune/strfile; make _EXTRADEPEND echo strfile: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend cc -O -pipe -Wall -I/usr/obj/usr/src/i386/usr/include -c /usr/src/games/fortune/strfile/strfile.c -O -pipe -Wall -I/usr/obj/usr/src/i386/usr/include -o strfile strfile.o sh /usr/src/tools/install.sh -c -s -o root -g games -m 555 strfile /usr/obj/usr/src/i386/usr/games cd /usr/src/usr.bin/yacc; make obj; make depend; make all; make install /usr/obj/usr/src/i386/usr/src/usr.bin/yacc created for /usr/src/usr.bin/yacc rm -f .depend mkdep -f pend -a -I/usr/obj/usr/src/i386/usr/include /usr/src/usr.bin/yacc/closure.c /usr/src/usr.bin/yacc/error.c /usr/src/usr.bin/yacc/lalr.c /usr/src/usr.bin/yacc/lr0.c /usr/src/usr.bin/yacc/main.c /usr/src/usr.bin/yacc/mkpar.c /usr/src/usr.bin/yacc/output.c /usr/src/usr.bin/yacc/reader.c /usr/src/usr.bin/yacc/skeleton.c /usr/src/usr.bin/yacc/symtab.c /usr/src/usr.bin/yacc/verbose.c /usr/src/usr.bin/yacc/warshall.c cd /usr/src/usr.bin/yacc; make _EXTRADEPEND echo yacc: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend -O -pipe -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.bin/yacc/closure.c -O -pipe -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.bin/yacc/error.c -O -pipe -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.bin/yacc/lalr.c -O -pipe -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.bin/yacc/lr0.c -O -pipe -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.bin/yacc/main.c -O -pipe -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.bin/yacc/mkpar.c -O -pipe -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.bin/yacc/output.c -O -pipe -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.bin/yacc/reader.c -O -pipe -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.bin/yacc/skeleton.c -O -pipe -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.bin/yacc/symtab.c -O -pipe -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.bin/yacc/verbose.c -O -pipe -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.bin/yacc/warshall.c -O -pipe -I/usr/obj/usr/src/i386/usr/include -o yacc closure.o error.o lalr.o lr0.o main.o mkpar.o output.o reader.o skeleton.o symtab.o verbose.o warshall.o sh /usr/src/tools/install.sh -c -o root -g wheel -m 555 /usr/src/usr.bin/yacc/yyfix.sh /usr/obj/usr/src/i386/usr/bin/yyfix sh /usr/src/tools/install.sh -c -s -o root -g wheel -m 555 yacc /usr/obj/usr/src/i386/usr/bin /usr/obj/usr/src/i386/usr/bin/byacc -> /usr/obj/usr/src/i386/usr/bin/yacc cd /usr/src/usr.bin/colldef; make obj; make depend; make all; make install /usr/obj/usr/src/i386/usr/src/usr.bin/colldef created for /usr/src/usr.bin/colldef yacc -d /usr/src/usr.bin/colldef/parse.y cp y.tab.c parse.c lex -t -8 -i /usr/src/usr.bin/colldef/scan.l > scan.c rm -f .depend mkdep -f .depend -a -I. -I/usr/src/usr.bin/colldef/../../lib/libc/locale -DCOLLATE _DEBUG -I/usr/obj/usr/src/i386/usr/include parse.c scan.c cd /usr/src/usr.bin/colldef; make _EXTRADEPEND echo colldef: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i386/usr/lib/libl.a >> .depend cc -O -pipe -Wall -I. -I/usr/src/usr.bin/colldef/../../lib/libc/locale -DCOL LATE_DEBUG -I/usr/obj/usr/src/i386/usr/include -c parse.c cc -O -pipe -Wall -I. -I/usr/src/usr.bin/colldef/../../lib/libc/locale -DCOL LATE_DEBUG -I/usr/obj/usr/src/i386/usr/include -c scan.c /usr/src/usr.bin/colldef/scan.l:638: warning: `yyunput' defined but not used cc -O -pipe -Wall -I. -I/usr/src/usr.bin/colldef/../../lib/libc/locale -DCOL LATE_DEBUG -I/usr/obj/usr/src/i386/usr/include -o colldef parse.o can.o -ll sh /usr/src/tools/install.sh -c -s -o root -g wheel -m 555 colldef /usr/obj/usr/src/i386/usr/bin cd /usr/src/usr.sbin/config; make obj; make depend; make all; make install /usr/obj/usr/src/i386/usr/src/usr.sbin/config created for /usr/src/usr.sbin/config yacc -d /usr/src/usr.sbin/config/config.y cp y.tab.c config.c lex -t /usr/src/usr.sbin/config/lang.l > lang.c rm -f .depend mkdep -f .depend -a -I. -I/usr/src/usr.sbin/config -I/usr/obj/usr/src/i386/usr/inc lude config.c /usr/src/usr.sbin/config/main.c lang.c /usr/src/usr.sbin/config/mkioconf.c /usr/src/usr.sbin/config/mkmakefile.c /usr/src/usr.sbin/config/mkheaders.c /usr/src/usr.sbin/config/mkoptions.c cd /usr/src/usr.sbin/config; make _EXTRADEPEND echo config: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i386/usr/lib/libl.a >> .depend cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototyp es -Wredundant-decls -I/usr/obj/usr/src/i386/usr/include -c config.c cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototyp es -Wredundant-decls -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.sbin/config/main.c cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototyp es -Wredundant-decls -I/usr/obj/usr/src/i386/usr/include -c lang.c /usr/src/usr.sbin/config/lang.l:1027: warning: `yy_flex_realloc' defined but not used cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototyp es -Wredundant-decls -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.sbin/config/mkioconf.c cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototyp es -Wredundant-decls -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.sbin/config/mkmakefile.c cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototyp es -Wredundant-decls -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.sbin/config/mkheaders.c cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototyp es -Wredundant-decls -I/usr/obj/usr/src/i386/usr/include -c /usr/src/usr.sbin/config/mkoptions.c cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototyp es -Wredundant-decls -I/usr/obj/usr/src/i386/usr/include -o config config.o main.o lang.o mkioconf.o mkmakefile.o mkheaders.o mkoptions.o -ll sh /usr/src/tools/install.sh -c -s -o root -g wheel -m 555 config /usr/obj/usr/src/i386/usr/sbin cd /usr/src/gnu/usr.bin/gperf; make obj; make depend; make all; make install /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/gperf created for /usr/src/gnu/usr.bin/gperf ===> doc /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/gperf/doc created for /usr/src/gnu/usr.bin/gperf/doc rm -f .depend mkdep -f pend -a -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/src/i 386/usr/include /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/options.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/iterator.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/main.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/perfect.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/keylist.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/listnode.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/xmalloc.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/hashtable.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/boolarray.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/readline.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/stderr.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/version.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/getopt.c cd /usr/src/gnu/usr.bin/gperf; make _EXTRADEPEND echo gperf: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend ===> doc cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/options.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/iterator.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/main.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/perfect.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/keylist.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/listnode.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/xmalloc.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/hashtable.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/boolarray.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/readline.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/stderr.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/version.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/getopt.c cc -O -pipe -D_HAVE_PARAM_H -DLO_CAL -DGATHER_STATISTICS -I/usr/obj/usr/sr c/i386/usr/include -o gperf options.o iterator.o main.o perfect.o keylist.o listnode.o xmalloc.o hashtable.o boolarray.o readline.o stderr.o version.o getopt.o ===> doc sh /usr/src/tools/install.sh -c -s -o root -g wheel -m 555 gperf /usr/obj/usr/src/i386/usr/bin ===> doc cd /usr/src/gnu/usr.bin/texinfo; make obj; make depend; make all; make install ===> libtxi /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/texinfo/libtxi created for /usr/src/gnu/usr.bin/texinfo/libtxi ===> makeinfo /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/texinfo/makeinfo created for /usr/src/gnu/usr.bin/texinfo/makeinfo ===> info /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/texinfo/info created for /usr/src/gnu/usr.bin/texinfo/info ===> install-info /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/texinfo/install-info created for /usr/src/gnu/usr.bin/texinfo/install-info ===> texindex /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/texinfo/texindex created for /usr/src/gnu/usr.bin/texinfo/texindex ===> doc /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/texinfo/doc created for /usr/src/gnu/usr.bin/texinfo/doc ===> libtxi rm -f .depend mkdep -f .depend -a -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/g nu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin /texinfo/libtxi/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/usr/ include /usr/src/gnu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo/lib/getopt.c /usr/src/gnu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo/lib/getopt1. c /usr/src/gnu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo/lib/substrin g.c /usr/src/gnu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo/lib/xexit.c /usr/src/gnu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo/lib/xmalloc. c /usr/src/gnu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo/lib/xstrdup. c cd /usr/src/gnu/usr.bin/texinfo/libtxi; make _EXTRADEPEND ===> makeinfo rm -f .depend mkdep -f .depend -a -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/g nu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo -I/usr/src/gnu/usr.b in/texinfo/makeinfo/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/ usr/include /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/c mds.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/d efun.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/f iles.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/f ootnote.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/h tml.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/i ndex.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/i nsertion.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/l ang.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/m acro.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/m akeinfo.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/m ulti.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/n ode.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/s ectioning.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/t oc.c cd /usr/src/gnu/usr.bin/texinfo/makeinfo; make _EXTRADEPEND echo makeinfo: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/texinfo/makeinfo/../libtxi/libtxi. a >> .depend ===> info rm -f .depend mkdep -f pend -a -DINFODIR=\"/usr/share/info:/usr/local/info:/usr/X11R6/info:.\" - DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu/usr.bin/texi nfo/info/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin/texinfo/info/../ ../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/usr/include /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/dir.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/display.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/doc.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/dribble.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/echo-area .c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/filesys.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/footnotes .c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/gc.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/indices.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/info-util s.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/info.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/infodoc.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/infomap.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/m-x.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/man.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/nodemenu. c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/nodes.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/search.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/session.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/signals.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/terminal. c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/tilde.c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/variables .c /usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/info/window.c cd /usr/src/gnu/usr.bin/texinfo/info; make _EXTRADEPEND echo info: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i386/usr/lib/libtermcap.a /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/texinfo/info/../libtxi/libtxi.a >> .depend ===> install-info rm -f .depend mkdep -f pend -a -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu/ usr.bin/texinfo/install-info/../../../../contrib/texinfo -I/usr/src/gnu/usr. bin/texinfo/install-info/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/ i386/usr/include /usr/src/gnu/usr.bin/texinfo/install-info/../../../../contrib/texinfo/util/i nstall-info.c cd /usr/src/gnu/usr.bin/texinfo/install-info; make _EXTRADEPEND echo install-info: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/texinfo/install-info/../libtxi/lib txi.a >> .depend ===> texindex rm -f .depend mkdep -f pend -a -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu/ usr.bin/texinfo/texindex/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin/ texinfo/texindex/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/usr /include /usr/src/gnu/usr.bin/texinfo/texindex/../../../../contrib/texinfo/util/texin dex.c cd /usr/src/gnu/usr.bin/texinfo/texindex; make _EXTRADEPEND echo texindex: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/texinfo/texindex/../libtxi/libtxi. a >> .depend ===> doc ===> libtxi cc -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gn u/usr.bin/texinfo/libtxi/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin/ texinfo/libtxi/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/usr/i nclude -c /usr/src/gnu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo/lib/getopt.c -o getopt.o c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/libtxi/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin/t exinfo/libtxi/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/usr/in clude -c /usr/src/gnu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo/lib/getopt1. c -o getopt1.o c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/libtxi/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin/t exinfo/libtxi/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/usr/in clude -c /usr/src/gnu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo/lib/substrin g.c -o substring.o cc -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gn u/usr.bin/texinfo/libtxi/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin/ texinfo/libtxi/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/usr/i nclude -c /usr/src/gnu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo/lib/xexit.c -o xexit.o c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/libtxi/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin/t exinfo/libtxi/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/usr/in clude -c /usr/src/gnu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo/lib/xmalloc. c -o xmalloc.o c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/libtxi/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin/t exinfo/libtxi/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/usr/in clude -c /usr/src/gnu/usr.bin/texinfo/libtxi/../../../../contrib/texinfo/lib/xstrdup. c -o xstrdup.o building standard txi library ranlib libtxi.a ===> makeinfo cc -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gn u/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo -I/usr/src/gnu/usr.bi n/texinfo/makeinfo/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386 /usr/include -c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/c mds.c c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/makeinfo/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin /texinfo/makeinfo/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/ usr/include -c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/d efun.c c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/makeinfo/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin /texinfo/makeinfo/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/ usr/include -c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/f iles.c c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/makeinfo/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin /texinfo/makeinfo/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/ usr/include -c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/f ootnote.c c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/makeinfo/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin /texinfo/makeinfo/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/ usr/include -c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/h tml.c c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/makeinfo/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin /texinfo/makeinfo/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/ usr/include -c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/i ndex.c c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/makeinfo/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin /texinfo/makeinfo/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/ usr/include -c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/i nsertion.c c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/makeinfo/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin /texinfo/makeinfo/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/ usr/include -c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/l ang.c c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/makeinfo/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin /texinfo/makeinfo/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/ usr/include -c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/m acro.c c -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu /usr.bin/texinfo/makeinfo/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin /texinfo/makeinfo/../../../../contrib/texinfo/lib -I/usr/obj/usr/src/i386/ usr/include -c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/m akeinfo.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/m akeinfo.c: In function `add_char': /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/m akeinfo.c:2076: syntax error before `indent' *** Error code 1 Stop in /usr/src/gnu/usr.bin/texinfo/makeinfo. *** Error code 1 Stop in /usr/src/gnu/usr.bin/texinfo. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. todd-server# exit exit Script done on Tue Feb 13 17:19:02 2001 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 15:58:44 2001 Delivered-To: freebsd-stable@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id D8B1F37B503 for ; Tue, 13 Feb 2001 15:58:39 -0800 (PST) Received: from hornet.unixfreak.org (hornet [63.198.170.140]) by bazooka.unixfreak.org (Postfix) with ESMTP id 1728A3E02; Tue, 13 Feb 2001 15:58:39 -0800 (PST) To: Forrest Aldrich Cc: freebsd-stable@freebsd.org Subject: Re: Core dump with "pw" command In-Reply-To: Message from Forrest Aldrich of "Tue, 13 Feb 2001 13:44:25 EST." <5.0.2.1.2.20010213134353.00a72400@216.67.14.69> Date: Tue, 13 Feb 2001 15:58:39 -0800 From: Dima Dorfman Message-Id: <20010213235839.1728A3E02@bazooka.unixfreak.org> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Made a typo today, but found that this command will dump core: > > su-2.04# pw lock help > Segmentation fault (core dumped) > su-2.04# > > Is this normal behavior for this command. Nope. As it is right now, pw(8) doesn't have help text for the lock and unlock commands, so it dumps core when you request it (bad array index). These two commands aren't documented in the manual page, either. Attached is a patch which, - adds a short section to the manual page about lock and unlock, - adds help text for lock and unlock which fixes the core dump, and - mentions that the -q option is accepted by usernext and groupnext (not related to this problem; just thought I'd stick it there while I'm doing this). If you would, please try it out (at least the core dump remedy) and see if it solves the problem. Thanks Dima Dorfman dima@unixfreak.org Index: pw.8 =================================================================== RCS file: /st/src/FreeBSD/src/usr.sbin/pw/pw.8,v retrieving revision 1.21 diff -u -r1.21 pw.8 --- pw.8 2001/02/01 16:43:57 1.21 +++ pw.8 2001/02/13 23:50:32 @@ -169,6 +169,18 @@ .Ar groupnext .Op Fl C Ar config .Op Fl q +.Nm +.Op Fl V Ar etcdir +.Ar lock +.Op name|uid +.Op Fl C Ar config +.Op Fl q +.Nm +.Op Fl V Ar etcdir +.Ar unlock +.Op name|uid +.Op Fl C Ar config +.Op Fl q .Sh DESCRIPTION .Nm Pw is a command-line based editor for the system @@ -758,6 +770,26 @@ The command .Ar groupnext returns the next available group id on standard output. +.Sh USER LOCKING +.Nm Pw +supports a simple password locking mechanism for users; it works by +prepending the string +.Ql *LOCKED* +to the beginning of the password field in +.Pa master.passwd +to prevent successful authentication. +.Pp +The +.Ar lock +and +.Ar unlock +commands take a user name or uid of the account to lock or unlock, +respectively. The +.Ql Fl V , +.Ql Fl C , +and +.Ql Fl q +options as described above are accepted by these commands. .Sh DIAGNOSTICS .Nm Pw returns EXIT_SUCCESS on successful operation, otherwise Index: pw.c =================================================================== RCS file: /st/src/FreeBSD/src/usr.sbin/pw/pw.c,v retrieving revision 1.23 diff -u -r1.23 pw.c --- pw.c 2000/12/29 18:04:49 1.23 +++ pw.c 2001/02/13 23:16:03 @@ -370,6 +370,15 @@ "usage: pw usernext [switches]\n" "\t-V etcdir alternate /etc location\n" "\t-C config configuration file\n" + "\t-q quiet operation\n", + "usage pw: lock [switches]\n" + "\t-V etcdir alternate /etc locations\n" + "\t-C config configuration file\n" + "\t-q quiet operation\n", + "usage pw: unlock [switches]\n" + "\t-V etcdir alternate /etc locations\n" + "\t-C config configuration file\n" + "\t-q quiet operation\n" }, { "usage: pw groupadd [group|gid] [switches]\n" @@ -409,6 +418,7 @@ "usage: pw groupnext [switches]\n" "\t-V etcdir alternate /etc location\n" "\t-C config configuration file\n" + "\t-q quiet operation\n" } }; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 16:39:22 2001 Delivered-To: freebsd-stable@freebsd.org Received: from housebsd.org (corona.housebsd.org [207.112.136.202]) by hub.freebsd.org (Postfix) with ESMTP id 1B60A37B491 for ; Tue, 13 Feb 2001 16:39:18 -0800 (PST) Received: from localhost (localhost [[UNIX: localhost]]) by housebsd.org (8.9.3/8.8.8) with ESMTP id SAA16278 for ; Tue, 13 Feb 2001 18:38:45 -0600 (CST) X-Authentication-Warning: corona.housebsd.org: bauerp owned process doing -bs Date: Tue, 13 Feb 2001 18:38:45 -0600 (CST) From: Paul Bauer X-Sender: bauerp@corona.housebsd.org To: freebsd-stable@FreeBSD.ORG Subject: Creating a 4.2-STABLE iso Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there a HOWTO or a FAQ somewhere that I am missing? I would like to make a iso of 4.2 STABLE to save time instead of cvsupping a bunch of systems. Granted this works great but it is more time consuming that I would like. Thanks In Advance. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 17:28:56 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mile.nevermind.kiev.ua (ppp-244.nav.kiev.ua [213.169.65.244]) by hub.freebsd.org (Postfix) with ESMTP id 62B0237B491 for ; Tue, 13 Feb 2001 17:28:33 -0800 (PST) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.11.1/8.11.1) id f1E1S4Q22517; Wed, 14 Feb 2001 03:28:04 +0200 (EET) (envelope-from never) Date: Wed, 14 Feb 2001 03:28:02 +0200 From: Nevermind To: Paul Bauer Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Creating a 4.2-STABLE iso Message-ID: <20010214032801.C17900@nevermind.kiev.ua> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from bauerp@bigfoot.com on Tue, Feb 13, 2001 at 06:38:45PM -0600 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Paul Bauer! On Tue, Feb 13, 2001 at 06:38:45PM -0600, you wrote: > Is there a HOWTO or a FAQ somewhere that I am missing? I would like to > make a iso of 4.2 STABLE to save time instead of cvsupping a bunch of > systems. Granted this works great but it is more time consuming that I > would like. I've asked about this before. So that's my howto: 1. You will need the while cvs repository preferablely on local hard disks. You can get it by cvsuping 'cvs-all' target. 2. cvsup complete src tree to your /usr/src or any other place you are usually place your source tree. (we'll call it $SRCDIR) 3. You'll need a lot of free space (about 1.6-2Gb) Also, create some dir where you want to put release files, there should be about 1Gb free. 4. cd $SRCDIR/release make release CVSROOT=here_your_cvs_repo BUILDNAME="4.2-STABLE" \ RELEASETAG=RELENG_4 CHROOTDIR=your_dir_where_to_put_release_files (maybe I'm missing some flags, but now I have no source tree to look at. 5. wait some hours/days depending on your hardware and disk speed :)) 6. when it will finish, cd $CHROOTDIR/R/cdrom/disc1 mkisofs -o ~/FreeBSD-4.2-STABLE-image.iso -J -r -b floppies/boot.flp 7. burn it on CD using burncd for example. P.S. Maybe it worth to include this in handbook? -- NEVE-RIPE The instructions said to install Windows 98 or better, so I installed FreeBSD. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 17:30:17 2001 Delivered-To: freebsd-stable@freebsd.org Received: from veldy.net (w028.z064001117.msp-mn.dsl.cnc.net [64.1.117.28]) by hub.freebsd.org (Postfix) with ESMTP id 64DA137B4EC for ; Tue, 13 Feb 2001 17:30:14 -0800 (PST) Received: from cascade (cascade.veldy.net [64.1.117.29]) by veldy.net (Postfix) with SMTP id 0A7637018; Tue, 13 Feb 2001 19:29:42 -0600 (CST) Message-ID: <001401c09625$84166370$1d750140@cascade> From: "Thomas T. Veldhouse" To: "Paul Bauer" Cc: References: Subject: Re: Creating a 4.2-STABLE iso Date: Tue, 13 Feb 2001 19:29:03 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I use ncftp3: % mkdir freebsd && cd freebsd % ncftp3 releng4.freebsd.org ncftp> cd /pub/FreeBSD/snapshots/i386/4.2-20010213-STABLE ncftp> bin ncftp> get *.TXT *.inf ncftp> get -R bin catpages compat1x compat20 compat21 compat22 compat3x crypto dict ncftp> get -R doc floppies games info manpages ports proflibs src ncftp> bye % cd .. % mkisofs -r -o freebsd.iso -b floppies/boot.flp -c floppies/boot.cat -V"4.2-20010213-STABLE" freebsd/ That's it! Make sure you use the trailing forward slash. Tom Veldhouse veldy@veldy.net ----- Original Message ----- From: "Paul Bauer" To: Sent: Tuesday, February 13, 2001 6:38 PM Subject: Creating a 4.2-STABLE iso > Is there a HOWTO or a FAQ somewhere that I am missing? I would like to > make a iso of 4.2 STABLE to save time instead of cvsupping a bunch of > systems. Granted this works great but it is more time consuming that I > would like. > > Thanks In Advance. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 17:33:11 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mile.nevermind.kiev.ua (ppp-244.nav.kiev.ua [213.169.65.244]) by hub.freebsd.org (Postfix) with ESMTP id 7BA7037B4EC for ; Tue, 13 Feb 2001 17:32:57 -0800 (PST) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.11.1/8.11.1) id f1E1WXM22568; Wed, 14 Feb 2001 03:32:33 +0200 (EET) (envelope-from never) Date: Wed, 14 Feb 2001 03:32:31 +0200 From: Nevermind To: Paul Bauer Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Creating a 4.2-STABLE iso Message-ID: <20010214033231.D17900@nevermind.kiev.ua> References: <20010214032801.C17900@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.2.5i In-Reply-To: <20010214032801.C17900@nevermind.kiev.ua>; from never@nevermind.kiev.ua on Wed, Feb 14, 2001 at 03:28:02AM +0200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Nevermind! On Wed, Feb 14, 2001 at 03:28:02AM +0200, you wrote: > Hello, Paul Bauer! >=20 > On Tue, Feb 13, 2001 at 06:38:45PM -0600, you wrote: >=20 > > Is there a HOWTO or a FAQ somewhere that I am missing? I would like to > > make a iso of 4.2 STABLE to save time instead of cvsupping a bunch of > > systems. Granted this works great but it is more time consuming that I > > would like. >=20 > I've asked about this before. So that's my howto: >=20 > 1. You will need the while cvs repository preferablely on local hard dis= ks. ^^^^^ whole --=20 NEVE-RIPE The instructions said to install Windows 98 or better, so I installed FreeBSD. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 17:48:37 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hotmail.com (f181.pav1.hotmail.com [64.4.31.181]) by hub.freebsd.org (Postfix) with ESMTP id 23EFC37B491 for ; Tue, 13 Feb 2001 17:48:35 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 13 Feb 2001 17:48:34 -0800 Received: from 64.32.160.11 by pv1fd.pav1.hotmail.msn.com with HTTP; Wed, 14 Feb 2001 01:48:34 GMT X-Originating-IP: [64.32.160.11] Reply-To: kam@salsolutions.net From: "Kam Salisbury" To: bauerp@bigfoot.com Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Creating a 4.2-STABLE iso Date: Wed, 14 Feb 2001 01:48:34 -0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 14 Feb 2001 01:48:34.0652 (UTC) FILETIME=[3DD3C1C0:01C09628] Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Do you mean the /usr/obj tree? Try the online handbook at www.freebsd.org/handbook Kam. >From: Paul Bauer >To: freebsd-stable@FreeBSD.ORG >Subject: Creating a 4.2-STABLE iso >Date: Tue, 13 Feb 2001 18:38:45 -0600 (CST) > >Is there a HOWTO or a FAQ somewhere that I am missing? I would like to >make a iso of 4.2 STABLE to save time instead of cvsupping a bunch of >systems. Granted this works great but it is more time consuming that I >would like. > >Thanks In Advance. > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-stable" in the body of the message > _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 18: 0:48 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mail.telocity.com (dsl-64-128-16-161.telocity.com [64.128.16.161]) by hub.freebsd.org (Postfix) with ESMTP id BD3B637B491 for ; Tue, 13 Feb 2001 18:00:43 -0800 (PST) Received: (from cgaff@localhost) by mail.telocity.com (8.11.2/8.11.2) id f1E20tE55201 for freebsd-stable@FreeBSD.ORG; Tue, 13 Feb 2001 20:00:55 -0600 (CST) (envelope-from cgaff) Date: Tue, 13 Feb 2001 19:59:34 -0600 From: "Corey G." To: freebsd-stable@FreeBSD.ORG Subject: EMU10K - SB Live - unable to map register space Message-ID: <20010213195934.A55128@telocity.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG With a stable snapshot that is two weeks old I get the following error with my SB Live audio card. I am not sure if it's related to the OS or my hardware since it was not installed previously. pcm0: at device 15.0 on pci0 pcm0: unable to map register space device_probe_and_attach: pcm0 attach returned 6 I turned off PNP in the bios as someone recommended earlier but it did not solve the problem. Any suggestions would be appreciated. Here is a complete dmesg: ------------------------ real memory = 469762048 (458752K bytes) avail memory = 454258688 (443612K bytes) Preloaded elf kernel "kernel" at 0xc02f3000. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci0: <3Dfx Voodoo 3 graphics accelerator> at 13.0 irq 11 fxp0: port 0x1400-0x143f mem 0x48000000-0x480fffff,0x48100000-0x 100fff irq 11 at device 14.0 on pci0 fxp0: Ethernet address 00:90:27:c6:fa:2f pcm0: at device 15.0 on pci0 pcm0: unable to map register space device_probe_and_attach: pcm0 attach returned 6 atapci0: port 0x1440-0x147f,0x1494-0x1497,0x1488-0x148f,0x1490-0x1493, 1480-0x1487 mem 0x48200000-0x4821ffff irq 11 at device 16.0 on pci0 ata2: at 0x1480 on atapci0 ata3: at 0x1488 on atapci0 isab0: at device 20.0 on pci0 isa0: on isab0 atapci1: at device 20.1 on pci0 atapci1: Busmastering DMA not supported pci0: at 20.2 chip1: port 0xfc00-0xfc0f at device 20.3 on pci0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 psm0: irq 12 on atkbdc0 psm0: model IntelliMouse Explorer, device ID 4 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A IP packet filtering initialized, divert enabled, rule-based forwarding disabled, default to deny, limited logging IPsec: Initialized Security Association Processing. ad4: 29311MB [59554/16/63] at ata2-master UDMA100 acd0: CDROM at ata3-master using PIO4 Mounting root from ufs:/dev/ad4s1a -- Best Regards, Corey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 18: 8:19 2001 Delivered-To: freebsd-stable@freebsd.org Received: from acer.mushinsky.net (dsl-64-194-2-117.telocity.com [64.194.2.117]) by hub.freebsd.org (Postfix) with ESMTP id C9AD837B6A4 for ; Tue, 13 Feb 2001 18:08:10 -0800 (PST) Received: from localhost (itz@localhost) by acer.mushinsky.net (8.11.1/8.11.1) with ESMTP id f1E27WI06020 for ; Tue, 13 Feb 2001 18:07:32 -0800 (PST) (envelope-from itz@mushinsky.net) Date: Tue, 13 Feb 2001 18:07:32 -0800 (PST) From: Isaac Mushinsky X-Sender: itz@localhost To: freebsd-stable@freebsd.org Subject: make world failure on telnetd Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG make buildworld fails in /usr/src/libexec/telnetd. This is the latest cvs stable source. Would anybody know why is pathnames.h missing? The following is what happens when you try make on that directory (I did not save the out put of make world). cc -O -pipe -DLINEMODE -DUSE_TERMIO -DDIAGNOSTICS -DOLD_ENVIRON -DENV_HACK -I/usr/src/libexec/telnetd/../../lib -DINET6 -c /usr/src/libexec/telnetd/sys_term.c /usr/src/libexec/telnetd/sys_term.c:43: pathnames.h: No such file or directory /usr/src/libexec/telnetd/sys_term.c: In function `getptyslave': /usr/src/libexec/telnetd/sys_term.c:1088: `_PATH_TTY' undeclared (first use in this function) /usr/src/libexec/telnetd/sys_term.c:1088: (Each undeclared identifier is reported only once /usr/src/libexec/telnetd/sys_term.c:1088: for each function it appears in.) /usr/src/libexec/telnetd/sys_term.c: In function `start_login': /usr/src/libexec/telnetd/sys_term.c:1735: `_PATH_LOGIN' undeclared (first use in this function) *** Error code 1 Stop in /usr/src/libexec/telnetd. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 18:37: 1 2001 Delivered-To: freebsd-stable@freebsd.org Received: from racine.cybercable.fr (racine.cybercable.fr [212.198.0.201]) by hub.freebsd.org (Postfix) with SMTP id 4C06B37B503 for ; Tue, 13 Feb 2001 18:36:56 -0800 (PST) Received: (qmail 2706539 invoked from network); 14 Feb 2001 02:36:51 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by racine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 14 Feb 2001 02:36:51 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f1E2alu97102; Wed, 14 Feb 2001 03:36:47 +0100 (CET) (envelope-from clefevre@poboxes.com) To: igorr@crosswinds.net Cc: freebsd-stable@FreeBSD.ORG Subject: Re: why there is no news.freebsd.org ? References: <200102130241.f1D2fMp68169@earth.backplane.com> <20010213134515.A10122@linux.rainbow> X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C In-Reply-To: Igor Robul's message of "Tue, 13 Feb 2001 13:45:15 +0300" From: Cyrille Lefevre Reply-To: clefevre@poboxes.com Mail-Copies-To: never Date: 14 Feb 2001 03:36:45 +0100 Message-ID: Lines: 27 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-5 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Igor Robul writes: > On Tue, Feb 13, 2001 at 01:23:35PM +0300, Dmitry Valdov wrote: > > No, no! Why not to have freebsd's news server which isn't connected to = usenet?=20 > > Just to be able to use NNTP protocol for reading maillists. >=20 > Same reason. If it will be _public_ it'll have all USENET problems. If which problems are you talking about ? do you think there is SPAM to private news servers ? -announce, -security-notification et co. have to be moderated, which is currently the case. > it'll require auth, then what is advatage opposed to mailing list?=20 bandwitch. think to people which are using modems. not a problem for me, I'm over cable. but I've subscribed to 17 freebsd mailing lists, which represent around 600+ messages a day and 2.5 MB a day ! do you think I read all messages ? of course, not, maybe 100 at most. > =BA=D0=DA =E2=D0=DC =D2 =BD=D8=D6=DD=D5=DC =DF=DE=D3=DE=D4=D0? ???, humm! of course :)) Cyrille. -- home: mailto:clefevre@poboxes.com UNIX is user-friendly; it's just partic= ular work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends wi= th. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 19:25: 7 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-67.dsl.lsan03.pacbell.net [63.207.60.67]) by hub.freebsd.org (Postfix) with ESMTP id B9B5937B491 for ; Tue, 13 Feb 2001 19:25:04 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 635AF66B26; Tue, 13 Feb 2001 19:25:04 -0800 (PST) Date: Tue, 13 Feb 2001 19:25:04 -0800 From: Kris Kennaway To: Brian Behlendorf Cc: Greg Troxel , freebsd-stable@FreeBSD.ORG Subject: Re: sshd in 4.2-STABLE Message-ID: <20010213192504.A61478@mollari.cthul.hu> References: <20010213112727.C56175@mollari.cthul.hu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="XsQoSWH+UP9D9v3l" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from brian@collab.net on Tue, Feb 13, 2001 at 01:26:39PM -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 13, 2001 at 01:26:39PM -0800, Brian Behlendorf wrote: > On Tue, 13 Feb 2001, Kris Kennaway wrote: > > On Tue, Feb 13, 2001 at 08:10:19AM -0800, Brian Behlendorf wrote: > > > I have to agree - many of the changes mergemaster makes are to files = that > > > no one would recommend editing directly in regular use, like MAKEDEV = and > > > /etc/rc.network and all the stuff in /etc/defaults. Modifying mergem= aster > > > to only ask to merge files that have been changed sounds like a good = idea > > > to me... > > > > Have you read the mergemaster docs? It can already do this. >=20 > Er, how? You mean the MM_PRE_COMPARE_SCRIPT and MM_EXIT_SCRIPT script > hooks? It's been a long week and is only Tuesday, but I must be missing > something... Actually, I think I was wrong (I was thinking of the option to merge based on diffs). Still, talk to Doug about the suggestion. Kris --XsQoSWH+UP9D9v3l Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6ifqPWry0BWjoQKURAl/hAJ9zp3TrmU1b2yLYI5yiEoIFzM3faQCfUyi4 WnrMkAoZVGlyU9BSAdF/vFo= =WF6+ -----END PGP SIGNATURE----- --XsQoSWH+UP9D9v3l-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 19:38:54 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-67.dsl.lsan03.pacbell.net [63.207.60.67]) by hub.freebsd.org (Postfix) with ESMTP id 9BD6937B491 for ; Tue, 13 Feb 2001 19:38:51 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id CE6F766B26; Tue, 13 Feb 2001 19:38:50 -0800 (PST) Date: Tue, 13 Feb 2001 19:38:50 -0800 From: Kris Kennaway To: Isaac Mushinsky Cc: freebsd-stable@freebsd.org Subject: Re: make world failure on telnetd Message-ID: <20010213193850.A61748@mollari.cthul.hu> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="MGYHOYXEY6WxJCY8" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from itz@mushinsky.net on Tue, Feb 13, 2001 at 06:07:32PM -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --MGYHOYXEY6WxJCY8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 13, 2001 at 06:07:32PM -0800, Isaac Mushinsky wrote: > make buildworld fails in /usr/src/libexec/telnetd. >=20 > This is the latest cvs stable source. Would anybody know why is > pathnames.h missing? Nope, look for a local problem. Perhaps your source tree is corrupt. Kris --MGYHOYXEY6WxJCY8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6if3KWry0BWjoQKURAh5ZAKDDYvdKc0VuWbdQ7V+kUs2IGpq55ACg+6mT SYs8fQUKR/et4oH7htIdKWA= =9sJW -----END PGP SIGNATURE----- --MGYHOYXEY6WxJCY8-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 21:13:52 2001 Delivered-To: freebsd-stable@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 7E3F837B4EC for ; Tue, 13 Feb 2001 21:13:50 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.2/8.11.1) with ESMTP id f1E5DgH85585; Tue, 13 Feb 2001 21:13:42 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: Paul Bauer Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Creating a 4.2-STABLE iso In-Reply-To: Message from Paul Bauer of "Tue, 13 Feb 2001 18:38:45 CST." Date: Tue, 13 Feb 2001 21:13:42 -0800 Message-ID: <85581.982127622@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Is there a HOWTO or a FAQ somewhere that I am missing? I would like to > make a iso of 4.2 STABLE to save time instead of cvsupping a bunch of > systems. Granted this works great but it is more time consuming that I > would like. Basically, just read /usr/src/release/Makefile for the targets/make variables to use when making a release and then make one. You'll get disc1 and disc2 directories ready to feed to mkhybrid and away you go - very simple. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 21:23:10 2001 Delivered-To: freebsd-stable@freebsd.org Received: from tomts5-srv.bellnexxia.net (tomts5.bellnexxia.net [209.226.175.25]) by hub.freebsd.org (Postfix) with ESMTP id AB4BB37B491 for ; Tue, 13 Feb 2001 21:23:08 -0800 (PST) Received: from unios.dhs.org ([206.172.131.58]) by tomts5-srv.bellnexxia.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20010214052307.KBVD18941.tomts5-srv.bellnexxia.net@unios.dhs.org> for ; Wed, 14 Feb 2001 00:23:07 -0500 Message-ID: <3A8A155E.DD000B96@unios.dhs.org> Date: Wed, 14 Feb 2001 00:19:26 -0500 From: Pat Wendorf X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: "freebsd-stable@FreeBSD.ORG" Subject: segfault "ps" in one easy step Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Try this: ps -o, I've tried it on a couple of my machines, please fix. Interesting to note NetBSD and OpenBSD are fine. -- Pat Wendorf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 21:39:13 2001 Delivered-To: freebsd-stable@freebsd.org Received: from gndrsh.dnsmgr.net (GndRsh.dnsmgr.net [198.145.92.4]) by hub.freebsd.org (Postfix) with ESMTP id DA52037B491 for ; Tue, 13 Feb 2001 21:39:07 -0800 (PST) Received: (from freebsd@localhost) by gndrsh.dnsmgr.net (8.9.3/8.9.3) id VAA57833; Tue, 13 Feb 2001 21:39:01 -0800 (PST) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <200102140539.VAA57833@gndrsh.dnsmgr.net> Subject: Re: segfault "ps" in one easy step In-Reply-To: <3A8A155E.DD000B96@unios.dhs.org> from Pat Wendorf at "Feb 14, 2001 00:19:26 am" To: beholder@unios.dhs.org (Pat Wendorf) Date: Tue, 13 Feb 2001 21:39:01 -0800 (PST) Cc: freebsd-stable@FreeBSD.ORG (freebsd-stable@FreeBSD.ORG) X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Try this: > > ps -o, > > I've tried it on a couple of my machines, please fix. > > Interesting to note NetBSD and OpenBSD are fine. Here is the fix from NetBSD: --- keyword.c.orig Tue Feb 13 21:37:42 2001 +++ keyword.c Tue Feb 13 21:38:08 2001 @@ -227,7 +227,7 @@ while ((cp = strsep(&p, FMTSEP)) != NULL && *cp == '\0') /* void */; - if (!(v = findvar(cp))) + if (cp == NULL || !(v = findvar(cp))) continue; if ((vent = malloc(sizeof(struct varent))) == NULL) err(1, NULL); -- Rod Grimes - KD7CAX @ CN85sl - (RWG25) rgrimes@gndrsh.dnsmgr.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 21:40:25 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hand.dotat.at (sfo-gw.covalent.net [207.44.198.62]) by hub.freebsd.org (Postfix) with ESMTP id E13A437B4EC for ; Tue, 13 Feb 2001 21:40:19 -0800 (PST) Received: from fanf by hand.dotat.at with local (Exim 3.20 #3) id 14Sufo-0006q3-00; Wed, 14 Feb 2001 05:40:16 +0000 Date: Wed, 14 Feb 2001 05:40:16 +0000 From: Tony Finch To: Pat Wendorf Cc: "freebsd-stable@FreeBSD.ORG" Subject: Re: segfault "ps" in one easy step Message-ID: <20010214054016.G412@hand.dotat.at> References: <3A8A155E.DD000B96@unios.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8A155E.DD000B96@unios.dhs.org> Organization: Covalent Technologies, Inc Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Pat Wendorf wrote: > >ps -o, > >I've tried it on a couple of my machines, please fix. Index: keyword.c =================================================================== RCS file: /home/ncvs/src/bin/ps/keyword.c,v retrieving revision 1.24 diff -u -r1.24 keyword.c --- keyword.c 1999/08/27 23:14:51 1.24 +++ keyword.c 2001/02/14 05:36:27 @@ -227,6 +227,8 @@ while ((cp = strsep(&p, FMTSEP)) != NULL && *cp == '\0') /* void */; + if (!cp) + break; if (!(v = findvar(cp))) continue; if ((vent = malloc(sizeof(struct varent))) == NULL) Tony. -- f.a.n.finch fanf@covalent.net dot@dotat.at BISCAY: EASTERLY OR NORTHEASTERLY 4 OR 5 DECREASING 3. FAIR. GOOD. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 22: 4:31 2001 Delivered-To: freebsd-stable@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id 4A72937B491 for ; Tue, 13 Feb 2001 22:04:22 -0800 (PST) Received: from gorean.org (master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id VAA80562; Tue, 13 Feb 2001 21:51:48 -0800 (PST) (envelope-from DougB@gorean.org) Message-ID: <3A8A1CF3.264A5C70@gorean.org> Date: Tue, 13 Feb 2001 21:51:47 -0800 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.76 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Brian Behlendorf Cc: Greg Troxel , freebsd-stable@FreeBSD.ORG, Kris Kennaway Subject: Upgrading config files (Was: Re: sshd in 4.2-STABLE) References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Brian Behlendorf wrote: > > On 13 Feb 2001, Greg Troxel wrote: > > The Debian package system does something like this, and I found it > > very helpful for the brief time I ran a GNU/Linux system. IIRC, > > packages distinguished between regular files (that weren't expected to > > change) and configuration files. When upgrading to a new version of a > > package, the rule was that if a config file was unchanged (same md5) > > from the installed package, it was replaced by the new version. If > > changed, the user was asked to merge/cope. Also, config files were > > left on pkg_delete (well, dpkg --remove), unless one asked to have > > them removed. My mm hacking time has been taken up recently by the more urgent nature of the BIND mess which has taken up extra work and "free(bsd)" time. However I've given a lot of thought to this MD5 scenario that you and a few others have suggested in the past. As much as I loathe the concept of automatically updating files without the user looking at the changes first, the request comes up so often that it's probably going to have to happen in one form or another. My preferred method of automatic updates is some sort of cvs-related system, however I think an MD5 based system will be (marginally) easier to implement (once a few hurdles are overcome) and will help more users. > I have to agree - many of the changes mergemaster makes are to files that > no one would recommend editing directly in regular use, like MAKEDEV and > /etc/rc.network and all the stuff in /etc/defaults. Modifying mergemaster > to only ask to merge files that have been changed sounds like a good idea > to me... Well, it definitely sounds like the easy way out. Whether it's a good idea or not is a whole other question. There are 4 corners to the equation... automatic upgrade or not, and force the users to see and approve the changes or not. Mergemaster takes the most paranoid approach by default, that of not automatically upgrading, AND forcing the user to see and approve of the changes. I made that decision because I felt strongly that the sysadmin SHOULD be looking at the changes before they go into the system. You can feel free to repeat the "tools not policy" mantra, but mm is my tool. My feeling was that if someone wanted to create another tool that did automatic upgrades, they should feel free to do that. (Small, lightweight tools, etc. etc.) However, in some measure to my chagrin (although much to my gratification) mm is now seen as "the" way to upgrade your config files. So, the question now is, does upgrading by default without forcing the user to see the changes unload the gun, or just point it at a different foot? My feeling is that all we're doing is replacing one set of problems with another, and losing the opportunity to educate the users in the process. I have long been an advocate of both making "The Right Thing" easier to understand and to accomplish, but at some level you just can't make unix system administration any easier. Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 13 23:54:11 2001 Delivered-To: freebsd-stable@freebsd.org Received: from acer.mushinsky.net (dsl-64-194-2-117.telocity.com [64.194.2.117]) by hub.freebsd.org (Postfix) with ESMTP id DBF8737B401 for ; Tue, 13 Feb 2001 23:54:08 -0800 (PST) Received: from acer.mushinsky.net (itz@localhost [127.0.0.1]) by acer.mushinsky.net (8.11.1/8.11.1) with SMTP id f1E7r9F65672; Tue, 13 Feb 2001 23:53:09 -0800 (PST) (envelope-from imush@math.berkeley.edu) From: Isaac Mushinsky To: Kris Kennaway , Isaac Mushinsky Subject: Re: make world failure on telnetd Date: Tue, 13 Feb 2001 23:53:09 -0800 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="koi8-r" Cc: freebsd-stable@FreeBSD.ORG References: <20010213193850.A61748@mollari.cthul.hu> In-Reply-To: <20010213193850.A61748@mollari.cthul.hu> MIME-Version: 1.0 Message-Id: <01021323530900.65325@acer.mushinsky.net> Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I can't find the problem still. I tried to cvsup and revert to release 4.= 2, and then back again, and still do not see the missing header file. How= can the tree be corrupted, and the cvsup does not see the file missing? On Tuesday 13 February 2001 19:38, Kris Kennaway wrote: > > On Tue, Feb 13, 2001 at 06:07:32PM -0800, Isaac Mushinsky wrote: > > make buildworld fails in /usr/src/libexec/telnetd. > > > > This is the latest cvs stable source. Would anybody know why is > > pathnames.h missing? > > Nope, look for a local problem. Perhaps your source tree is corrupt. > > Kris ---------------------------------------- Content-Type: application/pgp-signature; charset=3D"us-ascii"; name=3D"At= tachment: 1" Content-Transfer-Encoding: 7bit Content-Description:=20 ---------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 1:49:47 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mel.alcatel.fr (mail2.alcatel.fr [212.208.74.132]) by hub.freebsd.org (Postfix) with ESMTP id C65D037B401 for ; Wed, 14 Feb 2001 01:49:42 -0800 (PST) Received: from aifhs2.alcatel.fr (mailhub.alcatel.fr [155.132.180.80]) by mel.alcatel.fr (ALCANET/SMTP) with ESMTP id KAA07423 for ; Wed, 14 Feb 2001 10:48:20 +0100 Received: from bsf.alcatel.fr (mail.dit.sxb.bsf.alcatel.fr [155.132.205.115]) by aifhs2.alcatel.fr (ALCANET/SMTP2) with ESMTP id KAA06829 for ; Wed, 14 Feb 2001 10:44:30 +0100 (MET) Received: from mail (mail-bsf-alcatel-fr.dit.sxb.bsf.alcatel.fr [155.132.205.91]) by bsf.alcatel.fr (8.8.8+Sun/8.9.3) with ESMTP id KAA03718 for ; Wed, 14 Feb 2001 10:49:32 +0100 (MET) Received: from hohwald.gsm (hohwald [172.25.60.98]) by mail (8.8.8+Sun/) with ESMTP id KAA03714 for ; Wed, 14 Feb 2001 10:49:32 +0100 (MET) Received: from sxb.bsf.alcatel.fr (localhost [127.0.0.1]) by hohwald.gsm (8.9.3+Sun/8.9.1) with ESMTP id KAA02830 for ; Wed, 14 Feb 2001 10:49:48 +0100 (MET) Message-ID: <3A8A54BC.2061A7B@sxb.bsf.alcatel.fr> Date: Wed, 14 Feb 2001 10:49:48 +0100 From: Sebastien ROCHE X-Mailer: Mozilla 4.75 [en] (X11; U; SunOS 5.7 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Half-Duplex mode References: <20010115100709.A30062@dogma.freebsd-uk.eu.org> <4.2.2.20010115053326.01c64f00@marble.sentex.net> <20010115120719.A31194@dogma.freebsd-uk.eu.org> <3A62F16E.9A06E0C7@quake.com.au> <20010115084815.B1388@stat.Duke.EDU> Content-Type: multipart/alternative; boundary="------------066C558BA4956E27D14535C8" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --------------066C558BA4956E27D14535C8 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi all, Anybody knows how to force an ethernet card, driven by the dc driver (a Macronix card) to work in HalfDuplex ? Thanks for your help. Sebastien Roche --------------066C558BA4956E27D14535C8 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Hi all,

Anybody knows how to force an ethernet card, driven by the dc driver (a Macronix card) to work in HalfDuplex ?

Thanks for your help.

Sebastien Roche --------------066C558BA4956E27D14535C8-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 2: 6:59 2001 Delivered-To: freebsd-stable@freebsd.org Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by hub.freebsd.org (Postfix) with ESMTP id 9A29537B503 for ; Wed, 14 Feb 2001 02:06:55 -0800 (PST) Received: from numeri.campus.luth.se (localhost [127.0.0.1]) by numeri.campus.luth.se (8.11.1/8.11.1) with ESMTP id f1EA7BP19099; Wed, 14 Feb 2001 11:07:11 +0100 (CET) (envelope-from k@numeri.campus.luth.se) Message-Id: <200102141007.f1EA7BP19099@numeri.campus.luth.se> X-Mailer: exmh version 2.1.1 10/15/1999 To: Sebastien ROCHE Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Half-Duplex mode In-Reply-To: Your message of "Wed, 14 Feb 2001 10:49:48 +0100." <3A8A54BC.2061A7B@sxb.bsf.alcatel.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 14 Feb 2001 11:07:11 +0100 From: Johan Karlsson Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Wed, 14 Feb 2001 10:49:48 +0100, Sebastien ROCHE wrote: > > --------------066C558BA4956E27D14535C8 > Content-Type: text/plain; charset=us-ascii > Content-Transfer-Encoding: 7bit > > Hi all, > > Anybody knows how to force an ethernet card, driven by the dc driver (a Macro >nix card) > to work in HalfDuplex ? > > Thanks for your help. Hi man 4 dc gives: ... The dc driver supports the following media types: ... 10baseT/UTP Set 10Mbps operation. The mediaopt option can also be used to enable full-duplex operation. Not spec- ifying full duplex implies half-duplex mode. ... where 'media' and 'mediaopt' are options for ifconfig (see tha man page for ifconfig). /Johan K > > Sebastien Roche > > --------------066C558BA4956E27D14535C8 > Content-Type: text/html; charset=us-ascii > Content-Transfer-Encoding: 7bit > > > > Hi all, >

Anybody knows how to force an ethernet card, driven by the 1>dc > driver (a Macronix card) to work in HalfDuplex ? >

Thanks for your help. >

Sebastien Roche > > --------------066C558BA4956E27D14535C8-- > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 2:14:31 2001 Delivered-To: freebsd-stable@freebsd.org Received: from easynet-gw.netvalue.fr (easynet-gw.netvalue.fr [212.180.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 83C3D37B401 for ; Wed, 14 Feb 2001 02:14:27 -0800 (PST) Received: from mail.netvalue.fr (unknown [192.168.1.13]) by easynet-gw.netvalue.fr (Postfix) with ESMTP id 952E08C50 for ; Wed, 14 Feb 2001 11:16:18 +0100 (CET) Received: from mail-hk.netvalue.fr ([192.168.100.13]) by mail.netvalue.fr (Netscape Messaging Server 3.6) with ESMTP id AAA551F for ; Wed, 14 Feb 2001 11:12:59 +0100 Received: from erwan.netvalue.fr ([192.168.100.100]) by mail-hk.netvalue.fr (Netscape Messaging Server 4.15) with ESMTP id G8QSE200.7CP for ; Wed, 14 Feb 2001 18:13:14 +0800 Received: from netvalue.com (localhost [127.0.0.1]) by erwan.netvalue.fr (Postfix) with ESMTP id 06D8518C8 for ; Wed, 14 Feb 2001 18:13:31 +0800 (HKT) Message-ID: <3A8A5A4A.AE7EAD64@netvalue.com> Date: Wed, 14 Feb 2001 18:13:30 +0800 From: Erwan Arzur Organization: NetValue Ltd. X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, fr-FR MIME-Version: 1.0 To: freebsd-stable@FreeBSD.ORG Subject: Re: Creating a 4.2-STABLE iso References: <85581.982127622@winston.osd.bsdi.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jordan Hubbard wrote: > > > Is there a HOWTO or a FAQ somewhere that I am missing? I would like to > > make a iso of 4.2 STABLE to save time instead of cvsupping a bunch of > > systems. Granted this works great but it is more time consuming that I > > would like. > > Basically, just read /usr/src/release/Makefile for the targets/make > variables to use when making a release and then make one. You'll > get disc1 and disc2 directories ready to feed to mkhybrid and away > you go - very simple. > > - Jordan It's not that simple if you want to include your own patches (i did this for pre-configured boxes mainly). You have to remember that your patches files should include patches to /usr/src/release/Makefile in order to be taken into account, because of the chroot'ed environment and the way the build script pulls everything out with CVS ... I assumed i did not want to commit anything, and did not have time to fiddle into the CVS configuration files (i'm really not a CVS guy) in order to avoid advertize them to the world and sending mails to cvs-all. :-) The result is quite impressive, though. Setting up a box in our offices around the world is a matter of minutes. I have to give you warm thanks for that ! I'm just missing an easy way to include pre-compiled packages in the cdrom without a manual download of the newest packages. -- Erwan Arzur NetValue ltd. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 2:23:18 2001 Delivered-To: freebsd-stable@freebsd.org Received: from pobox.inspire.net.nz (pobox.inspire.net.nz [203.79.89.4]) by hub.freebsd.org (Postfix) with ESMTP id 08F8C37B491 for ; Wed, 14 Feb 2001 02:23:11 -0800 (PST) Received: from inspire.net.nz (ipnet-205.inspire.net.nz [203.79.88.205]) by pobox.inspire.net.nz (8.10.2/8.10.2) with ESMTP id f1EAMor19325 for ; Wed, 14 Feb 2001 23:22:54 +1300 (NZDT) Message-ID: <3A8A5F40.D3098A43@inspire.net.nz> Date: Wed, 14 Feb 2001 23:34:40 +1300 From: "Bruce D. Harding" X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: stable Subject: compile errors Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG While attempting to update from 4.2 release to 4-stable I encountered the follwing errors. I have since tried resupping, deleteing problem files and resupping, deleteing all files n the problem directory and resupping, always with the same (exact) errors. I believe the problem may have been caused by a power cut on my first buildworld immediately after the first cvsup from 4.2 release. I'm picking that the power cut has screwed up some dependencies somewhere that are not being corrected by cvsup. Any help would be much appreciated as I am on the verge of deleting the entire source tree and starting again, (a slight hassle as I no longer have the cd's and am on a 33.6k connection) cc -O -pipe -Wall -DLIBC_SCCS -I/usr/src/lib/libutil -I/usr/src/lib/libutil/../../sys -DINET6 -c /usr/src/lib/libutil/login.c -o login.o /usr/src/lib/libutil/login.c: In function `login': /usr/src/lib/libutil/login.c:58: warning: implicit declaration of function `ttyslot' /usr/src/lib/libutil/login.c:61: warning: implicit declaration of function `write' /usr/src/lib/libutil/login.c:62: warning: implicit declaration of function `close' cc -O -pipe -Wall -DLIBC_SCCS -I/usr/src/lib/libutil -I/usr/src/lib/libutil/../../sys -DINET6 -c /usr/src/lib/libutil/login_tty.c -o login_tty.o /usr/src/lib/libutil/login_tty.c: In function `login_tty': /usr/src/lib/libutil/login_tty.c:54: warning: implicit declaration of function `setsid' /usr/src/lib/libutil/login_tty.c:57: warning: implicit declaration of function `dup2' /usr/src/lib/libutil/login_tty.c:61: warning: implicit declaration of function `close' cc -O -pipe -Wall -DLIBC_SCCS -I/usr/src/lib/libutil -I/usr/src/lib/libutil/../../sys -DINET6 -c /usr/src/lib/libutil/logout.c -o logout.o /usr/src/lib/libutil/logout.c: In function `logout': /usr/src/lib/libutil/logout.c:66: warning: implicit declaration of function `read' /usr/src/lib/libutil/logout.c:71: warning: implicit declaration of function `time' /usr/src/lib/libutil/logout.c:73: warning: implicit declaration of function `write' /usr/src/lib/libutil/logout.c:76: warning: implicit declaration of function `close' cc -O -pipe -Wall -DLIBC_SCCS -I/usr/src/lib/libutil -I/usr/src/lib/libutil/../../sys -DINET6 -c /usr/src/lib/libutil/logwtmp.c -o logwtmp.o /usr/src/lib/libutil/logwtmp.c: In function `trimdomain': /usr/src/lib/libutil/logwtmp.c:74: warning: implicit declaration of function `gethostname' /usr/src/lib/libutil/logwtmp.c: In function `logwtmp': /usr/src/lib/libutil/logwtmp.c:160: warning: implicit declaration of function `time' /usr/src/lib/libutil/logwtmp.c:161: warning: implicit declaration of function `write' /usr/src/lib/libutil/logwtmp.c:165: warning: implicit declaration of function `close' cc -O -pipe -Wall -DLIBC_SCCS -I/usr/src/lib/libutil -I/usr/src/lib/libutil/../../sys -DINET6 -c /usr/src/lib/libutil/pty.c -o pty.o /usr/src/lib/libutil/pty.c: In function `openpty': /usr/src/lib/libutil/pty.c:83: warning: implicit declaration of function `chown' /usr/src/lib/libutil/pty.c:83: warning: implicit declaration of function `getuid' /usr/src/lib/libutil/pty.c:85: warning: implicit declaration of function `revoke' /usr/src/lib/libutil/pty.c:99: warning: implicit declaration of function `close' /usr/src/lib/libutil/pty.c: In function `forkpty': /usr/src/lib/libutil/pty.c:118: warning: implicit declaration of function `fork' cc -O -pipe -Wall -DLIBC_SCCS -I/usr/src/lib/libutil -I/usr/src/lib/libutil/../../sys -DINET6 -c /usr/src/lib/libutil/login_cap.c -o login_cap.o /usr/src/lib/libutil/login_cap.c: In function `login_getclassbyname': /usr/src/lib/libutil/login_cap.c:199: warning: implicit declaration of function `geteuid' /usr/src/lib/libutil/login_cap.c:200: warning: implicit declaration of function `getegid' /usr/src/lib/libutil/login_cap.c:201: warning: implicit declaration of function `setegid' /usr/src/lib/libutil/login_cap.c:202: warning: implicit declaration of function `seteuid' /usr/src/lib/libutil/login_cap.c:228: warning: implicit declaration of function `close' cc -O -pipe -Wall -DLIBC_SCCS -I/usr/src/lib/libutil -I/usr/src/lib/libutil/../../sys -DINET6 -c /usr/src/lib/libutil/login_class.c -o login_class.o /usr/src/lib/libutil/login_class.c: In function `setusercontext': /usr/src/lib/libutil/login_class.c:363: warning: implicit declaration of function `setgid' /usr/src/lib/libutil/login_class.c:368: warning: implicit declaration of function `initgroups' /usr/src/lib/libutil/login_class.c:377: warning: implicit declaration of function `setlogin' /usr/src/lib/libutil/login_class.c:388: warning: implicit declaration of function `setuid' cc -O -pipe -Wall -DLIBC_SCCS -I/usr/src/lib/libutil -I/usr/src/lib/libutil/../../sys -DINET6 -c /usr/src/lib/libutil/login_auth.c -o login_auth.o /usr/src/lib/libutil/login_auth.c: In function `auth_cat': /usr/src/lib/libutil/login_auth.c:102: warning: implicit declaration of function `read' /usr/src/lib/libutil/login_auth.c:103: warning: implicit declaration of function `write' /usr/src/lib/libutil/login_auth.c:104: warning: implicit declaration of function `close' /usr/src/lib/libutil/login_auth.c:105: warning: implicit declaration of function `sleep' cc -O -pipe -Wall -DLIBC_SCCS -I/usr/src/lib/libutil -I/usr/src/lib/libutil/../../sys -DINET6 -c /usr/src/lib/libutil/login_times.c -o login_times.o /usr/src/lib/libutil/login_times.c: In function `parse_time': /usr/src/lib/libutil/login_times.c:52: warning: implicit declaration of function `isdigit' /usr/src/lib/libutil/login_times.c: In function `parse_lt': /usr/src/lib/libutil/login_times.c:78: warning: implicit declaration of function `tolower' /usr/src/lib/libutil/login_times.c:80: warning: implicit declaration of function `isalpha' /usr/src/lib/libutil/login_times.c: In function `in_ltm': /usr/src/lib/libutil/login_times.c:116: dereferencing pointer to incomplete type /usr/src/lib/libutil/login_times.c:118: dereferencing pointer to incomplete type /usr/src/lib/libutil/login_times.c:118: dereferencing pointer to incomplete type /usr/src/lib/libutil/login_times.c:120: dereferencing pointer to incomplete type /usr/src/lib/libutil/login_times.c:126: dereferencing pointer to incomplete type /usr/src/lib/libutil/login_times.c:127: dereferencing pointer to incomplete type /usr/src/lib/libutil/login_times.c:128: warning: implicit declaration of function `mktime' /usr/src/lib/libutil/login_times.c: In function `in_lt': /usr/src/lib/libutil/login_times.c:140: warning: implicit declaration of function `localtime' /usr/src/lib/libutil/login_times.c:140: warning: passing arg 2 of `in_ltm' makes pointer from integer without a cast /usr/src/lib/libutil/login_times.c: In function `in_lts': /usr/src/lib/libutil/login_times.c:159: warning: passing arg 2 of `in_ltms' makes pointer from integer without a cast *** Error code 1 Stop in /usr/src/lib/libutil. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 3:22:24 2001 Delivered-To: freebsd-stable@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 69D3D37B491 for ; Wed, 14 Feb 2001 03:22:20 -0800 (PST) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id MAA99669; Wed, 14 Feb 2001 12:22:16 +0100 (CET) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: "Jacques A. Vidrine" Cc: stable@freebsd.org Subject: Re: -STABLE installworld broken? References: <20010213072426.A42268@spawn.nectar.com> From: Dag-Erling Smorgrav Date: 14 Feb 2001 12:22:16 +0100 In-Reply-To: "Jacques A. Vidrine"'s message of "Tue, 13 Feb 2001 07:24:26 -0600" Message-ID: Lines: 13 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Jacques A. Vidrine" writes: > On Tue, Feb 13, 2001 at 10:01:57AM +0100, Dag-Erling Smorgrav wrote: > > ===> gnu/usr.bin/perl/library > > install: opnames.h: No such file or directory > > *** Error code 71 > Make sure you have removed /usr/bin/miniperl. Then re-do the > buildworld, at least for the gnu/usr.bin/perl directory. That made absolutely no difference. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 4:46:12 2001 Delivered-To: freebsd-stable@freebsd.org Received: from h0040f6849012.ne.mediaone.net (h0040f6849012.ne.mediaone.net [24.147.179.35]) by hub.freebsd.org (Postfix) with ESMTP id 8879D37B401 for ; Wed, 14 Feb 2001 04:46:07 -0800 (PST) Received: (from eric@localhost) by h0040f6849012.ne.mediaone.net (8.11.2/8.11.1) id f1ECk0W16630; Wed, 14 Feb 2001 07:46:00 -0500 (EST) (envelope-from eric) Date: Wed, 14 Feb 2001 07:46:00 -0500 From: Eric Johnson To: "Corey G." Cc: freebsd-stable@FreeBSD.ORG Subject: Re: EMU10K - SB Live - unable to map register space Message-ID: <20010214074600.A16573@h0040f6849012.ne.mediaone.net> Reply-To: eric@coding-zone.com References: <20010213195934.A55128@telocity.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010213195934.A55128@telocity.com>; from ctgaff@telocity.com on Tue, Feb 13, 2001 at 07:59:34PM -0600 X-MUA-OS: FreeBSD 4.2-STABLE i386 X-Uptime: 7:31AM up 8 days, 1:12, 1 user, load averages: 0.00, 0.00, 0.00 X-Disclaimer: #include Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Feb 13, 2001 at 07:59:34PM -0600, Corey G. wrote: > With a stable snapshot that is two weeks old I get the following error > with my SB Live audio card. I am not sure if it's related to the OS or > my hardware since it was not installed previously. > > pcm0: at device 15.0 on pci0 > pcm0: unable to map register space > device_probe_and_attach: pcm0 attach returned 6 > > I turned off PNP in the bios as someone recommended earlier but it did > not solve the problem. Any suggestions would be appreciated. Hi Corey, I had the same error message with my SBLive, but turning off PNP in my did work. Maybe your bios needs updating? I didn't do anything else except the MAKEDEV snd0, but by then I think the card was successfully probed. -- Best Regards, Eric Johnson (eric@coding-zone.com && http://www.coding-zone.com) Try not to have a good time ... This is supposed to be educational. -- Charles Schulz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 6:51:43 2001 Delivered-To: freebsd-stable@freebsd.org Received: from nothing-going-on.demon.co.uk (unknown [212.209.126.61]) by hub.freebsd.org (Postfix) with ESMTP id 6B3E237B491 for ; Wed, 14 Feb 2001 06:51:38 -0800 (PST) Received: (from nik@localhost) by nothing-going-on.demon.co.uk (8.11.1/8.11.1) id f1EEs6412470 for freebsd-stable@freebsd.org; Wed, 14 Feb 2001 14:54:06 GMT (envelope-from nik) Date: Wed, 14 Feb 2001 08:19:12 +0000 From: Nik Clayton To: Nevermind Cc: Paul Bauer , freebsd-stable@FreeBSD.ORG Subject: Re: Creating a 4.2-STABLE iso Message-ID: <20010214081912.A586@canyon.nothing-going-on.org> References: <20010214032801.C17900@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010214032801.C17900@nevermind.kiev.ua>; from never@nevermind.kiev.ua on Wed, Feb 14, 2001 at 03:28:02AM +0200 Organization: FreeBSD Project Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Feb 14, 2001 at 03:28:02AM +0200, Nevermind wrote: > On Tue, Feb 13, 2001 at 06:38:45PM -0600, you wrote: > I've asked about this before. So that's my howto: > > 1. You will need the while cvs repository preferablely on local hard disks. > You can get it by cvsuping 'cvs-all' target. > 7. burn it on CD using burncd for example. > > P.S. Maybe it worth to include this in handbook? Yes. Actually, I'd rather see this as a separate article, that talks about building your own FreeBSD release. Would you care to write (or at least start) something like that. You could cover minimum system requirements, how to make your own custom build (how to build a release with a different kernel, or with different components added in), and so on. N -- Internet connection, $19.95 a month. Computer, $799.95. Modem, $149.95. Telephone line, $24.95 a month. Software, free. USENET transmission, hundreds if not thousands of dollars. Thinking before posting, priceless. Somethings in life you can't buy. For everything else, there's MasterCard. -- Graham Reed, in the Scary Devil Monastery To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 7: 1:20 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mail.2gen.net (mail.2gen.net [209.240.46.130]) by hub.freebsd.org (Postfix) with ESMTP id 180F937B491 for ; Wed, 14 Feb 2001 07:01:17 -0800 (PST) Received: from demutis (demutis.2gen.net [209.240.46.189]) by mail.2gen.net (8.10.2/8.10.2) with SMTP id f1EF21O17042 for ; Wed, 14 Feb 2001 10:02:01 -0500 (EST) Message-Id: <3.0.3.32.20010214100612.00e47a40@tristo.netinc.ca> X-Sender: maillist@tristo.netinc.ca (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.3 (32) Date: Wed, 14 Feb 2001 10:06:12 -0500 To: From: Michael DeMutis Subject: Drive not coming up In-Reply-To: <021801c094a0$173fa8a0$931576d8@inethouston.net> References: <200102110405.UAA90354@miles.cs.washington.edu> <00da01c093e0$72429f20$931576d8@inethouston.net> <001601c0949f$3cf34260$1d750140@cascade> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there. I'm running the 3.X stable tree. I added another hard drive, and went to /stand/sysinstall to install the drive. That all worked fine, I used DiskLabel to set my mount point to /backup It all works fine, until I reboot. When I reboot the drive is not mounted, and I have to use DiskLabel again in order to get the drive to show up. I don't lose any data in the process, it's just an inconvienience. Another thing to note is that the drive is not listing in /etc/fstab Here is my /etc/fstab# Device Mountpoint FStype Options Dump Pass# /dev/da0s1b none swap sw 0 0 /dev/da0s1a / ufs rw 1 1 /dev/da0s1f /usr ufs rw 2 2 /dev/da0s1e /var ufs rw 2 2 proc /proc procfs rw 0 0 Thanks in advance. -mike ---------------------------------------------------------------------------- Michael DeMutis System's Administrator || 2Gen.Inc. 143 James Street South, Suite 300, Hamilton, Ontario, Canada L8P 3A1 email: mike@2gen.net website: http://www.2gen.net/ Phone: 905-308-9155 Fax: 905-308-9519 ICQ UIN: 1257176 "Merging Media & Idea To Bring Internet Exposure to Innovative Businesses" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 7: 3:39 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mail.2gen.net (mail.2gen.net [209.240.46.130]) by hub.freebsd.org (Postfix) with ESMTP id 577C737B491 for ; Wed, 14 Feb 2001 07:03:36 -0800 (PST) Received: from demutis (demutis.2gen.net [209.240.46.189]) by mail.2gen.net (8.10.2/8.10.2) with SMTP id f1EF4KO17058 for ; Wed, 14 Feb 2001 10:04:20 -0500 (EST) Message-Id: <3.0.3.32.20010214100833.00e46018@tristo.netinc.ca> X-Sender: maillist@tristo.netinc.ca (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.3 (32) Date: Wed, 14 Feb 2001 10:08:33 -0500 To: From: Michael DeMutis Subject: Named crashing Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there. I'm running the 3.X stable tree. For some reason, my named crashes now. It has never crashed before, but recently it has been crashing after being up about 2 days. The message that shows up is: pid 37422 (named), uid 0: exited on signal 11 (core dumped) Any ideas why this could be happening all of a sudden? -mike ---------------------------------------------------------------------------- Michael DeMutis System's Administrator || 2Gen.Inc. 143 James Street South, Suite 300, Hamilton, Ontario, Canada L8P 3A1 email: mike@2gen.net website: http://www.2gen.net/ Phone: 905-308-9155 Fax: 905-308-9519 ICQ UIN: 1257176 "Merging Media & Idea To Bring Internet Exposure to Innovative Businesses" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 7: 8:11 2001 Delivered-To: freebsd-stable@freebsd.org Received: from picspc01.pics.com (picspc01.pics.com [192.135.189.20]) by hub.freebsd.org (Postfix) with ESMTP id CF54537B491 for ; Wed, 14 Feb 2001 07:08:03 -0800 (PST) Received: from pics2000.hq.pics.com (pics2000.pics.com [192.135.189.30]) by picspc01.pics.com (8.11.1/8.9.3) with ESMTP id f1EF7lK25057; Wed, 14 Feb 2001 10:07:47 -0500 (EST) (envelope-from tpr@hq.pics.com) content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 Subject: RE: Named crashing Date: Wed, 14 Feb 2001 10:11:42 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Named crashing Thread-Index: AcCWmAcVFPCBeNvqTcOcDX6KrYoAXQAAAfPg From: "Terry Rossi" To: "Michael DeMutis" , Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Michael, I have been having the same problem with my bind installation on both 3-5stable and now 4.2 release. The only change in my environment has been the addition of a=20 Windows 2000 domain and the use of dynamic updates into my unix bind from the Domain controller on the Windows 2000 DNS. Let me know if you come up with anything. > -----Original Message----- > From: Michael DeMutis [mailto:maillist@2gen.net] > Sent: Wednesday, February 14, 2001 10:09 AM > To: freebsd-stable@FreeBSD.ORG > Subject: Named crashing >=20 >=20 >=20 > Hi there. >=20 > I'm running the 3.X stable tree. >=20 > For some reason, my named crashes now. It has never crashed=20 > before, but > recently it has been crashing after being up about 2 days. =20 >=20 > The message that shows up is: > pid 37422 (named), uid 0: exited on signal 11 (core dumped) >=20 > Any ideas why this could be happening all of a sudden? >=20 > -mike > -------------------------------------------------------------- > -------------- > Michael DeMutis =20 > System's Administrator || 2Gen.Inc. =20 > 143 James Street South, Suite 300, Hamilton, Ontario, Canada L8P 3A1 > email: mike@2gen.net website: http://www.2gen.net/ > Phone: 905-308-9155 Fax: 905-308-9519 ICQ UIN: 1257176 > "Merging Media & Idea To Bring Internet Exposure to=20 > Innovative Businesses" >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 7:17:20 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mail2.bna.bellsouth.net (mail2.bna.bellsouth.net [205.152.150.14]) by hub.freebsd.org (Postfix) with ESMTP id F308637B4EC for ; Wed, 14 Feb 2001 07:17:13 -0800 (PST) Received: from bellsouth.net (adsl-20-110-126.bna.bellsouth.net [66.20.110.126]) by mail2.bna.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id KAA14090; Wed, 14 Feb 2001 10:15:11 -0500 (EST) Message-ID: <3A8AA108.7050007@bellsouth.net> Date: Wed, 14 Feb 2001 09:15:20 -0600 From: Drew Sanford User-Agent: Mozilla/5.0 (X11; U; Linux 2.2.12 i386; en-US; m18) Gecko/20010131 Netscape6/6.01 X-Accept-Language: en MIME-Version: 1.0 To: Terry Rossi Cc: Michael DeMutis , freebsd-stable@FreeBSD.ORG Subject: Re: Named crashing References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Just to add to the mix this happened to me two days ago on my 4.0-Release box - I've been meaning to upgrade it, but upgrading this particular box is a real pain. I'd love to know what everyone comes up with. Terry Rossi wrote: > Michael, > > I have been having the same problem with my bind installation > on both 3-5stable and now 4.2 release. > > The only change in my environment has been the addition of a > Windows 2000 domain and the use of dynamic updates into my unix > bind from the Domain controller on the Windows 2000 DNS. > > Let me know if you come up with anything. > > >> -----Original Message----- >> From: Michael DeMutis [mailto:maillist@2gen.net] >> Sent: Wednesday, February 14, 2001 10:09 AM >> To: freebsd-stable@FreeBSD.ORG >> Subject: Named crashing >> >> >> >> Hi there. >> >> I'm running the 3.X stable tree. >> >> For some reason, my named crashes now. It has never crashed >> before, but >> recently it has been crashing after being up about 2 days. >> >> The message that shows up is: >> pid 37422 (named), uid 0: exited on signal 11 (core dumped) >> >> Any ideas why this could be happening all of a sudden? >> >> -mike >> -------------------------------------------------------------- >> -------------- >> Michael DeMutis >> System's Administrator || 2Gen.Inc. >> 143 James Street South, Suite 300, Hamilton, Ontario, Canada L8P 3A1 >> email: mike@2gen.net website: http://www.2gen.net/ >> Phone: 905-308-9155 Fax: 905-308-9519 ICQ UIN: 1257176 >> "Merging Media & Idea To Bring Internet Exposure to >> Innovative Businesses" >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-stable" in the body of the message >> > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Cotharyus lauasanf@bellsouth.net ICQ: 8690555 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 7:42:30 2001 Delivered-To: freebsd-stable@freebsd.org Received: from pan.ch.intel.com (chfdns01.ch.intel.com [143.182.246.24]) by hub.freebsd.org (Postfix) with ESMTP id CB7EB37B401 for ; Wed, 14 Feb 2001 07:42:27 -0800 (PST) Received: from sedona.intel.com (sedona.ch.intel.com [143.182.218.21]) by pan.ch.intel.com (8.9.1a+p1/8.9.1/d: relay.m4,v 1.35 2001/02/12 09:03:45 smothers Exp $) with ESMTP id PAA04137 for ; Wed, 14 Feb 2001 15:42:26 GMT Received: from hip186.ch.intel.com (hip186.ch.intel.com [143.182.225.68]) by sedona.intel.com (8.9.1a/8.9.1/d: sendmail.cf,v 1.14 2001/01/02 18:39:59 steved Exp $) with ESMTP id IAA18628 for ; Wed, 14 Feb 2001 08:42:26 -0700 (MST) X-Envelope-To: X-Envelope-From: jreynold@sedona.ch.intel.com Received: (from jreynold@localhost) by hip186.ch.intel.com (8.9.1a/8.9.1/d: client.m4,v 1.3 1998/09/29 16:36:11 sedayao Exp sedayao $) id KAA14757; Wed, 14 Feb 2001 10:42:26 -0500 (EST) X-Authentication-Warning: hip186.ch.intel.com: jreynold set sender to jreynold@sedona.ch.intel.com using -f From: John Reynolds~ MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14986.42850.626368.28696@hip186.ch.intel.com> Date: Wed, 14 Feb 2001 08:42:26 -0700 (MST) To: freebsd-stable@freebsd.org Subject: Re: sshd in 4.2-STABLE In-Reply-To: <20010213192504.A61478@mollari.cthul.hu> References: <20010213112727.C56175@mollari.cthul.hu> <20010213192504.A61478@mollari.cthul.hu> X-Mailer: VM 6.75 under Emacs 20.7.2 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ On Tuesday, February 13, Kris Kennaway wrote: ] > > Actually, I think I was wrong (I was thinking of the option to merge > based on diffs). Still, talk to Doug about the suggestion. > > Kris I have a local hack to mergemaster which goes in an removes certain files from the "tmproot" that I don't want mergemaster to screw with (named.conf, sendmail.cf, passwd, to name a few). I suppose you could do the same thing using the MM_PRE_COMPARE_SCRIPT variable--point that at a script which pre-nuked certain files. I meant to play with it last night, but got distracted with the Real World(tm) (not the MTV series ;-). -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | John Reynolds WCCG, CCE, Higher Levels of Abstraction | | Intel Corporation MS: CH6-210 Phone: 480-554-9092 pgr: 602-868-6512 | | jreynold@sedona.ch.intel.com http://www-aec.ch.intel.com/~jreynold/ | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 7:50:56 2001 Delivered-To: freebsd-stable@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id A6F7737B491 for ; Wed, 14 Feb 2001 07:50:45 -0800 (PST) Received: from [64.110.74.50] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 14T47U-0006LZ-00; Wed, 14 Feb 2001 18:48:40 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.20 #1) id 14T494-000KZz-00; Wed, 14 Feb 2001 18:47:06 +0300 Date: Wed, 14 Feb 2001 18:47:06 +0300 From: Odhiambo Washington To: freebsd-stable@FreeBSD.ORG Cc: lauasanf@bellsouth.net Subject: Re: Named crashing Message-ID: <20010214184706.J68953@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , freebsd-stable@FreeBSD.ORG, lauasanf@bellsouth.net References: <3A8AA108.7050007@bellsouth.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="liqSWPDvh3eyfZ9k" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8AA108.7050007@bellsouth.net>; from "Drew Sanford" on Wed, Feb 14, 2001 at 09:15:20AM -0600 X-Operating-System: FreeBSD poeza.iconnect.co.ke 4.2-STABLE FreeBSD 4.2-STABLE X-Location: Mombasa, KE, East Africa Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --liqSWPDvh3eyfZ9k Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * Drew Sanford [20010214 18:19]: writing on the su= bject 'Re: Named crashing' Drew>=20 Drew> Just to add to the mix this happened to me two days ago on my=20 Drew> 4.0-Release box - I've been meaning to upgrade it, but upgrading this= =20 Drew> particular box is a real pain.=20 Why a real pain? Drew>=20 Drew>=20 Drew> Terry Rossi wrote: Drew>=20 Drew> > Michael, Drew> >=20 Drew> > I have been having the same problem with my bind installation Drew> > on both 3-5stable and now 4.2 release. Drew> >=20 Drew> > The only change in my environment has been the addition of a=20 Drew> > Windows 2000 domain and the use of dynamic updates into my unix Drew> > bind from the Domain controller on the Windows 2000 DNS. Drew> >=20 Drew> > Let me know if you come up with anything. Drew> >=20 Drew> >=20 Drew> >> -----Original Message----- Drew> >> From: Michael DeMutis [mailto:maillist@2gen.net] Drew> >> Sent: Wednesday, February 14, 2001 10:09 AM Drew> >> To: freebsd-stable@FreeBSD.ORG Drew> >> Subject: Named crashing Drew> >>=20 Drew> >>=20 Drew> >>=20 Drew> >> Hi there. Drew> >>=20 Drew> >> I'm running the 3.X stable tree. Drew> >>=20 Drew> >> For some reason, my named crashes now. It has never crashed=20 Drew> >> before, but Drew> >> recently it has been crashing after being up about 2 days. =20 Drew> >>=20 Drew> >> The message that shows up is: Drew> >> pid 37422 (named), uid 0: exited on signal 11 (core dumped) Drew> >>=20 Drew> >> Any ideas why this could be happening all of a sudden? Drew> >>=20 Drew> >> -mike Drew> >> -------------------------------------------------------------- Drew> >> -------------- Drew> >> Michael DeMutis =20 Drew> >> System's Administrator || 2Gen.Inc. =20 Drew> >> 143 James Street South, Suite 300, Hamilton, Ontario, Canada L8P 3= A1 Drew> >> email: mike@2gen.net website: http://www.2gen.net/ Drew> >> Phone: 905-308-9155 Fax: 905-308-9519 ICQ UIN: 1257176 Drew> >> "Merging Media & Idea To Bring Internet Exposure to=20 Drew> >> Innovative Businesses" Drew> >>=20 Drew> >>=20 Drew> >> To Unsubscribe: send mail to majordomo@FreeBSD.org Drew> >> with "unsubscribe freebsd-stable" in the body of the message Drew> >>=20 Drew> >=20 Drew> >=20 Drew> >=20 Drew> > To Unsubscribe: send mail to majordomo@FreeBSD.org Drew> > with "unsubscribe freebsd-stable" in the body of the message Drew>=20 Drew>=20 Drew> --=20 Drew> Cotharyus Drew> lauasanf@bellsouth.net Drew> ICQ: 8690555 Drew>=20 Drew>=20 Drew>=20 Drew> To Unsubscribe: send mail to majordomo@FreeBSD.org Drew> with "unsubscribe freebsd-stable" in the body of the message Drew>=20 -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KE. I do desire we may be better strangers. -William Shakespeare, "As You Like = It"=20 --liqSWPDvh3eyfZ9k Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6iqh5A2k+MNyI/bERAt1eAJ49vnI/UUx5P4zEoVqYQgawiKahRACfSbby UXygni5apmDUi3Ovz/knzUY= =P5lk -----END PGP SIGNATURE----- --liqSWPDvh3eyfZ9k-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 7:55:13 2001 Delivered-To: freebsd-stable@freebsd.org Received: from paperboy.sixforty.co.uk (paperboy.sixforty.co.uk [195.10.242.11]) by hub.freebsd.org (Postfix) with ESMTP id ADD7737B4EC for ; Wed, 14 Feb 2001 07:55:08 -0800 (PST) Received: (from root@localhost) by paperboy.sixforty.co.uk (8.11.1/8.11.1) id f1EFt7O17784 for freebsd-stable@freebsd.org; Wed, 14 Feb 2001 15:55:07 GMT (envelope-from lawrence@epcdirect.co.uk) Delivered-To: Received: from dellbert (daisy.int.epcdirect.co.uk [192.168.6.200]) by paperboy.sixforty.co.uk (8.11.1/8.11.1av) with SMTP id f1EFt5p17776 for ; Wed, 14 Feb 2001 15:55:05 GMT (envelope-from lawrence@epcdirect.co.uk) From: "Lawrence Farr" To: Subject: Re: Named crashing Date: Wed, 14 Feb 2001 15:54:59 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal X-Virus-Scanned: by AMaViS perl-10 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I run this off a crontab every 5 minutes. It's not pretty, but it works, and keeps the server going till I can get riund and upgrade them all! ------------------------------------------------------------------------ #!/bin/sh stat=`ps ax | grep named | grep -v "grep" | /usr/bin/grep -v "/bin"` if ! [ "$stat" = "" ] then else echo "Doh!" | mail -s "Named is dead, restarting" root /usr/sbin/named fi --------------------------------------------------------------------------- Lawrence Farr EPC Direct Limited mailto:lawrence@epcdirect.co.uk T:01179666123 F:01179666111 M:07970780901 > -----Original Message----- > From: owner-freebsd-stable@FreeBSD.ORG > [mailto:owner-freebsd-stable@FreeBSD.ORG]On Behalf Of Drew Sanford > Sent: 14 February 2001 15:15 > To: Terry Rossi > Cc: Michael DeMutis; freebsd-stable@FreeBSD.ORG > Subject: Re: Named crashing > > > > Just to add to the mix this happened to me two days ago on my > 4.0-Release box - I've been meaning to upgrade it, but upgrading this > particular box is a real pain. I'd love to know what everyone > comes up with. > > > Terry Rossi wrote: > > > Michael, > > > > I have been having the same problem with my bind installation > > on both 3-5stable and now 4.2 release. > > > > The only change in my environment has been the addition of a > > Windows 2000 domain and the use of dynamic updates into my unix > > bind from the Domain controller on the Windows 2000 DNS. > > > > Let me know if you come up with anything. > > > > > >> -----Original Message----- > >> From: Michael DeMutis [mailto:maillist@2gen.net] > >> Sent: Wednesday, February 14, 2001 10:09 AM > >> To: freebsd-stable@FreeBSD.ORG > >> Subject: Named crashing > >> > >> > >> > >> Hi there. > >> > >> I'm running the 3.X stable tree. > >> > >> For some reason, my named crashes now. It has never crashed > >> before, but > >> recently it has been crashing after being up about 2 days. > >> > >> The message that shows up is: > >> pid 37422 (named), uid 0: exited on signal 11 (core dumped) > >> > >> Any ideas why this could be happening all of a sudden? > >> > >> -mike > >> -------------------------------------------------------------- > >> -------------- > >> Michael DeMutis > >> System's Administrator || 2Gen.Inc. > >> 143 James Street South, Suite 300, Hamilton, Ontario, Canada L8P 3A1 > >> email: mike@2gen.net website: http://www.2gen.net/ > >> Phone: 905-308-9155 Fax: 905-308-9519 ICQ UIN: 1257176 > >> "Merging Media & Idea To Bring Internet Exposure to > >> Innovative Businesses" > >> > >> > >> To Unsubscribe: send mail to majordomo@FreeBSD.org > >> with "unsubscribe freebsd-stable" in the body of the message > >> > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > -- > Cotharyus > lauasanf@bellsouth.net > ICQ: 8690555 > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 8: 1:57 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by hub.freebsd.org (Postfix) with ESMTP id E354D37B401 for ; Wed, 14 Feb 2001 08:01:47 -0800 (PST) Received: from simoeon.sentex.net (simeon.sentex.ca [209.112.4.47]) by smtp1.sentex.ca (8.11.2/8.11.1) with ESMTP id f1EG0tf13861; Wed, 14 Feb 2001 11:00:55 -0500 (EST) (envelope-from mike@sentex.net) Message-Id: <5.0.1.4.0.20010214105341.022b3440@marble.sentex.ca> X-Sender: mdtpop@marble.sentex.ca X-Mailer: QUALCOMM Windows Eudora Version 5.0.1 Date: Wed, 14 Feb 2001 10:54:29 -0500 To: Drew Sanford From: Mike Tancsa Subject: Re: Named crashing Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: <3A8AA108.7050007@bellsouth.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I take it your are running 8.2.3 ? Everything prior to that in the 8.x tree is remotely exploitable. Particularly dangerous if you are running it as root. ---Mike At 09:15 AM 2/14/01 -0600, Drew Sanford wrote: >Just to add to the mix this happened to me two days ago on my 4.0-Release >box - I've been meaning to upgrade it, but upgrading this particular box >is a real pain. I'd love to know what everyone comes up with. > > >Terry Rossi wrote: > >>Michael, >>I have been having the same problem with my bind installation >>on both 3-5stable and now 4.2 release. >>The only change in my environment has been the addition of a Windows 2000 >>domain and the use of dynamic updates into my unix >>bind from the Domain controller on the Windows 2000 DNS. >>Let me know if you come up with anything. >> >>>-----Original Message----- >>>From: Michael DeMutis [mailto:maillist@2gen.net] >>>Sent: Wednesday, February 14, 2001 10:09 AM >>>To: freebsd-stable@FreeBSD.ORG >>>Subject: Named crashing >>> >>>Hi there. >>>I'm running the 3.X stable tree. >>>For some reason, my named crashes now. It has never crashed before, but >>>recently it has been crashing after being up about 2 days. >>>The message that shows up is: >>>pid 37422 (named), uid 0: exited on signal 11 (core dumped) >>>Any ideas why this could be happening all of a sudden? >>>-mike >>>-------------------------------------------------------------- >>>-------------- >>>Michael DeMutis >>>System's Administrator || 2Gen.Inc. >>>143 James Street South, Suite 300, Hamilton, Ontario, Canada L8P 3A1 >>>email: mike@2gen.net website: http://www.2gen.net/ >>>Phone: 905-308-9155 Fax: 905-308-9519 ICQ UIN: 1257176 >>>"Merging Media & Idea To Bring Internet Exposure to Innovative Businesses" >>> >>>To Unsubscribe: send mail to majordomo@FreeBSD.org >>>with "unsubscribe freebsd-stable" in the body of the message >> >>To Unsubscribe: send mail to majordomo@FreeBSD.org >>with "unsubscribe freebsd-stable" in the body of the message > > >-- >Cotharyus >lauasanf@bellsouth.net >ICQ: 8690555 > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 8: 2: 4 2001 Delivered-To: freebsd-stable@freebsd.org Received: from nebula.cybercable.fr (d217.dhcp212-126.cybercable.fr [212.198.126.217]) by hub.freebsd.org (Postfix) with ESMTP id E085737B503 for ; Wed, 14 Feb 2001 08:02:00 -0800 (PST) Received: (from mux@localhost) by nebula.cybercable.fr (8.11.2/8.11.2) id f1EG0ML05755; Wed, 14 Feb 2001 17:00:22 +0100 (CET) (envelope-from mux) Date: Wed, 14 Feb 2001 17:00:21 +0100 From: mux To: Drew Sanford Cc: stable@freebsd.org Subject: Re: Named crashing Message-ID: <20010214170020.A588@nebula.cybercable.fr> References: <3A8AA108.7050007@bellsouth.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8AA108.7050007@bellsouth.net>; from lauasanf@bellsouth.net on Wed, Feb 14, 2001 at 09:15:20AM -0600 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Drew Sanford wrote: > Just to add to the mix this happened to me two days ago on my > 4.0-Release box - I've been meaning to upgrade it, but upgrading this > particular box is a real pain. I'd love to know what everyone comes up with. > > Terry Rossi wrote: > > > Michael, > > > > I have been having the same problem with my bind installation > > on both 3-5stable and now 4.2 release. > > > > The only change in my environment has been the addition of a > > Windows 2000 domain and the use of dynamic updates into my unix > > bind from the Domain controller on the Windows 2000 DNS. > > > > Let me know if you come up with anything. > > > >> Hi there. > >> > >> I'm running the 3.X stable tree. > >> > >> For some reason, my named crashes now. It has never crashed > >> before, but > >> recently it has been crashing after being up about 2 days. > >> > >> The message that shows up is: > >> pid 37422 (named), uid 0: exited on signal 11 (core dumped) > >> > >> Any ideas why this could be happening all of a sudden? It might be because of attacks on your named. Be sure to run the latest BIND 8.2.3. Older versions are vulnerable and running a linux exploit on it would make it crash (just a guess...). Maxime Henrion -- Don't be fooled by cheap finnish imitations ; BSD is the One True Code Key fingerprint = F9B6 1D5A 4963 331C 88FC CA6A AB50 1EF2 8CBE 99D6 Public Key : http://www.epita.fr/~henrio_m/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 8: 2:10 2001 Delivered-To: freebsd-stable@freebsd.org Received: from diskfarm.firehouse.net (rdu26-60-051.nc.rr.com [66.26.60.51]) by hub.freebsd.org (Postfix) with ESMTP id 8154437B401 for ; Wed, 14 Feb 2001 08:02:07 -0800 (PST) Received: (from abc@localhost) by diskfarm.firehouse.net (8.11.1/8.11.1) id f1EG1Fm75149; Wed, 14 Feb 2001 11:01:15 -0500 (EST) (envelope-from abc) Date: Wed, 14 Feb 2001 11:01:15 -0500 From: Alan Clegg To: Drew Sanford Cc: Terry Rossi , Michael DeMutis , freebsd-stable@FreeBSD.ORG Subject: Re: Named crashing Message-ID: <20010214110115.J72602@diskfarm.firehouse.net> References: <3A8AA108.7050007@bellsouth.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <3A8AA108.7050007@bellsouth.net>; from lauasanf@bellsouth.net on Wed, Feb 14, 2001 at 09:15:20AM -0600 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Unless the network is lying to me again, Drew Sanford said: > > Just to add to the mix this happened to me two days ago on my > 4.0-Release box - I've been meaning to upgrade it, but upgrading this > particular box is a real pain. I'd love to know what everyone comes up with. Can I place a guess in the pool that says that someone is working on an exploit that at this point only kills the server? AlanC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 8: 4: 6 2001 Delivered-To: freebsd-stable@freebsd.org Received: from picspc01.pics.com (picspc01.pics.com [192.135.189.20]) by hub.freebsd.org (Postfix) with ESMTP id A89D237B401 for ; Wed, 14 Feb 2001 08:04:00 -0800 (PST) Received: from pics2000.hq.pics.com (pics2000.pics.com [192.135.189.30]) by picspc01.pics.com (8.11.1/8.9.3) with ESMTP id f1EG3HK87279; Wed, 14 Feb 2001 11:03:17 -0500 (EST) (envelope-from tpr@hq.pics.com) content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: RE: Named crashing X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 Date: Wed, 14 Feb 2001 11:07:39 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Named crashing Thread-Index: AcCWoCeQ8XcVBPEaR1WjKcC9RFs8lwAAATaQ From: "Terry Rossi" To: "mux" , "Drew Sanford" Cc: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am running 8.2.3 > -----Original Message----- > From: mux [mailto:mux@qualys.com] > Sent: Wednesday, February 14, 2001 11:00 AM > To: Drew Sanford > Cc: stable@FreeBSD.ORG > Subject: Re: Named crashing >=20 >=20 > Drew Sanford wrote: > > Just to add to the mix this happened to me two days ago on my=20 > > 4.0-Release box - I've been meaning to upgrade it, but=20 > upgrading this=20 > > particular box is a real pain. I'd love to know what=20 > everyone comes up with. > >=20 > > Terry Rossi wrote: > >=20 > > > Michael, > > >=20 > > > I have been having the same problem with my bind installation > > > on both 3-5stable and now 4.2 release. > > >=20 > > > The only change in my environment has been the addition of a=20 > > > Windows 2000 domain and the use of dynamic updates into my unix > > > bind from the Domain controller on the Windows 2000 DNS. > > >=20 > > > Let me know if you come up with anything. > > >=20 > > >> Hi there. > > >>=20 > > >> I'm running the 3.X stable tree. > > >>=20 > > >> For some reason, my named crashes now. It has never crashed=20 > > >> before, but > > >> recently it has been crashing after being up about 2 days. =20 > > >>=20 > > >> The message that shows up is: > > >> pid 37422 (named), uid 0: exited on signal 11 (core dumped) > > >>=20 > > >> Any ideas why this could be happening all of a sudden? >=20 > It might be because of attacks on your named. Be sure to run=20 > the latest BIND > 8.2.3. Older versions are vulnerable and running a linux=20 > exploit on it would > make it crash (just a guess...). >=20 > Maxime Henrion > --=20 > Don't be fooled by cheap finnish imitations ; BSD is the One True Code > Key fingerprint =3D F9B6 1D5A 4963 331C 88FC CA6A AB50 1EF2 8CBE 99D6 > Public Key : http://www.epita.fr/~henrio_m/ >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 8: 7: 1 2001 Delivered-To: freebsd-stable@freebsd.org Received: from relay2.agava.net.ru (2.oivt.mipt.ru [193.125.142.2]) by hub.freebsd.org (Postfix) with ESMTP id 1961937B401; Wed, 14 Feb 2001 08:06:50 -0800 (PST) Received: from gw.office.agava.ru (2.oivt.mipt.ru [193.125.142.2]) by relay2.agava.net.ru (Postfix) with ESMTP id AEE9F43495; Wed, 14 Feb 2001 19:06:44 +0300 (MSK) Received: from juil.domain (juil.domain [192.168.1.50]) by gw.office.agava.ru (Postfix) with ESMTP id 8B5845EBA; Wed, 14 Feb 2001 19:06:44 +0300 (MSK) Received: by juil.domain (Postfix, from userid 1001) id 402E591; Wed, 14 Feb 2001 19:06:52 +0300 (MSK) To: freebsd-stable@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: XFree86 4.0.2 craches on switch between virtual consoles From: Ilya Martynov Date: 14 Feb 2001 19:06:50 +0300 Message-ID: <86wvat6yg5.fsf@juil.domain> Lines: 27 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Have anybody seen (and know cure) next problem? When I try to switch on another virtual console from XFree86 it drops to core. Since I've xdm running right after X server dies another tries to start. But new instance of X server puts video adapter in some bad state. For a moment I can see garbage on display and then just black screeen. After this I can only reboot my PC becouse becouse evening killing xdm and/or X server doesn't restore normal state of video adapter. My video card: i810 :( My system info: XFree86 4.0.2_6 (build from port), 4.2-STABLE (cvsup and make world on Feb 8) I've not seen it with XFree86 4.0.1_5. However I've installed XFree86 4.0.2_6 before last cvsup and make world so I'm not sure that something is broken in 4.0.2. -- Ilya Martynov AGAVA Software Company, http://www.agava.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 8:11:14 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id B9C2D37B401 for ; Wed, 14 Feb 2001 08:11:06 -0800 (PST) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id LAA08517 for ; Wed, 14 Feb 2001 11:11:03 -0500 (EST) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id LAA19931 for ; Wed, 14 Feb 2001 11:11:01 -0500 (EST) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G8R8YC00.HHK; Wed, 14 Feb 2001 11:11:00 -0500 Message-ID: <3A8AAE3D.C3B44FA8@mitre.org> Date: Wed, 14 Feb 2001 11:11:41 -0500 From: "Andresen,Jason R." X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Odhiambo Washington Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Named crashing References: <3A8AA108.7050007@bellsouth.net> <20010214184706.J68953@poeza.iconnect.co.ke> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Odhiambo Washington wrote: > > * Drew Sanford [20010214 18:19]: writing on the subject 'Re: Named crashing' > Drew> > Drew> Just to add to the mix this happened to me two days ago on my > Drew> 4.0-Release box - I've been meaning to upgrade it, but upgrading this > Drew> particular box is a real pain. > > Why a real pain? > > Drew> > Drew> > Drew> Terry Rossi wrote: > Drew> > Drew> > Michael, > Drew> > > Drew> > I have been having the same problem with my bind installation > Drew> > on both 3-5stable and now 4.2 release. > Drew> > > Drew> > The only change in my environment has been the addition of a > Drew> > Windows 2000 domain and the use of dynamic updates into my unix > Drew> > bind from the Domain controller on the Windows 2000 DNS. > Drew> > > Drew> > Let me know if you come up with anything. Hmm, we have a similar problem with routed on our local machines. Unfortunatly we are tied to the 4.0 kernel for now (ALTQ support+a pile of kernel mods) so we just did this: in rc.network, change: case ${router_enable} in [Yy][Ee][Ss]) echo -n " ${router}"; ${router} ${router_flags} ;; esac to: case ${router_enable} in [Yy][Ee][Ss]) echo -n " ${router}" ( while true ; do ${router} -d ${router_flags} ; done )& ;; esac Just be careful to give named the switch that prevents it from going into the background or you will forkbomb yourself on boot. -- _ _ _ ___ ____ ___ ______________________________________ / \/ \ | ||_ _|| _ \|___| | Jason Andresen -- jandrese@mitre.org / /\/\ \ | | | | | |/ /|_|_ | Views expressed may not reflect those /_/ \_\|_| |_| |_|\_\|___| | of the Mitre Corporation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 8:20: 0 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hecubus.mx (CC2-1326.charter-stl.com [24.217.117.56]) by hub.freebsd.org (Postfix) with ESMTP id BBBED37B491 for ; Wed, 14 Feb 2001 08:19:55 -0800 (PST) Received: (from ajh3@localhost) by hecubus.mx (8.11.2/8.11.1) id f1EGJZI94316 for freebsd-stable@freebsd.org; Wed, 14 Feb 2001 10:19:35 -0600 (CST) (envelope-from ajh3) Date: Wed, 14 Feb 2001 10:19:35 -0600 From: Andrew Hesford To: FreeBSD-stable Subject: Re: XFree86 4.0.2 craches on switch between virtual consoles Message-ID: <20010214101935.B94246@cec.wustl.edu> References: <86wvat6yg5.fsf@juil.domain> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <86wvat6yg5.fsf@juil.domain>; from m_ilya@agava.com on Wed, Feb 14, 2001 at 07:06:50PM +0300 X-Loop: Andrew Hesford Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Join the club; mine crashes too, again with an i810. Actually, I just stuck a second card in there, an ATI Xpert... I wonder if the crashing will stop if I make the ATI my primary adapter. Anyway, it's a known problem, but not universal. Some people suffer from it, like me, and I think some people are okay. The only advice I can give you, is to do what I did: go back to 4.0.1. Find an old ports tree and build it. There is no such problem with this version of XFree. On Wed, Feb 14, 2001 at 07:06:50PM +0300, Ilya Martynov wrote: > > Hi, > > Have anybody seen (and know cure) next problem? When I try to switch > on another virtual console from XFree86 it drops to core. Since I've > xdm running right after X server dies another tries to start. But new > instance of X server puts video adapter in some bad state. For a > moment I can see garbage on display and then just black screeen. After > this I can only reboot my PC becouse becouse evening killing xdm > and/or X server doesn't restore normal state of video adapter. > > My video card: > > i810 :( > > My system info: > > XFree86 4.0.2_6 (build from port), 4.2-STABLE (cvsup and make world on > Feb 8) > > I've not seen it with XFree86 4.0.1_5. However I've installed XFree86 > 4.0.2_6 before last cvsup and make world so I'm not sure that > something is broken in 4.0.2. > > -- > Ilya Martynov > AGAVA Software Company, http://www.agava.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Andrew Hesford - ajh3@chmod.ath.cx "355/113 -- Not the famous irrational number PI, but an incredible simulation!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 8:34:29 2001 Delivered-To: freebsd-stable@freebsd.org Received: from math.missouri.edu (math.missouri.edu [128.206.49.180]) by hub.freebsd.org (Postfix) with ESMTP id 9A60537B491 for ; Wed, 14 Feb 2001 08:34:26 -0800 (PST) Received: from math.missouri.edu (stephen@cauchy.math.missouri.edu [128.206.49.166]) by math.missouri.edu (8.9.3/8.9.3) with ESMTP id KAA73882 for ; Wed, 14 Feb 2001 10:34:26 -0600 (CST) (envelope-from stephen@math.missouri.edu) Message-ID: <3A8AB391.12D1D822@math.missouri.edu> Date: Wed, 14 Feb 2001 10:34:25 -0600 From: Stephen Montgomery-Smith Organization: University of Missouri X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-stable@FreeBSD.ORG Subject: Different approach to mergemaster Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Before mergemaster came popular, I developed my own approach to updating /etc which works rather nicely. I never did get around to trying mergemaster, but I see emails where from time to time people have troubles with it, and I thought that I would share my approach. What I have is a seperate directory called /usr/etc-chg. I run cd /usr/src/etc make DESTDIR=/usr/etc-chg/$CURRENTVERSION distrib-dirs distribution where $CURRENTVERSION is some label describing the current make world that I have just done (or about to do). Since I use CTM, this label is the ctm-delta number. But I am sure that other ways could be made. Then I run a script that does the following. First it looks for diffs between /usr/etc-chg/$CURRENTVERSION and /usr/etc-chg/$PREVIOUSVERSION, where $PREVIOUSVERSION is the label for the make world I did before. It looks to see which files between the two versions differ. If they differ, then it looks in /etc to see if the files in /etc and /usr/etc-chg/$PREVIOUSVERSION are the same. If that is the case, then, and only then, it updates /etc. Otherwise it prints out a helpful message (basically telling you to do the update by hand). In this way, files that you have not configured yourself get updated easily. Files that you have configured do not get changed. Thus all your changes don't get lost. I find updating /etc to be a very easy chore. Perhaps you guys might also like this approach, and maybe this could feature could be added in to mergemaster. -- Stephen Montgomery-Smith stephen@math.missouri.edu 307 Math Science Building stephen@showme.missouri.edu Department of Mathematics stephen@missouri.edu University of Missouri-Columbia Columbia, MO 65211 USA Phone (573) 882 4540 Fax (573) 882 1869 http://www.math.missouri.edu/~stephen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 8:36:38 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mail2.uniserve.com (mail2.uniserve.com [204.244.156.10]) by hub.freebsd.org (Postfix) with ESMTP id 79E4737B4EC for ; Wed, 14 Feb 2001 08:36:36 -0800 (PST) Received: from shell.uniserve.ca ([204.244.186.218]) by mail2.uniserve.com with esmtp (Exim 3.13 #1) id 14T4uo-0008DE-00; Wed, 14 Feb 2001 08:36:26 -0800 Date: Wed, 14 Feb 2001 08:36:24 -0800 (PST) From: Tom X-Sender: tom@shell.uniserve.ca To: Terry Rossi Cc: Michael DeMutis , freebsd-stable@FreeBSD.ORG Subject: RE: Named crashing In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 14 Feb 2001, Terry Rossi wrote: > > Hi there. > > > > I'm running the 3.X stable tree. > > > > For some reason, my named crashes now. It has never crashed > > before, but > > recently it has been crashing after being up about 2 days. > > > > The message that shows up is: > > pid 37422 (named), uid 0: exited on signal 11 (core dumped) Some named version have a nice remote crash bug, and there are people who are going and crashing all the DNS servers they can find. 3.5-STABLE seems to have Bind 8.2.2, which is vunerable. 4.2-RELEASE sould also seem to have a vunerable version. See http://www.isc.org from more details. 4.2-STABLE is ok though. Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 8:45:16 2001 Delivered-To: freebsd-stable@freebsd.org Received: from dirac.th.physik.uni-bonn.de (dirac.th.physik.uni-bonn.de [131.220.161.119]) by hub.freebsd.org (Postfix) with SMTP id 3772A37B401 for ; Wed, 14 Feb 2001 08:45:12 -0800 (PST) Received: (qmail 35779 invoked from network); 14 Feb 2001 16:45:09 -0000 Received: from merlin.th.physik.uni-bonn.de (131.220.161.121) by dirac.th.physik.uni-bonn.de with SMTP; 14 Feb 2001 16:45:09 -0000 Received: (qmail 34531 invoked by uid 145); 14 Feb 2001 16:45:09 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 14 Feb 2001 16:45:09 -0000 Date: Wed, 14 Feb 2001 17:45:09 +0100 (CET) From: Jan Conrad To: Subject: Drive errors under 3-STABLE Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, since a week or so we get the following messages on our 3-STABLE system (about one per day..) Feb 11 03:00:28 dirac /kernel: (da0:ahc0:0:1:0): READ(06). CDB: 8 12 2d 7f 10 0 Feb 11 03:00:41 dirac /kernel: (da0:ahc0:0:1:0): MEDIUM ERROR info:122d85 asc:11,0 Feb 11 03:00:53 dirac /kernel: (da0:ahc0:0:1:0): Unrecovered read error field replaceable unit: ea sks:80,108 Feb 11 03:01:02 dirac /kernel: (da0:ahc0:0:1:0): READ(06). CDB: 8 12 2d 8f 20 0 Feb 11 03:01:02 dirac /kernel: (da0:ahc0:0:1:0): MEDIUM ERROR info:122d8f asc:16,0 Feb 11 03:01:02 dirac /kernel: (da0:ahc0:0:1:0): Data synchronization mark error field replaceable unit: d2 sks:80,108 Feb 11 03:01:03 dirac /kernel: (da0:ahc0:0:1:0): READ(06). CDB: 8 12 2d df 20 0 Feb 11 03:01:03 dirac /kernel: (da0:ahc0:0:1:0): MEDIUM ERROR info:122df1 asc:11,0 Feb 11 03:01:03 dirac /kernel: (da0:ahc0:0:1:0): Unrecovered read error field replaceable unit: ea sks:80,108 Feb 11 03:01:03 dirac /kernel: (da0:ahc0:0:1:0): READ(06). CDB: 8 12 2d ef 10 0 Feb 11 03:01:03 dirac /kernel: (da0:ahc0:0:1:0): MEDIUM ERROR info:122df1 asc:11,0 Feb 11 03:01:03 dirac /kernel: (da0:ahc0:0:1:0): Unrecovered read error field replaceable unit: ea sks:80,108 the disc is recognized at boot time as: Feb 10 18:19:03 dirac /kernel: da0 at ahc0 bus 0 target 1 lun 0 Feb 10 18:19:03 dirac /kernel: da0: Fixed Direct Access SCSI-2 device Feb 10 18:19:03 dirac /kernel: da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled Feb 10 18:19:03 dirac /kernel: da0: 8683MB (17783112 512 byte sectors: 255H 63S/T 1106C) Does anyone have an idea what this means? regards and many thanks in advance Jan Conrad -- Physikalisches Institut der Universitaet Bonn Nussallee 12 D-53115 Bonn GERMANY To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 8:59:45 2001 Delivered-To: freebsd-stable@freebsd.org Received: from yez.hyperreal.org (penelope.ny.collab.net [64.61.9.189]) by hub.freebsd.org (Postfix) with SMTP id 29DBB37B65D for ; Wed, 14 Feb 2001 08:59:39 -0800 (PST) Received: (qmail 1506 invoked by uid 1000); 14 Feb 2001 17:00:18 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 14 Feb 2001 17:00:18 -0000 Date: Wed, 14 Feb 2001 09:00:18 -0800 (PST) From: Brian Behlendorf X-X-Sender: To: Doug Barton Cc: Greg Troxel , , Kris Kennaway Subject: Re: Upgrading config files (Was: Re: sshd in 4.2-STABLE) In-Reply-To: <3A8A1CF3.264A5C70@gorean.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 13 Feb 2001, Doug Barton wrote: > So, the question now is, does upgrading by default without forcing the > user to see the changes unload the gun, or just point it at a different > foot? The way I see it, when I do a make world, there are *lots* of things being upgraded without my awareness. The fact that something is being changed in /sbin/init is not all that different than something being changed in /etc/rc or /dev/MAKEDEV. I don't track changes in the first case (unless I follow cvs commits) and I probably won't care in the latter. I'm hard pressed to think of a file that, if I didn't edit at some point, I would care about being updated. > My feeling is that all we're doing is replacing one set of > problems with another, and losing the opportunity to educate the users > in the process. I have long been an advocate of both making "The Right > Thing" easier to understand and to accomplish, but at some level you > just can't make unix system administration any easier. There are tradeoffs, certainly. I wouldn't argue for making the replace-unless-changed algorithm the default, at least not at this point until people had a chance to work with it and found any hidden gotchas that such an approach has. Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 9: 5:52 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by hub.freebsd.org (Postfix) with ESMTP id EC63737B503 for ; Wed, 14 Feb 2001 09:05:42 -0800 (PST) Received: from simoeon.sentex.net (simeon.sentex.ca [209.112.4.47]) by smtp1.sentex.ca (8.11.2/8.11.1) with ESMTP id f1EH5Gf25535; Wed, 14 Feb 2001 12:05:16 -0500 (EST) (envelope-from mike@sentex.net) Message-Id: <5.0.1.4.0.20010214113429.02305b70@marble.sentex.ca> X-Sender: mdtpop@marble.sentex.ca X-Mailer: QUALCOMM Windows Eudora Version 5.0.1 Date: Wed, 14 Feb 2001 11:58:49 -0500 To: Tom From: Mike Tancsa Subject: RE: Named crashing Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Actually, I think 8.2.3 is somehow crashable as well. I have a machine that core dumped with 8.2.3REL pid 104 (named), uid 53: exited on signal 11 named 8.2.3-REL Mon Jan 29 12:37:34 EST 2001 > Some named version have a nice remote crash bug, and there are people >who are going and crashing all the DNS servers they can find. > > 3.5-STABLE seems to have Bind 8.2.2, which is vunerable. 4.2-RELEASE >sould also seem to have a vunerable version. See http://www.isc.org from >more details. 4.2-STABLE is ok though. > >Tom > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 9: 9: 0 2001 Delivered-To: freebsd-stable@freebsd.org Received: from wattres.Watt.COM (wattres.watt.com [205.178.120.6]) by hub.freebsd.org (Postfix) with ESMTP id A686F37B4EC for ; Wed, 14 Feb 2001 09:08:54 -0800 (PST) Received: (from news@localhost) by wattres.Watt.COM (8.11.2/8.11.2) id f1EH8se93789 for freebsd-stable@freebsd.org; Wed, 14 Feb 2001 09:08:54 -0800 (PST) (envelope-from news) Date: Wed, 14 Feb 2001 09:08:54 -0800 (PST) From: News Subsystem Message-Id: <200102141708.f1EH8se93789@wattres.Watt.COM> To: freebsd-stable@freebsd.org Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Newsgroups: local.freebsd-stable Path: not-for-mail From: steve@nospam.Watt.COM (Steve Watt) Subject: Re: Is -stable broken, or am I? X-Newsreader: trn 4.0-test74 (May 26, 2000) Sender: usenet@Watt.COM (Wattres Root) Nntp-Posting-Host: localhost.watt.com Organization: Watt Consultants, San Jose, CA, USA Message-ID: Originator: steve@nospam.Watt.COM (Steve Watt) References: <200102092218.f19MI8s47018@wattres.Watt.COM> <200102121937.f1CJbtO47588@wattres.Watt.COM> Date: Wed, 14 Feb 2001 17:08:54 GMT [ To briefly answer the subject, I was. *FAQ ADDITION BELOW* ] In article <200102121937.f1CJbtO47588@wattres.Watt.COM>, Steve Watt wrote: >In article <200102092218.f19MI8s47018@wattres.Watt.COM> I wrote: >>I did a cvsup of -stable last night (0106Z on 9 Feb), and did a >>"make buildworld". It failed during the stage 3 tools build: >>*** Error code 1 >So I tried blowing away /usr/src/contrib/binutils and redoing the buildworld. >Still no good. Any guesses on what I should try next? I found my problem, and this is probably one that should be added to the FAQ or handbook on staying -STABLE, since it seems that a very common theme is "build broken?" sorts of questions... Make absolutely sure that when you do your cvsup, you include src-all in the supfile. There seems to be a sample supfile that lists the source groups separately floting around; it is missing (at least) src-gnu, which was the cause of my pain. I suspect that other people who report strange build problems that re-CVSuping doesn't fix may be in the same boat. FWIW, the way I found my problem was to blow away the src/gnu/bin/binutils and src/gnu/lib/libgcc{,_r} and re-CVSup. When the buildworld blew because libgcc source wasn't there, I had a much better clue. -- Steve Watt KD6GGD PP-ASEL-IA ICBM: 121W 56' 57.8" / 37N 20' 14.9" Internet: steve @ Watt.COM Whois: SW32 Free time? There's no such thing. It just comes in varying prices... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 9:42:15 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-67.dsl.lsan03.pacbell.net [63.207.60.67]) by hub.freebsd.org (Postfix) with ESMTP id 1F24337B65D for ; Wed, 14 Feb 2001 09:42:08 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D245366B26; Wed, 14 Feb 2001 09:42:01 -0800 (PST) Date: Wed, 14 Feb 2001 09:42:01 -0800 From: Kris Kennaway To: Terry Rossi Cc: mux , Drew Sanford , stable@FreeBSD.ORG Subject: Re: Named crashing Message-ID: <20010214094201.A72669@mollari.cthul.hu> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="WIyZ46R2i8wDzkSu" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from tpr@pics.com on Wed, Feb 14, 2001 at 11:07:39AM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --WIyZ46R2i8wDzkSu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Feb 14, 2001 at 11:07:39AM -0500, Terry Rossi wrote: > I am running 8.2.3 8.2.3-what? -REL? -TxB? Kris --WIyZ46R2i8wDzkSu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6isNpWry0BWjoQKURAnQMAJ0Tnzqd1AmUTojvw0Vm+tfuC/k7WgCbBmHv qMDacrdX6kZgyGNi520kphA= =1ZxU -----END PGP SIGNATURE----- --WIyZ46R2i8wDzkSu-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 9:43: 9 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-67.dsl.lsan03.pacbell.net [63.207.60.67]) by hub.freebsd.org (Postfix) with ESMTP id CA33E37B65D for ; Wed, 14 Feb 2001 09:43:05 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8298166B32; Wed, 14 Feb 2001 09:43:05 -0800 (PST) Date: Wed, 14 Feb 2001 09:43:05 -0800 From: Kris Kennaway To: Alan Clegg Cc: Drew Sanford , Terry Rossi , Michael DeMutis , freebsd-stable@FreeBSD.ORG Subject: Re: Named crashing Message-ID: <20010214094305.B72669@mollari.cthul.hu> References: <3A8AA108.7050007@bellsouth.net> <20010214110115.J72602@diskfarm.firehouse.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="rJwd6BRFiFCcLxzm" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010214110115.J72602@diskfarm.firehouse.net>; from abc@firehouse.net on Wed, Feb 14, 2001 at 11:01:15AM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --rJwd6BRFiFCcLxzm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Feb 14, 2001 at 11:01:15AM -0500, Alan Clegg wrote: > Unless the network is lying to me again, Drew Sanford said:=20 > >=20 > > Just to add to the mix this happened to me two days ago on my=20 > > 4.0-Release box - I've been meaning to upgrade it, but upgrading this= =20 > > particular box is a real pain. I'd love to know what everyone comes up = with. >=20 > Can I place a guess in the pool that says that someone is working on an > exploit that at this point only kills the server? Could be, or perhaps they're just kiddies using the Linux exploit which would cause FreeBSD to crash (or they're trying to use a FreeBSD exploit and it's not working) Kris --rJwd6BRFiFCcLxzm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6isOoWry0BWjoQKURAqfAAJ9eKgr7wENTgZfSfuGWN1ausOhYoQCfUN1w JMIu7mRog/StXEVdU+HnVkY= =EYyP -----END PGP SIGNATURE----- --rJwd6BRFiFCcLxzm-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 9:44: 2 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-67.dsl.lsan03.pacbell.net [63.207.60.67]) by hub.freebsd.org (Postfix) with ESMTP id BE9F137B491 for ; Wed, 14 Feb 2001 09:43:55 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 869BB66B33; Wed, 14 Feb 2001 09:43:55 -0800 (PST) Date: Wed, 14 Feb 2001 09:43:55 -0800 From: Kris Kennaway To: Tom Cc: Terry Rossi , Michael DeMutis , freebsd-stable@FreeBSD.ORG Subject: Re: Named crashing Message-ID: <20010214094355.C72669@mollari.cthul.hu> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="jousvV0MzM2p6OtC" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from tom@uniserve.com on Wed, Feb 14, 2001 at 08:36:24AM -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --jousvV0MzM2p6OtC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Feb 14, 2001 at 08:36:24AM -0800, Tom wrote: > Some named version have a nice remote crash bug, and there are people > who are going and crashing all the DNS servers they can find. It's much worse than that - as you'd know if you read the FreeBSD security advisories (01:18 in this case) > 3.5-STABLE seems to have Bind 8.2.2, which is vunerable. 4.2-RELEASE No it doesn't. > sould also seem to have a vunerable version. See http://www.isc.org from Yes it does - see the above advisory. Kris --jousvV0MzM2p6OtC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6isPaWry0BWjoQKURArB+AJ9dPG6kxTDmoS/L3CSHETQlFQFH0QCg9qT3 WRLhapY2dfEnpoDQZOGLjcY= =Zb+0 -----END PGP SIGNATURE----- --jousvV0MzM2p6OtC-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 9:44:33 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-67.dsl.lsan03.pacbell.net [63.207.60.67]) by hub.freebsd.org (Postfix) with ESMTP id 46DBF37B67D for ; Wed, 14 Feb 2001 09:44:30 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1AAFE66B35; Wed, 14 Feb 2001 09:44:30 -0800 (PST) Date: Wed, 14 Feb 2001 09:44:30 -0800 From: Kris Kennaway To: Mike Tancsa Cc: Tom , freebsd-stable@FreeBSD.ORG Subject: Re: Named crashing Message-ID: <20010214094429.D72669@mollari.cthul.hu> References: <5.0.1.4.0.20010214113429.02305b70@marble.sentex.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="DrWhICOqskFTAXiy" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5.0.1.4.0.20010214113429.02305b70@marble.sentex.ca>; from mike@sentex.net on Wed, Feb 14, 2001 at 11:58:49AM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --DrWhICOqskFTAXiy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Feb 14, 2001 at 11:58:49AM -0500, Mike Tancsa wrote: >=20 > Actually, I think 8.2.3 is somehow crashable as well. I have a machine th= at=20 > core dumped with 8.2.3REL > pid 104 (named), uid 53: exited on signal 11 >=20 > named 8.2.3-REL Mon Jan 29 12:37:34 EST 2001 Someone needs to analyse the core and figure out why it's dying. Kris --DrWhICOqskFTAXiy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6isP9Wry0BWjoQKURAqBoAKDzmFyopC1vyTQMvgPU/kav1pxHCgCgxyT8 ODkGu3PQjxg/GpcOlmKVn9A= =J3K/ -----END PGP SIGNATURE----- --DrWhICOqskFTAXiy-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 9:45:46 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-67.dsl.lsan03.pacbell.net [63.207.60.67]) by hub.freebsd.org (Postfix) with ESMTP id 89D1A37B401 for ; Wed, 14 Feb 2001 09:45:38 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 5394166B33; Wed, 14 Feb 2001 09:45:35 -0800 (PST) Date: Wed, 14 Feb 2001 09:45:35 -0800 From: Kris Kennaway To: "Bruce D. Harding" Cc: stable Subject: Re: compile errors Message-ID: <20010214094535.E72669@mollari.cthul.hu> References: <3A8A5F40.D3098A43@inspire.net.nz> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="y2zxS2PfCDLh6JVG" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8A5F40.D3098A43@inspire.net.nz>; from bdh@inspire.net.nz on Wed, Feb 14, 2001 at 11:34:40PM +1300 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --y2zxS2PfCDLh6JVG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Feb 14, 2001 at 11:34:40PM +1300, Bruce D. Harding wrote: > While attempting to update from 4.2 release to 4-stable I encountered > the follwing errors. I have since tried resupping, deleteing problem > files and resupping, deleteing all files n the problem directory and > resupping, always with the same (exact) errors. I believe the problem > may have been caused by a power cut on my first buildworld immediately > after the first cvsup from 4.2 release. I'm picking that the power cut > has screwed up some dependencies somewhere that are not being corrected > by cvsup. Any help would be much appreciated as I am on the verge of > deleting the entire source tree and starting again, (a slight hassle as > I no longer have the cd's and am on a 33.6k connection) Looks like your source tree may not have been completely upgraded. Post your cvsupfile and the command you use to run it. Kris --y2zxS2PfCDLh6JVG Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6isQ+Wry0BWjoQKURAh+BAKDrdgx6tmEHZglMiRSP9YyeC4uOgACeN460 iuDRFwbNO2O5YcLoHarY1aE= =jair -----END PGP SIGNATURE----- --y2zxS2PfCDLh6JVG-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 9:48:32 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by hub.freebsd.org (Postfix) with ESMTP id 9224F37B401 for ; Wed, 14 Feb 2001 09:48:25 -0800 (PST) Received: from simoeon.sentex.net (simeon.sentex.ca [209.112.4.47]) by smtp1.sentex.ca (8.11.2/8.11.1) with ESMTP id f1EHlsf33082; Wed, 14 Feb 2001 12:47:54 -0500 (EST) (envelope-from mike@sentex.net) Message-Id: <5.0.1.4.0.20010214124009.02c0d7a0@marble.sentex.ca> X-Sender: mdtpop@marble.sentex.ca X-Mailer: QUALCOMM Windows Eudora Version 5.0.1 Date: Wed, 14 Feb 2001 12:41:27 -0500 To: Kris Kennaway From: Mike Tancsa Subject: Re: Named crashing Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: <20010214094429.D72669@mollari.cthul.hu> References: <5.0.1.4.0.20010214113429.02305b70@marble.sentex.ca> <5.0.1.4.0.20010214113429.02305b70@marble.sentex.ca> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 09:44 AM 2/14/01 -0800, Kris Kennaway wrote: >On Wed, Feb 14, 2001 at 11:58:49AM -0500, Mike Tancsa wrote: > > > > Actually, I think 8.2.3 is somehow crashable as well. I have a machine > that > > core dumped with 8.2.3REL > > pid 104 (named), uid 53: exited on signal 11 > > > > named 8.2.3-REL Mon Jan 29 12:37:34 EST 2001 > >Someone needs to analyse the core and figure out why it's dying. I could not find the core dump file. How can I config him so that he knows where the correct location is to dump the file that is writeable by his particular UID. ---Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 9:48:45 2001 Delivered-To: freebsd-stable@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 7E35937B401 for ; Wed, 14 Feb 2001 09:48:42 -0800 (PST) Received: (qmail 7765 invoked by uid 100); 14 Feb 2001 17:48:41 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14986.50425.254712.942186@guru.mired.org> Date: Wed, 14 Feb 2001 11:48:41 -0600 To: Stephen Montgomery-Smith Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Different approach to mergemaster In-Reply-To: <3A8AB391.12D1D822@math.missouri.edu> References: <3A8AB391.12D1D822@math.missouri.edu> X-Mailer: VM 6.89 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Stephen Montgomery-Smith types: > Before mergemaster came popular, I developed my own approach > to updating /etc which works rather nicely. I never did get > around to trying mergemaster, but I see emails where from time > to time people have troubles with it, and I thought that I > would share my approach. > > What I have is a seperate directory called /usr/etc-chg. I run > > cd /usr/src/etc > make DESTDIR=/usr/etc-chg/$CURRENTVERSION distrib-dirs distribution > > where $CURRENTVERSION is some label describing the current make world > that I have just done (or about to do). Since I use CTM, this label > is the ctm-delta number. But I am sure that other ways could be made. [...] I don't really have trouble with it - I just wish there were some files it would just quietly update and not bother me about. Not all of them - I want to see changes to /etc/defaults, even though I'm just going to install them. But I don't really care about most of the /etc/rc.* files; I use the hooks in rc.conf to control those, and seeing the changes /etc/defaults/rc.conf is sufficient. I have though about doing something like what you talk about. I already keep all the system config files in perforce. Keeping two copies of the etc stuff around, with a script to build the vendor copy and update the depot so I could integrate it back into mine would be pretty simple. I already do that for my kernel config files. But I'd then miss some of the changes I want to see. Of course, mergemaster can do it now - if you write the pre-compare script for it. But making everyone reinvent that wheel seems a bit much. A variable that can only be set via .mergemasterrc that held a list of anchored REs - or maybe just file names - would seem to be a reasonable addition. That way, you have to actively point the gun at your feet before you can shoot yourself. 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-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 9:51:58 2001 Delivered-To: freebsd-stable@freebsd.org Received: from point.osg.gov.bc.ca (point.osg.gov.bc.ca [142.32.102.44]) by hub.freebsd.org (Postfix) with ESMTP id 934D137B401 for ; Wed, 14 Feb 2001 09:51:50 -0800 (PST) Received: (from daemon@localhost) by point.osg.gov.bc.ca (8.8.7/8.8.8) id JAA26281; Wed, 14 Feb 2001 09:51:06 -0800 Received: from passer.osg.gov.bc.ca(142.32.110.29) via SMTP by point.osg.gov.bc.ca, id smtpda26275; Wed Feb 14 09:50:47 2001 Received: (from uucp@localhost) by passer.osg.gov.bc.ca (8.11.2/8.9.1) id f1EHogB86672; Wed, 14 Feb 2001 09:50:42 -0800 (PST) Received: from cwsys9.cwsent.com(10.2.2.1), claiming to be "cwsys.cwsent.com" via SMTP by passer9.cwsent.com, id smtpdi86658; Wed Feb 14 09:50:31 2001 Received: (from uucp@localhost) by cwsys.cwsent.com (8.11.2/8.9.1) id f1EHoUw20969; Wed, 14 Feb 2001 09:50:30 -0800 (PST) Message-Id: <200102141750.f1EHoUw20969@cwsys.cwsent.com> Received: from localhost.cwsent.com(127.0.0.1), claiming to be "cwsys" via SMTP by localhost.cwsent.com, id smtpdA20539; Wed Feb 14 09:50:09 2001 X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 Reply-To: Cy Schubert - ITSD Open Systems Group From: Cy Schubert - ITSD Open Systems Group X-Sender: schubert To: Jan Conrad Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Drive errors under 3-STABLE In-reply-to: Your message of "Wed, 14 Feb 2001 17:45:09 +0100." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 14 Feb 2001 09:50:09 -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message , Jan Conrad writes: > Hello, > > since a week or so we get the following messages on our 3-STABLE system > (about one per day..) > > Feb 11 03:00:28 dirac /kernel: (da0:ahc0:0:1:0): READ(06). CDB: 8 12 2d 7f > 10 0 > Feb 11 03:00:41 dirac /kernel: (da0:ahc0:0:1:0): MEDIUM ERROR info:122d85 > asc:11,0 > Feb 11 03:00:53 dirac /kernel: (da0:ahc0:0:1:0): Unrecovered read error > field replaceable unit: ea sks:80,108 > Feb 11 03:01:02 dirac /kernel: (da0:ahc0:0:1:0): READ(06). CDB: 8 12 2d 8f > 20 0 > Feb 11 03:01:02 dirac /kernel: (da0:ahc0:0:1:0): MEDIUM ERROR info:122d8f > asc:16,0 > Feb 11 03:01:02 dirac /kernel: (da0:ahc0:0:1:0): Data synchronization mark > error field replaceable unit: d2 sks:80,108 > Feb 11 03:01:03 dirac /kernel: (da0:ahc0:0:1:0): READ(06). CDB: 8 12 2d df > 20 0 > Feb 11 03:01:03 dirac /kernel: (da0:ahc0:0:1:0): MEDIUM ERROR info:122df1 > asc:11,0 > Feb 11 03:01:03 dirac /kernel: (da0:ahc0:0:1:0): Unrecovered read error > field replaceable unit: ea sks:80,108 > Feb 11 03:01:03 dirac /kernel: (da0:ahc0:0:1:0): READ(06). CDB: 8 12 2d ef > 10 0 > Feb 11 03:01:03 dirac /kernel: (da0:ahc0:0:1:0): MEDIUM ERROR info:122df1 > asc:11,0 > Feb 11 03:01:03 dirac /kernel: (da0:ahc0:0:1:0): Unrecovered read error > field replaceable unit: ea sks:80,108 > > > the disc is recognized at boot time as: > > Feb 10 18:19:03 dirac /kernel: da0 at ahc0 bus 0 target 1 lun 0 > Feb 10 18:19:03 dirac /kernel: da0: Fixed Direct > Access SCSI-2 device > Feb 10 18:19:03 dirac /kernel: da0: 40.000MB/s transfers (20.000MHz, > offset 8, 16bit), Tagged Queueing Enabled > Feb 10 18:19:03 dirac /kernel: da0: 8683MB (17783112 512 byte sectors: > 255H 63S/T 1106C) > > > Does anyone have an idea what this means? Time to replace the disc. Regards, Phone: (250)387-8437 Cy Schubert Fax: (250)387-5766 Team Leader, Sun/Alpha Team Internet: Cy.Schubert@osg.gov.bc.ca Open Systems Group, ITSD, ISTA Province of BC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 9:52:33 2001 Delivered-To: freebsd-stable@freebsd.org Received: from grumpy.dyndns.org (user-24-214-56-129.knology.net [24.214.56.129]) by hub.freebsd.org (Postfix) with ESMTP id BEE8837B401 for ; Wed, 14 Feb 2001 09:52:24 -0800 (PST) Received: (from dkelly@localhost) by grumpy.dyndns.org (8.11.1/8.11.2) id f1EHpoG81137; Wed, 14 Feb 2001 11:51:50 -0600 (CST) (envelope-from dkelly) Date: Wed, 14 Feb 2001 11:51:50 -0600 From: David Kelly To: Stephen Montgomery-Smith Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Different approach to mergemaster Message-ID: <20010214115150.B81070@grumpy.dyndns.org> References: <3A8AB391.12D1D822@math.missouri.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8AB391.12D1D822@math.missouri.edu>; from stephen@math.missouri.edu on Wed, Feb 14, 2001 at 10:34:25AM -0600 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Feb 14, 2001 at 10:34:25AM -0600, Stephen Montgomery-Smith wrote: > Before mergemaster came popular, I developed my own approach > to updating /etc which works rather nicely. I never did get > around to trying mergemaster, but I see emails where from time > to time people have troubles with it, and I thought that I > would share my approach. With all due respect what you describe sounds exactly like mergemaster. Mergemaster builds a temporary /etc and diffs the current /etc against it. Changes are presented for approval, "select old, new, or edit". The only problems I've had is being impatient and hitting the 'i' for Install key before I really groked the differences. -- David Kelly N4HHE, dkelly@hiwaay.net ===================================================================== The human mind ordinarily operates at only ten percent of its capacity -- the rest is overhead for the operating system. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 9:55:38 2001 Delivered-To: freebsd-stable@freebsd.org Received: from math.missouri.edu (math.missouri.edu [128.206.49.180]) by hub.freebsd.org (Postfix) with ESMTP id 2120437B4EC for ; Wed, 14 Feb 2001 09:55:32 -0800 (PST) Received: from math.missouri.edu (stephen@cauchy.math.missouri.edu [128.206.49.166]) by math.missouri.edu (8.9.3/8.9.3) with ESMTP id LAA75146; Wed, 14 Feb 2001 11:55:29 -0600 (CST) (envelope-from stephen@math.missouri.edu) Message-ID: <3A8AC691.D4165B24@math.missouri.edu> Date: Wed, 14 Feb 2001 11:55:29 -0600 From: Stephen Montgomery-Smith Organization: University of Missouri X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: David Kelly Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Different approach to mergemaster References: <3A8AB391.12D1D822@math.missouri.edu> <20010214115150.B81070@grumpy.dyndns.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG No, what I described is different to what you describe. David Kelly wrote: > > On Wed, Feb 14, 2001 at 10:34:25AM -0600, Stephen Montgomery-Smith wrote: > > Before mergemaster came popular, I developed my own approach > > to updating /etc which works rather nicely. I never did get > > around to trying mergemaster, but I see emails where from time > > to time people have troubles with it, and I thought that I > > would share my approach. > > With all due respect what you describe sounds exactly like mergemaster. > > Mergemaster builds a temporary /etc and diffs the current /etc against > it. Changes are presented for approval, "select old, new, or edit". > The only problems I've had is being impatient and hitting the 'i' > for Install key before I really groked the differences. > > -- > David Kelly N4HHE, dkelly@hiwaay.net > ===================================================================== > The human mind ordinarily operates at only ten percent of its > capacity -- the rest is overhead for the operating system. -- Stephen Montgomery-Smith stephen@math.missouri.edu 307 Math Science Building stephen@showme.missouri.edu Department of Mathematics stephen@missouri.edu University of Missouri-Columbia Columbia, MO 65211 USA Phone (573) 882 4540 Fax (573) 882 1869 http://www.math.missouri.edu/~stephen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 10:59:44 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-67.dsl.lsan03.pacbell.net [63.207.60.67]) by hub.freebsd.org (Postfix) with ESMTP id ECA1B37B503 for ; Wed, 14 Feb 2001 10:59:40 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 753FB66B26; Wed, 14 Feb 2001 10:59:35 -0800 (PST) Date: Wed, 14 Feb 2001 10:59:35 -0800 From: Kris Kennaway To: Mike Tancsa Cc: Kris Kennaway , freebsd-stable@FreeBSD.ORG Subject: Re: Named crashing Message-ID: <20010214105935.B73656@mollari.cthul.hu> References: <5.0.1.4.0.20010214113429.02305b70@marble.sentex.ca> <5.0.1.4.0.20010214113429.02305b70@marble.sentex.ca> <20010214094429.D72669@mollari.cthul.hu> <5.0.1.4.0.20010214124009.02c0d7a0@marble.sentex.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="eAbsdosE1cNLO4uF" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5.0.1.4.0.20010214124009.02c0d7a0@marble.sentex.ca>; from mike@sentex.net on Wed, Feb 14, 2001 at 12:41:27PM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --eAbsdosE1cNLO4uF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Feb 14, 2001 at 12:41:27PM -0500, Mike Tancsa wrote: > At 09:44 AM 2/14/01 -0800, Kris Kennaway wrote: > >On Wed, Feb 14, 2001 at 11:58:49AM -0500, Mike Tancsa wrote: > > > > > > Actually, I think 8.2.3 is somehow crashable as well. I have a machin= e=20 > > that > > > core dumped with 8.2.3REL > > > pid 104 (named), uid 53: exited on signal 11 > > > > > > named 8.2.3-REL Mon Jan 29 12:37:34 EST 2001 > > > >Someone needs to analyse the core and figure out why it's dying. >=20 >=20 > I could not find the core dump file. How can I config him so that he know= s=20 > where the correct location is to dump the file that is writeable by his= =20 > particular UID. Use something like: sysctl -w kern.corefile=3D/usr/cores/%N.core where /usr/cores is a mode 1777 directory. If you're running named setugid, you'll need sysctl -w kern.sugid_coredump=3D1 as well (only do this for debugging, it's a potential security risk if someone can read a corefile made by a setugid proces) Kris --eAbsdosE1cNLO4uF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6itWWWry0BWjoQKURAp8lAJ49kbN+0Cg+A2RZRYbd+mt84oslBgCg5d1z Q7MAycRoocpryhbnBn0Wwj0= =pU+b -----END PGP SIGNATURE----- --eAbsdosE1cNLO4uF-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 12:22:21 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mailhost.det.ameritech.net (mpdr0.detroit.mi.ameritech.net [206.141.239.206]) by hub.freebsd.org (Postfix) with ESMTP id 2EF0237B491 for ; Wed, 14 Feb 2001 12:22:14 -0800 (PST) Received: from phoncella.ameritech.net ([64.108.247.9]) by mailhost.det.ameritech.net (InterMail v4.01.01.07 201-229-111-110) with ESMTP id <20010214193910.CCLJ9221.mailhost.det.ameritech.net@phoncella.ameritech.net> for ; Wed, 14 Feb 2001 14:39:10 -0500 Received: (from ehoward@localhost) by phoncella.ameritech.net (8.11.0/8.11.0) id f1EJdAj04636 for freebsd-stable@FreeBSD.ORG; Wed, 14 Feb 2001 14:39:10 -0500 Date: Wed, 14 Feb 2001 14:39:10 -0500 From: "Eric L. Howard" To: FreeBSD Stable E-mail LIst Subject: just keep on crashing... Message-ID: <20010214143910.A3906@ameritech.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-FavoriteScripture: Romans 8:18 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm attempting to get 4.2 up on a homebrew. ASUS P2B-DS mobo w/ onboard aic7xxx 2 - Seagate ST39204LW U2 drives Dual PIII 700Mhz I'm almost consistently running into problems when I go to do stuff like cvsup or even installing some packages. Seems as if whenever I get into something pushing the drives heavy and consistently for any sustained period the machines crashes. Errors include SCB 69: Immediate reset and Invalid pack calling for an fsck each time of course...and no core files to be found. I've checked everything from proper termination on the chain to actually removing the Zip drive that was installed. Any ideas? :r dmesg.out ----------------- Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-STABLE #0: Wed Feb 14 13:47:42 EST 2001 root@ns1.boskatel.com:/usr/src/sys/compile/DNS Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (701.59-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383fbff real memory = 268423168 (262132K bytes) avail memory = 258445312 (252388K bytes) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 IOAPIC #0 intpin 16 -> irq 11 IOAPIC #0 intpin 17 -> irq 10 IOAPIC #0 intpin 19 -> irq 5 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 1, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc02e3000. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0xb800-0xb80f at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 pci0: at 4.2 irq 5 Timecounter "PIIX" frequency 3579545 Hz chip1: port 0xe800-0xe80f at device 4.3 on pci0 ahc0: port 0xb000-0xb0ff mem 0xe1000000-0xe1000fff irq 5 at device 6.0 on pci0 aic7890/91: Wide Channel A, SCSI Id=7, 32/255 SCBs xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0xa800-0xa87f mem 0xe0800000-0xe080007f irq 10 at device 11.0 on pci0 xl0: Ethernet address: 00:01:02:75:2f:53 miibus0: on xl0 xlphy0: <3c905C 10/100 internal PHY> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/9 bytes threshold ppi0: on ppbus0 APIC_IO: Testing 8254 interrupt delivery APIC_IO: routing 8254 via IOAPIC #0 intpin 2 SMP: AP CPU #1 Launched! acd0: CDROM at ata0-master using PIO4 ast0: TAPE at ata0-slave using PIO4 Waiting 5 seconds for SCSI devices to settle Mounting root from ufs:/dev/da0s1a da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-3 device da0: 80.000MB/s transfers (40.000MHz, offset 63, 16bit), Tagged Queueing Enabled da0: 8750MB (17921835 512 byte sectors: 255H 63S/T 1115C) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-3 device da1: 80.000MB/s transfers (40.000MHz, offset 63, 16bit), Tagged Queueing Enabled da1: 8750MB (17921835 512 byte sectors: 255H 63S/T 1115C) swapon: adding /dev/da0s1b as swap device Automatic boot in progress... /dev/da0s1a: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/da0s1a: clean, 2420394 free (13394 frags, 300875 blocks, 0.4% fragmentation) /dev/da0s1e: 127 files, 308 used, 5198073 free (377 frags, 649712 blocks, 0.0% fragmentation) Doing initial network setup: hostname . xl0: flags=8843 mtu 1500 inet 192.168.8.2 netmask 0xffffff00 broadcast 192.168.8.255 ether 00:01:02:75:2f:53 media: autoselect (10baseT/UTP) status: active supported media: autoselect 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP 100baseTX lo0: flags=8049 mtu 16384 inet 127.0.0.1 netmask 0xff000000 add net default: gateway 192.168.8.254 Additional routing options: tcp extensions=NO TCP keepalive=YES . routing daemons: . additional daemons: syslogd . Doing additional network setup: portmap . Starting final network daemons: . setting ELF ldconfig path: /usr/lib /usr/lib/compat /usr/local/lib setting a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aout starting standard daemons: inetd cron sendmail sshd usbd uhci0: port 0xb400-0xb41f irq 5 at device 4.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered . Initial rc.i386 initialization: . rc.i386 configuring syscons: blank_time moused . additional ABI support: . Local package initialization: sshd . Feb 14 14:24:30 ns1 sshd[146]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use. Feb 14 14:24:30 ns1 sshd[146]: fatal: Cannot bind any address. Additional TCP options: . Wed Feb 14 14:24:30 EST 2001 Feb 14 14:25:02 ns1 login: ROOT LOGIN (root) ON ttyv0 -- E r i c L. H o w a r d e h o w a r d @ a m e r i t e c h . n e t //////////////////////////////////////////////////////////////////////////////// "You can't hold a man down without staying down with him." -Booker T. Washington PGP KeyID:0x27586E9B Fingerprint:0BF7 F677 E4F3 E2F1 ACBF F786 754A 8F11 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 12:45:13 2001 Delivered-To: freebsd-stable@freebsd.org Received: from pan.ch.intel.com (chfdns01.ch.intel.com [143.182.246.24]) by hub.freebsd.org (Postfix) with ESMTP id 675D937B4EC for ; Wed, 14 Feb 2001 12:45:10 -0800 (PST) Received: from sedona.intel.com (sedona.ch.intel.com [143.182.218.21]) by pan.ch.intel.com (8.9.1a+p1/8.9.1/d: relay.m4,v 1.35 2001/02/12 09:03:45 smothers Exp $) with ESMTP id UAA13416; Wed, 14 Feb 2001 20:45:08 GMT Received: from hip186.ch.intel.com (hip186.ch.intel.com [143.182.225.68]) by sedona.intel.com (8.9.1a/8.9.1/d: sendmail.cf,v 1.14 2001/01/02 18:39:59 steved Exp $) with ESMTP id NAA29992; Wed, 14 Feb 2001 13:45:08 -0700 (MST) X-Envelope-From: jreynold@sedona.ch.intel.com Received: (from jreynold@localhost) by hip186.ch.intel.com (8.9.1a/8.9.1/d: client.m4,v 1.3 1998/09/29 16:36:11 sedayao Exp sedayao $) id PAA09005; Wed, 14 Feb 2001 15:45:08 -0500 (EST) X-Authentication-Warning: hip186.ch.intel.com: jreynold set sender to jreynold@sedona.ch.intel.com using -f From: John Reynolds~ MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14986.61012.321908.836461@hip186.ch.intel.com> Date: Wed, 14 Feb 2001 13:45:08 -0700 (MST) To: "Eric L. Howard" Cc: FreeBSD Stable E-mail LIst Subject: Re: just keep on crashing... In-Reply-To: <20010214143910.A3906@ameritech.net> References: <20010214143910.A3906@ameritech.net> X-Mailer: VM 6.75 under Emacs 20.7.2 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ On Wednesday, February 14, Eric L. Howard wrote: ] > I'm attempting to get 4.2 up on a homebrew. > > ASUS P2B-DS mobo w/ onboard aic7xxx > 2 - Seagate ST39204LW U2 drives > Dual PIII 700Mhz > > I'm almost consistently running into problems when I go to do stuff like cvsup > or even installing some packages. Seems as if whenever I get into something > pushing the drives heavy and consistently for any sustained period the machines > crashes. > Well, for what it's worth, I have a P2B-DS running dual Pentium III 500's (which is as high as my board can deal with as I have the "older" revision without support for the coppermine core) and two LVD U2 Quantum Viking II drives, a CD-RW, CD-ROM, and Seagate TapeStor 8000 drive all on the onboard controller. Never had a lick of trouble with it. Maybe your RAM is flakey? have you tried testing it or swapping a "known good" DIMM in? I don't know if those drives might be to blame.... -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | John Reynolds WCCG, CCE, Higher Levels of Abstraction | | Intel Corporation MS: CH6-210 Phone: 480-554-9092 pgr: 602-868-6512 | | jreynold@sedona.ch.intel.com http://www-aec.ch.intel.com/~jreynold/ | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 13: 6:58 2001 Delivered-To: freebsd-stable@freebsd.org Received: from web9303.mail.yahoo.com (web9303.mail.yahoo.com [216.136.129.52]) by hub.freebsd.org (Postfix) with SMTP id 16F4E37B491 for ; Wed, 14 Feb 2001 13:06:52 -0800 (PST) Message-ID: <20010214210651.16248.qmail@web9303.mail.yahoo.com> Received: from [212.253.3.41] by web9303.mail.yahoo.com; Wed, 14 Feb 2001 13:06:51 PST Date: Wed, 14 Feb 2001 13:06:51 -0800 (PST) From: Omer Faruk Sen To: stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG subscribe __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 13:11: 9 2001 Delivered-To: freebsd-stable@freebsd.org Received: from gatech.edu (gatech.edu [130.207.244.244]) by hub.freebsd.org (Postfix) with ESMTP id C780637B401 for ; Wed, 14 Feb 2001 13:11:05 -0800 (PST) Received: from thor (thor.cnd.gatech.edu [199.77.147.56]) by gatech.edu (8.9.0/8.9.0) with SMTP id QAA08208; Wed, 14 Feb 2001 16:07:49 -0500 (EST) Message-ID: <000d01c096ca$715f3900$38934dc7@cnd.gatech.edu> From: "Jeff Lee" To: "John Reynolds~" , "Eric L. Howard" Cc: "FreeBSD Stable E-mail LIst" References: <20010214143910.A3906@ameritech.net> <14986.61012.321908.836461@hip186.ch.intel.com> Subject: Re: just keep on crashing... Date: Wed, 14 Feb 2001 16:09:39 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I would be willing to bet on the memory as well. My 486DX machine with an atapi maxtor hd and 12 Mb of good solid RAM doesn't have any probs with pkg_install or make. Takes quite a while, but usually no problems. ################# Jeff Lee dibble@cc.gatech.edu PGP ID: 0xDDB291A5 - ----- Original Message ----- From: "John Reynolds~" To: "Eric L. Howard" Cc: "FreeBSD Stable E-mail LIst" Sent: Wednesday, February 14, 2001 3:45 PM Subject: Re: just keep on crashing... > > [ On Wednesday, February 14, Eric L. Howard wrote: ] > > I'm attempting to get 4.2 up on a homebrew. > > > > ASUS P2B-DS mobo w/ onboard aic7xxx > > 2 - Seagate ST39204LW U2 drives > > Dual PIII 700Mhz > > > > I'm almost consistently running into problems when I go to do > > stuff like cvsup or even installing some packages. Seems as if > > whenever I get into something pushing the drives heavy and > > consistently for any sustained period the machines crashes. > > > > Well, for what it's worth, I have a P2B-DS running dual Pentium III > 500's (which is as high as my board can deal with as I have the > "older" revision without support for the coppermine core) and two > LVD U2 Quantum Viking II drives, a CD-RW, CD-ROM, and Seagate > TapeStor 8000 drive all on the onboard controller. Never had a lick > of trouble with it. > > Maybe your RAM is flakey? have you tried testing it or swapping a > "known good" DIMM in? I don't know if those drives might be to > blame.... > > -Jr > > -- > =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > =-=-=-=-= > |John Reynolds WCCG, CCE, Higher Levels of > |Abstraction | > | > | Intel Corporation MS: CH6-210 Phone: 480-554-9092 pgr: > | 602-868-6512 | jreynold@sedona.ch.intel.com > | http://www-aec.ch.intel.com/~jreynold/ | > =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > =-=-=-=-= > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 7.0.3 for non-commercial use iQA/AwUBOor0DtKnyXXdspGlEQK5FgCgjn3URLdfHus3jFhS32nLmBIpUjQAoOZZ swGu49VNVLjii3MkKzypVu+G =mri/ -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 13:22:43 2001 Delivered-To: freebsd-stable@freebsd.org Received: from libero.sunshine.ale (ppp-97-114.33-151.iol.it [151.33.114.97]) by hub.freebsd.org (Postfix) with ESMTP id 5F3C537B4EC; Wed, 14 Feb 2001 13:22:35 -0800 (PST) Received: by libero.sunshine.ale (Postfix, from userid 1001) id 2ADB45FB0; Wed, 14 Feb 2001 22:22:28 +0100 (CET) Date: Wed, 14 Feb 2001 22:22:28 +0100 From: Alessandro de Manzano To: questions@freebsd.org Cc: stable@freebsd.org Subject: AC97 audio ? Message-ID: <20010214222228.C868@libero.sunshine.ale> Reply-To: Alessandro de Manzano Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.2-STABLE Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello! I've a MSI motherboard with VIA Apollo 133 Pro chipset, so I got included this audio chip (device pcm compiled in the kernel) # cat /dev/sndstat FreeBSD Audio Driver (newpcm) Feb 13 2001 23:22:13 Installed devices: pcm0: at io 0xcc00 irq 18 (1p/1r channels duplex) (system is 4.2-stable built few days ago) Is there any hope I'll hear somewhat from this "thing" ? :-) I tried with some software like as mpg123 or the simply "cat filename > /dev/dsp" but I obtain only silence and/or error messages about some fixed frequency complain. I understand AC'97 audio chipset are not (yet?) fully supported, am I right ? Many thanks in advance ! -- bye! Ale To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 13:36:28 2001 Delivered-To: freebsd-stable@freebsd.org Received: from harmony.village.org (rover.village.org [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 4C0F137B401 for ; Wed, 14 Feb 2001 13:36:26 -0800 (PST) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.1/8.11.1) with ESMTP id f1ELaEW91674; Wed, 14 Feb 2001 14:36:14 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200102142136.f1ELaEW91674@harmony.village.org> To: Greg Troxel Subject: Re: sshd in 4.2-STABLE Cc: Matt Dillon , John Reynolds , freebsd-stable@FreeBSD.ORG In-reply-to: Your message of "13 Feb 2001 08:29:06 EST." References: <200102120843.f1C8hhM03375@earth.backplane.com> <1843641235.20010212104321@road.omskelecom.ru> <14983.29328.298241.606895@whale.home-net> <200102122124.f1CLONW31606@harmony.village.org> Date: Wed, 14 Feb 2001 14:36:14 -0700 From: Warner Losh Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message Greg Troxel writes: : To me, POLA says that if I install 3.3, don't muck with stuff, and : upgrade to 4.2, then I should have 4.2 without having to think about : stuff I never mucked with (it's fair enough to have to understand : stuff I changed). That's fair enough. The hard part is knowing what "not mucked with" really means to sysinstall. Short of having a md5 of the file computed at install time, sysinstall would have to have a large database of legal unmodified versions. Mergemaster already deals with this problem. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 13:37:22 2001 Delivered-To: freebsd-stable@freebsd.org Received: from harmony.village.org (rover.village.org [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 9A13D37B401 for ; Wed, 14 Feb 2001 13:37:16 -0800 (PST) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.1/8.11.1) with ESMTP id f1ELaxW91693; Wed, 14 Feb 2001 14:37:08 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200102142137.f1ELaxW91693@harmony.village.org> To: Pekka Savola Subject: Re: 3.5-S->4.2-S: still fail w/ setresuid on miniperl Cc: freebsd-stable@FreeBSD.ORG In-reply-to: Your message of "Tue, 13 Feb 2001 21:26:59 +0200." References: Date: Wed, 14 Feb 2001 14:36:59 -0700 From: Warner Losh Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message Pekka Savola writes: : Better to tell people to update to 4.1-RELEASE first. That at least : works, just finished that one. OK. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 13:37:50 2001 Delivered-To: freebsd-stable@freebsd.org Received: from harmony.village.org (rover.village.org [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 3A78237B401 for ; Wed, 14 Feb 2001 13:37:48 -0800 (PST) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.1/8.11.1) with ESMTP id f1ELbbW91712; Wed, 14 Feb 2001 14:37:37 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200102142137.f1ELbbW91712@harmony.village.org> To: Andrew.Hodgkins@hurlburt.af.mil Subject: Re: 3.5-S->4.2-S: still fail w/ setresuid on miniperl Cc: pekkas@netcore.fi, freebsd-stable@FreeBSD.ORG In-reply-to: Your message of "Tue, 13 Feb 2001 14:47:57 CST." References: Date: Wed, 14 Feb 2001 14:37:37 -0700 From: Warner Losh Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message Andrew.Hodgkins@hurlburt.af.mil writes: : http://docs.freebsd.org/cgi/getmsg.cgi?fetch=699499+0+/usr/local/www/db/text : /2000/freebsd-stable/20000806.freebsd-stable : : I've also used it to go to 4.2-S and it works equally well...it might help : with your buildworld snags, Pekka. Worth a look at least. ;) : : It could also be useful to incorporate some or all of Ralf's procedure into : UPDATING. There have been a few minor changes since it was written ('make : kernel' target, KERNCONF variable instead of KERNEL, etc.) but nothing that : breaks it AFAIK. But much of Ralf's proceedure is unnecessary. :-(. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 13:55:12 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hda.hda.com (host65.hda.com [63.104.68.65]) by hub.freebsd.org (Postfix) with ESMTP id 409BD37B65D; Wed, 14 Feb 2001 13:55:03 -0800 (PST) Received: (from dufault@localhost) by hda.hda.com (8.11.1/8.11.1) id f1ELqZS09943; Wed, 14 Feb 2001 16:52:35 -0500 (EST) (envelope-from dufault) From: Peter Dufault Message-Id: <200102142152.f1ELqZS09943@hda.hda.com> Subject: Re: AC97 audio ? In-Reply-To: <20010214222228.C868@libero.sunshine.ale> from Alessandro de Manzano at "Feb 14, 2001 10:22:28 pm" To: Alessandro de Manzano Date: Wed, 14 Feb 2001 16:51:19 -0500 (EST) Cc: questions@FreeBSD.ORG, stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL61 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hello! > > I've a MSI motherboard with VIA Apollo 133 Pro chipset, so I got included > this audio chip (device pcm compiled in the kernel) > > # cat /dev/sndstat > FreeBSD Audio Driver (newpcm) Feb 13 2001 23:22:13 > Installed devices: > pcm0: at io 0xcc00 irq 18 (1p/1r channels duplex) > > (system is 4.2-stable built few days ago) > > Is there any hope I'll hear somewhat from this "thing" ? :-) > > I tried with some software like as mpg123 or the simply "cat filename > > /dev/dsp" but I obtain only silence and/or error messages about some fixed > frequency complain. > > I understand AC'97 audio chipset are not (yet?) fully supported, am I > right ? The good news is that all sound works fine for me (I use kde), and at probe time I see this: > pcm0: port 0xcc00-0xcc03,0xd000-0xd0ff irq 9 at device 4.5 on pci0 The less good news is I'm not sure if this is a soundblaster compatibility shim, what I have in my config file is: > device pcm # For PnP/PCI sound cards > device csa # Crystal Semiconductor CS461x/428x PCI > device sbc # Sound blaster I'm not sure why I have that "csa" in there. I didn't know about /dev/sndstat, but it says: > rt% cat /dev/sndstat > FreeBSD Audio Driver (newpcm) Jan 24 2001 22:01:54 > Installed devices: > pcm0: at io 0xd000 irq 9 (1p/1r channels duplex) > rt% Peter -- Peter Dufault (dufault@hda.com) Realtime development, Machine control, HD Associates, Inc. Fail-Safe systems, Agency approval To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 14: 3: 2 2001 Delivered-To: freebsd-stable@freebsd.org Received: from math.uic.edu (galois.math.uic.edu [131.193.178.114]) by hub.freebsd.org (Postfix) with SMTP id C309237B67D for ; Wed, 14 Feb 2001 14:02:59 -0800 (PST) Received: (qmail 3362 invoked by uid 31415); 14 Feb 2001 22:02:33 -0000 Date: Wed, 14 Feb 2001 16:02:33 -0600 From: "Vladimir V. Egorin" To: freebsd-stable@freebsd.org Subject: CARDBUS support in -STABLE Message-ID: <20010214160233.A3335@math.uic.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a laptop with cardbus ethernet which I am anxious to use at some time. I understand cardbus support has just appeared in -current. Does anyone know how close it is to appearing in -stable (e.g. a couple of months, a year, etc.)? Just trying to decide whether I should be patient (I'd rather be if cardbus support in -stable is close enough), or just install -current on a spare partition and try the new cardbus code there... Many thanks, -- Vladimir To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 14:25:37 2001 Delivered-To: freebsd-stable@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 2741B37B401 for ; Wed, 14 Feb 2001 14:25:34 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.2/8.11.1) with ESMTP id f1EMPMH88753; Wed, 14 Feb 2001 14:25:22 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: Erwan Arzur Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Creating a 4.2-STABLE iso In-Reply-To: Message from Erwan Arzur of "Wed, 14 Feb 2001 18:13:30 +0800." <3A8A5A4A.AE7EAD64@netvalue.com> Date: Wed, 14 Feb 2001 14:25:22 -0800 Message-ID: <88749.982189522@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > It's not that simple if you want to include your own patches (i did this > for pre-configured boxes mainly). That's what this little snipped of release/Makefile is for: .if defined(LOCAL_PATCHES) && exists(${LOCAL_PATCHES}) cd ${CHROOTDIR}/usr/src && patch ${PATCH_FLAGS} < ${LOCAL_PATCHES} .endif You just pass in the name of your patch file on the command line to make release. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 14:40:30 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mile.nevermind.kiev.ua (ppp-236.nav.kiev.ua [213.169.65.236]) by hub.freebsd.org (Postfix) with ESMTP id 0885337B503 for ; Wed, 14 Feb 2001 14:40:09 -0800 (PST) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.11.1/8.11.1) id f1EMc3Z08129; Thu, 15 Feb 2001 00:38:03 +0200 (EET) (envelope-from never) Date: Thu, 15 Feb 2001 00:37:23 +0200 From: Nevermind To: Jordan Hubbard Cc: Erwan Arzur , freebsd-stable@FreeBSD.ORG Subject: Re: Creating a 4.2-STABLE iso Message-ID: <20010215003723.C1754@nevermind.kiev.ua> References: <88749.982189522@winston.osd.bsdi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <88749.982189522@winston.osd.bsdi.com>; from jkh@winston.osd.bsdi.com on Wed, Feb 14, 2001 at 02:25:22PM -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Jordan Hubbard! On Wed, Feb 14, 2001 at 02:25:22PM -0800, you wrote: > > It's not that simple if you want to include your own patches (i did this > > for pre-configured boxes mainly). > > That's what this little snipped of release/Makefile is for: > > .if defined(LOCAL_PATCHES) && exists(${LOCAL_PATCHES}) > cd ${CHROOTDIR}/usr/src && patch ${PATCH_FLAGS} < ${LOCAL_PATCHES} > .endif > > You just pass in the name of your patch file on the command line > to make release. So, maybe we will start writing an article for handbook. I'm volouteering for assembling and writing some parts of this article. I would appreciate any help in doing this. Please send any of your suggestions directly to me with subj "ISO article". The .plan is: 1. Introdution 1.1 What is release? 1.2 Why one can need it? 2. Building releases 2.1 Building standard release 2.2 Building custom release 2.3 Including cusom packages 2.4 Making an ISO image If it is correct? -- NEVE-RIPE The instructions said to install Windows 98 or better, so I installed FreeBSD. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 14:43:10 2001 Delivered-To: freebsd-stable@freebsd.org Received: from drugs.dv.isc.org (drugs.dv.isc.org [130.155.191.236]) by hub.freebsd.org (Postfix) with ESMTP id BBA7337B503 for ; Wed, 14 Feb 2001 14:43:05 -0800 (PST) Received: from nominum.com (localhost.dv.isc.org [127.0.0.1]) by drugs.dv.isc.org (8.11.2/8.11.2) with ESMTP id f1EMhDH94606; Thu, 15 Feb 2001 09:43:15 +1100 (EST) (envelope-from marka@nominum.com) Message-Id: <200102142243.f1EMhDH94606@drugs.dv.isc.org> To: Kris Kennaway Cc: Tom , Terry Rossi , Michael DeMutis , freebsd-stable@FreeBSD.ORG From: Mark.Andrews@nominum.com Subject: Re: Named crashing In-reply-to: Your message of "Wed, 14 Feb 2001 09:43:55 -0800." <20010214094355.C72669@mollari.cthul.hu> Date: Thu, 15 Feb 2001 09:43:13 +1100 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Firstly, last time there was a security problem with BIND (nxt bug) lots of people failed to stop the old server when they upgraded. This may be the case here. Now if you can find the core please run strings - named.core | grep named If this reports 8.2.3-REL open a bug report with ISC, bind-bugs@isc.org, and I'll take it from there. Mark -- Mark Andrews, Nominum Inc. 1 Seymour St., Dundas Valley, NSW 2117, Australia PHONE: +61 2 9871 4742 INTERNET: Mark.Andrews@nominum.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 15:43:14 2001 Delivered-To: freebsd-stable@freebsd.org Received: from cantvc.canterbury.ac.nz (cantvc.canterbury.ac.nz [132.181.30.1]) by hub.freebsd.org (Postfix) with ESMTP id 2839E37B4EC for ; Wed, 14 Feb 2001 15:43:07 -0800 (PST) Received: from CONVERSION-DAEMON.it.canterbury.ac.nz by it.canterbury.ac.nz (PMDF V6.0-24 #45723) id <01K051B3OVYOAC6LA5@it.canterbury.ac.nz> for freebsd-stable@FreeBSD.ORG; Thu, 15 Feb 2001 12:43:05 +1300 (NEW ZEALAND DAYLIGHT TIME) Received: from student.canterbury.ac.nz ([172.31.164.87]) by it.canterbury.ac.nz (PMDF V6.0-24 #45723) with ESMTP id <01K051AP5SNAAC6KIN@it.canterbury.ac.nz>; Thu, 15 Feb 2001 12:43:05 +1300 (NEW ZEALAND DAYLIGHT TIME) Received: (from rbm49@localhost) by student.canterbury.ac.nz (8.11.2/8.11.2) id f1ENe7t12113; Thu, 15 Feb 2001 12:40:08 +1300 (NZDT envelope-from rbm49) Date: Thu, 15 Feb 2001 12:40:01 +1300 From: Richard B Mahoney Subject: Ghostscript-6.50_2 under 4.0 Stable To: Users of FreeBSD-stable Cc: Andreas Klemm Reply-To: Richard B Mahoney Mail-followup-to: Users of FreeBSD-stable , Andreas Klemm Message-id: <20010215124000.G6617@student.canterbury.ac.nz> Organization: University of Canterbury MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.2-20010211-STABLE Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Readers, I have just updated my system from 4.0 to FreeBSD 4.2-20010211-STABLE. I updated everything but SRC. I've just tried to compile `Ghostscript-6.50_2' without success. I was wondering if anyone would be able to spot what is wrong. Here is the log file: ************************************************ bash-2.04$ pwd /usr/ports/print/ghostscript6 bash-2.04$ sudo make DISTDIR=/usr/home/rbm49/distdir/ Type "make A4=yes" if you want -DA4 for compilation. ===> Extracting for ghostscript-6.50_2 >> Checksum OK for ghostscript-6.50.tar.gz. >> Checksum OK for ghostscript-fonts-std-6.0.tar.gz. >> Checksum OK for ghostscript-fonts-other-6.0.tar.gz. >> Checksum OK for pdf_sec.ps. >> Checksum OK for gdevcd8.tar.gz. >> Checksum OK for hpdj-2.6.tar.gz. >> Checksum OK for pcl3-3.0.2.tar.gz. >> Checksum OK for gdevdj9.c.gz. >> Checksum OK for print-4.0.4.tar.gz. ===> ghostscript-6.50_2 depends on file: /nonexistent - not found ===> Verifying extract for /nonexistent in /usr/ports/graphics/jpeg ===> Extracting for jpeg-6b >> Checksum OK for jpegsrc.v6b.tar.gz. ===> jpeg-6b depends on executable: libtool - found ===> Returning to build of ghostscript-6.50_2 ===> ghostscript-6.50_2 depends on executable: gmake - found ===> ghostscript-6.50_2 depends on shared library: png.4 - found ===> ghostscript-6.50_2 depends on shared library: X11.6 - found >>> in post-extract ... >>> extracting gdevcd8.tar.gz ... ===> Patching for ghostscript-6.50_2 ===> Applying FreeBSD patches for ghostscript-6.50_2 Ignoring previously applied (or reversed) patch. 1 out of 1 hunks ignored--saving rejects to src/contrib.mak.rej >> Patch patch-ab failed to apply cleanly. >> Patch(es) patch-aa applied cleanly. *** Error code 1 Stop in /usr/ports/print/ghostscript6. *** Error code 1 Stop in /usr/ports/print/ghostscript6. *** Error code 1 Stop in /usr/ports/print/ghostscript6. *** Error code 1 Stop in /usr/ports/print/ghostscript6. *** Error code 1 Stop in /usr/ports/print/ghostscript6. bash-2.04$ ************************************************ Any help with this -- hopefully wee -- problem would be much appreciated. Many regards, Richard Mahoney -- ------------------------ Richard Mahoney ------------------------- 78 Jeffreys Rd +64-3-351-5831 Christchurch New Zealand --------------- mailto:rbm49@csc.canterbury.ac.nz ---------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 16:19: 4 2001 Delivered-To: freebsd-stable@freebsd.org Received: from harmony.village.org (rover.village.org [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 7D2BB37B4EC for ; Wed, 14 Feb 2001 16:18:59 -0800 (PST) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.1/8.11.1) with ESMTP id f1F0IpW65550; Wed, 14 Feb 2001 17:18:52 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200102150018.f1F0IpW65550@harmony.village.org> To: "Vladimir V. Egorin" Subject: Re: CARDBUS support in -STABLE Cc: freebsd-stable@FreeBSD.ORG In-reply-to: Your message of "Wed, 14 Feb 2001 16:02:33 CST." <20010214160233.A3335@math.uic.edu> References: <20010214160233.A3335@math.uic.edu> Date: Wed, 14 Feb 2001 17:18:51 -0700 From: Warner Losh Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20010214160233.A3335@math.uic.edu> "Vladimir V. Egorin" writes: : I have a laptop with cardbus ethernet which I am anxious to use at some : time. I understand cardbus support has just appeared in -current. : Does anyone know how close it is to appearing in -stable (e.g. a couple : of months, a year, etc.)? Just trying to decide whether I should be : patient (I'd rather be if cardbus support in -stable is close enough), : or just install -current on a spare partition and try the new cardbus : code there... CARDBUS almost certainly won't be ported to stable. But don't install -current just now. -D2001/02/10 is a relatively safe point to use, but anything newer has major problems at the moment. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 17:15:28 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mobile.hub.org (SHW39-29.accesscable.net [24.138.39.29]) by hub.freebsd.org (Postfix) with ESMTP id 1CBEC37B401 for ; Wed, 14 Feb 2001 17:15:25 -0800 (PST) Received: from localhost (scrappy@localhost) by mobile.hub.org (8.11.1/8.11.1) with ESMTP id f1ENWcd71575 for ; Wed, 14 Feb 2001 19:32:39 -0400 (AST) (envelope-from scrappy@hub.org) X-Authentication-Warning: mobile.hub.org: scrappy owned process doing -bs Date: Wed, 14 Feb 2001 19:32:38 -0400 (AST) From: The Hermit Hacker To: Subject: Setting up a serial console ... anythign change recently? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I used to have a serial console setup that worked quite effectively ... I admin the machine from half a country away, and could easily do upgrrades and what not ... then all of a suddent, it just stop'd working ... I'm running 4.2-STABLE, with my serial port setup as: device sio0 at isa? port IO_COM1 flags 0x10 irq 4 options CONSPEED=9600 #default speed for serial console (default 9600) is there anyting wrong with that? something that has changed that I'm not reflecting in my kernel? Thanks ... Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 17:16:41 2001 Delivered-To: freebsd-stable@freebsd.org Received: from albatross.prod.itd.earthlink.net (albatross.prod.itd.earthlink.net [207.217.120.120]) by hub.freebsd.org (Postfix) with ESMTP id 9E0DA37B401 for ; Wed, 14 Feb 2001 17:16:39 -0800 (PST) Received: from veager.siteplus.net (user-38lc8t9.dialup.mindspring.com [209.86.35.169]) by albatross.prod.itd.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id RAA13187; Wed, 14 Feb 2001 17:16:27 -0800 (PST) Date: Wed, 14 Feb 2001 20:16:16 -0500 (EST) From: Jim Weeks To: Mike Meyer Cc: Stephen Montgomery-Smith , freebsd-stable@FreeBSD.ORG Subject: Re: Different approach to mergemaster In-Reply-To: <14986.50425.254712.942186@guru.mired.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 14 Feb 2001, Mike Meyer wrote: > I don't really have trouble with it - I just wish there were some > files it would just quietly update and not bother me about. Not all of > them - I want to see changes to /etc/defaults, even though I'm just > going to install them. But I don't really care about most of the > /etc/rc.* files; I use the hooks in rc.conf to control those, and > seeing the changes /etc/defaults/rc.conf is sufficient. I don't really have a problem with this. The first thing I look at during comparison is the name of the file. If it is a long file (long enough to "more" into multiple pages) that I know I haven't customized, I simply "q" for quit, "i" for install and continue. Scrolling isn't necessary and consequently doesn't take that much time. -- Jim Weeks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 17:31:23 2001 Delivered-To: freebsd-stable@freebsd.org Received: from xena.gsicomp.on.ca (cr677933-a.ktchnr1.on.wave.home.com [24.43.230.149]) by hub.freebsd.org (Postfix) with ESMTP id 65B9537B491 for ; Wed, 14 Feb 2001 17:31:16 -0800 (PST) Received: from hermes (hermes.gsicomp.on.ca [192.168.0.18]) by xena.gsicomp.on.ca (8.11.1/8.9.3) with SMTP id f1F1TGi70244; Wed, 14 Feb 2001 20:29:17 -0500 (EST) (envelope-from matt@gsicomp.on.ca) Message-ID: <000b01c096ee$8467c570$1200a8c0@gsicomp.on.ca> From: "Matthew Emmerton" To: , Cc: References: <200102150100.UAA21464@mail1.mco.bellsouth.net> Subject: Re: Re: miniperl breaks buildworld Date: Wed, 14 Feb 2001 20:27:51 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm not quite sure, but if you edit /usr/src/gnu/usr.bin/perl/Makefile and hack out miniperl from the SUBDIR line as well as the "build-tools" section, I'm sure that would do the trick. However, note that the note in /usr/src/UPDATING only says that miniperl is not installed, and is not used by the build procedure. However, it seems that it is still built during the process (presumably an oversight.) I've cc'd this to -stable (since this is where this thread really belongs.) Matt Emmerton > I've had this exact problem. I didn't resolve it until I re-re-reinstalled > > How do you direct make to ignore miniperl? > > > > > From: "Matthew Emmerton" > > Date: 2001/02/14 Wed PM 12:51:01 EST > > To: "Tony Wells" , > > Subject: Re: miniperl breaks buildworld > > > > > Hi all, > > > I'm trying to do a 'buildworld' on a 3.5-RELEASE box after I cvsupped > > > 4_RELENG. > > > > > > The buildworld crashes trying to build miniperl, which looking in > > > /usr/src/UPDATING says has been removed from the perl build. > > > > > > My question is, is there a way to remove the miniperl from the > > > buildworld build? > > > > > > Maybe the target 4_RELENG isn't the 4.2-RELEASE I thought I was > > > getting? > > > > 4_RELENG is 4.2-STABLE. If you want 4.2-RELEASE you need to use > > 4_2_0_RELEASE. > > > > -- > > Matt Emmerton > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 17:38:39 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtp21.singnet.com.sg (smtp21.singnet.com.sg [165.21.101.201]) by hub.freebsd.org (Postfix) with ESMTP id 3AAEF37B491 for ; Wed, 14 Feb 2001 17:38:33 -0800 (PST) Received: from pacific.net.sg (ad202.166.104.88.magix.com.sg [202.166.104.88]) by smtp21.singnet.com.sg (8.11.2/8.11.2) with ESMTP id f1F1cPN04317 for ; Thu, 15 Feb 2001 09:38:25 +0800 Message-ID: <3A8B3336.372BB0BE@pacific.net.sg> Date: Thu, 15 Feb 2001 09:39:02 +0800 From: Teo Tse Chin X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Re: Different approach to mergemaster References: <3A8AB391.12D1D822@math.missouri.edu> <20010214115150.B81070@grumpy.dyndns.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The main difference between what Mr Montgomery-Smith described and mergemaster is that his method diffs the current /etc against the old defaults before comparing with the new ones. This way, only files that've not changed (ie not hand edited) are updated automatically. David Kelly wrote: > > With all due respect what you describe sounds exactly like mergemaster. > > Mergemaster builds a temporary /etc and diffs the current /etc against > it. Changes are presented for approval, "select old, new, or edit". > The only problems I've had is being impatient and hitting the 'i' > for Install key before I really groked the differences. -- -tc- tcteo AT pacific DOT net DOT sg home DOT pacific DOT net DOT sg SLASH ~tcteo icq one two zero seven five eight nine 3d 49 3a 3i 1d 4d 43 49 1e To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 17:38:51 2001 Delivered-To: freebsd-stable@freebsd.org Received: from karon.dynas.se (karon.dynas.se [192.71.43.4]) by hub.freebsd.org (Postfix) with SMTP id 97F0437B401 for ; Wed, 14 Feb 2001 17:38:39 -0800 (PST) Received: (qmail 72564 invoked from network); 15 Feb 2001 01:38:38 -0000 Received: from spirit.sto.dynas.se (HELO spirit.dynas.se) (172.16.1.10) by 172.16.1.1 with SMTP; 15 Feb 2001 01:38:38 -0000 Received: (qmail 14232 invoked from network); 15 Feb 2001 01:38:36 -0000 Received: from explorer.rsa.com (10.81.217.59) by spirit.dynas.se with SMTP; 15 Feb 2001 01:38:36 -0000 Received: (from mikko@localhost) by explorer.rsa.com (8.11.1/8.11.1) id f1F1cXc45591; Wed, 14 Feb 2001 17:38:33 -0800 (PST) (envelope-from mikko) Date: Wed, 14 Feb 2001 17:38:33 -0800 (PST) From: Mikko Tyolajarvi Message-Id: <200102150138.f1F1cXc45591@explorer.rsa.com> To: rbm49@student.canterbury.ac.nz Cc: freebsd-stable@freebsd.org Subject: Re: Ghostscript-6.50_2 under 4.0 Stable Newsgroups: local.freebsd.stable References: <20010215124000.G6617@student.canterbury.ac.nz> X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In local.freebsd.stable you write: >I have just updated my system from 4.0 to FreeBSD >4.2-20010211-STABLE. I updated everything but SRC. I've just >tried to compile `Ghostscript-6.50_2' without success. I was >wondering if anyone would be able to spot what is wrong. >Here is the log file: [...] >===> Patching for ghostscript-6.50_2 >===> Applying FreeBSD patches for ghostscript-6.50_2 >Ignoring previously applied (or reversed) patch. >1 out of 1 hunks ignored--saving rejects to src/contrib.mak.rej >>> Patch patch-ab failed to apply cleanly. Odd. None of my machines (recently cvsupped) have a "patch-ab" for ghostscript6. According to CVS it was removed four weeks ago (along with patch-ad, I might add). $.02, /Mikko -- Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 19: 5:20 2001 Delivered-To: freebsd-stable@freebsd.org Received: from boromir.vpop.net (dns1.vpop.net [206.117.147.2]) by hub.freebsd.org (Postfix) with ESMTP id 60BC137B4EC for ; Wed, 14 Feb 2001 19:05:12 -0800 (PST) Received: from vpop.net ([209.102.16.48]) by boromir.vpop.net (8.11.2/8.11.2) with ESMTP id f1F358R03376 for ; Wed, 14 Feb 2001 19:05:09 -0800 (PST) (envelope-from mreimer@vpop.net) Message-ID: <3A8B4784.3C273AB7@vpop.net> Date: Wed, 14 Feb 2001 19:05:40 -0800 From: Matthew Reimer Organization: VPOP Technologies, Inc. X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: stable@freebsd.org Subject: Reproducible kernel panic during boot; probably SCSI-related Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG We've had a reproducible problem today with 4.2-STABLE from between 2001/02/13 1500 PST to 2001/02/14 1500 PST, where the kernel would print the message "Waiting 2 seconds for SCSI devices to settle" and then panic (details below). This would happen every time. I rebuilt the kernel several times to make sure there were no stale dependencies but every time it panicked the same way. Eventually I cvsup'd /sys sources from 2001/02/10 and the problem went away. I presume the problem is still in -stable. I wasn't able to get a dump because *dumpdev = 0xffffffff. (Does anyone know how to get dumpdev set properly this early in the boot process? In -current one could use "show /disk/da0s1b" but we don't have that in -stable.) This is running on an L440GX mobo with one extra 2940 controller, for a total of three. Any ideas? Matt Fatal trap 12: page fault while in kernel mode fault virtual address = 0x123 fault code = supervisor read, page not present instruction pointer = 0x8:0xc013a2b8 stack pointer = 0x10:0xc03aea88 frame pointer = 0x10:0xc03aeab4 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) interrupt mask = cam kernel: type 12 trap, code=0 Stopped at ahc_get_tran_settings+0xbc: movzbl 0x3(%esi),%eax db> trace ahc_get_tran_settings(c163fa00,0,42,c03aeb84) at ahc_get_tran_settings+0xbc ahc_action(c163d740,c03aeb84) at ahc_action+0x636 xpt_action(c03aeb84,c03aeb84,c0a34240,1,c03aec10) at xpt_action+0x376 proberequestdefaultnegotiation(c16c2a00,c16c501c,c16c2a00,1,1) at proberequestdefaultnegotiation+0x2c probeschedule(c16c2a00,c16c2a00,c163d718,7d0,c16c2a00) at probeschedule+0x6d proberegister(c16c2a00,c16c5000,6c0000,c03aed60,c16c5000) at proberegister+0x7c cam_periph_alloc(c0122078,0,c01228e4,c01221cc,c02359d8) at cam_periph_alloc+0x1e2 xpt_scan_lun(c1640c00,c0a34260,10003201,c16c5000) at xpt_scan_lun+0x1c5 xpt_action(c16c5000,c16c5000,c0a34260,1) at xpt_action+0x946 xpt_scan_bus(c1640c00,c16c5800) at xpt_scan_bus+0x123 xpt_action(c16c5800,c16c5800,c163d700,c011f8a4,c03aef28) at xpt_action+0x92c xpt_finishconfig(c1640c00,c16c5800,c163d380,c03aef68,c0a34280) at xpt_finishconfig+0x30 xptconfigfunc(c163d700,0,c03aef54,c011f723,c163d700) at xptconfigfunc+0xfb xptdefbusfunc(c163d700,c03aef68) at xptdefbusfunc+0x29 xptbustraverse(0,c011f8a4,c03aef68,0,c0122d70) at xptbustraverse+0x2b xpt_for_all_busses(c0122d70,0,c03aef94,c0160f9e,0) at xpt_for_all_busses+0x29 xpt_config(0) at xpt_config+0x50 run_interrupt_driven_config_hooks(0,3acc00,3b3000,0,c011d414) at run_interrupt_driven_config_hooks+0x1a mi_startup(c03aefb4,b0202,ffe,3b3000,c0166da5) at mi_startup+0x70 begin() at begin+0x4b --- dmesg of a working kernel from 2001.02.10.00.00.00 FreeBSD 4.2-STABLE #4: Wed Feb 14 17:06:26 PST 2001 mreimer@thorin.vpop.net:/usr/obj/usr/src/sys/RING Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 547179703 Hz CPU: Pentium III/Pentium III Xeon/Celeron (547.18-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x673 Stepping = 3 Features=0x387fbff real memory = 268369920 (262080K bytes) avail memory = 257646592 (251608K bytes) Preloaded elf kernel "kernel" at 0xc038d000. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib2: at device 1.0 on pci0 pci1: on pcib2 pcib3: at device 15.0 on pci1 pci2: on pcib3 ahc0: port 0x1400-0x14ff mem 0xf4100000 -0xf4100fff irq 11 at device 12.0 on pci0 aic7896/97: Wide Channel A, SCSI Id=7, 32/255 SCBs ahc1: port 0x1800-0x18ff mem 0xf4101000 -0xf4101fff irq 11 at device 12.1 on pci0 aic7896/97: Wide Channel B, SCSI Id=7, 32/255 SCBs fxp0: port 0x1080-0x10bf mem 0xf4000000-0xf40f ffff,0xf4102000-0xf4102fff irq 10 at device 14.0 on pci0 fxp0: Ethernet address 00:a0:c9:fb:26:e6 ahc2: port 0x2000-0x20ff mem 0xf4103000-0xf4103fff i rq 5 at device 16.0 on pci0 aic7870: Wide Channel A, SCSI Id=7, 16/255 SCBs isab0: at device 18.0 on pci0 isa0: on isab0 pci0: at 18.1 pci0: at 18.2 irq 10 chip1: port 0x1040-0x104f at device 18.3 on pci0 pci0: at 20.0 pcib1: on motherboard pci3: on pcib1 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x0> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A, console sio1: configured irq 3 not in bitmap of probed irqs 0 IP packet filtering initialized, divert disabled, rule-based forwarding enabled, default to deny, logging disabled Waiting 2 seconds for SCSI devices to settle sa0 at ahc2 bus 0 target 0 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 10.000MB/s transfers (10.000MHz, offset 15) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-3 device da1: 40.000MB/s transfers (20.000MHz, offset 31, 16bit), Tagged Queueing Enabled da1: 35003MB (71687340 512 byte sectors: 255H 63S/T 4462C) da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-3 device da0: 40.000MB/s transfers (20.000MHz, offset 31, 16bit), Tagged Queueing Enabled da0: 8748MB (17916240 512 byte sectors: 255H 63S/T 1115C) ch0 at ahc2 bus 0 target 1 lun 0 ch0: Removable Changer SCSI-2 device ch0: 3.300MB/s transfers ch0: 8 slots, 1 drive, 1 picker, 0 portals da2 at ahc1 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI-3 device da2: 40.000MB/s transfers (20.000MHz, offset 31, 16bit), Tagged Queueing Enabled da2: 35003MB (71687340 512 byte sectors: 255H 63S/T 4462C) Mounting root from ufs:/dev/da0s1a To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 19: 7:35 2001 Delivered-To: freebsd-stable@freebsd.org Received: from cantvc.canterbury.ac.nz (cantvc.canterbury.ac.nz [132.181.30.1]) by hub.freebsd.org (Postfix) with ESMTP id 019C937B401 for ; Wed, 14 Feb 2001 19:07:28 -0800 (PST) Received: from CONVERSION-DAEMON.it.canterbury.ac.nz by it.canterbury.ac.nz (PMDF V6.0-24 #45723) id <01K058GEHCG0AC6LA5@it.canterbury.ac.nz> for freebsd-stable@FreeBSD.ORG; Thu, 15 Feb 2001 16:07:24 +1300 (NEW ZEALAND DAYLIGHT TIME) Received: from student.canterbury.ac.nz (rbm49.tacacs.canterbury.ac.nz [172.31.164.87]) by it.canterbury.ac.nz (PMDF V6.0-24 #45723) with ESMTP id <01K058GD1OI2AB0G5O@it.canterbury.ac.nz> for freebsd-stable@FreeBSD.ORG; Thu, 15 Feb 2001 16:07:24 +1300 (NEW ZEALAND DAYLIGHT TIME) Received: (from rbm49@localhost) by student.canterbury.ac.nz (8.11.2/8.11.2) id f1F36Hb15594 for freebsd-stable@FreeBSD.ORG; Thu, 15 Feb 2001 16:06:17 +1300 (NZDT envelope-from rbm49) Date: Thu, 15 Feb 2001 16:05:47 +1300 From: Richard B Mahoney Subject: Re: Ghostscript-6.50_2 under 4.0 Stable In-reply-to: <"from mikko"@dynas.se> To: freebsd-stable@FreeBSD.ORG Reply-To: Richard B Mahoney Mail-followup-to: freebsd-stable@FreeBSD.ORG Message-id: <20010215160546.H6617@student.canterbury.ac.nz> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.2-20010211-STABLE References: <20010215124000.G6617@student.canterbury.ac.nz> <200102150138.f1F1cXc45591@explorer.rsa.com> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mikko, On Wed, Feb 14, 2001 at 05:38:33PM -0800, Mikko Tyolajarvi wrote: > In local.freebsd.stable you write: > > >I have just updated my system from 4.0 to FreeBSD > >4.2-20010211-STABLE. I updated everything but SRC. I've just > >tried to compile `Ghostscript-6.50_2' without success. I was > >wondering if anyone would be able to spot what is wrong. > > >Here is the log file: > > [...] > > >===> Patching for ghostscript-6.50_2 > >===> Applying FreeBSD patches for ghostscript-6.50_2 > >Ignoring previously applied (or reversed) patch. > >1 out of 1 hunks ignored--saving rejects to src/contrib.mak.rej > >>> Patch patch-ab failed to apply cleanly. > > Odd. None of my machines (recently cvsupped) have a "patch-ab" for > ghostscript6. According to CVS it was removed four weeks ago (along > with patch-ad, I might add). > > $.02, > /Mikko Curious. I wonder if your Makefile is more recent than mine. Here are the details: # New ports collection makefile for: ghostscript # Date created: Tue Jun 10 21:58:54 CEST 1997 # Whom: Andreas Klemm # # $FreeBSD: ports/print/ghostscript6/Makefile,v 1.62 2001/01/19 \ 19:01:31 andreas Exp $ # For what its worth, /usr/ports/print/ghostscript6/files/ looks like this: -rw-r--r-- 1 root wheel 351 Nov 27 03:13 dj970.contrib.mak -rw-r--r-- 1 root wheel 128 Jan 18 09:19 escputil.contrib.mak -rw-r--r-- 1 root wheel 641 Apr 22 2000 lqx70ch.upp -rw-r--r-- 1 root wheel 641 Apr 22 2000 lqx70cl.upp -rw-r--r-- 1 root wheel 622 Apr 22 2000 lqx70cm.upp -rw-r--r-- 1 root wheel 8749 Jan 17 11:57 patch-aa -rw-r--r-- 1 root wheel 384 Mar 26 2000 patch-ab -rw-r--r-- 1 root wheel 2066 Jan 17 11:57 patch-ac -rw-r--r-- 1 root wheel 425 Aug 25 08:44 patch-ad -rw-r--r-- 1 root wheel 1349 Jan 17 11:57 patch-lib,gs_init.ps -rw-r--r-- 1 root wheel 2212 Apr 22 2000 stc740ih.upp -rw-r--r-- 1 root wheel 1127 Apr 22 2000 stc740p.upp -rw-r--r-- 1 root wheel 828 Apr 22 2000 stc740pl.upp This is the first time I've updated, but I would have though that the update available from, ftp://releng4.FreeBSD.org/pub/FreeBSD/snapshots/i386/ \ 4.2-20010211-STABLE/ was the most recent ports skeleton available. Am I wrong? Will I now have to cvsup my ports? Many regards, Richard Mahoney -- ------------------------ Richard Mahoney ------------------------- 78 Jeffreys Rd +64-3-351-5831 Christchurch New Zealand --------------- mailto:rbm49@csc.canterbury.ac.nz ---------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 19:58:35 2001 Delivered-To: freebsd-stable@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id 5210E37B65D for ; Wed, 14 Feb 2001 19:58:33 -0800 (PST) Received: from hornet.unixfreak.org (hornet [63.198.170.140]) by bazooka.unixfreak.org (Postfix) with ESMTP id CE2653E02; Wed, 14 Feb 2001 19:58:32 -0800 (PST) To: Matthew Reimer Cc: stable@freebsd.org Subject: Re: Reproducible kernel panic during boot; probably SCSI-related In-Reply-To: Message from Matthew Reimer of "Wed, 14 Feb 2001 19:05:40 PST." <3A8B4784.3C273AB7@vpop.net> Date: Wed, 14 Feb 2001 19:58:32 -0800 From: Dima Dorfman Message-Id: <20010215035832.CE2653E02@bazooka.unixfreak.org> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I wasn't able to get a dump because *dumpdev = 0xffffffff. (Does anyone > know how to get dumpdev set properly this early in the boot process? In > -current one could use "show /disk/da0s1b" but we don't have that in > -stable.) There was a thread on -hackers about this a few weeks ago ("capturing an early kernel dump"). See: http://docs.FreeBSD.org/cgi/getmsg.cgi?fetch=571506+0+archive/2001/freebsd-hackers/20010204.freebsd-hackers > Any ideas? As far as I can remember, this was the only change to anything SCSI-related in RELENG_4 in the last few days: ---------------------------- revision 1.14.2.3 date: 2001/02/12 01:28:30; author: mjacob; state: Exp; lines: +16 -8 MFC: fixing SSD_KEY_RECOVERED_ERROR to be the non-error it is and making MFC: sure we're chatty on ABORTED COMMAND errors. ---------------------------- If you don't get any better ideas, you may want to try backing that out and see if it helps. Hope this helps Dima Dorfman dima@unixfreak.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 20:25:41 2001 Delivered-To: freebsd-stable@freebsd.org Received: from pobox.inspire.net.nz (pobox.inspire.net.nz [203.79.89.4]) by hub.freebsd.org (Postfix) with ESMTP id C301837B401 for ; Wed, 14 Feb 2001 20:25:37 -0800 (PST) Received: from inspire.net.nz (ipnet-213.inspire.net.nz [203.79.88.213]) by pobox.inspire.net.nz (8.10.2/8.10.2) with ESMTP id f1F4P5r13123; Thu, 15 Feb 2001 17:25:10 +1300 (NZDT) Message-ID: <3A8B5CE6.AE9AF96D@inspire.net.nz> Date: Thu, 15 Feb 2001 17:36:54 +1300 From: "Bruce D. Harding" X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Kris Kennaway Cc: stable Subject: Re: compile errors References: <3A8A5F40.D3098A43@inspire.net.nz> <20010214094535.E72669@mollari.cthul.hu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Kris Kennaway wrote: > > Looks like your source tree may not have been completely > upgraded. Post your cvsupfile and the command you use to run it. cvs-cvsupfile : *default tag=RELENG_4 *default release=cvs *default host=cvsup.nz.freebsd.org *default base=/usr/local/etc/cvsup *default prefix=/usr *default delete *default use-rel-suffix *default compress src-all command: cvsup -g -L1 cvs-cvsupfile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 20:28:42 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rmx420-mta.mail.com (rmx420-mta.mail.com [165.251.48.152]) by hub.freebsd.org (Postfix) with ESMTP id DFA0637B503 for ; Wed, 14 Feb 2001 20:28:39 -0800 (PST) Received: from web147-mc (web147-mc.mail.com [165.251.48.144]) by rmx420-mta.mail.com (8.9.3/8.9.3) with SMTP id XAB03447; Wed, 14 Feb 2001 23:28:38 -0500 (EST) Message-ID: <384827042.982211318574.JavaMail.root@web147-mc> Date: Wed, 14 Feb 2001 23:28:38 -0500 (EST) From: Dorens Jay To: freebsd-stable@freebsd.org Subject: Problems compiling 4.2-STABLE from 4.2-RELEASE Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: mail.com X-Originating-IP: 165.166.175.123 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Trying to upgrade from 4.2-RELEASE to 4.2-STABLE, but I keep getting this same error (below). I've tried cvsup'ing from different sites, on different days, over the past 2 weeks, but I get the same exact error. I always rm -rf /usr/obj. I reinstalled 4.2-RELEASE from CD, tried to upgrade, and get the same _exact_ error. I am running an AMD K6/2 500 CPU, ASUS P5A mobo, 256M ram, UDMA/66 harddrives. Is this a problem with the AMD K6? Are there options in the /etc/make.conf I should try? (I compiled on a separate box - Pentium III 600 MHz - AND IT COMPILED JUST FINE. Go figure.) Here is the error: cd /usr/src/gnu/lib/libgcc; make depend; make all; make install echo '#include ' > config.h echo '#include ' >> config.h echo '#include "gansidecl.h"' > tconfig.h echo '#include "i386/xm-i386.h"' >> tconfig.h echo '#include "i386/i386.h"' > tm.h echo '#include "i386/att.h"' >> tm.h echo '#include "svr4.h"' >> tm.h echo '#include ' >> tm.h echo '#include "i386/freebsd.h"' >> tm.h echo '#include "i386/perform.h"' >> tm.h rm -f .depend mkdep -f .depend -a -I/usr/src/gnu/lib/libgcc/../../../contrib/gcc/config -I/usr/src/gnu/lib/libgcc/../../../contrib/gcc -I. -DIN_GCC -D_PTHREADS -DGTHREAD_USE_WEAK -I/usr/obj/usr/src/i386/usr/include /usr/src/gnu/lib/libgcc/../../../contrib/gcc/frame.c mkdep -f .depend -a -nostdinc++ -I/usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/inc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/tinfo.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/tinfo2.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/new.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/exception.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/exception.cc:33: gansidecl.h: No such file or directory /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/exception.cc:34: eh-common.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /usr/src/gnu/lib/libgcc. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. ******************** Any ideas? Please? ______________________________________________ FREE Personalized Email at Mail.com Sign up at http://www.mail.com/?sr=signup To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 20:37:32 2001 Delivered-To: freebsd-stable@freebsd.org Received: from point.osg.gov.bc.ca (point.osg.gov.bc.ca [142.32.102.44]) by hub.freebsd.org (Postfix) with ESMTP id B979637B401 for ; Wed, 14 Feb 2001 20:37:25 -0800 (PST) Received: (from daemon@localhost) by point.osg.gov.bc.ca (8.8.7/8.8.8) id UAA27882; Wed, 14 Feb 2001 20:37:03 -0800 Received: from passer.osg.gov.bc.ca(142.32.110.29) via SMTP by point.osg.gov.bc.ca, id smtpda27880; Wed Feb 14 20:36:48 2001 Received: (from uucp@localhost) by passer.osg.gov.bc.ca (8.11.2/8.9.1) id f1F4ahr56017; Wed, 14 Feb 2001 20:36:43 -0800 (PST) Received: from cwsys9.cwsent.com(10.2.2.1), claiming to be "cwsys.cwsent.com" via SMTP by passer9.cwsent.com, id smtpdB56015; Wed Feb 14 20:35:45 2001 Received: (from uucp@localhost) by cwsys.cwsent.com (8.11.2/8.9.1) id f1F4Zjw60766; Wed, 14 Feb 2001 20:35:45 -0800 (PST) Message-Id: <200102150435.f1F4Zjw60766@cwsys.cwsent.com> Received: from localhost.cwsent.com(127.0.0.1), claiming to be "cwsys" via SMTP by localhost.cwsent.com, id smtpdW60754; Wed Feb 14 20:34:50 2001 X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 Reply-To: Cy Schubert - ITSD Open Systems Group From: Cy Schubert - ITSD Open Systems Group X-Sender: schubert To: Richard B Mahoney Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Ghostscript-6.50_2 under 4.0 Stable In-reply-to: Your message of "Thu, 15 Feb 2001 16:05:47 +1300." <20010215160546.H6617@student.canterbury.ac.nz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 14 Feb 2001 20:34:50 -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20010215160546.H6617@student.canterbury.ac.nz>, Richard B Mahoney w rites: > Mikko, > > On Wed, Feb 14, 2001 at 05:38:33PM -0800, Mikko Tyolajarvi wrote: > > In local.freebsd.stable you write: > > > > >I have just updated my system from 4.0 to FreeBSD > > >4.2-20010211-STABLE. I updated everything but SRC. I've just > > >tried to compile `Ghostscript-6.50_2' without success. I was > > >wondering if anyone would be able to spot what is wrong. > > > > >Here is the log file: > > > > [...] > > > > >===> Patching for ghostscript-6.50_2 > > >===> Applying FreeBSD patches for ghostscript-6.50_2 > > >Ignoring previously applied (or reversed) patch. > > >1 out of 1 hunks ignored--saving rejects to src/contrib.mak.rej > > >>> Patch patch-ab failed to apply cleanly. > > > > Odd. None of my machines (recently cvsupped) have a "patch-ab" for > > ghostscript6. According to CVS it was removed four weeks ago (along > > with patch-ad, I might add). > > > > $.02, > > /Mikko > > Curious. I wonder if your Makefile is more recent than mine. Here > are the details: > > # New ports collection makefile for: ghostscript > # Date created: Tue Jun 10 21:58:54 CEST 1997 > # Whom: Andreas Klemm > # > # $FreeBSD: ports/print/ghostscript6/Makefile,v 1.62 2001/01/19 \ > 19:01:31 andreas Exp $ > # I have the same Makefile, however I too have a checksum mismatch. >> Checksum mismatch for gdevcd8.tar.gz. Regards, Phone: (250)387-8437 Cy Schubert Fax: (250)387-5766 Team Leader, Sun/Alpha Team Internet: Cy.Schubert@osg.gov.bc.ca Open Systems Group, ITSD, ISTA Province of BC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 20:45:52 2001 Delivered-To: freebsd-stable@freebsd.org Received: from femail6.sdc1.sfba.home.com (femail6.sdc1.sfba.home.com [24.0.95.86]) by hub.freebsd.org (Postfix) with ESMTP id 12C9037B401 for ; Wed, 14 Feb 2001 20:45:46 -0800 (PST) Received: from math.missouri.edu ([24.12.197.197]) by femail6.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20010215044545.DEKC21351.femail6.sdc1.sfba.home.com@math.missouri.edu>; Wed, 14 Feb 2001 20:45:45 -0800 Message-ID: <3A8B5EF9.9528BDA2@math.missouri.edu> Date: Wed, 14 Feb 2001 22:45:45 -0600 From: Stephen Montgomery-Smith X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Cy Schubert - ITSD Open Systems Group Cc: Richard B Mahoney , freebsd-stable@FreeBSD.ORG Subject: Re: Ghostscript-6.50_2 under 4.0 Stable References: <200102150435.f1F4Zjw60766@cwsys.cwsent.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Cy Schubert - ITSD Open Systems Group wrote: > > > I have the same Makefile, however I too have a checksum mismatch. > > >> Checksum mismatch for gdevcd8.tar.gz. > I had this problem. So I deleted gdevcd8.tar.gz from /usr/ports/distfiles, tried again, and it worked fine. I assumed that the first time that the download was bad. I had this same problem (and same solution) on three different computers. -- Stephen Montgomery-Smith stephen@math.missouri.edu http://www.math.missouri.edu/~stephen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 21:20:28 2001 Delivered-To: freebsd-stable@freebsd.org Received: from math.uic.edu (galois.math.uic.edu [131.193.178.114]) by hub.freebsd.org (Postfix) with SMTP id 0759637B491 for ; Wed, 14 Feb 2001 21:20:21 -0800 (PST) Received: (qmail 6165 invoked by uid 31415); 15 Feb 2001 05:19:54 -0000 Date: Wed, 14 Feb 2001 23:19:54 -0600 From: "Vladimir V. Egorin" To: Stephen Montgomery-Smith Cc: Cy Schubert - ITSD Open Systems Group , Richard B Mahoney , freebsd-stable@FreeBSD.ORG Subject: Re: Ghostscript-6.50_2 under 4.0 Stable Message-ID: <20010214231954.A6160@math.uic.edu> References: <200102150435.f1F4Zjw60766@cwsys.cwsent.com> <3A8B5EF9.9528BDA2@math.missouri.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8B5EF9.9528BDA2@math.missouri.edu>; from stephen@math.missouri.edu on Wed, Feb 14, 2001 at 10:45:45PM -0600 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Feb 14, 2001 at 10:45:45PM -0600, Stephen Montgomery-Smith wrote: > Cy Schubert - ITSD Open Systems Group wrote: > > > > > > I have the same Makefile, however I too have a checksum mismatch. > > > > >> Checksum mismatch for gdevcd8.tar.gz. > > > > I had this problem. So I deleted gdevcd8.tar.gz from > /usr/ports/distfiles, tried again, and it worked fine. > I assumed that the first time that the download was > bad. I had this same problem (and same solution) on > three different computers. > > -- > Stephen Montgomery-Smith > stephen@math.missouri.edu > http://www.math.missouri.edu/~stephen BTW, ps2epsi script that came with ghostscript 6.50 seems to be broken. I've replaced it with the one from ghostscript 5.50. -- Vladimir To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 22: 5:18 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mail.enteract.com (mail.enteract.com [207.229.143.33]) by hub.freebsd.org (Postfix) with ESMTP id 4E9E637B401 for ; Wed, 14 Feb 2001 22:05:10 -0800 (PST) Received: from jamestown.enteract.com (24-148-57-234.na.21stcentury.net [24.148.57.234]) by mail.enteract.com (8.9.3/8.9.3) with ESMTP id AAA01134 for ; Thu, 15 Feb 2001 00:05:08 -0600 (CST) (envelope-from jtm@enteract.com) Received: by jamestown.enteract.com (8.9.3/8.9.3) id AAA04103 for freebsd-stable@freebsd.org; Thu, 15 Feb 2001 00:03:57 -0600 (CST) (envelope-from jtm) From: James McNaughton Reply-To: jtm63@enteract.com To: freebsd-stable@freebsd.org Subject: Re: just keep on crashing... Date: Thu, 15 Feb 2001 00:00:48 -0600 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain References: <20010214143910.A3906@ameritech.net> <14986.61012.321908.836461@hip186.ch.intel.com> <000d01c096ca$715f3900$38934dc7@cnd.gatech.edu> In-Reply-To: <000d01c096ca$715f3900$38934dc7@cnd.gatech.edu> MIME-Version: 1.0 Message-Id: <01021500035601.03204@jamestown.enteract.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > > [ On Wednesday, February 14, Eric L. Howard wrote: ] > > > I'm attempting to get 4.2 up on a homebrew. > > > > > > ASUS P2B-DS mobo w/ onboard aic7xxx > > > 2 - Seagate ST39204LW U2 drives > > > Dual PIII 700Mhz > > > > > > I'm almost consistently running into problems when I go to do > > > stuff like cvsup or even installing some packages. Seems as if > > > whenever I get into something pushing the drives heavy and > > > consistently for any sustained period the machines crashes. My sources list those as 10k rpm drives. Could they be overheating? Maybe you nee some coolers or more air over the coolers if you already have them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 22:17:17 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mailhost.det.ameritech.net (mpdr0.detroit.mi.ameritech.net [206.141.239.206]) by hub.freebsd.org (Postfix) with ESMTP id 8BB0D37B4EC for ; Wed, 14 Feb 2001 22:17:13 -0800 (PST) Received: from phoncella.ameritech.net ([64.108.60.149]) by mailhost.det.ameritech.net (InterMail v4.01.01.07 201-229-111-110) with ESMTP id <20010215061712.DKDB9221.mailhost.det.ameritech.net@phoncella.ameritech.net> for ; Thu, 15 Feb 2001 01:17:12 -0500 Received: (from ehoward@localhost) by phoncella.ameritech.net (8.11.0/8.11.0) id f1F6Ckx10316 for freebsd-stable@FreeBSD.ORG; Thu, 15 Feb 2001 01:12:46 -0500 Date: Thu, 15 Feb 2001 01:12:46 -0500 From: "Eric L. Howard" To: freebsd-stable@FreeBSD.ORG Subject: Re: just keep on crashing... Message-ID: <20010215011246.A846@ameritech.net> References: <20010214143910.A3906@ameritech.net> <14986.61012.321908.836461@hip186.ch.intel.com> <000d01c096ca$715f3900$38934dc7@cnd.gatech.edu> <01021500035601.03204@jamestown.enteract.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01021500035601.03204@jamestown.enteract.com>; from jtm63@enteract.com on Thu, Feb 15, 2001 at 12:00:48AM -0600 X-FavoriteScripture: Romans 8:18 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At a certain time, now past, James McNaughton spake thusly: > > > > > > [ On Wednesday, February 14, Eric L. Howard wrote: ] > > > > I'm attempting to get 4.2 up on a homebrew. > > > > > > > > ASUS P2B-DS mobo w/ onboard aic7xxx > > > > 2 - Seagate ST39204LW U2 drives > > > > Dual PIII 700Mhz > > > > > > > > I'm almost consistently running into problems when I go to do > > > > stuff like cvsup or even installing some packages. Seems as if > > > > whenever I get into something pushing the drives heavy and > > > > consistently for any sustained period the machines crashes. > > My sources list those as 10k rpm drives. Could they be overheating? > > Maybe you nee some coolers or more air over the coolers if you already > have them. > Funny thing about that suggestion (not that it's a bad suggestion, mind you) is I'm in my basement ... w/ no basement radiators... in Michigan... with the case wide open =) ~ELH~ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- E r i c L. H o w a r d e h o w a r d @ a m e r i t e c h . n e t //////////////////////////////////////////////////////////////////////////////// "You can't hold a man down without staying down with him." -Booker T. Washington PGP KeyID:0x27586E9B Fingerprint:0BF7 F677 E4F3 E2F1 ACBF F786 754A 8F11 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 22:22: 1 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mailhost.det.ameritech.net (mpdr0.detroit.mi.ameritech.net [206.141.239.206]) by hub.freebsd.org (Postfix) with ESMTP id 4703737B503 for ; Wed, 14 Feb 2001 22:21:58 -0800 (PST) Received: from phoncella.ameritech.net ([64.108.60.149]) by mailhost.det.ameritech.net (InterMail v4.01.01.07 201-229-111-110) with ESMTP id <20010215062157.DKEL9221.mailhost.det.ameritech.net@phoncella.ameritech.net>; Thu, 15 Feb 2001 01:21:57 -0500 Received: (from ehoward@localhost) by phoncella.ameritech.net (8.11.0/8.11.0) id f1F6HpI10333; Thu, 15 Feb 2001 01:17:51 -0500 Date: Thu, 15 Feb 2001 01:17:51 -0500 From: "Eric L. Howard" To: Jeff Lee Cc: FreeBSD Stable E-mail LIst Subject: Re: just keep on crashing... Message-ID: <20010215011751.B846@ameritech.net> References: <20010214143910.A3906@ameritech.net> <14986.61012.321908.836461@hip186.ch.intel.com> <000d01c096ca$715f3900$38934dc7@cnd.gatech.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000d01c096ca$715f3900$38934dc7@cnd.gatech.edu>; from dibble@cc.gatech.edu on Wed, Feb 14, 2001 at 04:09:39PM -0500 X-FavoriteScripture: Romans 8:18 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At a certain time, now past, Jeff Lee spake thusly: > I would be willing to bet on the memory as well. My 486DX machine > with an atapi maxtor hd and 12 Mb of good solid RAM doesn't have any > probs with pkg_install or make. Takes quite a while, but usually no > problems. > > ################# > Jeff Lee > dibble@cc.gatech.edu > PGP ID: 0xDDB291A5 > --------8<--snip-------- > > > > [ On Wednesday, February 14, Eric L. Howard wrote: ] > > > I'm attempting to get 4.2 up on a homebrew. > > > > > > ASUS P2B-DS mobo w/ onboard aic7xxx > > > 2 - Seagate ST39204LW U2 drives > > > Dual PIII 700Mhz > > > > > > I'm almost consistently running into problems when I go to do > > > stuff like cvsup or even installing some packages. Seems as if > > > whenever I get into something pushing the drives heavy and > > > consistently for any sustained period the machines crashes. > > > > > > > Well, for what it's worth, I have a P2B-DS running dual Pentium III > > 500's (which is as high as my board can deal with as I have the > > "older" revision without support for the coppermine core) and two > > LVD U2 Quantum Viking II drives, a CD-RW, CD-ROM, and Seagate > > TapeStor 8000 drive all on the onboard controller. Never had a lick > > of trouble with it. > > > > Maybe your RAM is flakey? have you tried testing it or swapping a > > "known good" DIMM in? I don't know if those drives might be to > > blame.... > > --------8<--snip-------- OK...I'm on my third machine here and I THINK I may have found a winner...I got to swapping parts on the couple I had open and things didn't get much better. At least on this third one, I've only had problems w/ the NIC. By the look of things (I have 4 boxen yet to open and crank up), the whole thing could end up having been a 'damaged during shipping problem'. Thanks to all for the suggestions. ~ELH~ -- E r i c L. H o w a r d e h o w a r d @ a m e r i t e c h . n e t //////////////////////////////////////////////////////////////////////////////// "You can't hold a man down without staying down with him." -Booker T. Washington PGP KeyID:0x27586E9B Fingerprint:0BF7 F677 E4F3 E2F1 ACBF F786 754A 8F11 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 22:26:27 2001 Delivered-To: freebsd-stable@freebsd.org Received: from vimfuego.saarinen.org (saarinen.org [203.79.82.14]) by hub.freebsd.org (Postfix) with ESMTP id 2CD6437B401 for ; Wed, 14 Feb 2001 22:26:25 -0800 (PST) Received: from dendennis.saarinen.org ([192.168.1.2] helo=DENDENNIS) by vimfuego.saarinen.org with smtp (Exim 3.20 #1) id 14THru-0006Eb-00; Thu, 15 Feb 2001 19:26:18 +1300 From: "Juha Saarinen" To: "Eric L. Howard" , Subject: RE: just keep on crashing... Date: Thu, 15 Feb 2001 19:28:50 +1300 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal In-Reply-To: <20010215011246.A846@ameritech.net> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG :: I'm in my basement ... :: w/ no basement radiators... :: in Michigan... :: with the case wide open =) Michigan's not so hot, huh? ;-) Seriously though, case wide open doesn't equal better cooling. A good case is designed with airflow over the components in mind... and with the case open, you won't have that airflow. Cheers, -- Juha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 14 23: 0: 7 2001 Delivered-To: freebsd-stable@freebsd.org Received: from gw-nl1.origin-it.com (gw-nl1.origin-it.com [193.79.128.34]) by hub.freebsd.org (Postfix) with ESMTP id 4117837B684 for ; Wed, 14 Feb 2001 22:59:57 -0800 (PST) Received: from mail.de.origin-it.com (localhost.origin-it.com [127.0.0.1]) by gw-nl1.origin-it.com with ESMTP id HAA06613; Thu, 15 Feb 2001 07:59:54 +0100 (MET) (envelope-from Helge.Oldach@de.origin-it.com) Received: from smtprelay-de1.origin-it.com(172.16.188.53) by gw-nl1.origin-it.com via mwrap (4.0a) id xma006611; Thu, 15 Feb 01 07:59:54 +0100 Received: from mailhub.de.origin-it.com (mailhub.de.origin-it.com [172.16.189.20]) by mail.de.origin-it.com (8.9.3/8.8.5-1.2.2m-19990317) with ESMTP id HAA21208; Thu, 15 Feb 2001 07:59:53 +0100 (MET) Received: from galaxy.de.cp.philips.com (galaxy.de.cp.philips.com [130.143.166.29]) by mailhub.de.origin-it.com (8.11.1/8.11.1/hmo23oct00) with ESMTP id f1F6xqK22773; Thu, 15 Feb 2001 07:59:52 +0100 (CET) (envelope-from Helge.Oldach@de.origin-it.com) Received: (from hmo@localhost) by galaxy.de.cp.philips.com (8.9.3/8.9.3/hmo14aug98) id HAA21766; Thu, 15 Feb 2001 07:59:51 +0100 (MET) Message-Id: <200102150659.HAA21766@galaxy.de.cp.philips.com> Subject: Re: Ghostscript-6.50_2 under 4.0 Stable In-Reply-To: <3A8B5EF9.9528BDA2@math.missouri.edu> from Stephen Montgomery-Smith at "Feb 14, 2001 10:45:45 pm" To: stephen@math.missouri.edu (Stephen Montgomery-Smith) Date: Thu, 15 Feb 2001 07:59:50 +0100 (MET) Cc: Cy.Schubert@uumail.gov.bc.ca, rbm49@it.canterbury.ac.nz, freebsd-stable@FreeBSD.ORG From: Helge Oldach X-Address: Atos Origin, Billstrasse 80, D-20539 Hamburg, Germany X-Phone: +49 40 7886 464, Fax: +49 40 7886 235, Mobile: +49 160 4782517 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Stephen Montgomery-Smith: >Cy Schubert - ITSD Open Systems Group wrote: >> >> >> I have the same Makefile, however I too have a checksum mismatch. >> >> >> Checksum mismatch for gdevcd8.tar.gz. >> > >I had this problem. So I deleted gdevcd8.tar.gz from >/usr/ports/distfiles, tried again, and it worked fine. Actually the author of gdevcd8.tar.gz has made a modified tarball but did not change the name. There is currently no way for us to automatically detect this. Helge To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 1:28:54 2001 Delivered-To: freebsd-stable@freebsd.org Received: from freesbee.wheel.dk (freesbee.wheel.dk [193.162.159.97]) by hub.freebsd.org (Postfix) with ESMTP id AC47F37B65D for ; Thu, 15 Feb 2001 01:28:50 -0800 (PST) Received: by freesbee.wheel.dk (Postfix, from userid 1001) id 4C9213E67; Thu, 15 Feb 2001 10:28:49 +0100 (CET) Date: Thu, 15 Feb 2001 10:28:49 +0100 From: Jesper Skriver To: The Hermit Hacker Cc: freebsd-stable@freebsd.org Subject: Re: Setting up a serial console ... anythign change recently? Message-ID: <20010215102849.A83682@skriver.dk> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from scrappy@hub.org on Wed, Feb 14, 2001 at 07:32:38PM -0400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Feb 14, 2001 at 07:32:38PM -0400, The Hermit Hacker wrote: > > I used to have a serial console setup that worked quite effectively ... I > admin the machine from half a country away, and could easily do upgrrades > and what not ... then all of a suddent, it just stop'd working ... > > I'm running 4.2-STABLE, with my serial port setup as: > > device sio0 at isa? port IO_COM1 flags 0x10 irq 4 > options CONSPEED=9600 #default speed for serial console (default 9600) > > is there anyting wrong with that? something that has changed that I'm not > reflecting in my kernel? echo "-Dh" > /boot.config or from 'man sio' Meaning of flags: [cut] 0x00010 device is potential system console 0x00020 device is forced to become system console So either the /boot.config stuff, or change the sio flag from 0x10 to 0x20 /Jesper -- Jesper Skriver, jesper(at)skriver(dot)dk - CCIE #5456 Work: Network manager @ AS3292 (Tele Danmark DataNetworks) Private: Geek @ AS2109 (A much smaller network ;-) One Unix to rule them all, One Resolver to find them, One IP to bring them all and in the zone to bind them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 1:31:47 2001 Delivered-To: freebsd-stable@freebsd.org Received: from freesbee.wheel.dk (freesbee.wheel.dk [193.162.159.97]) by hub.freebsd.org (Postfix) with ESMTP id CD7A537B401 for ; Thu, 15 Feb 2001 01:31:36 -0800 (PST) Received: by freesbee.wheel.dk (Postfix, from userid 1001) id E5A4A3E6A; Thu, 15 Feb 2001 10:31:35 +0100 (CET) Date: Thu, 15 Feb 2001 10:31:35 +0100 From: Jesper Skriver To: Matthew Reimer Cc: stable@freebsd.org Subject: Re: Reproducible kernel panic during boot; probably SCSI-related Message-ID: <20010215103135.B83682@skriver.dk> References: <3A8B4784.3C273AB7@vpop.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8B4784.3C273AB7@vpop.net>; from mreimer@vpop.net on Wed, Feb 14, 2001 at 07:05:40PM -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Feb 14, 2001 at 07:05:40PM -0800, Matthew Reimer wrote: > We've had a reproducible problem today with 4.2-STABLE from between > 2001/02/13 1500 PST to 2001/02/14 1500 PST, where the kernel would print > the message "Waiting 2 seconds for SCSI devices to settle" and then > panic (details below). This would happen every time. I rebuilt the > kernel several times to make sure there were no stale dependencies but > every time it panicked the same way. Eventually I cvsup'd /sys sources > from 2001/02/10 and the problem went away. I presume the problem is > still in -stable. > > I wasn't able to get a dump because *dumpdev = 0xffffffff. (Does anyone > know how to get dumpdev set properly this early in the boot process? In > -current one could use "show /disk/da0s1b" but we don't have that in > -stable.) > > This is running on an L440GX mobo with one extra 2940 controller, for a > total of three. Me too dmesg from a working kernel here. Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.1.1-STABLE #0: Sun Oct 29 16:25:03 CET 2000 root@patient.tde.tdb.dk:/usr/obj/usr/src/sys/PATIENT Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (451.02-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x652 Stepping = 2 Features=0x183f9ff real memory = 134152192 (131008K bytes) avail memory = 127729664 (124736K bytes) Preloaded elf kernel "kernel.ok" at 0xc02e1000. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 15 isab0: at device 7.0 on pci0 isa0: on isab0 pci0: at 7.1 pci0: at 7.2 chip1: port 0x5000-0x500f at device 7.3 on pci0 xl0: <3Com 3c905B-TX Fast Etherlink XL> port 0xe400-0xe47f mem 0xeb001000-0xeb00107f irq 11 at device 18.0 on pci0 xl0: Ethernet address: 00:10:4b:c7:2d:c8 miibus0: on xl0 xlphy0: <3Com internal media interface> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto ahc0: port 0xe800-0xe8ff mem 0xeb000000-0xeb000fff irq 10 at device 20.0 on pci0 aic7895C: Wide Channel A, SCSI Id=7, 255 SCBs ahc1: port 0xec00-0xecff mem 0xeb002000-0xeb002fff irq 15 at device 20.1 on pci0 aic7895C: Wide Channel B, SCSI Id=7, 255 SCBs fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to accept, logging limited to 100 packets/entry by default Waiting 2 seconds for SCSI devices to settle Mounting root from ufs:/dev/da0s1a da1 at ahc1 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da1: 4357MB (8925000 512 byte sectors: 255H 63S/T 555C) da0 at ahc1 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da0: 4357MB (8925000 512 byte sectors: 255H 63S/T 555C) cd0 at ahc0 bus 0 target 2 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 20.000MB/s transfers (20.000MHz, offset 15) cd0: Attempt to query device size failed: NOT READY, Medium not present cd1 at ahc0 bus 0 target 6 lun 0 cd1: Removable Worm SCSI-2 device cd1: 4.032MB/s transfers (4.032MHz, offset 15) cd1: Attempt to query device size failed: NOT READY, Medium not present /Jesper -- Jesper Skriver, jesper(at)skriver(dot)dk - CCIE #5456 Work: Network manager @ AS3292 (Tele Danmark DataNetworks) Private: Geek @ AS2109 (A much smaller network ;-) One Unix to rule them all, One Resolver to find them, One IP to bring them all and in the zone to bind them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 4:26:22 2001 Delivered-To: freebsd-stable@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 91F2B37B401 for ; Thu, 15 Feb 2001 04:26:19 -0800 (PST) Received: (qmail 679 invoked by uid 100); 15 Feb 2001 12:26:18 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14987.51946.477527.628338@guru.mired.org> Date: Thu, 15 Feb 2001 06:26:18 -0600 To: Richard B Mahoney Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Ghostscript-6.50_2 under 4.0 Stable In-Reply-To: <20010215160546.H6617@student.canterbury.ac.nz> References: <20010215124000.G6617@student.canterbury.ac.nz> <200102150138.f1F1cXc45591@explorer.rsa.com> <20010215160546.H6617@student.canterbury.ac.nz> X-Mailer: VM 6.89 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Richard B Mahoney types: > > This is the first time I've updated, but I would have though that > the update available from, > > ftp://releng4.FreeBSD.org/pub/FreeBSD/snapshots/i386/ \ > 4.2-20010211-STABLE/ > > was the most recent ports skeleton available. Am I wrong? Will I > now have to cvsup my ports? From the looks of the messages in the thread, you updated your ports tree in such a way as to leave old patch files still in the tree. If that's they case, you need to rm -rf the ports tree and put in a new one. If you've still got the update you downloaded, you can use that. I would recommend doing a cvsup to get them, as that allows you to use cvsup to get just the changes to the tree. 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-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 5: 3:45 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ultrakill.noc.demon.net (ultrakill.noc.demon.net [195.11.55.73]) by hub.freebsd.org (Postfix) with ESMTP id 3C82337B4EC for ; Thu, 15 Feb 2001 05:03:43 -0800 (PST) Received: from chrise by ultrakill.noc.demon.net with local (Exim 3.20 #1) id 14TO4U-000OpH-00 for stable@freebsd.org; Thu, 15 Feb 2001 13:03:42 +0000 Date: Thu, 15 Feb 2001 13:03:42 +0000 From: Chris Elsworth To: stable@freebsd.org Subject: ipfw query.. Message-ID: <20010215130342.A95395@demon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I'm sure I'm doing something really fundamentally wrong here, but if I do this with ipfw: 00300 0 0 pipe 15 ip from any to 195.11.8.227 00400 0 0 pipe 20 ip from 195.11.8.227 to any and then later on: 03000 0 0 unreach host tcp from any to 195.11.8.227 3306 I find that rules going through the pipe (ie, everything, I want to count the packets/bytes and restrict when needs be) does not go through any further rules, so it ignores the port 3306 unreachable. The manpage says to set net.inet.ip.fw.one_pass to 0, and I have done so: gw-0# sysctl net.inet.ip.fw.one_pass net.inet.ip.fw.one_pass: 0 What am I missing? Why doesn't the packet carry on going through the rules after going through the pipe? Cheers for any tips -- Chris Elsworth tel: 020 8371 1041 _ . Systems Administrator mob: 07968 324 693 demon @ thus . . Web & Hosting Team chrise@demon.net http://www.demon.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 5:47:42 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rug-rats.org (bob.rug-rats.org [212.57.33.76]) by hub.freebsd.org (Postfix) with ESMTP id 8DF5D37B401 for ; Thu, 15 Feb 2001 05:47:31 -0800 (PST) Received: (from bradley@localhost) by rug-rats.org (8.11.1/8.9.3) id f1FDrAl23678; Thu, 15 Feb 2001 13:53:10 GMT (envelope-from bradley) Date: Thu, 15 Feb 2001 13:53:10 +0000 From: Bradley Kite To: Chris Elsworth Cc: stable@FreeBSD.ORG Subject: Re: ipfw query.. Message-ID: <20010215135309.A23654@rug-rats.org> Reply-To: bradley@rug-rats.org References: <20010215130342.A95395@demon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20010215130342.A95395@demon.net>; from chrise@demon.net on Thu, Feb 15, 2001 at 01:03:42PM +0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm sure there is a flag you can append to the end of the pipe rules, that tell ipfw to continue going through the rules instead of stopping when they match. I cant remember what the flag is tho, sorry :-( -- Brad On Thu, Feb 15, 2001 at 01:03:42PM +0000, Chris Elsworth wrote: > Hi, > > I'm sure I'm doing something really fundamentally wrong here, but if I do > this with ipfw: > > > 00300 0 0 pipe 15 ip from any to 195.11.8.227 > 00400 0 0 pipe 20 ip from 195.11.8.227 to any > > and then later on: > > 03000 0 0 unreach host tcp from any to 195.11.8.227 3306 > > > I find that rules going through the pipe (ie, everything, I want to count > the packets/bytes and restrict when needs be) does not go through any > further rules, so it ignores the port 3306 unreachable. > > The manpage says to set net.inet.ip.fw.one_pass to 0, and I have done so: > > gw-0# sysctl net.inet.ip.fw.one_pass > net.inet.ip.fw.one_pass: 0 > > > What am I missing? Why doesn't the packet carry on going through the rules > after going through the pipe? > > > Cheers for any tips > > -- > Chris Elsworth tel: 020 8371 1041 _ . > Systems Administrator mob: 07968 324 693 demon @ thus . . > Web & Hosting Team chrise@demon.net http://www.demon.net > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 6: 9:55 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ultrakill.noc.demon.net (ultrakill.noc.demon.net [195.11.55.73]) by hub.freebsd.org (Postfix) with ESMTP id 70C2237B401 for ; Thu, 15 Feb 2001 06:09:52 -0800 (PST) Received: from chrise by ultrakill.noc.demon.net with local (Exim 3.20 #1) id 14TP6T-000P2k-00; Thu, 15 Feb 2001 14:09:49 +0000 Date: Thu, 15 Feb 2001 14:09:49 +0000 From: Chris Elsworth To: Simon Loader Cc: stable@FreeBSD.ORG Subject: Re: ipfw query.. Message-ID: <20010215140949.A96244@demon.net> References: <20010215130342.A95395@demon.net> <20010215135309.A23654@rug-rats.org> <3A8BE217.7AF6BFBD@herculeez.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8BE217.7AF6BFBD@herculeez.com>; from simon@herculeez.com on Thu, Feb 15, 2001 at 02:05:11pm +0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Feb 15, 2001 at 02:05:11pm +0000, Simon Loader wrote: > Bradley Kite wrote: > > > > I'm sure there is a flag you can append to the end of > > the pipe rules, that tell ipfw to continue going through the rules > > instead of stopping when they match. > > > > I cant remember what the flag is tho, sorry :-( > > > > > > > I'm sure I'm doing something really fundamentally wrong here, but if I do > > > this with ipfw: > > > > > > > > > 00300 0 0 pipe 15 ip from any to 195.11.8.227 > > > 00400 0 0 pipe 20 ip from 195.11.8.227 to any > > > > > > and then later on: > > > > > > 03000 0 0 unreach host tcp from any to 195.11.8.227 3306 > > > > > couldnt you move rule 3000 to 290 or something ? > > Or prehaps you havent a ceratin reason for this order ? Here's the order I do it in.. >-- pipes first - I was planning to do everything so I could count it and bandwidth limit it deny anything appearing to come from RFC1918 ranges deny any ports I specifically don't want people to see like 3306 deny any source IPs I specifically don't want to let in allow selected priviledged ports (ssh, smtp, et al) allow selected outbound accesses (tho this is paranoid and could go) deny everything else >-- If I don't put the pipes first then I can't bandwidth limit, because when the packets go through one of the allow rules, to, say, sshd - then they'll never see the pipe and won't get limited or counted. So the pipes have to come first.. -- Chris Elsworth tel: 020 8371 1041 _ . Systems Administrator mob: 07968 324 693 demon @ thus . . Web & Hosting Team chrise@demon.net http://www.demon.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 6:36:48 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ultrakill.noc.demon.net (ultrakill.noc.demon.net [195.11.55.73]) by hub.freebsd.org (Postfix) with ESMTP id 6400837B65D for ; Thu, 15 Feb 2001 06:36:41 -0800 (PST) Received: from chrise by ultrakill.noc.demon.net with local (Exim 3.20 #1) id 14TPWR-000P61-00; Thu, 15 Feb 2001 14:36:39 +0000 Date: Thu, 15 Feb 2001 14:36:39 +0000 From: Chris Elsworth To: Simon Loader Cc: stable@freebsd.org Subject: Re: ipfw query.. Message-ID: <20010215143639.A96439@demon.net> References: <20010215130342.A95395@demon.net> <20010215135309.A23654@rug-rats.org> <3A8BE217.7AF6BFBD@herculeez.com> <20010215140949.A96244@demon.net> <3A8BE84C.108A1625@herculeez.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8BE84C.108A1625@herculeez.com>; from simon@herculeez.com on Thu, Feb 15, 2001 at 02:31:40pm +0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Feb 15, 2001 at 02:31:40pm +0000, Simon Loader wrote: > > pipes first - I was planning to do everything so I could count it and > > bandwidth limit it > > deny anything appearing to come from RFC1918 ranges > > deny any ports I specifically don't want people to see like 3306 > > deny any source IPs I specifically don't want to let in > > allow selected priviledged ports (ssh, smtp, et al) > > allow selected outbound accesses (tho this is paranoid and could go) > > paranoia is good for Firewalls. :) Not much point in having one otherwise, is there? :) > > deny everything else > > > > >-- > > > > If I don't put the pipes first then I can't bandwidth limit, because when > > the packets go through one of the allow rules, to, say, sshd - then > > they'll never see the pipe and won't get limited or counted. So the pipes > > have to come first.. > > > > OK this is probably not useful but you could move the denys only to > before the pipes > so you are not bandwidth limiting people on stuff they dont get. > ( intresting DoS attack other wise (in theory) if someone had lots of > bandwidth). Yeah, that'd be a good first step I suppose.. > ummmmm..... looking at the manual you have everything correct :) Gee, well.. I guess that's kind of what I did and didn't want to hear :) I'm doing it right but it doesn't work - doh :) send-pr time? :) > You could try doing this to make sure > > sysctl -w net.inet.ip.fw.one_pass=0 I already did that.. : gw-0# sysctl net.inet.ip.fw.one_pass net.inet.ip.fw.one_pass: 0 It's zero already, I've set it a few times - definitely zero :) > scratch, scratch or prehaps the pipe rule is going wrong? Wrong in what way? This might be the one thing left to check out.. > STUPID QUESTION: > you do have the DUMMYNET option in the Kernel Yup, if I didn't have that then the pipes wouldn't work at all.. /me scratches his head and wanders off.. -- Chris Elsworth tel: 020 8371 1041 _ . Systems Administrator mob: 07968 324 693 demon @ thus . . Web & Hosting Team chrise@demon.net http://www.demon.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 7:23: 4 2001 Delivered-To: freebsd-stable@freebsd.org Received: from pop3.ids.net (pop3.ids.net [155.212.1.107]) by hub.freebsd.org (Postfix) with ESMTP id D61ED37B503 for ; Thu, 15 Feb 2001 07:23:00 -0800 (PST) Received: from ids.net (dialup68f.egr-ri.ids.net [155.212.222.68]) by pop3.ids.net (8.10.1/8.10.1) with ESMTP id f1FFMwO00250 for ; Thu, 15 Feb 2001 10:22:58 -0500 (EST) Message-ID: <3A8BF442.4E1AA764@ids.net> Date: Thu, 15 Feb 2001 10:22:42 -0500 From: "Christopher M. Giordano" Reply-To: CGiordano@ids.net X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-stable@FreeBSD.org Subject: kernel panic in 4.2-STABLE, sound related? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've been encountering the following kernel panic in 4.2-STABLE system built with sources from ~12:45 AM EST 14-Feb-2001. The panic may be introduced at will by playing a small 15 kB .wav file using the waveplay port. Script started on Thu Feb 15 09:58:43 2001 $ sudo gdb -k /sys/compile/BOSTON/kernel.debug /var/crash/vmcore.0 Password: GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd"... IdlePTD 4247552 initial pcb at 2c2440 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0x3a fault code = supervisor write, page not present instruction pointer = 0x8:0xc01e522f stack pointer = 0x10:0xc027da18 frame pointer = 0x10:0xc027dab8 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = tty trap number = 12 panic: page fault syncing disks... 4 4 done Uptime: 7h49m13s dumping to dev #da/0x40001, offset 227328 dump 64 63 62 [snip] 3 2 1 --- #0 dumpsys () at ../../kern/kern_shutdown.c:469 469 if (dumping++) { (kgdb) where #0 dumpsys () at ../../kern/kern_shutdown.c:469 #1 0xc015b5a3 in boot (howto=256) at ../../kern/kern_shutdown.c:309 #2 0xc015b939 in panic (fmt=0xc027542f "page fault") at ../../kern/kern_shutdown.c:556 #3 0xc02351d6 in trap_fatal (frame=0xc027d9d8, eva=58) at ../../i386/i386/trap.c:951 #4 0xc0234e89 in trap_pfault (frame=0xc027d9d8, usermode=0, eva=58) at ../../i386/i386/trap.c:844 #5 0xc0234a2b in trap (frame={tf_fs = -1070858224, tf_es = -976027632, tf_ds = -1071185904, tf_edi = -976007168, tf_esi = -1070815028, tf_ebp = -1071129928, tf_isp = -1071130108, tf_ebx = 0, tf_edx = 0, tf_ecx = -1071130012, tf_eax = 1, tf_trapno = 12, tf_err = 2, tf_eip = -1071754705, tf_cs = 8, tf_eflags = 66182, tf_esp = 0, tf_ss = -1070815028}) at ../../i386/i386/trap.c:443 #6 0xc01e522f in vm_fault (map=0xc02ca8cc, vaddr=3318960128, fault_type=3 '\003', fault_flags=0) at ../../vm/vm_object.h:189 #7 0xc0234e36 in trap_pfault (frame=0xc027db2c, usermode=0, eva=3318960128) at ../../i386/i386/trap.c:833 #8 0xc0234a2b in trap (frame={tf_fs = -1071710192, tf_es = -1038417904, tf_ds = -1071185904, tf_edi = 113, tf_esi = -1038364120, tf_ebp = -1071129740, tf_isp = -1071129768, tf_ebx = 129, tf_edx = 4095, tf_ecx = 32896, tf_eax = -976007169, tf_trapno = 12, tf_err = 2, tf_eip = -1071602491, tf_cs = 8, tf_eflags = 66050, tf_esp = -1038364120, tf_ss = -1038364160}) at ../../i386/i386/trap.c:443 #9 0xc020a4c5 in sndbuf_clear (b=0xc21bd228, length=1403) at ../../dev/sound/pcm/buffer.c:117 #10 0xc020abf3 in chn_wrintr (c=0xc21bd200) at ../../dev/sound/pcm/channel.c:384 #11 0xc020b2d3 in chn_intr (c=0xc21bd200) at ../../dev/sound/pcm/channel.c:807 #12 0xc01fa2da in sb_intr (arg=0xc21cff00) at ../../dev/sound/isa/sb16.c:480 #13 0xc01fbe91 in sbc_intr (p=0xc21ca14c) at ../../dev/sound/isa/sbc.c:454 (kgdb) q $ exit -- My theology, briefly, is that the universe was dictated, but not signed. -- Christopher Morley To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 7:44:36 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hotmail.com (f210.law10.hotmail.com [64.4.15.210]) by hub.freebsd.org (Postfix) with ESMTP id C1F4F37B401; Thu, 15 Feb 2001 07:44:30 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 15 Feb 2001 07:44:30 -0800 Received: from 24.50.186.158 by lw10fd.law10.hotmail.msn.com with HTTP; Thu, 15 Feb 2001 15:44:30 GMT X-Originating-IP: [24.50.186.158] From: "Nader Turki" To: freebsd-doc@FreeBSD.ORG Cc: freebsd-stable@FreeBSD.org Date: Thu, 15 Feb 2001 10:44:30 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 15 Feb 2001 15:44:30.0603 (UTC) FILETIME=[2F8445B0:01C09766] Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there, I'm using FreeBSD 4.2-STABLE. Few days ago I couldn't telnet/ssh to my machine so I called the ISP and ask them to reboot the machine 'cause I could ping it. The said that there was a message saying "syncing disks". I think the system was crashed and the only thing i can find in logs is: Feb 14 07:25:00 access /kernel: pid 42167 (cron), uid 0: exited on signal 11 (core dumped) Feb 14 07:25:04 access syslogd: /dev/console: Too many open files in system: Too many open files in system Feb 14 07:25:04 access /kernel: file: table is full Feb 14 07:25:04 access syslogd: /var/run/utmp: Too many open files in system Feb 14 07:25:04 access syslogd: /var/run/utmp: Too many open files in system Feb 14 07:25:04 access /kernel: file: table is full Feb 14 07:25:04 access syslogd: /var/run/utmp: Too many open files in system Feb 14 07:25:04 access last message repeated 3 times Feb 14 07:25:04 access /kernel: file: table is full Feb 14 07:25:04 access syslogd: /var/run/utmp: Too many open files in system Feb 14 07:25:04 access last message repeated 3 times Feb 14 07:25:04 access /kernel: file: table is full Feb 14 07:25:42 access last message repeated 5693 times Feb 14 07:26:05 access last message repeated 23 times Feb 14 07:36:15 access last message repeated 28 times Feb 14 07:44:53 access last message repeated 13532 times Feb 14 07:54:52 access last message repeated 1922 times And the system rebooted Feb 14 16:29:50 access /kernel: Copyright (c) 1992-2000 The FreeBSD Project. Feb 14 16:29:50 access /kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Feb 14 16:29:50 access /kernel: The Regents of the University of California. All rights reserved. Feb 14 16:29:50 access /kernel: FreeBSD 4.2-STABLE #0: Thu Jan 18 01:43:38 EST 2001 Thank you, Nader _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 9: 7:43 2001 Delivered-To: freebsd-stable@freebsd.org Received: from netcore.fi (netcore.fi [193.94.160.1]) by hub.freebsd.org (Postfix) with ESMTP id 7273C37B401 for ; Thu, 15 Feb 2001 09:07:37 -0800 (PST) Received: from localhost (pekkas@localhost) by netcore.fi (8.11.1/8.11.1) with ESMTP id f1FH6kq27775; Thu, 15 Feb 2001 19:06:47 +0200 Date: Thu, 15 Feb 2001 19:06:45 +0200 (EET) From: Pekka Savola To: Warner Losh Cc: , Subject: Re: 3.5-S->4.2-S: still fail w/ setresuid on miniperl In-Reply-To: <200102142137.f1ELbbW91712@harmony.village.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 14 Feb 2001, Warner Losh wrote: > In message Andrew.Hodgkins@hurlburt.af.mil writes: > : http://docs.freebsd.org/cgi/getmsg.cgi?fetch=699499+0+/usr/local/www/db/text > : /2000/freebsd-stable/20000806.freebsd-stable > : > : I've also used it to go to 4.2-S and it works equally well...it might help > : with your buildworld snags, Pekka. Worth a look at least. ;) > : > : It could also be useful to incorporate some or all of Ralf's procedure into > : UPDATING. There have been a few minor changes since it was written ('make > : kernel' target, KERNCONF variable instead of KERNEL, etc.) but nothing that > : breaks it AFAIK. > > But much of Ralf's proceedure is unnecessary. :-(. So true. When I have gone from one release to another, I have never used single user mode, for instance. This is how I updated from 3.4-STABLE to 4.2-STABLE. I took notes so that this might be of some use to someone. --- 8< --- Background: http://www.freebsd.org/cgi/getmsg.cgi?fetch=51796+57580+/usr/local/www/db/text/2000/freebsd-stable/20001015.freebsd-stable 1. install some tools that are required to build & install RELENG_4 with old tools: cd /usr/src/gnu/usr.bin/texinfo/makeinfo && make all install cd /usr/src/gnu/usr.bin/texinfo/install-info && make all install cd /usr/src/gnu/usr.bin/texinfo && make all install clean mkdir /usr/share/groff_font/devcp1047 mkdir /usr/share/groff_font/devlbp mkdir /usr/share/groff_font/devutf8 [note! make install of groff seems broken, so mkdir is needed] cd /usr/src/gnu/usr.bin/groff && make all install clean [note! 'man' displaying breaks for a while, but no matter] 2. build world without perl. miniperl requires setresuid which isn't there yet. Perl will be built and installed later. make buildworld -DNOPERL 3. build the kernel and install it. make buildkernel KERNCONF=xxx make installkernel KERNCONF=xxx 4. reboot (multiuser is fine, I use it all the time) reboot 5. install the tools, except perl which was not built ldconfig -R /usr/obj/usr/src/lib/libc cd /usr/src && make installworld -DNOPERL 6. build and install perl (and optionally sysinstall) cd /usr/src/gnu/usr.bin/perl && make all install cd /usr/src/release/sysinstall && make all install 7. prepare for mergemaster cp -pr /etc /etc.backup mv /etc/sendmail.cf /etc/mail/ mv /etc/aliases* /etc/mail/ mv /etc/mail/sendmail.cw /etc/mail/local-host-names 8. mergemaster the way you like it, change over to OpenSSH, etc. 9. change wd* -> ad* in /etc/fstab, create these devices in /dev. 10. clean out lastlog etc., the format changed rm /var/run/utmp /var/log/wtmp /var/log/lastlog touch /var/run/utmp /var/log/wtmp /var/log/lastlog 11. reboot and be done ;-) --- HTH, -- Pekka Savola "Tell me of difficulties surmounted, Netcore Oy not those you stumble over and fall" Systems. Networks. Security. -- Robert Jordan: A Crown of Swords To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 9:35:54 2001 Delivered-To: freebsd-stable@freebsd.org Received: from root.ucsc.edu (root.ucsc.edu [128.114.129.224]) by hub.freebsd.org (Postfix) with ESMTP id AEABD37B6BB for ; Thu, 15 Feb 2001 09:35:40 -0800 (PST) Received: (from booloo@localhost) by root.ucsc.edu (8.9.3/8.9.3) id JAA58830; Thu, 15 Feb 2001 09:35:40 -0800 (PST) (envelope-from booloo) Date: Thu, 15 Feb 2001 09:35:40 -0800 From: Mark Boolootian To: freebsd-stable@freebsd.org Subject: 4.2-STABLE build fails (aic7xxx_reg.h: No such file or directory) Message-ID: <20010215093540.A58811@root.ucsc.edu> Reply-To: booloo@cats.ucsc.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've just built 4.2-STABLE. Upon trying to compile the kernel, I had the following failure: cc -c -O -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 ../../dev/aic7xxx/aic7770.c In file included from ../../dev/aic7xxx/aic7xxx_freebsd.h:198, from ../../dev/aic7xxx/aic7770.c:44: ../../dev/aic7xxx/aic7xxx.h:40: aic7xxx_reg.h: No such file or directory and peeking into /usr/src/sys/dev/aic7xxx reveals Makefile aic7xxx.h aic7xxx_freebsd.c ahc_eisa.c aic7xxx.reg aic7xxx_freebsd.h ahc_pci.c aic7xxx.seq aic7xxx_inline.h aic7770.c aic7xxx_93cx6.c aic7xxx_pci.c aic7xxx.c aic7xxx_93cx6.h aicasm It looks to me like aic7xxx.reg is misnamed. mb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 9:39:32 2001 Delivered-To: freebsd-stable@freebsd.org Received: from aslan.scsiguy.com (aslan.scsiguy.com [63.229.232.106]) by hub.freebsd.org (Postfix) with ESMTP id B8AD837B491 for ; Thu, 15 Feb 2001 09:39:25 -0800 (PST) Received: from scsiguy.com (localhost [127.0.0.1]) by aslan.scsiguy.com (8.11.2/8.9.3) with ESMTP id f1FHdKO64551; Thu, 15 Feb 2001 10:39:20 -0700 (MST) (envelope-from gibbs@scsiguy.com) Message-Id: <200102151739.f1FHdKO64551@aslan.scsiguy.com> To: booloo@cats.ucsc.edu Cc: freebsd-stable@FreeBSD.ORG Subject: Re: 4.2-STABLE build fails (aic7xxx_reg.h: No such file or directory) In-Reply-To: Your message of "Thu, 15 Feb 2001 09:35:40 PST." <20010215093540.A58811@root.ucsc.edu> Date: Thu, 15 Feb 2001 10:39:19 -0700 From: "Justin T. Gibbs" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > >I've just built 4.2-STABLE. Upon trying to compile the kernel, I had >the following failure: > >cc -c -O -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissi >ng-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi > -nostdinc -I- -I. -I../.. -I../../../include -D_KERNEL -include opt_global.h > -elf -mpreferred-stack-boundary=2 ../../dev/aic7xxx/aic7770.c >In file included from ../../dev/aic7xxx/aic7xxx_freebsd.h:198, > from ../../dev/aic7xxx/aic7770.c:44: >../../dev/aic7xxx/aic7xxx.h:40: aic7xxx_reg.h: No such file or directory aic7xxx_reg.h is a file generated in the kernel compile directory. I can't say why it is not being generated by the build. Nothing about how that file is generated has changed for some time. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 10:21:40 2001 Delivered-To: freebsd-stable@freebsd.org Received: from freenix.no (atreides.freenix.no [213.188.21.6]) by hub.freebsd.org (Postfix) with ESMTP id 2537A37B698 for ; Thu, 15 Feb 2001 10:21:37 -0800 (PST) Received: (from morten@localhost) by freenix.no (8.11.1/8.11.1) id f1FILZU95678 for freebsd-stable@freebsd.org; Thu, 15 Feb 2001 19:21:35 +0100 (CET) (envelope-from morten) Date: Thu, 15 Feb 2001 19:21:35 +0100 From: "Morten A . Middelthon" To: freebsd-stable@freebsd.org Subject: Portmap going berserk(!) Message-ID: <20010215192135.A95579@freenix.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.2-STABLE X-Warning: So cunning you could brush your teeth with it. Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I got a FreeBSD 4.1.1-STABLE built Oct 8, which seems to have been running just fine for about 40 days. But now, all of a sudden, portmap forks off nnn processes, and the load on the box goes up to about 150 (not kidding). Running portmap with -v doesn't give me anything, running it with -d starts spitting out thousands of 'server: about to do a switch' messages to my console. I tried rebooting the box, but it starts all over again. The box is running as a DHCP, NFS, Samba, NIS, Apache, named and printserver, so it's quite an important box in my network. Is there any known portmap-related problems? Right now I'm building with new updated sources, hoping desperately it will help. -- Morten A. Middelthon Freenix Norge http://www.freenix.no/ -- Which is worse: ignorance or apathy? Who knows? Who cares? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 10:23:21 2001 Delivered-To: freebsd-stable@freebsd.org Received: from carmel.diva.nl (carmel.diva.nl [195.86.140.150]) by hub.freebsd.org (Postfix) with ESMTP id 586DF37B401 for ; Thu, 15 Feb 2001 10:23:16 -0800 (PST) Received: from localhost (boland@localhost) by carmel.diva.nl (8.11.1/8.11.1) with ESMTP id f1FINCl24052 for ; Thu, 15 Feb 2001 19:23:12 +0100 (CET) Date: Thu, 15 Feb 2001 19:23:12 +0100 (CET) From: Michiel Boland To: freebsd-stable@freebsd.org Subject: perl5 on 2.2.8-STABLE Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi. Is there a way to install perl5 on a 2.2.8-STABLE machine using ports? The ports/lang/perl5 port no longer builds - perl5.005_02.tar.gz appears to have disappeared everywhere. Cheers Michiel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 10:38:28 2001 Delivered-To: freebsd-stable@freebsd.org Received: from root.ucsc.edu (root.ucsc.edu [128.114.129.224]) by hub.freebsd.org (Postfix) with ESMTP id 0E48237B401 for ; Thu, 15 Feb 2001 10:38:22 -0800 (PST) Received: (from booloo@localhost) by root.ucsc.edu (8.9.3/8.9.3) id KAA59222 for freebsd-stable@freebsd.org; Thu, 15 Feb 2001 10:38:18 -0800 (PST) (envelope-from booloo) Date: Thu, 15 Feb 2001 10:38:18 -0800 From: Mark Boolootian To: freebsd-stable@freebsd.org Subject: Re: 4.2-STABLE build fails (aic7xxx_reg.h: No such file or directory) Message-ID: <20010215103818.A59187@root.ucsc.edu> Reply-To: booloo@cats.ucsc.edu References: <20010215093540.A58811@root.ucsc.edu> <200102151739.f1FHdKO64551@aslan.scsiguy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200102151739.f1FHdKO64551@aslan.scsiguy.com>; from gibbs@scsiguy.com on Thu, Feb 15, 2001 at 10:39:19AM -0700 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks very much for the responses from folks. What I missed was that the error actually occurred during 'make depend'. I was configuring the kernel using the GENERIC config file. I pared down the config file (removing SCSI references, since it's an IDE box) and that eliminated the problem. My bad... sorry for the bother. mb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 12:35:46 2001 Delivered-To: freebsd-stable@freebsd.org Received: from xena.gsicomp.on.ca (cr677933-a.ktchnr1.on.wave.home.com [24.43.230.149]) by hub.freebsd.org (Postfix) with ESMTP id DE4F537B491 for ; Thu, 15 Feb 2001 12:35:42 -0800 (PST) Received: from localhost (matt@localhost) by xena.gsicomp.on.ca (8.11.1/8.9.3) with ESMTP id f1FKXom74111; Thu, 15 Feb 2001 15:33:50 -0500 (EST) (envelope-from matt@xena.gsicomp.on.ca) Date: Thu, 15 Feb 2001 15:33:50 -0500 (EST) From: Matthew Emmerton To: "Justin T. Gibbs" Cc: booloo@cats.ucsc.edu, freebsd-stable@FreeBSD.ORG Subject: Re: 4.2-STABLE build fails (aic7xxx_reg.h: No such file or directory) In-Reply-To: <200102151739.f1FHdKO64551@aslan.scsiguy.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 15 Feb 2001, Justin T. Gibbs wrote: > > > >I've just built 4.2-STABLE. Upon trying to compile the kernel, I had > >the following failure: > > > >cc -c -O -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissi > >ng-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi > > -nostdinc -I- -I. -I../.. -I../../../include -D_KERNEL -include opt_global.h > > -elf -mpreferred-stack-boundary=2 ../../dev/aic7xxx/aic7770.c > >In file included from ../../dev/aic7xxx/aic7xxx_freebsd.h:198, > > from ../../dev/aic7xxx/aic7770.c:44: > >../../dev/aic7xxx/aic7xxx.h:40: aic7xxx_reg.h: No such file or directory > > aic7xxx_reg.h is a file generated in the kernel compile directory. > I can't say why it is not being generated by the build. Nothing > about how that file is generated has changed for some time. Don't you need to do a 'make depend' to get aic7xxx_reg.h? -- Matt Emmerton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 12:44:34 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtp.wanadoo.nl (smtp.wanadoo.nl [194.134.193.6]) by hub.freebsd.org (Postfix) with ESMTP id 7F0F237B401 for ; Thu, 15 Feb 2001 12:44:29 -0800 (PST) Received: from ams-gw.sohara.org (p026.vcu.wanadoo.nl [194.134.200.26]) by smtp.wanadoo.nl (8.9.3/8.9.3) with SMTP id VAA20686; Thu, 15 Feb 2001 21:44:21 +0100 (MET) Date: Thu, 15 Feb 2001 21:44:15 +0100 From: "Steve O'Hara-Smith" To: Michiel Boland Cc: freebsd-stable@freebsd.org Subject: Re: perl5 on 2.2.8-STABLE Message-Id: <20010215214415.10f45303.steveo@eircom.net> In-Reply-To: References: X-Mailer: Sylpheed version 0.4.60 (GTK+ 1.2.8; FreeBSD 4.2-STABLE; i386) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 15 Feb 2001 19:23:12 +0100 (CET) Michiel Boland wrote: MB> Hi. MB> MB> Is there a way to install perl5 on a 2.2.8-STABLE machine using ports? The MB> ports/lang/perl5 port no longer builds - perl5.005_02.tar.gz appears to MB> have disappeared everywhere. I suggest (untried) editing the Makefile to use perl5.005_03.tar.gz make makesum and proceed = it may work easily or it may fight back :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 12:50: 8 2001 Delivered-To: freebsd-stable@freebsd.org Received: from aslan.scsiguy.com (aslan.scsiguy.com [63.229.232.106]) by hub.freebsd.org (Postfix) with ESMTP id 7782C37B401 for ; Thu, 15 Feb 2001 12:50:06 -0800 (PST) Received: from scsiguy.com (localhost [127.0.0.1]) by aslan.scsiguy.com (8.11.2/8.9.3) with ESMTP id f1FKo1O67605; Thu, 15 Feb 2001 13:50:01 -0700 (MST) (envelope-from gibbs@scsiguy.com) Message-Id: <200102152050.f1FKo1O67605@aslan.scsiguy.com> To: Matthew Emmerton Cc: booloo@cats.ucsc.edu, freebsd-stable@FreeBSD.ORG Subject: Re: 4.2-STABLE build fails (aic7xxx_reg.h: No such file or directory) In-Reply-To: Your message of "Thu, 15 Feb 2001 15:33:50 EST." Date: Thu, 15 Feb 2001 13:50:01 -0700 From: "Justin T. Gibbs" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >> aic7xxx_reg.h is a file generated in the kernel compile directory. >> I can't say why it is not being generated by the build. Nothing >> about how that file is generated has changed for some time. > >Don't you need to do a 'make depend' to get aic7xxx_reg.h? Yes as there is no explicit dependency on either aic7xxx_seq.h or aic7xxx_reg.h in the kernel Makefile for the .c files that include them. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 12:55:34 2001 Delivered-To: freebsd-stable@freebsd.org Received: from survis.surfnet.nl (survis.surfnet.nl [192.87.108.3]) by hub.freebsd.org (Postfix) with ESMTP id 030D237B491 for ; Thu, 15 Feb 2001 12:55:23 -0800 (PST) Received: from spock.ncc-1701.surfnet.nl ([192.87.111.34]) by survis.surfnet.nl with ESMTP (exPP) id 14TVQv-0003SR-00; Thu, 15 Feb 2001 21:55:21 +0100 Date: Thu, 15 Feb 2001 21:55:19 +0100 (CET) From: X-X-Sender: To: Cc: Subject: 4.2-stable: autoconfigure not working anymore? Message-ID: Organisation: SURFnet bv Address: "Radboudburcht, P.O. Box 19035, 3501 DA Utrecht, NL" Phone: +31 302 305 305 Telefax: +31 302 305 329 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I cvsuppped to the latest stable a couple of days ago and again yesterday and I have the following problem. My machine does not autoconfigure anymore: $ ifconfig wi0 wi0: flags=8943 mtu 1500 inet6 fe80::260:1dff:fef6:7ff9%wi0 prefixlen 64 scopeid 0x9 inet 192.87.111.34 netmask 0xfffffff0 broadcast 192.87.111.47 ether 00:60:1d:f6:7f:f9 I do get prefix announcements: # tcpdump -s 1500 -vvv ip6 tcpdump: listening on wi0 20:49:34.771348 fe80::220:afff:fec6:4faa > ff02::1: icmp6: router advertisement(chlim=64, router_ltime=1800, reachable_time=0, retrans_time=0)(src lladdr: 0:20:af:c6:4f:aa)(prefix info: LA valid_ltime=2592000, preffered_ltime=604800, prefix=2001:610:508:1001::/64) (len 56, hlim 255) Just to be sure I have tried an ep0 card: same problem. This has worked before I did the cvsup a few days ago. A FreeBSD-current system on the same subnet does autoconfigure its interfaces just fine. It sends a router solicitation. The stable machine does not. How can I debug this? Some info about the stable machine that does not autoconfigure: # uname -a FreeBSD spock.ncc-1701.surfnet.nl 4.2-STABLE FreeBSD 4.2-STABLE #2: Thu Feb 15 08:57:27 CET 2001 toor@spock.ncc-1701.surfnet.nl:/.amd_mnt/192.87.111.33/export/\ spock/obj/usr/src/sys/SPOCK i386 This is my kernel config: # cat /usr/src/sys/i386/conf/SPOCK # # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.20 2000/10/31 23:16:07 n_hibma Exp $ machine i386 cpu I386_CPU cpu I486_CPU cpu I586_CPU cpu I686_CPU ident SPOCK maxusers 32 #makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options INET6 #IPv6 communications protocols options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, NFS required options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev # To make an SMP kernel, the next two are needed #options SMP # Symmetric MultiProcessor Kernel #options APIC_IO # Symmetric (APIC) I/O device isa device eisa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device fd1 at fdc0 drive 1 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID #Static device numbering #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # SCSI Controllers device ahb # EISA AHA1742 family device ahc # AHA2940 and onboard AIC7xxx devices device amd # AMD 53C974 (Teckram DC-390(T)) device isp # Qlogic family device ncr # NCR/Symbios Logic device sym # NCR/Symbios Logic (newer chipsets) options SYM_SETUP_LP_PROBE_MAP=0x40 # Allow ncr to attach legacy NCR devices when # both sym and ncr are configured device adv0 at isa? device adw device bt0 at isa? device aha0 at isa? device aic0 at isa? device ncv # NCR 53C500 device nsp # Workbit Ninja SCSI-3 device stg # TMC 18C30/18C50 # SCSI peripherals device scbus # SCSI bus (required) device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) # RAID controllers interfaced to the SCSI subsystem device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID device dpt # DPT Smartcache - See LINT for options! device mly # Mylex AcceleRAID/eXtremeRAID # RAID controllers device ida # Compaq Smart RAID device amr # AMI MegaRAID device mlx # Mylex DAC960 family device twe # 3ware Escalade # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) #device apm0 at nexus? disable flags 0x20 # Advanced Power Management device apm0 at nexus? # PCCARD (PCMCIA) support device card #device pcic0 at isa? irq 0 port 0x3e0 iomem 0xd0000 device pcic0 at isa? irq 10 port 0x3e0 iomem 0xd0000 device pcic1 at isa? irq 0 port 0x3e2 iomem 0xd4000 disable # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device sio2 at isa? port IO_COM3 irq 5 device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer #device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device fxp # Intel EtherExpress PRO/100B (82557, 82558) device tx # SMC 9432TX (83c170 ``EPIC'') device vx # 3Com 3c590, 3c595 (``Vortex'') device wx # Intel Gigabit Ethernet Card (``Wiseman'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support device dc # DEC/Intel 21143 and various workalikes device pcn # AMD Am79C79x PCI 10/100 NICs device rl # RealTek 8129/8139 device sf # Adaptec AIC-6915 (``Starfire'') device sis # Silicon Integrated Systems SiS 900/SiS 7016 device ste # Sundance ST201 (D-Link DFE-550TX) device tl # Texas Instruments ThunderLAN device vr # VIA Rhine, Rhine II device wb # Winbond W89C840F device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. device ed0 at isa? port 0x280 irq 10 iomem 0xd8000 device ex device ep device fe0 at isa? port 0x300 # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attatement needed # and resources will always be dynamically assigned by the pccard code. device wi # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP # mode (the factory default). If you set the switches on your ISA # card for a manually chosen I/O address and IRQ, you must specify # those paremeters here. device an # Xircom Ethernet device xe # The probe order of these is presently determined by i386/isa/isa_compat.c. device ie0 at isa? port 0x300 irq 10 iomem 0xd0000 #device le0 at isa? port 0x300 irq 5 iomem 0xd0000 device lnc0 at isa? port 0x280 irq 10 drq 0 device cs0 at isa? port 0x300 device sn0 at isa? port 0x300 irq 10 # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device sl 1 # Kernel SLIP pseudo-device ppp 1 # Kernel PPP pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device md # Memory "disks" pseudo-device gif 4 # IPv6 and IPv4 tunneling pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse device uscanner # Scanners # USB Ethernet, requires mii device aue # ADMtek USB ethernet device cue # CATC USB ethernet device kue # Kawasaki LSI USB ethernet device pcm rvdp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 13:46: 3 2001 Delivered-To: freebsd-stable@freebsd.org Received: from cantvc.canterbury.ac.nz (cantvc.canterbury.ac.nz [132.181.30.1]) by hub.freebsd.org (Postfix) with ESMTP id 67D7937B401 for ; Thu, 15 Feb 2001 13:45:57 -0800 (PST) Received: from CONVERSION-DAEMON.it.canterbury.ac.nz by it.canterbury.ac.nz (PMDF V6.0-24 #45723) id <01K06BI6HKXCATK6D9@it.canterbury.ac.nz> for freebsd-stable@FreeBSD.ORG; Fri, 16 Feb 2001 10:45:55 +1300 (NEW ZEALAND DAYLIGHT TIME) Received: from student.canterbury.ac.nz ([172.31.164.87]) by it.canterbury.ac.nz (PMDF V6.0-24 #45723) with ESMTP id <01K06BI54IZEATK7A6@it.canterbury.ac.nz> for freebsd-stable@FreeBSD.ORG; Fri, 16 Feb 2001 10:45:54 +1300 (NEW ZEALAND DAYLIGHT TIME) Received: (from rbm49@localhost) by student.canterbury.ac.nz (8.11.2/8.11.2) id f1FLil927879 for freebsd-stable@FreeBSD.ORG; Fri, 16 Feb 2001 10:44:47 +1300 (NZDT envelope-from rbm49) Date: Fri, 16 Feb 2001 10:44:17 +1300 From: Richard B Mahoney Subject: Re: Ghostscript-6.50_2 under 4.0 Stable In-reply-to: <"from mwm"@mired.org> To: freebsd-stable@FreeBSD.ORG Reply-To: Richard B Mahoney Mail-followup-to: freebsd-stable@FreeBSD.ORG Message-id: <20010216104416.A27728@student.canterbury.ac.nz> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.2-20010211-STABLE References: <20010215124000.G6617@student.canterbury.ac.nz> <200102150138.f1F1cXc45591@explorer.rsa.com> <20010215160546.H6617@student.canterbury.ac.nz> <14987.51946.477527.628338@guru.mired.org> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Mike and others, On Thu, Feb 15, 2001 at 06:26:18AM -0600, Mike Meyer wrote: > Richard B Mahoney types: > > > > This is the first time I've updated, but I would have though that > > the update available from, > > > > ftp://releng4.FreeBSD.org/pub/FreeBSD/snapshots/i386/ \ > > 4.2-20010211-STABLE/ > > > > was the most recent ports skeleton available. Am I wrong? Will I > > now have to cvsup my ports? > > >From the looks of the messages in the thread, you updated your ports > tree in such a way as to leave old patch files still in the tree. If > that's they case, you need to rm -rf the ports tree and put in a new > one. If you've still got the update you downloaded, you can use > that. I would recommend doing a cvsup to get them, as that allows you > to use cvsup to get just the changes to the tree. > > ; Thu, 15 Feb 2001 13:57:52 -0800 (PST) Received: (from lowell@localhost) by be-well.ilk.org (8.11.2/8.11.2) id f1FLvmF02476; Thu, 15 Feb 2001 16:57:48 -0500 (EST) (envelope-from lowell) To: freebsd-stable@freebsd.org, rbm49@student.canterbury.ac.nz Subject: Re: Ghostscript-6.50_2 under 4.0 Stable References: <96hin9$1644$1@FreeBSD.csie.NCTU.edu.tw> From: Lowell Gilbert Date: 15 Feb 2001 16:57:48 -0500 In-Reply-To: rbm49@student.canterbury.ac.nz's message of "16 Feb 2001 05:46:17 +0800" Message-ID: <4466iba9sz.fsf@lowellg.ne.mediaone.net> Lines: 12 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG rbm49@student.canterbury.ac.nz (Richard B Mahoney) writes: > It seems that the ports Update only writes over an existing ports > tree. It does not delete it. This explains why I had a number of > ancient patches still lying around. I will have to cvsup the > whole tree to clean things up. It seems it is not adequate just > to update it. Not the first time. After that, it should be fine. Reference: http://www.polstra.com/projects/freeware/CVSup/faq.html#caniadopt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 14:10:13 2001 Delivered-To: freebsd-stable@freebsd.org Received: from netcore.fi (netcore.fi [193.94.160.1]) by hub.freebsd.org (Postfix) with ESMTP id F291537B4EC for ; Thu, 15 Feb 2001 14:10:09 -0800 (PST) Received: from localhost (pekkas@localhost) by netcore.fi (8.11.1/8.11.1) with ESMTP id f1FM9uj29251; Fri, 16 Feb 2001 00:09:56 +0200 Date: Fri, 16 Feb 2001 00:09:56 +0200 (EET) From: Pekka Savola To: Warner Losh Cc: , Subject: Re: 3.5-S->4.2-S: still fail w/ setresuid on miniperl In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 15 Feb 2001, Pekka Savola wrote: A few extra notes, as it seems I had missed a few (I did most of these concurrently). --- 0. CVSup to RELENG_4, naturally. > 1. install some tools that are required to build & install RELENG_4 with old > tools: > add cd /usr/src/gnu/usr.bin/texinfo/libtxi && make > cd /usr/src/gnu/usr.bin/texinfo/makeinfo && make all install > cd /usr/src/gnu/usr.bin/texinfo/install-info && make all install > cd /usr/src/gnu/usr.bin/texinfo && make all install clean > edit /usr/src/gnu/usr.bin/groff/Makefile.cfg, comment out -fno-exceptions from CXXFLAGS > mkdir /usr/share/groff_font/devcp1047 > mkdir /usr/share/groff_font/devlbp > mkdir /usr/share/groff_font/devutf8 > [note! make install of groff seems broken, so mkdir is needed] > cd /usr/src/gnu/usr.bin/groff && make all install clean > [note! 'man' displaying breaks for a while, but no matter] replace with cd /usr/src/gnu/usr.bin/groff/libgroff && make cd /usr/src/gnu/usr.bin/groff/groff && make all install clean I doubt troff is needed. Also, add: echo "#undef HAVE_THROW_DECL" > /usr/src/gnu/usr.bin/gperf/config.h .. this is required to build brand new && shiny gperf with older tools. -- Pekka Savola "Tell me of difficulties surmounted, Netcore Oy not those you stumble over and fall" Systems. Networks. Security. -- Robert Jordan: A Crown of Swords To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 14:52:25 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mail.2gen.net (mail.2gen.net [209.240.46.130]) by hub.freebsd.org (Postfix) with ESMTP id DBDF737B4EC for ; Thu, 15 Feb 2001 14:52:22 -0800 (PST) Received: from demutis (demutis.2gen.net [209.240.46.189]) by mail.2gen.net (8.10.2/8.10.2) with SMTP id f1FMrEO12166 for ; Thu, 15 Feb 2001 17:53:15 -0500 (EST) Message-Id: <3.0.3.32.20010215175719.0172c738@tristo.netinc.ca> X-Sender: maillist@tristo.netinc.ca (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.3 (32) Date: Thu, 15 Feb 2001 17:57:19 -0500 To: freebsd-stable@FreeBSD.ORG From: Michael DeMutis Subject: Re: Named crashing In-Reply-To: <200102142243.f1EMhDH94606@drugs.dv.isc.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Could someone please explain the process to go from 8.2.2. to 8.2.3 8.2.3 is in the ports collection, /usr/ports/net/bind8 However a usual "make install" does not work. I still end up with 8.2.2. I checked the docs, there isn't much info on how to get rid of my old one. The old one is the one that came with my FreeBSD 3.X STABLE, so it runs from the default directory. -mike At 09:43 AM 15/02/2001 +1100, Mark.Andrews@nominum.com wrote: > > Firstly, last time there was a security problem with BIND (nxt bug) > lots of people failed to stop the old server when they upgraded. > This may be the case here. > > Now if you can find the core please run > > strings - named.core | grep named > > If this reports 8.2.3-REL open a bug report with ISC, > bind-bugs@isc.org, and I'll take it from there. > > Mark >-- >Mark Andrews, Nominum Inc. >1 Seymour St., Dundas Valley, NSW 2117, Australia >PHONE: +61 2 9871 4742 INTERNET: Mark.Andrews@nominum.com > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-stable" in the body of the message > > ---------------------------------------------------------------------------- Michael DeMutis System's Administrator || 2Gen.Inc. 143 James Street South, Suite 300, Hamilton, Ontario, Canada L8P 3A1 email: mike@2gen.net website: http://www.2gen.net/ Phone: 905-308-9155 Fax: 905-308-9519 ICQ UIN: 1257176 "Merging Media & Idea To Bring Internet Exposure to Innovative Businesses" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 14:58: 3 2001 Delivered-To: freebsd-stable@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 1B7F637B503 for ; Thu, 15 Feb 2001 14:58:02 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id f1FMw0k05684; Thu, 15 Feb 2001 14:58:00 -0800 (PST) Date: Thu, 15 Feb 2001 14:58:00 -0800 From: Alfred Perlstein To: Michael DeMutis Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Named crashing Message-ID: <20010215145800.P3274@fw.wintelcom.net> References: <200102142243.f1EMhDH94606@drugs.dv.isc.org> <3.0.3.32.20010215175719.0172c738@tristo.netinc.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3.0.3.32.20010215175719.0172c738@tristo.netinc.ca>; from maillist@2gen.net on Thu, Feb 15, 2001 at 05:57:19PM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Michael DeMutis [010215 14:52] wrote: > Could someone please explain the process to go from 8.2.2. to 8.2.3 > > 8.2.3 is in the ports collection, /usr/ports/net/bind8 > > However a usual "make install" does not work. I still end up with 8.2.2. > > I checked the docs, there isn't much info on how to get rid of my old one. > > The old one is the one that came with my FreeBSD 3.X STABLE, so it runs > from the default directory. Well, if you cvsup to most recent 3-stable you should get the fixed up bind 8.2.3 from a make world. Otherwise if you simply download the source and compile/install it goes into /usr/* however afaik the port installs into /usr/local/* so you need to change your rc.conf to say named_program="/usr/local/sbin/named" or wherever it was installed to. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 15:21:36 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mail.2gen.net (mail.2gen.net [209.240.46.130]) by hub.freebsd.org (Postfix) with ESMTP id 067EA37B491 for ; Thu, 15 Feb 2001 15:21:30 -0800 (PST) Received: from demutis (demutis.2gen.net [209.240.46.189]) by mail.2gen.net (8.10.2/8.10.2) with SMTP id f1FNM5O13001; Thu, 15 Feb 2001 18:22:05 -0500 (EST) Message-Id: <3.0.3.32.20010215182614.0172c738@tristo.netinc.ca> X-Sender: maillist@tristo.netinc.ca X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.3 (32) Date: Thu, 15 Feb 2001 18:26:14 -0500 To: "Terry Rossi" , From: Michael DeMutis Subject: RE: Named crashing In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You know, funny you mention it, but we just added a Windows 2000 Domain as well. -mike At 10:11 AM 14/02/2001 -0500, Terry Rossi wrote: >Michael, > >I have been having the same problem with my bind installation >on both 3-5stable and now 4.2 release. > >The only change in my environment has been the addition of a >Windows 2000 domain and the use of dynamic updates into my unix >bind from the Domain controller on the Windows 2000 DNS. > >Let me know if you come up with anything. > >> -----Original Message----- >> From: Michael DeMutis [mailto:maillist@2gen.net] >> Sent: Wednesday, February 14, 2001 10:09 AM >> To: freebsd-stable@FreeBSD.ORG >> Subject: Named crashing >> >> >> >> Hi there. >> >> I'm running the 3.X stable tree. >> >> For some reason, my named crashes now. It has never crashed >> before, but >> recently it has been crashing after being up about 2 days. >> >> The message that shows up is: >> pid 37422 (named), uid 0: exited on signal 11 (core dumped) >> >> Any ideas why this could be happening all of a sudden? >> >> -mike >> -------------------------------------------------------------- >> -------------- >> Michael DeMutis >> System's Administrator || 2Gen.Inc. >> 143 James Street South, Suite 300, Hamilton, Ontario, Canada L8P 3A1 >> email: mike@2gen.net website: http://www.2gen.net/ >> Phone: 905-308-9155 Fax: 905-308-9519 ICQ UIN: 1257176 >> "Merging Media & Idea To Bring Internet Exposure to >> Innovative Businesses" >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-stable" in the body of the message >> > > ---------------------------------------------------------------------------- Michael DeMutis System's Administrator || 2Gen.Inc. 143 James Street South, Suite 300, Hamilton, Ontario, Canada L8P 3A1 email: mike@2gen.net website: http://www.2gen.net/ Phone: 905-308-9155 Fax: 905-308-9519 ICQ UIN: 1257176 "Merging Media & Idea To Bring Internet Exposure to Innovative Businesses" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 15:36:41 2001 Delivered-To: freebsd-stable@freebsd.org Received: from arg1.demon.co.uk (arg1.demon.co.uk [194.222.34.166]) by hub.freebsd.org (Postfix) with ESMTP id 0080437B491 for ; Thu, 15 Feb 2001 15:36:32 -0800 (PST) Received: by arg1.demon.co.uk (Postfix, from userid 300) id 68A039B02; Thu, 15 Feb 2001 23:36:30 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by arg1.demon.co.uk (Postfix) with ESMTP id 612BE5D16; Thu, 15 Feb 2001 23:36:30 +0000 (GMT) Date: Thu, 15 Feb 2001 23:36:30 +0000 (GMT) From: Andrew Gordon X-Sender: arg@server.arg.sj.co.uk To: "Morten A . Middelthon" Cc: freebsd-stable@freebsd.org Subject: Re: Portmap going berserk(!) In-Reply-To: <20010215192135.A95579@freenix.no> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 15 Feb 2001, Morten A . Middelthon wrote: > I got a FreeBSD 4.1.1-STABLE built Oct 8, which seems to have been running just > fine for about 40 days. But now, all of a sudden, portmap forks off nnn > processes, and the load on the box goes up to about 150 (not kidding). Running I've seen over 400... > portmap with -v doesn't give me anything, running it with -d starts spitting > out thousands of 'server: about to do a switch' messages to my console. I > tried rebooting the box, but it starts all over again. You want to reboot the NIS client boxes which are bashing it, rather than the machine itself. > The box is running as a DHCP, NFS, Samba, NIS, Apache, named and printserver, > so it's quite an important box in my network. > > Is there any known portmap-related problems? Right now I'm building with new > updated sources, hoping desperately it will help. I don't think it will help. This is a known problem (there's a few messages in the archives). I suspect the reason noone's fixed it is that it's hard to reproduce, and in the kind of situation where you do reproduce it (NIS server in large network with lots of traffic), there isn't much opportunity to investigate because the 'phones are ringing like crazy with all the users that can't log in... The work-around is to list all your NIS servers explicitly (described as "many-cast" in the ypbind manpage) rather than broadcasting. The few times it's happened to me, I observed: 1) Each time it happened, it was preceded by some kind of network packet loss incident (one time it was a bad ethernet switch, another time a dud cable). This merely seems to trigger the problem: once the problem has started, you can mend the network but the problem won't go away until you reboot all the servers. 2) When this is going on, the symptoms are that one or more NIS clients are churning out vast quantities of broadcasts. The portmapper on the NIS server dutifully tries to reply to each one, but the client isn't listening to the replies. A tcpdump trace goes something like: client.xxx->broadcast.portmap UDP server.portmap->client.xxx UDP client->server ICMP port unreachable To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 16: 5:17 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-49.dsl.lsan03.pacbell.net [64.165.226.49]) by hub.freebsd.org (Postfix) with ESMTP id 4E1BC37B491 for ; Thu, 15 Feb 2001 16:05:11 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id E552866E6A; Thu, 15 Feb 2001 16:05:10 -0800 (PST) Date: Thu, 15 Feb 2001 16:05:10 -0800 From: Kris Kennaway To: Michael DeMutis Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Named crashing Message-ID: <20010215160510.A24762@mollari.cthul.hu> References: <200102142243.f1EMhDH94606@drugs.dv.isc.org> <3.0.3.32.20010215175719.0172c738@tristo.netinc.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="ew6BAiZeqk4r7MaW" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3.0.3.32.20010215175719.0172c738@tristo.netinc.ca>; from maillist@2gen.net on Thu, Feb 15, 2001 at 05:57:19PM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --ew6BAiZeqk4r7MaW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Feb 15, 2001 at 05:57:19PM -0500, Michael DeMutis wrote: > Could someone please explain the process to go from 8.2.2. to 8.2.3 Have you read the advisory? kris --ew6BAiZeqk4r7MaW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6jG62Wry0BWjoQKURAkANAJ9XjNL98ti12Vzttxbe6aHvpMiqXACg+fCE 7AAPKHQL49zeH7+utTmnTX0= =gP+y -----END PGP SIGNATURE----- --ew6BAiZeqk4r7MaW-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 16:24:57 2001 Delivered-To: freebsd-stable@freebsd.org Received: from carmel.diva.nl (carmel.diva.nl [195.86.140.150]) by hub.freebsd.org (Postfix) with ESMTP id 4DFE237B65D for ; Thu, 15 Feb 2001 16:24:55 -0800 (PST) Received: from localhost (boland@localhost) by carmel.diva.nl (8.11.1/8.11.1) with ESMTP id f1G0Ord27522; Fri, 16 Feb 2001 01:24:53 +0100 (CET) Date: Fri, 16 Feb 2001 01:24:53 +0100 (CET) From: Michiel Boland To: "Steve O'Hara-Smith" Cc: freebsd-stable@freebsd.org Subject: Re: perl5 on 2.2.8-STABLE In-Reply-To: <20010215214415.10f45303.steveo@eircom.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > MB> Is there a way to install perl5 on a 2.2.8-STABLE machine using ports? The > MB> ports/lang/perl5 port no longer builds - perl5.005_02.tar.gz appears to > MB> have disappeared everywhere. > > I suggest (untried) editing the Makefile to use perl5.005_03.tar.gz > make makesum and proceed = it may work easily or it may fight back :) Well that appears to work after fiddling with a couple of the patches. Is it worth it to get someone to update the port, or is the perl5 port essentially dead? (In which case it should probably be removed.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 17: 5:35 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rmx325-mta.mail.com (rmx325-mta.mail.com [165.251.48.53]) by hub.freebsd.org (Postfix) with ESMTP id 9D7B237B401 for ; Thu, 15 Feb 2001 17:05:32 -0800 (PST) Received: from web589-mc (web589-mc.mail.com [165.251.48.96]) by rmx325-mta.mail.com (8.9.3/8.9.3) with SMTP id UAA12053 for ; Thu, 15 Feb 2001 20:05:31 -0500 (EST) Message-ID: <386337748.982285531637.JavaMail.root@web589-mc> Date: Thu, 15 Feb 2001 20:05:31 -0500 (EST) From: Dorens Jay To: freebsd-stable@freebsd.org Subject: Problems compiling 4.2-STABLE from 4.2-RELEASE Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: mail.com X-Originating-IP: 151.188.17.248 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Trying to upgrade from 4.2-RELEASE to 4.2-STABLE, but I keep getting this same error (below). I've tried cvsup'ing from different sites, on different days, over the past 2 weeks, but I get the same exact error. I always rm -rf /usr/obj. I reinstalled 4.2-RELEASE from CD, tried to upgrade, and get the same _exact_ error. I am running an AMD K6/2 500 CPU, ASUS P5A mobo, 256M ram, UDMA/66 harddrives. Is this a problem with the AMD K6? Are there options in the /etc/make.conf I should try? (I compiled on a separate box - Pentium III 600 MHz - AND IT COMPILED JUST FINE. It also compiled fine on a slower AMD K6/2 300 box. Go figure. Are there known problems with AMD K6/2 500? Different kernel options I shoult try?) Here is the error: cd /usr/src/gnu/lib/libgcc; make depend; make all; make install echo '#include ' > config.h echo '#include ' >> config.h echo '#include "gansidecl.h"' > tconfig.h echo '#include "i386/xm-i386.h"' >> tconfig.h echo '#include "i386/i386.h"' > tm.h echo '#include "i386/att.h"' >> tm.h echo '#include "svr4.h"' >> tm.h echo '#include ' >> tm.h echo '#include "i386/freebsd.h"' >> tm.h echo '#include "i386/perform.h"' >> tm.h rm -f .depend mkdep -f .depend -a -I/usr/src/gnu/lib/libgcc/../../../contrib/gcc/config -I/usr/src/gnu/lib/libgcc/../../../contrib/gcc -I. -DIN_GCC -D_PTHREADS -DGTHREAD_USE_WEAK -I/usr/obj/usr/src/i386/usr/include /usr/src/gnu/lib/libgcc/../../../contrib/gcc/frame.c mkdep -f .depend -a -nostdinc++ -I/usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/inc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/tinfo.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/tinfo2.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/new.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/exception.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/exception.cc:33: gansidecl.h: No such file or directory /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/exception.cc:34: eh-common.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /usr/src/gnu/lib/libgcc. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. ******************** Any ideas? Please? ______________________________________________ FREE Personalized Email at Mail.com Sign up at http://www.mail.com/?sr=signup ______________________________________________ FREE Personalized Email at Mail.com Sign up at http://www.mail.com/?sr=signup To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 18:22:57 2001 Delivered-To: freebsd-stable@freebsd.org Received: from pobox.rwwa.com (pobox.rwwa.com [216.254.75.81]) by hub.freebsd.org (Postfix) with ESMTP id E821437B401 for ; Thu, 15 Feb 2001 18:22:54 -0800 (PST) Received: from rwwa.com (spooky.rwwa.com [192.124.97.13]) by pobox.rwwa.com (8.9.3/8.9.3) with ESMTP id VAA04605; Thu, 15 Feb 2001 21:22:51 -0500 (EST) (envelope-from witr@rwwa.com) Message-Id: <200102160222.VAA04605@pobox.rwwa.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Michael DeMutis , freebsd-stable@FreeBSD.ORG Subject: Re: Named crashing In-Reply-To: Your message of "Thu, 15 Feb 2001 17:57:19 EST." <3.0.3.32.20010215175719.0172c738@tristo.netinc.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 15 Feb 2001 21:22:51 -0500 From: Robert Withrow Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG maillist@2gen.net said: :-However a usual "make install" does not work. I still end up with :-8.2.2. It works, but installs it in /usr/local. You need to put this in your rc.conf... named_program="/usr/local/sbin/named" --------------------------------------------------------------------- Robert Withrow, R.W. Withrow Associates, Swampscott MA, witr@rwwa.COM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 20:25:33 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-49.dsl.lsan03.pacbell.net [64.165.226.49]) by hub.freebsd.org (Postfix) with ESMTP id 0732E37B401 for ; Thu, 15 Feb 2001 20:25:31 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8C5E866E6A; Thu, 15 Feb 2001 20:25:30 -0800 (PST) Date: Thu, 15 Feb 2001 20:25:30 -0800 From: Kris Kennaway To: Michiel Boland Cc: Steve O'Hara-Smith , freebsd-stable@freebsd.org Subject: Re: perl5 on 2.2.8-STABLE Message-ID: <20010215202530.A28771@mollari.cthul.hu> References: <20010215214415.10f45303.steveo@eircom.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from boland@carmel.diva.nl on Fri, Feb 16, 2001 at 01:24:53AM +0100 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 16, 2001 at 01:24:53AM +0100, Michiel Boland wrote: > > MB> Is there a way to install perl5 on a 2.2.8-STABLE machine using por= ts? The > > MB> ports/lang/perl5 port no longer builds - perl5.005_02.tar.gz appear= s to > > MB> have disappeared everywhere. > >=20 > > I suggest (untried) editing the Makefile to use perl5.005_03.tar.gz > > make makesum and proceed =3D it may work easily or it may fight back :) >=20 > Well that appears to work after fiddling with a couple of the patches. Is > it worth it to get someone to update the port, or is the perl5 port > essentially dead? (In which case it should probably be removed.) It's dead as long as no-one maintains it. If the current maintainer (markm) doesn't want to keep doing it, and you want to take care of it, then the problem is solved :-) Kris --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6jKu6Wry0BWjoQKURArXXAJ992X2xAhXRH4H2dhMwJA3xye6NlACg5FGE QH5uw9Wn4pLyynR3Vkj48bQ= =k8Ew -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 21:26:54 2001 Delivered-To: freebsd-stable@freebsd.org Received: from marble.fbcc.com (ns2.fbcc.com [216.54.252.3]) by hub.freebsd.org (Postfix) with SMTP id 40EC237B4EC for ; Thu, 15 Feb 2001 21:26:51 -0800 (PST) Received: (qmail 19024 invoked from network); 16 Feb 2001 05:34:47 -0000 Received: from 216-52-255-8.fbcc.com (HELO bluto.jimking.net) (216.54.255.8) by ns2.fbcc.com with SMTP; 16 Feb 2001 05:34:47 -0000 Received: from marble (marble.lgc.com [134.132.228.4]) by bluto.jimking.net (8.11.1/8.11.1) with SMTP id f1G5Qn875754 for ; Thu, 15 Feb 2001 23:26:49 -0600 (CST) (envelope-from jim@jimking.net) Message-ID: <006001c097d9$0fe11300$04e48486@marble> From: "Jim King" To: Subject: 3Ware rocks Date: Thu, 15 Feb 2001 23:26:48 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Just setup my first box with a 3Ware controller. The Feb. 9 snapshot installed and ran like a champ - absolutely nothing special required to use the 3Ware volume. Kudos to Mike Smith for the great work! Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 15 23: 3:21 2001 Delivered-To: freebsd-stable@freebsd.org Received: from freenix.no (atreides.freenix.no [213.188.21.6]) by hub.freebsd.org (Postfix) with ESMTP id 6392637B4EC for ; Thu, 15 Feb 2001 23:03:14 -0800 (PST) Received: (from morten@localhost) by freenix.no (8.11.1/8.11.1) id f1G73BR00194; Fri, 16 Feb 2001 08:03:11 +0100 (CET) (envelope-from morten) Date: Fri, 16 Feb 2001 08:03:11 +0100 From: "Morten A . Middelthon" To: Andrew Gordon Cc: freebsd-stable@freebsd.org Subject: Re: Portmap going berserk(!) Message-ID: <20010216080311.A123@freenix.no> References: <20010215192135.A95579@freenix.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from arg@arg1.demon.co.uk on Thu, Feb 15, 2001 at 11:36:30PM +0000 X-Operating-System: FreeBSD 4.2-STABLE X-Warning: So cunning you could brush your teeth with it. Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Feb 15, 2001 at 11:36:30PM +0000, Andrew Gordon wrote: > On Thu, 15 Feb 2001, Morten A . Middelthon wrote: > > > I got a FreeBSD 4.1.1-STABLE built Oct 8, which seems to have been running just > > fine for about 40 days. But now, all of a sudden, portmap forks off nnn > > processes, and the load on the box goes up to about 150 (not kidding). Running > > I've seen over 400... Yes, and after letting portmap go wild for another minute or two the load was up to ~350. > > portmap with -v doesn't give me anything, running it with -d starts spitting > > out thousands of 'server: about to do a switch' messages to my console. I > > tried rebooting the box, but it starts all over again. > > You want to reboot the NIS client boxes which are bashing it, rather than > the machine itself. It seems like my 4.2-STABLE workstation was causing it. I rebooted it, and the server went to normal operation, sortof. > > The box is running as a DHCP, NFS, Samba, NIS, Apache, named and printserver, > > so it's quite an important box in my network. > > > > Is there any known portmap-related problems? Right now I'm building with new > > updated sources, hoping desperately it will help. > > I don't think it will help. This is a known problem (there's a few > messages in the archives). I suspect the reason noone's fixed it is that > it's hard to reproduce, and in the kind of situation where you do > reproduce it (NIS server in large network with lots of traffic), there > isn't much opportunity to investigate because the 'phones are ringing like > crazy with all the users that can't log in... Well at least I got the opportunity to upgrade the box :} I've wanted to increase certain kernel options for a long time now, but was unwilling to reboot it. > The work-around is to list all your NIS servers explicitly (described as > "many-cast" in the ypbind manpage) rather than broadcasting. I'll try that. Anyway, thnx for your help. -- Morten A. Middelthon Freenix Norge http://www.freenix.no/ -- You don't sew with a fork, so I see no reason to eat with knitting needles. -- Miss Piggy, on eating Chinese Food To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 0: 8: 4 2001 Delivered-To: freebsd-stable@freebsd.org Received: from kremilek.gyrec.cz (kremilek.gyrec.cz [194.108.10.227]) by hub.freebsd.org (Postfix) with ESMTP id 1AE0637B503 for ; Fri, 16 Feb 2001 00:08:01 -0800 (PST) Received: from localhost (admin@localhost) by kremilek.gyrec.cz (8.8.7/8.8.7) with SMTP id JAA16772 for ; Fri, 16 Feb 2001 09:08:05 +0100 Date: Fri, 16 Feb 2001 09:08:05 +0100 (CET) From: To: freebsd-stable@FreeBSD.org Subject: ppp client curiosity Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hallo, Well, I believe I did somewhat unusual but I really don't know what. To explain: I started on my NT machine WinHTtrack v3.0 and it continually breaks links on my ppp connection on server with FreeBSD 4.2. If you want to see more detailed log or have any similar expriences, please let me know. > Feb 16 07:51:08 gate ppp[69815]: Connect: Received: CONNECT > Feb 16 07:54:38 gate ppp[69815]: Warning: ip_Input: IPCP not open - packet dropped > Feb 16 07:54:39 gate last message repeated 8 times > Feb 16 07:54:40 gate ppp[70090]: Phase: Using interface: tun1 > Feb 16 07:54:40 gate ppp[70090]: Phase: deflink: Created in closed state > Feb 16 07:54:40 gate ppp[69815]: Warning: ip_Input: IPCP not open - packet dropped > Feb 16 07:55:07 gate ppp[70125]: Phase: Using interface: tun0 > Feb 16 07:55:07 gate ppp[70125]: Phase: deflink: Created in closed state > Feb 16 07:55:16 gate ppp[70126]: Connect: Received: CONNECT > Feb 16 07:59:28 gate ppp[384]: Phase: Using interface: tun0 > Feb 16 07:59:28 gate ppp[384]: Phase: deflink: Created in closed state > Feb 16 08:00:02 gate ppp[412]: Connect: Received: CONNECT 33600/ARQ^M > Feb 16 08:04:13 gate ppp[412]: Warning: ip_Input: IPCP not open - packet dropped > Feb 16 08:04:14 gate last message repeated 7 times > Feb 16 08:04:15 gate ppp[726]: Phase: Using interface: tun1 > Feb 16 08:04:15 gate ppp[726]: Phase: deflink: Created in closed state > Feb 16 08:04:15 gate ppp[412]: Warning: ip_Input: IPCP not open - packet dropped > Feb 16 08:04:42 gate ppp[760]: Phase: Using interface: tun0 > Feb 16 08:04:42 gate ppp[760]: Phase: deflink: Created in closed state > Feb 16 08:05:19 gate ppp[761]: Connect: Received: CONNECT 33600/ARQ^M > Karel Rous To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 2: 7: 6 2001 Delivered-To: freebsd-stable@freebsd.org Received: from subnet.sub.net (subnet.sub.net [212.227.14.21]) by hub.freebsd.org (Postfix) with ESMTP id C989137B69B for ; Fri, 16 Feb 2001 02:07:02 -0800 (PST) Received: from lyxys.ka.sub.org (uucp@localhost) by subnet.sub.net (8.8.8/8.8.8/1.2subnet-linux) with bsmtp id LAA08738; Fri, 16 Feb 2001 11:06:58 +0100 Received: from localhost (2317 bytes) by lyxys.ka.sub.org via sendmail with P:stdio/R:smart_host/T:inet_uusmtp (sender: ) (ident using unix) id for ; Fri, 16 Feb 2001 10:52:24 +0100 (CET) (Smail-3.2.0.111 2000-Feb-17 #1 built 2000-Aug-23) Message-Id: From: wolfgang@lyxys.ka.sub.org (Wolfgang Zenker) Subject: Re: Problems compiling 4.2-STABLE from 4.2-RELEASE In-Reply-To: <386337748.982285531637.JavaMail.root@web589-mc> "from Dorens Jay at Feb 15, 2001 08:05:31 pm" To: Dorens Jay Date: Fri, 16 Feb 2001 10:52:24 +0100 (CET) Cc: freebsd-stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL88 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Trying to upgrade from 4.2-RELEASE to 4.2-STABLE, but I keep getting this > same error (below). [..] Can you reproduce the error if you run mkdep for exception.cc by hand? If you can, try to ktrace the mkdep to see where it is looking for the header files. > Here is the error: > cd /usr/src/gnu/lib/libgcc; make depend; make all; make install > echo '#include ' > config.h > echo '#include ' >> config.h > echo '#include "gansidecl.h"' > tconfig.h > echo '#include "i386/xm-i386.h"' >> tconfig.h > echo '#include "i386/i386.h"' > tm.h > echo '#include "i386/att.h"' >> tm.h > echo '#include "svr4.h"' >> tm.h > echo '#include ' >> tm.h > echo '#include "i386/freebsd.h"' >> tm.h > echo '#include "i386/perform.h"' >> tm.h > rm -f .depend > mkdep -f .depend -a -I/usr/src/gnu/lib/libgcc/../../../contrib/gcc/config -I/usr/src/gnu/lib/libgcc/../../../contrib/gcc -I. -DIN_GCC -D_PTHREADS -DGTHREAD_USE_WEAK -I/usr/obj/usr/src/i386/usr/include /usr/src/gnu/lib/libgcc/../../../contrib/gcc/frame.c > mkdep -f .depend -a -nostdinc++ -I/usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/inc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/tinfo.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/tinfo2.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/new.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/exception.cc > /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/exception.cc:33: gansidecl.h: No such file or directory > /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/exception.cc:34: eh-common.h: No such file or directory > mkdep: compile failed > *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 4:47:22 2001 Delivered-To: freebsd-stable@freebsd.org Received: from web4405.mail.yahoo.com (web4405.mail.yahoo.com [216.115.105.35]) by hub.freebsd.org (Postfix) with SMTP id 8F96937B491 for ; Fri, 16 Feb 2001 04:47:20 -0800 (PST) Message-ID: <20010216124720.19413.qmail@web4405.mail.yahoo.com> Received: from [200.201.158.33] by web4405.mail.yahoo.com; Fri, 16 Feb 2001 04:47:20 PST Date: Fri, 16 Feb 2001 04:47:20 -0800 (PST) From: Eraldo Jr Subject: - i810 in FreeBSD 41 Release - To: stable@FreeBSD.ORG In-Reply-To: <981207422.3a7c097e22b31@webmail.harmonic.co.il> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all ! it's me again... please.... somebody help me !!! What i need to do to make this run !!!!!!!!!????? I try all, everything ! but this shit dont run !!! Buaaaaa !!!!!!!!!! __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 5:13:15 2001 Delivered-To: freebsd-stable@freebsd.org Received: from w2xo.pgh.pa.us (ipl-229-114.npt-sdsl.stargate.net [208.223.229.114]) by hub.freebsd.org (Postfix) with ESMTP id C711137B503 for ; Fri, 16 Feb 2001 05:13:13 -0800 (PST) Received: from shazam (shazam [192.168.5.3]) by w2xo.pgh.pa.us (8.9.3/8.9.3) with ESMTP id NAA49675 for ; Fri, 16 Feb 2001 13:13:10 GMT (envelope-from durham@w2xo.pgh.pa.us) Date: Fri, 16 Feb 2001 08:13:35 -0500 (EST) From: Jim Durham X-Sender: durham@shazam.int To: freebsd-stable@freebsd.org Subject: Subscribe Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Subscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 6:22: 7 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id 04CF437B67D for ; Fri, 16 Feb 2001 06:22:01 -0800 (PST) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id JAA15406 for ; Fri, 16 Feb 2001 09:21:56 -0500 (EST) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id JAA26369 for ; Fri, 16 Feb 2001 09:21:55 -0500 (EST) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G8UT8I00.S8M; Fri, 16 Feb 2001 09:21:54 -0500 Message-ID: <3A8D379F.3646880E@mitre.org> Date: Fri, 16 Feb 2001 09:22:23 -0500 From: "Andresen,Jason R." X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Juha Saarinen Cc: "Eric L. Howard" , freebsd-stable@FreeBSD.ORG Subject: Re: just keep on crashing... References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Juha Saarinen wrote: > > :: I'm in my basement ... > :: w/ no basement radiators... > :: in Michigan... > :: with the case wide open =) > > Michigan's not so hot, huh? ;-) > > Seriously though, case wide open doesn't equal better cooling. A good case > is designed with airflow over the components in mind... and with the case > open, you won't have that airflow. On the other hand, almost no PC case manufactured today can be considered a "good" case. Good case design was killed off by the southeast asian sheet metal factories quite some time ago for the most part, although there are a few exceptions to the rule (some OEMs make decent cases). -- _ _ _ ___ ____ ___ ______________________________________ / \/ \ | ||_ _|| _ \|___| | Jason Andresen -- jandrese@mitre.org / /\/\ \ | | | | | |/ /|_|_ | Views expressed may not reflect those /_/ \_\|_| |_| |_|\_\|___| | of the Mitre Corporation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 6:47: 2 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hotmail.com (f94.law14.hotmail.com [64.4.21.94]) by hub.freebsd.org (Postfix) with ESMTP id B788537B4EC for ; Fri, 16 Feb 2001 06:46:58 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 16 Feb 2001 06:46:58 -0800 Received: from 161.184.39.167 by lw14fd.law14.hotmail.msn.com with HTTP; Fri, 16 Feb 2001 14:46:58 GMT X-Originating-IP: [161.184.39.167] From: "Jeffrey Sewell" To: freebsd-stable@freebsd.org Subject: Urgent; stable problem on Intel MB Date: Fri, 16 Feb 2001 14:46:58 -0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 16 Feb 2001 14:46:58.0493 (UTC) FILETIME=[504FD6D0:01C09827] Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have cvsup'd daily since Feb1 and recompiled. I cannot get a successful boot out of any kernel. GENERIC, MYKERNEL, anything. Mergemaster has been done. I have 2 different servers.. one ASUS, one Intel 440bx. Asus builds and boots fine, however the Intel gets 'Fatal trap 12 caught while in kernel mode'. Seeing how another Intel user had the same problem it must be an issue. Could someone please advise? I have backups and I am currently booting from kernel.backup (thank the good man above). I really wish I could have a successful boot :( Jeff. _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 7: 6: 6 2001 Delivered-To: freebsd-stable@freebsd.org Received: from illustrious.cnchost.com (illustrious.concentric.net [207.155.252.7]) by hub.freebsd.org (Postfix) with ESMTP id 3502637B401 for ; Fri, 16 Feb 2001 07:06:04 -0800 (PST) Received: from auvo.com (4032268D.ptr.dia.nextlink.net [64.50.38.141]) by illustrious.cnchost.com id KAA20700; Fri, 16 Feb 2001 10:06:00 -0500 (EST) [ConcentricHost SMTP Relay 1.10] Message-ID: <3A8D41B9.F79358D3@auvo.com> Date: Fri, 16 Feb 2001 09:05:29 -0600 From: Mike Bytnar Reply-To: mbytnar@auvo.com Organization: Auvo X-Mailer: Mozilla 4.74 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Chris Elsworth Cc: stable@FreeBSD.ORG, Bradley Kite Subject: Re: ipfw query.. References: <20010215130342.A95395@demon.net> <20010215135309.A23654@rug-rats.org> <3A8BE217.7AF6BFBD@herculeez.com> <20010215140949.A96244@demon.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sysctl -w net.inet.ip.fw.one_pass=0 This flag allows packets to pass through the pipes, until they are accepted by a pass or fail rule. But the configuration can be tricky. Another way is to place your packet processing (such as natd) first, then pass through the pipes. --Mike Chris Elsworth wrote: > On Thu, Feb 15, 2001 at 02:05:11pm +0000, Simon Loader wrote: > > Bradley Kite wrote: > > > > > > I'm sure there is a flag you can append to the end of > > > the pipe rules, that tell ipfw to continue going through the rules > > > instead of stopping when they match. > > > > > > I cant remember what the flag is tho, sorry :-( > > [...] > If I don't put the pipes first then I can't bandwidth limit, because when > the packets go through one of the allow rules, to, say, sshd - then > they'll never see the pipe and won't get limited or counted. So the pipes > have to come first.. > > -- > Chris Elsworth tel: 020 8371 1041 _ . > Systems Administrator mob: 07968 324 693 demon @ thus . . > Web & Hosting Team chrise@demon.net http://www.demon.net > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 7:56:24 2001 Delivered-To: freebsd-stable@freebsd.org Received: from cc762335-a.ebnsk1.nj.home.com (cc762335-a.ebnsk1.nj.home.com [24.3.219.36]) by hub.freebsd.org (Postfix) with SMTP id 980EE37B684 for ; Fri, 16 Feb 2001 07:56:21 -0800 (PST) Received: (qmail 28103 invoked from network); 16 Feb 2001 15:56:28 -0000 Received: from athena.faerunhome.com (HELO athena) (192.168.0.2) by cc762335-a.ebnsk1.nj.home.com with SMTP; 16 Feb 2001 15:56:28 -0000 Message-Id: <4.2.2.20010216105115.00c3ff00@netmail.home.com> X-Sender: damascus@netmail.home.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.2 Date: Fri, 16 Feb 2001 10:51:21 -0500 To: "Jeffrey Sewell" From: Carroll Kong Subject: Re: Urgent; stable problem on Intel MB Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 02:46 PM 2/16/01 +0000, Jeffrey Sewell wrote: >I have cvsup'd daily since Feb1 and recompiled. I cannot get a successful >boot out of any kernel. GENERIC, MYKERNEL, anything. >Mergemaster has been done. > >I have 2 different servers.. one ASUS, one Intel 440bx. Asus builds and >boots fine, however the Intel gets 'Fatal trap 12 caught while in kernel >mode'. Seeing how another Intel user had the same problem it must be an issue. > >Could someone please advise? I have backups and I am currently booting >from kernel.backup (thank the good man above). > >I really wish I could have a successful boot :( > >Jeff. Reseat your memory on that box. -Carroll Kong To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 8: 2:45 2001 Delivered-To: freebsd-stable@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id CFFD737B401 for ; Fri, 16 Feb 2001 08:02:40 -0800 (PST) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id SAA25140; Fri, 16 Feb 2001 18:08:17 +0100 Message-ID: <3A8D4F7A.27D5AC3E@i-clue.de> Date: Fri, 16 Feb 2001 17:04:10 +0100 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: Jeffrey Sewell Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Urgent; stable problem on Intel MB References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jeffrey Sewell schrieb: > > I have cvsup'd daily since Feb1 and recompiled. I cannot get a successful > boot out of any kernel. GENERIC, MYKERNEL, anything. > Mergemaster has been done. > > I have 2 different servers.. one ASUS, one Intel 440bx. Asus builds and > boots fine, however the Intel gets 'Fatal trap 12 caught while in kernel > mode'. Seeing how another Intel user had the same problem it must be an > issue. > > Could someone please advise? I have backups and I am currently booting from > kernel.backup (thank the good man above). > > I really wish I could have a successful boot :( Sorry, without facts a solution will be impossible. If your machine crashed during compiles, most likely you got faulty hardware. OTOH, it is possible to compile a kernel without needed hardware support. Have a look at http://www.freebsd.org/handbook/kernelconfig.html before asking again. it tells what to ask for, too. HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 8:18:58 2001 Delivered-To: freebsd-stable@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id C785937B4EC for ; Fri, 16 Feb 2001 08:18:53 -0800 (PST) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id SAA25236; Fri, 16 Feb 2001 18:24:25 +0100 Message-ID: <3A8D5342.78D4A9E1@i-clue.de> Date: Fri, 16 Feb 2001 17:20:18 +0100 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: Michael DeMutis Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Drive not coming up References: <200102110405.UAA90354@miles.cs.washington.edu> <00da01c093e0$72429f20$931576d8@inethouston.net> <001601c0949f$3cf34260$1d750140@cascade> <3.0.3.32.20010214100612.00e47a40@tristo.netinc.ca> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Michael DeMutis schrieb: > > Hi there. > > I'm running the 3.X stable tree. > > I added another hard drive, and went to /stand/sysinstall to install the > drive. > > That all worked fine, I used DiskLabel to set my mount point to /backup > > It all works fine, until I reboot. When I reboot the drive is not mounted, > and I have to use DiskLabel again in order to get the drive to show up. > > I don't lose any data in the process, it's just an inconvienience. > > Another thing to note is that the drive is not listing in /etc/fstab > > Here is my /etc/fstab# Device Mountpoint FStype > Options Dump Pass# > /dev/da0s1b none swap sw 0 0 > /dev/da0s1a / ufs rw 1 1 > /dev/da0s1f /usr ufs rw 2 2 > /dev/da0s1e /var ufs rw 2 2 > proc /proc procfs rw 0 0 Sysinstall cannot add the entry for your new drive automtically. Assuming you added a second SCSI disk with just one big partition, inserting this line into fstab will help: /dev/da1s0e /new/mount/point ufs rw 2 2 HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 8:26:35 2001 Delivered-To: freebsd-stable@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id CEEB237B401 for ; Fri, 16 Feb 2001 08:26:31 -0800 (PST) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id SAA25296; Fri, 16 Feb 2001 18:31:54 +0100 Message-ID: <3A8D5503.B9AE648E@i-clue.de> Date: Fri, 16 Feb 2001 17:27:47 +0100 From: Christoph Sold Reply-To: so@server.i-clue.de X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: Bjoern Groenvall Cc: freebsd-stable@FreeBSD.ORG Subject: Re: "Fatal trap 12" during boot References: Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [Note: not forwarded to list because of stuüid guess. No real answer here.] Stupid guess: your acd0: CDROM does things it should better not. Just for fun, disconnect the gizmo (or build a kernel without ATAPI), then try again. HTH -Christoph Sold Bjoern Groenvall schrieb: > > Dear Sirs, > > Today I cvsup:ed 4.2-STABLE and built a new kernel. The new kernel > receives a "Fatal trap 12" where it usually prints "Waiting 3 seconds > for SCSI devices to settle". > > Does anybody have any hints about what's wrong? Dmesg output and > config file is attached. > > Cheers, > Bjoern > > ------------------------------------- > > FreeBSD 4.2-STABLE #0: Mon Feb 12 19:21:02 CET 2001 > root@:/usr/src/sys/compile/KRUMELUR > Timecounter "i8254" frequency 1193182 Hz > Timecounter "TSC" frequency 799620991 Hz > CPU: Pentium III/Pentium III Xeon/Celeron (799.62-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x686 Stepping = 6 > Features=0x383fbff OV,PAT,PSE36,MMX,FXSR,SSE> > real memory = 536805376 (524224K bytes) > avail memory = 517849088 (505712K bytes) [snip] > ppc0: at port 0x378-0x37f irq 7 on isa0 > ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode > ppc0: FIFO with 16/16/8 bytes threshold > ppi0: on ppbus0 > acd0: CDROM at ata0-master using PIO4 > > Fatal trap 12: page fault while in kernel mode [snip] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 9:29: 5 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hawk.dcu.ie (mail.dcu.ie [136.206.1.5]) by hub.freebsd.org (Postfix) with ESMTP id 2B00537B6A8 for ; Fri, 16 Feb 2001 09:28:56 -0800 (PST) Received: from enigma.redbrick.dcu.ie (136.206.15.21) by hawk.dcu.ie (5.1.050) id 3A3F6BC3001036C5 for freebsd-stable@freebsd.org; Fri, 16 Feb 2001 17:29:59 +0000 Received: by enigma.redbrick.dcu.ie (Postfix, from userid 1016) id 03A5D7CC7; Fri, 16 Feb 2001 17:28:54 +0000 (GMT) Date: Fri, 16 Feb 2001 17:28:54 +0000 From: Robert bobb Crosbie To: freebsd-stable@freebsd.org Subject: More than 256 pty's Message-ID: <20010216172854.A67979@enigma.redbrick.dcu.ie> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Organization: bobb Industries Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey, I'm currently running into difficulties on a multiuser system, (4.2-STABLE) we have 256 pty's (for some reason we still have pseudo-device pty 256, in the kernel conf...), and we are running out. Last year we ran into the same problem (February seems to be a busy month) and I believe that we followed the instructions in http://www.FreeBSD.org/cgi/getmsg.cgi?fetch=8198069+8200098+/usr/local/www/db/text/1999/freebsd-questions/19990607.freebsd-questions You can have more than 256 ptys; the problem is what to name them. You can easily get 384 ptys by extending the current scheme slightly (using /dev/tty[tuTU]*; /dev/ttyv* is syscons so we hit our limit with this naming scheme). Edit /dev/MAKEDEV and /usr/src/lib/libutil/pty.c However, I can't remember what we did (if we did at all) to MAKEDEV to overcome the 256 minor number limit. Can anyone help us out ? What is the possibility of creating more than 256 pty/tty devices ? If not, are there any plans to overcome this hard limit in the future ? Cheers, - bobb -- Oft it may chance that old wives keep in memory word of things that once were needful for the wise to know. - Celeborn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 11: 1:13 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by hub.freebsd.org (Postfix) with ESMTP id ACEE237B401 for ; Fri, 16 Feb 2001 11:01:10 -0800 (PST) Received: from randy by rip.psg.com with local (Exim 3.16 #1) id 14Tq7y-0008J9-00 for freebsd-stable@freebsd.org; Fri, 16 Feb 2001 11:01:10 -0800 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: FreeBSD Stable Subject: openssh not setting DISPLAY Message-Id: Date: Fri, 16 Feb 2001 11:01:10 -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -stable of yesterday X 4.02 openssh, moving from /usr/ports/security/ssh1 going in with protocol 1 user's shell is bash DISPLAY env var not being set. i expect `hostname`:10.0 x forward not seeming to happen even if i set it manually. Port 22 Protocol 2,1 #ListenAddress 0.0.0.0 #ListenAddress :: HostKey /etc/ssh/ssh_host_key HostDsaKey /etc/ssh/ssh_host_dsa_key ServerKeyBits 768 LoginGraceTime 120 KeyRegenerationInterval 3600 PermitRootLogin yes # ConnectionsPerPeriod has been deprecated completely # After 10 unauthenticated connections, refuse 30% of the new ones, and # refuse any more than 60 total. MaxStartups 10:30:60 # Don't read ~/.rhosts and ~/.shosts files IgnoreRhosts yes # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication #IgnoreUserKnownHosts yes StrictModes yes X11Forwarding yes X11DisplayOffset 10 PrintMotd yes KeepAlive yes randy, feeling stoopider than usual To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 11:11: 0 2001 Delivered-To: freebsd-stable@freebsd.org Received: from bg.sics.se (c193.150.200.88.cm-upc.chello.se [193.150.200.88]) by hub.freebsd.org (Postfix) with ESMTP id E828037B401 for ; Fri, 16 Feb 2001 11:10:55 -0800 (PST) Received: (from bg@localhost) by bg.sics.se (8.11.1/8.11.1) id f1GJBad17717; Fri, 16 Feb 2001 20:11:36 +0100 (CET) (envelope-from bg) To: assar@sics.se, joyride@sics.se Cc: freebsd-stable@FreeBSD.ORG Subject: Re: "Fatal trap 12" during boot References: <3A8D5503.B9AE648E@i-clue.de> From: Bjoern Groenvall Date: 16 Feb 2001 20:11:36 +0100 In-Reply-To: Christoph Sold's message of "Fri, 16 Feb 2001 17:27:47 +0100" Message-ID: Lines: 64 X-Mailer: Gnus v5.7/Emacs 20.6 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Om det skulle behövas, men det tror jag inte. /Björn ------------------- [Note: not forwarded to list because of stuüid guess. No real answer here.] Stupid guess: your acd0: CDROM does things it should better not. Just for fun, disconnect the gizmo (or build a kernel without ATAPI), then try again. HTH -Christoph Sold Bjoern Groenvall schrieb: > > Dear Sirs, > > Today I cvsup:ed 4.2-STABLE and built a new kernel. The new kernel > receives a "Fatal trap 12" where it usually prints "Waiting 3 seconds > for SCSI devices to settle". > > Does anybody have any hints about what's wrong? Dmesg output and > config file is attached. > > Cheers, > Bjoern > > ------------------------------------- > > FreeBSD 4.2-STABLE #0: Mon Feb 12 19:21:02 CET 2001 > root@:/usr/src/sys/compile/KRUMELUR > Timecounter "i8254" frequency 1193182 Hz > Timecounter "TSC" frequency 799620991 Hz > CPU: Pentium III/Pentium III Xeon/Celeron (799.62-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x686 Stepping = 6 > Features=0x383fbff OV,PAT,PSE36,MMX,FXSR,SSE> > real memory = 536805376 (524224K bytes) > avail memory = 517849088 (505712K bytes) [snip] > ppc0: at port 0x378-0x37f irq 7 on isa0 > ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode > ppc0: FIFO with 16/16/8 bytes threshold > ppi0: on ppbus0 > acd0: CDROM at ata0-master using PIO4 > > Fatal trap 12: page fault while in kernel mode [snip] -- _ _ ,_______________. Bjorn Gronvall (Björn Grönvall) /_______________/| Swedish Institute of Computer Science | || PO Box 1263, S-164 29 Kista, Sweden | Schroedingers || Email: bg@sics.se, Phone +46 -8 633 15 25 | Cat |/ Cellular +46 -70 768 06 35, Fax +46 -8 751 72 30 `---------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 11:23:15 2001 Delivered-To: freebsd-stable@freebsd.org Received: from harmony.village.org (rover.village.org [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id C536137B491 for ; Fri, 16 Feb 2001 11:23:10 -0800 (PST) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.1/8.11.1) with ESMTP id f1GJMRW10083; Fri, 16 Feb 2001 12:22:31 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200102161922.f1GJMRW10083@harmony.village.org> To: mbytnar@auvo.com Subject: Re: ipfw query.. Cc: Chris Elsworth , stable@FreeBSD.ORG, Bradley Kite In-reply-to: Your message of "Fri, 16 Feb 2001 09:05:29 CST." <3A8D41B9.F79358D3@auvo.com> References: <3A8D41B9.F79358D3@auvo.com> <20010215130342.A95395@demon.net> <20010215135309.A23654@rug-rats.org> <3A8BE217.7AF6BFBD@herculeez.com> <20010215140949.A96244@demon.net> Date: Fri, 16 Feb 2001 12:22:27 -0700 From: Warner Losh Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <3A8D41B9.F79358D3@auvo.com> Mike Bytnar writes: : This flag allows packets to pass through the pipes, until they are accepted by a : pass or fail rule. But the configuration can be tricky. : Another way is to place your packet processing (such as natd) first, then pass : through the pipes. Withouth this flag, do I need to do special things if I'm just filtering packets? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 11:27:48 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtp.wanadoo.nl (smtp.wanadoo.nl [194.134.193.6]) by hub.freebsd.org (Postfix) with ESMTP id 8593237B491 for ; Fri, 16 Feb 2001 11:27:45 -0800 (PST) Received: from ams-gw.sohara.org (p1021.vcu.wanadoo.nl [194.134.203.2]) by smtp.wanadoo.nl (8.9.3/8.9.3) with SMTP id UAA11895; Fri, 16 Feb 2001 20:27:42 +0100 (MET) Date: Fri, 16 Feb 2001 20:27:37 +0100 From: "Steve O'Hara-Smith" To: Robert bobb Crosbie Cc: freebsd-stable@freebsd.org Subject: Re: More than 256 pty's Message-Id: <20010216202737.1807da64.steveo@eircom.net> In-Reply-To: <20010216172854.A67979@enigma.redbrick.dcu.ie> References: <20010216172854.A67979@enigma.redbrick.dcu.ie> X-Mailer: Sylpheed version 0.4.60 (GTK+ 1.2.8; FreeBSD 4.2-STABLE; i386) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 16 Feb 2001 17:28:54 +0000 Robert bobb Crosbie wrote: RC> RC> You can have more than 256 ptys; the problem is what to name them. You RC> can easily get 384 ptys by extending the current scheme slightly (using RC> /dev/tty[tuTU]*; /dev/ttyv* is syscons so we hit our limit with this RC> naming scheme). Edit /dev/MAKEDEV and /usr/src/lib/libutil/pty.c RC> It looks to me like you also have to hack around in kern/tty_pty.c, there are hard coded assumptions in there about 256 minor numbers being mapped. Also comments about doing something about it, the mapping is defined in there. Making it work above 256 doesn't look hard, agreeing on a naming convention might be harder :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 11:29:45 2001 Delivered-To: freebsd-stable@freebsd.org Received: from moek.pir.net (moek.pir.net [130.64.1.215]) by hub.freebsd.org (Postfix) with ESMTP id 0CE3F37B401 for ; Fri, 16 Feb 2001 11:29:43 -0800 (PST) Received: from pir by moek.pir.net with local (Exim) id 14TqZZ-0002sG-00 for freebsd-stable@freebsd.org; Fri, 16 Feb 2001 14:29:41 -0500 Date: Fri, 16 Feb 2001 14:29:41 -0500 From: Peter Radcliffe To: FreeBSD Stable Subject: Re: openssh not setting DISPLAY Message-ID: <20010216142941.D9583@pir.net> Reply-To: stable@freebsd.org Mail-Followup-To: FreeBSD Stable References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from randy@psg.com on Fri, Feb 16, 2001 at 11:01:10AM -0800 X-fish: < X-Copy-On-Listmail: Please do NOT Cc: me on list mail. Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Randy Bush probably said: > -stable of yesterday > X 4.02 > openssh, moving from /usr/ports/security/ssh1 > DISPLAY env var not being set. i expect `hostname`:10.0 > x forward not seeming to happen even if i set it manually. /etc/ssh/ssh_config Host * ForwardX11 yes P. -- pir pir@pir.net pir@net.tufts.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 11:33:35 2001 Delivered-To: freebsd-stable@freebsd.org Received: from math.missouri.edu (math.missouri.edu [128.206.49.180]) by hub.freebsd.org (Postfix) with ESMTP id 9AF1637B4EC for ; Fri, 16 Feb 2001 11:33:31 -0800 (PST) Received: from math.missouri.edu (stephen@cauchy.math.missouri.edu [128.206.49.166]) by math.missouri.edu (8.9.3/8.9.3) with ESMTP id NAA98652; Fri, 16 Feb 2001 13:33:28 -0600 (CST) (envelope-from stephen@math.missouri.edu) Message-ID: <3A8D8088.164E99D3@math.missouri.edu> Date: Fri, 16 Feb 2001 13:33:28 -0600 From: Stephen Montgomery-Smith Organization: University of Missouri X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Randy Bush Cc: FreeBSD Stable Subject: Re: openssh not setting DISPLAY References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I had the same problem. I fixed it by putting ForwardX11 yes in /etc/ssh_config (I am assuming that here you are showing sshd_config). (Somehow I think ForwardX11 yes should be the default, but it seems not to be.) Randy Bush wrote: > > -stable of yesterday > X 4.02 > openssh, moving from /usr/ports/security/ssh1 > > going in with protocol 1 > > user's shell is bash > > DISPLAY env var not being set. i expect `hostname`:10.0 > > x forward not seeming to happen even if i set it manually. > > Port 22 > Protocol 2,1 > #ListenAddress 0.0.0.0 > #ListenAddress :: > HostKey /etc/ssh/ssh_host_key > HostDsaKey /etc/ssh/ssh_host_dsa_key > ServerKeyBits 768 > LoginGraceTime 120 > KeyRegenerationInterval 3600 > PermitRootLogin yes > # ConnectionsPerPeriod has been deprecated completely > > # After 10 unauthenticated connections, refuse 30% of the new ones, and > # refuse any more than 60 total. > MaxStartups 10:30:60 > # Don't read ~/.rhosts and ~/.shosts files > IgnoreRhosts yes > # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication > #IgnoreUserKnownHosts yes > StrictModes yes > X11Forwarding yes > X11DisplayOffset 10 > PrintMotd yes > KeepAlive yes > > randy, feeling stoopider than usual > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Stephen Montgomery-Smith stephen@math.missouri.edu 307 Math Science Building stephen@showme.missouri.edu Department of Mathematics stephen@missouri.edu University of Missouri-Columbia Columbia, MO 65211 USA Phone (573) 882 4540 Fax (573) 882 1869 http://www.math.missouri.edu/~stephen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 11:36:10 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by hub.freebsd.org (Postfix) with ESMTP id 68FF637B503 for ; Fri, 16 Feb 2001 11:36:06 -0800 (PST) Received: from randy by rip.psg.com with local (Exim 3.16 #1) id 14Tqfm-0008aR-00 for freebsd-stable@freebsd.org; Fri, 16 Feb 2001 11:36:06 -0800 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: FreeBSD Stable Subject: how to keygen /etc/ssh/*key* Message-Id: Date: Fri, 16 Feb 2001 11:36:06 -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG how do i force regen of /etc/ssh/ host key files? -rw------- 1 root wheel 668 Feb 16 10:43 ssh_host_dsa_key -rw-r--r-- 1 root wheel 602 Feb 16 10:43 ssh_host_dsa_key.pub -rw------- 1 root wheel 527 Feb 16 10:43 ssh_host_key -rw-r--r-- 1 root wheel 331 Feb 16 10:43 ssh_host_key.pub randy ps: deleting old ssh1 executables seems to have cleared up the x forwarding issue. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 11:39:15 2001 Delivered-To: freebsd-stable@freebsd.org Received: from awww.jeah.net (awww.jeah.net [216.111.239.130]) by hub.freebsd.org (Postfix) with ESMTP id C0D1837B503 for ; Fri, 16 Feb 2001 11:39:12 -0800 (PST) Received: from localhost (chris@localhost) by awww.jeah.net (8.11.1/8.11.0) with ESMTP id f1GJc6T09540; Fri, 16 Feb 2001 13:38:06 -0600 (CST) (envelope-from chris@jeah.net) Date: Fri, 16 Feb 2001 13:38:05 -0600 (CST) From: Chris Byrnes To: Randy Bush Cc: FreeBSD Stable Subject: Re: how to keygen /etc/ssh/*key* In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 16 Feb 2001, Randy Bush wrote: > how do i force regen of /etc/ssh/ host key files? Delete the old ones, and: /usr/bin/ssh-keygen -N "" -f /etc/ssh/ssh_host_key /usr/bin/ssh-keygen -d -N "" -f /etc/ssh/ssh_host_dsa_key Should work. -Chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 11:40:28 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rmx614-mta.mail.com (rmx614-mta.mail.com [165.251.48.52]) by hub.freebsd.org (Postfix) with ESMTP id 61AC837B4EC for ; Fri, 16 Feb 2001 11:40:25 -0800 (PST) Received: from web569-mc (web569-mc.mail.com [165.251.48.92]) by rmx614-mta.mail.com (8.9.3/8.9.3) with SMTP id OAA22949; Fri, 16 Feb 2001 14:40:22 -0500 (EST) Message-ID: <382281753.982352421087.JavaMail.root@web569-mc> Date: Fri, 16 Feb 2001 14:40:21 -0500 (EST) From: Dorens Jay To: Wolfgang Zenker Subject: Re: Problems compiling 4.2-STABLE from 4.2-RELEASE Cc: freebsd-stable@freebsd.org Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: mail.com X-Originating-IP: 151.188.17.248 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Well, I figured it out. I had installed ~/.bash_profile from my linux box. It contained this line - CFLAGS="-O -pipe -mcpu=i586 -march=i586" Apparently FreeBSD gets confused by the quotes. After deleteing that line from .bash_profile, I entered this into /etc/make.conf -- CFLAGS= -O -pipe -mcpu=i586 -march=i586 No quotes. Now it compiles make buildworld just fine! Be wary of the little details - they can blindside you. JD ------Original Message------ From: wolfgang@lyxys.ka.sub.org (Wolfgang Zenker) To: Dorens Jay Sent: February 16, 2001 9:52:24 AM GMT Subject: Re: Problems compiling 4.2-STABLE from 4.2-RELEASE > Trying to upgrade from 4.2-RELEASE to 4.2-STABLE, but I keep getting this > same error (below). [..] Can you reproduce the error if you run mkdep for exception.cc by hand? If you can, try to ktrace the mkdep to see where it is looking for the header files. > Here is the error: > cd /usr/src/gnu/lib/libgcc; make depend; make all; make install > echo '#include ' > config.h > echo '#include ' >> config.h > echo '#include "gansidecl.h"' > tconfig.h > echo '#include "i386/xm-i386.h"' >> tconfig.h > echo '#include "i386/i386.h"' > tm.h > echo '#include "i386/att.h"' >> tm.h > echo '#include "svr4.h"' >> tm.h > echo '#include ' >> tm.h > echo '#include "i386/freebsd.h"' >> tm.h > echo '#include "i386/perform.h"' >> tm.h > rm -f .depend > mkdep -f .depend -a -I/usr/src/gnu/lib/libgcc/../../../contrib/gcc/config -I/usr/src/gnu/lib/libgcc/../../../contrib/gcc -I. -DIN_GCC -D_PTHREADS -DGTHREAD_USE_WEAK -I/usr/obj/usr/src/i386/usr/include /usr/src/gnu/lib/libgcc/../../../contrib/gcc/frame.c > mkdep -f .depend -a -nostdinc++ -I/usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/inc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/tinfo.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/tinfo2.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/new.cc /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/exception.cc > /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/exception.cc:33: gansidecl.h: No such file or directory > /usr/src/gnu/lib/libgcc/../../../contrib/gcc/cp/exception.cc:34: eh-common.h: No such file or directory > mkdep: compile failed > *** Error code 1 ______________________________________________ FREE Personalized Email at Mail.com Sign up at http://www.mail.com/?sr=signup To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 11:41:36 2001 Delivered-To: freebsd-stable@freebsd.org Received: from math.missouri.edu (math.missouri.edu [128.206.49.180]) by hub.freebsd.org (Postfix) with ESMTP id 3D0AB37B401 for ; Fri, 16 Feb 2001 11:41:33 -0800 (PST) Received: from math.missouri.edu (stephen@cauchy.math.missouri.edu [128.206.49.166]) by math.missouri.edu (8.9.3/8.9.3) with ESMTP id NAA98789; Fri, 16 Feb 2001 13:41:31 -0600 (CST) (envelope-from stephen@math.missouri.edu) Message-ID: <3A8D826B.22699B4@math.missouri.edu> Date: Fri, 16 Feb 2001 13:41:31 -0600 From: Stephen Montgomery-Smith Organization: University of Missouri X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Randy Bush Cc: FreeBSD Stable Subject: Re: how to keygen /etc/ssh/*key* References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I found out how to do this by looking in /etc/rc.network /usr/bin/ssh-keygen -N "" -f /etc/ssh/ssh_host_key /usr/bin/ssh-keygen -d -N "" -f /etc/ssh/ssh_host_dsa_key Another cool way is to delete these files, and reboot the computer. Randy Bush wrote: > > how do i force regen of /etc/ssh/ host key files? > > -rw------- 1 root wheel 668 Feb 16 10:43 ssh_host_dsa_key > -rw-r--r-- 1 root wheel 602 Feb 16 10:43 ssh_host_dsa_key.pub > -rw------- 1 root wheel 527 Feb 16 10:43 ssh_host_key > -rw-r--r-- 1 root wheel 331 Feb 16 10:43 ssh_host_key.pub > > randy > > ps: deleting old ssh1 executables seems to have cleared up the x > forwarding issue. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Stephen Montgomery-Smith stephen@math.missouri.edu 307 Math Science Building stephen@showme.missouri.edu Department of Mathematics stephen@missouri.edu University of Missouri-Columbia Columbia, MO 65211 USA Phone (573) 882 4540 Fax (573) 882 1869 http://www.math.missouri.edu/~stephen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 11:41:47 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by hub.freebsd.org (Postfix) with ESMTP id 00D8F37B401 for ; Fri, 16 Feb 2001 11:41:41 -0800 (PST) Received: from randy by rip.psg.com with local (Exim 3.16 #1) id 14Tql9-0008ct-00; Fri, 16 Feb 2001 11:41:39 -0800 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Chris Byrnes Cc: FreeBSD Stable Subject: Re: how to keygen /etc/ssh/*key* References: Message-Id: Date: Fri, 16 Feb 2001 11:41:39 -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > /usr/bin/ssh-keygen -N "" -f /etc/ssh/ssh_host_key > /usr/bin/ssh-keygen -d -N "" -f /etc/ssh/ssh_host_dsa_key YES! so it knows it's the host master keys because of the null passphrase? the person page is a bit light in this area. thank you. randy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 12: 4: 8 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtp.wanadoo.nl (smtp.wanadoo.nl [194.134.193.6]) by hub.freebsd.org (Postfix) with ESMTP id 2DCD237B491 for ; Fri, 16 Feb 2001 12:04:06 -0800 (PST) Received: from ams-gw.sohara.org (p1324.vcu.wanadoo.nl [194.134.170.49]) by smtp.wanadoo.nl (8.9.3/8.9.3) with SMTP id VAA18179; Fri, 16 Feb 2001 21:03:48 +0100 (MET) Date: Fri, 16 Feb 2001 21:03:45 +0100 From: "Steve O'Hara-Smith" To: Randy Bush Cc: chris@jeah.net, freebsd-stable@FreeBSD.ORG Subject: Re: how to keygen /etc/ssh/*key* Message-Id: <20010216210345.0178b2ec.steveo@eircom.net> In-Reply-To: References: X-Mailer: Sylpheed version 0.4.60 (GTK+ 1.2.8; FreeBSD 4.2-STABLE; i386) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 16 Feb 2001 11:41:39 -0800 Randy Bush wrote: RB> > /usr/bin/ssh-keygen -N "" -f /etc/ssh/ssh_host_key RB> > /usr/bin/ssh-keygen -d -N "" -f /etc/ssh/ssh_host_dsa_key RB> RB> YES! RB> RB> so it knows it's the host master keys because of the null passphrase? the RB> person page is a bit light in this area. No, it knows it's the host master keys because of the -f parameter putting the key where the host master key lives. Stephen Montgomery-Smith SS> Another cool way is to delete these files, and reboot the Ugh - IMHO for far too many reasons to go in to. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 12:13:20 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by hub.freebsd.org (Postfix) with ESMTP id B2F0E37B401 for ; Fri, 16 Feb 2001 12:13:18 -0800 (PST) Received: from randy by rip.psg.com with local (Exim 3.16 #1) id 14TrFe-0000Gh-00; Fri, 16 Feb 2001 12:13:10 -0800 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: "Steve O'Hara-Smith" Cc: chris@jeah.net, freebsd-stable@FreeBSD.ORG Subject: Re: how to keygen /etc/ssh/*key* References: <20010216210345.0178b2ec.steveo@eircom.net> Message-Id: Date: Fri, 16 Feb 2001 12:13:10 -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >> Another cool way is to delete these files, and reboot the > Ugh - IMHO for far too many reasons to go in to. agree. this is unix not windows. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 13: 2:21 2001 Delivered-To: freebsd-stable@freebsd.org Received: from poontang.schulte.org (poontang.schulte.org [209.134.156.197]) by hub.freebsd.org (Postfix) with ESMTP id 4AEE637B401 for ; Fri, 16 Feb 2001 13:02:15 -0800 (PST) Received: from laptop.schulte.org (nb-105.netbriefings.com [204.72.185.105]) by poontang.schulte.org (8.9.3/8.9.3) with ESMTP id PAA76698 for ; Fri, 16 Feb 2001 15:02:10 -0600 (CST) (envelope-from christopher@schulte.org) Message-Id: <5.0.2.1.2.20010216141741.0296a9b0@pop.schulte.org> X-Sender: schulte@pop.schulte.org X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Fri, 16 Feb 2001 15:03:08 -0600 To: freebsd-stable@freebsd.org From: Christopher Schulte Subject: cvsup: enough to rebuild binaries/libs/etc, per security advisories? Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG System: 4.2-Release. I have a cron that uses cvsup to pull the stable source tree nightly. When an advisory comes out (such as the recent Kerberos IV), I just rebuild the appropriate components: # cd /usr/src/kerberosIV # make depend && make all install # cd /usr/src/libexec/telnetd # make depend && make all install Since I have updated sources, these builds should be adequate, correct? Is this a safe way to stay current? Will I run into odd dependency issues because I'm not rebuilding the entire system at once, or is keeping current with cvsup essentially the same as applying the indicated patches in advisories? Thank you, -- Christopher Schulte 'now you know, this is what it feels like' - NIN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 13: 3:11 2001 Delivered-To: freebsd-stable@freebsd.org Received: from omahpop1.omah.uswest.net (omahpop1.omah.uswest.net [204.26.64.1]) by hub.freebsd.org (Postfix) with SMTP id 2864B37B491 for ; Fri, 16 Feb 2001 13:03:08 -0800 (PST) Received: (qmail 22664 invoked by alias); 16 Feb 2001 21:03:06 -0000 Delivered-To: fixup-freebsd-stable@freebsd.org@fixme Received: (qmail 22659 invoked by uid 0); 16 Feb 2001 21:03:06 -0000 Received: from omah6400gw2poolb61.omah.uswest.net (HELO kristen.shadowdale.net) (63.227.157.61) by omahpop1.omah.uswest.net with SMTP; 16 Feb 2001 21:03:06 -0000 Date: Fri, 16 Feb 2001 15:03:02 -0600 (CST) From: Virtual Bob To: FreeBSD-STABLE list Subject: IBM/Cyrix 6x86 133(PR166) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I was just compiling kernel (4.x-S) on this thing and I had 586 CPU option compiled. Boy, was I amused when the new kernel died while trying to boot up. Rebooting with the generic kernel, I caught the message from it saying a 486-class CPU is detected. Is that right? Or do I have to throw in some secret switches while making the new kernel? ------------- clip here with virtual scissors -------------- ************************************************************ Keyboard stuck error. Press F1 to continue. Any unsolicited e-mails will be charged US$500 per e-mail, plus court cost. Your contribution to Bill Gates' personal wealth: US$359.17 ************************************************************ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 13:14:33 2001 Delivered-To: freebsd-stable@freebsd.org Received: from hobbiton.shire.net (frogmorton.shire.net [204.228.145.136]) by hub.freebsd.org (Postfix) with ESMTP id 359C937B4EC for ; Fri, 16 Feb 2001 13:14:31 -0800 (PST) Received: from [216.64.45.172] (helo=[192.168.99.123]) by hobbiton.shire.net with esmtp (Exim 2.04 #5) id 14Tlei-0007TA-00; Fri, 16 Feb 2001 07:14:40 -0700 Date: Fri, 16 Feb 2001 16:06:33 -0500 From: "Chad Leigh, Pengar Enterprises, Inc & Shire.Net LLC" Reply-To: chad@pengar.com To: Virtual Bob , FreeBSD-STABLE list Subject: Re: IBM/Cyrix 6x86 133(PR166) Message-ID: <3087049965.982339593@[192.168.99.123]> In-Reply-To: X-Mailer: Mulberry/2.0.5 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It is a 486 CPU supercharged in terms of the instruction set that it accepts. My understanding is that this processor does not implement the specific P5 instructions that were new with the Pentium. Chad --On Friday, February 16, 2001 3:03 PM -0600 Virtual Bob wrote: > I was just compiling kernel (4.x-S) on this thing and I had 586 CPU option > compiled. Boy, was I amused when the new kernel died while trying to boot > up. Rebooting with the generic kernel, I caught the message from it saying > a 486-class CPU is detected. Is that right? Or do I have to throw in some > secret switches while making the new kernel? > > ------------- clip here with virtual scissors -------------- > ************************************************************ > Keyboard stuck error. Press F1 to continue. > Any unsolicited e-mails will be charged US$500 per e-mail, > plus court cost. > Your contribution to Bill Gates' personal wealth: US$359.17 > ************************************************************ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message Pengar Enterprises, Inc. and Shire.Net LLC Web and Macintosh Consulting -- full service web hosting Chad Leigh chad@pengar.com chad@shire.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 13:38:31 2001 Delivered-To: freebsd-stable@freebsd.org Received: from myzona.net (40bc2156.dsl.flashcom.net [64.188.33.86]) by hub.freebsd.org (Postfix) with ESMTP id BA48437B503 for ; Fri, 16 Feb 2001 13:38:24 -0800 (PST) Received: from parkson [64.166.85.176] by myzona.net [64.188.33.86] with SMTP (MDaemon.v3.5.2.R) for ; Fri, 16 Feb 2001 13:31:14 -0800 Message-ID: <003b01c09860$9e700e00$00e1fea9@parkson> Reply-To: "Alex M" From: "Alex M" To: Subject: Errors in 'make world' Date: Fri, 16 Feb 2001 13:37:08 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-MDRemoteIP: 64.166.85.176 X-Return-Path: alex@myzona.net X-MDaemon-Deliver-To: freebsd-stable@freebsd.org Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I need help on updating my FreeBSD.. I have 4.1.1-RELEASE, so i ran CVSup to update to 4.2-STABLE, my cvsupfile is correct, its gets all the updates i need.... but the troube is in my next steps when im trying to 'make world' in /usr/src. Sorry I cant copy-paste the exact error here, but what it says it: No such file or directory in /openssl dir... then error code 1, stopped in /usr/src/lib/crypto.. something like that. What I tried is: doing cvsup several times compiling openssl myself, thou not sure if this is the trouble doing make world in single-user mode doing make world with -DNOCRYPTO option (thou another cc error comes up). having this headache for the fourth day... tried to get help from various #freebsd IRC channels, no use, ppl suggest me 'try from scratch' and etc... I have a 4.2 iso-image on CD and could easily install it, but i would like to defeat this damn cvsup/make world thing... Anyone experienced the same troubles or/and can help me on this one? Thanx. Regards, Alex M. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 13:42: 7 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mail.disney.com (mail.disney.com [204.128.192.15]) by hub.freebsd.org (Postfix) with ESMTP id 1EDA937B503 for ; Fri, 16 Feb 2001 13:42:05 -0800 (PST) Received: from pain10.corp.disney.com (root@pain10.corp.disney.com [153.7.110.100]) by mail.disney.com (Switch-2.0.1/Switch-2.0.1) with SMTP id f1GLfYc08346 for ; Fri, 16 Feb 2001 13:41:35 -0800 (PST) Received: from louie.fa.disney.com by pain.corp.disney.com with ESMTP for freebsd-stable@freebsd.org; Fri, 16 Feb 2001 13:42:39 -0800 Received: from mercury.fan.fa.disney.com (mercury.fan.fa.disney.com [153.7.119.1]) by louie.fa.disney.com (8.9.2/8.9.2) with ESMTP id NAA29002 for ; Fri, 16 Feb 2001 13:42:02 -0800 (PST) (envelope-from Jim.Pirzyk@disney.com) Received: from snoopy.fan.fa.disney.com by mercury.fan.fa.disney.com for freebsd-stable@freebsd.org; Fri, 16 Feb 2001 13:42:01 -0800 From: Jim Pirzyk Organization: Walt Disney Feature Animation To: freebsd-stable@freebsd.org Subject: Maya and Houdini running on FreeBSD Date: Fri, 16 Feb 2001 13:30:31 -0800 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <01021613420106.42510@snoopy.fan.fa.disney.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Has anyone been able to get Maya or Houdini (linux gui versions) running under FreeBSD? I have been able to get the associated renders working, but I am getting either a Segmentation Fault or an Illegal Instruction when I try to start them up. It faults about the initialization of the windows on the screen. - JimP -- --- @(#) $Id: dot.signature,v 1.9 2000/07/10 16:43:05 pirzyk Exp $ __o Jim.Pirzyk@disney.com ------------------------------------- _'\<,_ Senior Systems Engineer, Walt Disney Feature Animation (*)/ (*) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 14:24:19 2001 Delivered-To: freebsd-stable@freebsd.org Received: from relay2.inwind.it (relay2.inwind.it [212.141.53.73]) by hub.freebsd.org (Postfix) with ESMTP id 94A0637B401 for ; Fri, 16 Feb 2001 14:24:12 -0800 (PST) Received: from [62.98.57.36] (62.98.57.36) by relay2.inwind.it (5.1.056) id 3A4739BB000CD914 for freebsd-stable@freebsd.org; Fri, 16 Feb 2001 23:24:09 +0100 Received: (qmail 1890 invoked by uid 1001); 16 Feb 2001 22:24:06 -0000 Date: Fri, 16 Feb 2001 23:24:06 +0100 From: Francesco Casadei To: Virtual Bob Cc: FreeBSD-STABLE list Subject: Re: IBM/Cyrix 6x86 133(PR166) Message-ID: <20010216232406.A1836@junior.kasby> Mail-Followup-To: Virtual Bob , FreeBSD-STABLE list References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from hey9811@yahoo.com on Fri, Feb 16, 2001 at 03:03:02PM -0600 X-Operating-System: FreeBSD 3.5-STABLE i386 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 16, 2001 at 03:03:02PM -0600, Virtual Bob wrote: > I was just compiling kernel (4.x-S) on this thing and I had 586 CPU option > compiled. Boy, was I amused when the new kernel died while trying to boot > up. Rebooting with the generic kernel, I caught the message from it saying > a 486-class CPU is detected. Is that right? Or do I have to throw in some > secret switches while making the new kernel? >=20 > ------------- clip here with virtual scissors -------------- > ************************************************************ > Keyboard stuck error. Press F1 to continue. > Any unsolicited e-mails will be charged US$500 per e-mail, > plus court cost. > Your contribution to Bill Gates' personal wealth: US$359.17 > ************************************************************ >=20 >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message >=20 > end of the original message The PC I'm using is a Cyrix 6x86L PR-200+ and the kernel is compiled with the following options (for maximum performance): cpu "I486_CPU" options "CPU_BLUELIGHTNING_FPU_OP_CACHE" options "CPU_BLUELIGHTNING_3X" options "CPU_BTB_EN" options "CPU_FASTER_5X86_FPU" options "CPU_IORT" options "CPU_LOOP_EN" options "CPU_SUSP_HLT" options "CPU_WT_ALLOC" options "CYRIX_CACHE_REALLY_WORKS" options "NO_F00F_HACK" This is for FreeBSD 3.5-STABLE. If you're using 4.2-STABLE you may omit the "" around the options, you may also have to check LINT to see if the options are still valid. Francesco Casadei --=20 You can download my public key from http://digilander.iol.it/fcasadei/ or retrieve it from a keyserver (pgpkeys.mit.edu, wwwkeys.pgp.net, ...) Key fingerprint is: 1671 9A23 ACB4 520A E7EE 00B0 7EC3 375F 164E B17B --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6jaiGfsM3XxZOsXsRAtwfAKDKYqkSq2FFj3kJlxQAoSDMitlouACg5Pd5 IfDEhlRV06SIAHH+qWRaaJw= =r83W -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 14:53:17 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smashpow.net (mail.smashpow.net [216.126.80.183]) by hub.freebsd.org (Postfix) with ESMTP id 9344037B401 for ; Fri, 16 Feb 2001 14:53:14 -0800 (PST) Received: from mail.smashpow.net([216.126.80.183]) (1323 bytes) by smashpow.net via smail with P:esmtp/R:bind_hosts/T:inet_zone_bind_smtp (sender: ) id for ; Fri, 16 Feb 2001 17:52:45 -0500 (EST) (Smail-3.2.0.111 2000-Feb-17 #1 built 2000-Jul-5) Date: Fri, 16 Feb 2001 17:52:43 -0500 (EST) From: Agent Drek To: Jim Pirzyk Cc: freebsd-stable@freebsd.org Subject: Re: Maya and Houdini running on FreeBSD In-Reply-To: <01021613420106.42510@snoopy.fan.fa.disney.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 16 Feb 2001, Jim Pirzyk wrote: > Has anyone been able to get Maya or Houdini (linux gui versions) running > under FreeBSD? I have been able to get the associated renders working, > but I am getting either a Segmentation Fault or an Illegal Instruction > when I try to start them up. It faults about the initialization of the windows > on the screen. > > - JimP > > I was able to make hscript *almost* work. renderman works great. but I suspect with houdini that you are getting caught up by the license manager code, in some weird way. I just bite the bullet and use linux for workstations and renderfarm ... FreeBSD holds the disk. good luck. -- Derek Marshall Smash and Pow Inc > 'digital plumber' http://www.smashpow.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 15:10:33 2001 Delivered-To: freebsd-stable@freebsd.org Received: from toto.jofa.co.uk (toto.jofa.co.uk [194.242.136.146]) by hub.freebsd.org (Postfix) with ESMTP id A827D37B491 for ; Fri, 16 Feb 2001 15:10:27 -0800 (PST) Received: from surf.org.uk (async193-15.nas.onetel.net.uk [212.67.111.193]) by toto.jofa.co.uk (Postfix) with ESMTP id A8CB6D307; Fri, 16 Feb 2001 23:10:23 +0000 (GMT) Message-ID: <3A8D0ABD.C16AF8F3@surf.org.uk> Date: Fri, 16 Feb 2001 11:10:53 +0000 From: Simon Loader Reply-To: simon@surf.org.uk X-Mailer: Mozilla 4.61 [en] (X11; I; Linux 2.2.10 i586) X-Accept-Language: en MIME-Version: 1.0 To: Alex M Cc: freebsd-stable@freebsd.org Subject: Re: Errors in 'make world' References: <003b01c09860$9e700e00$00e1fea9@parkson> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alex M wrote: > > I need help on updating my FreeBSD.. > I have 4.1.1-RELEASE, so i ran CVSup to update to 4.2-STABLE, my cvsupfile > is correct, its gets all the updates i need.... but the troube is in my next > steps when im trying to 'make world' in /usr/src. Sorry I cant copy-paste > the exact error here, but what it says it: No such file or directory in > /openssl dir... then error code 1, stopped in /usr/src/lib/crypto.. > something like that. What I tried is: > doing cvsup several times > compiling openssl myself, thou not sure if this is the trouble > doing make world in single-user mode > doing make world with -DNOCRYPTO option (thou another cc error comes up). > what is your supfile ? you could mess with /etc/make.conf ( see /etc/defaults/make.conf ) and switch of openssl my guess is your are not supping down src-cypto and src-secure. -- Simon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 15:23:20 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-49.dsl.lsan03.pacbell.net [64.165.226.49]) by hub.freebsd.org (Postfix) with ESMTP id 338EB37B4EC for ; Fri, 16 Feb 2001 15:23:18 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 3DDA066F2F; Fri, 16 Feb 2001 15:23:17 -0800 (PST) Date: Fri, 16 Feb 2001 15:23:17 -0800 From: Kris Kennaway To: Stephen Montgomery-Smith Cc: Randy Bush , FreeBSD Stable Subject: Re: openssh not setting DISPLAY Message-ID: <20010216152317.A97818@mollari.cthul.hu> References: <3A8D8088.164E99D3@math.missouri.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8D8088.164E99D3@math.missouri.edu>; from stephen@math.missouri.edu on Fri, Feb 16, 2001 at 01:33:28PM -0600 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 16, 2001 at 01:33:28PM -0600, Stephen Montgomery-Smith wrote: > I had the same problem. I fixed it by putting > ForwardX11 yes > in /etc/ssh_config (I am assuming that here you are showing > sshd_config). >=20 > (Somehow I think ForwardX11 yes should be the default, but > it seems not to be.) It's not the default because it allows the remote system to snoop your X display, and that's not something you might want so we default to being secure. Kris --2oS5YaxWCcQjTEyO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6jbZkWry0BWjoQKURAj5gAJ4pxrUICdBP5ovcs6cqxyfshsbR+gCdGR8m mHnzm0v4757G9Ldfms04feA= =o4k3 -----END PGP SIGNATURE----- --2oS5YaxWCcQjTEyO-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 15:24:37 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-49.dsl.lsan03.pacbell.net [64.165.226.49]) by hub.freebsd.org (Postfix) with ESMTP id 9FAC937B401 for ; Fri, 16 Feb 2001 15:24:34 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 0DC7E66F29; Fri, 16 Feb 2001 15:24:34 -0800 (PST) Date: Fri, 16 Feb 2001 15:24:33 -0800 From: Kris Kennaway To: Christopher Schulte Cc: freebsd-stable@FreeBSD.ORG Subject: Re: cvsup: enough to rebuild binaries/libs/etc, per security advisories? Message-ID: <20010216152433.B97818@mollari.cthul.hu> References: <5.0.2.1.2.20010216141741.0296a9b0@pop.schulte.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="LpQ9ahxlCli8rRTG" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5.0.2.1.2.20010216141741.0296a9b0@pop.schulte.org>; from christopher@schulte.org on Fri, Feb 16, 2001 at 03:03:08PM -0600 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --LpQ9ahxlCli8rRTG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 16, 2001 at 03:03:08PM -0600, Christopher Schulte wrote: > System: 4.2-Release. >=20 > I have a cron that uses cvsup to pull the stable source tree nightly. >=20 > When an advisory comes out (such as the recent Kerberos IV), I just rebui= ld=20 > the appropriate components: >=20 > # cd /usr/src/kerberosIV > # make depend && make all install > # cd /usr/src/libexec/telnetd > # make depend && make all install >=20 > Since I have updated sources, these builds should be adequate, correct? Yes. The patches included in security advisories are extracted from the CVS repository and will be present if you cvsup. Kris --LpQ9ahxlCli8rRTG Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6jbaxWry0BWjoQKURAjuIAJ9ntRezqM+IbmcrNtadqtSHjwXOaACfUpzG c+SHUefD++uGj8eGGTOiX7c= =9q+B -----END PGP SIGNATURE----- --LpQ9ahxlCli8rRTG-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 15:33: 3 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ece.cmu.edu (ECE.CMU.EDU [128.2.236.200]) by hub.freebsd.org (Postfix) with ESMTP id 35C6437B401 for ; Fri, 16 Feb 2001 15:32:58 -0800 (PST) Received: from pyanfar.ece.cmu.edu (cx888b@PYANFAR.REM.CMU.EDU [128.2.87.225]) by ece.cmu.edu (8.11.0/8.10.2) with ESMTP id f1GNVx915150; Fri, 16 Feb 2001 18:32:00 -0500 (EST) Date: Fri, 16 Feb 2001 18:31:59 -0500 From: "Brandon S. Allbery KF8NH" To: Kris Kennaway , Stephen Montgomery-Smith Cc: Randy Bush , FreeBSD Stable Subject: Re: openssh not setting DISPLAY Message-ID: <33610000.982366319@pyanfar.ece.cmu.edu> In-Reply-To: <20010216152317.A97818@mollari.cthul.hu> X-Mailer: Mulberry/2.0.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Friday, February 16, 2001 15:23:17 -0800, Kris Kennaway = wrote: +----- | It's not the default because it allows the remote system to snoop your | X display, and that's not something you might want so we default to | being secure. +--->8 That's interesting, since the sshd manpage from openssh says: Note that disabling X11 forwarding does not improve secu=AD rity in any way, as users can always install their own for=AD warders. -- = brandon s. allbery [os/2][linux][solaris][japh] allbery@kf8nh.apk.net system administrator [WAY too many hats] allbery@ece.cmu.edu electrical and computer engineering KF8NH carnegie mellon university ["better check the oblivious first" -ke6sls] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 15:34:19 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-49.dsl.lsan03.pacbell.net [64.165.226.49]) by hub.freebsd.org (Postfix) with ESMTP id 1909437B401 for ; Fri, 16 Feb 2001 15:34:17 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 84FA566F2F; Fri, 16 Feb 2001 15:34:15 -0800 (PST) Date: Fri, 16 Feb 2001 15:34:15 -0800 From: Kris Kennaway To: "Brandon S. Allbery KF8NH" Cc: Kris Kennaway , Stephen Montgomery-Smith , Randy Bush , FreeBSD Stable Subject: Re: openssh not setting DISPLAY Message-ID: <20010216153415.A98116@mollari.cthul.hu> References: <20010216152317.A97818@mollari.cthul.hu> <33610000.982366319@pyanfar.ece.cmu.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="7JfCtLOvnd9MIVvH" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <33610000.982366319@pyanfar.ece.cmu.edu>; from allbery@ece.cmu.edu on Fri, Feb 16, 2001 at 06:31:59PM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --7JfCtLOvnd9MIVvH Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 16, 2001 at 06:31:59PM -0500, Brandon S. Allbery KF8NH wrote: > On Friday, February 16, 2001 15:23:17 -0800, Kris Kennaway wrote: > +----- > | It's not the default because it allows the remote system to snoop your > | X display, and that's not something you might want so we default to > | being secure. > +--->8 >=20 > That's interesting, since the sshd manpage from openssh says: >=20 > Note that disabling X11 forwarding does not improve secu=AD > rity in any way, as users can always install their own for=AD > warders. Yes, users are free to weaken the security of their session if they wish, but it's not done by default. Kris --7JfCtLOvnd9MIVvH Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6jbj3Wry0BWjoQKURAnMcAJ4m2mFfHCvEKZwpsY+qUdbbJw7YRQCg3YcI avUgseyZPTn9kwUcpdLuNFg= =C/wA -----END PGP SIGNATURE----- --7JfCtLOvnd9MIVvH-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 15:35:59 2001 Delivered-To: freebsd-stable@freebsd.org Received: from moek.pir.net (moek.pir.net [130.64.1.215]) by hub.freebsd.org (Postfix) with ESMTP id E4E9C37B491 for ; Fri, 16 Feb 2001 15:35:56 -0800 (PST) Received: from pir by moek.pir.net with local (Exim) id 14TuPr-0004ZE-00 for freebsd-stable@FreeBSD.ORG; Fri, 16 Feb 2001 18:35:55 -0500 Date: Fri, 16 Feb 2001 18:35:55 -0500 From: Peter Radcliffe To: FreeBSD Stable Subject: Re: openssh not setting DISPLAY Message-ID: <20010216183555.K9583@pir.net> Reply-To: stable@freebsd.org Mail-Followup-To: FreeBSD Stable References: <20010216152317.A97818@mollari.cthul.hu> <33610000.982366319@pyanfar.ece.cmu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <33610000.982366319@pyanfar.ece.cmu.edu>; from allbery@ece.cmu.edu on Fri, Feb 16, 2001 at 06:31:59PM -0500 X-fish: < X-Copy-On-Listmail: Please do NOT Cc: me on list mail. Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Brandon S. Allbery KF8NH" probably said: > That's interesting, since the sshd manpage from openssh says: > > Note that disabling X11 forwarding does not improve secu­ > rity in any way, as users can always install their own for­ > warders. That is talking about the whole system security for, say, a multiuser system. If the sysadmin disables X11 forwarding then a user can do their own forwarding, but they have to _deliberately_ turn it on. So they are both true, but they're talking about different situations. P. -- pir pir@pir.net pir@net.tufts.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 15:58:38 2001 Delivered-To: freebsd-stable@freebsd.org Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by hub.freebsd.org (Postfix) with ESMTP id 00A6137B67D for ; Fri, 16 Feb 2001 15:58:36 -0800 (PST) Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.11.0/8.11.0) id f1GNwLE07597; Fri, 16 Feb 2001 15:58:21 -0800 Date: Fri, 16 Feb 2001 15:58:21 -0800 From: Brooks Davis To: "Brandon S. Allbery KF8NH" Cc: freebsd-stable@FreeBSD.ORG Subject: Re: openssh not setting DISPLAY Message-ID: <20010216155821.A6697@Odin.AC.HMC.Edu> References: <20010216152317.A97818@mollari.cthul.hu> <33610000.982366319@pyanfar.ece.cmu.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <33610000.982366319@pyanfar.ece.cmu.edu>; from allbery@ece.cmu.edu on Fri, Feb 16, 2001 at 06:31:59PM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 16, 2001 at 06:31:59PM -0500, Brandon S. Allbery KF8NH wrote: > On Friday, February 16, 2001 15:23:17 -0800, Kris Kennaway wrote: > +----- > | It's not the default because it allows the remote system to snoop your > | X display, and that's not something you might want so we default to > | being secure. > +--->8 >=20 > That's interesting, since the sshd manpage from openssh says: >=20 > Note that disabling X11 forwarding does not improve secu=AD > rity in any way, as users can always install their own for=AD > warders. There are two different programs with two different defaults. sshd defaults to enabling X11 forwarding because it does not decrease the security of the server, it just annoys the users. In the other hand I believe ssh (the client) defaults to disabling it because it gives root on any host you connect to with forwarding enabled the ability to launch arbitrary applications on your X server which is a security risk if you don't trust the server. The issues are entierly unrelated between the client and the server. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --h31gzZEtNLTqOjlF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE6jb6cXY6L6fI4GtQRAtW+AJ9tB273bSj1eCD7S+oF8KPSFGnkjACfQgBj rQ9yPVrTBhxHuRTDb7VlYjw= =h/Cy -----END PGP SIGNATURE----- --h31gzZEtNLTqOjlF-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 16:18:36 2001 Delivered-To: freebsd-stable@freebsd.org Received: from omahpop1.omah.uswest.net (omahpop1.omah.uswest.net [204.26.64.1]) by hub.freebsd.org (Postfix) with SMTP id 3767B37B4EC for ; Fri, 16 Feb 2001 16:18:34 -0800 (PST) Received: (qmail 37408 invoked by alias); 17 Feb 2001 00:18:33 -0000 Delivered-To: fixup-freebsd-stable@freebsd.org@fixme Received: (qmail 37401 invoked by uid 0); 17 Feb 2001 00:18:32 -0000 Received: from omah6400gw2poolb61.omah.uswest.net (HELO kristen.shadowdale.net) (63.227.157.61) by omahpop1.omah.uswest.net with SMTP; 17 Feb 2001 00:18:32 -0000 Date: Fri, 16 Feb 2001 18:18:32 -0600 (CST) From: Virtual Bob Cc: FreeBSD-STABLE list Subject: Re: IBM/Cyrix 6x86 133(PR166) In-Reply-To: <3087049965.982339593@[192.168.99.123]> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > It is a 486 CPU supercharged in terms of the instruction set that it > accepts. My understanding is that this processor does not implement the > specific P5 instructions that were new with the Pentium. Dang. I didn't know that. I just assumed if it sits in i586-class motherboard, then it's 586-class-ish. How about AMD K5 or K6? ------------- clip here with virtual scissors -------------- ************************************************************ Keyboard stuck error. Press F1 to continue. Any unsolicited e-mails will be charged US$500 per e-mail, plus court cost. Your contribution to Bill Gates' personal wealth: US$359.17 ************************************************************ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 16:21:55 2001 Delivered-To: freebsd-stable@freebsd.org Received: from omahpop1.omah.uswest.net (omahpop1.omah.uswest.net [204.26.64.1]) by hub.freebsd.org (Postfix) with SMTP id 4448037B401 for ; Fri, 16 Feb 2001 16:21:52 -0800 (PST) Received: (qmail 37638 invoked by alias); 17 Feb 2001 00:21:51 -0000 Delivered-To: fixup-freebsd-stable@freebsd.org@fixme Received: (qmail 37633 invoked by uid 0); 17 Feb 2001 00:21:51 -0000 Received: from omah6400gw2poolb61.omah.uswest.net (HELO kristen.shadowdale.net) (63.227.157.61) by omahpop1.omah.uswest.net with SMTP; 17 Feb 2001 00:21:51 -0000 Date: Fri, 16 Feb 2001 18:21:51 -0600 (CST) From: Virtual Bob Cc: FreeBSD-STABLE list Subject: Re: IBM/Cyrix 6x86 133(PR166) In-Reply-To: <3087049965.982339593@[192.168.99.123]> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG By the way, is it possible to compile for one machine with another machine? I tried to compile on my quickest machine and transfer /usr/obj tree to the target (slow) machine. The make installworld sure complained a lot. Did I miss anything else other than /usr/obj? ------------- clip here with virtual scissors -------------- ************************************************************ Keyboard stuck error. Press F1 to continue. Any unsolicited e-mails will be charged US$500 per e-mail, plus court cost. Your contribution to Bill Gates' personal wealth: US$359.17 ************************************************************ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 16:22:40 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mile.nevermind.kiev.ua (ppp-156.nav.kiev.ua [213.169.65.156]) by hub.freebsd.org (Postfix) with ESMTP id B4B1937B4EC for ; Fri, 16 Feb 2001 16:22:31 -0800 (PST) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.11.2/8.11.2) id f1H0MEu02010; Sat, 17 Feb 2001 02:22:15 +0200 (EET) (envelope-from never) Date: Sat, 17 Feb 2001 02:22:13 +0200 From: Nevermind To: Virtual Bob Cc: FreeBSD-STABLE list Subject: Re: IBM/Cyrix 6x86 133(PR166) Message-ID: <20010217022213.B976@nevermind.kiev.ua> References: <3087049965.982339593@[192.168.99.123]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from hey9811@yahoo.com on Fri, Feb 16, 2001 at 06:18:32PM -0600 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Virtual Bob! On Fri, Feb 16, 2001 at 06:18:32PM -0600, you wrote: > > It is a 486 CPU supercharged in terms of the instruction set that it > > accepts. My understanding is that this processor does not implement the > > specific P5 instructions that were new with the Pentium. > > Dang. I didn't know that. I just assumed if it sits in i586-class > motherboard, then it's 586-class-ish. > > How about AMD K5 or K6? I'm running AMD K5/PR133 100MHz stone.... it is 586-class cpu And it have some features in kernel (just noted it looking throug LINT) -- NEVE-RIPE The instructions said to install Windows 98 or better, so I installed FreeBSD. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 16:31: 3 2001 Delivered-To: freebsd-stable@freebsd.org Received: from whistle.com (s205m131.whistle.com [207.76.205.131]) by hub.freebsd.org (Postfix) with ESMTP id 058B237B491 for ; Fri, 16 Feb 2001 16:31:00 -0800 (PST) Received: (from smap@localhost) by whistle.com (8.10.0/8.10.0) id f1H0V0M09205; Fri, 16 Feb 2001 16:31:00 -0800 (PST) Received: from pau-amma.whistle.com( 207.76.205.64) by whistle.com via smap (V2.0) id xma009202; Fri, 16 Feb 2001 16:30:32 -0800 Received: (from dhw@localhost) by pau-amma.whistle.com (8.11.1/8.11.1) id f1H0UWs72021; Fri, 16 Feb 2001 16:30:32 -0800 (PST) Date: Fri, 16 Feb 2001 16:30:32 -0800 (PST) From: David Wolfskill Message-Id: <200102170030.f1H0UWs72021@pau-amma.whistle.com> To: hey9811@yahoo.com Subject: Re: IBM/Cyrix 6x86 133(PR166) Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >Date: Fri, 16 Feb 2001 18:21:51 -0600 (CST) >From: Virtual Bob >By the way, is it possible to compile for one machine with another >machine? Works for me -- I build stuff on one of the Intellistations, and after it's back up & running, I'll export its /usr, then mount its /usr/{obj,src} on the corresponding mount points on another box (another Intellistation, a non-name PC, or one of the laptops, for example) and then do the "make installkernel", "make installworld", & "mergemaster" on the target machine. I make sure that /etc/make.conf is compatible first (usually, a copy), and I build several kernels on the Intellistation -- one for each different kernel config I intend to install on a machine. >I tried to compile on my quickest machine and transfer /usr/obj >tree to the target (slow) machine. The make installworld sure complained a >lot. Did I miss anything else other than /usr/obj? Sounds as if you did *some*thing odd, but I can't tell what. The NFS mounting has worked for me. Cheers, david -- David Wolfskill dhw@whistle.com UNIX System Administrator Desk: 650/577-7158 TIE: 8/499-7158 Cell: 650/759-0823 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 17:13: 4 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by hub.freebsd.org (Postfix) with ESMTP id 9274E37B4EC for ; Fri, 16 Feb 2001 17:13:02 -0800 (PST) Received: from randy by rip.psg.com with local (Exim 3.16 #1) id 14Tvvq-0000GX-00 for freebsd-stable@freebsd.org; Fri, 16 Feb 2001 17:13:02 -0800 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: FreeBSD Stable Subject: kernel build failure in src/sys/netinet/in_rmx.c Message-Id: Date: Fri, 16 Feb 2001 17:13:02 -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -stable of a few hours ago did a buildworld went to make the kernel and cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/../include -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 /usr/src/sys/netinet/in_proto.c /usr/src/sys/netinet/in_proto.c:163: warning: initialization from incompatible pointer type cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/../include -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 /usr/src/sys/netinet/in_rmx.c /usr/src/sys/netinet/in_rmx.c: In function `in_addroute': /usr/src/sys/netinet/in_rmx.c:104: structure has no member named `sin' /usr/src/sys/netinet/in_rmx.c:104: `addr' undeclared (first use in this function) /usr/src/sys/netinet/in_rmx.c:104: (Each undeclared identifier is reported only once /usr/src/sys/netinet/in_rmx.c:104: for each function it appears in.) /usr/src/sys/netinet/in_rmx.c:105: syntax error before `)' *** Error code 1 am going to start a whole re-sup now, i guess randy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 17:20:18 2001 Delivered-To: freebsd-stable@freebsd.org Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id 1545937B503 for ; Fri, 16 Feb 2001 17:20:16 -0800 (PST) Received: (qmail 71720 invoked by uid 100); 17 Feb 2001 01:20:15 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14989.53710.974752.130400@guru.mired.org> Date: Fri, 16 Feb 2001 19:20:14 -0600 To: David Wolfskill Cc: hey9811@yahoo.com, freebsd-stable@FreeBSD.ORG Subject: Re: IBM/Cyrix 6x86 133(PR166) In-Reply-To: <200102170030.f1H0UWs72021@pau-amma.whistle.com> References: <200102170030.f1H0UWs72021@pau-amma.whistle.com> X-Mailer: VM 6.89 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David Wolfskill types: > >By the way, is it possible to compile for one machine with another > >machine? > Works for me -- I build stuff on one of the Intellistations, and after > it's back up & running, I'll export its /usr, then mount its > /usr/{obj,src} on the corresponding mount points on another box (another > Intellistation, a non-name PC, or one of the laptops, for example) and > then do the "make installkernel", "make installworld", & "mergemaster" on > the target machine. Just to provide a different viewpoint, I do it the opposite way. I do a buildworld & buildkernel on my workstation (which is a nice, fast box), then do the installation tango on a K6-2 test box that mounts /usr/src and the file system that /usr/obj is a symlink to. If the test box boots and everything works fine, I'll then go back to my workstation, and go through the installation tango with it as well. 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-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 17:46:18 2001 Delivered-To: freebsd-stable@freebsd.org Received: from femail6.sdc1.sfba.home.com (femail6.sdc1.sfba.home.com [24.0.95.86]) by hub.freebsd.org (Postfix) with ESMTP id 534EA37B491 for ; Fri, 16 Feb 2001 17:46:12 -0800 (PST) Received: from math.missouri.edu ([24.12.197.197]) by femail6.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20010217014611.MKY26098.femail6.sdc1.sfba.home.com@math.missouri.edu>; Fri, 16 Feb 2001 17:46:11 -0800 Message-ID: <3A8DD7E2.E822D313@math.missouri.edu> Date: Fri, 16 Feb 2001 19:46:10 -0600 From: Stephen Montgomery-Smith X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Kris Kennaway Cc: Randy Bush , FreeBSD Stable Subject: Re: openssh not setting DISPLAY References: <3A8D8088.164E99D3@math.missouri.edu> <20010216152317.A97818@mollari.cthul.hu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Kris Kennaway wrote: > > > (Somehow I think ForwardX11 yes should be the default, but > > it seems not to be.) > > It's not the default because it allows the remote system to snoop your > X display, and that's not something you might want so we default to > being secure. > In that case the default ssh_config is a bit misleading - it says # This is ssh client systemwide configuration file. This file provides # defaults for users, and the values can be changed in per-user configuration # files or on the command line. ... # ForwardX11 yes giving the impression that the default is ForwardX11 yes Maybe I am reasing it wrong. -- Stephen Montgomery-Smith stephen@math.missouri.edu http://www.math.missouri.edu/~stephen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 18:20:24 2001 Delivered-To: freebsd-stable@freebsd.org Received: from boromir.vpop.net (boromir.vpop.net [206.117.147.2]) by hub.freebsd.org (Postfix) with ESMTP id ADECC37B4EC for ; Fri, 16 Feb 2001 18:20:21 -0800 (PST) Received: from vpop.net ([209.102.16.48]) by boromir.vpop.net (8.11.2/8.11.2) with ESMTP id f1H2KIR44273; Fri, 16 Feb 2001 18:20:18 -0800 (PST) (envelope-from mreimer@vpop.net) Message-ID: <3A8DDFEB.8F50171D@vpop.net> Date: Fri, 16 Feb 2001 18:20:27 -0800 From: Matthew Reimer Organization: VPOP Technologies, Inc. X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Jeffrey Sewell , freebsd-stable@freebsd.org Subject: Re: Urgent; stable problem on Intel MB References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Justin Gibbs just fixed a bug that sounds like this one. Cvsup to get this fix > gibbs 2001/02/16 17:53:59 PST > > Modified files: (Branch: RELENG_4) > sys/dev/aic7xxx aic7xxx_freebsd.c > Log: > MFC: Only honor the CHANNEL_B_PRIMARY flag for twin channel devices. > > Revision Changes Path > 1.3.2.15 +5 -3 src/sys/dev/aic7xxx/aic7xxx_freebsd.c Matt Jeffrey Sewell wrote: > > I have cvsup'd daily since Feb1 and recompiled. I cannot get a successful > boot out of any kernel. GENERIC, MYKERNEL, anything. > Mergemaster has been done. > > I have 2 different servers.. one ASUS, one Intel 440bx. Asus builds and > boots fine, however the Intel gets 'Fatal trap 12 caught while in kernel > mode'. Seeing how another Intel user had the same problem it must be an > issue. > > Could someone please advise? I have backups and I am currently booting from > kernel.backup (thank the good man above). > > I really wish I could have a successful boot :( > > Jeff. > _________________________________________________________________________ > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 18:22: 0 2001 Delivered-To: freebsd-stable@freebsd.org Received: from boromir.vpop.net (boromir.vpop.net [206.117.147.2]) by hub.freebsd.org (Postfix) with ESMTP id AF39237B4EC for ; Fri, 16 Feb 2001 18:21:53 -0800 (PST) Received: from vpop.net ([209.102.16.48]) by boromir.vpop.net (8.11.2/8.11.2) with ESMTP id f1H2LnR44312; Fri, 16 Feb 2001 18:21:49 -0800 (PST) (envelope-from mreimer@vpop.net) Message-ID: <3A8DE046.1F64D37D@vpop.net> Date: Fri, 16 Feb 2001 18:21:58 -0800 From: Matthew Reimer Organization: VPOP Technologies, Inc. X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Re: Reproducible kernel panic during boot; probably SCSI-related References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Justin Gibbs just committed a fix for this problem: > gibbs 2001/02/16 17:53:59 PST > > Modified files: (Branch: RELENG_4) > sys/dev/aic7xxx aic7xxx_freebsd.c > Log: > MFC: Only honor the CHANNEL_B_PRIMARY flag for twin channel devices. > > Revision Changes Path > 1.3.2.15 +5 -3 src/sys/dev/aic7xxx/aic7xxx_freebsd.c Thanks to you who replied to my inquiry. Matt Matthew Reimer wrote: > > We've had a reproducible problem today with 4.2-STABLE from between > 2001/02/13 1500 PST to 2001/02/14 1500 PST, where the kernel would print > the message "Waiting 2 seconds for SCSI devices to settle" and then > panic (details below). This would happen every time. I rebuilt the > kernel several times to make sure there were no stale dependencies but > every time it panicked the same way. Eventually I cvsup'd /sys sources > from 2001/02/10 and the problem went away. I presume the problem is > still in -stable. > > I wasn't able to get a dump because *dumpdev = 0xffffffff. (Does anyone > know how to get dumpdev set properly this early in the boot process? In > -current one could use "show /disk/da0s1b" but we don't have that in > -stable.) > > This is running on an L440GX mobo with one extra 2940 controller, for a > total of three. > > Any ideas? > > Matt > > Fatal trap 12: page fault while in kernel mode > fault virtual address = 0x123 > fault code = supervisor read, page not present > instruction pointer = 0x8:0xc013a2b8 > stack pointer = 0x10:0xc03aea88 > frame pointer = 0x10:0xc03aeab4 > code segment = base 0x0, limit 0xfffff, type 0x1b > = DPL 0, pres 1, def32 1, gran 1 > processor eflags = interrupt enabled, resume, IOPL = 0 > current process = 0 (swapper) > interrupt mask = cam > kernel: type 12 trap, code=0 > Stopped at ahc_get_tran_settings+0xbc: movzbl 0x3(%esi),%eax > > db> trace > ahc_get_tran_settings(c163fa00,0,42,c03aeb84) at > ahc_get_tran_settings+0xbc > ahc_action(c163d740,c03aeb84) at ahc_action+0x636 > xpt_action(c03aeb84,c03aeb84,c0a34240,1,c03aec10) at xpt_action+0x376 > proberequestdefaultnegotiation(c16c2a00,c16c501c,c16c2a00,1,1) at > proberequestdefaultnegotiation+0x2c > probeschedule(c16c2a00,c16c2a00,c163d718,7d0,c16c2a00) at > probeschedule+0x6d > proberegister(c16c2a00,c16c5000,6c0000,c03aed60,c16c5000) at > proberegister+0x7c > cam_periph_alloc(c0122078,0,c01228e4,c01221cc,c02359d8) at > cam_periph_alloc+0x1e2 > xpt_scan_lun(c1640c00,c0a34260,10003201,c16c5000) at xpt_scan_lun+0x1c5 > xpt_action(c16c5000,c16c5000,c0a34260,1) at xpt_action+0x946 > xpt_scan_bus(c1640c00,c16c5800) at xpt_scan_bus+0x123 > xpt_action(c16c5800,c16c5800,c163d700,c011f8a4,c03aef28) at > xpt_action+0x92c > xpt_finishconfig(c1640c00,c16c5800,c163d380,c03aef68,c0a34280) at > xpt_finishconfig+0x30 > xptconfigfunc(c163d700,0,c03aef54,c011f723,c163d700) at > xptconfigfunc+0xfb > xptdefbusfunc(c163d700,c03aef68) at xptdefbusfunc+0x29 > xptbustraverse(0,c011f8a4,c03aef68,0,c0122d70) at xptbustraverse+0x2b > xpt_for_all_busses(c0122d70,0,c03aef94,c0160f9e,0) at > xpt_for_all_busses+0x29 > xpt_config(0) at xpt_config+0x50 > run_interrupt_driven_config_hooks(0,3acc00,3b3000,0,c011d414) at > run_interrupt_driven_config_hooks+0x1a > mi_startup(c03aefb4,b0202,ffe,3b3000,c0166da5) at mi_startup+0x70 > begin() at begin+0x4b > > --- dmesg of a working kernel from 2001.02.10.00.00.00 > > FreeBSD 4.2-STABLE #4: Wed Feb 14 17:06:26 PST 2001 > mreimer@thorin.vpop.net:/usr/obj/usr/src/sys/RING > Timecounter "i8254" frequency 1193182 Hz > Timecounter "TSC" frequency 547179703 Hz > CPU: Pentium III/Pentium III Xeon/Celeron (547.18-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x673 Stepping = 3 > > Features=0x387fbff OV,PAT,PSE36,PN,MMX,FXSR,SSE> > real memory = 268369920 (262080K bytes) > avail memory = 257646592 (251608K bytes) > Preloaded elf kernel "kernel" at 0xc038d000. > Pentium Pro MTRR support enabled > npx0: on motherboard > npx0: INT 16 interface > pcib0: on motherboard > pci0: on pcib0 > pcib2: at device 1.0 on > pci0 > pci1: on pcib2 > pcib3: at device 15.0 on > pci1 > pci2: on pcib3 > ahc0: port 0x1400-0x14ff mem > 0xf4100000 > -0xf4100fff irq 11 at device 12.0 on pci0 > aic7896/97: Wide Channel A, SCSI Id=7, 32/255 SCBs > ahc1: port 0x1800-0x18ff mem > 0xf4101000 > -0xf4101fff irq 11 at device 12.1 on pci0 > aic7896/97: Wide Channel B, SCSI Id=7, 32/255 SCBs > fxp0: port 0x1080-0x10bf mem > 0xf4000000-0xf40f > ffff,0xf4102000-0xf4102fff irq 10 at device 14.0 on pci0 > fxp0: Ethernet address 00:a0:c9:fb:26:e6 > ahc2: port 0x2000-0x20ff mem > 0xf4103000-0xf4103fff i > rq 5 at device 16.0 on pci0 > aic7870: Wide Channel A, SCSI Id=7, 16/255 SCBs > isab0: at device 18.0 on pci0 > isa0: on isab0 > pci0: at 18.1 > pci0: at 18.2 irq 10 > chip1: port 0x1040-0x104f at > device > 18.3 on pci0 > pci0: at 20.0 > pcib1: on motherboard > pci3: on pcib1 > fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on > isa0 > fdc0: FIFO enabled, 8 bytes threshold > fd0: <1440-KB 3.5" drive> on fdc0 drive 0 > atkbdc0: at port 0x60,0x64 on isa0 > atkbd0: irq 1 on atkbdc0 > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on > isa0 > sc0: on isa0 > sc0: VGA <16 virtual consoles, flags=0x0> > sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 > sio0: type 16550A, console > sio1: configured irq 3 not in bitmap of probed irqs 0 > IP packet filtering initialized, divert disabled, rule-based forwarding > enabled, > default to deny, logging disabled > Waiting 2 seconds for SCSI devices to settle > sa0 at ahc2 bus 0 target 0 lun 0 > sa0: Removable Sequential Access SCSI-2 device > sa0: 10.000MB/s transfers (10.000MHz, offset 15) > da1 at ahc0 bus 0 target 1 lun 0 > da1: Fixed Direct Access SCSI-3 device > da1: 40.000MB/s transfers (20.000MHz, offset 31, 16bit), Tagged Queueing > Enabled > da1: 35003MB (71687340 512 byte sectors: 255H 63S/T 4462C) > da0 at ahc0 bus 0 target 0 lun 0 > da0: Fixed Direct Access SCSI-3 device > da0: 40.000MB/s transfers (20.000MHz, offset 31, 16bit), Tagged Queueing > Enabled > da0: 8748MB (17916240 512 byte sectors: 255H 63S/T 1115C) > ch0 at ahc2 bus 0 target 1 lun 0 > ch0: Removable Changer SCSI-2 device > ch0: 3.300MB/s transfers > ch0: 8 slots, 1 drive, 1 picker, 0 portals > da2 at ahc1 bus 0 target 2 lun 0 > da2: Fixed Direct Access SCSI-3 device > da2: 40.000MB/s transfers (20.000MHz, offset 31, 16bit), Tagged Queueing > Enabled > da2: 35003MB (71687340 512 byte sectors: 255H 63S/T 4462C) > Mounting root from ufs:/dev/da0s1a > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 20:19:14 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtprelay1.adelphia.net (smtprelay1.adelphia.net [64.8.25.6]) by hub.freebsd.org (Postfix) with ESMTP id 2902137B4EC for ; Fri, 16 Feb 2001 20:19:12 -0800 (PST) Received: from adelphia.net ([24.50.186.158]) by smtprelay1.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id G8VVYJ00.33K for ; Fri, 16 Feb 2001 23:18:19 -0500 Message-ID: <3A8DFC71.F26C428D@adelphia.net> Date: Fri, 16 Feb 2001 23:22:09 -0500 From: Nader Turki X-Mailer: Mozilla 4.76 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-stable@FreeBSD.org Subject: make buildkernel fails Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi there, i have FreeBSD 4.2-RELEASE installed i just cvsup; make buildworld and when i tried make buildkernel it failed. [root@ns]:/usr/src# make buildkernel KERNEL=NS -------------------------------------------------------------- >>> WARNING: KERNEL= setting should be changed to KERNCONF= -------------------------------------------------------------- -------------------------------------------------------------- >>> Kernel build for NS started on Fri Feb 16 21:50:29 CST 2001 -------------------------------------------------------------- ===> NS mkdir -p /usr/obj/usr/src/sys cd /usr/src/sys/i386/conf; PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin config -d /usr/obj/usr/src/sys/NS NS config: line 47: devices with zero units are not likely to be correct *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. hope you guys can help me fix that problem. thanks, nader To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 20:20:29 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ibis.worldnet.net (ibis.worldnet.net [195.3.3.14]) by hub.freebsd.org (Postfix) with ESMTP id A584937B503 for ; Fri, 16 Feb 2001 20:20:23 -0800 (PST) Received: from m2.worldnet.net (m2.worldnet.net [195.3.3.6]) by ibis.worldnet.net (8.11.2/8.11.1) with ESMTP id f1H6FP734511 for ; Sat, 17 Feb 2001 07:15:25 +0100 (CET) (envelope-from chainess@worldnet.net) Received: from pern.worldnet.net (ppp50-net1-idf3-bas1.isdnet.net [195.154.52.50]) by m2.worldnet.net (8.9.3/8.9.3) with ESMTP id FAA28374 for ; Sat, 17 Feb 2001 05:20:21 +0100 (CET) Message-Id: <5.0.2.1.2.20010217052059.024b2d00@step.polymtl.ca> X-Sender: chainess@pop.worldnet.net X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Sat, 17 Feb 2001 05:23:30 +0100 To: freebsd-stable@FreeBSD.ORG From: Frederic Nguyen Subject: compress bootdisk Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does anybody know if there is any possibility to create a bootdisk with a compress kernel image? (just like Linux with bzlmage) I need asr raid drivers and kernel size gets huge because of it! F. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 20:51:43 2001 Delivered-To: freebsd-stable@freebsd.org Received: from gibbon.kungfumonkey.com (gibbon.kungfumonkey.com [204.238.225.200]) by hub.freebsd.org (Postfix) with ESMTP id 6A85D37B65D for ; Fri, 16 Feb 2001 20:51:37 -0800 (PST) Received: from localhost (jolly@localhost) by gibbon.kungfumonkey.com (8.9.3/8.9.3) with ESMTP id XAA01904; Fri, 16 Feb 2001 23:51:21 -0500 Date: Fri, 16 Feb 2001 23:51:21 -0500 (EST) From: Jacob Frelinger To: Frederic Nguyen Cc: freebsd-stable@FreeBSD.ORG Subject: Re: compress bootdisk In-Reply-To: <5.0.2.1.2.20010217052059.024b2d00@step.polymtl.ca> Message-ID: Approved: by Your Mother's Brand Of Detergent X-Archive: No MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 17 Feb 2001, Frederic Nguyen wrote: > Does anybody know if there is any possibility to create a bootdisk with a > compress kernel image? (just like Linux with bzlmage) > I need asr raid drivers and kernel size gets huge because of it! is kgzip what you're looking for? (see man kgzip). picobsd uses it (which is where i found out how to do it) to make compressed kernels. the picobsd sources are actualy really useful for figuring out how to make bootdisks and boot images. -- Jacob "I'm Brainy For Zombie Pops" Frelinger Resident Psycho http://www.Kungfumonkey.com Jolly at Kungfumonkey dot Com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 20:57:51 2001 Delivered-To: freebsd-stable@freebsd.org Received: from myzona.net (40bc2156.dsl.flashcom.net [64.188.33.86]) by hub.freebsd.org (Postfix) with ESMTP id AE06A37B401 for ; Fri, 16 Feb 2001 20:57:47 -0800 (PST) Received: from parkson [64.166.85.176] by myzona.net [64.188.33.86] with SMTP (MDaemon.v3.5.2.R) for ; Fri, 16 Feb 2001 20:51:04 -0800 Message-ID: <001901c0989e$0f064de0$00e1fea9@parkson> Reply-To: "Alex M" From: "Alex M" To: "Nader Turki" , References: <3A8DFC71.F26C428D@adelphia.net> Subject: Re: make buildkernel fails Date: Fri, 16 Feb 2001 20:56:01 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-MDRemoteIP: 64.166.85.176 X-Return-Path: alex@myzona.net X-MDaemon-Deliver-To: freebsd-stable@freebsd.org Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Not sure of the steps you tried to do, but the correct procedures are: cvsup cd /usr/src make buildworld make buildkernel KERNCONF=your_kernel_name make installkernel KERNCONF=your_kernel_name then drop to single-user mode make installworld followed by mergemaster hope this would help. Regards, Alex M aka TZapper. ----- Original Message ----- From: "Nader Turki" To: Sent: Friday, February 16, 2001 8:22 PM Subject: make buildkernel fails > hi there, > i have FreeBSD 4.2-RELEASE installed i just cvsup; make buildworld and > when i tried make buildkernel it failed. > > [root@ns]:/usr/src# make buildkernel KERNEL=NS > -------------------------------------------------------------- > >>> WARNING: KERNEL= setting should be changed to KERNCONF= > -------------------------------------------------------------- > > -------------------------------------------------------------- > >>> Kernel build for NS started on Fri Feb 16 21:50:29 CST 2001 > -------------------------------------------------------------- > ===> NS > mkdir -p /usr/obj/usr/src/sys > cd /usr/src/sys/i386/conf; > PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/u sr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin > config -d /usr/obj/usr/src/sys/NS NS > config: line 47: devices with zero units are not likely to be correct > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > > hope you guys can help me fix that problem. > thanks, > nader > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 21: 1:31 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rmx614-mta.mail.com (rmx614-mta.mail.com [165.251.48.52]) by hub.freebsd.org (Postfix) with ESMTP id D389E37B401 for ; Fri, 16 Feb 2001 21:01:18 -0800 (PST) Received: from web569-mc (web569-mc.mail.com [165.251.48.92]) by rmx614-mta.mail.com (8.9.3/8.9.3) with SMTP id AAA25008; Sat, 17 Feb 2001 00:01:16 -0500 (EST) Message-ID: <385728594.982386074049.JavaMail.root@web569-mc> Date: Sat, 17 Feb 2001 00:01:14 -0500 (EST) From: Dorens Jay To: Nader Turki Subject: RE: make buildkernel fails Cc: freebsd-stable@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: mail.com X-Originating-IP: 216.77.56.114 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG What does line 47 of your kernel config file say? ------Original Message------ From: Nader Turki To: freebsd-stable@FreeBSD.org Sent: February 17, 2001 4:22:09 AM GMT Subject: make buildkernel fails hi there, i have FreeBSD 4.2-RELEASE installed i just cvsup; make buildworld and when i tried make buildkernel it failed. [root@ns]:/usr/src# make buildkernel KERNEL=NS -------------------------------------------------------------- >>> WARNING: KERNEL= setting should be changed to KERNCONF= -------------------------------------------------------------- -------------------------------------------------------------- >>> Kernel build for NS started on Fri Feb 16 21:50:29 CST 2001 -------------------------------------------------------------- ===> NS mkdir -p /usr/obj/usr/src/sys cd /usr/src/sys/i386/conf; PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin config -d /usr/obj/usr/src/sys/NS NS config: line 47: devices with zero units are not likely to be correct *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. hope you guys can help me fix that problem. thanks, nader To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message ______________________________________________ FREE Personalized Email at Mail.com Sign up at http://www.mail.com/?sr=signup To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 21: 1:31 2001 Delivered-To: freebsd-stable@freebsd.org Received: from greg.cex.ca (h207-230-249-123.dccnet.com [207.230.249.123]) by hub.freebsd.org (Postfix) with SMTP id 5E23337B4EC for ; Fri, 16 Feb 2001 21:01:16 -0800 (PST) Received: (qmail 27857 invoked by uid 1001); 17 Feb 2001 05:00:23 -0000 Date: Fri, 16 Feb 2001 21:00:23 -0800 From: Greg White To: FreeBSD Stable Subject: Re: openssh not setting DISPLAY Message-ID: <20010216210023.A22986@greg.cex.ca> Mail-Followup-To: FreeBSD Stable References: <3A8D8088.164E99D3@math.missouri.edu> <20010216152317.A97818@mollari.cthul.hu> <3A8DD7E2.E822D313@math.missouri.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8DD7E2.E822D313@math.missouri.edu>; from stephen@math.missouri.edu on Fri, Feb 16, 2001 at 07:46:10PM -0600 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Feb 16, 2001 at 07:46:10PM -0600, Stephen Montgomery-Smith wrote: > Kris Kennaway wrote: > > > > > (Somehow I think ForwardX11 yes should be the default, but > > > it seems not to be.) > > > > It's not the default because it allows the remote system to snoop your > > X display, and that's not something you might want so we default to > > being secure. > > > > In that case the default ssh_config is a bit misleading - it > says > > # This is ssh client systemwide configuration file. This file provides > # defaults for users, and the values can be changed in per-user configuration > # files or on the command line. > > ... > > # ForwardX11 yes > IMHO, it's set that way to as to be easily able to change the default. I thought, myself, that it was well documented behaviour that the server usually defaults for ForwardX11, but requires an explicit enable on the client side. Those who want it just uncomment the line in /etc/ssh_config. Just my $0.02 CDN. ;) -- Greg White Those who make peaceful revolution impossible will make violent revolution inevitable. -- John F. Kennedy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 21:12:34 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-49.dsl.lsan03.pacbell.net [64.165.226.49]) by hub.freebsd.org (Postfix) with ESMTP id 1F5FA37B503 for ; Fri, 16 Feb 2001 21:12:32 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7E84466F79; Fri, 16 Feb 2001 21:12:31 -0800 (PST) Date: Fri, 16 Feb 2001 21:12:31 -0800 From: Kris Kennaway To: Frederic Nguyen Cc: freebsd-stable@FreeBSD.ORG Subject: Re: compress bootdisk Message-ID: <20010216211231.C6524@mollari.cthul.hu> References: <5.0.2.1.2.20010217052059.024b2d00@step.polymtl.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="2/5bycvrmDh4d1IB" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5.0.2.1.2.20010217052059.024b2d00@step.polymtl.ca>; from chainess@worldnet.net on Sat, Feb 17, 2001 at 05:23:30AM +0100 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --2/5bycvrmDh4d1IB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 17, 2001 at 05:23:30AM +0100, Frederic Nguyen wrote: > Does anybody know if there is any possibility to create a bootdisk with a= =20 > compress kernel image? (just like Linux with bzlmage) > I need asr raid drivers and kernel size gets huge because of it! Yes; this is what's done with the install floppies. Just gzip the kernel and it should work. Kris --2/5bycvrmDh4d1IB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6jgg/Wry0BWjoQKURAvL6AJ93ZL+ONFsUjrE0lcn2GwtH7PHT/gCfWh4Y ilfXv81yFdRUwPZ12jUKH/A= =NFlb -----END PGP SIGNATURE----- --2/5bycvrmDh4d1IB-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 16 21:50:24 2001 Delivered-To: freebsd-stable@freebsd.org Received: from quack.kfu.com (quack.kfu.com [205.178.90.194]) by hub.freebsd.org (Postfix) with ESMTP id EC0F237B65D for ; Fri, 16 Feb 2001 21:50:21 -0800 (PST) Received: from morpheus.kfu.com ([205.178.90.230]) by quack.kfu.com (8.11.1/8.11.1) with ESMTP id f1H5oLv24293; Fri, 16 Feb 2001 21:50:21 -0800 (PST) (envelope-from nsayer@quack.kfu.com) Received: from quack.kfu.com by morpheus.kfu.com with ESMTP (8.11.1//ident-1.0) id f1H5oLd38702; Fri, 16 Feb 2001 21:50:21 -0800 (PST) Message-ID: <3A8E111C.9060100@quack.kfu.com> Date: Fri, 16 Feb 2001 21:50:20 -0800 From: Nick Sayer User-Agent: Mozilla/5.0 (X11; U; FreeBSD 4.2-RELEASE i386; en-US; 0.8) Gecko/20010216 X-Accept-Language: en-GB, en-US, en MIME-Version: 1.0 To: Gordon Tetlow Cc: Trevin Chow , FreeBSD Stable Subject: Re: Can't Telnet but can SSH? References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Gordon Tetlow wrote: > > allow tcp from any to ${oip} 53 setup > allow udp from any to ${oip} 53 > allow udp from ${oip} 53 to any This is _exceedingly_ insecure. This allows anyone to bind any instrument of destruction they wish to their machine on port 53 and something more dangerous on your inside -- perhaps port 2049 (NFS)? The proper solution to the problem is the stateful filtering in ipfw. Something like this: ipfw add check-state ipfw add pass udp from any to any out xmit ${oif} keep-state ipfw add pass ip from any to any out xmit ${oif} ipfw add pass tcp from any to any established At this point you can add a series of tcp setup passes for allowed incoming connections. Such as: ipfw add pass tcp from any to ${smtp_serv} 25 setup ipfw add pass udp from any to ${dns_serv} 53 setup ipfw add pass tcp from any to ${dns_serv} 53 setup ipfw add pass tcp from any to ${www_serv} 80 setup ... and so on That's not a complete firewall by any means. You'll want to add anti-spoofing and other sanity checks. This rule fragment also obviates the need for any named.conf games to restrict the source port of DNS queries. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 0:16:33 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtprelay1.adelphia.net (smtprelay1.adelphia.net [64.8.25.6]) by hub.freebsd.org (Postfix) with ESMTP id 4FAAF37B503 for ; Sat, 17 Feb 2001 00:16:29 -0800 (PST) Received: from adelphia.net ([24.50.186.158]) by smtprelay1.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id G8W6Y000.654; Sat, 17 Feb 2001 03:15:36 -0500 Message-ID: <3A8E340D.38184726@adelphia.net> Date: Sat, 17 Feb 2001 03:19:25 -0500 From: Nader Turki X-Mailer: Mozilla 4.76 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Dorens Jay Cc: freebsd-stable@FreeBSD.org Subject: Re: make buildkernel fails References: <385728594.982386074049.JavaMail.root@web569-mc> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Ok here's exactly what i did: I'm using a custom kernel "NS" I did the following: cvsup cd /usr/src make buildworld make buildkernel KERNEL=NS and i got that error i mentioned earlier. line 47 in my NS kernel is commented out "#" it's: # Floppy drives I don't think that line should have any effect. Thanks, Nader Dorens Jay wrote: > What does line 47 of your kernel config file say? > > ------Original Message------ > From: Nader Turki > To: freebsd-stable@FreeBSD.org > Sent: February 17, 2001 4:22:09 AM GMT > Subject: make buildkernel fails > > hi there, > i have FreeBSD 4.2-RELEASE installed i just cvsup; make buildworld and > when i tried make buildkernel it failed. > > [root@ns]:/usr/src# make buildkernel KERNEL=NS > -------------------------------------------------------------- > >>> WARNING: KERNEL= setting should be changed to KERNCONF= > -------------------------------------------------------------- > > -------------------------------------------------------------- > >>> Kernel build for NS started on Fri Feb 16 21:50:29 CST 2001 > -------------------------------------------------------------- > ===> NS > mkdir -p /usr/obj/usr/src/sys > cd /usr/src/sys/i386/conf; > PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin > config -d /usr/obj/usr/src/sys/NS NS > config: line 47: devices with zero units are not likely to be correct > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > > hope you guys can help me fix that problem. > thanks, > nader > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > ______________________________________________ > FREE Personalized Email at Mail.com > Sign up at http://www.mail.com/?sr=signup To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 2:21:29 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtprelay2.adelphia.net (smtprelay2.adelphia.net [64.8.25.7]) by hub.freebsd.org (Postfix) with ESMTP id E795337B401 for ; Sat, 17 Feb 2001 02:21:25 -0800 (PST) Received: from adelphia.net ([24.50.186.158]) by smtprelay2.adelphia.net (Netscape Messaging Server 4.15) with ESMTP id G8WCQF00.T43; Sat, 17 Feb 2001 05:20:39 -0500 Message-ID: <3A8E5153.8893AA4D@adelphia.net> Date: Sat, 17 Feb 2001 05:24:19 -0500 From: Nader Turki X-Mailer: Mozilla 4.76 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Dorens Jay Cc: freebsd-stable@FreeBSD.org Subject: Re: make buildkernel fails References: <385728594.982386074049.JavaMail.root@web569-mc> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, Sorry about earlier. I just remmeber I did a mistake and it was doing cvsup "standard-supfile" I dunno what was i thinking. I'll try cvsup stable-supfile now. Thanks, Nader Dorens Jay wrote: > What does line 47 of your kernel config file say? > > ------Original Message------ > From: Nader Turki > To: freebsd-stable@FreeBSD.org > Sent: February 17, 2001 4:22:09 AM GMT > Subject: make buildkernel fails > > hi there, > i have FreeBSD 4.2-RELEASE installed i just cvsup; make buildworld and > when i tried make buildkernel it failed. > > [root@ns]:/usr/src# make buildkernel KERNEL=NS > -------------------------------------------------------------- > >>> WARNING: KERNEL= setting should be changed to KERNCONF= > -------------------------------------------------------------- > > -------------------------------------------------------------- > >>> Kernel build for NS started on Fri Feb 16 21:50:29 CST 2001 > -------------------------------------------------------------- > ===> NS > mkdir -p /usr/obj/usr/src/sys > cd /usr/src/sys/i386/conf; > PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin > config -d /usr/obj/usr/src/sys/NS NS > config: line 47: devices with zero units are not likely to be correct > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > > hope you guys can help me fix that problem. > thanks, > nader > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > ______________________________________________ > FREE Personalized Email at Mail.com > Sign up at http://www.mail.com/?sr=signup To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 2:22:14 2001 Delivered-To: freebsd-stable@freebsd.org Received: from sdmail0.sd.bmarts.com (sdmail0.sd.bmarts.com [192.215.234.86]) by hub.freebsd.org (Postfix) with SMTP id 4A0D537B401 for ; Sat, 17 Feb 2001 02:22:12 -0800 (PST) Received: (qmail 7635 invoked by uid 1078); 17 Feb 2001 10:22:09 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 17 Feb 2001 10:22:09 -0000 Date: Sat, 17 Feb 2001 02:22:09 -0800 (PST) From: Gordon Tetlow X-X-Sender: To: Nick Sayer Cc: FreeBSD Stable Subject: Re: Can't Telnet but can SSH? In-Reply-To: <3A8E111C.9060100@quack.kfu.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 16 Feb 2001, Nick Sayer wrote: > Gordon Tetlow wrote: > > allow tcp from any to ${oip} 53 setup > > allow udp from any to ${oip} 53 > > allow udp from ${oip} 53 to any > This is _exceedingly_ insecure. This allows anyone to bind any > instrument of destruction they wish to their machine on port 53 and > something more dangerous on your inside -- perhaps port 2049 (NFS)? Actually, this is the default config. I'd ask that you make the appropriate changes to the /etc/rc.firewall script to make it more secure and send-pr it. -gordon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 5:22: 4 2001 Delivered-To: freebsd-stable@freebsd.org Received: from w2xo.pgh.pa.us (ipl-229-077.npt-sdsl.stargate.net [208.223.229.77]) by hub.freebsd.org (Postfix) with ESMTP id B47E137B491 for ; Sat, 17 Feb 2001 05:22:01 -0800 (PST) Received: from shazam (shazam [192.168.5.3]) by w2xo.pgh.pa.us (8.9.3/8.9.3) with ESMTP id NAA55763 for ; Sat, 17 Feb 2001 13:22:00 GMT (envelope-from durham@w2xo.pgh.pa.us) Date: Sat, 17 Feb 2001 08:22:33 -0500 (EST) From: Jim Durham X-Sender: durham@shazam.int To: freebsd-stable@freebsd.org Subject: Make world failure on ssl23.h Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My system is currently 4.2-RELEASE. I have been trying to bring it up to 4.2-STABLE. make world fails on /usr/obj/usr/src/secure/lib/libssl/openssl/ssl23.h complaining of an unterminated character constant. Upon examination of ssl23.h, it is not a text file, or at least it is extremely corrupted. I have tried cvsup'ing secure several times over the last 3 days and no change. I have also removed /usr/obj and started "clean". No help. What am I doing wrong? Thanks, Jim Durham To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 7:24:15 2001 Delivered-To: freebsd-stable@freebsd.org Received: from www-es.fernuni-hagen.de (ES-i2.fernuni-hagen.de [132.176.7.81]) by hub.freebsd.org (Postfix) with ESMTP id 54ADD37B67D for ; Sat, 17 Feb 2001 07:24:08 -0800 (PST) Received: from fernuni-hagen.de (www-es.fernuni-hagen.de [132.176.7.81]) by www-es.fernuni-hagen.de (8.11.2/8.11.1) with ESMTP id f1HFNtW19947; Sat, 17 Feb 2001 16:24:00 +0100 (CET) (envelope-from fritz.heinrichmeyer@fernuni-hagen.de) Message-ID: <3A8E98CE.DCCC4604@fernuni-hagen.de> Date: Sat, 17 Feb 2001 16:29:18 +0100 From: "F. Heinrichmeyer" Organization: FernUni in Hagen X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-STABLE i386) X-Accept-Language: de, en, de-DE MIME-Version: 1.0 Cc: freebsd-stable@FreeBSD.ORG Subject: Program "top" looses all cpu related numbers References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello with stable since 4.2-Release, the program top shows all CPU percentages as Zero every now and then. This happens of course only under heavy load, when top could show some useful information. I have an AMD-K6 3D CPU. I never saw it at work with Pentium-Pro CPUs. Anyone saw this before? -- Fritz Heinrichmeyer mailto:fritz.heinrichmeyer@fernuni-hagen.de FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany) tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 7:35:56 2001 Delivered-To: freebsd-stable@freebsd.org Received: from www-es.fernuni-hagen.de (ES-i2.fernuni-hagen.de [132.176.7.81]) by hub.freebsd.org (Postfix) with ESMTP id 8E3AA37B401 for ; Sat, 17 Feb 2001 07:35:54 -0800 (PST) Received: from fernuni-hagen.de (www-es.fernuni-hagen.de [132.176.7.81]) by www-es.fernuni-hagen.de (8.11.2/8.11.1) with ESMTP id f1HFZlW20023; Sat, 17 Feb 2001 16:35:47 +0100 (CET) (envelope-from fritz.heinrichmeyer@fernuni-hagen.de) Message-ID: <3A8E9B97.ACF79A94@fernuni-hagen.de> Date: Sat, 17 Feb 2001 16:41:11 +0100 From: "F. Heinrichmeyer" Organization: FernUni in Hagen X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-STABLE i386) X-Accept-Language: de, en, de-DE MIME-Version: 1.0 To: freebsd-stable@FreeBSD.ORG Subject: Re: Program "top" looses all cpu related numbers References: <3A8E98CE.DCCC4604@fernuni-hagen.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG PS: Everything (world, kernel) was made fresh. -- Fritz Heinrichmeyer mailto:fritz.heinrichmeyer@fernuni-hagen.de FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany) tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 8:49:47 2001 Delivered-To: freebsd-stable@freebsd.org Received: from racine.cybercable.fr (racine.cybercable.fr [212.198.0.201]) by hub.freebsd.org (Postfix) with SMTP id B5A0837B401 for ; Sat, 17 Feb 2001 08:49:39 -0800 (PST) Received: (qmail 5514244 invoked from network); 17 Feb 2001 16:49:26 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by racine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 17 Feb 2001 16:49:26 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f1HGnDu41865; Sat, 17 Feb 2001 17:49:13 +0100 (CET) (envelope-from clefevre@poboxes.com) To: "Steve O'Hara-Smith" Cc: Robert bobb Crosbie , freebsd-stable@FreeBSD.ORG Subject: Re: More than 256 pty's References: <20010216172854.A67979@enigma.redbrick.dcu.ie> <20010216202737.1807da64.steveo@eircom.net> X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C In-Reply-To: "Steve O'Hara-Smith"'s message of "Fri, 16 Feb 2001 20:27:37 +0100" From: Cyrille Lefevre Reply-To: clefevre@poboxes.com Mail-Copies-To: never Date: 17 Feb 2001 17:49:10 +0100 Message-ID: <66i9w8zd.fsf@gits.dyndns.org> Lines: 133 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Steve O'Hara-Smith" writes: > On Fri, 16 Feb 2001 17:28:54 +0000 > Robert bobb Crosbie wrote: > RC> > RC> You can have more than 256 ptys; the problem is what to name them. You > RC> can easily get 384 ptys by extending the current scheme slightly (using > RC> /dev/tty[tuTU]*; /dev/ttyv* is syscons so we hit our limit with this > RC> naming scheme). Edit /dev/MAKEDEV and /usr/src/lib/libutil/pty.c > RC> > > It looks to me like you also have to hack around in kern/tty_pty.c, > there are hard coded assumptions in there about 256 minor numbers being mapped. > Also comments about doing something about it, the mapping is defined in there. > Making it work above 256 doesn't look hard, agreeing on a naming convention > might be harder :) Index: etc/MAKEDEV =================================================================== RCS file: /home/ncvs/src/etc/MAKEDEV,v retrieving revision 1.243.2.20 diff -u -r1.243.2.20 MAKEDEV --- etc/MAKEDEV 2001/02/03 16:16:40 1.243.2.20 +++ etc/MAKEDEV 2001/02/17 16:45:35 @@ -701,23 +701,13 @@ done ;; pty*) - class=`expr $i : 'pty\(.*\)'` - case $class in - 0) offset=0 name=p;; - 1) offset=32 name=q;; - 2) offset=64 name=r;; - 3) offset=96 name=s;; -# Note that xterm (at least) only look at p-s. - 4) offset=128 name=P;; - 5) offset=160 name=Q;; - 6) offset=192 name=R;; - 7) offset=224 name=S;; - # This still leaves [tuTU]. - *) echo bad unit for pty in: $i;; - esac umask 0 + class=`expr $i : 'pty\(.*\)'` case $class in - 0|1|2|3|4|5|6|7) + [0-9]|1[0-9]|20) + name=$(echo pqrstuwxyzPQRSTUVWXYZ | + dd bs=1 skip=$class count=1 2>/dev/null) + offset=$(($class * 32)) i=0 while [ $i -lt 32 ]; do # This was an awk substr() before. @@ -728,6 +718,7 @@ i=$(($i + 1)) done ;; + *) echo bad unit for pty in: $i;; esac umask 77 ;; Index: lib/libutil/pty.c =================================================================== RCS file: /home/ncvs/src/lib/libutil/pty.c,v retrieving revision 1.10 diff -u -r1.10 pty.c --- lib/libutil/pty.c 1999/08/28 00:05:51 1.10 +++ lib/libutil/pty.c 2001/02/17 16:45:49 @@ -70,7 +70,7 @@ else ttygid = -1; - for (cp1 = "pqrsPQRS"; *cp1; cp1++) { + for (cp1 = "pqrstuwxyzPQRSTUVWXYZ"; *cp1; cp1++) { line[8] = *cp1; for (cp2 = "0123456789abcdefghijklmnopqrstuv"; *cp2; cp2++) { line[5] = 'p'; Index: share/man/man4/pty.4 =================================================================== RCS file: /home/ncvs/src/share/man/man4/pty.4,v retrieving revision 1.8.2.1 diff -u -r1.8.2.1 pty.4 --- share/man/man4/pty.4 2000/12/08 14:59:07 1.8.2.1 +++ share/man/man4/pty.4 2001/02/17 16:46:15 @@ -191,10 +191,10 @@ is required. .El .Sh FILES -.Bl -tag -width /dev/tty[p-sP-S][0-9a-v]x -compact -.It Pa /dev/pty[p-sP-S][0-9a-v] +.Bl -tag -width /dev/tty[p-uw-zP-Z][0-9a-v]x -compact +.It Pa /dev/pty[p-uw-zP-Z][0-9a-v] master pseudo terminals -.It Pa /dev/tty[p-sP-S][0-9a-v] +.It Pa /dev/tty[p-uw-zP-Z][0-9a-v] slave pseudo terminals .El .Sh DIAGNOSTICS Index: sys/kern/tty_pty.c =================================================================== RCS file: /home/ncvs/src/sys/kern/tty_pty.c,v retrieving revision 1.74 diff -u -r1.74 tty_pty.c --- sys/kern/tty_pty.c 2000/02/09 03:32:11 1.74 +++ sys/kern/tty_pty.c 2001/02/17 16:47:08 @@ -130,8 +130,8 @@ /* * This function creates and initializes a pts/ptc pair * - * pts == /dev/tty[pqrsPQRS][0123456789abcdefghijklmnopqrstuv] - * ptc == /dev/pty[pqrsPQRS][0123456789abcdefghijklmnopqrstuv] + * pts == /dev/tty[pqrstuwxyzPQRSTUVWXYZ][0123456789abcdefghijklmnopqrstuv] + * ptc == /dev/pty[pqrstuwxyzPQRSTUVWXYZ][0123456789abcdefghijklmnopqrstuv] * * XXX: define and add mapping of upper minor bits to allow more * than 256 ptys. @@ -141,7 +141,7 @@ int n; { dev_t devs, devc; - char *names = "pqrsPQRS"; + char *names = "pqrstuwxyzPQRSTUVWXYZ"; struct pt_ioctl *pt; /* For now we only map the lower 8 bits of the minor */ also, how about using an OID to dynamicaly configure available ptys ? something like kern.nptys=384 or more w/ a maximum of 704 ptys ((z-p)*2*32). Cyrille. -- home: mailto:clefevre@poboxes.com UNIX is user-friendly; it's just particular work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 8:55:17 2001 Delivered-To: freebsd-stable@freebsd.org Received: from balzac.cybercable.fr (balzac.cybercable.fr [212.198.0.198]) by hub.freebsd.org (Postfix) with SMTP id 4F25137B401 for ; Sat, 17 Feb 2001 08:55:14 -0800 (PST) Received: (qmail 19543036 invoked from network); 17 Feb 2001 16:55:07 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by balzac.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 17 Feb 2001 16:55:07 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f1HGt5s41892; Sat, 17 Feb 2001 17:55:05 +0100 (CET) (envelope-from clefevre@poboxes.com) To: Kris Kennaway Cc: Frederic Nguyen , freebsd-stable@FreeBSD.ORG Subject: Re: compress bootdisk References: <5.0.2.1.2.20010217052059.024b2d00@step.polymtl.ca> <20010216211231.C6524@mollari.cthul.hu> X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C In-Reply-To: Kris Kennaway's message of "Fri, 16 Feb 2001 21:12:31 -0800" From: Cyrille Lefevre Reply-To: clefevre@poboxes.com Mail-Copies-To: never Date: 17 Feb 2001 17:55:01 +0100 Message-ID: Lines: 23 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Kris Kennaway writes: > On Sat, Feb 17, 2001 at 05:23:30AM +0100, Frederic Nguyen wrote: > > Does anybody know if there is any possibility to create a bootdisk with a > > compress kernel image? (just like Linux with bzlmage) > > I need asr raid drivers and kernel size gets huge because of it! > > Yes; this is what's done with the install floppies. Just gzip the > kernel and it should work. kgzip is more efficient that gzip : # l kernel* -r-xr-xr-x 1 root wheel 2316502 Jan 23 07:34 kernel -r-xr-xr-x 1 root wheel 1031486 Feb 17 17:50 kernel.gz -rwxr-xr-x 1 root wheel 919906 Feb 17 17:51 kernel.kgz and this may count on a floppy :) Cyrille. -- home: mailto:clefevre@poboxes.com UNIX is user-friendly; it's just particular work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 9: 1:50 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtp.wanadoo.nl (smtp.wanadoo.nl [194.134.193.6]) by hub.freebsd.org (Postfix) with ESMTP id 633F837B4EC for ; Sat, 17 Feb 2001 09:01:47 -0800 (PST) Received: from ams-gw.sohara.org (p1422.vcu.wanadoo.nl [194.134.170.147]) by smtp.wanadoo.nl (8.9.3/8.9.3) with SMTP id SAA22227; Sat, 17 Feb 2001 18:01:42 +0100 (MET) Date: Sat, 17 Feb 2001 18:01:39 +0100 From: "Steve O'Hara-Smith" To: clefevre@poboxes.com Cc: bobb+freebsd-stable@redbrick.dcu.ie, freebsd-stable@FreeBSD.ORG Subject: Re: More than 256 pty's Message-Id: <20010217180139.5269c474.steveo@eircom.net> In-Reply-To: <66i9w8zd.fsf@gits.dyndns.org> References: <20010216172854.A67979@enigma.redbrick.dcu.ie> <20010216202737.1807da64.steveo@eircom.net> <66i9w8zd.fsf@gits.dyndns.org> X-Mailer: Sylpheed version 0.4.60 (GTK+ 1.2.8; FreeBSD 4.2-STABLE; i386) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 17 Feb 2001 17:49:10 +0100 Cyrille Lefevre wrote: Seems to take it up to 704 ptys (now try explaining quickly how *that* number comes up). Don't you also need to disable the test in ptsopen() on line 189 of kern/tty_pty.c ? viz: ----- if (minr < 255) { nextdev = makedev(major(dev), minr + 1); if (!nextdev->si_drv1) { ptyinit(minr + 1); } } ----- I was contemplating something with a /dev/pty/* and /dev/tty/* and a really mindless naming convention that wouldn't ever bottom out. I hadn't even started working on it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 9: 2:21 2001 Delivered-To: freebsd-stable@freebsd.org Received: from smtp.wanadoo.nl (smtp.wanadoo.nl [194.134.193.6]) by hub.freebsd.org (Postfix) with ESMTP id B13CB37B491 for ; Sat, 17 Feb 2001 09:02:19 -0800 (PST) Received: from ams-gw.sohara.org (p1422.vcu.wanadoo.nl [194.134.170.147]) by smtp.wanadoo.nl (8.9.3/8.9.3) with SMTP id SAA22325; Sat, 17 Feb 2001 18:02:16 +0100 (MET) Date: Sat, 17 Feb 2001 09:04:00 +0100 From: "Steve O'Hara-Smith" To: Virtual Bob Cc: freebsd-stable@freebsd.org Subject: Re: IBM/Cyrix 6x86 133(PR166) Message-Id: <20010217090400.2f53d761.steveo@eircom.net> In-Reply-To: References: <3087049965.982339593@[192.168.99.123]> X-Mailer: Sylpheed version 0.4.60 (GTK+ 1.2.8; FreeBSD 4.2-STABLE; i386) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 16 Feb 2001 18:21:51 -0600 (CST) Virtual Bob wrote: VB> lot. Did I miss anything else other than /usr/obj? /usr/src ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 9: 3:34 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mta2.rcsntx.swbell.net (mta2.rcsntx.swbell.net [151.164.30.26]) by hub.freebsd.org (Postfix) with ESMTP id 544B137B4EC for ; Sat, 17 Feb 2001 09:03:33 -0800 (PST) Received: from bluzman ([216.61.197.204]) by mta2.rcsntx.swbell.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with SMTP id <0G8W00JZRVGP3I@mta2.rcsntx.swbell.net> for freebsd-stable@FreeBSD.org; Sat, 17 Feb 2001 11:05:13 -0600 (CST) Date: Sat, 17 Feb 2001 11:05:59 -0600 From: Jay Nation Subject: subscribe To: freebsd-stable@FreeBSD.org Message-id: MIME-version: 1.0 X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Content-type: text/plain; charset="iso-8859-1" Content-transfer-encoding: 7bit Importance: Normal X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 X-Priority: 3 (Normal) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG subscribe freebsd-stable subscribe cvs-all To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 9: 4:30 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ajax2.sovam.com (ajax2.sovam.com [194.67.1.173]) by hub.freebsd.org (Postfix) with ESMTP id 89CF037B491; Sat, 17 Feb 2001 09:04:20 -0800 (PST) Received: from ts9-a481.dial.sovam.com ([195.239.71.225]:1262 "EHLO ts9-a481.dial.sovam.com" ident: "avn" whoson: "-unregistered-" smtp-auth: TLS-CIPHER: TLS-PEER: ) by ajax2.sovam.com with ESMTP id ; Sat, 17 Feb 2001 20:04:09 +0300 Date: Sat, 17 Feb 2001 20:06:40 +0300 (MSK) From: avn X-X-Sender: To: Cc: Subject: Asus A7V133/4.2-R (fwd) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hello there! [ in case of answers from questions@, please, keep cc'ing me ] I tried to install FreeBSD 4.2-R on a Asus A7V133/Athlon Thunderbird 850MHz/Fujitsu MPE3136AH (udma/66), and noticed the following: the system installs and runs smoothly, when the hard disk is attached to secondary (Promise UDMA100/RAID0) controller. When it's at primary controller, it detects disk properly. But when it tries to write partition data on it, it makes some tries like: ad0: WRITE timeout tag=0 ata0: resetting devices .. done and then panics with message `going nowhere without my init'. Seems that new Asus A7V133 has broken primary IDE controller. Have anybody met with something like this? FYI: 3.5.1-R bootable CD does not boot at all - it dumps registers and halts system. FYI2: Windows ME installs and operates even when disk is installed as primary master. Maybe it just silently downgrades from udma/66 to something lower? # Alexey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 10: 0:51 2001 Delivered-To: freebsd-stable@freebsd.org Received: from picalon.gun.de (picalon.gun.de [192.109.159.1]) by hub.freebsd.org (Postfix) with ESMTP id 72E3737B491 for ; Sat, 17 Feb 2001 10:00:41 -0800 (PST) Received: (from uucp@localhost) by picalon.gun.de (8.9.3/8.9.3) id TAA27050 for freebsd-stable@freebsd.org; Sat, 17 Feb 2001 19:00:26 +0100 (MET) >Received: (from andreas@localhost) by klemm.gtn.com (8.11.2/8.11.1) id f1HHsP400557 for freebsd-stable@freebsd.org; Sat, 17 Feb 2001 18:54:25 +0100 (CET) (envelope-from andreas) Date: Sat, 17 Feb 2001 18:54:25 +0100 From: Andreas Klemm To: freebsd-stable@freebsd.org Subject: stray irq's 7, printing hangs, about 20000-50000 irqs per second ... Message-ID: <20010217185425.A450@titan.klemm.gtn.com> Mime-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.2-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="J2SCkAp4GZ/dPZZf" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --J2SCkAp4GZ/dPZZf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Somethings wrong with the parallel printing device. All print jobs hang no matter if I'm using polled or IRQ driven mode (using lptcontrol). With a FreeBSD of today I get stray IRQ's 7 and when looking at the IRQs I notice 20000-50000 (!!!) per second on a print job ... One week ago everything was fine with printing ... The print job alway hangs immediately or after about 10-30 seconds. Am currently only using samba for remote printing. The Windows binary data are directly sent to the printer via or default printcap entry (currently no apsfilter in use). Using polling mode didn't help and the printjob even hang at the beginning of the printjob ... BIOS setting is ECP+EPP. kernel messages: Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-STABLE #0: Sat Feb 17 11:05:48 CET 2001 root@titan.klemm.gtn.com:/usr/src/sys/compile/TITAN Timecounter "i8254" frequency 1193182 Hz CPU: Pentium Pro (199.43-MHz 686-class CPU) Origin =3D "GenuineIntel" Id =3D 0x619 Stepping =3D 9 Features=3D0xfbff real memory =3D 159383552 (155648K bytes) avail memory =3D 151728128 (148172K bytes) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 IOAPIC #0 intpin 16 -> irq 15 IOAPIC #0 intpin 17 -> irq 11 IOAPIC #0 intpin 18 -> irq 10 IOAPIC #0 intpin 19 -> irq 14 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 0, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc0303000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc030309c. VESA: v2.0, 4096k memory, flags:0x1, mode table:0xc02ac222 (1000022) VESA: Matrox Graphics Inc. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: at device 7.1 on pci0 atapci0: Busmastering DMA not supported pci0: at 10.0 pcm0: port 0x9400-0x941f irq 14 at device 11.0 on pci0 fxp0: port 0x9c00-0x9c3f mem 0xe2000000-0= xe20fffff,0xe2121000-0xe2121fff irq 10 at device 12.0 on pci0 fxp0: Ethernet address 00:d0:b7:ba:c1:c2 ahc0: port 0xa000-0xa0ff mem 0xe2120000-0= xe2120fff irq 11 at device 13.0 on pci0 aic7880: Single Channel A, SCSI Id=3D7, 16/255 SCBs atapci1: port 0xb400-0xb43f,0xb000-0xb003,0xac0= 0-0xac07,0xa800-0xa803,0xa400-0xa407 mem 0xe2100000-0xe211ffff irq 15 at de= vice 14.0 on pci0 ata2: at 0xa400 on atapci1 ata3: at 0xac00 on atapci1 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <4 virtual consoles, flags=3D0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/15 bytes threshold ppbus0: IEEE1284 device found /NIBBLE/ECP Probing for PnP devices on ppbus0: ppbus0: MLC,PCL,PML ppi0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port APIC_IO: Testing 8254 interrupt delivery APIC_IO: routing 8254 via IOAPIC #0 intpin 2 SMP: AP CPU #1 Launched! ad4: 43979MB [89355/16/63] at ata2-master UDMA100 Waiting 8 seconds for SCSI devices to settle sa0 at ahc0 bus 0 target 4 lun 0 sa0: Removable Sequential Access SCSI-2 device= =20 sa0: 4.807MB/s transfers (4.807MHz, offset 8) Mounting root from ufs:/dev/ad4s2a cd0 at ahc0 bus 0 target 5 lun 0 cd0: Removable CD-ROM SCSI-2 device=20 cd0: 10.000MB/s transfers (10.000MHz, offset 8) cd0: Attempt to query device size failed: NOT READY, Medium not present cd1 at ahc0 bus 0 target 6 lun 0 cd1: Removable CD-ROM SCSI-2 device=20 cd1: 10.000MB/s transfers (10.000MHz, offset 15) cd1: Attempt to query device size failed: NOT READY, Medium not present kernel config machine i386 cpu I686_CPU ident TITAN maxusers 100 options SMP # Symmetric MultiProcessor Kernel options APIC_IO # Symmetric (APIC) I/O options PQ_NORMALCACHE # color for 64k/16k cache options SHOW_BUSYBUFS # List buffers that prevent root unmount options INCLUDE_CONFIG_FILE # Include this file in kernel options INET #Internet communications protocols options ICMP_BANDLIM #Rate limit bad replies options MROUTING # Multicast routing options IPSTEALTH #support for stealth forwarding options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=3D8000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options SHMSEG=3D150 #recommendation for X11 options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options KBD_INSTALL_CDEV #install a CDEV entry in /dev device isa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives options ATA_STATIC_ID #Static device numbering options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # SCSI Controllers device ahc # AHA2940 and onboard AIC7xxx devices options AHC_ALLOW_MEMIO # SCSI peripherals device scbus # SCSI bus (required) device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) device pt # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 device vga0 at isa? options VESA # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 options MAXCONS=3D4 # number of virtual consoles options SC_HISTORY_SIZE=3D512 # number of history buffer lines # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer #device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da device fxp # Intel EtherExpress PRO/100B (82557, 82558) # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device md # Memory "disks" pseudo-device vn #Vnode driver (turns a file into a device) # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # Sound support device pcm Andreas /// --=20 Andreas Klemm - Powered by FreeBSD 4.2 SMP Need a magic printfilter today ? -> http://www.apsfilter.org/ --J2SCkAp4GZ/dPZZf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: Weitere Infos: siehe http://www.gnupg.org iD8DBQE6jrrQd3o+lGxvbLoRAtB5AJ4mXYFY5Tlz8gY0LO8w9zk5e2MoEACcDIZO qMKkbf1UmjAQuCxC4t9NSKA= =LcrM -----END PGP SIGNATURE----- --J2SCkAp4GZ/dPZZf-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 10:34: 6 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by hub.freebsd.org (Postfix) with ESMTP id 1D80F37B401 for ; Sat, 17 Feb 2001 10:34:02 -0800 (PST) Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.physik.uni-mainz.de [134.93.180.54]) by ipamzlx.physik.uni-mainz.de (8.11.2/8.11.2) with ESMTP id f1HIZMu01451 for ; Sat, 17 Feb 2001 19:35:22 +0100 (CET) (envelope-from ohartman@ipamzlx.physik.uni-mainz.de) Date: Sat, 17 Feb 2001 19:35:21 +0100 (CET) From: "O. Hartmann" To: Subject: Is NIS/YP buggy or broken? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Sirs. I have problems with an installation of NIS/YP and it seems to be some kind of nasty to me. My boxes are running all FreeBSD 4.2-STABLE and at this moment I switched off all IP filters, snort or inetd's option "-wW" to avoid blocking some services. I installed one machine as a master server and this worked fine. This machine runs "ypserv", "ypbind -s -S XXXXXX,localhost (or name of host)", "rpc.ypxfrd" and "rpc.yppasswdd". At first I tried also to run "keyserv" and "rpc.ypupdatedd" due to needs of secure RPC. Main problem is, that ypbind is not able to connect to the local server "ypserv" or when creating/changing new maps, the master server can not contact its slave servers, no matter why. The error is always that it could not create an UDP handle or "no such host or address" or similar. What's wrong? When running inetd -lwW I assured in /etc/hosts.allow all services like ypserv, rpc.XXX, keyserv and yppush,ypxfr to be accessd from the local net, also the IP filter is transparent for all packets on the lokal net. But it is always the same, no contact to the master or slave servers. On hosts which act as clients could never be initiated a service connection to master or slave server (all machines are on the same network). I tried the simplest installation described in the handbook - without success, the same behaviour (also on new machines without any specialized security installaions). I regret that SecureRPC is not mentioned further in the handbook (about how to use keys etc, maybe this is focus for the malfunction anywy). So, at last I would like to as whether the NIS/YP implementation on FreeBSD is broken or not? Thanks, Oliver -- MfG O. Hartmann ohartman@mail.physik.uni-mainz.de ---------------------------------------------------------------- IT-Administration des Institut fuer Physik der Atmosphaere (IPA) ---------------------------------------------------------------- Johannes Gutenberg Universitaet Mainz Becherweg 21 55099 Mainz Tel: +496131/3924662 (Maschinensaal) Tel: +496131/3924144 FAX: +496131/3923532 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 11:28:50 2001 Delivered-To: freebsd-stable@freebsd.org Received: from omahpop1.omah.uswest.net (omahpop1.omah.uswest.net [204.26.64.1]) by hub.freebsd.org (Postfix) with SMTP id B624C37B503 for ; Sat, 17 Feb 2001 11:28:47 -0800 (PST) Received: (qmail 3516 invoked by alias); 17 Feb 2001 19:28:46 -0000 Delivered-To: fixup-freebsd-stable@freebsd.org@fixme Received: (qmail 3511 invoked by uid 0); 17 Feb 2001 19:28:46 -0000 Received: from omah6400gw2poold207.omah.uswest.net (HELO kristen.shadowdale.net) (63.227.159.207) by omahpop1.omah.uswest.net with SMTP; 17 Feb 2001 19:28:46 -0000 Date: Sat, 17 Feb 2001 13:28:45 -0600 (CST) From: Virtual Bob Cc: FreeBSD-STABLE list Subject: Re: IBM/Cyrix 6x86 133(PR166) In-Reply-To: <20010217090400.2f53d761.steveo@eircom.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > VB> lot. Did I miss anything else other than /usr/obj? > /usr/src ? Naw. I had master /usr/src which is NFS'ed to every computer. Instead of trying to figure out the mystery, I just deleted /usr/obj as whole to start anew. Well, it worked. That was funny (okay, it wasn't that funny). I assumed /usr/obj would automatically get rid of by starting make world (etc.). Guess not. ------------- clip here with virtual scissors -------------- ************************************************************ Keyboard stuck error. Press F1 to continue. Any unsolicited e-mails will be charged US$500 per e-mail, plus court cost. Your contribution to Bill Gates' personal wealth: US$359.17 ************************************************************ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 11:39: 5 2001 Delivered-To: freebsd-stable@freebsd.org Received: from alchemistry.net (alchemistry.net [160.79.102.254]) by hub.freebsd.org (Postfix) with ESMTP id AD13337B401 for ; Sat, 17 Feb 2001 11:39:02 -0800 (PST) Received: from [192.168.0.1] (helo=ilya) by alchemistry.net with asmtp (TLSv1:RC4-MD5:128) (Exim 3.21 #6) id 14UDCA-0006m2-00 for freebsd-stable@freebsd.org; Sat, 17 Feb 2001 14:39:02 -0500 Message-ID: <018601c09919$48206a90$0100a8c0@ilya> From: "Ilya" To: Subject: Date: Sat, 17 Feb 2001 14:39:02 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG auth 59132d98 subscribe freebsd-stable mail@krel.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 11:42:25 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mail2.uniserve.com (mail2.uniserve.com [204.244.156.10]) by hub.freebsd.org (Postfix) with ESMTP id B46FC37B65D for ; Sat, 17 Feb 2001 11:42:21 -0800 (PST) Received: from shell.uniserve.ca ([204.244.186.218]) by mail2.uniserve.com with esmtp (Exim 3.13 #1) id 14UDEX-0004pB-00; Sat, 17 Feb 2001 11:41:29 -0800 Date: Sat, 17 Feb 2001 11:41:26 -0800 (PST) From: Tom X-Sender: tom@shell.uniserve.ca To: "O. Hartmann" Cc: freebsd-stable@freebsd.org Subject: Re: Is NIS/YP buggy or broken? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 17 Feb 2001, O. Hartmann wrote: > Dear Sirs. > I have problems with an installation of NIS/YP and it seems to be > some kind of nasty to me. > My boxes are running all FreeBSD 4.2-STABLE and at this moment I > switched off all IP filters, snort or inetd's option "-wW" to avoid > blocking some services. > > I installed one machine as a master server and this worked fine. > This machine runs "ypserv", "ypbind -s -S XXXXXX,localhost (or name of host)", > "rpc.ypxfrd" and "rpc.yppasswdd". At first I tried also to run "keyserv" > and "rpc.ypupdatedd" due to needs of secure RPC. > > Main problem is, that ypbind is not able to connect to the local server > "ypserv" or when creating/changing new maps, the master server can not > contact its slave servers, no matter why. The error is always that it > could not create an UDP handle or "no such host or address" or similar. > What's wrong? When running inetd -lwW I assured in /etc/hosts.allow all > services like ypserv, rpc.XXX, keyserv and yppush,ypxfr to be accessd > from the local net, also the IP filter is transparent for all packets > on the lokal net. But it is always the same, no contact to the master > or slave servers. > > On hosts which act as clients could never be initiated a service connection to > master or slave server (all machines are on the same network). > > I tried the simplest installation described in the handbook - without success, > the same behaviour (also on new machines without any specialized security installaions). > I regret that SecureRPC is not mentioned further in the handbook (about how to use > keys etc, maybe this is focus for the malfunction anywy). > > So, at last I would like to as whether the NIS/YP implementation on FreeBSD is > broken or not? It works fine. I've have a 4.2-STABLE system running in hybrid mode (both a server and client), pluse a 3.4-STABLE slave server. No NIS services use inetd so it pointless to pursue that. Do you have /var/yp/securenets set up? It sounds like it is not. > Thanks, > Oliver > > -- > MfG > O. Hartmann > > ohartman@mail.physik.uni-mainz.de > ---------------------------------------------------------------- > IT-Administration des Institut fuer Physik der Atmosphaere (IPA) > ---------------------------------------------------------------- > Johannes Gutenberg Universitaet Mainz > Becherweg 21 > 55099 Mainz > > Tel: +496131/3924662 (Maschinensaal) > Tel: +496131/3924144 > FAX: +496131/3923532 > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > Tom Uniserve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 11:44:34 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by hub.freebsd.org (Postfix) with ESMTP id 059B537B401 for ; Sat, 17 Feb 2001 11:44:30 -0800 (PST) Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.physik.uni-mainz.de [134.93.180.54]) by ipamzlx.physik.uni-mainz.de (8.11.2/8.11.2) with ESMTP id f1HJjiu01983; Sat, 17 Feb 2001 20:45:44 +0100 (CET) (envelope-from ohartman@ipamzlx.physik.uni-mainz.de) Date: Sat, 17 Feb 2001 20:45:44 +0100 (CET) From: "O. Hartmann" To: Tom Cc: Subject: Re: Is NIS/YP buggy or broken? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 17 Feb 2001, Tom wrote: :>On Sat, 17 Feb 2001, O. Hartmann wrote: :> :>> Dear Sirs. :>> I have problems with an installation of NIS/YP and it seems to be :>> some kind of nasty to me. :>> My boxes are running all FreeBSD 4.2-STABLE and at this moment I :>> switched off all IP filters, snort or inetd's option "-wW" to avoid :>> blocking some services. :>> :>> I installed one machine as a master server and this worked fine. :>> This machine runs "ypserv", "ypbind -s -S XXXXXX,localhost (or name of host)", :>> "rpc.ypxfrd" and "rpc.yppasswdd". At first I tried also to run "keyserv" :>> and "rpc.ypupdatedd" due to needs of secure RPC. :>> :>> Main problem is, that ypbind is not able to connect to the local server :>> "ypserv" or when creating/changing new maps, the master server can not :>> contact its slave servers, no matter why. The error is always that it :>> could not create an UDP handle or "no such host or address" or similar. :>> What's wrong? When running inetd -lwW I assured in /etc/hosts.allow all :>> services like ypserv, rpc.XXX, keyserv and yppush,ypxfr to be accessd :>> from the local net, also the IP filter is transparent for all packets :>> on the lokal net. But it is always the same, no contact to the master :>> or slave servers. :>> :>> On hosts which act as clients could never be initiated a service connection to :>> master or slave server (all machines are on the same network). :>> :>> I tried the simplest installation described in the handbook - without success, :>> the same behaviour (also on new machines without any specialized security installaions). :>> I regret that SecureRPC is not mentioned further in the handbook (about how to use :>> keys etc, maybe this is focus for the malfunction anywy). :>> :>> So, at last I would like to as whether the NIS/YP implementation on FreeBSD is :>> broken or not? :> :> It works fine. I've have a 4.2-STABLE system running in hybrid mode :>(both a server and client), pluse a 3.4-STABLE slave server. :> :> No NIS services use inetd so it pointless to pursue that. :> :> Do you have /var/yp/securenets set up? It sounds like it is not. Hello. Yes /var/yp/securenets is set up. I try now to set up it in a special way to point to no securities to see whether this is the failure-impact or not. :> :>> Thanks, :>> Oliver :>> :>> -- :>> MfG :>> O. Hartmann :>> :>> ohartman@mail.physik.uni-mainz.de :>> ---------------------------------------------------------------- :>> IT-Administration des Institut fuer Physik der Atmosphaere (IPA) :>> ---------------------------------------------------------------- :>> Johannes Gutenberg Universitaet Mainz :>> Becherweg 21 :>> 55099 Mainz :>> :>> Tel: +496131/3924662 (Maschinensaal) :>> Tel: +496131/3924144 :>> FAX: +496131/3923532 :>> :>> :>> :>> To Unsubscribe: send mail to majordomo@FreeBSD.org :>> with "unsubscribe freebsd-stable" in the body of the message :>> :> :> :>Tom :>Uniserve :> :> -- MfG O. Hartmann ohartman@mail.physik.uni-mainz.de ---------------------------------------------------------------- IT-Administration des Institut fuer Physik der Atmosphaere (IPA) ---------------------------------------------------------------- Johannes Gutenberg Universitaet Mainz Becherweg 21 55099 Mainz Tel: +496131/3924662 (Maschinensaal) Tel: +496131/3924144 FAX: +496131/3923532 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 11:46:38 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mail2.uniserve.com (mail2.uniserve.com [204.244.156.10]) by hub.freebsd.org (Postfix) with ESMTP id 66F9937B401 for ; Sat, 17 Feb 2001 11:46:34 -0800 (PST) Received: from shell.uniserve.ca ([204.244.186.218]) by mail2.uniserve.com with esmtp (Exim 3.13 #1) id 14UDJQ-00051C-00; Sat, 17 Feb 2001 11:46:32 -0800 Date: Sat, 17 Feb 2001 11:46:29 -0800 (PST) From: Tom X-Sender: tom@shell.uniserve.ca To: "O. Hartmann" Cc: freebsd-stable@freebsd.org Subject: Re: Is NIS/YP buggy or broken? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 17 Feb 2001, O. Hartmann wrote: > On Sat, 17 Feb 2001, Tom wrote: > > :>On Sat, 17 Feb 2001, O. Hartmann wrote: > :> > :>> Dear Sirs. > :>> I have problems with an installation of NIS/YP and it seems to be > :>> some kind of nasty to me. > :>> My boxes are running all FreeBSD 4.2-STABLE and at this moment I > :>> switched off all IP filters, snort or inetd's option "-wW" to avoid > :>> blocking some services. > :>> > :>> I installed one machine as a master server and this worked fine. > :>> This machine runs "ypserv", "ypbind -s -S XXXXXX,localhost (or name of host)", > :>> "rpc.ypxfrd" and "rpc.yppasswdd". At first I tried also to run "keyserv" > :>> and "rpc.ypupdatedd" due to needs of secure RPC. > :>> > :>> Main problem is, that ypbind is not able to connect to the local server > :>> "ypserv" or when creating/changing new maps, the master server can not > :>> contact its slave servers, no matter why. The error is always that it > :>> could not create an UDP handle or "no such host or address" or similar. > :>> What's wrong? When running inetd -lwW I assured in /etc/hosts.allow all > :>> services like ypserv, rpc.XXX, keyserv and yppush,ypxfr to be accessd > :>> from the local net, also the IP filter is transparent for all packets > :>> on the lokal net. But it is always the same, no contact to the master > :>> or slave servers. > :>> > :>> On hosts which act as clients could never be initiated a service connection to > :>> master or slave server (all machines are on the same network). > :>> > :>> I tried the simplest installation described in the handbook - without success, > :>> the same behaviour (also on new machines without any specialized security installaions). > :>> I regret that SecureRPC is not mentioned further in the handbook (about how to use > :>> keys etc, maybe this is focus for the malfunction anywy). > :>> > :>> So, at last I would like to as whether the NIS/YP implementation on FreeBSD is > :>> broken or not? > :> > :> It works fine. I've have a 4.2-STABLE system running in hybrid mode > :>(both a server and client), pluse a 3.4-STABLE slave server. > :> > :> No NIS services use inetd so it pointless to pursue that. > :> > :> Do you have /var/yp/securenets set up? It sounds like it is not. > > Hello. > > Yes /var/yp/securenets is set up. I try now to set up it in a special way > to point to no securities to see whether this is the failure-impact or not. Do you have black lines in your securenets file? > :> > :>> Thanks, > :>> Oliver > :>> > :>> -- > :>> MfG > :>> O. Hartmann > :>> > :>> ohartman@mail.physik.uni-mainz.de > :>> ---------------------------------------------------------------- > :>> IT-Administration des Institut fuer Physik der Atmosphaere (IPA) > :>> ---------------------------------------------------------------- > :>> Johannes Gutenberg Universitaet Mainz > :>> Becherweg 21 > :>> 55099 Mainz > :>> > :>> Tel: +496131/3924662 (Maschinensaal) > :>> Tel: +496131/3924144 > :>> FAX: +496131/3923532 > :>> > :>> > :>> > :>> To Unsubscribe: send mail to majordomo@FreeBSD.org > :>> with "unsubscribe freebsd-stable" in the body of the message > :>> > :> > :> > :>Tom > :>Uniserve > :> > :> > > -- > MfG > O. Hartmann > > ohartman@mail.physik.uni-mainz.de > ---------------------------------------------------------------- > IT-Administration des Institut fuer Physik der Atmosphaere (IPA) > ---------------------------------------------------------------- > Johannes Gutenberg Universitaet Mainz > Becherweg 21 > 55099 Mainz > > Tel: +496131/3924662 (Maschinensaal) > Tel: +496131/3924144 > FAX: +496131/3923532 > > Tom Uniserve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 12:22:16 2001 Delivered-To: freebsd-stable@freebsd.org Received: from myzona.net (40bc2156.dsl.flashcom.net [64.188.33.86]) by hub.freebsd.org (Postfix) with ESMTP id CBDF637B503 for ; Sat, 17 Feb 2001 12:22:11 -0800 (PST) Received: from parkson [64.166.84.150] by myzona.net [64.188.33.86] with SMTP (MDaemon.v3.5.2.R) for ; Sat, 17 Feb 2001 12:15:33 -0800 Message-ID: <003f01c0991f$36312440$00e1fea9@parkson> Reply-To: "Alex M" From: "Alex M" To: "Jim Durham" , "FreeBSD STABLE" References: Subject: Re: Make world failure on ssl23.h Date: Sat, 17 Feb 2001 12:21:28 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-MDRemoteIP: 64.166.84.150 X-Return-Path: alex@myzona.net X-MDaemon-Deliver-To: freebsd-stable@freebsd.org Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG If you have followed the postings here u'd probably notice that i had the same prob, make world always failed on openssl stuff. I got rid of this prob by having src-all in my cvsupfile. -- Alex M aka TZapper. ----- Original Message ----- From: "Jim Durham" To: Sent: Saturday, February 17, 2001 5:22 AM Subject: Make world failure on ssl23.h > My system is currently 4.2-RELEASE. I have been trying to bring > it up to 4.2-STABLE. > > make world fails on > > /usr/obj/usr/src/secure/lib/libssl/openssl/ssl23.h complaining of > an unterminated character constant. > > Upon examination of ssl23.h, it is not a text file, or at least > it is extremely corrupted. > > I have tried cvsup'ing secure several times over the last 3 days > and no change. > > I have also removed /usr/obj and started "clean". No help. > > What am I doing wrong? > > Thanks, > > Jim Durham > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 13: 5:51 2001 Delivered-To: freebsd-stable@freebsd.org Received: from w2xo.pgh.pa.us (ipl-229-077.npt-sdsl.stargate.net [208.223.229.77]) by hub.freebsd.org (Postfix) with ESMTP id C546437B401 for ; Sat, 17 Feb 2001 13:05:48 -0800 (PST) Received: from shazam (shazam [192.168.5.3]) by w2xo.pgh.pa.us (8.9.3/8.9.3) with ESMTP id VAA56642; Sat, 17 Feb 2001 21:05:44 GMT (envelope-from durham@w2xo.pgh.pa.us) Date: Sat, 17 Feb 2001 16:06:20 -0500 (EST) From: Jim Durham X-Sender: durham@shazam.int To: Alex M Cc: FreeBSD STABLE Subject: Re: Make world failure on ssl23.h In-Reply-To: <003f01c0991f$36312440$00e1fea9@parkson> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 17 Feb 2001, Alex M wrote: > If you have followed the postings here u'd probably notice that i had the > same prob, make world always failed on openssl stuff. > I got rid of this prob by having src-all in my cvsupfile. > > > My system is currently 4.2-RELEASE. I have been trying to bring > > it up to 4.2-STABLE. > > > > make world fails on > > > > /usr/obj/usr/src/secure/lib/libssl/openssl/ssl23.h complaining of > > an unterminated character constant. > > > > Upon examination of ssl23.h, it is not a text file, or at least > > it is extremely corrupted. > > Hmmm... I just joined, but I did check the archives and saw nothing. I just must have missed it. However, I did have "src-all" in my cvsupfile when I originally cvsup'd the sources. I figured there might have been a fix, so I did a cvsup with just "secure" and "crypto" and that didn't fix it. I'll try "src-all" again. Thanks, Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 13: 9:45 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mobile.hub.org (SHW39-29.accesscable.net [24.138.39.29]) by hub.freebsd.org (Postfix) with ESMTP id 961F537B401; Sat, 17 Feb 2001 13:09:39 -0800 (PST) Received: from localhost (scrappy@localhost) by mobile.hub.org (8.11.1/8.11.1) with ESMTP id f1HL9bs92214; Sat, 17 Feb 2001 17:09:38 -0400 (AST) (envelope-from scrappy@hub.org) X-Authentication-Warning: mobile.hub.org: scrappy owned process doing -bs Date: Sat, 17 Feb 2001 17:09:37 -0400 (AST) From: The Hermit Hacker To: Cc: Subject: Any problems with vinum in 4.2-stable ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just pop'd down to my office this afternoon to once more reboot one of our servers ... its an IBM Netfinity server that has two 36gig and one 18gig concatenated together using VINUM, and running 4.2-STABLE as of two days ago ... The 'error' visible on the screen indicates a SCSI problem with da6, which we just replaced for a similar error, suspecting it was hardware, vs software, related ... now I'm not so sure ... The system hangs there with a page fault, and then what looks like tryign to sync system and a bunch of SCB errors ... The concatenated drive is used for a local mirror, and it *appears* that the bug doesn't start until it is hitting that da6 drive ... but two drives in a row, same problem? :( Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 13:39:33 2001 Delivered-To: freebsd-stable@freebsd.org Received: from aslan.scsiguy.com (mail.scsiguy.com [63.229.232.106]) by hub.freebsd.org (Postfix) with ESMTP id 5BA7A37B4EC; Sat, 17 Feb 2001 13:39:25 -0800 (PST) Received: from scsiguy.com (localhost [127.0.0.1]) by aslan.scsiguy.com (8.11.2/8.9.3) with ESMTP id f1HLdLO89643; Sat, 17 Feb 2001 14:39:21 -0700 (MST) (envelope-from gibbs@scsiguy.com) Message-Id: <200102172139.f1HLdLO89643@aslan.scsiguy.com> To: The Hermit Hacker Cc: freebsd-stable@FreeBSD.ORG, freebsd-scsi@FreeBSD.ORG Subject: Re: Any problems with vinum in 4.2-stable ? In-Reply-To: Your message of "Sat, 17 Feb 2001 17:09:37 -0400." Date: Sat, 17 Feb 2001 14:39:21 -0700 From: "Justin T. Gibbs" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >The system hangs there with a page fault, and then what looks like tryign >to sync system and a bunch of SCB errors ... ... >The concatenated drive is used for a local mirror, and it *appears* that >the bug doesn't start until it is hitting that da6 drive ... but two >drives in a row, same problem? :( You'll have to be a bit more specific about "the problem" for anyone to know. Since this is a remote installation, you must have serial console output from it, no? -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 14:10:42 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mobile.hub.org (SHW39-29.accesscable.net [24.138.39.29]) by hub.freebsd.org (Postfix) with ESMTP id 26D9037B491; Sat, 17 Feb 2001 14:10:38 -0800 (PST) Received: from localhost (scrappy@localhost) by mobile.hub.org (8.11.1/8.11.1) with ESMTP id f1HMAOA92455; Sat, 17 Feb 2001 18:10:24 -0400 (AST) (envelope-from scrappy@hub.org) X-Authentication-Warning: mobile.hub.org: scrappy owned process doing -bs Date: Sat, 17 Feb 2001 18:10:24 -0400 (AST) From: The Hermit Hacker To: "Justin T. Gibbs" Cc: , Subject: Re: Any problems with vinum in 4.2-stable ? In-Reply-To: <200102172139.f1HLdLO89643@aslan.scsiguy.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 17 Feb 2001, Justin T. Gibbs wrote: > >The system hangs there with a page fault, and then what looks like tryign > >to sync system and a bunch of SCB errors ... > > ... > > >The concatenated drive is used for a local mirror, and it *appears* that > >the bug doesn't start until it is hitting that da6 drive ... but two > >drives in a row, same problem? :( > > You'll have to be a bit more specific about "the problem" for anyone to > know. Since this is a remote installation, you must have serial console > output from it, no? Nope, sorry, this is a local machine ... next time it happens, I'll write down everything left on the screen for submission, but figured that I'd see if there was anything in the way of known bugs first ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 14:50: 4 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mass.dis.org (user-uinjtfm.biz.mindspring.com [165.121.245.246]) by hub.freebsd.org (Postfix) with ESMTP id C63D237B401 for ; Sat, 17 Feb 2001 14:49:58 -0800 (PST) Received: from mass.dis.org (localhost [127.0.0.1]) by mass.dis.org (8.11.1/8.11.1) with ESMTP id f1HMok901832; Sat, 17 Feb 2001 14:50:47 -0800 (PST) (envelope-from msmith@mass.dis.org) Message-Id: <200102172250.f1HMok901832@mass.dis.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: clefevre@poboxes.com Cc: Kris Kennaway , Frederic Nguyen , freebsd-stable@FreeBSD.ORG Subject: Re: compress bootdisk In-reply-to: Your message of "17 Feb 2001 17:55:01 +0100." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 17 Feb 2001 14:50:46 -0800 From: Mike Smith Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Kris Kennaway writes: > > > On Sat, Feb 17, 2001 at 05:23:30AM +0100, Frederic Nguyen wrote: > > > Does anybody know if there is any possibility to create a bootdisk with a > > > compress kernel image? (just like Linux with bzlmage) > > > I need asr raid drivers and kernel size gets huge because of it! > > > > Yes; this is what's done with the install floppies. Just gzip the > > kernel and it should work. > > kgzip is more efficient that gzip : > > # l kernel* > -r-xr-xr-x 1 root wheel 2316502 Jan 23 07:34 kernel > -r-xr-xr-x 1 root wheel 1031486 Feb 17 17:50 kernel.gz > -rwxr-xr-x 1 root wheel 919906 Feb 17 17:51 kernel.kgz > > and this may count on a floppy :) kgzip uses 'gzip -9'. However, this is all rather immaterial, as the 'asr' driver can be built as a module. Put it on a floppy, stick it in, say 'load asr.ko' at the loader prompt. No kernel rebuilding, compressing, or any of that crap. Also relevant is that the 'asr' driver is *already* in GENERIC. -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] V I C T O R Y N O T V E N G E A N C E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 16: 2:28 2001 Delivered-To: freebsd-stable@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 5A58837B401; Sat, 17 Feb 2001 16:02:18 -0800 (PST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id E91796A916; Sun, 18 Feb 2001 10:32:16 +1030 (CST) Date: Sun, 18 Feb 2001 10:32:16 +1030 From: Greg Lehey To: The Hermit Hacker Cc: "Justin T. Gibbs" , freebsd-stable@FreeBSD.ORG, freebsd-scsi@FreeBSD.ORG Subject: Re: Any problems with vinum in 4.2-stable ? Message-ID: <20010218103216.J21615@wantadilla.lemis.com> References: <200102172139.f1HLdLO89643@aslan.scsiguy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from scrappy@hub.org on Sat, Feb 17, 2001 at 06:10:24PM -0400 Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Saturday, 17 February 2001 at 18:10:24 -0400, The Hermit Hacker wrote: > On Sat, 17 Feb 2001, Justin T. Gibbs wrote: >>> The system hangs there with a page fault, and then what looks like tryign >>> to sync system and a bunch of SCB errors ... >> >> ... >> >>> The concatenated drive is used for a local mirror, and it *appears* that >>> the bug doesn't start until it is hitting that da6 drive ... but two >>> drives in a row, same problem? :( >> >> You'll have to be a bit more specific about "the problem" for anyone to >> know. Since this is a remote installation, you must have serial console >> output from it, no? > > Nope, sorry, this is a local machine ... next time it happens, I'll write > down everything left on the screen for submission, but figured that I'd > see if there was anything in the way of known bugs first ... This looks more like a disk subsystem problem than a Vinum problem, but I'm sure the information requested at http://www.vinumvm.org/vinum/how-to-debug.html would help establish that as well. Greg -- Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 16:39:35 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ultrakill.noc.demon.net (ultrakill.noc.demon.net [195.11.55.73]) by hub.freebsd.org (Postfix) with ESMTP id 2270437B491 for ; Sat, 17 Feb 2001 16:39:33 -0800 (PST) Received: from chrise by ultrakill.noc.demon.net with local (Exim 3.20 #1) id 14UHsq-0003HE-00; Sun, 18 Feb 2001 00:39:24 +0000 Date: Sun, 18 Feb 2001 00:39:24 +0000 From: Chris Elsworth To: Mike Bytnar Cc: stable@FreeBSD.ORG, Bradley Kite Subject: Re: ipfw query.. Message-ID: <20010218003924.B12575@demon.net> References: <20010215130342.A95395@demon.net> <20010215135309.A23654@rug-rats.org> <3A8BE217.7AF6BFBD@herculeez.com> <20010215140949.A96244@demon.net> <3A8D41B9.F79358D3@auvo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8D41B9.F79358D3@auvo.com>; from mbytnar@auvo.com on Fri, Feb 16, 2001 at 09:05:29am -0600 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Feb 16, 2001 at 09:05:29am -0600, Mike Bytnar wrote: > sysctl -w net.inet.ip.fw.one_pass=0 > > This flag allows packets to pass through the pipes, until they are accepted by a > pass or fail rule. But the configuration can be tricky. > Another way is to place your packet processing (such as natd) first, then pass > through the pipes. Well, I don't need natd or anything - the only stuff I need to do (this FreeBSD box is acting as a bridge) is pass the packets through the pipe and then to the firewall rules to determine whether to drop the packet or not. The order isn't important so long as it all gets done.. It currently doesn't - the sysctl command doesn't fix it, either.. -- Chris Elsworth tel: 020 8371 1041 _ . Systems Administrator mob: 07968 324 693 demon @ thus . . Web & Hosting Team chrise@demon.net http://www.demon.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 17:23:38 2001 Delivered-To: freebsd-stable@freebsd.org Received: from epsilon.lucida.ca (epsilon.lucida.ca [209.47.215.67]) by hub.freebsd.org (Postfix) with SMTP id D03EC37B491 for ; Sat, 17 Feb 2001 17:23:27 -0800 (PST) Received: (qmail 20313 invoked by uid 1000); 18 Feb 2001 01:23:28 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 18 Feb 2001 01:23:28 -0000 Date: Sat, 17 Feb 2001 20:23:27 -0500 (EST) From: Matt Heckaman To: FreeBSD-STABLE Subject: Continued timecounter problems on 4.2-STABLE Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-1853338447-982459407=:20259" X-Spam-Rating: localhost 1.6.2 0/1000/N Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-1853338447-982459407=:20259 Content-Type: TEXT/PLAIN; charset=US-ASCII -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi All: I'll start off by saying that I have read the list archives and freebsd troubleshooting section on calcru problems, the solutions presented have not worked in my case. I am at a total loss now. Background: This machine has been running for 6 months prior with no problems at all. The problems started when I added a new video card, however that is not a change that I can remove, it's absolutely needed for the machine. I have increased NTIMECOUNTER in the kernel as suggested, I started with 15 and brought it up to 30 in steps of 5. This has had no affect at all, I have also set kern.timecounter.method to 1 as recommended. This has had no affect as well. Interesting parts: For some reason, the TSC is no longer seen at all! After the addition of the video card, TSC no longer shows up in dmesg. I see this; FreeBSD 4.2-STABLE #0: Fri Feb 9 01:40:55 EST 2001 root@epsilon.lucida.ca:/usr/src/sys/compile/EPSILON Timecounter "i8254" frequency 1193182 Hz ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ CPU: Pentium III/Pentium III Xeon/Celeron (548.32-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x673 Stepping = 3 There should be a TSC line under that, like on this machine: Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 400911205 Hz CPU: Pentium II/Pentium II Xeon/Celeron (400.91-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x660 Stepping = 0 I cannot imagine what would cause TSC to go away, but it happened when I put in the video card (PCI Voodoo 4 4500). I wont pretend to understand how the kernel and the timecounters work on a low level, but there must be something that I can do; other than replacing the video card, which is not an option at all I'm afraid. I have attached my full dmesg and kernel configuration, I would appreciate it if anyone has any ideas, I desperately need the help. Thanks. Matt * Matt Heckaman - mailto:matt@lucida.ca http://www.lucida.ca/pgp * * GPG fingerprint - 53CA 8320 C8F6 32ED 9DDF 036E 3171 C093 4AD3 1364 * -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: http://www.lucida.ca/pgp iD8DBQE6jyQQMXHAk0rTE2QRAhfwAKCEJMB0jjrNMAjPUV6E47VY0/gInwCfWliN ZWmxVY+kItLuQRBCVCPIX34= =Pmtv -----END PGP SIGNATURE----- --0-1853338447-982459407=:20259 Content-Type: TEXT/plain; name="dmesg.txt" Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: dmesg.txt Content-Disposition: attachment; filename="dmesg.txt" Q29weXJpZ2h0IChjKSAxOTkyLTIwMDEgVGhlIEZyZWVCU0QgUHJvamVjdC4N CkNvcHlyaWdodCAoYykgMTk3OSwgMTk4MCwgMTk4MywgMTk4NiwgMTk4OCwg MTk4OSwgMTk5MSwgMTk5MiwgMTk5MywgMTk5NA0KCVRoZSBSZWdlbnRzIG9m IHRoZSBVbml2ZXJzaXR5IG9mIENhbGlmb3JuaWEuIEFsbCByaWdodHMgcmVz ZXJ2ZWQuDQpGcmVlQlNEIDQuMi1TVEFCTEUgIzA6IEZyaSBGZWIgIDkgMDE6 NDA6NTUgRVNUIDIwMDENCiAgICByb290QGVwc2lsb24ubHVjaWRhLmNhOi91 c3Ivc3JjL3N5cy9jb21waWxlL0VQU0lMT04NClRpbWVjb3VudGVyICJpODI1 NCIgIGZyZXF1ZW5jeSAxMTkzMTgyIEh6DQpDUFU6IFBlbnRpdW0gSUlJL1Bl bnRpdW0gSUlJIFhlb24vQ2VsZXJvbiAoNTQ4LjMyLU1IeiA2ODYtY2xhc3Mg Q1BVKQ0KICBPcmlnaW4gPSAiR2VudWluZUludGVsIiAgSWQgPSAweDY3MyAg U3RlcHBpbmcgPSAzDQogIEZlYXR1cmVzPTB4MzgzZmJmZjxGUFUsVk1FLERF LFBTRSxUU0MsTVNSLFBBRSxNQ0UsQ1g4LEFQSUMsU0VQLE1UUlIsUEdFLE1D QSxDTU9WLFBBVCxQU0UzNixNTVgsRlhTUixTU0U+DQpyZWFsIG1lbW9yeSAg PSA1MzY4NjI3MjAgKDUyNDI4MEsgYnl0ZXMpDQphdmFpbCBtZW1vcnkgPSA1 MTg1MTI2NDAgKDUwNjM2MEsgYnl0ZXMpDQpDaGFuZ2luZyBBUElDIElEIGZv ciBJTyBBUElDICMwIGZyb20gMCB0byAyIG9uIGNoaXANClByb2dyYW1taW5n IDI0IHBpbnMgaW4gSU9BUElDICMwDQpJT0FQSUMgIzAgaW50cGluIDIgLT4g aXJxIDANCkZyZWVCU0QvU01QOiBNdWx0aXByb2Nlc3NvciBtb3RoZXJib2Fy ZA0KIGNwdTAgKEJTUCk6IGFwaWMgaWQ6ICAxLCB2ZXJzaW9uOiAweDAwMDQw MDExLCBhdCAweGZlZTAwMDAwDQogY3B1MSAoQVApOiAgYXBpYyBpZDogIDAs IHZlcnNpb246IDB4MDAwNDAwMTEsIGF0IDB4ZmVlMDAwMDANCiBpbzAgKEFQ SUMpOiBhcGljIGlkOiAgMiwgdmVyc2lvbjogMHgwMDE3MDAxMSwgYXQgMHhm ZWMwMDAwMA0KUHJlbG9hZGVkIGVsZiBrZXJuZWwgIkVQU0lMT04iIGF0IDB4 YzAzMmMwMDAuDQpQZW50aXVtIFBybyBNVFJSIHN1cHBvcnQgZW5hYmxlZA0K bnB4MDogPG1hdGggcHJvY2Vzc29yPiBvbiBtb3RoZXJib2FyZA0KbnB4MDog SU5UIDE2IGludGVyZmFjZQ0KcGNpYjA6IDxJbnRlbCA4MjQ0M0JYICg0NDAg QlgpIGhvc3QgdG8gUENJIGJyaWRnZT4gb24gbW90aGVyYm9hcmQNCnBjaTA6 IDxQQ0kgYnVzPiBvbiBwY2liMA0KcGNpYjE6IDxJbnRlbCA4MjQ0M0JYICg0 NDAgQlgpIFBDSS1QQ0kgKEFHUCkgYnJpZGdlPiBhdCBkZXZpY2UgMS4wIG9u IHBjaTANCnBjaTE6IDxQQ0kgYnVzPiBvbiBwY2liMQ0KcGNpMTogPEFUSSBN YWNoNjQtR1cgZ3JhcGhpY3MgYWNjZWxlcmF0b3I+IGF0IDAuMA0KcGNpYjI6 IDxERUMgMjExNTIgUENJLVBDSSBicmlkZ2U+IGF0IGRldmljZSAyLjAgb24g cGNpMA0KcGNpMjogPFBDSSBidXM+IG9uIHBjaWIyDQppc2FiMDogPEludGVs IDgyMzcxQUIgUENJIHRvIElTQSBicmlkZ2U+IGF0IGRldmljZSA3LjAgb24g cGNpMA0KaXNhMDogPElTQSBidXM+IG9uIGlzYWIwDQphdGFwY2kwOiA8SW50 ZWwgUElJWDQgQVRBMzMgY29udHJvbGxlcj4gcG9ydCAweGZmYTAtMHhmZmFm IGF0IGRldmljZSA3LjEgb24gcGNpMA0KYXRhMDogYXQgMHgxZjAgaXJxIDE0 IG9uIGF0YXBjaTANCnBjaTA6IDxJbnRlbCA4MjM3MUFCL0VCIChQSUlYNCkg VVNCIGNvbnRyb2xsZXI+IGF0IDcuMiBpcnEgMTkNCmludHBtMDogPEludGVs IDgyMzcxQUIgUG93ZXIgbWFuYWdlbWVudCBjb250cm9sbGVyPiBwb3J0IDB4 ODUwLTB4ODVmIGlycSA5IGF0IGRldmljZSA3LjMgb24gcGNpMA0KaW50cG0w OiBJL08gbWFwcGVkIDg1MA0KaW50cG0wOiBpbnRyIElSUSA5IGVuYWJsZWQg cmV2aXNpb24gMA0Kc21idXMwOiA8U3lzdGVtIE1hbmFnZW1lbnQgQnVzPiBv biBpbnRzbWIwDQpzbWIwOiA8U01CdXMgZ2VuZXJhbCBwdXJwb3NlIEkvTz4g b24gc21idXMwDQppbnRwbTA6IFBNIEkvTyBtYXBwZWQgODAwIA0KYWhjMDog PEFkYXB0ZWMgMjk0MCBVbHRyYTIgU0NTSSBhZGFwdGVyPiBwb3J0IDB4ZDgw MC0weGQ4ZmYgbWVtIDB4ZmMwMDAwMDAtMHhmYzAwMGZmZiBpcnEgMTcgYXQg ZGV2aWNlIDEzLjAgb24gcGNpMA0KYWljNzg5MC85MTogV2lkZSBDaGFubmVs IEEsIFNDU0kgSWQ9NywgMzIvMjU1IFNDQnMNCnhsMDogPDNDb20gM2M5MDVC LVRYIEZhc3QgRXRoZXJsaW5rIFhMPiBwb3J0IDB4ZGMwMC0weGRjN2YgbWVt IDB4ZmMwMDEwMDAtMHhmYzAwMTA3ZiBpcnEgMTggYXQgZGV2aWNlIDE0LjAg b24gcGNpMA0KeGwwOiBFdGhlcm5ldCBhZGRyZXNzOiAwMDoxMDo0YjozNzpl ODo3NQ0KbWlpYnVzMDogPE1JSSBidXM+IG9uIHhsMA0KeGxwaHkwOiA8M0Nv bSBpbnRlcm5hbCBtZWRpYSBpbnRlcmZhY2U+IG9uIG1paWJ1czANCnhscGh5 MDogIDEwYmFzZVQsIDEwYmFzZVQtRkRYLCAxMDBiYXNlVFgsIDEwMGJhc2VU WC1GRFgsIGF1dG8NCnBjaTA6IDwzRGZ4IG1vZGVsIDAwMDkgZ3JhcGhpY3Mg YWNjZWxlcmF0b3I+IGF0IDE2LjAgaXJxIDE5DQpmZGMwOiA8TkVDIDcyMDY1 QiBvciBjbG9uZT4gYXQgcG9ydCAweDNmMC0weDNmNSwweDNmNyBpcnEgNiBk cnEgMiBvbiBpc2EwDQpmZGMwOiBGSUZPIGVuYWJsZWQsIDggYnl0ZXMgdGhy ZXNob2xkDQpmZDA6IDwxNDQwLUtCIDMuNSIgZHJpdmU+IG9uIGZkYzAgZHJp dmUgMA0KYXRrYmRjMDogPEtleWJvYXJkIGNvbnRyb2xsZXIgKGk4MDQyKT4g YXQgcG9ydCAweDYwLDB4NjQgb24gaXNhMA0KYXRrYmQwOiA8QVQgS2V5Ym9h cmQ+IGlycSAxIG9uIGF0a2JkYzANCnBzbTA6IDxQUy8yIE1vdXNlPiBpcnEg MTIgb24gYXRrYmRjMA0KcHNtMDogbW9kZWwgSW50ZWxsaU1vdXNlIEV4cGxv cmVyLCBkZXZpY2UgSUQgNA0KdmdhMDogPEdlbmVyaWMgSVNBIFZHQT4gYXQg cG9ydCAweDNjMC0weDNkZiBpb21lbSAweGEwMDAwLTB4YmZmZmYgb24gaXNh MA0Kc2MwOiA8U3lzdGVtIGNvbnNvbGU+IG9uIGlzYTANCnNjMDogVkdBIDwx NiB2aXJ0dWFsIGNvbnNvbGVzLCBmbGFncz0weDIwMD4NCnNpbzAgYXQgcG9y dCAweDNmOC0weDNmZiBpcnEgNCBmbGFncyAweDEwIG9uIGlzYTANCnNpbzA6 IHR5cGUgMTY1NTBBDQpzaW8xIGF0IHBvcnQgMHgyZjgtMHgyZmYgaXJxIDMg b24gaXNhMA0Kc2lvMTogdHlwZSAxNjU1MEENCnBwYzA6IDxQYXJhbGxlbCBw b3J0PiBhdCBwb3J0IDB4Mzc4LTB4MzdmIGlycSA3IG9uIGlzYTANCnBwYzA6 IFNNQy1saWtlIGNoaXBzZXQgKEVDUC9FUFAvUFMyL05JQkJMRSkgaW4gQ09N UEFUSUJMRSBtb2RlDQpwcGMwOiBGSUZPIHdpdGggMTYvMTYvOCBieXRlcyB0 aHJlc2hvbGQNCnBwaTA6IDxQYXJhbGxlbCBJL08+IG9uIHBwYnVzMA0Kc2Jj MDogPENyZWF0aXZlIFZpQlJBMTZDPiBhdCBwb3J0IDB4MjIwLTB4MjJmLDB4 MzMwLTB4MzMxLDB4Mzg4LTB4MzhiIGlycSA1IGRycSAxLDUgb24gaXNhMA0K cGNtMDogPFNCIERTUCA0LjEzPiBvbiBzYmMwDQpBUElDX0lPOiBUZXN0aW5n IDgyNTQgaW50ZXJydXB0IGRlbGl2ZXJ5DQpBUElDX0lPOiByb3V0aW5nIDgy NTQgdmlhIElPQVBJQyAjMCBpbnRwaW4gMg0KSVAgcGFja2V0IGZpbHRlcmlu ZyBpbml0aWFsaXplZCwgZGl2ZXJ0IGRpc2FibGVkLCBydWxlLWJhc2VkIGZv cndhcmRpbmcgZGlzYWJsZWQsIGRlZmF1bHQgdG8gYWNjZXB0LCBsb2dnaW5n IGRpc2FibGVkDQpTTVA6IEFQIENQVSAjMSBMYXVuY2hlZCENCmFjZDA6IENE Uk9NIDxTQU1TVU5HIFNDLTE0MEI+IGF0IGF0YTAtbWFzdGVyIHVzaW5nIFBJ TzQNCldhaXRpbmcgMiBzZWNvbmRzIGZvciBTQ1NJIGRldmljZXMgdG8gc2V0 dGxlDQpNb3VudGluZyByb290IGZyb20gdWZzOi9kZXYvZGEwczFhDQpkYTAg YXQgYWhjMCBidXMgMCB0YXJnZXQgMCBsdW4gMA0KZGEwOiA8UVVBTlRVTSBB VExBUyBWICA5IFdMUyAwMjAxPiBGaXhlZCBEaXJlY3QgQWNjZXNzIFNDU0kt MyBkZXZpY2UgDQpkYTA6IDgwLjAwME1CL3MgdHJhbnNmZXJzICg0MC4wMDBN SHosIG9mZnNldCA2MywgMTZiaXQpLCBUYWdnZWQgUXVldWVpbmcgRW5hYmxl ZA0KZGEwOiA4NjgzTUIgKDE3NzgzMjQ5IDUxMiBieXRlIHNlY3RvcnM6IDI1 NUggNjNTL1QgMTEwNkMpDQpkYTEgYXQgYWhjMCBidXMgMCB0YXJnZXQgMSBs dW4gMA0KZGExOiA8UVVBTlRVTSBBVExBU19WXzE4X1dMUyAwMjMwPiBGaXhl ZCBEaXJlY3QgQWNjZXNzIFNDU0ktMyBkZXZpY2UgDQpkYTE6IDgwLjAwME1C L3MgdHJhbnNmZXJzICg0MC4wMDBNSHosIG9mZnNldCA2MywgMTZiaXQpLCBU YWdnZWQgUXVldWVpbmcgRW5hYmxlZA0KZGExOiAxNzUxME1CICgzNTg2MTM4 OCA1MTIgYnl0ZSBzZWN0b3JzOiAyNTVIIDYzUy9UIDIyMzJDKQ0K --0-1853338447-982459407=:20259 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=EPSILON Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: EPSILON Content-Disposition: attachment; filename=EPSILON IyBFUFNJTE9OLkxVQ0lEQS5DQSwgNC4yIEtFUk5FTA0KIyBVcGRhdGVkOiAy MDAyLzAyLzA5DQoNCm1hY2hpbmUgICAgICAgICBpMzg2DQpjcHUgICAgICAg ICAgICAgSTY4Nl9DUFUNCmlkZW50ICAgICAgICAgICBFUFNJTE9ODQptYXh1 c2VycyAgICAgICAgNTEyDQpvcHRpb25zICAgICAgICAgTk1CQ0xVU1RFUlM9 MzI3NjgNCm1ha2VvcHRpb25zCURFQlVHPS1nDQptYWtlb3B0aW9ucwlLRVJO RUw9RVBTSUxPTg0KDQojIFNNUA0KDQpvcHRpb25zICAgICAgICAgU01QICAg ICAgICAgICAgICAgICAgICAgIyBTeW1tZXRyaWMgTXVsdGlQcm9jZXNzb3Ig S2VybmVsDQpvcHRpb25zICAgICAgICAgQVBJQ19JTyAgICAgICAgICAgICAg ICAgIyBTeW1tZXRyaWMgKEFQSUMpIEkvTw0KDQojIE1haW4gT3B0aW9ucw0K b3B0aW9ucyAgICAgICAgIENEOTY2MCAgICAgICAgICAgICAgICAgICMgSVNP IDk2NjAgRmlsZXN5c3RlbQ0Kb3B0aW9ucyAgICAgICAgIENEOTY2MF9ST09U ICAgICAgICAgICAgICMgQ0QtUk9NIHVzYWJsZSBhcyByb290LiAiQ0Q5NjYw Ig0Kb3B0aW9ucyAgICAgICAgIENPTVBBVF80MyAgICAgICAgICAgICAgICMg Q29tcGF0aWJsZSB3aXRoIEJTRCA0LjMNCm9wdGlvbnMgICAgICAgICBDT01Q QVRfTElOVVggICAgICAgICAgICAjIENvbXBhdGlibGUgd2l0aCBMaW51eA0K b3B0aW9ucyAgICAgICAgIEZGUyAgICAgICAgICAgICAgICAgICAgICMgQmVy a2VsZXkgRmFzdCBGaWxlc3lzdGVtDQpvcHRpb25zICAgICAgICAgRkZTX1JP T1QgICAgICAgICAgICAgICAgIyBGRlMgdXNhYmxlIGFzIHJvb3QgZGV2aWNl OiBrZWVwIHRoaXMhDQpvcHRpb25zICAgICAgICAgSU5DTFVERV9DT05GSUdf RklMRSAgICAgIyBJbmNsdWRlIHRoaXMgZmlsZSBpbiB0aGUga2VybmVsDQpv cHRpb25zICAgICAgICAgSU5FVCAgICAgICAgICAgICAgICAgICAgIyBJbnRl ck5FVHdvcmtpbmcNCm9wdGlvbnMgICAgICAgICBLVFJBQ0UgICAgICAgICAg ICAgICAgICAjIGt0cmFjZSgxKSBzeXNjYWxsIHRyYWNlIHN1cHBvcnQNCm9w dGlvbnMgICAgICAgICBNRlMgICAgICAgICAgICAgICAgICAgICAjIE1lbW9y eSBGaWxlc3lzdGVtDQpvcHRpb25zICAgICAgICAgTURfUk9PVCAgICAgICAg ICAgICAgICAgIyBNRCBpcyBhIHBvdGVudGlhbCByb290IGRldmljZQ0Kb3B0 aW9ucyAgICAgICAgIE1TRE9TRlMgICAgICAgICAgICAgICAgICMgTVNET1Mg RmlsZXN5c3RlbQ0Kb3B0aW9ucwkJTlRJTUVDT1VOVEVSPTMwCQkjIEZvciBj YWxjcnUgcHJvYmxlbQ0Kb3B0aW9ucyAgICAgICAgIFBST0NGUyAgICAgICAg ICAgICAgICAgICMgUHJvY2VzcyBmaWxlc3lzdGVtDQpvcHRpb25zICAgICAg ICAgU09GVFVQREFURVMgICAgICAgICAgICAgIyBFbmFibGUgRkZTIHNvZnQg dXBkYXRlcyBzdXBwb3J0DQpvcHRpb25zICAgICAgICAgVUNPTlNPTEUgICAg ICAgICAgICAgICAgIyBBbGxvdyB1c2VycyB0byBncmFiIHRoZSBjb25zb2xl DQpvcHRpb25zICAgICAgICAgVVNFUkNPTkZJRyAgICAgICAgICAgICAgIyBi b290IC1jIGVkaXRvcg0Kb3B0aW9ucyAgICAgICAgIFZJU1VBTF9VU0VSQ09O RklHICAgICAgICMgdmlzdWFsIGJvb3QgLWMgZWRpdG9yDQoNCiMgUE9TSVgg T3B0aW9ucw0Kb3B0aW9ucyAgICAgICAgIFAxMDAzXzFCDQpvcHRpb25zICAg ICAgICAgX0tQT1NJWF9QUklPUklUWV9TQ0hFRFVMSU5HDQpvcHRpb25zICAg ICAgICAgX0tQT1NJWF9WRVJTSU9OPTE5OTMwOUwNCg0KIyBTWVNWIE9wdGlv bnMNCm9wdGlvbnMgICAgICAgICBTWVNWTVNHDQpvcHRpb25zICAgICAgICAg U1lTVlNFTQ0Kb3B0aW9ucyAgICAgICAgIFNZU1ZTSE0NCm9wdGlvbnMJCVNI TVNFRz0xMDANCg0KIyBGaXJld2FsbCBPcHRpb25zDQpvcHRpb25zICAgICAg ICAgSVBGSVJFV0FMTA0Kb3B0aW9ucyAgICAgICAgIElQRklSRVdBTExfREVG QVVMVF9UT19BQ0NFUFQNCg0KIyBDb2xvciBPcHRpb25zDQpvcHRpb25zCQlT Q19OT1JNX0FUVFI9IihGR19MSUdIVENZQU58QkdfQkxBQ0spIg0Kb3B0aW9u cwkJU0NfTk9STV9SRVZfQVRUUj0iKEZHX0JMQUNLfEJHX0NZQU4pIg0Kb3B0 aW9ucwkJU0NfS0VSTkVMX0NPTlNfQVRUUj0iKEZHX0xJR0hUQ1lBTnxCR19C TEFDSykiDQpvcHRpb25zCQlTQ19LRVJORUxfQ09OU19SRVZfQVRUUj0iKEZH X0JMQUNLfEJHX0NZQU4pIg0KDQpkZXZpY2UgICAgICAgICAgaXNhDQpkZXZp Y2UgICAgICAgICAgZWlzYQ0KZGV2aWNlICAgICAgICAgIHBjaQ0KDQojIEZs b3BweSBkcml2ZXMNCmRldmljZSAgICAgICAgICBmZGMwICAgIGF0IGlzYT8g cG9ydCBJT19GRDEgaXJxIDYgZHJxIDINCmRldmljZSAgICAgICAgICBmZDAg ICAgIGF0IGZkYzAgZHJpdmUgMA0KZGV2aWNlICAgICAgICAgIGZkMSAgICAg YXQgZmRjMCBkcml2ZSAxDQoNCiMgQVRBIGFuZCBBVEFQSSBkZXZpY2VzDQpk ZXZpY2UgICAgICAgICAgYXRhDQpkZXZpY2UgICAgICAgICAgYXRhMCAgICBh dCBpc2E/IHBvcnQgSU9fV0QxIGlycSAxNA0KZGV2aWNlICAgICAgICAgIGF0 YTEgICAgYXQgaXNhPyBwb3J0IElPX1dEMiBpcnEgMTUNCmRldmljZSAgICAg ICAgICBhdGFkaXNrICAgICAgICAgIyBBVEEgZGlzayBkcml2ZXMNCmRldmlj ZSAgICAgICAgICBhdGFwaWNkICAgICAgICAgIyBBVEFQSSBDRFJPTSBkcml2 ZXMNCmRldmljZSAgICAgICAgICBhdGFwaWZkICAgICAgICAgIyBBVEFQSSBm bG9wcHkgZHJpdmVzDQpvcHRpb25zICAgICAgICAgQVRBX1NUQVRJQ19JRAkj IFN0YXRpYyBkZXZpY2UgbnVtYmVyaW5nDQoNCiMgU0NTSSBkZXZpY2VzDQpk ZXZpY2UJCWFoYwkJIyBBSEEyOTQwIGFuZCBvbmJvYXJkIEFJQzd4eHggZGV2 aWNlcw0KZGV2aWNlCQlzY2J1cwkJIyBTQ1NJIGJ1cyAocmVxdWlyZWQpDQpk ZXZpY2UJCWRhCQkjIERpcmVjdCBBY2Nlc3MgKGRpc2tzKQ0KZGV2aWNlCQlz YQkJIyBTZXF1ZW50aWFsIEFjY2VzcyAodGFwZSwgZXRjKQ0KZGV2aWNlCQlj ZAkJIyBDRA0KZGV2aWNlCQlwYXNzCQkjIFBhc3N0aHJvdWdoIGRldmljZSAo RGlyZWN0IFNDU0kgYWNjZXNzKQ0KDQojIGF0a2JkYzAgY29udHJvbHMgYm90 aCB0aGUga2V5Ym9hcmQgYW5kIHRoZSBQUy8yIG1vdXNlDQpkZXZpY2UgICAg ICAgICAgYXRrYmRjMCBhdCBpc2E/IHBvcnQgSU9fS0JEDQpkZXZpY2UgICAg ICAgICAgYXRrYmQwICBhdCBhdGtiZGM/IGlycSAxDQpkZXZpY2UJCXBzbTAJ YXQgYXRrYmRjPyBpcnEgMTINCg0KIyBUaGUgdmlkZW8gY2FyZCBkcml2ZXIu DQpkZXZpY2UgICAgICAgICAgdmdhMCAgICBhdCBpc2E/DQoNCiMgc3lzY29u cyBpcyB0aGUgZGVmYXVsdCBjb25zb2xlIGRyaXZlciwgcmVzZW1ibGluZyBh biBTQ08gY29uc29sZQ0KZGV2aWNlICAgICAgICAgIHNjMCAgICAgYXQgaXNh Pw0KDQojIEZsb2F0aW5nIHBvaW50IHN1cHBvcnQgLSBkbyBub3QgZGlzYWJs ZS4NCmRldmljZSAgICAgICAgICBucHgwICAgIGF0IG5leHVzPyBwb3J0IElP X05QWCBpcnEgMTMNCg0KIyBTZXJpYWwgKENPTSkgcG9ydHMNCmRldmljZSAg ICAgICAgICBzaW8wICAgIGF0IGlzYT8gcG9ydCBJT19DT00xIGZsYWdzIDB4 MTAgaXJxIDQNCmRldmljZSAgICAgICAgICBzaW8xICAgIGF0IGlzYT8gcG9y dCBJT19DT00yIGlycSAzDQpkZXZpY2UgICAgICAgICAgc2lvMiAgICBhdCBp c2E/IGRpc2FibGUgcG9ydCBJT19DT00zIGlycSA1DQpkZXZpY2UgICAgICAg ICAgc2lvMyAgICBhdCBpc2E/IGRpc2FibGUgcG9ydCBJT19DT000IGlycSA5 DQoNCiMgUGFyYWxsZWwgcG9ydA0KZGV2aWNlICAgICAgICAgIHBwYzAgICAg YXQgaXNhPyBpcnEgNw0KZGV2aWNlICAgICAgICAgIHBwYnVzICAgICAgICAg ICAjIFBhcmFsbGVsIHBvcnQgYnVzIChyZXF1aXJlZCkNCmRldmljZSAgICAg ICAgICBwcGkgICAgICAgICAgICAgIyBQYXJhbGxlbCBwb3J0IGludGVyZmFj ZSBkZXZpY2UNCg0KIyBTeXN0ZW0gTWFuYWdlbWVudCBCdXMNCmRldmljZQkJ c21idXMJCSMgQnVzIHN1cHBvcnQsIHJlcXVpcmVkIGZvciBzbWIgYmVsb3cu DQpkZXZpY2UJCXNtYgkJIyBzdGFuZGFyZCBpbyB0aHJvdWdoIC9kZXYvc21i Kg0KZGV2aWNlCQlpbnRwbQkJIyBJbnRlbCBQSUlYNCBQb3dlciBNYW5hZ2Vt ZW50IFVuaXQNCg0KIyBGb3IgUG5QL1BDSSBzb3VuZCBjYXJkcw0KZGV2aWNl ICAgICAgICAgIHBjbQ0KDQojIFBDSSBFdGhlcm5ldCBOSUNzIHRoYXQgdXNl IHRoZSBjb21tb24gTUlJIGJ1cyBjb250cm9sbGVyIGNvZGUuDQpkZXZpY2Ug ICAgICAgICAgbWlpYnVzICAgICAgICAgICMgTUlJIGJ1cyBzdXBwb3J0DQpk ZXZpY2UgICAgICAgICAgeGwgICAgICAgICAgICAgICMgM0NvbSAzYzkweCAo YGBCb29tZXJhbmcnJywgYGBDeWNsb25lJycpDQoNCiMgUHNldWRvIGRldmlj ZXMNCnBzZXVkby1kZXZpY2UgICBicGYgICAgICA0ICAgICAgIyBCZXJrZWxl eSBwYWNrZXQgZmlsdGVyDQpwc2V1ZG8tZGV2aWNlICAgZXRoZXIgICAgICAg ICAgICMgRXRoZXJuZXQgc3VwcG9ydA0KcHNldWRvLWRldmljZSAgIGxvb3Ag ICAgICAgICAgICAjIE5ldHdvcmsgbG9vcGJhY2sNCnBzZXVkby1kZXZpY2Ug ICBwdHkgICAgIDMyICAgICAgIyBQc2V1ZG8tdHR5cyAodGVsbmV0IGV0YykN CnBzZXVkby1kZXZpY2UgICBzbnAgICAgICA0ICAgICAgIyAiU25vb3AiIGRl dmljZXMuDQpwc2V1ZG8tZGV2aWNlICAgc3BsYXNoICAgICAgICAgICMgU3Bs YXNoIHNjcmVlbi9zY3JlZW4gc2F2ZXINCg== --0-1853338447-982459407=:20259-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 19:47:37 2001 Delivered-To: freebsd-stable@freebsd.org Received: from mta5.snfc21.pbi.net (mta5.snfc21.pbi.net [206.13.28.241]) by hub.freebsd.org (Postfix) with ESMTP id A83D237B491 for ; Sat, 17 Feb 2001 19:47:32 -0800 (PST) Received: from pacbell.net ([63.199.30.191]) by mta5.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0G8X00CN1P20PE@mta5.snfc21.pbi.net> for freebsd-stable@freebsd.org; Sat, 17 Feb 2001 19:44:24 -0800 (PST) Date: Sat, 17 Feb 2001 19:47:16 -0800 From: "George W. Dinolt" Subject: Trouble Compiling ipfilter module - reference to osreldate.h To: freebsd-stable@freebsd.org Message-id: <3A8F45C4.357D84E5@pacbell.net> MIME-version: 1.0 X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit X-Accept-Language: en Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I tried to build a new kernel and modules for stable after a recent cvsup (6:00 P.M. PST) and was unable to build the ipfilter module. The file /usr/src/sys/netinet/mlfk_ipl.c references the file ip_compat.h in the same directory, which, when compiling modules, references osreldate.h. The file osreldate.h is not available. After I commented out the reference in /usr/src/sys/netinet/ip_compat.h the build worked fine: *** ip_compat.h Sat Feb 17 19:42:29 2001 --- ip_compat.h.old Sat Feb 17 19:42:40 2001 *************** *** 265,271 **** #if defined(__FreeBSD__) && (defined(KERNEL) || defined(_KERNEL)) # ifdef IPFILTER_LKM ! /* # include */ # define ACTUALLY_LKM_NOT_KERNEL # endif # if __FreeBSD__ < 3 --- 265,271 ---- #if defined(__FreeBSD__) && (defined(KERNEL) || defined(_KERNEL)) # ifdef IPFILTER_LKM ! # include # define ACTUALLY_LKM_NOT_KERNEL # endif # if __FreeBSD__ < 3 (Of course the "right fix" is to remove the offending line.) I have not tried a kernel build with OPTIONS IPFILTER to see if I broke something there. I hope this is useful until a patch is installed in the CVS tree. Regards, G. Dinolt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 20: 0: 0 2001 Delivered-To: freebsd-stable@freebsd.org Received: from myzona.net (40bc2156.dsl.flashcom.net [64.188.33.86]) by hub.freebsd.org (Postfix) with ESMTP id 3241C37B401 for ; Sat, 17 Feb 2001 19:59:57 -0800 (PST) Received: from parkson [64.166.84.150] by myzona.net [64.188.33.86] with SMTP (MDaemon.v3.5.2.R) for ; Sat, 17 Feb 2001 19:52:44 -0800 Message-ID: <000901c0995f$1236d4a0$00e1fea9@parkson> Reply-To: "Alex M" From: "Alex M" To: "FreeBSD STABLE" , "BUUG" Subject: old port layout? Date: Sat, 17 Feb 2001 19:58:36 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-MDRemoteIP: 64.166.84.150 X-Return-Path: alex@myzona.net X-MDaemon-Deliver-To: freebsd-stable@freebsd.org Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I cvsup'ed my ports, and then when I tried to install mysql server from ports, I got this error: ===> Verifying install for libtool in /usr/ports/devel/libtool Error: your port uses an old layout. Please update it to match this bsd.port.mk. If you have updated your ports collection via cvsup and are still getting this error, see Q12 and Q13 in the cvsup FAQ on http://www.polstra.com for further information. *** Error code 1 Went there to see the FAQ, those numbered q's contained totally different information. Somebody told me to get ports-kit, thou i dont know what it is.. Anyone might help on this one? Thanx. -- Alex M aka TZapper. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 21:25:49 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-53.dsl.lsan03.pacbell.net [64.165.226.53]) by hub.freebsd.org (Postfix) with ESMTP id 31C8737B491 for ; Sat, 17 Feb 2001 21:25:47 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id B91B267023; Sat, 17 Feb 2001 21:25:46 -0800 (PST) Date: Sat, 17 Feb 2001 21:25:46 -0800 From: Kris Kennaway To: Alex M Cc: FreeBSD STABLE , BUUG Subject: Re: old port layout? Message-ID: <20010217212546.A60502@mollari.cthul.hu> References: <000901c0995f$1236d4a0$00e1fea9@parkson> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="gBBFr7Ir9EOA20Yy" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000901c0995f$1236d4a0$00e1fea9@parkson>; from alex@myzona.net on Sat, Feb 17, 2001 at 07:58:36PM -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --gBBFr7Ir9EOA20Yy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 17, 2001 at 07:58:36PM -0800, Alex M wrote: > I cvsup'ed my ports, and then when I tried to install mysql server from > ports, I got this error: >=20 > =3D=3D=3D> Verifying install for libtool in /usr/ports/devel/libtool > Error: your port uses an old layout. Please update it to match this > bsd.port.mk. If you have updated your ports collection via cvsup and are > still getting this error, see Q12 and Q13 in the cvsup FAQ on > http://www.polstra.com for further information. > *** Error code 1 >=20 > Went there to see the FAQ, those numbered q's contained totally different > information. No, they don't. They tell you why your cvsup "didn't work" properly. You don't need an upgrade kit. Kris --gBBFr7Ir9EOA20Yy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6j1zaWry0BWjoQKURAvHqAJ458WV4CUqgjhgNTjeV12BS3ghoGwCgh+1v eU/9ZPj8U2piLqjaAyNiBPo= =hp/f -----END PGP SIGNATURE----- --gBBFr7Ir9EOA20Yy-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 21:32:10 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-53.dsl.lsan03.pacbell.net [64.165.226.53]) by hub.freebsd.org (Postfix) with ESMTP id 6F2EC37B401 for ; Sat, 17 Feb 2001 21:32:04 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 9A45867021; Sat, 17 Feb 2001 21:32:03 -0800 (PST) Date: Sat, 17 Feb 2001 21:32:03 -0800 From: Kris Kennaway To: "George W. Dinolt" Cc: freebsd-stable@freebsd.org Subject: Re: Trouble Compiling ipfilter module - reference to osreldate.h Message-ID: <20010217213203.A61216@mollari.cthul.hu> References: <3A8F45C4.357D84E5@pacbell.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="jI8keyz6grp/JLjh" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A8F45C4.357D84E5@pacbell.net>; from gdinolt@pacbell.net on Sat, Feb 17, 2001 at 07:47:16PM -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --jI8keyz6grp/JLjh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 17, 2001 at 07:47:16PM -0800, George W. Dinolt wrote: >=20 > I tried to build a new kernel and modules for stable after a recent > cvsup (6:00 P.M. PST) and was unable to build the ipfilter module. The > file /usr/src/sys/netinet/mlfk_ipl.c references the file ip_compat.h in > the same directory, which, when compiling modules, references > osreldate.h. The file osreldate.h is not available. After I commented > out the reference in /usr/src/sys/netinet/ip_compat.h the build worked > fine: Already fixed several hours ago, please re-cvsup. Kris --jI8keyz6grp/JLjh Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6j15TWry0BWjoQKURAvgmAKDssLXhltgFQR4NNd0t03WCvJC1lACg6fIg nuaewjoDxab5zdaOQGYFtks= =aodh -----END PGP SIGNATURE----- --jI8keyz6grp/JLjh-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 21:34:35 2001 Delivered-To: freebsd-stable@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-53.dsl.lsan03.pacbell.net [64.165.226.53]) by hub.freebsd.org (Postfix) with ESMTP id 2229037B4EC for ; Sat, 17 Feb 2001 21:34:32 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id CEED567023; Sat, 17 Feb 2001 21:34:31 -0800 (PST) Date: Sat, 17 Feb 2001 21:34:31 -0800 From: Kris Kennaway To: Kris Kennaway Cc: "George W. Dinolt" , freebsd-stable@freebsd.org Subject: Re: Trouble Compiling ipfilter module - reference to osreldate.h Message-ID: <20010217213431.A61331@mollari.cthul.hu> References: <3A8F45C4.357D84E5@pacbell.net> <20010217213203.A61216@mollari.cthul.hu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="82I3+IH0IqGh5yIs" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010217213203.A61216@mollari.cthul.hu>; from kris@obsecurity.org on Sat, Feb 17, 2001 at 09:32:03PM -0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 17, 2001 at 09:32:03PM -0800, Kris Kennaway wrote: > On Sat, Feb 17, 2001 at 07:47:16PM -0800, George W. Dinolt wrote: > >=20 > > I tried to build a new kernel and modules for stable after a recent > > cvsup (6:00 P.M. PST) and was unable to build the ipfilter module. The > > file /usr/src/sys/netinet/mlfk_ipl.c references the file ip_compat.h in > > the same directory, which, when compiling modules, references > > osreldate.h. The file osreldate.h is not available. After I commented > > out the reference in /usr/src/sys/netinet/ip_compat.h the build worked > > fine: >=20 > Already fixed several hours ago, please re-cvsup. Actually, I just fixed some independant breakage in a commit I made earlier to lib/libc/net/res_init.c - it will take the cvsup servers up to an hour or so to catch up. Sorry for the inconvenience. Kris --82I3+IH0IqGh5yIs Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6j17nWry0BWjoQKURAnDFAJwJh8kU6w7uzwUAH6m3oX6YqK7U7ACgnwFv Vjb6S3CqG2RrxN2pbTDLkiQ= =ly8B -----END PGP SIGNATURE----- --82I3+IH0IqGh5yIs-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Feb 17 23:36:13 2001 Delivered-To: freebsd-stable@freebsd.org Received: from lafontaine.cybercable.fr (lafontaine.cybercable.fr [212.198.0.202]) by hub.freebsd.org (Postfix) with SMTP id 74D8C37B401 for ; Sat, 17 Feb 2001 23:36:03 -0800 (PST) Received: (qmail 46765090 invoked from network); 18 Feb 2001 07:35:57 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by lafontaine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 18 Feb 2001 07:35:57 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f1I7ZqB51624; Sun, 18 Feb 2001 08:35:52 +0100 (CET) (envelope-from clefevre@poboxes.com) To: "Steve O'Hara-Smith" Cc: clefevre@poboxes.com, bobb+freebsd-stable@redbrick.dcu.ie, freebsd-stable@FreeBSD.ORG Subject: Re: More than 256 pty's (revised) References: <20010216172854.A67979@enigma.redbrick.dcu.ie> <20010216202737.1807da64.steveo@eircom.net> <66i9w8zd.fsf@gits.dyndns.org> <20010217180139.5269c474.steveo@eircom.net> X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C Reply-To: Cyrille Lefevre In-Reply-To: "Steve O'Hara-Smith"'s message of "Sat, 17 Feb 2001 18:01:39 +0100" From: Cyrille Lefevre Date: 18 Feb 2001 08:35:47 +0100 Message-ID: Lines: 273 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Steve O'Hara-Smith" writes: > On 17 Feb 2001 17:49:10 +0100 > Cyrille Lefevre wrote: > > Seems to take it up to 704 ptys (now try explaining quickly how *that* > number comes up). Don't you also need to disable the test in ptsopen() on in fact, I made a small mistake in calculation of this magic number since /dev/tty[vxyzR]* shouldn't be counted. the magic number really is, using the first pty letter : ((('z' - 'p' + 1) * 2) - 5) * 32 = 17 * 32 = 544 ptys ^ ^ ^^ 0-9a-v |- p-z plus P-Z |- less vxyzR after that, you have to play w/ the second pty letter by extending the set from 0-9a-v to 0-9a-zA-Z, in that case, the limit is : 17 * 62 = 1054 ptys [snip, forgive my first quick, dirty and wrong (sorry) patch which didn't handle well the minor number, see bellow for something much better, but untested, yet, you're welcome to do it :)] > I was contemplating something with a /dev/pty/* and /dev/tty/* and > a really mindless naming convention that wouldn't ever bottom out. I hadn't > even started working on it. same about /dev/dsk/*, /dev/rmt/*, etc. the problem would be the compatibility w/ programs using ptys. xterm, as an example, only knowns ptys as : /dev/[tp]ty[pqrstuvwxyzPQRSTUVWXYZ][0123456789abcdefghijklmnopqrstuv] Index: etc/MAKEDEV =================================================================== RCS file: /home/ncvs/src/etc/MAKEDEV,v retrieving revision 1.243.2.20 diff -u -r1.243.2.20 MAKEDEV --- etc/MAKEDEV 2001/02/03 16:16:40 1.243.2.20 +++ etc/MAKEDEV 2001/02/18 07:23:03 @@ -225,6 +225,19 @@ echo $m } +# Convert pty (class,instance) to minor number +# Handle pty minor numbers greater than 256 +ptyminor() +{ + echo $(( (( ($1 + $2) &~ 255) << 8) | (($1 + $2) & 255) )) +} + +# *MUST* be the same as in sys/kern/tty_pty.c and lib/libutil/pty.c +ptyclassnames=pqrstuwPQSTUVWXYZ +ptyinstancenames=0123456789abcdefghijklmnopqrstuv +nptyclass=${#ptyclassnames} +nptyinstance=${#ptyinstancenames} + # Raw partition for disks dkrawpart=2 @@ -701,34 +714,25 @@ done ;; pty*) - class=`expr $i : 'pty\(.*\)'` - case $class in - 0) offset=0 name=p;; - 1) offset=32 name=q;; - 2) offset=64 name=r;; - 3) offset=96 name=s;; -# Note that xterm (at least) only look at p-s. - 4) offset=128 name=P;; - 5) offset=160 name=Q;; - 6) offset=192 name=R;; - 7) offset=224 name=S;; - # This still leaves [tuTU]. - *) echo bad unit for pty in: $i;; - esac umask 0 - case $class in - 0|1|2|3|4|5|6|7) + class=`expr $i : 'pty\(.*\)'` + if [ -n "$class" -a "$class" -lt $nptyclass ]; then + name=$(echo $ptyclassnames | + dd bs=1 skip=$class count=1 2>/dev/null) + offset=$(($class * 32)) i=0 while [ $i -lt 32 ]; do # This was an awk substr() before. - c=$(echo 0123456789abcdefghijklmnopqrstuv | + c=$(echo $ptyinstancenames | dd bs=1 skip=$i count=1 2>/dev/null) - mknod tty$name$c c 5 $(($offset + $i)) - mknod pty$name$c c 6 $(($offset + $i)) + minor=$(ptyminor $offset $i) + mknod tty$name$c c 5 $minor + mknod pty$name$c c 6 $minor i=$(($i + 1)) done - ;; - esac + else + echo bad unit for pty in: $i + fi umask 77 ;; Index: lib/libutil/pty.c =================================================================== RCS file: /home/ncvs/src/lib/libutil/pty.c,v retrieving revision 1.10 diff -u -r1.10 pty.c --- lib/libutil/pty.c 1999/08/28 00:05:51 1.10 +++ lib/libutil/pty.c 2001/02/18 07:23:18 @@ -53,6 +53,10 @@ #include #include +/* *MUST* be the same as in sys/kern/tty_pty.c and etc/MAKEDEV */ +#define ptyclassnames "pqrstuwPQSTUVWXYZ" +#define ptyinstancenames "0123456789abcdefghijklmnopqrstuv" + int openpty(amaster, aslave, name, termp, winp) int *amaster, *aslave; @@ -70,9 +74,9 @@ else ttygid = -1; - for (cp1 = "pqrsPQRS"; *cp1; cp1++) { + for (cp1 = ptyclassnames; *cp1; cp1++) { line[8] = *cp1; - for (cp2 = "0123456789abcdefghijklmnopqrstuv"; *cp2; cp2++) { + for (cp2 = ptyinstancenames; *cp2; cp2++) { line[5] = 'p'; line[9] = *cp2; if ((master = open(line, O_RDWR, 0)) == -1) { Index: share/man/man4/pty.4 =================================================================== RCS file: /home/ncvs/src/share/man/man4/pty.4,v retrieving revision 1.8.2.1 diff -u -r1.8.2.1 pty.4 --- share/man/man4/pty.4 2000/12/08 14:59:07 1.8.2.1 +++ share/man/man4/pty.4 2001/02/18 07:17:36 @@ -191,10 +191,10 @@ is required. .El .Sh FILES -.Bl -tag -width /dev/tty[p-sP-S][0-9a-v]x -compact -.It Pa /dev/pty[p-sP-S][0-9a-v] +.Bl -tag -width /dev/tty[p-uwPQS-Z][0-9a-v]x -compact +.It Pa /dev/pty[p-uwPQS-Z][0-9a-v] master pseudo terminals -.It Pa /dev/tty[p-sP-S][0-9a-v] +.It Pa /dev/tty[p-uwPQS-Z][0-9a-v] slave pseudo terminals .El .Sh DIAGNOSTICS Index: sys/kern/tty_pty.c =================================================================== RCS file: /home/ncvs/src/sys/kern/tty_pty.c,v retrieving revision 1.74 diff -u -r1.74 tty_pty.c --- sys/kern/tty_pty.c 2000/02/09 03:32:11 1.74 +++ sys/kern/tty_pty.c 2001/02/18 07:32:05 @@ -127,33 +127,46 @@ #define PF_NOSTOP 0x40 #define PF_UCNTL 0x80 /* user control mode */ +#define ptyminor(x) ((((x) &~ 255) << 8) | ((x) & 255)) +/* *MUST* be the same as in lib/libutil/pty.c and etc/MAKEDEV */ +#define ptyclassnames "pqrstuwPQSTUVWXYZ" +#define ptyinstancenames "0123456789abcdefghijklmnopqrstuv" +#define nptyclass (sizeof(ptyclassnames)-1) +#define nptyinstance (sizeof(ptyinstancenames)-1) +#define npty (nptyclass*nptyinstance) + /* * This function creates and initializes a pts/ptc pair + * + * pts == /dev/tty[pqrstuwPQSTUVWXYZ][0123456789abcdefghijklmnopqrstuv] + * ptc == /dev/pty[pqrstuwPQSTUVWXYZ][0123456789abcdefghijklmnopqrstuv] * - * pts == /dev/tty[pqrsPQRS][0123456789abcdefghijklmnopqrstuv] - * ptc == /dev/pty[pqrsPQRS][0123456789abcdefghijklmnopqrstuv] + * don't use the following master/slave pairs since they names clash w/ + * other drivers (maybe this should be the reverse?) : * - * XXX: define and add mapping of upper minor bits to allow more - * than 256 ptys. + * ttyv == syscons + * tty[xyz] == Cronyx/Sigma + * ttyR == Rocketport + * */ static void ptyinit(n) int n; { dev_t devs, devc; - char *names = "pqrsPQRS"; + char *names = ptyclassnames; struct pt_ioctl *pt; - /* For now we only map the lower 8 bits of the minor */ - if (n & ~0xff) + /* be safe */ + if (n > npty) return; pt = malloc(sizeof(*pt), M_PTY, M_WAITOK); bzero(pt, sizeof(*pt)); pt->devs = devs = make_dev(&pts_cdevsw, n, - 0, 0, 0666, "tty%c%r", names[n / 32], n % 32); + 0, 0, 0666, "tty%c%r", names[n / nptyinstance], n % nptyinstance); pt->devc = devc = make_dev(&ptc_cdevsw, n, - 0, 0, 0666, "pty%c%r", names[n / 32], n % 32); + 0, 0, 0666, "pty%c%r", names[n / nptyinstance], n % nptyinstance); devs->si_drv1 = devc->si_drv1 = pt; devs->si_tty = devc->si_tty = &pt->pt_tty; @@ -169,7 +182,7 @@ { register struct tty *tp; int error; - int minr; + int minr, nextminr; dev_t nextdev; struct pt_ioctl *pti; @@ -179,14 +192,15 @@ * next one too, so people can open it. */ minr = lminor(dev); - if (minr < 255) { - nextdev = makedev(major(dev), minr + 1); + nextminr = minr+1; + if (nextminr < npty) { + nextdev = makedev(major(dev), ptyminor(nextminr)); if (!nextdev->si_drv1) { - ptyinit(minr + 1); + ptyinit(nextminr); } } if (!dev->si_drv1) - ptyinit(minor(dev)); + ptyinit(minr); if (!dev->si_drv1) return(ENXIO); pti = dev->si_drv1; @@ -349,9 +363,9 @@ struct pt_ioctl *pti; if (!dev->si_drv1) - ptyinit(minor(dev)); + ptyinit(lminor(dev)); if (!dev->si_drv1) - return(ENXIO); + return(ENXIO); tp = dev->si_tty; if (tp->t_oproc) return (EIO); Cyrille. -- home: mailto:clefevre@poboxes.com UNIX is user-friendly; it's just particular work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message