From owner-freebsd-stable Sun Jul 5 02:31:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA13626 for freebsd-stable-outgoing; Sun, 5 Jul 1998 02:31:49 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from roma.coe.ufrj.br (jonny@roma.coe.ufrj.br [146.164.53.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA13614 for ; Sun, 5 Jul 1998 02:31:45 -0700 (PDT) (envelope-from jonny@jonny.eng.br) Received: (from jonny@localhost) by roma.coe.ufrj.br (8.8.8/8.8.8) id GAA04942; Sun, 5 Jul 1998 06:31:41 -0300 (EST) (envelope-from jonny) From: Joao Carlos Mendes Luis Message-Id: <199807050931.GAA04942@roma.coe.ufrj.br> Subject: Re: July 2nd SNAP question. In-Reply-To: <199807050105.VAA28584@daria.cdnow.com> from "A. Karl Heller" at "Jul 4, 98 09:05:00 pm" To: heller@cdnow.com Date: Sun, 5 Jul 1998 06:31:40 -0300 (EST) Cc: freebsd-stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL40 (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 #define quoting(A. Karl Heller) // I recently upgraded two 9707 snap machines. Can anyone explain to me // what I did wrong that causes the system to startup with the wrong // hostname? // // This code from rc.network displays "Doing initial network setup: hostname" // // network_pass1() { // echo -n 'Doing initial network setup:' // # Set the host name if it is not already set // if [ -z "`hostname -s`" ] ; then // hostname $hostname // echo -n ' hostname' // fi // // I can't seem to figure out what is causing it to return that when // $hostname IS set. What's the problem ??? hostname should be set at /etc/rc.conf, as always. // Also, who do I talk to about making some changes to the sysinstall program? Here ? :) // For example, doing an upgrade it is possible to want to re-select // the packages you want to install. However, you are always forced to the // partition program if you already picked an install package and then exited // out to the main menu to start over. Did you try the Configuration/Packages submenu ? I think you have completed the installation and hit yes when asked for more configuration. // One last thing, does anyone have any helpfull tools for those of us who // upgrade? I might start writing some of my own to merge /etc/upgrade in // to the system, etc.. My personal opinion is that EVERY program/system that offers an upgrade option is flawed. They never work perfectly. With this in mind, I've never tried an upgrade with FreeBSD. I always backup everything, do a fresh install, and copy configuration files afterwards. // When do the current ports get upgraded? I was very surprised to see // the ports on the July 2nd SNAP had the new version of qpopper...this // is automated isn't it? if not... congrats on a great job. The ports subsystem follows -stable, and is always relatively updated. If you liked that, you may like cvsup updates. Take a look in the handbook. Jonny -- Joao Carlos Mendes Luis M.Sc. Student jonny@jonny.eng.br Universidade Federal do Rio de Janeiro "There are two major products that come out of Berkeley: LSD and Unix. We don't believe this to be a coincidence." -- Jeremy S. Anderson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 09:28:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19524 for freebsd-stable-outgoing; Sun, 5 Jul 1998 09:28:50 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA19518 for ; Sun, 5 Jul 1998 09:28:47 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id SAA28862; Sun, 5 Jul 1998 18:27:34 +0200 (MET DST) Received: from localhost (localhost [127.0.0.1]) by semyam.dinoco.de (8.8.8/8.8.8) with ESMTP id SAA26093; Sun, 5 Jul 1998 18:25:18 +0200 (CEST) (envelope-from seggers@semyam.dinoco.de) Message-Id: <199807051625.SAA26093@semyam.dinoco.de> Cc: heller@cdnow.com, seggers@semyam.dinoco.de To: freebsd-stable@FreeBSD.ORG Subject: Re: July 2nd SNAP question. In-reply-to: Your message of "Sat, 04 Jul 1998 21:05:00 EDT." <199807050105.VAA28584@daria.cdnow.com> Date: Sun, 05 Jul 1998 18:25:18 +0200 From: Stefan Eggers Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > This code from rc.network displays "Doing initial network setup: hostname" > > network_pass1() { > echo -n 'Doing initial network setup:' > # Set the host name if it is not already set > if [ -z "`hostname -s`" ] ; then > hostname $hostname > echo -n ' hostname' ^ ^ > fi > Anybody else see this or just me? You have apostrophe/single quote characters where you need the backtick characters. So echo just outputs the string " hostname" instead of the result of executing hostname. > Also, who do I talk to about making some changes to the sysinstall program? If you have the finished just send a PR. Otherwise it would be wise to ask first if someone sees a problem with what you intend to do. It is probably best in hackers or stable. For package installation in ports. Just what I think, of course. :-) > When do the current ports get upgraded? I was very surprised to see I suppose they just take the state at the time the SNAP gets created. Stefan. -- Stefan Eggers Lu4 yao2 zhi1 ma3 li4, Max-Slevogt-Str. 1 ri4 jiu3 jian4 ren2 xin1. 51109 Koeln Federal Republic of Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 13:33:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA24313 for freebsd-stable-outgoing; Sun, 5 Jul 1998 13:33:57 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA24263 for ; Sun, 5 Jul 1998 13:33:52 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id WAA26480; Sun, 5 Jul 1998 22:05:10 +0200 (MET DST) Received: from localhost (localhost [127.0.0.1]) by semyam.dinoco.de (8.8.8/8.8.8) with ESMTP id VAA01882; Sun, 5 Jul 1998 21:06:33 +0200 (CEST) (envelope-from seggers@semyam.dinoco.de) Message-Id: <199807051906.VAA01882@semyam.dinoco.de> Cc: Stefan Eggers , heller@cdnow.com To: freebsd-stable@FreeBSD.ORG Subject: Re: July 2nd SNAP question. In-reply-to: Your message of "Sun, 05 Jul 1998 18:25:18 +0200." <199807051625.SAA26093@semyam.dinoco.de> Date: Sun, 05 Jul 1998 21:06:33 +0200 From: Stefan Eggers Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > This code from rc.network displays "Doing initial network setup: hostname" > > > > network_pass1() { > > echo -n 'Doing initial network setup:' > > # Set the host name if it is not already set > > if [ -z "`hostname -s`" ] ; then > > hostname $hostname > > echo -n ' hostname' > ^ ^ > > fi > > > Anybody else see this or just me? > > You have apostrophe/single quote characters where you need the backtick > characters. So echo just outputs the string " hostname" instead of the > result of executing hostname. Of course this is assuming the one asking wants the hostname there instead of just "hostname". Otherwise I don't see the problem. The initial string will be output in any case and I - like someone else who noted it - see nothing wrong with setting the hostname in /etc/rc.conf and then handing it here to the right command to make it known to the system. It's the first part of the network init after all. So this is correct. Stefan. -- Stefan Eggers Lu4 yao2 zhi1 ma3 li4, Max-Slevogt-Str. 1 ri4 jiu3 jian4 ren2 xin1. 51109 Koeln Federal Republic of Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 14:49:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA14438 for freebsd-stable-outgoing; Sun, 5 Jul 1998 14:49:32 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from techpower.net (hometeam@techpower.net [205.133.231.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA14406 for ; Sun, 5 Jul 1998 14:49:13 -0700 (PDT) (envelope-from hometeam@techpower.net) Received: from localhost (hometeam@localhost) by techpower.net (8.8.8/8.8.8) with SMTP id RAA00281; Sun, 5 Jul 1998 17:50:08 -0400 (EDT) (envelope-from hometeam@techpower.net) Date: Sun, 5 Jul 1998 17:50:08 -0400 (EDT) From: Jt To: Stefan Eggers cc: freebsd-stable@FreeBSD.ORG, heller@cdnow.com Subject: Re: July 2nd SNAP question. In-Reply-To: <199807051625.SAA26093@semyam.dinoco.de> 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 been that way forever. hometeam@techpower.net --We cannot all be masters, nor all masters Cannot be truly follow'd-- -----BEGIN PGP MESSAGE----- Version: 2.6.2 owEBqwBU/4kAlQMFADRCxNWhsddKSTR+6QEBelED/jzeC3btZfqSdIfrNoCgwUJJ iNQ33UQoMyJ2ygkfl72xP5J79yml/F4P73GnNaDVbaMOmOG2NNAi5ElE73wRh54U 17kH+n5XnYeqekV8T2TG2Q6ex3UotXPyZ1vvrCrSxapOz6a4hh0GQeA55rcwLy2W ROHwxfvaVsrX5iVOkRoerBFiC21lc3NhZ2UudHh0AAAAAA== =jCvF -----END PGP MESSAGE----- On Sun, 5 Jul 1998, Stefan Eggers wrote: > > This code from rc.network displays "Doing initial network setup: hostname" > > > > network_pass1() { > > echo -n 'Doing initial network setup:' > > # Set the host name if it is not already set > > if [ -z "`hostname -s`" ] ; then > > hostname $hostname > > echo -n ' hostname' > ^ ^ > > fi > > > Anybody else see this or just me? > > You have apostrophe/single quote characters where you need the backtick > characters. So echo just outputs the string " hostname" instead of the > result of executing hostname. > > > Also, who do I talk to about making some changes to the sysinstall program? > > If you have the finished just send a PR. Otherwise it would be wise to > ask first if someone sees a problem with what you intend to do. It is > probably best in hackers or stable. For package installation in ports. > Just what I think, of course. :-) > > > When do the current ports get upgraded? I was very surprised to see > > I suppose they just take the state at the time the SNAP gets created. > > Stefan. > -- > Stefan Eggers Lu4 yao2 zhi1 ma3 li4, > Max-Slevogt-Str. 1 ri4 jiu3 jian4 ren2 xin1. > 51109 Koeln > Federal Republic of Germany > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 Jul 5 15:13:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA24313 for freebsd-stable-outgoing; Sun, 5 Jul 1998 13:33:57 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA24263 for ; Sun, 5 Jul 1998 13:33:52 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id WAA26480; Sun, 5 Jul 1998 22:05:10 +0200 (MET DST) Received: from localhost (localhost [127.0.0.1]) by semyam.dinoco.de (8.8.8/8.8.8) with ESMTP id VAA01882; Sun, 5 Jul 1998 21:06:33 +0200 (CEST) (envelope-from seggers@semyam.dinoco.de) Message-Id: <199807051906.VAA01882@semyam.dinoco.de> Cc: Stefan Eggers , heller@cdnow.com To: freebsd-stable@FreeBSD.ORG Subject: Re: July 2nd SNAP question. In-reply-to: Your message of "Sun, 05 Jul 1998 18:25:18 +0200." <199807051625.SAA26093@semyam.dinoco.de> Date: Sun, 05 Jul 1998 21:06:33 +0200 From: Stefan Eggers Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > This code from rc.network displays "Doing initial network setup: hostname" > > > > network_pass1() { > > echo -n 'Doing initial network setup:' > > # Set the host name if it is not already set > > if [ -z "`hostname -s`" ] ; then > > hostname $hostname > > echo -n ' hostname' > ^ ^ > > fi > > > Anybody else see this or just me? > > You have apostrophe/single quote characters where you need the backtick > characters. So echo just outputs the string " hostname" instead of the > result of executing hostname. Of course this is assuming the one asking wants the hostname there instead of just "hostname". Otherwise I don't see the problem. The initial string will be output in any case and I - like someone else who noted it - see nothing wrong with setting the hostname in /etc/rc.conf and then handing it here to the right command to make it known to the system. It's the first part of the network init after all. So this is correct. Stefan. -- Stefan Eggers Lu4 yao2 zhi1 ma3 li4, Max-Slevogt-Str. 1 ri4 jiu3 jian4 ren2 xin1. 51109 Koeln Federal Republic of Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 15:15:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA19456 for freebsd-stable-outgoing; Sun, 5 Jul 1998 15:15:03 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA19385 for ; Sun, 5 Jul 1998 15:14:47 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hrotti.ifi.uio.no (2602@hrotti.ifi.uio.no [129.240.64.15]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id AAA08574; Mon, 6 Jul 1998 00:14:39 +0200 (MET DST) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Mon, 6 Jul 1998 00:14:38 +0200 (MET DST) Mime-Version: 1.0 To: Stefan Eggers Cc: freebsd-stable@FreeBSD.ORG, heller@cdnow.com Subject: Re: July 2nd SNAP question. References: <199807051625.SAA26093@semyam.dinoco.de> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 06 Jul 1998 00:14:37 +0200 In-Reply-To: Stefan Eggers's message of "Sun, 05 Jul 1998 18:25:18 +0200" Message-ID: Lines: 14 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Stefan Eggers writes: > > echo -n ' hostname' > ^ ^ > You have apostrophe/single quote characters where you need the backtick > characters. So echo just outputs the string " hostname" instead of the > result of executing hostname. No, it's supposed to be like that. The intent is to signal that the hostname has been set, not *what* hostname has been set. If you look closely at /etc/rc*, you'll se a lot of these "echo -n 'xxx'". DES -- One two, one two, one two. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 15:17:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA19975 for freebsd-stable-outgoing; Sun, 5 Jul 1998 15:17:09 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA19962 for ; Sun, 5 Jul 1998 15:17:04 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hrotti.ifi.uio.no (2602@hrotti.ifi.uio.no [129.240.64.15]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id AAA08788; Mon, 6 Jul 1998 00:16:58 +0200 (MET DST) Received: (from dag-erli@localhost) by hrotti.ifi.uio.no ; Mon, 6 Jul 1998 00:16:56 +0200 (MET DST) Mime-Version: 1.0 To: heller@cdnow.com Cc: freebsd-stable@FreeBSD.ORG Subject: Re: July 2nd SNAP question. References: <199807050105.VAA28584@daria.cdnow.com> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 06 Jul 1998 00:16:56 +0200 In-Reply-To: "A. Karl Heller"'s message of "Sat, 4 Jul 1998 21:05:00 -0400 (EDT)" Message-ID: Lines: 16 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "A. Karl Heller" writes: > I recently upgraded two 9707 snap machines. Can anyone explain to me > what I did wrong that causes the system to startup with the wrong > hostname? Are you certain that it *is* setting the wrong hostname? Try typing 'hostname' at the shell prompt after FreeBSD has finished booting into multiuser mode, and see what it says. > This code from rc.network displays "Doing initial network setup: hostname" Yes, it's supposed to print exactly that. It always has. DES -- One two, one two, one two. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 15:43:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA24528 for freebsd-stable-outgoing; Sun, 5 Jul 1998 15:43:53 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from techpower.net (fragment@techpower.net [205.133.231.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA24495 for ; Sun, 5 Jul 1998 15:43:26 -0700 (PDT) (envelope-from fragment@techpower.net) Received: from localhost (fragment@localhost) by techpower.net (8.8.8/8.8.8) with SMTP id SAA04901 for ; Sun, 5 Jul 1998 18:44:31 -0400 (EDT) (envelope-from fragment@techpower.net) Date: Sun, 5 Jul 1998 18:44:30 -0400 (EDT) From: defragmented To: freebsd-stable@FreeBSD.ORG Subject: dmesg error 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 recently made world and installed fine I noticed today at boot time I am getting an dmesg error: So on command line I tryed dmesg I get dmesg: magic number incorrect anyone know how to fix this? I tryed reinstalling the bin in /usr/src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 17:11:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22598 for freebsd-stable-outgoing; Sun, 5 Jul 1998 17:11:45 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from socko.cdnow.com (socko.cdnow.com [209.83.166.75]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22576 for ; Sun, 5 Jul 1998 17:11:27 -0700 (PDT) (envelope-from heller@daria.cdnow.com) Received: from daria.cdnow.com (daria.cdnow.com [209.83.166.60]) by socko.cdnow.com (8.9.0/8.9.0) with ESMTP id UAA26588; Sun, 5 Jul 1998 20:11:19 -0400 (EDT) Received: (from heller@localhost) by daria.cdnow.com (8.8.8/8.8.8) id UAA29507; Sun, 5 Jul 1998 20:09:47 -0400 (EDT) From: "A. Karl Heller" Message-Id: <199807060009.UAA29507@daria.cdnow.com> Subject: Re: July 2nd SNAP question. To: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?=) Date: Sun, 5 Jul 1998 20:09:47 -0400 (EDT) Cc: seggers@semyam.dinoco.de, freebsd-stable@FreeBSD.ORG, heller@cdnow.com Reply-To: heller@cdnow.com In-Reply-To: from "Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?=" at Jul 6, 98 00:14:37 am X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Okay, this makes more sense. I started to feel very stupid with all the email I got when I assumed the quotes were wrong and should have been backticks. ( I still think the way it works is a strange but it does flow with the rest of the design ). "Doing initial network setup: hostname=machine.name.com" was what I expected to see. My mistake. For those of you who suggested I set the variables in rc.conf, thanks, but I've been doing this stuff for many years. I assumed ( argh ) the system should operate in a certain way. Karl > Stefan Eggers writes: > > > echo -n ' hostname' > > ^ ^ > > You have apostrophe/single quote characters where you need the backtick > > characters. So echo just outputs the string " hostname" instead of the > > result of executing hostname. > No, it's supposed to be like that. The intent is to signal that the > hostname has been set, not *what* hostname has been set. If you look > closely at /etc/rc*, you'll se a lot of these "echo -n 'xxx'". > DES > -- > One two, one two, one two. > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- A. Karl Heller - Senior Systems Engineer - heller@cdnow.com ----------------------------------------------------------------------------- An unbreakable toy is useful for breaking other toys. Do something unusual today. Accomplish work on the computer. >>>>> HTTP://CDNOW.COM - BIGGEST FASTEST BEST <<<<< To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 17:32:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA25898 for freebsd-stable-outgoing; Sun, 5 Jul 1998 17:32:54 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ha1.rdc2.occa.home.com (ha1.rdc2.occa.home.com [24.2.8.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA25864 for ; Sun, 5 Jul 1998 17:32:33 -0700 (PDT) (envelope-from shadey@home.com) Received: from shadey ([24.1.169.119]) by ha1.rdc2.occa.home.com (Post.Office MTA v3.5 release 217 ID# 1-1U40000L0S0V35) with SMTP id com for ; Sun, 5 Jul 1998 17:32:10 -0700 X-Sender: shadey@mail.alsv1.occa.home.com X-Mailer: Windows Eudora Pro Version 2.1.2 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: freebsd-stable@FreeBSD.ORG From: Enoch Ceshkovsky Subject: Natd/LibAlias/IPDivert problems Date: Sun, 5 Jul 1998 17:32:10 -0700 Message-ID: <19980706003210.AAA28707@ha1.rdc2.occa.home.com@shadey> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG After I remade the world from a cvsup on jul 5th, 02:30 or so, my natd'd tcp connections have become incredibly unstable. UDP stuff remains fine. Nothing else on the system has been changed. also, nothing out of the ordinary on natd -v Enoch Ceshkovsky shadey@home.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 18:20:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA02684 for freebsd-stable-outgoing; Sun, 5 Jul 1998 18:20:20 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from Elie.henoc.qc.ca (Elie.henoc.qc.ca [207.253.72.7]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA02673 for ; Sun, 5 Jul 1998 18:20:14 -0700 (PDT) (envelope-from Roger.Savard@henoc.com) Received: from henoc.com (smtp.henoc.qc.ca [207.253.72.6]) by Elie.henoc.qc.ca (8.8.5/8.8.5) with ESMTP id VAA21315 for ; Sun, 5 Jul 1998 21:21:00 -0400 (EDT) Message-ID: <35A0267C.DF12349A@henoc.com> Date: Sun, 05 Jul 1998 21:21:00 -0400 From: Roger Savard Organization: Consultation Henoc Inc. X-Mailer: Mozilla 4.05 [en] (X11; U; FreeBSD 2.2.6-STABLE i386) MIME-Version: 1.0 To: freebsd-stable@FreeBSD.ORG Subject: Re: dmesg error References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Since I cvsuped around jun 26 and made a new kernel, I get the same error. defragmented wrote: > > I recently made world and installed fine I noticed today at > boot time I am getting an dmesg error: > So on command line I tryed dmesg I get > dmesg: magic number incorrect > > anyone know how to fix this? > I tryed reinstalling the bin in /usr/src > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Roger.Savard@henoc.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 19:10:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA11875 for freebsd-stable-outgoing; Sun, 5 Jul 1998 19:10:44 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from atreju.lan.attic.ch (oensingen-gate1-10.solnet.ch [194.235.47.105]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA11838 for ; Sun, 5 Jul 1998 19:10:16 -0700 (PDT) (envelope-from blapp@attic.ch) Received: from attic.ch (fuchur.lan.attic.ch [192.168.0.1]) by atreju.lan.attic.ch (8.8.8/8.8.8) with ESMTP id DAA00584; Mon, 6 Jul 1998 03:21:00 GMT (envelope-from blapp@attic.ch) Message-ID: <35A031D1.868654DE@attic.ch> Date: Mon, 06 Jul 1998 04:09:21 +0200 From: Martin Blapp Reply-To: blapp@attic.ch Organization: Attic Internet Services X-Mailer: Mozilla 4.05 [en] (WinNT; U) MIME-Version: 1.0 To: Shadey@home.com, freebsd-stable@FreeBSD.ORG Subject: Re: Natd/LibAlias/IPDivert problems References: <19980706003210.AAA28707@ha1.rdc2.occa.home.com@shadey> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > After I remade the world from a cvsup on jul 5th, 02:30 or so, my natd'd tcp > connections have become incredibly unstable. UDP stuff remains fine. Nothing > else on the system has been changed. also, nothing out of the ordinary on > natd -v > After I made a new kernel with the latest sources, I had also an unstable natd :-( Beside problems with pppd and option active-filter I have the same problem as you. Especially ssh and ftp are my problem. I get usually connection reset by peer :-( Second problem : from all machines I have I can made ftp to the outside. But from the natd machine itself ftp (and only ftp) refuses to work. It allows to log in but it hangs if I make an ls(1) ... this is very strange. My config for natd ist the default as proposed in the manual pages: natd -dynamic -use_sockets -same_ports -unregistered_only -interface ppp0 Any ideas anyone? Thanks in advance, Martin -- ------------------------------------------------------------------------ Martin Blapp, (blapp@attic.ch) Attic Internet Services, Bechburgstrasse 8, 4702 Oensingen, Switzerland Phone: +41 62 396 43 70, Fax: +41 62 396 43 72 PGP fingerprint: 4E96 1AE8 4AA6 AB40 1AD6 DB42 7623 995D 522A 1D38 ------------------------------------------------------------------------ Public key available at: http://www.attic.ch/pgp-public.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 19:43:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA16054 for freebsd-stable-outgoing; Sun, 5 Jul 1998 19:43:12 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from atreju.lan.attic.ch (oensingen-gate1-06.solnet.ch [194.235.47.101]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA16031 for ; Sun, 5 Jul 1998 19:42:45 -0700 (PDT) (envelope-from blapp@attic.ch) Received: from attic.ch (fuchur.lan.attic.ch [192.168.0.1]) by atreju.lan.attic.ch (8.8.8/8.8.8) with ESMTP id DAA00260 for ; Mon, 6 Jul 1998 03:53:31 GMT (envelope-from blapp@attic.ch) Message-ID: <35A0396F.8B59B694@attic.ch> Date: Mon, 06 Jul 1998 04:41:51 +0200 From: Martin Blapp Reply-To: blapp@attic.ch Organization: Attic Internet Services X-Mailer: Mozilla 4.05 [en] (WinNT; U) MIME-Version: 1.0 To: "freebsd-stable@FreeBSD.ORG" Subject: Re: Natd/LibAlias/IPDivert problems References: <19980706003210.AAA28707@ha1.rdc2.occa.home.com@shadey> <35A031D1.868654DE@attic.ch> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >Second problem : from all machines I have I can made ftp to the outside.>But from the natd machine itself ftp (and only ftp) refuses to work. It allows >to log in but it hangs if I make an ls(1) ... this is very strange. >My config for natd ist the default as proposed in the manual pages: >natd -dynamic -use_sockets -same_ports -unregistered_only -interface ppp0 hrmpf - sorry, here was (-same_ports -unregistered_only) the problem. something for the manpage or the faq :) But the unstable tcp connections are remaining :-( Martin -- ------------------------------------------------------------------------ Martin Blapp, (blapp@attic.ch) Attic Internet Services, Bechburgstrasse 8, 4702 Oensingen, Switzerland Phone: +41 62 396 43 70, Fax: +41 62 396 43 72 PGP fingerprint: 4E96 1AE8 4AA6 AB40 1AD6 DB42 7623 995D 522A 1D38 ------------------------------------------------------------------------ Public key available at: http://www.attic.ch/pgp-public.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 20:05:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA19268 for freebsd-stable-outgoing; Sun, 5 Jul 1998 20:05:36 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ha1.rdc2.occa.home.com (ha1.rdc2.occa.home.com [24.2.8.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA19229 for ; Sun, 5 Jul 1998 20:05:15 -0700 (PDT) (envelope-from shadey@home.com) Received: from shadey ([24.1.169.119]) by ha1.rdc2.occa.home.com (Post.Office MTA v3.5 release 217 ID# 1-1U40000L0S0V35) with SMTP id com; Sun, 5 Jul 1998 20:05:05 -0700 X-Sender: shadey@mail.alsv1.occa.home.com X-Mailer: Windows Eudora Pro Version 2.1.2 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: blapp@attic.ch From: Enoch Ceshkovsky Subject: Re: Natd/LibAlias/IPDivert problems Cc: freebsd-stable@FreeBSD.ORG Date: Sun, 5 Jul 1998 20:05:05 -0700 Message-ID: <19980706030505.AAA12339@ha1.rdc2.occa.home.com@shadey> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 04:09 AM 7/6/98 +0200, you wrote: >Second problem : from all machines I have I can made ftp to the outside. >But from the natd machine itself ftp (and only ftp) refuses to work. It allows >to log in but it hangs if I make an ls(1) ... this is very strange. >My config for natd ist the default as proposed in the manual pages: > >natd -dynamic -use_sockets -same_ports -unregistered_only -interface ppp0 I have this exact same problem also. Using ncftp or lynx with passive (PASV) ftp it works fine. Must be the libalias ftp thinking its a natd' ftp. Enoch Ceshkovsky shadey@home.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 21:06:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA26686 for freebsd-stable-outgoing; Sun, 5 Jul 1998 21:06:09 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA26661 for ; Sun, 5 Jul 1998 21:06:03 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from gate.lan.awfulhak.org (brian@localhost [127.0.0.1]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id DAA26877; Mon, 6 Jul 1998 03:16:14 +0100 (BST) (envelope-from brian@gate.lan.awfulhak.org) Message-Id: <199807060216.DAA26877@awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Enoch Ceshkovsky cc: freebsd-stable@FreeBSD.ORG, Julian Elischer Subject: Re: Natd/LibAlias/IPDivert problems In-reply-to: Your message of "Sun, 05 Jul 1998 17:32:10 PDT." <19980706003210.AAA28707@ha1.rdc2.occa.home.com@shadey> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 06 Jul 1998 03:16:12 +0100 From: Brian Somers Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > After I remade the world from a cvsup on jul 5th, 02:30 or so, my natd'd tcp > connections have become incredibly unstable. UDP stuff remains fine. Nothing > else on the system has been changed. also, nothing out of the ordinary on > natd -v What do you mean ``unstable'' ? The only thing that's changed is the divert stuff done by Julian (cc'd)... but assuming you've got your divert rules at the front of your firewall rules, you'll be ok. > Enoch Ceshkovsky > shadey@home.com -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 21:44:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00309 for freebsd-stable-outgoing; Sun, 5 Jul 1998 21:44:06 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mh2.cts.com (mh2.cts.com [205.163.24.68]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA00304 for ; Sun, 5 Jul 1998 21:44:05 -0700 (PDT) (envelope-from mdavis@io.cts.com) Received: from io.cts.com (io.cts.com [198.68.174.34]) by mh2.cts.com (8.8.7/8.8.5) with ESMTP id VAA04206 for ; Sun, 5 Jul 1998 21:29:48 -0700 (PDT) Received: from IOPC (iopc.cts.com [198.68.174.36]) by io.cts.com (8.8.8/8.8.8) with SMTP id VAA19732 for ; Sun, 5 Jul 1998 21:29:55 -0700 (PDT) (envelope-from mdavis@io.cts.com) From: "Morgan Davis" To: Subject: Best ethernet card for 2.2.6-RELEASE Date: Sun, 5 Jul 1998 21:29:54 -0700 Message-ID: <000101bda896$b9873a90$24ae44c6@cts.com> 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 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.0518.0 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm interested in the opinions of those who frequent this list on what they consider the best 10/100mbit PCI ethernet card for FreeBSD 2.2.6-RELEASE. And, given that 2.2.7 is scheduled soon, would your recommendation still apply, or does 2.2.7 open up support for newer cards (like the SMC EtherPower II 10/100 which 2.2.6 does not recognize)? Thanks. --Morgan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 21:51:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA01275 for freebsd-stable-outgoing; Sun, 5 Jul 1998 21:51:15 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA01270 for ; Sun, 5 Jul 1998 21:51:14 -0700 (PDT) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id VAA02022; Sun, 5 Jul 1998 21:41:05 -0700 (PDT) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpd002019; Mon Jul 6 04:41:05 1998 Date: Sun, 5 Jul 1998 21:41:01 -0700 (PDT) From: Julian Elischer To: Brian Somers cc: Enoch Ceshkovsky , freebsd-stable@FreeBSD.ORG Subject: Re: Natd/LibAlias/IPDivert problems In-Reply-To: <199807060216.DAA26877@awfulhak.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 Sorry I didn't see this.. can you tell me what sort of thing you are seeing? what are your ipfw rules like? julian (In -stable the old behaviour is stil teh default so THEORETICALLY it should be behaving the same.) (in -current the old behaviour is no longer available) julian On Mon, 6 Jul 1998, Brian Somers wrote: > > After I remade the world from a cvsup on jul 5th, 02:30 or so, my natd'd tcp > > connections have become incredibly unstable. UDP stuff remains fine. Nothing > > else on the system has been changed. also, nothing out of the ordinary on > > natd -v > > What do you mean ``unstable'' ? > > The only thing that's changed is the divert stuff done by Julian > (cc'd)... but assuming you've got your divert rules at the front of > your firewall rules, you'll be ok. > > > Enoch Ceshkovsky > > shadey@home.com > > -- > Brian , , > > Don't _EVER_ lose your sense of humour..... > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 22:35:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA05874 for freebsd-stable-outgoing; Sun, 5 Jul 1998 22:35:34 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ha1.rdc2.occa.home.com (ha1.rdc2.occa.home.com [24.2.8.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA05863 for ; Sun, 5 Jul 1998 22:35:29 -0700 (PDT) (envelope-from shadey@home.com) Received: from shadey ([24.1.169.119]) by ha1.rdc2.occa.home.com (Post.Office MTA v3.5 release 217 ID# 1-1U40000L0S0V35) with SMTP id com; Sun, 5 Jul 1998 22:17:39 -0700 X-Sender: shadey@mail.alsv1.occa.home.com X-Mailer: Windows Eudora Pro Version 2.1.2 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: Julian Elischer From: Enoch Ceshkovsky Subject: Re: Natd/LibAlias/IPDivert problems Cc: brian@Awfulhak.org, freebsd-stable@FreeBSD.ORG Date: Sun, 5 Jul 1998 22:17:39 -0700 Message-ID: <19980706051739.AAA23059@ha1.rdc2.occa.home.com@shadey> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 09:41 PM 7/5/98 -0700, you wrote: >Sorry I didn't see this.. > >can you tell me what sort of thing you are seeing? >what are your ipfw rules like? [root@starbase7]/# ipfw list 00100 divert 6668 ip from any to any via de1 00200 deny icmp from any to 24.1.169.119 via de1 icmptype 8 00300 deny udp from any 7,19 to any via de1 00400 unreach host log tcp from any to 24.1.169.119 137,138,139 via de1 00500 unreach host log udp from any to 24.1.169.119 137,138,139 via de1 00600 count udp from any to 24.1.169.119 via de1 65435 allow ip from any to any 65535 deny ip from any to any Symptoms: natd server to remote host ftp completely unuseable unless passive (PASV) natd tcp connections randomly get reset, happens more likely when server traffic is higher. Enoch Ceshkovsky shadey@home.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 22:47:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA07196 for freebsd-stable-outgoing; Sun, 5 Jul 1998 22:47:41 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ns.totalware.gifu.gifu.jp (ns.totalware.gifu.gifu.jp [210.154.78.26]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA07165 for ; Sun, 5 Jul 1998 22:47:30 -0700 (PDT) (envelope-from hayashi@totalware.gifu.gifu.jp) Received: from [192.168.47.69] (mira.totalware.gifu.gifu.jp [192.168.47.69]) by ns.totalware.gifu.gifu.jp (8.8.8/3.6W) with ESMTP id OAA09599; Mon, 6 Jul 1998 14:47:17 +0900 (JST) Message-Id: <199807060547.OAA09599@ns.totalware.gifu.gifu.jp> X-Sender: hayashi@deneb.totalware.gifu.gifu.jp X-Mailer: Macintosh Eudora Pro Version 3.1.1-Jr2 In-Reply-To: <199807060216.DAA26877@awfulhak.org> References: Your message of "Sun, 05 Jul 1998 17:32:10 PDT." <19980706003210.AAA28707@ha1.rdc2.occa.home.com@shadey> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Mon, 6 Jul 1998 14:47:16 +0900 To: freebsd-stable@FreeBSD.ORG From: Akihiko Hayashi Subject: Re: Natd/LibAlias/IPDivert problems Cc: Enoch Ceshkovsky , Julian Elischer Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 11:16 AM +0900 7/6/98, Brian Somers wrote: > > After I remade the world from a cvsup on jul 5th, 02:30 or so, my natd'd tcp > > connections have become incredibly unstable. UDP stuff remains fine. Nothing > > else on the system has been changed. also, nothing out of the ordinary on > > natd -v > > What do you mean ``unstable'' ? > This problem can be same as my problem: > Date: Sat, 4 Jul 1998 22:02:06 +0900 > To: stable@FreeBSD.ORG > From: Akihiko Hayashi > Subject: ftp via 2.2-stable natd > Sender: owner-freebsd-stable@FreeBSD.ORG Unstable may be meant that for example, I succeeded small file transfer by ftp, but did not succeed large file (about 500KB). I backed /usr/src/sys/netinet/* to 98062?, and rebuild kernel, this problem is not appeared. ---- hayashi@totalware.gifu.gifu.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 23:21:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10795 for freebsd-stable-outgoing; Sun, 5 Jul 1998 23:21:53 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.uniserve.com (pop.uniserve.com [204.244.156.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id XAA10789 for ; Sun, 5 Jul 1998 23:21:50 -0700 (PDT) (envelope-from tom@uniserve.com) Received: from shell.uniserve.ca [204.244.186.218] by pop.uniserve.com with smtp (Exim 1.82 #4) id 0yt4ej-00063q-00; Sun, 5 Jul 1998 23:21:41 -0700 Date: Sun, 5 Jul 1998 23:21:37 -0700 (PDT) From: Tom X-Sender: tom@shell.uniserve.ca To: Morgan Davis cc: freebsd-stable@FreeBSD.ORG Subject: Re: Best ethernet card for 2.2.6-RELEASE In-Reply-To: <000101bda896$b9873a90$24ae44c6@cts.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, 5 Jul 1998, Morgan Davis wrote: > I'm interested in the opinions of those who frequent this list on what they > consider the best 10/100mbit PCI ethernet card for FreeBSD 2.2.6-RELEASE. > And, given that 2.2.7 is scheduled soon, would your recommendation still > apply, or does 2.2.7 open up support for newer cards (like the SMC > EtherPower II 10/100 which 2.2.6 does not recognize)? Intel Etherexpress Pro 100B or 100+. Very boring card. Just plug it in. Driver is very robust, and card is fast. See the archives. No "new" card/driver is going to be as good, because they haven't been tested as long as the fxp has. As far as I know, the tx driver (for the Etherpower II) still has some issues. > Thanks. > > --Morgan Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 23:22:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10924 for freebsd-stable-outgoing; Sun, 5 Jul 1998 23:22:13 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from antipodes.cdrom.com (castles137.castles.com [208.214.165.137]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA10862 for ; Sun, 5 Jul 1998 23:22:05 -0700 (PDT) (envelope-from mike@antipodes.cdrom.com) Received: from antipodes.cdrom.com (localhost [127.0.0.1]) by antipodes.cdrom.com (8.8.8/8.8.5) with ESMTP id XAA02931; Sun, 5 Jul 1998 23:22:28 -0700 (PDT) Message-Id: <199807060622.XAA02931@antipodes.cdrom.com> X-Mailer: exmh version 2.0zeta 7/24/97 To: "Morgan Davis" cc: freebsd-stable@FreeBSD.ORG Subject: Re: Best ethernet card for 2.2.6-RELEASE In-reply-to: Your message of "Sun, 05 Jul 1998 21:29:54 PDT." <000101bda896$b9873a90$24ae44c6@cts.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 05 Jul 1998 23:22:28 -0700 From: Mike Smith Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I'm interested in the opinions of those who frequent this list on what they > consider the best 10/100mbit PCI ethernet card for FreeBSD 2.2.6-RELEASE. Intel EtherExpress Pro 100/B (aka 100+) > And, given that 2.2.7 is scheduled soon, would your recommendation still > apply, or does 2.2.7 open up support for newer cards (like the SMC > EtherPower II 10/100 which 2.2.6 does not recognize)? 2.2.7 supports the EtherPower II (the 'tx' driver), but it's not as wonderful a card as the Intel. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 5 23:48:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA13982 for freebsd-stable-outgoing; Sun, 5 Jul 1998 23:48:15 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from darius.concentric.net (darius.concentric.net [207.155.184.79]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA13976 for ; Sun, 5 Jul 1998 23:48:08 -0700 (PDT) (envelope-from Ashort@concentric.net) Received: from mcfeely.concentric.net (mcfeely [207.155.184.83]) by darius.concentric.net (8.8.8/(98/04/23 5.10)) id CAA15905; Mon, 6 Jul 1998 02:48:07 -0400 (EDT) [1-800-745-2747 The Concentric Network] Received: from voyager.cris.com (voyager.concentric.net [206.173.119.82]) by mcfeely.concentric.net (8.8.8) id CAA07292; Mon, 6 Jul 1998 02:48:07 -0400 (EDT) Date: Mon, 6 Jul 1998 01:48:07 -0500 (EST) From: Andrew Short X-Sender: Ashort@voyager.cris.com To: Morgan Davis cc: freebsd-stable@FreeBSD.ORG Subject: Re: Best ethernet card for 2.2.6-RELEASE In-Reply-To: Message-ID: Approved: Maxwell House Rich French Roast 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, 5 Jul 1998, Tom wrote: > Intel Etherexpress Pro 100B or 100+. Very boring card. Just plug it > in. Driver is very robust, and card is fast. See the archives. I went with Etherexpress Pro 100+ and I have to agree 100%. And...at $50 a card, I feel like I am cheating someone. =) ----------------------------------------------------------------------- Andrew Short Colossians 3:23 http://www.concentric.net/~ashort/ ashort@concentric.net "Have fun stormin' da castle!" --Miracle Max To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 00:08:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA17741 for freebsd-stable-outgoing; Mon, 6 Jul 1998 00:08:50 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA17664 for ; Mon, 6 Jul 1998 00:08:24 -0700 (PDT) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id XAA04629; Sun, 5 Jul 1998 23:59:59 -0700 (PDT) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpd004624; Mon Jul 6 06:59:50 1998 Date: Sun, 5 Jul 1998 23:59:45 -0700 (PDT) From: Julian Elischer To: Akihiko Hayashi cc: freebsd-stable@FreeBSD.ORG, Enoch Ceshkovsky Subject: Re: Natd/LibAlias/IPDivert problems In-Reply-To: <199807060547.OAA09599@ns.totalware.gifu.gifu.jp> 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 can you try find the exact set of checkins that produce the instability? the effected files will be: ip_input.c ip_output.c ip_divert.c ip_fw.c In the mean while I will look for a silly error. julian On Mon, 6 Jul 1998, Akihiko Hayashi wrote: > At 11:16 AM +0900 7/6/98, Brian Somers wrote: > > > After I remade the world from a cvsup on jul 5th, 02:30 or so, my natd'd tcp > > > connections have become incredibly unstable. UDP stuff remains fine. Nothing > > > else on the system has been changed. also, nothing out of the ordinary on > > > natd -v > > > > What do you mean ``unstable'' ? > > > > This problem can be same as my problem: > > Date: Sat, 4 Jul 1998 22:02:06 +0900 > > To: stable@FreeBSD.ORG > > From: Akihiko Hayashi > > Subject: ftp via 2.2-stable natd > > Sender: owner-freebsd-stable@FreeBSD.ORG > > Unstable may be meant that for example, I succeeded small file > transfer by ftp, but did not succeed large file (about 500KB). > > I backed /usr/src/sys/netinet/* to 98062?, and rebuild kernel, > this problem is not appeared. If you can tell me what '?' is it would help.. julian > > ---- > hayashi@totalware.gifu.gifu.jp > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 00:31:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA21817 for freebsd-stable-outgoing; Mon, 6 Jul 1998 00:31:19 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from server.amis.net (server.amis.net [195.10.52.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA21810 for ; Mon, 6 Jul 1998 00:31:13 -0700 (PDT) (envelope-from blaz@gold.amis.net) Received: (from uucp@localhost) by server.amis.net (8.8.8/8.8.8) with UUCP id JAA25581; Mon, 6 Jul 1998 09:30:59 +0200 (CEST) Received: from localhost (blaz@localhost) by gold.amis.net (8.8.8/8.8.8) with SMTP id JAA00451; Mon, 6 Jul 1998 09:27:01 +0200 (CEST) Date: Mon, 6 Jul 1998 09:27:00 +0200 (CEST) From: Blaz Zupan To: Morgan Davis cc: freebsd-stable@FreeBSD.ORG Subject: Re: Best ethernet card for 2.2.6-RELEASE In-Reply-To: <000101bda896$b9873a90$24ae44c6@cts.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 > I'm interested in the opinions of those who frequent this list on what they > consider the best 10/100mbit PCI ethernet card for FreeBSD 2.2.6-RELEASE. > And, given that 2.2.7 is scheduled soon, would your recommendation still > apply, or does 2.2.7 open up support for newer cards (like the SMC > EtherPower II 10/100 which 2.2.6 does not recognize)? I'd say Intel Etherexpress Pro 10/100B without the blink of an eye. I don't use it in 100MB mode (yet), but in 10MB it outperforms anything I have seen and the driver is more stable than the Tulip (de) driver. This is all IMHO. Blaz Zupan, blaz@medinet.si, http://home.amis.net/blaz Medinet d.o.o., Linhartova 21, 2000 Maribor, Slovenia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 01:21:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA28996 for freebsd-stable-outgoing; Mon, 6 Jul 1998 01:21:32 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ns.totalware.gifu.gifu.jp (ns.totalware.gifu.gifu.jp [210.154.78.26]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA28969 for ; Mon, 6 Jul 1998 01:21:26 -0700 (PDT) (envelope-from hayashi@totalware.gifu.gifu.jp) Received: from [192.168.47.69] (mira.totalware.gifu.gifu.jp [192.168.47.69]) by ns.totalware.gifu.gifu.jp (8.8.8/3.6W) with ESMTP id RAA09806; Mon, 6 Jul 1998 17:21:20 +0900 (JST) Message-Id: <199807060821.RAA09806@ns.totalware.gifu.gifu.jp> X-Sender: hayashi@deneb.totalware.gifu.gifu.jp X-Mailer: Macintosh Eudora Pro Version 3.1.1-Jr2 In-Reply-To: References: <199807060547.OAA09599@ns.totalware.gifu.gifu.jp> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Mon, 6 Jul 1998 17:21:18 +0900 To: Julian Elischer From: Akihiko Hayashi Subject: Re: Natd/LibAlias/IPDivert problems Cc: freebsd-stable@FreeBSD.ORG, Enoch Ceshkovsky Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 3:59 PM +0900 7/6/98, Julian Elischer wrote: > can you try find the exact set of checkins that produce the instability? > > the effected files will be: > > ip_input.c > ip_output.c > ip_divert.c > ip_fw.c > I get diff $Id of sys/netinet/* 98062?-stable revision: in.h: $Id: in.h,v 1.22.2.4 1998/02/25 02:34:30 julian Exp $ ip_divert.c: $Id: ip_divert.c,v 1.1.2.9 1998/06/12 03:02:08 julian Exp $ ip_fw.c: $Id: ip_fw.c,v 1.51.2.14 1998/06/05 21:38:07 julian Exp $ ip_input.c: $Id: ip_input.c,v 1.50.2.15 1998/06/05 21:38:09 julian Exp $ ip_mroute.c: $Id: ip_mroute.c,v 1.34.2.2 1997/07/19 20:09:09 fenner Exp $ ip_output.c: $Id: ip_output.c,v 1.44.2.8 1998/06/05 21:38:11 julian Exp $ ip_var.h: $Id: ip_var.h,v 1.24.2.4 1998/06/05 21:38:12 julian Exp $ lastest-stable revision (in my cvs repository): in.h: $Id: in.h,v 1.22.2.5 1998/07/01 01:38:33 julian Exp $ ip_divert.c: $Id: ip_divert.c,v 1.1.2.10 1998/07/01 01:38:34 julian Exp $ ip_fw.c: $Id: ip_fw.c,v 1.51.2.15 1998/07/01 01:38:35 julian Exp $ ip_input.c: $Id: ip_input.c,v 1.50.2.16 1998/07/01 01:38:36 julian Exp $ ip_mroute.c: $Id: ip_mroute.c,v 1.34.2.3 1998/07/03 07:48:14 jkh Exp $ ip_output.c: $Id: ip_output.c,v 1.44.2.9 1998/07/01 01:38:37 julian Exp $ ip_var.h: $Id: ip_var.h,v 1.24.2.5 1998/07/01 01:38:38 julian Exp $ I found this problem at July 2, then I think that this problem is caused by: ----- from cvs-all-digest ----- > Date: Tue, 30 Jun 1998 18:38:41 -0700 (PDT) > From: Julian Elischer > Subject: cvs commit: src/sys/netinet in.h ip_divert.c ip_fw.c ip_input.c >ip_output.c ip_var.h > > julian 1998/06/30 18:38:40 PDT > > Modified files: (Branch: RELENG_2_2) > sys/netinet in.h ip_divert.c ip_fw.c ip_input.c > ip_output.c ip_var.h > Log: > MFC: merge in some minor cleanups for IP divert > > Revision Changes Path > 1.22.2.5 +3 -2 src/sys/netinet/in.h > 1.1.2.10 +10 -29 src/sys/netinet/ip_divert.c > 1.51.2.15 +25 -26 src/sys/netinet/ip_fw.c > 1.50.2.16 +8 -13 src/sys/netinet/ip_input.c > 1.44.2.9 +3 -3 src/sys/netinet/ip_output.c > 1.24.2.5 +2 -8 src/sys/netinet/ip_var.h ----- from cvs-all-digest ----- > > > > I backed /usr/src/sys/netinet/* to 98062?, and rebuild kernel, > > this problem is not appeared. > > > If you can tell me what '?' is it would help.. > may be 980627... it is not exactly. but, between 98062? and latest-stable, revision number is increased only one. ---- hayashi@totalware.gifu.gifu.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 01:38:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA02415 for freebsd-stable-outgoing; Mon, 6 Jul 1998 01:38:38 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA02361 for ; Mon, 6 Jul 1998 01:38:19 -0700 (PDT) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id BAA06577; Mon, 6 Jul 1998 01:34:53 -0700 (PDT) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpd006575; Mon Jul 6 08:34:47 1998 Date: Mon, 6 Jul 1998 01:34:43 -0700 (PDT) From: Julian Elischer Reply-To: Julian Elischer To: Akihiko Hayashi cc: freebsd-stable@FreeBSD.ORG, Enoch Ceshkovsky , Matt Wilbur Subject: Re: Natd/LibAlias/IPDivert problems In-Reply-To: <199807060821.RAA09806@ns.totalware.gifu.gifu.jp> 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 please try the following patch (or get the commits I just did). Index: ip_divert.c =================================================================== RCS file: /home/ncvs/src/sys/netinet/ip_divert.c,v retrieving revision 1.1.2.10 diff -c -r1.1.2.10 ip_divert.c *** ip_divert.c 1998/07/01 01:38:34 1.1.2.10 --- ip_divert.c 1998/07/06 08:28:21 *************** *** 156,174 **** } ip = mtod(m, struct ip *); ! /* Record divert port */ ! #ifndef IPFW_DIVERT_RESTART ! divsrc.sin_port = htons(ip_divert_port); ! #else divsrc.sin_port = ip_divert_cookie; ! #endif /* IPFW_DIVERT_RESTART */ /* Restore packet header fields */ ip->ip_len += hlen; HTONS(ip->ip_len); HTONS(ip->ip_off); ! /* Record receive interface address, if any */ divsrc.sin_addr.s_addr = 0; if (hlen) { struct ifaddr *ifa; --- 156,174 ---- } ip = mtod(m, struct ip *); ! /* Record divert cookie */ divsrc.sin_port = ip_divert_cookie; ! ip_divert_cookie = 0; /* Restore packet header fields */ ip->ip_len += hlen; HTONS(ip->ip_len); HTONS(ip->ip_off); ! /* ! * Record receive interface address, if any ! * But only for incoming packets. ! */ divsrc.sin_addr.s_addr = 0; if (hlen) { struct ifaddr *ifa; *************** *** 194,199 **** --- 194,202 ---- break; } } + /* + * Record the incoming interface name whenever we have one. + */ if (m->m_pkthdr.rcvif) { char name[32]; *************** *** 226,231 **** --- 229,235 ---- if (inp->inp_lport == htons(ip_divert_port)) sa = inp->inp_socket; } + ip_divert_port = 0; if (sa) { if (sbappendaddr(&sa->so_rcv, (struct sockaddr *)&divsrc, m, (struct mbuf *)0) == 0) *************** *** 267,277 **** /* Loopback avoidance */ if (sin) { - #ifndef IPFW_DIVERT_RESTART - ip_divert_cookie = ntohs(sin->sin_port); - #else ip_divert_cookie = sin->sin_port; - #endif /* IPFW_DIVERT_RESTART */ } else { ip_divert_cookie = 0; } --- 271,277 ---- Index: ip_fw.c =================================================================== RCS file: /home/ncvs/src/sys/netinet/ip_fw.c,v retrieving revision 1.51.2.15 diff -c -r1.51.2.15 ip_fw.c *** ip_fw.c 1998/07/01 01:38:35 1.51.2.15 --- ip_fw.c 1998/07/06 08:28:24 *************** *** 399,407 **** #ifdef IPFW_DIVERT_RESTART u_int16_t skipto = *cookie; #else ! u_int16_t ignport = *cookie; #endif /* * Go down the chain, looking for enlightment * #ifdef IPFW_DIVERT_RESTART --- 399,408 ---- #ifdef IPFW_DIVERT_RESTART u_int16_t skipto = *cookie; #else ! u_int16_t ignport = ntohs(*cookie); #endif + *cookie = 0; /* * Go down the chain, looking for enlightment * #ifdef IPFW_DIVERT_RESTART *************** *** 601,607 **** #ifdef IPFW_DIVERT_RESTART *cookie = f->fw_number; #else ! *cookie = f->fw_divert_port; #endif /* IPFW_DIVERT_RESTART */ return(f->fw_divert_port); case IP_FW_F_TEE: --- 602,608 ---- #ifdef IPFW_DIVERT_RESTART *cookie = f->fw_number; #else ! *cookie = htons(f->fw_divert_port); #endif /* IPFW_DIVERT_RESTART */ return(f->fw_divert_port); case IP_FW_F_TEE: Index: ip_input.c =================================================================== RCS file: /home/ncvs/src/sys/netinet/ip_input.c,v retrieving revision 1.50.2.16 diff -c -r1.50.2.16 ip_input.c *** ip_input.c 1998/07/01 01:38:36 1.50.2.16 --- ip_input.c 1998/07/06 08:28:30 *************** *** 332,349 **** #ifdef COMPAT_IPFW if (ip_fw_chk_ptr) { - #ifdef IPDIVERT u_short port; port = (*ip_fw_chk_ptr)(&ip, hlen, NULL, &ip_divert_cookie, &m); if (port) { /* Divert packet */ frag_divert_port = port; goto ours; } #else - u_int16_t dummy = 0; /* If ipfw says divert, we have to just drop packet */ ! if ((*ip_fw_chk_ptr)(&ip, hlen, NULL, &dummy, &m)) { m_freem(m); m = NULL; } --- 332,350 ---- #ifdef COMPAT_IPFW if (ip_fw_chk_ptr) { u_short port; + #ifdef IPDIVERT port = (*ip_fw_chk_ptr)(&ip, hlen, NULL, &ip_divert_cookie, &m); if (port) { /* Divert packet */ frag_divert_port = port; goto ours; } #else /* If ipfw says divert, we have to just drop packet */ ! /* use port as a dummy argument */ ! port = 0; ! if ((*ip_fw_chk_ptr)(&ip, hlen, NULL, &port, &m)) { m_freem(m); m = NULL; } *************** *** 552,557 **** --- 553,560 ---- #ifdef IPDIVERT /* * Divert reassembled packets to the divert protocol if required + * If divert port is null then cookie should be too, + * so we shouldn't need to clear them here. Assume ip_divert does so. */ if (frag_divert_port) { ipstat.ips_delivered++; *************** *** 566,577 **** ipstat.ips_noproto++; goto bad; } - - /* Don't let packets divert themselves */ - if (ip->ip_p == IPPROTO_DIVERT) { - ipstat.ips_noproto++; - goto bad; - } #endif /* --- 569,574 ---- *************** *** 704,715 **** /* * Any fragment diverting causes the whole packet to divert */ ! if (frag_divert_port != 0) { ! fp->ipq_divert = frag_divert_port; #ifdef IPFW_DIVERT_RESTART ! fp->ipq_div_cookie = ip_divert_cookie; #endif /* IPFW_DIVERT_RESTART */ - } frag_divert_port = 0; ip_divert_cookie = 0; #endif --- 701,710 ---- /* * Any fragment diverting causes the whole packet to divert */ ! fp->ipq_divert = frag_divert_port; #ifdef IPFW_DIVERT_RESTART ! fp->ipq_div_cookie = ip_divert_cookie; #endif /* IPFW_DIVERT_RESTART */ frag_divert_port = 0; ip_divert_cookie = 0; #endif *************** *** 790,795 **** --- 785,794 ---- return ((struct ip *)ip); dropfrag: + #ifdef IPDIVERT + frag_divert_port = 0; + ip_divert_cookie = 0; + #endif ipstat.ips_fragdropped++; m_freem(m); return (0); On Mon, 6 Jul 1998, Akihiko Hayashi wrote: > At 3:59 PM +0900 7/6/98, Julian Elischer wrote: > > can you try find the exact set of checkins that produce the instability? > > > > the effected files will be: > > > > ip_input.c > > ip_output.c > > ip_divert.c > > ip_fw.c > > > > I get diff $Id of sys/netinet/* > > 98062?-stable revision: > in.h: $Id: in.h,v 1.22.2.4 1998/02/25 02:34:30 julian Exp $ > ip_divert.c: $Id: ip_divert.c,v 1.1.2.9 1998/06/12 03:02:08 julian Exp $ > ip_fw.c: $Id: ip_fw.c,v 1.51.2.14 1998/06/05 21:38:07 julian Exp $ > ip_input.c: $Id: ip_input.c,v 1.50.2.15 1998/06/05 21:38:09 julian Exp $ > ip_mroute.c: $Id: ip_mroute.c,v 1.34.2.2 1997/07/19 20:09:09 fenner Exp $ > ip_output.c: $Id: ip_output.c,v 1.44.2.8 1998/06/05 21:38:11 julian Exp $ > ip_var.h: $Id: ip_var.h,v 1.24.2.4 1998/06/05 21:38:12 julian Exp $ > > lastest-stable revision (in my cvs repository): > in.h: $Id: in.h,v 1.22.2.5 1998/07/01 01:38:33 julian Exp $ > ip_divert.c: $Id: ip_divert.c,v 1.1.2.10 1998/07/01 01:38:34 julian Exp $ > ip_fw.c: $Id: ip_fw.c,v 1.51.2.15 1998/07/01 01:38:35 julian Exp $ > ip_input.c: $Id: ip_input.c,v 1.50.2.16 1998/07/01 01:38:36 julian Exp $ > ip_mroute.c: $Id: ip_mroute.c,v 1.34.2.3 1998/07/03 07:48:14 jkh Exp $ > ip_output.c: $Id: ip_output.c,v 1.44.2.9 1998/07/01 01:38:37 julian Exp $ > ip_var.h: $Id: ip_var.h,v 1.24.2.5 1998/07/01 01:38:38 julian Exp $ > > I found this problem at July 2, then I think that this problem is > caused by: > ----- from cvs-all-digest ----- > > Date: Tue, 30 Jun 1998 18:38:41 -0700 (PDT) > > From: Julian Elischer > > Subject: cvs commit: src/sys/netinet in.h ip_divert.c ip_fw.c ip_input.c > >ip_output.c ip_var.h > > > > julian 1998/06/30 18:38:40 PDT > > > > Modified files: (Branch: RELENG_2_2) > > sys/netinet in.h ip_divert.c ip_fw.c ip_input.c > > ip_output.c ip_var.h > > Log: > > MFC: merge in some minor cleanups for IP divert > > > > Revision Changes Path > > 1.22.2.5 +3 -2 src/sys/netinet/in.h > > 1.1.2.10 +10 -29 src/sys/netinet/ip_divert.c > > 1.51.2.15 +25 -26 src/sys/netinet/ip_fw.c > > 1.50.2.16 +8 -13 src/sys/netinet/ip_input.c > > 1.44.2.9 +3 -3 src/sys/netinet/ip_output.c > > 1.24.2.5 +2 -8 src/sys/netinet/ip_var.h > ----- from cvs-all-digest ----- > > > > > > > > I backed /usr/src/sys/netinet/* to 98062?, and rebuild kernel, > > > this problem is not appeared. > > > > > > If you can tell me what '?' is it would help.. > > > > may be 980627... it is not exactly. but, between 98062? and latest-stable, > revision number is increased only one. > > > ---- > hayashi@totalware.gifu.gifu.jp > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 02:41:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA10029 for freebsd-stable-outgoing; Mon, 6 Jul 1998 02:41:26 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from tyree.iii.co.uk (tyree.iii.co.uk [195.89.149.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA10024 for ; Mon, 6 Jul 1998 02:41:18 -0700 (PDT) (envelope-from nik@iii.co.uk) From: nik@iii.co.uk Received: from carrig.strand.iii.co.uk (carrig.strand.iii.co.uk [192.168.7.25]) by tyree.iii.co.uk (8.8.8/8.8.8) with ESMTP id KAA04883; Mon, 6 Jul 1998 10:41:14 +0100 (BST) Received: (from nik@localhost) by carrig.strand.iii.co.uk (8.8.8/8.8.7) id KAA28734; Mon, 6 Jul 1998 10:40:57 +0100 (BST) Message-ID: <19980706104056.25622@iii.co.uk> Date: Mon, 6 Jul 1998 10:40:56 +0100 To: "Nguyen HM (Mike)" Cc: freebsd-stable@FreeBSD.ORG Subject: Re: How to make (build)world go faster References: <332F90115D96D0119CD500805FEA976B0178C24F@HSCMS01> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.85e In-Reply-To: <332F90115D96D0119CD500805FEA976B0178C24F@HSCMS01>; from Nguyen HM (Mike) on Thu, Jul 02, 1998 at 02:41:59PM -0500 Organization: interactive investor Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jul 02, 1998 at 02:41:59PM -0500, Nguyen HM (Mike) wrote: > I've been reading the mailing lists, and people are claiming they can > get make worlds down to around 100 minutes or so. Can anyone give me > some hints (besides the /usr/obj and /usr/src on different spindles > trick, I only have one disk, but /usr/src is mounted from another > system). N -- Work: nik@iii.co.uk | FreeBSD + Perl + Apache Rest: nik@nothing-going-on.demon.co.uk | Remind me again why we need Play: nik@freebsd.org | Microsoft? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 02:53:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA11514 for freebsd-stable-outgoing; Mon, 6 Jul 1998 02:53:20 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from tyree.iii.co.uk (tyree.iii.co.uk [195.89.149.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA11506 for ; Mon, 6 Jul 1998 02:53:16 -0700 (PDT) (envelope-from nik@iii.co.uk) From: nik@iii.co.uk Received: from carrig.strand.iii.co.uk (carrig.strand.iii.co.uk [192.168.7.25]) by tyree.iii.co.uk (8.8.8/8.8.8) with ESMTP id KAA05121; Mon, 6 Jul 1998 10:53:10 +0100 (BST) Received: (from nik@localhost) by carrig.strand.iii.co.uk (8.8.8/8.8.7) id KAA28754; Mon, 6 Jul 1998 10:52:52 +0100 (BST) Message-ID: <19980706105251.20749@iii.co.uk> Date: Mon, 6 Jul 1998 10:52:51 +0100 To: Dan Cooper Cc: FreeBSD-Stable Subject: Re: Questions on the subject buildworld subject References: <001301bda6bc$1b208360$0201a8c0@pell.fvt.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.85e In-Reply-To: <001301bda6bc$1b208360$0201a8c0@pell.fvt.com>; from Dan Cooper on Fri, Jul 03, 1998 at 12:52:27PM -0700 Organization: interactive investor Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jul 03, 1998 at 12:52:27PM -0700, Dan Cooper wrote: > The tutorial mentions that you can use '-jx' as an option with the -current > source to allow make to spawn 'x' simultaneous processes (-j4 was > recommended for single CPU machines) to speed up the build. Can you do this > with 2.2-stable and does it speed up the build significantly? You can do this with -stable, but as with -current it may not always work. While people don't go out of their way to break this functionality, mistakes do happen. If you want to try it, you can't damage your system with # make -j4 buildworld If it works, great. If it doesn't work, you just have to do 'buildworld' again without the '-j' parameter. All you've lost is a bit of time. How much it speeds the build up will depend on your system. A system with a fast CPU and slow disks will see a more dramatic improvement than one with a slow CPU and fast disks. I 'buildworld' fairly frequently, with /usr/obj as a local filesystem and /usr/src NFS mounted, and it makes a vast improvement in that case. > Also, the post install step discusses updating the configuration files in > /etc, /usr, and /var. The tutorial recommends creating a dummy directory, > installing the new /etc and other files, and then going through and > comparing each new file with its old counterpart to see if there are any > changes. My question: is there an easier way of doing this? Not exactly. The first time you do it it can be a pain, typically because a lot of files have changed. However, if you follow the tip to give the new directory a timestamp under /var/tmp, and build the world fairly frequently then you can compare the differences that have been made to the source tree in the intervening time. Typically these will be fairly small, cutting down the amount of work you need to do in order to do the merge. > Is there a list of important revisions to configuration files somewhere? You can get a list of all the revisions if you keep the full CVS tree locally. That takes ~ 750MB of space, so may not be an option in your case. Instead, you could use the web interface. Here's the revision log for the /etc/rc.conf file; N -- Work: nik@iii.co.uk | FreeBSD + Perl + Apache Rest: nik@nothing-going-on.demon.co.uk | Remind me again why we need Play: nik@freebsd.org | Microsoft? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 03:01:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA12780 for freebsd-stable-outgoing; Mon, 6 Jul 1998 03:01:27 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from foobar.franken.de (BWVTu/fnjGmwrGsNP43PhXHK7h+l42d8@foobar.franken.de [194.94.249.81]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA12761 for ; Mon, 6 Jul 1998 03:01:18 -0700 (PDT) (envelope-from logix@foobar.franken.de) Received: (from logix@localhost) by foobar.franken.de (8.8.8/8.8.5) id MAA06289; Mon, 6 Jul 1998 12:00:48 +0200 (CEST) Message-ID: <19980706120048.04854@foobar.franken.de> Date: Mon, 6 Jul 1998 12:00:48 +0200 From: Harold Gutch To: Roger Savard , freebsd-stable@FreeBSD.ORG Subject: Re: dmesg error References: <35A0267C.DF12349A@henoc.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: <35A0267C.DF12349A@henoc.com>; from Roger Savard on Sun, Jul 05, 1998 at 09:21:00PM -0400 X-Organisation: BatmanSystemDistribution X-Mission: To free the world from the Penguin Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 05, 1998 at 09:21:00PM -0400, Roger Savard wrote: > Since I cvsuped around jun 26 and made a new kernel, > I get the same error. > > > I recently made world and installed fine I noticed today at > > boot time I am getting an dmesg error: > > So on command line I tryed dmesg I get > > dmesg: magic number incorrect > > > > anyone know how to fix this? > > I tryed reinstalling the bin in /usr/src > > Add something like options "MSGBUF_SIZE=40960" (see /usr/src/sys/i386/conf/LINT) to your kernel-Configfile, recompile config, recompile the kernel, recompile dmesg. -- bye, logix Sleep is an abstinence syndrome wich occurs due to lack of caffein. Wed Mar 4 04:53:33 CET 1998 #unix, ircnet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 04:09:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA21229 for freebsd-stable-outgoing; Mon, 6 Jul 1998 04:09:01 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from dfw-ix14.ix.netcom.com (dfw-ix14.ix.netcom.com [206.214.98.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA21172 for ; Mon, 6 Jul 1998 04:08:53 -0700 (PDT) (envelope-from ingram2@ix.netcom.com) Received: (from smap@localhost) by dfw-ix14.ix.netcom.com (8.8.4/8.8.4) id GAA17769 for ; Mon, 6 Jul 1998 06:08:20 -0500 (CDT) Received: from nor-va3-24.ix.netcom.com(204.32.181.120) by dfw-ix14.ix.netcom.com via smap (V1.3) id rma017760; Mon Jul 6 06:07:48 1998 Message-ID: <34FD4361.6996@ix.netcom.com> Date: Wed, 04 Mar 1998 07:04:49 -0500 From: Kendo X-Mailer: Mozilla 3.04 (Win95; I) MIME-Version: 1.0 To: freebsd-stable@FreeBSD.ORG Subject: DVD-ROM in FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG can i use dvd drives in FreeBSD, and if so can i watch dvd videos? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 04:24:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA23738 for freebsd-stable-outgoing; Mon, 6 Jul 1998 04:24:46 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from techpower.net (hometeam@techpower.net [205.133.231.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA23713 for ; Mon, 6 Jul 1998 04:24:40 -0700 (PDT) (envelope-from hometeam@techpower.net) Received: from localhost (hometeam@localhost) by techpower.net (8.8.8/8.8.8) with SMTP id HAA01499; Mon, 6 Jul 1998 07:24:28 -0400 (EDT) (envelope-from hometeam@techpower.net) Date: Mon, 6 Jul 1998 07:24:28 -0400 (EDT) From: Jt To: Harold Gutch cc: Roger Savard , freebsd-stable@FreeBSD.ORG Subject: Re: dmesg error In-Reply-To: <19980706120048.04854@foobar.franken.de> 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 making a new kernel probly have release-2.2.6 with stable-2.2.6 bins. Need to also make new kernel after make world. hometeam@techpower.net --We cannot all be masters, nor all masters Cannot be truly follow'd-- -----BEGIN PGP MESSAGE----- Version: 2.6.2 owEBqwBU/4kAlQMFADRCxNWhsddKSTR+6QEBelED/jzeC3btZfqSdIfrNoCgwUJJ iNQ33UQoMyJ2ygkfl72xP5J79yml/F4P73GnNaDVbaMOmOG2NNAi5ElE73wRh54U 17kH+n5XnYeqekV8T2TG2Q6ex3UotXPyZ1vvrCrSxapOz6a4hh0GQeA55rcwLy2W ROHwxfvaVsrX5iVOkRoerBFiC21lc3NhZ2UudHh0AAAAAA== =jCvF -----END PGP MESSAGE----- On Mon, 6 Jul 1998, Harold Gutch wrote: > On Sun, Jul 05, 1998 at 09:21:00PM -0400, Roger Savard wrote: > > Since I cvsuped around jun 26 and made a new kernel, > > I get the same error. > > > > > I recently made world and installed fine I noticed today at > > > boot time I am getting an dmesg error: > > > So on command line I tryed dmesg I get > > > dmesg: magic number incorrect > > > > > > anyone know how to fix this? > > > I tryed reinstalling the bin in /usr/src > > > > Add something like > options "MSGBUF_SIZE=40960" > (see /usr/src/sys/i386/conf/LINT) > to your kernel-Configfile, recompile config, recompile the > kernel, recompile dmesg. > > -- > bye, logix > > Sleep is an abstinence syndrome wich occurs due to lack of caffein. > Wed Mar 4 04:53:33 CET 1998 #unix, ircnet > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 Jul 6 05:01:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA27823 for freebsd-stable-outgoing; Mon, 6 Jul 1998 05:01:32 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from st-lcremean.tidalwave.net (lee@st-lcremean.tidalwave.net [208.213.203.186]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA27817 for ; Mon, 6 Jul 1998 05:01:25 -0700 (PDT) (envelope-from lee@st-lcremean.tidalwave.net) Received: (from lee@localhost) by st-lcremean.tidalwave.net (8.8.7/8.8.7) id IAA01006; Mon, 6 Jul 1998 08:01:12 -0400 (EDT) (envelope-from lee) Message-ID: <19980706080112.21240@st-lcremean.tidalwave.net> Date: Mon, 6 Jul 1998 08:01:12 -0400 From: Lee Cremeans To: Kendo Cc: freebsd-stable@FreeBSD.ORG Subject: Re: DVD-ROM in FreeBSD Reply-To: lcremean@tidalwave.net References: <34FD4361.6996@ix.netcom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.85e In-Reply-To: <34FD4361.6996@ix.netcom.com>; from Kendo on Wed, Mar 04, 1998 at 07:04:49AM -0500 X-OS: FreeBSD 2.2.5-STABLE (soon to be 3.0-CURRENT) X-Evil: microsoft.com Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Mar 04, 1998 at 07:04:49AM -0500, Kendo wrote: > can i use dvd drives in FreeBSD, and if so can i watch dvd videos? 1) This isn't really a question for -stable; you should have sent this to questions@freebsd.org. 2) I remember reading a question of this sort on Slashdot (a Linux site, I know, but hang in there), and they say that if you stick to DVD-ROM (which uses ISO 9660), you should be fine... BUT: movie DVDs use their own format (UDF) that nothing seems to support yet--except Windows. They also say "don't even think about Divx"--so for now, you will probably be better off with getting a dedicated DVD player box, or finding a WIndows machine to play the movies on. -- Lee C. -- Manassas, VA, USA (WakkyMouse on DALnet #watertower) A! JW223 YWD+++^ri P&B++ SL+++^i GDF B&M KK--i MD+++i P++ I++++ Did $++ E5/10/70/3c/73ac/95/96 H2 PonPippi Ay77 M | lcremean@tidalwave.net FreeBSD/Linux/Unix hacker...Win95 and M$ evil! (go see www.freebsd.org) My home page: http://st-lcremean.tidalwave.net/~lee | finger me for geek code To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 05:39:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA01915 for freebsd-stable-outgoing; Mon, 6 Jul 1998 05:39:57 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from Mercury.unix.acs.cc.unt.edu (mercury.acs.unt.edu [129.120.220.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01908 for ; Mon, 6 Jul 1998 05:39:55 -0700 (PDT) (envelope-from john@unt.edu) Received: from leonardo.cascss.unt.edu (leonardo.cascss.unt.edu [129.120.32.203]) by Mercury.unix.acs.cc.unt.edu (8.8.8/8.8.8) with ESMTP id HAA04779 for ; Mon, 6 Jul 1998 07:39:54 -0500 (CDT) Received: (from john@localhost) by leonardo.cascss.unt.edu (8.8.8/8.6.9) id HAA27576 for freebsd-stable@freebsd.org; Mon, 6 Jul 1998 07:39:44 -0500 (CDT) From: john Message-Id: <199807061239.HAA27576@leonardo.cascss.unt.edu> Subject: Intel Pro/100+ To: freebsd-stable@FreeBSD.ORG Date: Mon, 6 Jul 1998 07:39:44 -0500 (CDT) X-Mailer: ELM [version 2.4ME+ PL32 (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'd say Intel Etherexpress Pro 10/100B without the blink of an eye. I > don't use it in 100MB mode (yet), but in 10MB it outperforms anything I Speaking of this, is there work in progress for support of the new Intel card that replaces the 10/100B--the Pro 100+? Intels page says that the new card is driver compatible--anyone using the new card? http://support.intel.com/support/etherexpress/pro100/24362.htm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 05:57:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA03979 for freebsd-stable-outgoing; Mon, 6 Jul 1998 05:57:09 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from uhura.concentric.net (uhura.concentric.net [206.173.119.93]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA03971 for ; Mon, 6 Jul 1998 05:57:05 -0700 (PDT) (envelope-from Ashort@concentric.net) Received: from cliff.concentric.net (cliff [206.173.119.90]) by uhura.concentric.net (8.8.8/(98/05/18 5.10)) id IAA12173; Mon, 6 Jul 1998 08:57:04 -0400 (EDT) [1-800-745-2747 The Concentric Network] Received: from mariner.cris.com (mariner.concentric.net [206.173.119.83]) by cliff.concentric.net (8.8.8) id IAA06423; Mon, 6 Jul 1998 08:57:04 -0400 (EDT) Date: Mon, 6 Jul 1998 07:57:04 -0500 (EST) From: Andrew Short X-Sender: Ashort@mariner.cris.com To: john cc: freebsd-stable@FreeBSD.ORG Subject: Re: Intel Pro/100+ In-Reply-To: <199807061239.HAA27576@leonardo.cascss.unt.edu> Message-ID: Approved: Maxwell House Rich French Roast MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Speaking of this, is there work in progress for support of the new Intel > card that replaces the 10/100B--the Pro 100+? Intels page says that the > new card is driver compatible--anyone using the new card? I am using the Pro 100+ right now on the fxp0 driver. Autodetected just fine and I have been using it at shared 10 on an el cheapo hub. Can't comment on the duplexing or running it at 100 megs, but as far as I have experienced it, no work needs to be done. Anyone else? ----------------------------------------------------------------------- Andrew Short Colossians 3:23 http://www.concentric.net/~ashort/ ashort@concentric.net "Have fun stormin' da castle!" --Miracle Max To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 06:06:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA05503 for freebsd-stable-outgoing; Mon, 6 Jul 1998 06:06:34 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mailgw.adsanker.com (mailgw.adsanker.com [193.235.30.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA05484 for ; Mon, 6 Jul 1998 06:06:27 -0700 (PDT) (envelope-from beha@adsblnI.de.adsanker.com) Received: from adsblnI.de.adsanker.com (adsblni.de.adsanker.com [141.161.147.4]) by mailgw.adsanker.com (8.8.8/8.8.8) with SMTP id PAA03943 for ; Mon, 6 Jul 1998 15:09:38 +0200 (CETDST) Received: from [132.147.160.128] by adsblnI.de.adsanker.com id aa01518; 6 Jul 98 14:05 MESZ Message-ID: <35A0CC9B.21FF9258@de.adsanker.com> Date: Mon, 06 Jul 1998 15:09:50 +0200 From: Berthold Hienger X-Mailer: Mozilla 4.04 [en] (WinNT; I) MIME-Version: 1.0 To: FreeBSD-stable@FreeBSD.ORG Subject: subscribe Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG subscribe FreeBSD-stable beha@de.adsanker.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 06:10:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA06047 for freebsd-stable-outgoing; Mon, 6 Jul 1998 06:10:46 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA06035 for ; Mon, 6 Jul 1998 06:10:40 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id NAA22576; Mon, 6 Jul 1998 13:10:33 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id PAA14953; Mon, 6 Jul 1998 15:10:32 +0200 (MET DST) Message-ID: <19980706151030.51255@follo.net> Date: Mon, 6 Jul 1998 15:10:30 +0200 From: Eivind Eklund To: nik@iii.co.uk, Dan Cooper Cc: FreeBSD-Stable Subject: Re: Questions on the subject buildworld subject References: <001301bda6bc$1b208360$0201a8c0@pell.fvt.com> <19980706105251.20749@iii.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <19980706105251.20749@iii.co.uk>; from nik@iii.co.uk on Mon, Jul 06, 1998 at 10:52:51AM +0100 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jul 06, 1998 at 10:52:51AM +0100, nik@iii.co.uk wrote: > > Is there a list of important revisions to configuration files somewhere? > > You can get a list of all the revisions if you keep the full CVS tree > locally. That takes ~ 750MB of space, so may not be an option in your > case. eivind(bitbox)--% du -sk /home/ncvs/ 467181 /home/ncvs/ eivind(bitbox)--% You probably get about 650MB if you include a full checked out source tree (guess). Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 07:29:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17796 for freebsd-stable-outgoing; Mon, 6 Jul 1998 07:29:53 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA17790 for ; Mon, 6 Jul 1998 07:29:50 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id QAA14577; Mon, 6 Jul 1998 16:28:42 +0200 (MET DST) Received: from localhost (localhost [127.0.0.1]) by semyam.dinoco.de (8.8.8/8.8.8) with ESMTP id IAA02782; Mon, 6 Jul 1998 08:37:18 +0200 (CEST) (envelope-from seggers@semyam.dinoco.de) Message-Id: <199807060637.IAA02782@semyam.dinoco.de> To: Roger Savard Cc: freebsd-stable@FreeBSD.ORG, seggers@semyam.dinoco.de Subject: Re: dmesg error In-reply-to: Your message of "Sun, 05 Jul 1998 21:21:00 EDT." <35A0267C.DF12349A@henoc.com> Date: Mon, 06 Jul 1998 08:37:17 +0200 From: Stefan Eggers Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Since I cvsuped around jun 26 and made a new kernel, > I get the same error. There was a change in the kernel which requires a new version of dmesg. Mine is from about that time and works. > > boot time I am getting an dmesg error: > > So on command line I tryed dmesg I get > > dmesg: magic number incorrect You didn't remake the world? Then that's the mistake. Propper procedure is to make world and making and installing a new kernel (or make buildworld which is no problem during multi user, making a new kernel and then installing both in single user) to have the user land programs match the kernel. Often the shortcut of updating just the kernel works but that is not guaranteed. If you actually did it the propper way you might have missed an update to dmesg while getting the one to the kernel or vice versa due to bad timing for CVSUp. Imagine you CVSUp after the kernel update but before the server got the update to dmesg. Then the cure is to CVSUp again and remake the world. But it's not that likely I think. > > anyone know how to fix this? > > I tryed reinstalling the bin in /usr/src 2.2.6-RELEASE or 2.2-stable binaries? Stefan. -- Stefan Eggers Lu4 yao2 zhi1 ma3 li4, Max-Slevogt-Str. 1 ri4 jiu3 jian4 ren2 xin1. 51109 Koeln Federal Republic of Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 08:33:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA25704 for freebsd-stable-outgoing; Mon, 6 Jul 1998 08:33:36 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from dot.crosswinds.net (dot.crosswinds.net [209.47.139.147]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA25670; Mon, 6 Jul 1998 08:33:20 -0700 (PDT) (envelope-from tony@crosswinds.net) Received: (from tony@localhost) by dot.crosswinds.net (8.8.7/8.8.8) id LAA27822; Mon, 6 Jul 1998 11:33:26 -0400 (EDT) (envelope-from tony) From: Tony Holmes Message-Id: <199807061533.LAA27822@dot.crosswinds.net> Subject: Load related wd problem To: freebsd-stable@FreeBSD.ORG, freebsd-current@FreeBSD.ORG Date: Mon, 6 Jul 1998 11:33:25 -0400 (EDT) X-Mailer: ELM [version 2.4ME+ PL31H (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 Greetings, I posted to -stable and -current since these seem to be the most appropriate places for this question - please correct me if this is wrong. I run a Network Service Provider and utilize FreeBSD exclusively on all my systems - I have come to trust and rely on FreeBSD's performance and stability. My systems range from 2.2.1 to 2.2.6 (with some stable patches thrown in) and provide a myriad of services, but I have only recently been able to verify the existence of a problem with heavy access to IDE disks. When the IDE disks are under heavy load, they will take down the system with no warning. This occurs across all versions - it find it easy to duplicate the problem - on a web server, while the http server is up, I will do some custom processing on the log files (cat, grepping, etc.) which hits the IDE disks hard. After a time (usually after 10-15 minutes) the system hangs and can only be rescued with a hard reset. I've seen the same effect on a system set up as a Squid proxy with 2 ide drives - loggings to one disk and caching on the other, where my peak wd interrupt rates reach 150-200/sec - this machine will hang after anywhere between 1.5 hours and 2 days of uptime. If it makes any difference, I use Seagate IDE disks on all my systems. Unfortunately, due to the nature of the crash and my limited resources, I cannot isolate the problem further, but am very curious as to whether or not anyone else has seen similar problems? Tony Holmes Senior Sysadmin Crosswinds Internet Communications Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 08:56:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA29312 for freebsd-stable-outgoing; Mon, 6 Jul 1998 08:56:11 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from antipodes.cdrom.com (castles315.castles.com [208.214.167.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA29255 for ; Mon, 6 Jul 1998 08:55:47 -0700 (PDT) (envelope-from mike@antipodes.cdrom.com) Received: from antipodes.cdrom.com (localhost [127.0.0.1]) by antipodes.cdrom.com (8.8.8/8.8.5) with ESMTP id IAA03498; Mon, 6 Jul 1998 08:54:59 -0700 (PDT) Message-Id: <199807061554.IAA03498@antipodes.cdrom.com> X-Mailer: exmh version 2.0zeta 7/24/97 To: john cc: freebsd-stable@FreeBSD.ORG Subject: Re: Intel Pro/100+ In-reply-to: Your message of "Mon, 06 Jul 1998 07:39:44 CDT." <199807061239.HAA27576@leonardo.cascss.unt.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 06 Jul 1998 08:54:58 -0700 From: Mike Smith Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > I'd say Intel Etherexpress Pro 10/100B without the blink of an eye. I > > don't use it in 100MB mode (yet), but in 10MB it outperforms anything I > > Speaking of this, is there work in progress for support of the new Intel > card that replaces the 10/100B--the Pro 100+? Intels page says that the > new card is driver compatible--anyone using the new card? Why would there need to be any work in progress at all, if they're driver-compatible? And for that matter, why would I be recommending the 100+ if we didn't already support it? -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 08:59:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA00255 for freebsd-stable-outgoing; Mon, 6 Jul 1998 08:59:43 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from sctmg02.sct.ucarb.com (sctmg02.sct.ucarb.com [140.170.101.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA00224 for ; Mon, 6 Jul 1998 08:59:29 -0700 (PDT) (envelope-from NguyenHM@ucarb.com) Received: by sctmg02.sct.ucarb.com with Internet Mail Service (5.0.1458.49) id ; Mon, 6 Jul 1998 11:59:38 -0400 Message-ID: <332F90115D96D0119CD500805FEA976B017A5D04@HSCMS01> From: "Nguyen HM (Mike)" To: freebsd-stable@FreeBSD.ORG Subject: zzz command doesn't put computer to sleep Date: Mon, 6 Jul 1998 11:58:47 -0400 X-Priority: 3 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.0.1458.49) Content-Type: text/plain Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a system w/ an ASUS P2L97S mobo. This is an ATX mobo, and so has APM support and softpower, etc. However, when I type zzz (I have set up APM in the kernel, etc.), it doesn't go to sleep. Instead, it seems to do something momentarily, and then come back. There is a kernel message that says resumed from suspended mode (slept 00:00:01) So it seems like it _is_ going to sleep, but something immediately wakes up the system. Any ideas? System inventory: P2L97S motherboard 128MB ECC RAM builtin Adaptec 7880 -> ST15150W disc noname ncr 810 -> CD-ROM, Zip Intel Pro/100B Matrox Millenium II Thanks, Mike. // Mike Nguyen // Unix Systems Analyst and Geek // Union Carbide Corporation * (281) 212-8073 // nguyenhm@ucarb.com * mikenguyen@sprintmail.com (personal) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 09:19:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA04264 for freebsd-stable-outgoing; Mon, 6 Jul 1998 09:19:29 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.uniserve.com (pop.uniserve.com [204.244.156.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id JAA04257 for ; Mon, 6 Jul 1998 09:19:19 -0700 (PDT) (envelope-from tom@uniserve.com) Received: from shell.uniserve.ca [204.244.186.218] by pop.uniserve.com with smtp (Exim 1.82 #4) id 0ytDyi-0001uM-00; Mon, 6 Jul 1998 09:18:56 -0700 Date: Mon, 6 Jul 1998 09:18:55 -0700 (PDT) From: Tom X-Sender: tom@shell.uniserve.ca To: john cc: freebsd-stable@FreeBSD.ORG Subject: Re: Intel Pro/100+ In-Reply-To: <199807061239.HAA27576@leonardo.cascss.unt.edu> 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, 6 Jul 1998, john wrote: > > I'd say Intel Etherexpress Pro 10/100B without the blink of an eye. I > > don't use it in 100MB mode (yet), but in 10MB it outperforms anything I > > Speaking of this, is there work in progress for support of the new Intel No need. They are the same card basically. Two ICs have been integrated into one. This is old news, as it was discussed in the archives months ago. Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 09:31:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA05721 for freebsd-stable-outgoing; Mon, 6 Jul 1998 09:31:18 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mail.webspan.net (root@mail.webspan.net [206.154.70.7]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA05711 for ; Mon, 6 Jul 1998 09:31:07 -0700 (PDT) (envelope-from opsys@mail.webspan.net) Received: from orion.webspan.net (orion.webspan.net [206.154.70.5]) by mail.webspan.net (WEBSPAN/970608) with SMTP id MAA07959; Mon, 6 Jul 1998 12:24:18 -0400 (EDT) Date: Mon, 6 Jul 1998 12:30:52 -0400 (EDT) From: Open Systems Networking X-Sender: opsys@orion.webspan.net To: Tony Holmes cc: freebsd-stable@FreeBSD.ORG Subject: Re: Load related wd problem In-Reply-To: <199807061533.LAA27822@dot.crosswinds.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 On Mon, 6 Jul 1998, Tony Holmes wrote: Taken off -current. > I posted to -stable and -current since these seem to be the most appropriate > places for this question - please correct me if this is wrong. -current is only for those running -current aka 3.0 > When the IDE disks are under heavy load, they will take down the system with > no warning. This occurs across all versions - it find it easy to duplicate > the problem - on a web server, while the http server is up, I will do some > custom processing on the log files (cat, grepping, etc.) which hits the IDE > disks hard. After a time (usually after 10-15 minutes) the system hangs > and can only be rescued with a hard reset. I just have one question. WHY are your running any kind of service off an IDE system? Do yourself a massive favor and get these replaced with an all SCSI system. Thats my advice anyway. Chris -- "Linux... The choice of a GNUtered generation." ===================================| Open Systems Networking And Consulting. FreeBSD 2.2.6 is available now! | Phone: 316-326-6800 -----------------------------------| 1402 N. Washington, Wellington, KS-67152 FreeBSD: The power to serve! | E-Mail: opsys@open-systems.net http://www.freebsd.org | Consulting-Network Engineering-Security ===================================| http://open-systems.net -----BEGIN PGP PUBLIC KEY BLOCK----- Version: 2.6.2 mQENAzPemUsAAAEH/06iF0BU8pMtdLJrxp/lLk3vg9QJCHajsd25gYtR8X1Px1Te gWU0C4EwMh4seDIgK9bzFmjjlZOEgS9zEgia28xDgeluQjuuMyUFJ58MzRlC2ONC foYIZsFyIqdjEOCBdfhH5bmgB5/+L5bjDK6lNdqD8OAhtC4Xnc1UxAKq3oUgVD/Z d5UJXU2xm+f08WwGZIUcbGcaonRC/6Z/5o8YpLVBpcFeLtKW5WwGhEMxl9WDZ3Kb NZH6bx15WiB2Q/gZQib3ZXhe1xEgRP+p6BnvF364I/To9kMduHpJKU97PH3dU7Mv CXk2NG3rtOgLTEwLyvtBPqLnbx35E0JnZc0k5YkABRO0JU9wZW4gU3lzdGVtcyA8 b3BzeXNAb3Blbi1zeXN0ZW1zLm5ldD4= =BBjp -----END PGP PUBLIC KEY BLOCK----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 09:37:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA06460 for freebsd-stable-outgoing; Mon, 6 Jul 1998 09:37:31 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from granite.sentex.net (granite.sentex.ca [199.212.134.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA06445 for ; Mon, 6 Jul 1998 09:37:07 -0700 (PDT) (envelope-from mdtancsa@sentex.net) Received: (from mdtancsa@localhost) by granite.sentex.net (8.8.6/8.6.9) id MAA23618; Mon, 6 Jul 1998 12:36:51 -0400 (EDT) From: Mike D Tancsa Message-Id: <199807061636.MAA23618@granite.sentex.net> Subject: Re: Load related wd problem In-Reply-To: <199807061533.LAA27822@dot.crosswinds.net> from Tony Holmes at "Jul 6, 98 11:33:25 am" To: tony@crosswinds.net (Tony Holmes) Date: Mon, 6 Jul 1998 12:36:50 -0400 (EDT) Cc: freebsd-stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL31 (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 > Greetings, > > I posted to -stable and -current since these seem to be the most appropriate > places for this question - please correct me if this is wrong. Based on what you are running, only stable... Current is for the 3.x branch. > > When the IDE disks are under heavy load, they will take down the system with > no warning. What sort of drive controllers are in your boxes... Also, can you post to some web page your kernel config file and the dmesg output from bootup time. > I've seen the same effect on a system set up as a Squid proxy with 2 ide > drives - loggings to one disk and caching on the other, where my peak > wd interrupt rates reach 150-200/sec - this machine will hang after > anywhere between 1.5 hours and 2 days of uptime. Can this be repeated right away ? What if you reboot a machine, and then run several copies of bonnie.. Will it freeze the machine ? ---Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 10:42:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA16400 for freebsd-stable-outgoing; Mon, 6 Jul 1998 10:42:10 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id KAA16392 for ; Mon, 6 Jul 1998 10:42:06 -0700 (PDT) (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0ytFH9-0007ZH-00; Mon, 6 Jul 1998 11:42:03 -0600 Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.8.8/8.8.3) with ESMTP id LAA11093; Mon, 6 Jul 1998 11:43:25 -0600 (MDT) Message-Id: <199807061743.LAA11093@harmony.village.org> To: "Nguyen HM (Mike)" Subject: Re: zzz command doesn't put computer to sleep Cc: freebsd-stable@FreeBSD.ORG In-reply-to: Your message of "Mon, 06 Jul 1998 11:58:47 EDT." <332F90115D96D0119CD500805FEA976B017A5D04@HSCMS01> References: <332F90115D96D0119CD500805FEA976B017A5D04@HSCMS01> Date: Mon, 06 Jul 1998 11:43:25 -0600 From: Warner Losh Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <332F90115D96D0119CD500805FEA976B017A5D04@HSCMS01> "Nguyen HM (Mike)" writes: : resumed from suspended mode (slept 00:00:01) Hmmm, there are two possibilites that I can think of. One is that your MoBo supports wake up on ring and either a call is coming into your modem, or the modem connector is improperly wired so RI appears to always be on. The other possibility is that your MoBO supports suspend resume from timer, in which case it might have a fairly common (it seems) bug that if you suspend after the timer expires, it wakes back up right away. I suppose there are other things that might cause this too. Some PCI cards have, I think, a pin that can cause them to wakeup the host system. Maybe your MoBo supports this and one of your PCI cards improperly implements this feature. Could also be that your MoBo only supports the "Standby" state rather than the "Hibernate" state and is getting an interrupt which wakes things back up. I've seen this behavior, kinda, in some testing that I've done on my Libretto to make "Standby" work. Wanna be a guinee Pig for my latest stuff. You'll need -current to run it, however. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 10:46:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA17051 for freebsd-stable-outgoing; Mon, 6 Jul 1998 10:46:06 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from orion.ac.hmc.edu (Orion.AC.HMC.Edu [134.173.32.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA16959 for ; Mon, 6 Jul 1998 10:45:41 -0700 (PDT) (envelope-from brdavis@orion.ac.hmc.edu) Received: from localhost (brdavis@localhost) by orion.ac.hmc.edu (8.8.8/8.8.8) with SMTP id KAA25611; Mon, 6 Jul 1998 10:44:44 -0700 (PDT) Date: Mon, 6 Jul 1998 10:44:44 -0700 (PDT) From: Brooks Davis Reply-To: brooks@one-eyed-alien.net To: john cc: freebsd-stable@FreeBSD.ORG Subject: Re: Intel Pro/100+ In-Reply-To: <199807061239.HAA27576@leonardo.cascss.unt.edu> 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, 6 Jul 1998, john wrote: > > I'd say Intel Etherexpress Pro 10/100B without the blink of an eye. I > > don't use it in 100MB mode (yet), but in 10MB it outperforms anything I > > Speaking of this, is there work in progress for support of the new Intel > card that replaces the 10/100B--the Pro 100+? Intels page says that the > new card is driver compatible--anyone using the new card? It worked for me under 2.2.5. We were dropping some packets, but less then the onboard 3COM (I don't remember which, but the boot messages said it had defective firmware). That was running in promiscuious mode on a 10Mbit network with a PPro 180. It certaintly work well enough for any normal application, but the drops were a bit annoying since were were trying to do some network monitoring. -- Brooks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 11:17:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA23634 for freebsd-stable-outgoing; Mon, 6 Jul 1998 11:17:35 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from solaris.matti.ee (root@solaris.matti.ee [194.126.98.135]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA23624 for ; Mon, 6 Jul 1998 11:17:26 -0700 (PDT) (envelope-from vallo@matti.ee) Received: from myhakas.matti.ee (myhakas [194.126.98.150]) by solaris.matti.ee (8.8.8/8.8.8.s) with SMTP id VAA16881 for ; Mon, 6 Jul 1998 21:17:03 +0300 (EET DST) Date: Mon, 6 Jul 1998 21:17:04 +0300 (EEST) From: Vallo Kallaste X-Sender: root@myhakas.matti.ee To: freebsd-stable@FreeBSD.ORG Subject: Re: Load related wd problem 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 Mon, 6 Jul 1998, Open Systems Networking wrote: > > disks hard. After a time (usually after 10-15 minutes) the system hangs > > and can only be rescued with a hard reset. > > I just have one question. WHY are your running any kind of service off an > IDE system? Do yourself a massive favor and get these replaced with an all > SCSI system. Thats my advice anyway. *** He is low on resources... as you can read on the original post. Something which works is better than nothing, isn't it ? Vallo Kallaste vallo@matti.ee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 12:37:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA04043 for freebsd-stable-outgoing; Mon, 6 Jul 1998 12:37:02 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from socko.cdnow.com (socko.cdnow.com [209.83.166.75]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA04037 for ; Mon, 6 Jul 1998 12:36:58 -0700 (PDT) (envelope-from heller@daria.cdnow.com) Received: from daria.cdnow.com (daria.cdnow.com [209.83.166.60]) by socko.cdnow.com (8.9.0/8.9.0) with ESMTP id PAA04089; Mon, 6 Jul 1998 15:36:51 -0400 (EDT) Received: (from heller@localhost) by daria.cdnow.com (8.8.8/8.8.8) id PAA01081; Mon, 6 Jul 1998 15:35:17 -0400 (EDT) From: "A. Karl Heller" Message-Id: <199807061935.PAA01081@daria.cdnow.com> Subject: Re: DVD-ROM in FreeBSD To: lcremean@tidalwave.net Date: Mon, 6 Jul 1998 15:35:17 -0400 (EDT) Cc: ingram2@ix.netcom.com, freebsd-stable@FreeBSD.ORG Reply-To: heller@cdnow.com In-Reply-To: <19980706080112.21240@st-lcremean.tidalwave.net> from "Lee Cremeans" at Jul 6, 98 08:01:12 am X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My PowerMac G3 Series notebook supports DFD and UDF. Sorry. Just had to throw a plug in there. Karl > On Wed, Mar 04, 1998 at 07:04:49AM -0500, Kendo wrote: > > can i use dvd drives in FreeBSD, and if so can i watch dvd videos? > 1) This isn't really a question for -stable; you should have sent this to > questions@freebsd.org. > 2) I remember reading a question of this sort on Slashdot (a Linux site, I > know, but hang in there), and they say that if you stick to DVD-ROM (which > uses ISO 9660), you should be fine... > BUT: movie DVDs use their own format (UDF) that nothing seems to support > yet--except Windows. They also say "don't even think about Divx"--so for > now, you will probably be better off with getting a dedicated DVD player > box, or finding a WIndows machine to play the movies on. > -- > Lee C. -- Manassas, VA, USA (WakkyMouse on DALnet #watertower) > A! JW223 YWD+++^ri P&B++ SL+++^i GDF B&M KK--i MD+++i P++ I++++ Did > $++ E5/10/70/3c/73ac/95/96 H2 PonPippi Ay77 M | lcremean@tidalwave.net > FreeBSD/Linux/Unix hacker...Win95 and M$ evil! (go see www.freebsd.org) > My home page: http://st-lcremean.tidalwave.net/~lee | finger me for geek code > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- A. Karl Heller - Senior Systems Engineer - heller@cdnow.com ----------------------------------------------------------------------------- An unbreakable toy is useful for breaking other toys. Do something unusual today. Accomplish work on the computer. >>>>> HTTP://CDNOW.COM - BIGGEST FASTEST BEST <<<<< To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 12:57:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA07520 for freebsd-stable-outgoing; Mon, 6 Jul 1998 12:57:35 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mail-gw.pacbell.net (mail-gw.pacbell.net [206.13.28.25]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA07515 for ; Mon, 6 Jul 1998 12:57:34 -0700 (PDT) (envelope-from oski@pacbell.net) Received: from pacbell.net (ppp-207-215-86-24.scrm01.pacbell.net [207.215.86.24]) by mail-gw.pacbell.net (8.8.8/8.7.1+antispam) with ESMTP id MAA04203; Mon, 6 Jul 1998 12:56:12 -0700 (PDT) Message-ID: <35A12BFE.BC982FE1@pacbell.net> Date: Mon, 06 Jul 1998 12:56:46 -0700 From: Michael Oski X-Mailer: Mozilla 4.05 [en] (Win95; I) MIME-Version: 1.0 To: Andrew Short CC: john , freebsd-stable@FreeBSD.ORG Subject: Re: Intel Pro/100+ References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Actually, I have a mix of both 100/B and 100+ all at 100Mb (half-duplex {or wouldnt that be simplex?}). Anyway - I have not had any problem whatsoever with these cards! I've used them at a prior job at 100(FD) running Novell & MS stuff - they are one of the best cost/performance/stability purchases you can make. Strange... I suddenly feel like I should be on Intel payroll :-) - Oh well. MO Andrew Short wrote: > > Speaking of this, is there work in progress for support of the new Intel > > card that replaces the 10/100B--the Pro 100+? Intels page says that the > > new card is driver compatible--anyone using the new card? > > I am using the Pro 100+ right now on the fxp0 driver. Autodetected just > fine and I have been using it at shared 10 on an el cheapo hub. Can't > comment on the duplexing or running it at 100 megs, but as far as I have > experienced it, no work needs to be done. > > Anyone else? > > ----------------------------------------------------------------------- > Andrew Short Colossians 3:23 > http://www.concentric.net/~ashort/ > ashort@concentric.net "Have fun stormin' da castle!" --Miracle Max > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 Jul 6 12:59:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA07957 for freebsd-stable-outgoing; Mon, 6 Jul 1998 12:59:17 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA07935 for ; Mon, 6 Jul 1998 12:59:08 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id VAA13354; Mon, 6 Jul 1998 21:57:37 +0200 (MET DST) Received: from localhost (localhost [127.0.0.1]) by semyam.dinoco.de (8.8.8/8.8.8) with ESMTP id TAA05789; Mon, 6 Jul 1998 19:07:15 +0200 (CEST) (envelope-from seggers@semyam.dinoco.de) Message-Id: <199807061707.TAA05789@semyam.dinoco.de> Cc: Eivind Eklund , seggers@semyam.dinoco.de To: FreeBSD-Stable Subject: Re: Questions on the subject buildworld subject In-reply-to: Your message of "Mon, 06 Jul 1998 15:10:30 +0200." <19980706151030.51255@follo.net> Date: Mon, 06 Jul 1998 19:07:15 +0200 From: Stefan Eggers Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > eivind(bitbox)--% du -sk /home/ncvs/ > 467181 /home/ncvs/ > eivind(bitbox)--% > > You probably get about 650MB if you include a full checked out source > tree (guess). /usr2/FreeBSD/src 502$ du -sk . 156173 . /usr2/FreeBSD/src 503$ That's for -stable. -current can't be that different. Stefan. -- Stefan Eggers Lu4 yao2 zhi1 ma3 li4, Max-Slevogt-Str. 1 ri4 jiu3 jian4 ren2 xin1. 51109 Koeln Federal Republic of Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 13:00:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA08376 for freebsd-stable-outgoing; Mon, 6 Jul 1998 13:00:37 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mail-gw.pacbell.net (mail-gw.pacbell.net [206.13.28.25]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA08361 for ; Mon, 6 Jul 1998 13:00:32 -0700 (PDT) (envelope-from oski@pacbell.net) Received: from pacbell.net (ppp-207-215-86-24.scrm01.pacbell.net [207.215.86.24]) by mail-gw.pacbell.net (8.8.8/8.7.1+antispam) with ESMTP id MAA06144; Mon, 6 Jul 1998 12:59:41 -0700 (PDT) Message-ID: <35A12CCF.6DA34967@pacbell.net> Date: Mon, 06 Jul 1998 13:00:15 -0700 From: Michael Oski X-Mailer: Mozilla 4.05 [en] (Win95; I) MIME-Version: 1.0 To: Andrew Short CC: john , freebsd-stable@FreeBSD.ORG Subject: Re: Intel Pro/100+ References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Actually, I have a mix of both 100/B and 100+ all at 100Mb (half-duplex {or wouldnt that be simplex?}). Anyway - I have not had any problem whatsoever with these cards! I've used them at a prior job at 100(FD) running Novell & MS stuff - they are one of the best cost/performance/stability purchases you can make. Strange... I suddenly feel like I should be on Intel payroll :-) - Oh well. MO Andrew Short wrote: > > Speaking of this, is there work in progress for support of the new Intel > > card that replaces the 10/100B--the Pro 100+? Intels page says that the > > new card is driver compatible--anyone using the new card? > > I am using the Pro 100+ right now on the fxp0 driver. Autodetected just > fine and I have been using it at shared 10 on an el cheapo hub. Can't > comment on the duplexing or running it at 100 megs, but as far as I have > experienced it, no work needs to be done. > > Anyone else? > > ----------------------------------------------------------------------- > Andrew Short Colossians 3:23 > http://www.concentric.net/~ashort/ > ashort@concentric.net "Have fun stormin' da castle!" --Miracle Max > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 Jul 6 14:09:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA18910 for freebsd-stable-outgoing; Mon, 6 Jul 1998 14:09:47 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from hoflink.com (root@hoflink.com [199.173.65.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA18903 for ; Mon, 6 Jul 1998 14:09:37 -0700 (PDT) (envelope-from ti99-4a@juno.com) Received: from juno.com (ppp20.hoflink.com [199.173.65.120]) by hoflink.com (8.8.5/8.6.12) with ESMTP id RAA04791; Mon, 6 Jul 1998 17:14:20 -0400 (EDT) Message-ID: <35A13CF9.1BFD6EE0@juno.com> Date: Mon, 06 Jul 1998 17:09:13 -0400 From: Michael Graziano X-Mailer: Mozilla 4.05 [en] (Win95; I) MIME-Version: 1.0 To: Tony Holmes , Freebsd-stable@FreeBSD.ORG Subject: Re: Load related wd problem References: <199807061533.LAA27822@dot.crosswinds.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Tony Holmes wrote:[Snip] > My systems range from 2.2.1 to 2.2.6 (with some stable patches thrown in) > and provide a myriad of services, but I have only recently been able to > verify the existence of a problem with heavy access to IDE disks. > > When the IDE disks are under heavy load, they will take down the system with > no warning. This occurs across all versions - it find it easy to duplicate > the problem - on a web server, while the http server is up, I will do some > custom processing on the log files (cat, grepping, etc.) which hits the IDE > disks hard. After a time (usually after 10-15 minutes) the system hangs > and can only be rescued with a hard reset. > > I've seen the same effect on a system set up as a Squid proxy with 2 ide > drives - loggings to one disk and caching on the other, where my peak > wd interrupt rates reach 150-200/sec - this machine will hang after > anywhere between 1.5 hours and 2 days of uptime. This is a problem with the IDE Interface, which to be blunt sucks :)The best sollution to this would be to simply replace the IDE drives with SCSI drives, especially in the Squid proxy, which will be taking heavy load (Short-term this may seem more expensive, but in the long term it is worth the additional speed and uptime.) > If it makes any difference, I use Seagate IDE disks on all my systems. Well I personally don't like seagate, but that's just my opinion :) > Unfortunately, due to the nature of the crash and my limited resources, > I cannot isolate the problem further, but am very curious as to whether > or not anyone else has seen similar problems? In any system I have where an IDE drive sees heavy loads, it winds up slowing me down. If you want to salvage your old IDE Disks, use them as boot drives or swap space (Or sell them off :)) > Tony Holmes > > Senior Sysadmin (Senior Sysadmin is basicly a term which means "Guy who gets blamed when the computer does something it wasn't supposed to", right? ) > Crosswinds Internet > Communications Inc. -Mike mikeg@hoflink.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 14:18:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20241 for freebsd-stable-outgoing; Mon, 6 Jul 1998 14:18:34 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from indigo.ie (nsmart@ts01-62.waterford.indigo.ie [194.125.139.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA20179; Mon, 6 Jul 1998 14:18:17 -0700 (PDT) (envelope-from rotel@indigo.ie) Received: (from nsmart@localhost) by indigo.ie (8.8.8/8.8.7) id WAA01507; Mon, 6 Jul 1998 22:13:34 +0100 (IST) (envelope-from rotel@indigo.ie) From: Niall Smart Message-Id: <199807062113.WAA01507@indigo.ie> Date: Mon, 6 Jul 1998 22:13:33 +0000 In-Reply-To: Tony Holmes "Load related wd problem" (Jul 6, 11:33am) Reply-To: rotel@indigo.ie X-Mailer: Mail User's Shell (7.2.6 beta(3) 11/17/96) To: Tony Holmes , freebsd-stable@FreeBSD.ORG, freebsd-current@FreeBSD.ORG Subject: Re: Load related wd problem Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Jul 6, 11:33am, Tony Holmes wrote: } Subject: Load related wd problem > > My systems range from 2.2.1 to 2.2.6 (with some stable patches thrown in) > and provide a myriad of services, but I have only recently been able to > verify the existence of a problem with heavy access to IDE disks. > > When the IDE disks are under heavy load, they will take down the system with > no warning. This occurs across all versions - it find it easy to duplicate > the problem - on a web server, while the http server is up, I will do some > custom processing on the log files (cat, grepping, etc.) which hits the IDE > disks hard. After a time (usually after 10-15 minutes) the system hangs > and can only be rescued with a hard reset. Hi Tony, I saw a PR go on a while back for a similar problem, it was some problem about using one variable for all disks instead of one each, I can't remember the details. Anyway, I'm not sure if it was even committed, but it might be worth searching freebsd.org to see if you can find it, sorry I can't be more help. Niall -- Niall Smart. PGP: finger njs3@motmot.doc.ic.ac.uk FreeBSD: Turning PC's into Workstations: 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 Mon Jul 6 15:38:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA04318 for freebsd-stable-outgoing; Mon, 6 Jul 1998 15:38:43 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from indigo.ie (root@ts01-62.waterford.indigo.ie [194.125.139.125]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA04259; Mon, 6 Jul 1998 15:38:19 -0700 (PDT) (envelope-from rotel@indigo.ie) Received: (from nsmart@localhost) by indigo.ie (8.8.8/8.8.7) id XAA01618; Mon, 6 Jul 1998 23:10:27 +0100 (IST) (envelope-from rotel@indigo.ie) From: Niall Smart Message-Id: <199807062210.XAA01618@indigo.ie> Date: Mon, 6 Jul 1998 23:10:25 +0000 In-Reply-To: rotel@indigo.ie "Re: Load related wd problem" (Jul 6, 10:13pm) Reply-To: rotel@indigo.ie X-Mailer: Mail User's Shell (7.2.6 beta(3) 11/17/96) To: rotel@indigo.ie, Tony Holmes , freebsd-stable@FreeBSD.ORG, freebsd-current@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: Load related wd problem Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Jul 6, 10:13pm, rotel@indigo.ie wrote: } Subject: Re: Load related wd problem > > > > When the IDE disks are under heavy load, they will take down the system with > > no warning. This occurs across all versions - it find it easy to duplicate > > the problem - on a web server, while the http server is up, I will do some > > custom processing on the log files (cat, grepping, etc.) which hits the IDE > > disks hard. After a time (usually after 10-15 minutes) the system hangs > > and can only be rescued with a hard reset. > > I saw a PR go on a while back for a similar problem, it was some > problem about using one variable for all disks instead of one each, > I can't remember the details. Anyway, I'm not sure if it was even > committed, but it might be worth searching freebsd.org to see if > you can find it, sorry I can't be more help. Damnit, I've searched GNATS, freebsd-bugs and freebsd-hackers and reviewed the changelog for wd.c and I can't find it. Does anyone else remember this? Sorry for the amount of cross-posting, but if the original patch was correct then its important. Niall -- Niall Smart. PGP: finger njs3@motmot.doc.ic.ac.uk FreeBSD: Turning PC's into Workstations: 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 Mon Jul 6 19:01:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA23406 for freebsd-stable-outgoing; Mon, 6 Jul 1998 19:01:32 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pericles.IPAustralia.gov.au (pericles.IPAustralia.gov.au [202.14.186.30]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA23314 for ; Mon, 6 Jul 1998 19:00:37 -0700 (PDT) (envelope-from Carl.Makin@ipaustralia.gov.au) From: Carl.Makin@ipaustralia.gov.au Received: (from smap@localhost) by pericles.IPAustralia.gov.au (8.8.5/8.6.12) id LAA26806; Tue, 7 Jul 1998 11:23:46 +1000 (EST) X-Authentication-Warning: pericles.IPAustralia.gov.au: smap set sender to using -f Received: from noteshub01.aipo.gov.au(192.3.1.21) by pericles.IPAustralia.gov.au via smap (V2.0) id xma026798; Tue, 7 Jul 98 11:23:30 +1000 Received: by noteshub01.aipo.gov.au(Lotus SMTP MTA v4.6.1 (569.2 2-6-1998)) id 4A25663A.0007A902 ; Tue, 7 Jul 1998 11:23:40 +1000 X-Lotus-FromDomain: IP_AUSTRALIA To: freebsd-stable@FreeBSD.ORG, "Morgan Davis" Message-ID: <4A25663A.0007A317.00@noteshub01.aipo.gov.au> Date: Tue, 7 Jul 1998 11:00:31 +1000 Subject: Re: Best ethernet card for 2.2.6-RELEASE 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 We've standardised on the Intel Etherexpress for ALL pc's in this organisation and are very happy with it. We have several of them running in production FreeBSD boxes on 100baseT switches with no problems and we regularly see 6MB/s+ out of them. (During backups). Carl. ______________________________ Reply Separator ____________________________ _____ Subject: Best ethernet card for 2.2.6-RELEASE Author: "Morgan Davis" at IP_AUSTRALIA Date: 06/7/98 4:29 I'm interested in the opinions of those who frequent this list on what they consider the best 10/100mbit PCI ethernet card for FreeBSD 2.2.6-RELEASE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 19:27:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA27838 for freebsd-stable-outgoing; Mon, 6 Jul 1998 19:27:25 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mail.wsg.net (ns1.wsg.net [206.97.122.2]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id TAA27817 for ; Mon, 6 Jul 1998 19:27:19 -0700 (PDT) (envelope-from gilem@wsg.net) Received: (qmail 17494 invoked by uid 0); 7 Jul 1998 02:33:18 -0000 Received: from mike.wsg.net (HELO tc) (206.97.122.31) by mail.wsg.net with SMTP; 7 Jul 1998 02:33:18 -0000 Message-Id: <4.0.1.19980706222225.01022100@mail.wsg.net> X-Sender: mikemail@mail.wsg.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0.1 Date: Mon, 06 Jul 1998 22:25:15 -0400 To: freebsd-stable@FreeBSD.ORG From: "Michael R. Gile" Subject: freebsd 3.0 stability In-Reply-To: <199807062113.WAA01507@indigo.ie> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG is anyone on this list running both 3.0-current and 2.2-stable, that could perhaps give me a comparison? i am interested primarily in the SMP capabilities, to use with other freebsd machines, rather than running Linux, but would like some opinions on the stability of 3.0, given the fact that 3.0-release probably wont be seen for some time. thanks. ====================================================== Michael Gile gilem@wsg.net President (518)435-0682 Web Services Group http://www.wsg.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 21:01:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA13367 for freebsd-stable-outgoing; Mon, 6 Jul 1998 21:01:40 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA13355 for ; Mon, 6 Jul 1998 21:01:32 -0700 (PDT) (envelope-from doconnor@cain.gsoft.com.au) Received: from cain (localhost [127.0.0.1]) by cain.gsoft.com.au (8.8.8/8.6.9) with ESMTP id NAA19668; Tue, 7 Jul 1998 13:31:18 +0930 (CST) Message-Id: <199807070401.NAA19668@cain.gsoft.com.au> X-Mailer: exmh version 2.0zeta 7/24/97 To: "Michael R. Gile" cc: freebsd-stable@FreeBSD.ORG Subject: Re: freebsd 3.0 stability In-reply-to: Your message of "Mon, 06 Jul 1998 22:25:15 -0400." <4.0.1.19980706222225.01022100@mail.wsg.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 07 Jul 1998 13:31:18 +0930 From: "Daniel O'Connor" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > is anyone on this list running both 3.0-current and 2.2-stable, that could pe > rhaps give me a comparison? i am interested primarily in the SMP capabilitie > s, to use with other freebsd machines, rather than running Linux, but would l > ike some opinions on the stability of 3.0, given the fact that 3.0-release pr > obably wont be seen for some time. Well, I can say 'it works for me'.. I don't use SMP tho. I also don't use softupdates either :) Still my machine is quite stable. --------------------------------------------------------------------- |Daniel O'Connor software and network engineer for Genesis Software | |http://www.gsoft.com.au | |The nice thing about standards is that there are so many of them to| |choose from. -- Andrew Tanenbaum | --------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 6 21:12:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA14950 for freebsd-stable-outgoing; Mon, 6 Jul 1998 21:12:21 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from thelab.hub.org (tc-12.acadiau.ca [131.162.2.112]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA14934 for ; Mon, 6 Jul 1998 21:12:01 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.8.8/8.8.2) with SMTP id BAA27285; Tue, 7 Jul 1998 01:11:31 -0300 (ADT) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Tue, 7 Jul 1998 01:11:31 -0300 (ADT) From: The Hermit Hacker To: "Michael R. Gile" cc: freebsd-stable@FreeBSD.ORG Subject: Re: freebsd 3.0 stability In-Reply-To: <4.0.1.19980706222225.01022100@mail.wsg.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 On Mon, 6 Jul 1998, Michael R. Gile wrote: > is anyone on this list running both 3.0-current and 2.2-stable, that > could perhaps give me a comparison? i am interested primarily in the > SMP capabilities, to use with other freebsd machines, rather than > running Linux, but would like some opinions on the stability of 3.0, > given the fact that 3.0-release probably wont be seen for some time. I'm running a *reasonably* current 3.0 on a production server, with CAM drivers...haven't noticed any problems that I can associate with the operating system... Marc G. Fournier 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 Tue Jul 7 01:46:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA23287 for freebsd-stable-outgoing; Tue, 7 Jul 1998 01:46:04 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from tyree.iii.co.uk (tyree.iii.co.uk [195.89.149.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA23248 for ; Tue, 7 Jul 1998 01:45:58 -0700 (PDT) (envelope-from nik@iii.co.uk) From: nik@iii.co.uk Received: from carrig.strand.iii.co.uk (carrig.strand.iii.co.uk [192.168.7.25]) by tyree.iii.co.uk (8.8.8/8.8.8) with ESMTP id JAA01945; Tue, 7 Jul 1998 09:45:50 +0100 (BST) Received: (from nik@localhost) by carrig.strand.iii.co.uk (8.8.8/8.8.7) id JAA01459; Tue, 7 Jul 1998 09:45:31 +0100 (BST) Message-ID: <19980707094530.33804@iii.co.uk> Date: Tue, 7 Jul 1998 09:45:30 +0100 To: Stefan Eggers Cc: FreeBSD-Stable , Eivind Eklund Subject: Re: Questions on the subject buildworld subject References: <19980706151030.51255@follo.net> <199807061707.TAA05789@semyam.dinoco.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.85e In-Reply-To: <199807061707.TAA05789@semyam.dinoco.de>; from Stefan Eggers on Mon, Jul 06, 1998 at 07:07:15PM +0200 Organization: interactive investor Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jul 06, 1998 at 07:07:15PM +0200, Stefan Eggers wrote: > > eivind(bitbox)--% du -sk /home/ncvs/ > > 467181 /home/ncvs/ > > eivind(bitbox)--% > > > > You probably get about 650MB if you include a full checked out source > > tree (guess). > > /usr2/FreeBSD/src 502$ du -sk . > 156173 . > /usr2/FreeBSD/src 503$ > > That's for -stable. -current can't be that different. That's the great thing about this medium; had I posted a message saying "Hey, does anyone know how big the CVS tree plus a checked out copy of the source code is?" there'd have been deafening silence. Send out the wrong information, and people are clambering over each other to correct you. :-) [ FWIW, I keep copies of the src, doc, www, and ports repositories, and that's *definitely* nearer 750MB. ] N -- Work: nik@iii.co.uk | FreeBSD + Perl + Apache Rest: nik@nothing-going-on.demon.co.uk | Remind me again why we need Play: nik@freebsd.org | Microsoft? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 7 10:59:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA06831 for freebsd-stable-outgoing; Tue, 7 Jul 1998 10:59:35 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from gershwin.tera.com (gershwin.tera.com [207.224.230.28]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA06821 for ; Tue, 7 Jul 1998 10:59:32 -0700 (PDT) (envelope-from kline@tera.com) Received: from athena.tera.com (athena.tera.com [207.224.230.127]) by gershwin.tera.com (8.8.8/8.8.8) with ESMTP id KAA27812 for ; Tue, 7 Jul 1998 10:58:55 -0700 (PDT) From: Gary Kline Received: (from kline@localhost) by athena.tera.com (8.7.5/8.7.3) id KAA06037 for stable@freebsd.org; Tue, 7 Jul 1998 10:58:41 -0700 (PDT) Message-Id: <199807071758.KAA06037@athena.tera.com> Subject: 2940 and 2940UW To: stable@FreeBSD.ORG Date: Tue, 7 Jul 1998 10:58:37 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL23 (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 My new 6x86 got toasted (or fried) and since Fry's had a 200MHz P5 on sale, that's what I've got. (I did spring for another 32m DIMM.) Having trouble booting, though. We put in a SCSI-PCI driver with the name SIIG and that didn't work; so what was available was an Adaptec 2940UW. Prev'ly I had an IWILL with builtin SCSI and everything was peachy. Now the kernel panics not finding sd2s2, my third SCSI drive. What's the solution to getting 2.2.6 to boot multiuser? Is there some BIOS setting that I have to toggle to see sd2s2? Or do I have to rebuild the kernel with a different driver for the 2940UW? Or...?? I don't know which flavor of Adaptec was in the IWILL. Think it was a 2940, tho. thanks, folks, gary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 7 14:19:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA05264 for freebsd-stable-outgoing; Tue, 7 Jul 1998 14:19:10 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA05251 for ; Tue, 7 Jul 1998 14:19:07 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.8.8/8.8.5) with ESMTP id OAA02031; Tue, 7 Jul 1998 14:18:31 -0700 (PDT) Message-Id: <199807072118.OAA02031@dingo.cdrom.com> X-Mailer: exmh version 2.0zeta 7/24/97 To: Gary Kline cc: stable@FreeBSD.ORG Subject: Re: 2940 and 2940UW In-reply-to: Your message of "Tue, 07 Jul 1998 10:58:37 PDT." <199807071758.KAA06037@athena.tera.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 07 Jul 1998 14:18:31 -0700 From: Mike Smith Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Now the kernel panics not finding sd2s2, my third SCSI drive. I don't believe that this is a "kernel panic" at all, unless this is where you're booting from. It's more than likely that while you were moving things around, you've managed to get your disks out of order and your /etc/fstab file doesn't match with reality. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 7 14:29:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA06870 for freebsd-stable-outgoing; Tue, 7 Jul 1998 14:29:01 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from gershwin.tera.com (gershwin.tera.com [207.224.230.28]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA06862 for ; Tue, 7 Jul 1998 14:28:59 -0700 (PDT) (envelope-from kline@tera.com) Received: from athena.tera.com (athena.tera.com [207.224.230.127]) by gershwin.tera.com (8.8.8/8.8.8) with ESMTP id OAA04461; Tue, 7 Jul 1998 14:28:27 -0700 (PDT) From: Gary Kline Received: (from kline@localhost) by athena.tera.com (8.7.5/8.7.3) id OAA07010; Tue, 7 Jul 1998 14:28:14 -0700 (PDT) Message-Id: <199807072128.OAA07010@athena.tera.com> Subject: Re: 2940 and 2940UW In-Reply-To: <199807072118.OAA02031@dingo.cdrom.com> from Mike Smith at "Jul 7, 98 02:18:31 pm" To: mike@smith.net.au (Mike Smith) Date: Tue, 7 Jul 1998 14:28:10 -0700 (PDT) Cc: kline@tera.com, stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL23 (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 According to Mike Smith: > > > > Now the kernel panics not finding sd2s2, my third SCSI drive. > > I don't believe that this is a "kernel panic" at all, unless this is > where you're booting from. It's more than likely that while you were > moving things around, you've managed to get your disks out of order and > your /etc/fstab file doesn't match with reality. > I'll check. Note that I was able to fsck everything in /etc/fstab, and to mount everything with no trouble. --Oh, and I made floppy backups of /etc and more and dump'd most things to tape. gary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 7 15:14:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11473 for freebsd-stable-outgoing; Tue, 7 Jul 1998 15:14:22 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mail.double-barrel.be (root@mail.double-barrel.be [194.7.102.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA11446 for ; Tue, 7 Jul 1998 15:14:10 -0700 (PDT) (envelope-from mvergall@alpha.double-barrel.be) Received: from alpha.double-barrel.be (mvergall@ns.double-barrel.be [194.7.102.18]) by mail.double-barrel.be (8.8.8/8.8.8) with ESMTP id AAA20026; Wed, 8 Jul 1998 00:14:56 +0200 Received: from localhost (mvergall@localhost) by alpha.double-barrel.be (8.8.7/8.8.7) with SMTP id AAA00743; Wed, 8 Jul 1998 00:14:54 +0200 Date: Wed, 8 Jul 1998 00:14:54 +0200 (CEST) From: "Michael C. Vergallen" To: Gary Kline cc: stable@FreeBSD.ORG Subject: Re: 2940 and 2940UW In-Reply-To: <199807071758.KAA06037@athena.tera.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 Tue, 7 Jul 1998, Gary Kline wrote: > > My new 6x86 got toasted (or fried) and since Fry's had a 200MHz P5 > on sale, that's what I've got. (I did spring for another 32m DIMM.) > > Having trouble booting, though. We put in a SCSI-PCI driver with the > name SIIG and that didn't work; so what was available was an > Adaptec 2940UW. Prev'ly I had an IWILL with builtin SCSI and > everything was peachy. that needs the ahc driver compiled in. > > Now the kernel panics not finding sd2s2, my third SCSI drive. you are shure the termination off the chain is correct ...e.i the terminator on your second drive is not. > What's the solution to getting 2.2.6 to boot multiuser? Is there > some BIOS setting that I have to toggle to see sd2s2? Or do I > have to rebuild the kernel with a different driver for the 2940UW? it needs the ahc driver build into the kernel and beware that the setings are correct in the kernel e.g. IRQ's and adresses. Michael --- Michael C. Vergallen A.k.A. Mad Mike, Sportstraat 28 http://www.double-barrel.be/mvergall/ B 9000 Gent ftp://ftp.double-barrel.be/pub/linux/ Belgium tel : 32-9-2227764 Fax : 32-9-2224976 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 7 18:08:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA08318 for freebsd-stable-outgoing; Tue, 7 Jul 1998 18:08:03 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from gershwin.tera.com (gershwin.tera.com [207.224.230.28]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA08289 for ; Tue, 7 Jul 1998 18:08:00 -0700 (PDT) (envelope-from kline@tera.com) Received: from athena.tera.com (athena.tera.com [207.224.230.127]) by gershwin.tera.com (8.8.8/8.8.8) with ESMTP id SAA10294 for ; Tue, 7 Jul 1998 18:07:25 -0700 (PDT) From: Gary Kline Received: (from kline@localhost) by athena.tera.com (8.7.5/8.7.3) id SAA08191 for stable@freebsd.org; Tue, 7 Jul 1998 18:07:12 -0700 (PDT) Message-Id: <199807080107.SAA08191@athena.tera.com> Subject: is a kernel panic To: stable@FreeBSD.ORG Date: Tue, 7 Jul 1998 18:07:07 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL23 (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 Double-checking, this is indeed a kernel fault. A page fault. At the top of the screen are mumbling about sd2s2 and (I/O ERROR); followed by 20+ lines of the kernel panic, followed by disk syncs and 2 2 2 2 2 2 2 2 2 ..... Was this a kernel fault that was fixed? Seems to me that I read something along those lines. I could always go back to version 2.2.5, but would rather not. Thanks for some help here.... gary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 7 18:24:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA08318 for freebsd-stable-outgoing; Tue, 7 Jul 1998 18:08:03 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from gershwin.tera.com (gershwin.tera.com [207.224.230.28]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA08289 for ; Tue, 7 Jul 1998 18:08:00 -0700 (PDT) (envelope-from kline@tera.com) Received: from athena.tera.com (athena.tera.com [207.224.230.127]) by gershwin.tera.com (8.8.8/8.8.8) with ESMTP id SAA10294 for ; Tue, 7 Jul 1998 18:07:25 -0700 (PDT) From: Gary Kline Received: (from kline@localhost) by athena.tera.com (8.7.5/8.7.3) id SAA08191 for stable@freebsd.org; Tue, 7 Jul 1998 18:07:12 -0700 (PDT) Message-Id: <199807080107.SAA08191@athena.tera.com> Subject: is a kernel panic To: stable@FreeBSD.ORG Date: Tue, 7 Jul 1998 18:07:07 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL23 (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 Double-checking, this is indeed a kernel fault. A page fault. At the top of the screen are mumbling about sd2s2 and (I/O ERROR); followed by 20+ lines of the kernel panic, followed by disk syncs and 2 2 2 2 2 2 2 2 2 ..... Was this a kernel fault that was fixed? Seems to me that I read something along those lines. I could always go back to version 2.2.5, but would rather not. Thanks for some help here.... gary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 02:16:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA03163 for freebsd-stable-outgoing; Wed, 8 Jul 1998 02:16:09 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from bastuba.partitur.se (bastuba.partitur.se [193.219.246.194]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA03031 for ; Wed, 8 Jul 1998 02:15:42 -0700 (PDT) (envelope-from girgen@partitur.se) Received: from solist. (solist.partitur.se [193.219.246.204]) by bastuba.partitur.se (8.8.8/8.8.8) with SMTP id LAA02388 for ; Wed, 8 Jul 1998 11:15:37 +0200 (CEST) (envelope-from girgen@partitur.se) Received: from partitur.se by solist. (SMI-8.6/SMI-SVR4) id LAA23284; Wed, 8 Jul 1998 11:14:14 +0200 Message-ID: <35A33865.882231DD@partitur.se> Date: Wed, 08 Jul 1998 11:14:14 +0200 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.05 [en] (X11; I; SunOS 5.6 sun4u) MIME-Version: 1.0 To: stable@FreeBSD.ORG Subject: buildworld fails with international security Content-Type: multipart/mixed; boundary="------------DCE6E45D3FF9EC65BAAAF6F0" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------DCE6E45D3FF9EC65BAAAF6F0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hello, I've been building my own systems for a while, and this one puzzles me: I need to get DES working, and want to try Kerberos,so I cvsupped using the security-supfile for international version of DES etc. When compling (with MAKE_KERBEROS4= yes in make.conf) the buildworld will not get past libgroff; I enclose a make-log. I have tried three different optimizations (-O, -O2 & -O3) as suggested, but to no avail. I have tried rm /usr/obj and /usr/src and cvsupped the whole tree once again, but still no good :( I'm gonna try this at work as well, on a faster machine (have an old 486 at home). I'll get back with new results. I enclose a make-log of the event and my make.conf. Regards, Palle --------------DCE6E45D3FF9EC65BAAAF6F0 Content-Type: text/plain; charset=us-ascii; name="datan-make.conf" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="datan-make.conf" # $Id: make.conf,v 1.37.2.14 1998/05/19 13:48:24 thepish Exp $ # # This file, if present, will be read by make (see /usr/share/mk/sys.mk). # It allows you to override macro definitions to make without changing # your source tree, or anything the source tree installs. # # This file must be in valid Makefile syntax. # # You have to find the things you can put here in the Makefiles and # documentation of the source tree. # # One, and probably the most common, use could be: # CFLAGS= -O -pipe CXXFLAGS= -O -pipe # # Another useful entry is # NOPROFILE= true # Avoid compiling profiled libraries # # To avoid building the default system perl NOPERL= true # To avoid building the suid perl NOSUIDPERL= true # # To have 'obj' symlinks created in your source directory # (they aren't needed/necessary) #OBJLINK= yes # # To compile just the kernel with special optimisations, you should use # this instead of CFLAGS (which is not applicable to kernel builds anyway): # COPTFLAGS= -O3 -pipe # # To compile and install the 4.4 lite libm instead of the default use: # #WANT_CSRG_LIBM= yes # # To compile and install the reentrant-safe/thread-safe versions of the # standard library. This library is useful to the mysql port and other # software that wants to use pthreads. #WANT_LIBC_R= yes # # If you do not want unformatted manual pages to be compressed # when they are installed: # #NOMANCOMPRESS= true # # # If you want the "compat" shared libraries installed as part of your normal # builds, uncomment these: # #COMPAT1X= yes #COMPAT20= yes #COMPAT21= yes # # # If you do not want additional documentation (some of which are # a few hundred KB's) for ports to be installed: # #NOPORTDOCS= true # # # Default format for system documentation, depends on your printer. # Set this to "ascii" for simple printers or screen # #PRINTER= ps # # # How long to wait for a console keypress before booting the default kernel. # This value is approximately in milliseconds. Keypresses are accepted by the # BIOS before booting from disk, making it possible to give custom boot # parameters even when this is set to 0. # #BOOTWAIT=0 #BOOTWAIT=30000 # # By default, the system will always use the keyboard/video card as system # console. However, the boot blocks may be dynamically configured to use a # serial port in addition to or instead of the keyboard/video console. # # By default we use COM1 as our serial console port *if* we're going to use # a serial port as our console at all. (0x3E8 = COM2) # #BOOT_COMCONSOLE_PORT= 0x3F8 # # The default serial console speed is 9600. Set the speed to a larger value # for better interactive response. # #BOOT_COMCONSOLE_SPEED= 115200 # # # By default, this points to /usr/X11R6 for XFree86 releases 3.0 or earlier. # If you have a XFree86 from before 3.0 that has the X distribution in # /usr/X386, you want to uncomment this. # #X11BASE= /usr/X386 # # # If you have Motif on your system, uncomment this. # HAVE_MOTIF= yes # # If the default location of the Motif library (specified below) is NOT # appropriate for you, uncomment this and change it to the correct value. # If your motif is in ${X11BASE}/lib, you don't need to touch this line. # #MOTIFLIB= -L${X11BASE}/lib -lXm # # # If you are running behind a firewall, uncomment the following to leave a # hint for various make-spawned utilities that they should use passive FTP. # #FTP_PASSIVE_MODE= YES # # If you're resident in the USA, this will help various ports to determine # whether or not they should attempt to comply with the various U.S. # export regulations on certain types of software which do not apply to # anyone else in the world. # USA_RESIDENT= NO # # # Port mirror sites... # # If you have a ports distribution in one or more FTP sites closeby # (such as a mirror on your own lan) you can list them here. Sites listed here # will be checked after checking your cd rom but before any other # FTP site. # #LOCAL_SITE_LIST?= ftp://ftp.my.domain.au/ \ # ftp://ftp.my.friends.domain.au/ # # Uncomment your nearest location for preferred official mirrors. These will be # checked after any local sites (set above) but before the default master sites. # #LOCALE?= Argentina #LOCALE?= Australia #LOCALE?= Brazil #LOCALE?= Canada #LOCALE?= Czech Republic #LOCALE?= Estonia #LOCALE?= Finland #LOCALE?= France #LOCALE?= Germany #LOCALE?= Holland #LOCALE?= Hong Kong #LOCALE?= Iceland #LOCALE?= Ireland #LOCALE?= Israel #LOCALE?= Japan #LOCALE?= Korea #LOCALE?= Poland #LOCALE?= Portugal #LOCALE?= Russia #LOCALE?= South Africa LOCALE?= Sweden #LOCALE?= Taiwan #LOCALE?= UK #LOCALE?= USA # # Port master sites. # # If you want your port fetches to go somewhere else than the default # (specified below) in case the distfile/patchfile was not found, # uncomment this and change it to a location nearest you. (Don't # remove the "/${DIST_SUBDIR}/" part.) # # This site will be checked as a last resort unless MASTER_SITE_OVERRIDE # is set (see below) in which case it is checked immediately after your # local and "locale" sites. # #MASTER_SITE_BACKUP?= \ # ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR}/ MASTER_SITE_BACKUP?= \ ftp://ftp.sunet.se/pub/unix/FreeBSD/distfiles/${DIST_SUBDIR}/ # # If you want your port fetches to check the above site first (before # the MASTER_SITES specified in the port Makefiles), uncomment the # line below. You can also change the right side to point to wherever # you want. # #MASTER_SITE_OVERRIDE?= ${MASTER_SITE_BACKUP} MASTER_SITE_OVERRIDE?= ${MASTER_SITE_BACKUP} # # Some ports use a special variable to point to a collection of # mirrors of well-known software archives. If you have a mirror close # to you, uncomment any of the following lines and change it to that # address. (Don't remove the "/%SUBDIR%/" part.) # # Note: the right hand sides of the following lines are only for your # information. For a full list of default sites, take a look at # bsd.port.mk. # #MASTER_SITE_XCONTRIB= ftp://ftp.x.org/contrib/%SUBDIR%/ MASTER_SITE_XCONTRIB= ftp://ftp.sunet.se/pub/X11/contrib/${MASTER_SITE_SUBDIR}/ #MASTER_SITE_GNU= ftp://prep.ai.mit.edu/pub/gnu/%SUBDIR%/ MASTER_SITE_GNU= ftp://ftp.sunet.se/pub/gnu/${MASTER_SITE_SUBDIR}/ #MASTER_SITE_PERL_CPAN= ftp://ftp.digital.com/pub/plan/perl/CPAN/modules/by-module/%SUBDIR%/ MASTER_SITE_PERL_CPAN= ftp://ftp.sunet.se/pub/lang/perl/CPAN/modules/by-module/${MASTER_SITE_SUBDIR}/ #MASTER_SITE_TEX_CTAN= ftp://ftp.tex.ac.uk/tex-archive/%SUBDIR%/ #MASTER_SITE_SUNSITE= ftp://sunsite.unc.edu/pub/Linux/%SUBDIR%/ # # # Kerberos IV # If you want KerberosIV (KTH eBones), define this: # MAKE_KERBEROS4= yes # # # SUP/CVSup updates # SUP_UPDATE= yes # # SUP block # #SUP= sup #SUPFLAGS= -v #SUPFILE= /usr/share/examples/sup/standard-supfile #SUPFILE1= /usr/share/examples/sup/secure-supfile #SUPFILE2= /usr/share/examples/sup/ports-supfile # # CVSup block # SUP= /usr/local/bin/cvsup SUPFLAGS= -g -L 2 -z -P m SUPFILE= /root/ports #SUPFILE= /usr/share/examples/cvsup/standard-supfile #SUPFILE1= /usr/share/examples/cvsup/secure-supfile #SUPFILE2= /usr/share/examples/cvsup/ports-supfile # # top(1) uses a hash table for the user names. The size of this hash # can be tuned to match the number of local users. The table size should # be a prime number approximately twice as large as the number of lines in # /etc/passwd. The default number is 20011. # TOP_TABLE_SIZE= 101 --------------DCE6E45D3FF9EC65BAAAF6F0 Content-Type: text/plain; charset=iso-8859-1; name="gaa" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline; filename="gaa" cd /usr/src/gnu/usr.bin/awk && /usr/obj/usr/src/tmp/usr/bin/make depend &= & /usr/obj/usr/src/tmp/usr/bin/make -DNOINFO -DNOMAN -DNOPROFILE all && = /usr/obj/usr/src/tmp/usr/bin/make -DNOINFO -DNOMAN -DNOPROFILE -B instal= l cleandir obj yacc -d /usr/src/gnu/usr.bin/awk/awk.y yacc: 61 shift/reduce conflicts mv y.tab.c awk.c rm -f .depend mkdep -f .depend -a -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src= /tmp/usr/include /usr/src/gnu/usr.bin/awk/main.c /usr/src/gnu/usr.bin/aw= k/eval.c /usr/src/gnu/usr.bin/awk/builtin.c /usr/src/gnu/usr.bin/awk/msg.= c /usr/src/gnu/usr.bin/awk/iop.c /usr/src/gnu/usr.bin/awk/io.c /usr/src/g= nu/usr.bin/awk/field.c /usr/src/gnu/usr.bin/awk/getopt1.c /usr/src/gnu/us= r.bin/awk/getopt.c /usr/src/gnu/usr.bin/awk/array.c /usr/src/gnu/usr.bin/= awk/node.c /usr/src/gnu/usr.bin/awk/version.c /usr/src/gnu/usr.bin/awk/re= =2Ec awk.c /usr/src/gnu/usr.bin/awk/dfa.c =3D=3D=3D> doc cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/main.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/eval.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/builtin.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/msg.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/iop.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/io.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/field.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/getopt1.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/getopt.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/array.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/node.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/version.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/re.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c awk.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -c /usr/src/gnu/usr.bin/awk/dfa.c cc -O -pipe -I/usr/src/gnu/usr.bin/awk -DGAWK -I/usr/obj/usr/src/tmp/us= r/include -o awk main.o eval.o builtin.o msg.o iop.o io.o field.o getopt= 1.o getopt.o array.o node.o version.o re.o awk.o dfa.o -lgnuregex -lm =3D=3D=3D> doc install -c -s -o bin -g bin -m 555 awk /usr/obj/usr/src/tmp/usr/bin =3D=3D=3D> doc =3D=3D=3D> doc /usr/obj/usr/src/gnu/usr.bin/awk created for /usr/src/gnu/usr.bin/awk =3D=3D=3D> doc /usr/obj/usr/src/gnu/usr.bin/awk/doc created for /usr/src/gnu/usr.bin/awk= /doc cd /usr/src/gnu/usr.bin/bc && /usr/obj/usr/src/tmp/usr/bin/make depend &&= /usr/obj/usr/src/tmp/usr/bin/make -DNOINFO -DNOMAN -DNOPROFILE all && = /usr/obj/usr/src/tmp/usr/bin/make -DNOINFO -DNOMAN -DNOPROFILE -B install= cleandir obj yacc -d /usr/src/gnu/usr.bin/bc/bc.y yacc: 1 shift/reduce conflict mv y.tab.c bc.c lex -t /usr/src/gnu/usr.bin/bc/scan.l > scan.c rm -f .depend mkdep -f .depend -a -D_POSIX_SOURCE -I. -I/usr/obj/usr/src/tmp/usr/inclu= de bc.c scan.c /usr/src/gnu/usr.bin/bc/execute.c /usr/src/gnu/usr.bin/bc= /global.c /usr/src/gnu/usr.bin/bc/load.c /usr/src/gnu/usr.bin/bc/main.c /= usr/src/gnu/usr.bin/bc/number.c /usr/src/gnu/usr.bin/bc/storage.c /usr/sr= c/gnu/usr.bin/bc/util.c cc -O -pipe -D_POSIX_SOURCE -I. -I/usr/obj/usr/src/tmp/usr/include -c b= c.c cc -O -pipe -D_POSIX_SOURCE -I. -I/usr/obj/usr/src/tmp/usr/include -c s= can.c cc -O -pipe -D_POSIX_SOURCE -I. -I/usr/obj/usr/src/tmp/usr/include -c /= usr/src/gnu/usr.bin/bc/execute.c cc -O -pipe -D_POSIX_SOURCE -I. -I/usr/obj/usr/src/tmp/usr/include -c /= usr/src/gnu/usr.bin/bc/global.c cc -O -pipe -D_POSIX_SOURCE -I. -I/usr/obj/usr/src/tmp/usr/include -c /= usr/src/gnu/usr.bin/bc/load.c cc -O -pipe -D_POSIX_SOURCE -I. -I/usr/obj/usr/src/tmp/usr/include -c /= usr/src/gnu/usr.bin/bc/main.c cc -O -pipe -D_POSIX_SOURCE -I. -I/usr/obj/usr/src/tmp/usr/include -c /= usr/src/gnu/usr.bin/bc/number.c cc -O -pipe -D_POSIX_SOURCE -I. -I/usr/obj/usr/src/tmp/usr/include -c /= usr/src/gnu/usr.bin/bc/storage.c cc -O -pipe -D_POSIX_SOURCE -I. -I/usr/obj/usr/src/tmp/usr/include -c /= usr/src/gnu/usr.bin/bc/util.c cc -O -pipe -D_POSIX_SOURCE -I. -I/usr/obj/usr/src/tmp/usr/include -o = bc bc.o scan.o execute.o global.o load.o main.o number.o storage.o util.o= = install -c -s -o bin -g bin -m 555 bc /usr/obj/usr/src/tmp/usr/bin /usr/obj/usr/src/gnu/usr.bin/bc created for /usr/src/gnu/usr.bin/bc cd /usr/src/gnu/usr.bin/grep && /usr/obj/usr/src/tmp/usr/bin/make depend = && /usr/obj/usr/src/tmp/usr/bin/make -DNOINFO -DNOMAN -DNOPROFILE all &&= /usr/obj/usr/src/tmp/usr/bin/make -DNOINFO -DNOMAN -DNOPROFILE -B insta= ll cleandir obj rm -f .depend mkdep -f .depend -a -DGREP -DHAVE_STRING_H=3D1 -DHAVE_SYS_PARAM_H=3D1 -D= HAVE_UNISTD_H=3D1 -DHAVE_GETPAGESIZE=3D1 -DHAVE_MEMCHR=3D1 -DHAVE_STRERRO= R=3D1 -DHAVE_VALLOC=3D1 -DHAVE_MMAP=3D1 -DHAVE_FTS=3D1 -I/usr/obj/usr/src= /tmp/usr/include /usr/src/gnu/usr.bin/grep/dfa.c /usr/src/gnu/usr.bin/gr= ep/grep.c /usr/src/gnu/usr.bin/grep/getopt.c /usr/src/gnu/usr.bin/grep/kw= set.c /usr/src/gnu/usr.bin/grep/obstack.c /usr/src/gnu/usr.bin/grep/searc= h.c cc -O -pipe -DGREP -DHAVE_STRING_H=3D1 -DHAVE_SYS_PARAM_H=3D1 -DHAVE_UNIS= TD_H=3D1 -DHAVE_GETPAGESIZE=3D1 -DHAVE_MEMCHR=3D1 -DHAVE_STRERROR=3D1 -= DHAVE_VALLOC=3D1 -DHAVE_MMAP=3D1 -DHAVE_FTS=3D1 -I/usr/obj/usr/src/tmp/= usr/include -c /usr/src/gnu/usr.bin/grep/dfa.c cc -O -pipe -DGREP -DHAVE_STRING_H=3D1 -DHAVE_SYS_PARAM_H=3D1 -DHAVE_UNIS= TD_H=3D1 -DHAVE_GETPAGESIZE=3D1 -DHAVE_MEMCHR=3D1 -DHAVE_STRERROR=3D1 -= DHAVE_VALLOC=3D1 -DHAVE_MMAP=3D1 -DHAVE_FTS=3D1 -I/usr/obj/usr/src/tmp/= usr/include -c /usr/src/gnu/usr.bin/grep/grep.c cc -O -pipe -DGREP -DHAVE_STRING_H=3D1 -DHAVE_SYS_PARAM_H=3D1 -DHAVE_UNIS= TD_H=3D1 -DHAVE_GETPAGESIZE=3D1 -DHAVE_MEMCHR=3D1 -DHAVE_STRERROR=3D1 -= DHAVE_VALLOC=3D1 -DHAVE_MMAP=3D1 -DHAVE_FTS=3D1 -I/usr/obj/usr/src/tmp/= usr/include -c /usr/src/gnu/usr.bin/grep/getopt.c cc -O -pipe -DGREP -DHAVE_STRING_H=3D1 -DHAVE_SYS_PARAM_H=3D1 -DHAVE_UNIS= TD_H=3D1 -DHAVE_GETPAGESIZE=3D1 -DHAVE_MEMCHR=3D1 -DHAVE_STRERROR=3D1 -= DHAVE_VALLOC=3D1 -DHAVE_MMAP=3D1 -DHAVE_FTS=3D1 -I/usr/obj/usr/src/tmp/= usr/include -c /usr/src/gnu/usr.bin/grep/kwset.c cc -O -pipe -DGREP -DHAVE_STRING_H=3D1 -DHAVE_SYS_PARAM_H=3D1 -DHAVE_UNIS= TD_H=3D1 -DHAVE_GETPAGESIZE=3D1 -DHAVE_MEMCHR=3D1 -DHAVE_STRERROR=3D1 -= DHAVE_VALLOC=3D1 -DHAVE_MMAP=3D1 -DHAVE_FTS=3D1 -I/usr/obj/usr/src/tmp/= usr/include -c /usr/src/gnu/usr.bin/grep/obstack.c cc -O -pipe -DGREP -DHAVE_STRING_H=3D1 -DHAVE_SYS_PARAM_H=3D1 -DHAVE_UNIS= TD_H=3D1 -DHAVE_GETPAGESIZE=3D1 -DHAVE_MEMCHR=3D1 -DHAVE_STRERROR=3D1 -= DHAVE_VALLOC=3D1 -DHAVE_MMAP=3D1 -DHAVE_FTS=3D1 -I/usr/obj/usr/src/tmp/= usr/include -c /usr/src/gnu/usr.bin/grep/search.c cc -O -pipe -DGREP -DHAVE_STRING_H=3D1 -DHAVE_SYS_PARAM_H=3D1 -DHAVE_UNIS= TD_H=3D1 -DHAVE_GETPAGESIZE=3D1 -DHAVE_MEMCHR=3D1 -DHAVE_STRERROR=3D1 -= DHAVE_VALLOC=3D1 -DHAVE_MMAP=3D1 -DHAVE_FTS=3D1 -I/usr/obj/usr/src/tmp/= usr/include -o grep dfa.o grep.o getopt.o kwset.o obstack.o search.o -l= gnuregex install -c -s -o bin -g bin -m 555 grep /usr/obj/usr/src/tmp/usr/bin /usr/obj/usr/src/tmp/usr/bin/egrep -> /usr/obj/usr/src/tmp/usr/bin/grep /usr/obj/usr/src/tmp/usr/bin/fgrep -> /usr/obj/usr/src/tmp/usr/bin/grep /usr/obj/usr/src/gnu/usr.bin/grep created for /usr/src/gnu/usr.bin/grep cd /usr/src/gnu/usr.bin/groff && /usr/obj/usr/src/tmp/usr/bin/make depend= && /usr/obj/usr/src/tmp/usr/bin/make -DNOINFO -DNOMAN -DNOPROFILE all &= & /usr/obj/usr/src/tmp/usr/bin/make -DNOINFO -DNOMAN -DNOPROFILE -B inst= all cleandir obj =3D=3D=3D> libgroff Making version.cc rm -f .depend mkdep -f .depend -a -I/usr/src/gnu/usr.bin/groff/libgroff/../include -DH= AVE_UNISTD_H=3D1 -DHAVE_DIRENT_H=3D1 -DHAVE_LIMITS_H=3D1 -DHAVE_SYS_DIR_H= =3D1 -DHAVE_STDLIB_H=3D1 -DSTDLIB_H_DECLARES_GETOPT=3D1 -DSTDLIB_H_DECLAR= ES_PUTENV=3D1 -DSTDIO_H_DECLARES_POPEN=3D1 -DSTDIO_H_DECLARE_PCLOSE=3D1 -= DHAVE_CC_OSFCN_H=3D1 -DHAVE_CC_LIMITS_H=3D1 -DRETSIGTYPE=3Dvoid -DHAVE_ST= RUCT_EXCEPTION=3D1 -DHAVE_RENAME=3D1 -DHAVE_MKSTEMP=3D1 -DSYS_SIGLIST_DEC= LARED=3D1 -I/usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff= /include -I/usr/src/gnu/usr.bin/groff/libgroff/include -I/usr/obj/usr/src= /tmp/usr/include /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib= /groff/libgroff/iftoa.c /usr/src/gnu/usr.bin/groff/libgroff/../../../../c= ontrib/groff/libgroff/itoa.c /usr/src/gnu/usr.bin/groff/libgroff/../../..= /../contrib/groff/libgroff/matherr.c mkdep -f .depend -a /usr/src/gnu/usr.bin/groff/libgroff/../../../../= contrib/groff/libgroff/assert.cc /usr/src/gnu/usr.bin/groff/libgroff/../.= =2E/../../contrib/groff/libgroff/change_lf.cc /usr/src/gnu/usr.bin/groff/= libgroff/../../../../contrib/groff/libgroff/cmap.cc /usr/src/gnu/usr.bin/= groff/libgroff/../../../../contrib/groff/libgroff/cset.cc /usr/src/gnu/us= r.bin/groff/libgroff/../../../../contrib/groff/libgroff/device.cc /usr/sr= c/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/errarg.cc= /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/e= rror.cc /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/lib= groff/fatal.cc /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/gr= off/libgroff/filename.cc /usr/src/gnu/usr.bin/groff/libgroff/../../../../= contrib/groff/libgroff/font.cc /usr/src/gnu/usr.bin/groff/libgroff/../../= =2E./../contrib/groff/libgroff/fontfile.cc /usr/src/gnu/usr.bin/groff/lib= groff/../../../../contrib/groff/libgroff/lf.cc /usr/src/gnu/usr.bin/groff= /libgroff/../../../../contrib/groff/libgroff/lineno.cc /usr/src/gnu/usr.b= in/groff/libgroff/../../../../contrib/groff/libgroff/macropath.cc /usr/sr= c/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/nametoind= ex.cc /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgr= off/new.cc /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/= libgroff/prime.cc /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib= /groff/libgroff/progname.cc /usr/src/gnu/usr.bin/groff/libgroff/../../../= =2E./contrib/groff/libgroff/ptable.cc /usr/src/gnu/usr.bin/groff/libgroff= /../../../../contrib/groff/libgroff/searchpath.cc /usr/src/gnu/usr.bin/gr= off/libgroff/../../../../contrib/groff/libgroff/string.cc /usr/src/gnu/us= r.bin/groff/libgroff/../../../../contrib/groff/libgroff/strsave.cc /usr/s= rc/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/tmpfile.= cc /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff= /illegal.cc version.cc = /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/cm= ap.cc:25: cmap.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/cs= et.cc:25: cset.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/de= vice.cc:22: device.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/de= vice.cc:23: defs.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/er= rarg.cc:23: errarg.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/er= ror.cc:24: errarg.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/er= ror.cc:25: error.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/fo= nt.cc:27: errarg.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/fo= nt.cc:28: error.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/fo= nt.cc:29: cset.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/fo= nt.cc:30: font.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/fo= nt.cc:31: lib.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/fo= ntfile.cc:26: font.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/fo= ntfile.cc:27: lib.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/fo= ntfile.cc:28: searchpath.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/fo= ntfile.cc:29: device.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/fo= ntfile.cc:30: defs.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/lf= =2Ecc:23: cset.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/lf= =2Ecc:24: stringclass.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/ma= cropath.cc:21: lib.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/ma= cropath.cc:22: searchpath.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/ma= cropath.cc:23: macropath.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/ma= cropath.cc:24: defs.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/na= metoindex.cc:26: lib.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/na= metoindex.cc:27: errarg.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/na= metoindex.cc:28: error.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/na= metoindex.cc:29: font.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/na= metoindex.cc:30: ptable.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/ne= w.cc:24: posix.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/pt= able.cc:20: ptable.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/pt= able.cc:21: errarg.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/pt= able.cc:22: error.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/se= archpath.cc:26: lib.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/se= archpath.cc:27: searchpath.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/st= ring.cc:22: stringclass.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/st= ring.cc:23: lib.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/tm= pfile.cc:26: posix.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/tm= pfile.cc:27: lib.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/tm= pfile.cc:28: errarg.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/tm= pfile.cc:29: error.h: No such file or directory /usr/src/gnu/usr.bin/groff/libgroff/../../../../contrib/groff/libgroff/il= legal.cc:1: lib.h: No such file or directory mkdep: compile failed *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. --------------DCE6E45D3FF9EC65BAAAF6F0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 02:19:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA04843 for freebsd-stable-outgoing; Wed, 8 Jul 1998 02:19:23 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from gordius.gordian.com (gordius.gordian.com [192.73.220.81]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA04771 for ; Wed, 8 Jul 1998 02:19:11 -0700 (PDT) (envelope-from steve@gordian.com) X-bait: aablmeh@gordian.com,mmblmeh@gordian.com,zzblmeh@gordian.com Received: from delphi.gordian.com (delphi.gordian.com [192.73.220.125]) by gordius.gordian.com (8.9.0.Beta3/8.9.0.Beta3) with ESMTP id TAA26973; Tue, 7 Jul 1998 19:41:29 -0700 (PDT) Received: from gordian.com (ares [192.73.220.49]) by delphi.gordian.com (8.7.2/8.6.9) with ESMTP id TAA13939; Tue, 7 Jul 1998 19:41:27 -0700 (PDT) Message-ID: <35A2DC57.59FB844C@gordian.com> Date: Tue, 07 Jul 1998 19:41:27 -0700 From: Steve Khoo Organization: Gordian; Santa Ana Heights, CA X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 2.2.6-STABLE i386) MIME-Version: 1.0 To: freebsd-stable@FreeBSD.ORG Subject: group id of files created on ufs filesystem Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm running FreeBSD-2.2.6-STABLE ~ Jun-15-1998. The group id of files created on FreeBSD ufs filesystem get set to the group id of the directory. Is this the expected behavior? I expected the file created to have the group id of the user. /tmp> whoami test /tmp> groups random /tmp> pwd /tmp /tmp> ls -ld drwxrwxrwt 4 bin bin 512 Jul 7 19:30 ./ /tmp> ls amanda/ d_ts32.exe.18998* /tmp> touch junk /tmp> ls -l junk -rw-rw---- 1 test bin 0 Jul 7 19:31 junk /tmp> This appears to happen with cp as well. Please advise... Thanks! SEK -- Steve E. Khoo GORDIAN Systems Manager 20361 Irvine Ave Internet: steve@gordian.com Santa Ana Heights, CA 92707 Voice:(714)850-0205 Fax:(714)850-0533 HTTP://WWW.GORDIAN.COM Wanna be blacklisted by our spam filter? mailto: aablme@gordian.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 02:28:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA08313 for freebsd-stable-outgoing; Wed, 8 Jul 1998 02:28:23 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from bastuba.partitur.se (bastuba.partitur.se [193.219.246.194]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA08196 for ; Wed, 8 Jul 1998 02:28:06 -0700 (PDT) (envelope-from girgen@partitur.se) Received: from solist. (solist.partitur.se [193.219.246.204]) by bastuba.partitur.se (8.8.8/8.8.8) with SMTP id LAA02444 for ; Wed, 8 Jul 1998 11:28:03 +0200 (CEST) (envelope-from girgen@partitur.se) Received: from partitur.se by solist. (SMI-8.6/SMI-SVR4) id LAA23288; Wed, 8 Jul 1998 11:26:40 +0200 Message-ID: <35A33B4F.67BC6555@partitur.se> Date: Wed, 08 Jul 1998 11:26:39 +0200 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.05 [en] (X11; I; SunOS 5.6 sun4u) MIME-Version: 1.0 To: stable@FreeBSD.ORG Subject: BINFORMAT variable Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, When making a tree with the international security distribution, there seems to be a need for the variable BINFORMAT to be set to 'elf' or 'aout' somewhere, I presume make.conf is a good place? Maybe this would be mentioned somewhere? Or am I missing something? The problem first arises in /usr/src/secure/lib/libcrypt/Makefile I'm filing a gnats report as well; I'm not sure which forum is best? Sorry if you see this twice. Regards, Palle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 08:29:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA13934 for freebsd-stable-outgoing; Wed, 8 Jul 1998 08:29:33 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ns.carif.asso.fr (ns.carif.asso.fr [194.98.158.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA13929 for ; Wed, 8 Jul 1998 08:29:30 -0700 (PDT) (envelope-from stef@rafiki.carif.asso.fr) Received: from rafiki.carif.asso.fr (rafiki.intranet.carif.asso.fr [10.100.10.99]) by ns.carif.asso.fr (8.9.0/8.9.0) with ESMTP id RAA04438 for ; Wed, 8 Jul 1998 17:22:41 +0200 (CEST) Received: (from stef@localhost) by rafiki.carif.asso.fr (8.9.0/8.9.0) id RAA14473; Wed, 8 Jul 1998 17:30:36 +0200 (CEST) Message-ID: <19980708173036.A14305@rafiki.intranet.carif.asso.fr> Date: Wed, 8 Jul 1998 17:30:36 +0200 From: Stephane Marzloff To: freebsd-stable@FreeBSD.ORG Subject: Disk problem. Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 0.91.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi.. I have a problem with a 2.2.6-STABLE (6 Jul) on a Ppro 200. Sometimes, when I launch some applications (mutt, ls, vmstat..), there is no responses during 10 sec. I suspect a disk problem. The machine isn't charge, Load average is constantly : 0.00 (0.50 maximum). There 18Mo of Free RAM. And 5 minutes ago, I have this message on the console : Jul 8 17:07:46 rafiki /kernel: wd0: interrupt timeout: Jul 8 17:07:46 rafiki /kernel: wd0: interrupt timeout: Jul 8 17:07:46 rafiki /kernel: wd0: status 50 error 0 Jul 8 17:07:46 rafiki /kernel: wd0: status 50 error 0 I don't have APM or other things enable in the kernel. So if anyone have an idea.. Thanks.. Ps : I join my kernel configuration file machine "i386" cpu "I686_CPU" ident RAFIKI maxusers 60 options MATH_EMULATE #Support for x87 emulation options INCLUDE_CONFIG_FILE #include this file in kernel options INET #InterNETworking options NMBCLUSTERS=2048 options "CMD640" # work around CMD640 chip deficiency options FFS #Berkeley Fast Filesystem options PROCFS #Process filesystem options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] options BOUNCE_BUFFERS #include support for DMA bounce buffers options UCONSOLE #Allow users to grab the console options FAILSAFE #Be conservative options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #kernel tracing options SYSVSHM options SYSVSEM options SYSVMSG options XSERVER # support for X server config kernel root on wd0s0a swap on wd0s1b controller isa0 controller pci0 controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr disk fd0 at fdc0 drive 0 controller wdc0 at isa? port "IO_WD1" bio irq 14 vector wdintr disk wd0 at wdc0 drive 0 #disk wd1 at wdc0 drive 1 controller wdc1 at isa? port "IO_WD2" bio irq 15 vector wdintr #disk wd2 at wdc1 drive 0 #disk wd3 at wdc1 drive 1 options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM device wcd0 #IDE CD-ROM # syscons is the default console driver, resembling an SCO console device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr options SC_HISTORY_SIZE=200 # number of history buffer lines # Mandatory, don't remove device npx0 at isa? port "IO_NPX" flags 0x1 irq 13 vector npxintr device sio0 at isa? port "IO_COM1" tty irq 4 vector siointr device sio1 at isa? port "IO_COM2" tty irq 3 vector siointr device psm0 at isa? disable port "IO_KBD" conflicts tty irq 12 vector psmintr # Ethernet device vx0 pseudo-device loop pseudo-device ether pseudo-device log pseudo-device gzip # Exec gzipped a.out's pseudo-device bpfilter 2 #Berkeley packet filter pseudo-device vn 1 pseudo-device pty 16 pseudo-device snp 2 -- Stéphane Marzloff -> smarzloff@carif-idf.org Do you think Jimi Hendrix's modem was a Purple Hayes? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 10:47:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA03073 for freebsd-stable-outgoing; Wed, 8 Jul 1998 10:47:51 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA03068 for ; Wed, 8 Jul 1998 10:47:48 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.8.8/8.8.8) with ESMTP id KAA15209; Wed, 8 Jul 1998 10:47:44 -0700 (PDT) (envelope-from jdp) Message-Id: <199807081747.KAA15209@austin.polstra.com> To: steve@gordian.com Subject: Re: group id of files created on ufs filesystem In-Reply-To: <35A2DC57.59FB844C@gordian.com> References: <35A2DC57.59FB844C@gordian.com> Organization: Polstra & Co., Seattle, WA Cc: stable@FreeBSD.ORG Date: Wed, 08 Jul 1998 10:47:44 -0700 From: John Polstra Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <35A2DC57.59FB844C@gordian.com>, Steve Khoo wrote: > I'm running FreeBSD-2.2.6-STABLE ~ Jun-15-1998. > > The group id of files created on FreeBSD ufs filesystem get set to the > group id of the directory. Is this the expected behavior? Yes, it is expected behavior. It's mentioned in open(2). -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Self-knowledge is always bad news." -- John Barth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 10:54:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA04129 for freebsd-stable-outgoing; Wed, 8 Jul 1998 10:54:23 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA04113 for ; Wed, 8 Jul 1998 10:54:16 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hvergelmir.ifi.uio.no (2602@hvergelmir.ifi.uio.no [129.240.64.129]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id TAA26871; Wed, 8 Jul 1998 19:54:07 +0200 (MET DST) Received: (from dag-erli@localhost) by hvergelmir.ifi.uio.no ; Wed, 8 Jul 1998 19:54:06 +0200 (MET DST) Mime-Version: 1.0 To: Palle Girgensohn Cc: stable@FreeBSD.ORG Subject: Re: BINFORMAT variable References: <35A33B4F.67BC6555@partitur.se> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 Jul 1998 19:54:05 +0200 In-Reply-To: Palle Girgensohn's message of "Wed, 08 Jul 1998 11:26:39 +0200" Message-ID: Lines: 14 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Palle Girgensohn writes: > When making a tree with the international security distribution, there > seems to be a need for the variable BINFORMAT to be set to 'elf' or > 'aout' somewhere, I presume make.conf is a good place? Maybe this would > be mentioned somewhere? Or am I missing something? Either you are running -current (in which case this is the wrong list), or you have mistakenly cvsupped with the wrong tag. The BINFORMAT voodoo was introduced in -current a few weeks ago in preparation for the move to ELF, but has not yet hit -stable AFAIK. DES -- One two, one two, one two. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 10:56:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA04396 for freebsd-stable-outgoing; Wed, 8 Jul 1998 10:56:35 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA04391 for ; Wed, 8 Jul 1998 10:56:30 -0700 (PDT) (envelope-from dag-erli@ifi.uio.no) Received: from hvergelmir.ifi.uio.no (2602@hvergelmir.ifi.uio.no [129.240.64.129]) by ifi.uio.no (8.8.8/8.8.7/ifi0.2) with ESMTP id TAA27034; Wed, 8 Jul 1998 19:56:25 +0200 (MET DST) Received: (from dag-erli@localhost) by hvergelmir.ifi.uio.no ; Wed, 8 Jul 1998 19:56:25 +0200 (MET DST) Mime-Version: 1.0 To: Steve Khoo Cc: freebsd-stable@FreeBSD.ORG Subject: Re: group id of files created on ufs filesystem References: <35A2DC57.59FB844C@gordian.com> Organization: University of Oslo, Department of Informatics X-url: http://www.stud.ifi.uio.no/~dag-erli/ X-other-addresses: 'finger dag-erli@ifi.uio.no' for a list X-disclaimer-1: The views expressed in this article are mine alone, and do X-disclaimer-2: not necessarily coincide with those of any organisation or X-disclaimer-3: company with which am or have been affiliated. X-Stop-Spam: http://www.cauce.org/ From: dag-erli@ifi.uio.no (Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?= ) Date: 08 Jul 1998 19:56:24 +0200 In-Reply-To: Steve Khoo's message of "Tue, 07 Jul 1998 19:41:27 -0700" Message-ID: Lines: 9 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Steve Khoo writes: > The group id of files created on FreeBSD ufs filesystem get set to the > group id of the directory. Is this the expected behavior? Yes. DES -- One two, one two, one two. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 12:13:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13490 for freebsd-stable-outgoing; Wed, 8 Jul 1998 12:13:03 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from gordius.gordian.com (gordius.gordian.com [192.73.220.81]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA13484 for ; Wed, 8 Jul 1998 12:13:01 -0700 (PDT) (envelope-from steve@gordian.com) X-bait: aablmeh@gordian.com,mmblmeh@gordian.com,zzblmeh@gordian.com Received: from delphi.gordian.com (delphi.gordian.com [192.73.220.125]) by gordius.gordian.com (8.9.0.Beta3/8.9.0.Beta3) with ESMTP id MAA28992; Wed, 8 Jul 1998 12:13:00 -0700 (PDT) Received: from gordian.com (ares [192.73.220.49]) by delphi.gordian.com (8.7.2/8.6.9) with ESMTP id MAA28555; Wed, 8 Jul 1998 12:12:59 -0700 (PDT) Message-ID: <35A3C4BB.A24D02EB@gordian.com> Date: Wed, 08 Jul 1998 12:12:59 -0700 From: Steve Khoo Organization: Gordian; Santa Ana Heights, CA X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 2.2.6-STABLE i386) MIME-Version: 1.0 To: John Polstra , stable@FreeBSD.ORG Subject: Re: group id of files created on ufs filesystem References: <35A2DC57.59FB844C@gordian.com> <199807081747.KAA15209@austin.polstra.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG John Polstra wrote: > > In article <35A2DC57.59FB844C@gordian.com>, > Steve Khoo wrote: > > I'm running FreeBSD-2.2.6-STABLE ~ Jun-15-1998. > > > > The group id of files created on FreeBSD ufs filesystem get set to > > the group id of the directory. Is this the expected behavior? > > Yes, it is expected behavior. It's mentioned in open(2). > -- > John Polstra jdp@polstra.com > John D. Polstra & Co., Inc. Seattle, Washington USA > "Self-knowledge is always bad news." -- John Barth Hmmm.... OK. Thanks! SEK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 14:10:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA29231 for freebsd-stable-outgoing; Wed, 8 Jul 1998 14:10:55 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mailhub.dgii.com (mailhub-n110.dgii.com [204.221.110.192]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id OAA29226 for ; Wed, 8 Jul 1998 14:10:53 -0700 (PDT) (envelope-from "Robert_Wagner"@dgii.com) From: "Robert_Wagner"@dgii.com Received: from msp-ln01.dgii.com by mailhub.dgii.com (SMI-8.6/SMI-SVR4) id QAA03070; Wed, 8 Jul 1998 16:09:49 -0500 Received: by msp-ln01.dgii.com(Lotus SMTP MTA v4.6.1 (569.2 2-6-1998)) id 8625663B.00743CFE ; Wed, 8 Jul 1998 16:09:37 -0500 X-Lotus-FromDomain: DGII To: freebsd-stable@FreeBSD.ORG Message-ID: <8625663B.00742455.00@msp-ln01.dgii.com> Date: Wed, 8 Jul 1998 16:11:06 -0500 Subject: driver needs to read file when loading 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 when loading a pci driver I need to read in a firmware file for the filesystem and put it in a place in memory. Any suggestions on how I can open a file and read it into a buffer in the attach portion of the driver. This driver is an PCI LKM. Bob W. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 14:50:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA03286 for freebsd-stable-outgoing; Wed, 8 Jul 1998 14:50:08 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.asahi-net.or.jp (pop.asahi-net.or.jp [202.224.39.6]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA03204 for ; Wed, 8 Jul 1998 14:50:01 -0700 (PDT) (envelope-from tfuruya@ppp142009.asahi-net.or.jp) Received: from galois.tf.or.jp (ppp142009.asahi-net.or.jp [202.213.142.9]) by pop.asahi-net.or.jp (8.8.8/3.6W) with ESMTP id GAA22500; Thu, 9 Jul 1998 06:55:24 +0900 Received: from galois.tf.or.jp (localhost.tf.or.jp [127.0.0.1]) by galois.tf.or.jp (8.8.8/3.6W-ht5t-fry@asahi-net-98042218) with ESMTP id GAA01464; Thu, 9 Jul 1998 06:49:32 +0900 (JST) Message-Id: <199807082149.GAA01464@galois.tf.or.jp> To: smarzloff@carif-idf.org Cc: freebsd-stable@FreeBSD.ORG, Tetsuro FURUYA Subject: Re: Disk problem. From: Tetsuro FURUYA Reply-To: Tetsuro FURUYA In-Reply-To: Your message of "Wed, 8 Jul 1998 17:30:36 +0200" References: <19980708173036.A14305@rafiki.intranet.carif.asso.fr> X-Mailer: Mew version 1.54 on Emacs 19.28.1, Mule 2.3 X-fingerprint: F1 BA 5F C1 C2 48 1D C7 AE 5F 16 ED 12 17 75 38 X-URL: http://sodan.komaba.ecc.u-tokyo.ac.jp/~tfuruya/ Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 09 Jul 1998 06:49:32 +0900 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Stephane Marzloff wrote: > Hi.. > > I have a problem with a 2.2.6-STABLE (6 Jul) on a Ppro 200. > > Sometimes, when I launch some applications (mutt, ls, vmstat..), there is no > responses during 10 sec. > I suspect a disk problem. > > The machine isn't charge, Load average is constantly : 0.00 (0.50 maximum). > There 18Mo of Free RAM. > > And 5 minutes ago, I have this message on the console : > Jul 8 17:07:46 rafiki /kernel: wd0: interrupt timeout: > Jul 8 17:07:46 rafiki /kernel: wd0: interrupt timeout: > Jul 8 17:07:46 rafiki /kernel: wd0: status 50 error 0 > Jul 8 17:07:46 rafiki /kernel: wd0: status 50 error 0 Your ide disk sector is broken. Try bad144 -s -v /dev/wd0 or badsect & fsck (This is rather difficult. So, please read man). If system hang up while disk access, 1) install kernel debugger ddb compiled into kernel. When system hang up, type contrl-alt-esc, and get into ddb, and wait until disk access stops for about 20-60 seconds(this depends on system). Then, type 'c' to continue bad144 or fsck. 2) patch /usr/src/sys/i386/isa/wd.c. See this mail. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Message-Id: <199806102228.PAA00747@dingo.cdrom.com> X-Mailer: exmh version 2.0zeta 7/24/97 To: Tetsuro FURUYA cc: mike@smith.net.au, robinson@public.bta.net.cn, freebsd-stable@freebsd.org, freebsd-questions@freebsd.org, Tetsuro FURUYA Subject: Re: Bug in wd driver In-reply-to: Your message of "Thu, 11 Jun 1998 04:41:08 +0900." <199806101941.EAA11696@dilemma.tf.or.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 10 Jun 1998 15:28:29 -0700 From: Mike Smith Sender: owner-freebsd-stable@freebsd.org X-Loop: FreeBSD.ORG > > > >fsck /usr > > > >..... > > > >wd0: interrupt timeout: > > > >wd0: status 50 error 0 > > > >wd0: interrupt timeout: > > > >wd0: status 50 error 1 > > > > > > >===> hang up > > > >===> type 'cntrl-alt-esc' > > > > This defers the interrupt timeout... > > > > > >db>wd0s1f: hard error reading fsbn 1152850 of 1152850-1152851(wd0s1 bn > > > >1279826; cn 317 tn 26 sn 44) > > > >wd0: status 59 error 40 > > > > ... but not the interrupt, which finally arrives and contains real > > error information. Note that the interrupt timeouts in your case > > *don't* have DRQ set. Are you running in multi-block mode? > > > > > As for wd.c source, I will try to experiment :) > > > > Please do. It looks like your information may lead to a result here. > > It seems too late for writing reply to mailing list. Not at all; better late than never! > But, this seems important to note-users, so I dare to report the result of > my experiment of patch to /usr/src/sys/i386/isa/wd.c > which Mr. Mike Smith's stated, ... > > if (wdtab[ctrlr].b_errcnt == 0) > > du->dk_timeout = 1 + 10; > > else > > du->dk_timeout = 1 + 3; <---- Only this line. > > > > > >Increase the 10 and 3 values (first and subsequent timeouts). Try > >raising them lots, then come down slowly. > > Unfortunately, my /usr/src/sys/i386/isa/wd.c is different > from the above source code. > There is just only the last line in the wd.c. > > So, I rewrite only this last line, and increased 3 to 50. ( Is this OK?) It's just a number, and you're in the best position to determine whether it's big enough. > Up to now, I have not yet experienced any disk crash, nor cannot-mount-root > problem, nor anything bad else. Excellent! And thanks for confirming this. I hope that the original plaintiff is in a position to try this themselves - I would be more than happy to be completely wrong about the situation. 8) > You have written that > >raising them lots, then come down slowly. > > Is there any inconvenience when du->dk_timeout value is > very large ? > What if du->dk_timeout value is too large ? The only inconvenience is in the case where the disk has truly failed to generate an interrupt, and the delay involved before reporting the failure. > What is this du->dk_timeout ? It determines how long a disk is allowed to take to complete a command. > I've just tried 'cd /usr; badsect BAD 1152850 1215577' & 'fsck /dev/rwd0s1f', > but 'bad144 -s -v /dev/wd0' should work fine. > ( I had often used bad144. But now, my bad sectors of wd0 become too many > for bad144 :( ) > badsect & fsck don't take care of swap area, > nevertheless they are working fine now :) > > So, Thank you Mr. Mike Smith ! No, definitely this time the thanks are for you. I'll look at increasing this timeout significantly for both -stable and -current, if someone doesn't beat me to it. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message ======================================================================== TEL: 048-852-3520 FAX: 048-858-1597 E-Mail: ht5t-fry@asahi-net.or.jp tfu@ff.iij4u.or.jp pgp-fingerprint: pub Tetsuro FURUYA Key fingerprint = F1 BA 5F C1 C2 48 1D C7 AE 5F 16 ED 12 17 75 38 ========================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 15:56:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11651 for freebsd-stable-outgoing; Wed, 8 Jul 1998 15:56:09 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from lionking.org (btman@blacker-99.caltech.edu [131.215.86.99]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA11646 for ; Wed, 8 Jul 1998 15:56:07 -0700 (PDT) (envelope-from btman@ugcs.caltech.edu) Received: from localhost (btman@localhost) by lionking.org (8.9.0/8.9.0) with SMTP id PAA29275 for ; Wed, 8 Jul 1998 15:56:05 -0700 (PDT) X-Authentication-Warning: lionking.org: btman owned process doing -bs Date: Wed, 8 Jul 1998 15:56:05 -0700 (PDT) From: Brian Tiemann X-Sender: btman@lionking.org To: freebsd-stable@FreeBSD.ORG Subject: Re: Disk problem. In-Reply-To: <199807082149.GAA01464@galois.tf.or.jp> 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, 9 Jul 1998, Tetsuro FURUYA wrote: > > And 5 minutes ago, I have this message on the console : > > Jul 8 17:07:46 rafiki /kernel: wd0: interrupt timeout: > > Jul 8 17:07:46 rafiki /kernel: wd0: interrupt timeout: > > Jul 8 17:07:46 rafiki /kernel: wd0: status 50 error 0 > > Jul 8 17:07:46 rafiki /kernel: wd0: status 50 error 0 > > Your ide disk sector is broken. > Try > bad144 -s -v /dev/wd0 Could this maybe be related to the problems I've been having for the past few months with my IDE disks hanging from time to time? Nobody seems to be able to tell me what's going on when this happens: wd3: wdunwedge failed; wd3: status 0 error 81 wd3c: wdstart: timeout waiting to give command reading fsbn 3932224 of 3932224-3932239 (wd3 bn 3932224; cn 3901 tn 0 sn 16); wd3: status 80 error 80 If so, would bad144 be likely to help? Thanks! Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 16:11:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA13659 for freebsd-stable-outgoing; Wed, 8 Jul 1998 16:11:37 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.uniserve.com (pop.uniserve.com [204.244.156.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id QAA13654 for ; Wed, 8 Jul 1998 16:11:35 -0700 (PDT) (envelope-from tom@uniserve.com) Received: from shell.uniserve.ca [204.244.186.218] by pop.uniserve.com with smtp (Exim 1.82 #4) id 0yu3LQ-0003hK-00; Wed, 8 Jul 1998 16:09:48 -0700 Date: Wed, 8 Jul 1998 16:09:46 -0700 (PDT) From: Tom X-Sender: tom@shell.uniserve.ca To: Tetsuro FURUYA cc: smarzloff@carif-idf.org, freebsd-stable@FreeBSD.ORG, Tetsuro FURUYA Subject: Re: Disk problem. In-Reply-To: <199807082149.GAA01464@galois.tf.or.jp> 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, 9 Jul 1998, Tetsuro FURUYA wrote: > Stephane Marzloff wrote: > > > Hi.. > > > > I have a problem with a 2.2.6-STABLE (6 Jul) on a Ppro 200. > > > > Sometimes, when I launch some applications (mutt, ls, vmstat..), there is no > > responses during 10 sec. > > I suspect a disk problem. > > > > The machine isn't charge, Load average is constantly : 0.00 (0.50 maximum). > > There 18Mo of Free RAM. > > > > And 5 minutes ago, I have this message on the console : > > Jul 8 17:07:46 rafiki /kernel: wd0: interrupt timeout: > > Jul 8 17:07:46 rafiki /kernel: wd0: interrupt timeout: > > Jul 8 17:07:46 rafiki /kernel: wd0: status 50 error 0 > > Jul 8 17:07:46 rafiki /kernel: wd0: status 50 error 0 > > Your ide disk sector is broken. Really? Can also be flaky electronics, or bad power. More like it "could be" bad sectors, but you'd expect that that bad sector problems would only occur when accessing certain files. Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 17:00:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20033 for freebsd-stable-outgoing; Wed, 8 Jul 1998 17:00:59 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mailc.telia.com (root@mailc.telia.com [194.22.190.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA20014 for ; Wed, 8 Jul 1998 17:00:55 -0700 (PDT) (envelope-from girgen@partitur.se) Received: from d1o29.telia.com (root@d1o29.telia.com [194.236.214.241]) by mailc.telia.com (8.8.8/8.8.8) with ESMTP id CAA07931; Thu, 9 Jul 1998 02:00:49 +0200 (MET DST) Received: from partitur.se (t2o29p33.telia.com [194.236.214.153]) by d1o29.telia.com (8.8.8/8.8.5) with ESMTP id CAA07129; Thu, 9 Jul 1998 02:00:46 +0200 (MET DST) Message-ID: <35A4083A.E7F5F937@partitur.se> Date: Thu, 09 Jul 1998 02:00:58 +0200 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 2.2.6-STABLE i386) MIME-Version: 1.0 To: "Dag-Erling Coidan =?iso-8859-1?Q?Sm=F8rgrav?=" CC: stable@FreeBSD.ORG Subject: Re: BINFORMAT variable References: <35A33B4F.67BC6555@partitur.se> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id RAA20022 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Wrong tag, thanks... I just used the standard file in /usr/share/examples/cvsup without checking it, so I owe to myself. :) /Palle Dag-Erling Coidan Smørgrav wrote: > > Palle Girgensohn writes: > > When making a tree with the international security distribution, there > > seems to be a need for the variable BINFORMAT to be set to 'elf' or > > 'aout' somewhere, I presume make.conf is a good place? Maybe this would > > be mentioned somewhere? Or am I missing something? > > Either you are running -current (in which case this is the wrong > list), or you have mistakenly cvsupped with the wrong tag. The > BINFORMAT voodoo was introduced in -current a few weeks ago in > preparation for the move to ELF, but has not yet hit -stable AFAIK. > > DES > -- > One two, one two, one two. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 18:10:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA27696 for freebsd-stable-outgoing; Wed, 8 Jul 1998 18:10:53 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from staff.sirius.com (staff.sirius.com [205.134.226.222]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA27690 for ; Wed, 8 Jul 1998 18:10:52 -0700 (PDT) (envelope-from peter@staff.sirius.com) Received: (from peter@localhost) by staff.sirius.com (8.8.7/Sirius-Inhouse) id SAA11873 for freebsd-stable@FreeBSD.ORG; Wed, 8 Jul 1998 18:09:23 -0700 (PDT) From: peter@sirius.com Message-Id: <199807090109.SAA11873@staff.sirius.com> Subject: missing "isa_devtab_cam" on kernel link To: freebsd-stable@FreeBSD.ORG Date: Wed, 8 Jul 1998 18:09:23 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL32 (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'm probably missing something -- but where? After cvsupping the latest "stable" (just src-sys) ontop of a 2.2.6-RELEASE install, all kernel builds (including the unchanged ``GENERIC'') fail with: loading kernel isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment *** Error code 1 sys/isa/isa.c views "isa_devtab_cam" as an external symbol but can't find its "real" location... Are some kernel-related files hiding in other than the src-sys distribution? If you successfully cvsupped your 2.2.6-RELEASE to stable recently, would you mind sharing your cvsup config file? Any help much appreciated! Peter. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 18:44:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA01933 for freebsd-stable-outgoing; Wed, 8 Jul 1998 18:44:58 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from firewall.scitec.com.au (firewall-user@fgate.scitec.com.au [203.17.180.68]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA01914 for ; Wed, 8 Jul 1998 18:44:55 -0700 (PDT) (envelope-from john.saunders@scitec.com.au) Received: by firewall.scitec.com.au; id LAA25376; Thu, 9 Jul 1998 11:44:51 +1000 (EST) Received: from mailhub.scitec.com.au(203.17.180.131) by fgate.scitec.com.au via smap (3.2) id xma025369; Thu, 9 Jul 98 11:44:39 +1000 Received: from saruman (saruman.scitec.com.au [203.17.182.108]) by mailhub.scitec.com.au (8.6.12/8.6.9) with SMTP id LAA12538 for ; Thu, 9 Jul 1998 11:44:35 +1000 Message-ID: <074201bdaadb$21d1f6d0$6cb611cb@saruman.scitec.com.au> From: "John Saunders" To: "FreeBSD stable" Subject: Kernel panic when disklabelling from sysinstall Date: Thu, 9 Jul 1998 11:44:35 +1000 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 4.72.2106.4 X-Mimeole: Produced By Microsoft MimeOLE V4.72.2106.4 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How do people normally add new disks to a FreeBSD system? Given that /stand/sysinstall causes a kernel panic during the newfs process, it would seem to me that people are using another method. When I tried to manually run disklabel I got all sorts of errors depending on what options I gave to disklabel. From "No space on device" to "bad magic number". Eventually I found that by just accepting the panic, when the system rebooted the disklabel was OK and all I needed to do was newfs the partitions. BTW the panic that sysinstall causes is "ufs_lock: recusive lock not expected" or something like that. The system is 2.2.6 stable cvsupped around 7 days ago. Cheers. -- . +-------------------------------------------------------+ ,--_|\ | John Saunders mailto:John.Saunders@scitec.com.au | / Oz \ | SCITEC LIMITED Phone +61294289563 Fax +61294289933 | \_,--\_/ | "By the time you make ends meet, they move the ends." | v +-------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 19:04:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA04257 for freebsd-stable-outgoing; Wed, 8 Jul 1998 19:04:11 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ix.netcom.com (sil-wa2-25.ix.netcom.com [206.214.137.57]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA04251 for ; Wed, 8 Jul 1998 19:04:09 -0700 (PDT) (envelope-from tomdean@ix.netcom.com) Received: (from tomdean@localhost) by ix.netcom.com (8.8.8/8.8.8) id TAA01778; Wed, 8 Jul 1998 19:03:59 -0700 (PDT) (envelope-from tomdean) Date: Wed, 8 Jul 1998 19:03:59 -0700 (PDT) Message-Id: <199807090203.TAA01778@ix.netcom.com> From: Thomas Dean To: peter@sirius.com CC: freebsd-stable@FreeBSD.ORG In-reply-to: <199807090109.SAA11873@staff.sirius.com> (peter@sirius.com) Subject: Re: missing "isa_devtab_cam" on kernel link Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Going from 2.2.6 to -stable is a step backwards. Is it known to work? In -current, I find isa_devtab_cam defined in compile/{kernel name}/ioconf.c. It is generated by config. I don't believe the cam code has been put in -stable, yet. Has it? Maybe you have a bad tag in the cvsup config file and got -current? I just sent my stable-supfile. I run -current, so the stable-supfile may be out of date. Look at http://www.freebsd.org/handbook/handbook263.html#507 The -stable supfile is referenced on that page. Did you clean the kernel build directory? config -r {kernel name} cd ../../compile/{kernel name} make depend make Is this the sequence? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 19:06:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA04565 for freebsd-stable-outgoing; Wed, 8 Jul 1998 19:06:32 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from rachel.glenatl.glenayre.com (mail.glenatl.glenayre.com [157.230.160.51]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id TAA04556 for ; Wed, 8 Jul 1998 19:06:30 -0700 (PDT) (envelope-from jhicks@glenatl.glenayre.com) Received: from jhicks.glenatl.glenayre.com by rachel.glenatl.glenayre.com (SMI-8.6/SMI-SVR4) id VAA21903; Wed, 8 Jul 1998 21:59:49 -0400 Received: (from jhicks@localhost) by jhicks.glenatl.glenayre.com (8.8.8/8.8.5) id WAA24391; Wed, 8 Jul 1998 22:05:48 -0400 (EDT) Date: Wed, 8 Jul 1998 22:05:48 -0400 (EDT) From: Jerry Hicks Message-Id: <199807090205.WAA24391@jhicks.glenatl.glenayre.com> To: freebsd-stable@FreeBSD.ORG, peter@sirius.com Subject: Re: missing "isa_devtab_cam" on kernel link In-Reply-To: <199807090109.SAA11873@staff.sirius.com> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You need to install /usr/sbin/config before attempting to build your kernel. Typically, we build world in user mode in the background as a 'nice' task. we monitor the redirected output using 'tail -f'. When the build has finished, we shutdown to single user mode and 'make installworld'. Then we rebuild our kernel and reboot. I suppose there are some situations this might not cover, but it's been working 100% for us. Good Luck, Jerry Hicks jhicks@glenatl.glenayre.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 19:13:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA05581 for freebsd-stable-outgoing; Wed, 8 Jul 1998 19:13:03 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.uniserve.com (pop.uniserve.com [204.244.156.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id TAA05571 for ; Wed, 8 Jul 1998 19:13:02 -0700 (PDT) (envelope-from tom@uniserve.com) Received: from shell.uniserve.ca [204.244.186.218] by pop.uniserve.com with smtp (Exim 1.82 #4) id 0yu6Cg-0003bC-00; Wed, 8 Jul 1998 19:12:59 -0700 Date: Wed, 8 Jul 1998 19:12:55 -0700 (PDT) From: Tom X-Sender: tom@shell.uniserve.ca To: peter@sirius.com cc: freebsd-stable@FreeBSD.ORG Subject: Re: missing "isa_devtab_cam" on kernel link In-Reply-To: <199807090109.SAA11873@staff.sirius.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 Wed, 8 Jul 1998 peter@sirius.com wrote: > I'm probably missing something -- but where? After cvsupping the latest You missed at least one of the following: - Searching the archive for the text of your error message to see if anyone else has posted it on it before - Actually read the freebsd-stable list if you want to track the stable branch (yes, the list is not just write-only!) Solution(for the zillionth time): rebuild config first Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 19:45:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA09422 for freebsd-stable-outgoing; Wed, 8 Jul 1998 19:45:50 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA09416 for ; Wed, 8 Jul 1998 19:45:44 -0700 (PDT) (envelope-from doconnor@cain.gsoft.com.au) Received: from cain (localhost [127.0.0.1]) by cain.gsoft.com.au (8.8.8/8.6.9) with ESMTP id MAA10353; Thu, 9 Jul 1998 12:14:46 +0930 (CST) Message-Id: <199807090244.MAA10353@cain.gsoft.com.au> X-Mailer: exmh version 2.0zeta 7/24/97 To: Thomas Dean cc: peter@sirius.com, freebsd-stable@FreeBSD.ORG Subject: Re: missing "isa_devtab_cam" on kernel link In-reply-to: Your message of "Wed, 08 Jul 1998 19:03:59 MST." <199807090203.TAA01778@ix.netcom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 09 Jul 1998 12:14:45 +0930 From: "Daniel O'Connor" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Going from 2.2.6 to -stable is a step backwards. Is it known to work? No it isn't... 2.2.6-RELEASE is earlier than 2.2-STABLE --------------------------------------------------------------------- |Daniel O'Connor software and network engineer for Genesis Software | |http://www.gsoft.com.au | |The nice thing about standards is that there are so many of them to| |choose from. -- Andrew Tanenbaum | --------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 8 22:25:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA29492 for freebsd-stable-outgoing; Wed, 8 Jul 1998 22:25:37 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ns11.rim.or.jp (root@ns11.rim.or.jp [202.247.130.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA29479; Wed, 8 Jul 1998 22:25:35 -0700 (PDT) (envelope-from motoyuki@snipe.rim.or.jp) Received: from rayearth.rim.or.jp (rayearth.rim.or.jp [202.247.130.242]) by ns11.rim.or.jp (8.8.5/3.5Wpl2-ns11/RIMNET-2) with ESMTP id OAA12585; Thu, 9 Jul 1998 14:25:34 +0900 (JST) Received: (from uucp@localhost) by rayearth.rim.or.jp (8.8.5/3.5Wpl2-uucp1/RIMNET) with UUCP id OAA12250; Thu, 9 Jul 1998 14:25:33 +0900 (JST) Received: from eddie.snipe.rim.or.jp (eddie.snipe.rim.or.jp [192.168.11.1]) by mserver.snipe.rim.or.jp (8.8.8/3.6W) with ESMTP id OAA12183; Thu, 9 Jul 1998 14:18:24 +0900 (JST) Received: from eddie.snipe.rim.or.jp (localhost.snipe.rim.or.jp [127.0.0.1]) by eddie.snipe.rim.or.jp (8.8.8/3.5Wpl7) with ESMTP id OAA00441; Thu, 9 Jul 1998 14:18:24 +0900 (JST) Message-Id: <199807090518.OAA00441@eddie.snipe.rim.or.jp> To: freebsd-www@FreeBSD.ORG Cc: freebsd-stable@FreeBSD.ORG, motoyuki@snipe.rim.or.jp References: <18035.897484606@time.cdrom.com> X-Mailer: mh-e on Mule 2.3 / Emacs 19.28 Subject: Re: Where are 2.2.5 updates? Date: Thu, 09 Jul 1998 14:18:23 +0900 From: Motoyuki Konno Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Jordan wrote in the FreeBSD-stable mailing list on June 10: > > Since /pub/FreeBSD/2.2.5-RELEASE directory was deleted from > > ftp.freebsd.org, users of 2.2.5-RELEASE can not get the patch now. > > Where are the update patches? > > http://ftpsearch.no is your friend! :-) I found at least 5 other sites > with the 2.2.5 bits up for FTP and grabbed the updates/ directory from > one of them. It's back on the ftp.freebsd.org site (see below for location). > > > I think the update patch files should place in > > ftp://ftp.freebsd.org/pub/FreeBSD/updates/X.X.X-RELEASE. > > I agree, done! > > - Jordan The description of FreeBSD update patch in the FreeBSD WWW are not changed yet. Please apply following patches to the FreeBSD WWW source. ------------------------------------------------------------------------ --- www/data/releases/2.2.5R/errata.sgml.orig Thu Jul 9 13:46:51 1998 +++ www/data/releases/2.2.5R/errata.sgml Thu Jul 9 13:50:38 1998 @@ -46,7 +46,7 @@ o The appletalk stack was broken in 2.2.5 and, if you plan to run appletalk, you should apply the following patch: - ftp://ftp.freebsd.org/pub/FreeBSD/2.2.5-RELEASE/updates/atalk.diff.2.2 + ftp://ftp.freebsd.org/pub/FreeBSD/updates/2.2.5-RELEASE/atalk.diff.2.2.gz o The line printer spooler lpd will, when sending jobs to remote printers, kill the child process sending to the remote after the @@ -61,7 +61,7 @@ Fix: Update to the 2.2-stable version of the kernel or apply the patch found in: - ftp://ftp.freebsd.org/pub/FreeBSD/2.2.5-RELEASE/updates/f00f.diff.2.2 + ftp://ftp.freebsd.org/pub/FreeBSD/updates/2.2.5-RELEASE/f00f.diff.2.2.gz o A bug in the ipfw code exists where using the "reset tcp" firewall command @@ -69,7 +69,7 @@ locations. Fix: Update to the 2.2-stable version of the kernel or apply the - patch found in ftp://ftp.freebsd.org/pub/FreeBSD/2.2.5-RELEASE/updates/ipfw.diff + patch found in ftp://ftp.freebsd.org/pub/FreeBSD/updates/2.2.5-RELEASE/ipfw.diff.gz o A bug in XF86Setup causes it to fail to create a symbolic link from /usr/X11R6/bin/X to the right X server for your hardware if a link --- www/data/releases/2.2.6R/errata.sgml.orig Thu Jul 9 13:47:30 1998 +++ www/data/releases/2.2.6R/errata.sgml Thu Jul 9 13:51:53 1998 @@ -107,7 +107,7 @@ Fix: Fetch the updated xterm binary at: - ftp://ftp.freebsd.org/pub/FreeBSD/2.2.6-RELEASE/updates/xterm + ftp://ftp.freebsd.org/pub/FreeBSD/updates/2.2.6-RELEASE/xterm Or get the *latest* ports collection on your machine (see http://www.freebsd.org/ports) and use the port in x11/XFree86 to @@ -122,7 +122,7 @@ Fix: Fetch an updated boot floppy from the updates/ directory, e.g.: - ftp://ftp.freebsd.org/pub/FreeBSD/2.2.6-RELEASE/updates/boot.flp + ftp://ftp.freebsd.org/pub/FreeBSD/updates/2.2.6-RELEASE/boot.flp And use it to install 2.2.6 instead. This problem is fixed in 2.2-stable and will not be a problem with the next FreeBSD release. ------------------------------------------------------------------------ begin 644 diffs.gz M'XL("+11I#4"`V1I9F9S`*V636_;.!"&S]6O&.34K6W)+J>7,`G'Z^L(-'RL.3!C%/=,;\ M!=E"F`)86TY!"MCI#HQB+7@-MFLC@,?AT_#4U;I39;B[`X_R0BNE>]E68)@O MZBR":`;PCD%MN7A_)KS)D@2/L;""%@M4\(J'`FK.[G-`#Z%Q8SC,/(9XI4K M#O_@=%*WH$5XLN&VY0JT?<),((7"HY_075LBBADN.;!#OY/Y$?.Y^`7X',F, M]+PPP._;?J1\$D!?*XW\$$$WD'<5[7-*NS2BAT*7'/A6.N\('LNA,K!*9%^W\[#-"=!\53EL:`<<%C?72T?N.\,%*S#5@/2 MDV&"247GPG*RD(';-;E6LJ`RM`%A=4.N)YVSR3I-[Y=)+MMD?:@>LJH]K+&H M6/0:7_]LTTNSA_[)OI M_)*X'DX$]ECD[CAY2TL;LES"%@MC`[AJ9G?`_+[=/0^IY3=(!35"Z64V/PH- M`ACOWQ8JVKH8ZAM%+_HW8+3%35Y@@^:%#QNO'?QH!;"NO'<'(:_1M]&F"%X$/=QEM$SS9-DS4%=K5$ZX<4+A8AA>$TU(;C).)'Q9C#7&L/ M0FEC=@&I)PEV"918>`JO[6X*/*[B$S-,<\5"F5.2?-#`)=WLTS'L%]EB:<,: M&=X/5YR5,6#CEHY:+%:]!O"OD%M>[C^WQFH8A=12%X<6\Y'3=AN']-(/V+5\ 2ZV$?'>SYCJ-_`83AC%AU"@`` ` end ------------------------------------------------------------------------ ---- ------------------------------------------------------------------------ Motoyuki Konno @ FreeBSD Japanese Documentation Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 9 00:47:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA13850 for freebsd-stable-outgoing; Thu, 9 Jul 1998 00:47:48 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.asahi-net.or.jp (pop.asahi-net.or.jp [202.224.39.6]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA13839 for ; Thu, 9 Jul 1998 00:47:44 -0700 (PDT) (envelope-from tfuruya@dilemma.tf.or.jp@ppp142088.asahi-net.or.jp) Received: from galois.tf.or.jp (ppp142088.asahi-net.or.jp [202.213.142.88]) by pop.asahi-net.or.jp (8.8.8/3.6W) with ESMTP id QAA36078; Thu, 9 Jul 1998 16:53:10 +0900 Received: from dilemma.tf.or.jp (dilemma.tf.or.jp [192.168.1.3]) by galois.tf.or.jp (8.8.8/3.6W-ht5t-fry@asahi-net-98042218) with ESMTP id QAA05267; Thu, 9 Jul 1998 16:47:16 +0900 (JST) Received: from dilemma.tf.or.jp (localhost [127.0.0.1]) by dilemma.tf.or.jp (8.8.8/3.6W-CF3.6W-dilemma-tf.or.jp-9807) with ESMTP id QAA01980; Thu, 9 Jul 1998 16:51:31 +0900 (JST) Message-Id: <199807090751.QAA01980@dilemma.tf.or.jp> To: tom@uniserve.com Cc: smarzloff@carif-idf.org, freebsd-stable@FreeBSD.ORG, tfu@ff.iij4u.or.jp Subject: Re: Disk problem. From: Tetsuro FURUYA Reply-To: Tetsuro FURUYA In-Reply-To: Your message of "Wed, 8 Jul 1998 16:09:46 -0700 (PDT)" References: X-Mailer: Mew version 1.54 on Emacs 19.28.1, Mule 2.3 X-fingerprint: F1 BA 5F C1 C2 48 1D C7 AE 5F 16 ED 12 17 75 38 X-URL: http://sodan.komaba.ecc.u-tokyo.ac.jp/~tfuruya/ Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 09 Jul 1998 16:51:28 +0900 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In Message-ID: Tom wrote: > > > > > > And 5 minutes ago, I have this message on the console : > > > Jul 8 17:07:46 rafiki /kernel: wd0: interrupt timeout: > > > Jul 8 17:07:46 rafiki /kernel: wd0: interrupt timeout: > > > Jul 8 17:07:46 rafiki /kernel: wd0: status 50 error 0 > > > Jul 8 17:07:46 rafiki /kernel: wd0: status 50 error 0 > > > > Your ide disk sector is broken. > > Really? Can also be flaky electronics, or bad power. > > More like it "could be" bad sectors, but you'd expect that that bad > sector problems would only occur when accessing certain files. > > Tom Right. You can know whether the sector is broken or not by executing bad144 scan mode. And please appear the result to this ml. ======================================================================== TEL: 048-852-3520 FAX: 048-858-1597 E-Mail: ht5t-fry@asahi-net.or.jp tfu@ff.iij4u.or.jp pgp-fingerprint: pub Tetsuro FURUYA Key fingerprint = F1 BA 5F C1 C2 48 1D C7 AE 5F 16 ED 12 17 75 38 ========================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 9 00:54:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA14591 for freebsd-stable-outgoing; Thu, 9 Jul 1998 00:54:29 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.asahi-net.or.jp (pop.asahi-net.or.jp [202.224.39.6]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA14585 for ; Thu, 9 Jul 1998 00:54:27 -0700 (PDT) (envelope-from tfuruya@ppp142088.asahi-net.or.jp) Received: from galois.tf.or.jp (ppp142088.asahi-net.or.jp [202.213.142.88]) by pop.asahi-net.or.jp (8.8.8/3.6W) with ESMTP id RAA57952; Thu, 9 Jul 1998 17:00:01 +0900 Received: from galois.tf.or.jp (localhost.tf.or.jp [127.0.0.1]) by galois.tf.or.jp (8.8.8/3.6W-ht5t-fry@asahi-net-98042218) with ESMTP id QAA05486; Thu, 9 Jul 1998 16:54:07 +0900 (JST) Message-Id: <199807090754.QAA05486@galois.tf.or.jp> To: tom@uniserve.com Cc: smarzloff@carif-idf.org, freebsd-stable@FreeBSD.ORG, Tetsuro FURUYA Subject: Re: Disk problem. From: Tetsuro FURUYA Reply-To: Tetsuro FURUYA In-Reply-To: Your message of "Wed, 8 Jul 1998 16:09:46 -0700 (PDT)" References: X-Mailer: Mew version 1.54 on Emacs 19.28.1, Mule 2.3 X-fingerprint: F1 BA 5F C1 C2 48 1D C7 AE 5F 16 ED 12 17 75 38 X-URL: http://sodan.komaba.ecc.u-tokyo.ac.jp/~tfuruya/ Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 09 Jul 1998 16:54:06 +0900 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In Message-ID: Tom wrote: > > > > > > And 5 minutes ago, I have this message on the console : > > > Jul 8 17:07:46 rafiki /kernel: wd0: interrupt timeout: > > > Jul 8 17:07:46 rafiki /kernel: wd0: interrupt timeout: > > > Jul 8 17:07:46 rafiki /kernel: wd0: status 50 error 0 > > > Jul 8 17:07:46 rafiki /kernel: wd0: status 50 error 0 > > > > Your ide disk sector is broken. > > Really? Can also be flaky electronics, or bad power. > > More like it "could be" bad sectors, but you'd expect that that bad > sector problems would only occur when accessing certain files. > > Tom Right. You can know whether the sector is broken or not by executing bad144 scan mode. And please appear the result to this ml. ======================================================================== TEL: 048-852-3520 FAX: 048-858-1597 E-Mail: ht5t-fry@asahi-net.or.jp tfu@ff.iij4u.or.jp pgp-fingerprint: pub Tetsuro FURUYA Key fingerprint = F1 BA 5F C1 C2 48 1D C7 AE 5F 16 ED 12 17 75 38 ========================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 9 07:28:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA19257 for freebsd-stable-outgoing; Thu, 9 Jul 1998 07:28:20 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from wit393107.student.utwente.nl (root@wit393107.student.utwente.nl [130.89.235.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA19248 for ; Thu, 9 Jul 1998 07:28:11 -0700 (PDT) (envelope-from gelderen@mediaport.org) Received: from wit395301.student.utwente.nl ([130.89.235.121]:63236 "HELO deskfix" ident: "NO-IDENT-SERVICE") by wit393107.student.utwente.nl with SMTP id <4107-7570>; Thu, 9 Jul 1998 16:27:45 +0200 Message-ID: <014901bdab45$ba8344a0$1400000a@deskfix.local> From: "Jeroen C. van Gelderen" To: Date: Thu, 9 Jul 1998 16:27:39 +0200 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 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 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 Thu Jul 9 10:57:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA21321 for freebsd-stable-outgoing; Thu, 9 Jul 1998 10:57:25 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from public.bta.net.cn (public.bta.net.cn [202.96.0.97]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA21311 for ; Thu, 9 Jul 1998 10:57:22 -0700 (PDT) (envelope-from robinson@public.bta.net.cn) Received: (from robinson@localhost) by public.bta.net.cn (8.8.5/8.8.5) id BAA10098 for freebsd-stable@freebsd.org; Fri, 10 Jul 1998 01:57:04 +0800 (GMT) Date: Fri, 10 Jul 1998 01:57:04 +0800 (GMT) From: Michael Robinson Message-Id: <199807091757.BAA10098@public.bta.net.cn> To: freebsd-stable@FreeBSD.ORG Subject: ppbus drivers failing to probe vpo under 2.2.5 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok, I admit defeat a second time. I've installed the ppb1125.tgz parallel ZIP support on my 2.2.5 machine, and I've played with every permutation of the config file I can think of, and I always get the same result: nlpt and ppi probe fine, but no vpo or sd0. The hardware is in the exact same configuration that works flawlessly under Win95 with the Iomega drivers. If anyone can toss me a clue, I'd be most appreciative. Thanks. -Michael Robinson -----config excerpt----- controller scbus0 #base SCSI code device sd0 #SCSI disks controller ppbus0 # ppbus stuff controller vpo0 at ppbus? # Iomega ZIP support device nlpt0 at ppbus? # printer support device ppi0 at ppbus? # ppbus interface #device plip0 at ppbus0 # PLIP support controller ppc0 at isa? port? irq 7 vector ppcintr #controller ppa0 at isa? port 0x378 # Obsolete #device lpt0 at isa? port? tty # Obsolete -----end: config excerpt----- -----dmesg excerpt----- FreeBSD 2.2.5-RELEASE #0: Fri Jul 10 00:51:52 GMT 1998 root@sidewinder.netrinsics.com:/usr/src/sys/compile/TECRA CPU: Pentium (132.63-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x52c Stepping=12 Features=0x1bf real memory = 33685504 (32896K bytes) avail memory = 30490624 (29776K bytes) Probing for devices on PCI bus 0: chip0 rev 17 on pci0:0 vga0 rev 69 on pci0:4 Probing for devices on the ISA bus: [...] ppc0 at 0x378 irq 7 on isa ppc0: Generic chipset (ECP/PS2/NIBBLE) in NIBBLE mode ppi0: on ppbus 0 nlpt0: on ppbus 0 nlpt0: Interrupt-driven port -----end: dmesg excerpt----- -----dmesg | grep irq----- sc0 at 0x60-0x6f irq 1 on motherboard psm0 at 0x60-0x64 irq 12 on motherboard sio0 at 0x3f8-0x3ff irq 4 on isa sio1 at 0x2f8-0x2ff irq 3 on isa wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc1 at 0x170-0x177 irq 15 on isa fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa ppc0 at 0x378 irq 7 on isa sb0 at 0x220 irq 5 drq 1 on isa pcic: controller irq 9 -----end: dmesg | grep irq----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 9 16:31:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA15172 for freebsd-stable-outgoing; Thu, 9 Jul 1998 16:31:36 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from shell.futuresouth.com (fullermd@shell.futuresouth.com [198.78.58.18]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA15167 for ; Thu, 9 Jul 1998 16:31:33 -0700 (PDT) (envelope-from fullermd@shell.futuresouth.com) Received: (from fullermd@localhost) by shell.futuresouth.com (8.8.8/8.8.8) id SAA29609; Thu, 9 Jul 1998 18:31:21 -0500 (CDT) Message-ID: <19980709183121.18301@futuresouth.com> Date: Thu, 9 Jul 1998 18:31:21 -0500 From: "Matthew D. Fuller" To: Michael Robinson Cc: freebsd-stable@FreeBSD.ORG Subject: Re: ppbus drivers failing to probe vpo under 2.2.5 References: <199807091757.BAA10098@public.bta.net.cn> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: <199807091757.BAA10098@public.bta.net.cn>; from Michael Robinson on Fri, Jul 10, 1998 at 01:57:04AM +0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jul 10, 1998 at 01:57:04AM +0800, Michael Robinson woke me up to tell me: > Ok, I admit defeat a second time. I've installed the ppb1125.tgz > parallel ZIP support on my 2.2.5 machine, and I've played with every > permutation of the config file I can think of, and I always get the > same result: nlpt and ppi probe fine, but no vpo or sd0. Here's the config snip that worked for me under -stable a while back. This was using ppbus-dist.971009. controller ppbus0 # ppbus shit controller vpo0 at ppbus0 # ZIP support device new_lpt0 at ppbus0 device ppi0 at ppbus0 controller ppc0 at isa? port ? irq 7 vector ppcintr controller scbus0 at vpo0 disk sd0 at scbus0 target 0 This worked under stable (granted, slow under a crappy 486, but... ;) I haven't managed to get it working on -current yet, but... *shrug* *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* | FreeBSD; the way computers were meant to be | * "The only reason I'm burning my candle at both ends, is * | that I haven't figured out how to light the middle yet."| * fullermd@futuresouth.com :-} MAtthew Fuller * | http://keystone.westminster.edu/~fullermd | *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 9 17:07:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19851 for freebsd-stable-outgoing; Thu, 9 Jul 1998 17:07:42 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mail.double-barrel.be (root@mail.double-barrel.be [194.7.102.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA19846 for ; Thu, 9 Jul 1998 17:07:38 -0700 (PDT) (envelope-from mvergall@alpha.double-barrel.be) Received: from alpha.double-barrel.be (mvergall@ns.double-barrel.be [194.7.102.18]) by mail.double-barrel.be (8.8.8/8.8.8) with ESMTP id CAA30188 for ; Fri, 10 Jul 1998 02:08:13 +0200 Received: from localhost (mvergall@localhost) by alpha.double-barrel.be (8.8.7/8.8.7) with SMTP id CAA03752 for ; Fri, 10 Jul 1998 02:08:15 +0200 Date: Fri, 10 Jul 1998 02:08:15 +0200 (CEST) From: "Michael C. Vergallen" To: freebsd-stable@FreeBSD.ORG Subject: WordPerfect ... 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, I've just tested the demo off WordPerfect for Linux under FreeBSD and have found that it works great. Michael --- Michael C. Vergallen A.k.A. Mad Mike, Sportstraat 28 http://www.double-barrel.be/mvergall/ B 9000 Gent ftp://ftp.double-barrel.be/pub/linux/ Belgium tel : 32-9-2227764 Fax : 32-9-2224976 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 9 19:03:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA02895 for freebsd-stable-outgoing; Thu, 9 Jul 1998 19:03:35 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA02890 for ; Thu, 9 Jul 1998 19:03:33 -0700 (PDT) (envelope-from jfieber@indiana.edu) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.8.8/8.8.7) with SMTP id VAA01177; Thu, 9 Jul 1998 21:03:26 -0500 (EST) Date: Thu, 9 Jul 1998 21:03:26 -0500 (EST) From: John Fieber To: "Michael C. Vergallen" cc: freebsd-stable@FreeBSD.ORG Subject: Re: WordPerfect ... 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, 10 Jul 1998, Michael C. Vergallen wrote: > I've just tested the demo off WordPerfect for Linux under FreeBSD and > have found that it works great. I have the non-demo version and it works great for around 8 or 10 days, then it crashes on startup, or shortly after startup. A reboot clears the problem. This is 2.2.6 with a 2.2.6-stable kernel. Anyone else see this? When you start it up the first time, it runs a little daemon that sticks around. Eventually that spontanously dies (segfault or bus error, don't recall which) and after that, WP just doesn't work right again. It tries restarting the daemon which seems to fail... -john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 9 19:09:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA03508 for freebsd-stable-outgoing; Thu, 9 Jul 1998 19:09:41 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mail.double-barrel.be (root@mail.double-barrel.be [194.7.102.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA03503 for ; Thu, 9 Jul 1998 19:09:37 -0700 (PDT) (envelope-from mvergall@alpha.double-barrel.be) Received: from alpha.double-barrel.be (mvergall@ns.double-barrel.be [194.7.102.18]) by mail.double-barrel.be (8.8.8/8.8.8) with ESMTP id EAA30639; Fri, 10 Jul 1998 04:10:16 +0200 Received: from localhost (mvergall@localhost) by alpha.double-barrel.be (8.8.7/8.8.7) with SMTP id EAA04048; Fri, 10 Jul 1998 04:10:17 +0200 Date: Fri, 10 Jul 1998 04:10:17 +0200 (CEST) From: "Michael C. Vergallen" To: John Fieber cc: "Michael C. Vergallen" , freebsd-stable@FreeBSD.ORG Subject: Re: WordPerfect ... 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, 9 Jul 1998, John Fieber wrote: > On Fri, 10 Jul 1998, Michael C. Vergallen wrote: > > > I've just tested the demo off WordPerfect for Linux under FreeBSD and > > have found that it works great. > > I have the non-demo version and it works great for around 8 or 10 > days, then it crashes on startup, or shortly after startup. A > reboot clears the problem. This is 2.2.6 with a 2.2.6-stable > kernel. Anyone else see this? what daemon ? you mean the printer daemon it uses ? the printer daemon is uninstallable each time with the -k option. if it is the licence deamon I don't know about that one. > > When you start it up the first time, it runs a little daemon that > sticks around. Eventually that spontanously dies (segfault or > bus error, don't recall which) and after that, WP just doesn't > work right again. It tries restarting the daemon which seems to > fail... probably because /tmp get cleaned out ... Michael. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 9 21:34:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA18156 for freebsd-stable-outgoing; Thu, 9 Jul 1998 21:34:12 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from public.bta.net.cn (public.bta.net.cn [202.96.0.97]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA18151 for ; Thu, 9 Jul 1998 21:34:08 -0700 (PDT) (envelope-from robinson@public.bta.net.cn) Received: (from robinson@localhost) by public.bta.net.cn (8.8.5/8.8.5) id MAA29740; Fri, 10 Jul 1998 12:33:31 +0800 (GMT) Date: Fri, 10 Jul 1998 12:33:31 +0800 (GMT) From: Michael Robinson Message-Id: <199807100433.MAA29740@public.bta.net.cn> To: fullermd@futuresouth.com Subject: Re: ppbus drivers failing to probe vpo under 2.2.5 Cc: freebsd-stable@FreeBSD.ORG Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Matthew D. Fuller writes: >Here's the config snip that worked for me under -stable a while back. >This was using ppbus-dist.971009. > >controller ppbus0 # ppbus shit >controller vpo0 at ppbus0 # ZIP support >device new_lpt0 at ppbus0 >device ppi0 at ppbus0 > >controller ppc0 at isa? port ? irq 7 vector ppcintr > >controller scbus0 at vpo0 >disk sd0 at scbus0 target 0 Thanks, but this produces the same result I had before (nlpt, and ppi, but no vpo). Maybe I should try the 971009 dist instead? -Michael Robinson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 05:54:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA04896 for freebsd-stable-outgoing; Fri, 10 Jul 1998 05:54:31 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mirage.nlink.com.br (mirage.nlink.com.br [200.238.120.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA04888 for ; Fri, 10 Jul 1998 05:54:18 -0700 (PDT) (envelope-from paulo@nlink.com.br) Received: from localhost (paulo@localhost) by mirage.nlink.com.br (8.9.0/8.9.0) with SMTP id JAA20732 for ; Fri, 10 Jul 1998 09:53:42 -0300 (EST) Date: Fri, 10 Jul 1998 09:53:42 -0300 (EST) From: Paulo Fragoso To: freebsd-stable@FreeBSD.ORG Subject: Finger and getpwent 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, I don't know if seding message to correct list. But after upgrade from FBSD 2.2.2 to FBSD 2.2.6-stable something moved. In my /etc/passwd file there are lots of coments "#" and getpwent() return 0 after read this line. I have some scripts in perl that stops when getpwent() return 0. In FBSD 2.2.2 when getpwent() returned 0 meant end of file /etc/passwd. Same problem occurs in finger, ex: my /etc/passwd: xten:*:67:67:X-10 daemon:... pop:*:68:6:Post Office Owner:... nobody:*:65534:65534:Unprivileged user:... ftp:*:14:5:Anonymous FTP Admin:... majordom:*:69:69:Majordomo Pseudo User:... quota:*:500:5:Quotas:... paulo:*:501:5:Paulo Fragoso:... #waterloo:(password):... andre:*:1006:1001:... mirage{paulo}:/etc:25$ finger ftp Login: ftp Name: Anonymous FTP Admin ... mirage{paulo}:/etc:26$ finger paulo Login: paulo Name: Paulo Fragoso ... but after "#waterloo" : mirage{paulo}:/etc:27$ finger andre finger: andre: no such user I think so getpwent() must return 0 in true EOF /etc/passswd. Are there any solution in this case? I don't want to remove my coments in /etc/passwd. Sorry for my english mistakes :-) Many Thanks, Paulo. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 07:38:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA18563 for freebsd-stable-outgoing; Fri, 10 Jul 1998 07:38:31 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ns2.metcalfe.net (ns2.metcalfe.net [205.254.199.135]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA18558 for ; Fri, 10 Jul 1998 07:38:30 -0700 (PDT) (envelope-from dave@vtom.com) Received: from david2 (mna105.metcalfe.net [205.254.211.86]) by ns2.metcalfe.net (8.9.1/8.8.7) with SMTP id JAA06557 for ; Fri, 10 Jul 1998 09:52:29 -0500 (CDT) Message-ID: <008401bdac21$204939d0$56d3fecd@david2.vtom.com.> From: "David R. Birr" To: Date: Fri, 10 Jul 1998 09:38:10 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0081_01BDABE6.733A99D0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0081_01BDABE6.733A99D0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable subscribe freebsd-stable ------=_NextPart_000_0081_01BDABE6.733A99D0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
subscribe=20 freebsd-stable
------=_NextPart_000_0081_01BDABE6.733A99D0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 12:29:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA26020 for freebsd-stable-outgoing; Fri, 10 Jul 1998 12:29:10 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.uniserve.com (pop.uniserve.com [204.244.156.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id MAA26005 for ; Fri, 10 Jul 1998 12:29:08 -0700 (PDT) (envelope-from tom@uniserve.com) Received: from shell.uniserve.ca [204.244.186.218] by pop.uniserve.com with smtp (Exim 1.82 #4) id 0yuiqA-0004do-00; Fri, 10 Jul 1998 12:28:18 -0700 Date: Fri, 10 Jul 1998 12:28:16 -0700 (PDT) From: Tom X-Sender: tom@shell.uniserve.ca To: Paulo Fragoso cc: freebsd-stable@FreeBSD.ORG Subject: Re: Finger and getpwent 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, 10 Jul 1998, Paulo Fragoso wrote: > Hi, > > I don't know if seding message to correct list. But after upgrade from > FBSD 2.2.2 to FBSD 2.2.6-stable something moved. In my /etc/passwd file > there are lots of coments "#" and getpwent() return 0 after read this > line. I have some scripts in perl that stops when getpwent() return 0. > In FBSD 2.2.2 when getpwent() returned 0 meant end of file /etc/passwd. I hope you realize that /etc/passwd isn't used for anything. All users should be listed in /etc/master.passwd. You should used vipw to edit /etc/master.passwd Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 13:24:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA04159 for freebsd-stable-outgoing; Fri, 10 Jul 1998 13:24:15 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from ziplink.net (relay-0.ziplink.net [206.15.168.49]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA04111 for ; Fri, 10 Jul 1998 13:24:02 -0700 (PDT) (envelope-from mi@xxx.video-collage.com) Received: from www.video-collage.com (www.video-collage.com [206.15.171.132]) by ziplink.net (8.8.7/8.8.7) with ESMTP id DAA12791 for ; Fri, 10 Jul 1998 03:11:49 -0400 (EDT) Received: from xxx.video-collage.com (mi@xxx.video-collage.com [199.232.254.68]) by www.video-collage.com (8.8.5/8.8.5) with ESMTP id DAA00763 for ; Fri, 10 Jul 1998 03:11:34 -0400 (EDT) Received: (from mi@localhost) by xxx.video-collage.com (8.8.8/8.8.7) id DAA13519 for stable@freebsd.org; Fri, 10 Jul 1998 03:10:08 -0400 (EDT) (envelope-from mi) From: Mikhail Teterin Message-Id: <199807100710.DAA13519@xxx.video-collage.com> Subject: substantial performance drop with rc5des To: stable@FreeBSD.ORG Date: Fri, 10 Jul 1998 03:10:06 -0400 (EDT) X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA10312 for freebsd-stable-outgoing; Fri, 10 Jul 1998 13:46:32 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA10215 for ; Fri, 10 Jul 1998 13:46:21 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id WAA15586; Fri, 10 Jul 1998 22:44:13 +0200 (MET DST) Received: from localhost (localhost [127.0.0.1]) by semyam.dinoco.de (8.8.8/8.8.8) with ESMTP id WAA27602; Fri, 10 Jul 1998 22:27:42 +0200 (CEST) (envelope-from seggers@semyam.dinoco.de) Message-Id: <199807102027.WAA27602@semyam.dinoco.de> To: freebsd-stable@FreeBSD.ORG Cc: Tom , seggers@semyam.dinoco.de Subject: Re: Finger and getpwent In-reply-to: Your message of "Fri, 10 Jul 1998 12:28:16 PDT." Date: Fri, 10 Jul 1998 22:27:42 +0200 From: Stefan Eggers Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > FBSD 2.2.2 to FBSD 2.2.6-stable something moved. In my /etc/passwd file > > there are lots of coments "#" and getpwent() return 0 after read this > > line. I have some scripts in perl that stops when getpwent() return 0. > > In FBSD 2.2.2 when getpwent() returned 0 meant end of file /etc/passwd. > > I hope you realize that /etc/passwd isn't used for anything. All users > should be listed in /etc/master.passwd. You should used vipw to edit > /etc/master.passwd And how do you expect non-root/SUID-root programs to get at any information on users if not via /etc/passwd and (the actually used database version thereof) /etc/pwd.db? getpwent() uses it if one isn't root. For accesses by root it uses the shadow password file's database version. See the source to -stable. Using vipw is a good idea, though as that will keep both in sync. Not doing so might eventually lead to interesting problems like root seeing something differing from what a user can see. Besides the difference with the password, of course. ;-) Stefan. -- Stefan Eggers Lu4 yao2 zhi1 ma3 li4, Max-Slevogt-Str. 1 ri4 jiu3 jian4 ren2 xin1. 51109 Koeln Federal Republic of Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 13:47:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA10809 for freebsd-stable-outgoing; Fri, 10 Jul 1998 13:47:30 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from mirage.nlink.com.br (mirage.nlink.com.br [200.238.120.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA10709 for ; Fri, 10 Jul 1998 13:47:18 -0700 (PDT) (envelope-from paulo@nlink.com.br) Received: from localhost (paulo@localhost) by mirage.nlink.com.br (8.9.0/8.9.0) with SMTP id RAA02201; Fri, 10 Jul 1998 17:45:37 -0300 (EST) Date: Fri, 10 Jul 1998 17:45:37 -0300 (EST) From: Paulo Fragoso To: Tom cc: freebsd-stable@FreeBSD.ORG Subject: Re: Finger and getpwent 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 Hi, On Fri, 10 Jul 1998, Tom wrote: > > On Fri, 10 Jul 1998, Paulo Fragoso wrote: > > > Hi, > > > > I don't know if seding message to correct list. But after upgrade from > > FBSD 2.2.2 to FBSD 2.2.6-stable something moved. In my /etc/passwd file > > there are lots of coments "#" and getpwent() return 0 after read this > > line. I have some scripts in perl that stops when getpwent() return 0. > > In FBSD 2.2.2 when getpwent() returned 0 meant end of file /etc/passwd. > > I hope you realize that /etc/passwd isn't used for anything. All users > should be listed in /etc/master.passwd. You should used vipw to edit > /etc/master.passwd > > Tom > But I'm using vipw to edit this files. I would like to leave coments in /etc/master.passwd and /etc/passwd. In /etc/master.passwd edited with vipw: user1:(password):... user2:(password):... #user3:(password):... > this users stopped logins temporarily user4:(password):... when anyone executes: % finger user1 it work fine. and to user2 too, but when: % finger user4 it return no such user My problem are some scripts to verify users on system. I'm verifying using one loop like this: (perl) while (($account, $passwd, $uid, $gid, $quota, $comment, $gcos, $home, $shell) = getpwent()) { } this finsh when getpwent() return 0 this occur in frist comment in /etc/master.passwd not in end of file. If getpwent() returned 0 in comments "#" and -1 in EOF it solved. Are there any solution in this case? Many thanks, Paulo. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 13:54:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA13544 for freebsd-stable-outgoing; Fri, 10 Jul 1998 13:54:48 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from server.everexgov.com (server.everexgov.com [206.25.143.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA13460 for ; Fri, 10 Jul 1998 13:54:30 -0700 (PDT) (envelope-from ninot@everex.com) Received: from mis-nt (i004675.everexgov.com [206.25.143.35]) by server.everexgov.com (8.8.7/8.8.7) with SMTP id NAA07672 for ; Fri, 10 Jul 1998 13:21:58 -0700 (PDT) Message-Id: <199807102021.NAA07672@server.everexgov.com> X-Sender: i004675@server.everexgov.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0 Date: Fri, 10 Jul 1998 12:05:20 +0100 To: freebsd-stable@FreeBSD.ORG From: Nino Tungul Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Help! Help! Help! I'm new with freeBSD and I always get a message "kernel: uid 0 /: file system full" on our server, but when run df it only shows 41% (mounted on / ) on capacity. How can I clear this mess.? Can somebody help me? and also, how can i clear mail(messages) from the mail queue? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 14:47:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA22677 for freebsd-stable-outgoing; Fri, 10 Jul 1998 14:47:42 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.uniserve.com (pop.uniserve.com [204.244.156.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id OAA22666 for ; Fri, 10 Jul 1998 14:47:39 -0700 (PDT) (envelope-from tom@uniserve.com) Received: from shell.uniserve.ca [204.244.186.218] by pop.uniserve.com with smtp (Exim 1.82 #4) id 0yul0K-000225-00; Fri, 10 Jul 1998 14:46:56 -0700 Date: Fri, 10 Jul 1998 14:46:53 -0700 (PDT) From: Tom X-Sender: tom@shell.uniserve.ca To: Stefan Eggers cc: freebsd-stable@FreeBSD.ORG Subject: Re: Finger and getpwent In-Reply-To: <199807102027.WAA27602@semyam.dinoco.de> 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, 10 Jul 1998, Stefan Eggers wrote: > > > FBSD 2.2.2 to FBSD 2.2.6-stable something moved. In my /etc/passwd file > > > there are lots of coments "#" and getpwent() return 0 after read this > > > line. I have some scripts in perl that stops when getpwent() return 0. > > > In FBSD 2.2.2 when getpwent() returned 0 meant end of file /etc/passwd. > > > > I hope you realize that /etc/passwd isn't used for anything. All users > > should be listed in /etc/master.passwd. You should used vipw to edit > > /etc/master.passwd > > And how do you expect non-root/SUID-root programs to get at any > information on users if not via /etc/passwd and (the actually used > database version thereof) /etc/pwd.db? getpwent() uses it if one > isn't root. For accesses by root it uses the shadow password file's > database version. See the source to -stable. Non-suid programs use /etc/pwd.db, not /etc/passwd. You've answered your own question. /etc/passwd is USELESS. In fact, I don't even have a /etc/passwd on my systems. /etc/pwd.db is not a database version of /etc/passwd. Both /etc/pwd.db and /etc/spwd.db are generated from the raw infomration in /etc/master.passwd. pwd_mkdb likes to waste your time and spit out a text version too. > Using vipw is a good idea, though as that will keep both in sync. Not > doing so might eventually lead to interesting problems like root > seeing something differing from what a user can see. Besides the > difference with the password, of course. ;-) /etc/passwd is generated by pwd_mkdb when called with the "-p" switch. If you don't use "-p" you will not get a /etc/passwd. > Stefan. > -- > Stefan Eggers Lu4 yao2 zhi1 ma3 li4, > Max-Slevogt-Str. 1 ri4 jiu3 jian4 ren2 xin1. > 51109 Koeln > Federal Republic of Germany Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 14:49:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA22981 for freebsd-stable-outgoing; Fri, 10 Jul 1998 14:49:35 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.uniserve.com (pop.uniserve.com [204.244.156.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id OAA22969 for ; Fri, 10 Jul 1998 14:49:32 -0700 (PDT) (envelope-from tom@uniserve.com) Received: from shell.uniserve.ca [204.244.186.218] by pop.uniserve.com with smtp (Exim 1.82 #4) id 0yul2Y-0002LQ-00; Fri, 10 Jul 1998 14:49:14 -0700 Date: Fri, 10 Jul 1998 14:49:12 -0700 (PDT) From: Tom X-Sender: tom@shell.uniserve.ca To: Paulo Fragoso cc: freebsd-stable@FreeBSD.ORG Subject: Re: Finger and getpwent 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, 10 Jul 1998, Paulo Fragoso wrote: > /etc/master.passwd not in end of file. If getpwent() returned 0 in > comments "#" and -1 in EOF it solved. Are there any solution in this case? The problem is probably pwd_mkdb. It should simply strip the commented usernames as it is building the file. I don't see any login in pwd_mkdb to do this, but I didn't spend much time looking. I hope you realize that commented usersnames have not been historically allowed in UNIX. > Many thanks, > Paulo. Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 15:17:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA29019 for freebsd-stable-outgoing; Fri, 10 Jul 1998 15:17:24 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from geeklab.globalserve.net (geeklab.globalserve.net [209.90.144.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA29000 for ; Fri, 10 Jul 1998 15:17:19 -0700 (PDT) (envelope-from philipp@globalserve.net) Received: from localhost (philipp@localhost) by geeklab.globalserve.net (8.8.8/8.8.7) with SMTP id SAA14743; Fri, 10 Jul 1998 18:38:02 -0400 (EDT) X-Authentication-Warning: geeklab.globalserve.net: philipp owned process doing -bs Date: Fri, 10 Jul 1998 18:38:01 -0400 (EDT) From: Peter Philipp To: Tom cc: Paulo Fragoso , freebsd-stable@FreeBSD.ORG Subject: Re: Finger and getpwent 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 Tom I think you should look deeper into the getpw* functions when you say /etc/passwd isn't used for anything and /etc/master.passwd is. I'm dissapointed you did not mention /etc/spwd.db and /etc/pwd.db which are the databases accessed by getpw*(). As far as /etc/*passwd is concerned those are great for building the databases and administrative duties but other than that don't really serve a point. Yes /etc/master.passwd is used for pwd_mkdb to build the databases so it serves a purpose other than that I can't think of any. As for Paolo, commenting out users is a nono, if you want to lock an account make sure the first character of the pw_passwd field is a *. This is usually the easiest method. Peter Philipp (PP2441) Globalserve System Administration "How I wish you were here..." - Pink Floyd On Fri, 10 Jul 1998, Tom wrote: > > On Fri, 10 Jul 1998, Paulo Fragoso wrote: > > > Hi, > > > > I don't know if seding message to correct list. But after upgrade from > > FBSD 2.2.2 to FBSD 2.2.6-stable something moved. In my /etc/passwd file > > there are lots of coments "#" and getpwent() return 0 after read this > > line. I have some scripts in perl that stops when getpwent() return 0. > > In FBSD 2.2.2 when getpwent() returned 0 meant end of file /etc/passwd. > > I hope you realize that /etc/passwd isn't used for anything. All users > should be listed in /etc/master.passwd. You should used vipw to edit > /etc/master.passwd > > 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 Fri Jul 10 15:23:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA29881 for freebsd-stable-outgoing; Fri, 10 Jul 1998 15:23:40 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from geeklab.globalserve.net (geeklab.globalserve.net [209.90.144.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA29860 for ; Fri, 10 Jul 1998 15:23:21 -0700 (PDT) (envelope-from philipp@globalserve.net) Received: from localhost (philipp@localhost) by geeklab.globalserve.net (8.8.8/8.8.7) with SMTP id SAA24500; Fri, 10 Jul 1998 18:44:38 -0400 (EDT) X-Authentication-Warning: geeklab.globalserve.net: philipp owned process doing -bs Date: Fri, 10 Jul 1998 18:44:38 -0400 (EDT) From: Peter Philipp To: Nino Tungul cc: freebsd-stable@FreeBSD.ORG Subject: Re: your mail In-Reply-To: <199807102021.NAA07672@server.everexgov.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 if your filesystem is fairly small and you have a certain program generating a core file, you might see these messages and the core file gets truncated (useless). Just a thought..hope it helps. Peter Philipp (PP2441) Globalserve System Administration "How I wish you were here..." - Pink Floyd On Fri, 10 Jul 1998, Nino Tungul wrote: > Help! Help! Help! > > I'm new with freeBSD and I always get a message > "kernel: uid 0 /: file system full" on our server, but when run df it only > shows 41% (mounted on / ) on capacity. How can I clear this mess.? > Can somebody help me? > > and also, how can i clear mail(messages) from the mail queue? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 Jul 10 15:25:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA00316 for freebsd-stable-outgoing; Fri, 10 Jul 1998 15:25:52 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.uniserve.com (pop.uniserve.com [204.244.156.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id PAA00290 for ; Fri, 10 Jul 1998 15:25:37 -0700 (PDT) (envelope-from tom@uniserve.com) Received: from shell.uniserve.ca [204.244.186.218] by pop.uniserve.com with smtp (Exim 1.82 #4) id 0yulaY-0006WJ-00; Fri, 10 Jul 1998 15:24:22 -0700 Date: Fri, 10 Jul 1998 15:24:19 -0700 (PDT) From: Tom X-Sender: tom@shell.uniserve.ca To: Peter Philipp cc: Paulo Fragoso , freebsd-stable@FreeBSD.ORG Subject: Re: Finger and getpwent 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, 10 Jul 1998, Peter Philipp wrote: > Tom I think you should look deeper into the getpw* functions when you say > /etc/passwd isn't used for anything and /etc/master.passwd is. I'm It isn't. What are you saying? > dissapointed you did not mention /etc/spwd.db and /etc/pwd.db which are > the databases accessed by getpw*(). As far as /etc/*passwd is concerned I did mention /etc/pwd.db. Its partner /etc/spwd.db is assumed. > those are great for building the databases and administrative duties but > other than that don't really serve a point. > > Yes /etc/master.passwd is used for pwd_mkdb to build the databases so it > serves a purpose other than that I can't think of any. More. It is also used by chpass, pw, etc. > As for Paolo, commenting out users is a nono, if you want to lock an > account make sure the first character of the pw_passwd field is a *. This > is usually the easiest method. I think it is considered a new feature. It does not seem to be complete in -stable. Anything that increases the password field by one character will be affective. > Peter Philipp (PP2441) > Globalserve System Administration > "How I wish you were here..." - Pink Floyd Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 15:37:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA02926 for freebsd-stable-outgoing; Fri, 10 Jul 1998 15:37:08 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from geeklab.globalserve.net (geeklab.globalserve.net [209.90.144.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA02915 for ; Fri, 10 Jul 1998 15:36:59 -0700 (PDT) (envelope-from philipp@globalserve.net) Received: from localhost (philipp@localhost) by geeklab.globalserve.net (8.8.8/8.8.7) with SMTP id SAA01529; Fri, 10 Jul 1998 18:57:59 -0400 (EDT) X-Authentication-Warning: geeklab.globalserve.net: philipp owned process doing -bs Date: Fri, 10 Jul 1998 18:57:59 -0400 (EDT) From: Peter Philipp To: Tom cc: Paulo Fragoso , freebsd-stable@FreeBSD.ORG Subject: Re: Finger and getpwent 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, 10 Jul 1998, Tom wrote: > > Yes /etc/master.passwd is used for pwd_mkdb to build the databases so it > > serves a purpose other than that I can't think of any. > > More. It is also used by chpass, pw, etc. These binaries exec() pwd_mkdb, so they don't count. Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 16:06:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA08479 for freebsd-stable-outgoing; Fri, 10 Jul 1998 16:06:24 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.uniserve.com (pop.uniserve.com [204.244.156.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id QAA08463 for ; Fri, 10 Jul 1998 16:06:19 -0700 (PDT) (envelope-from tom@uniserve.com) Received: from shell.uniserve.ca [204.244.186.218] by pop.uniserve.com with smtp (Exim 1.82 #4) id 0yumF0-0003nA-00; Fri, 10 Jul 1998 16:06:11 -0700 Date: Fri, 10 Jul 1998 16:06:07 -0700 (PDT) From: Tom X-Sender: tom@shell.uniserve.ca To: Peter Philipp cc: Paulo Fragoso , freebsd-stable@FreeBSD.ORG Subject: Re: Finger and getpwent 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, 10 Jul 1998, Peter Philipp wrote: > On Fri, 10 Jul 1998, Tom wrote: > > > > Yes /etc/master.passwd is used for pwd_mkdb to build the databases so it > > > serves a purpose other than that I can't think of any. > > > > More. It is also used by chpass, pw, etc. > > These binaries exec() pwd_mkdb, so they don't count. They exec() pwd_mkdb to build the /etc/pwd.db /etc/spwd.db AFTER making the appropiate changes to /etc/master.passwd which means that they rely on /etc/master.passwd, and will not work without it. > Peter Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 16:09:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA08863 for freebsd-stable-outgoing; Fri, 10 Jul 1998 16:09:20 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from shell.futuresouth.com (fullermd@shell.futuresouth.com [198.78.58.18]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA08849 for ; Fri, 10 Jul 1998 16:09:16 -0700 (PDT) (envelope-from fullermd@shell.futuresouth.com) Received: (from fullermd@localhost) by shell.futuresouth.com (8.8.8/8.8.8) id SAA21474; Fri, 10 Jul 1998 18:09:08 -0500 (CDT) Message-ID: <19980710180908.47807@futuresouth.com> Date: Fri, 10 Jul 1998 18:09:08 -0500 From: "Matthew D. Fuller" To: Mikhail Teterin Cc: stable@FreeBSD.ORG Subject: Re: substantial performance drop with rc5des References: <199807100710.DAA13519@xxx.video-collage.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: <199807100710.DAA13519@xxx.video-collage.com>; from Mikhail Teterin on Fri, Jul 10, 1998 at 03:10:06AM -0400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jul 10, 1998 at 03:10:06AM -0400, Mikhail Teterin woke me up to tell me: > Hello! > > I'm experiencing serious slowdown when rc5des runs on my PPro200. > I understand that this thing would eat up all the CPU it can, but > I did not expect it to noticeable affect the time it takes elm to > spawn `more' with a mail message. After I used idprio, the time > went from 3-4 seconds to about one -- still long. man also takes > noticably longer to come up. "!uname -a" from `vi' just took 2 > seconds! > > > PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND > 24850 mi 105 33 596K 240K RUN 178:08 94.99% 94.99% rc5des > 3578 mi 2 0 23804K 11936K select 177:32 0.15% 0.15% Xaccel > [......] idprio 31 -24850 You don't have it idprio'd all the way down. When you do, it will show as niceness 52. *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* | FreeBSD; the way computers were meant to be | * "The only reason I'm burning my candle at both ends, is * | that I haven't figured out how to light the middle yet."| * fullermd@futuresouth.com :-} MAtthew Fuller * | http://keystone.westminster.edu/~fullermd | *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 16:55:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17148 for freebsd-stable-outgoing; Fri, 10 Jul 1998 16:55:51 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from fourier.physics.purdue.edu (fourier.physics.purdue.edu [128.210.146.43]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA17073 for ; Fri, 10 Jul 1998 16:55:15 -0700 (PDT) (envelope-from jonsmith@physics.purdue.edu) Received: from localhost (jonsmith@localhost) by fourier.physics.purdue.edu (8.8.7/8.8.8) with SMTP id SAA14313; Fri, 10 Jul 1998 18:54:58 -0500 (EST) Date: Fri, 10 Jul 1998 18:54:58 -0500 (EST) From: Jonathan Smith To: Nino Tungul cc: freebsd-stable@FreeBSD.ORG Subject: Full file system In-Reply-To: <199807102021.NAA07672@server.everexgov.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, 10 Jul 1998, Nino Tungul wrote: > Help! Help! Help! > > I'm new with freeBSD and I always get a message > "kernel: uid 0 /: file system full" on our server, but when run df it only > shows 41% (mounted on / ) on capacity. How can I clear this mess.? > Can somebody help me? > / must also contain /temp. Some programs create temporary files that are 'unlinked' and 'open' so the file is accessible from the prog where it is open, but appears to not exist. I'd reccomend putting /tmp as it's own partition. > and also, how can i clear mail(messages) from the mail queue? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 Jul 10 16:56:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17173 for freebsd-stable-outgoing; Fri, 10 Jul 1998 16:56:07 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from www.video-collage.com (root@www.video-collage.com [206.15.171.132]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA17102 for ; Fri, 10 Jul 1998 16:55:25 -0700 (PDT) (envelope-from mi@xxx.video-collage.com) Received: from xxx.video-collage.com (mi@xxx.video-collage.com [199.232.254.68]) by www.video-collage.com (8.8.5/8.8.5) with ESMTP id TAA28397; Fri, 10 Jul 1998 19:56:37 -0400 (EDT) Received: (from mi@localhost) by xxx.video-collage.com (8.8.8/8.8.7) id TAA21782; Fri, 10 Jul 1998 19:55:13 -0400 (EDT) (envelope-from mi) From: Mikhail Teterin Message-Id: <199807102355.TAA21782@xxx.video-collage.com> Subject: Re: substantial performance drop with rc5des In-Reply-To: <19980710180908.47807@futuresouth.com> from "Matthew D. Fuller" at "Jul 10, 98 06:09:08 pm" To: fullermd@futuresouth.com (Matthew D. Fuller) Date: Fri, 10 Jul 1998 19:55:13 -0400 (EDT) Cc: stable@FreeBSD.ORG X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND => 24850 mi 105 33 596K 240K RUN 178:08 94.99% 94.99% rc5des => 3578 mi 2 0 23804K 11936K select 177:32 0.15% 0.15% Xaccel => [......] =idprio 31 -24850 = =You don't have it idprio'd all the way down. When you do, it will show =as niceness 52. No other process is idprio-ed at all, so it should not even matter which idle level is selected, right? -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 17:16:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22307 for freebsd-stable-outgoing; Fri, 10 Jul 1998 17:16:58 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from homer.supersex.com (homer.supersex.com [209.5.1.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22148 for ; Fri, 10 Jul 1998 17:15:36 -0700 (PDT) (envelope-from leo@homer.supersex.com) Received: (from leo@localhost) by homer.supersex.com (8.8.8/8.8.5) id UAA01905; Fri, 10 Jul 1998 20:16:13 -0400 (EDT) Message-ID: <19980710201613.18749@supersex.com> Date: Fri, 10 Jul 1998 20:16:13 -0400 From: Leo Papandreou To: stable@FreeBSD.ORG Subject: Re: your mail References: <199807102021.NAA07672@server.everexgov.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: ; from Peter Philipp on Fri, Jul 10, 1998 at 06:44:38PM -0400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jul 10, 1998 at 06:44:38PM -0400, Peter Philipp wrote: > if your filesystem is fairly small and you have a certain program > generating a core file, you might see these messages and the core file > gets truncated (useless). Just a thought..hope it helps. > Any process writing to, say, /tmp can also do this. The painfully correct fix is to fatten /. You may consider symlinking the offen- sive directory to another partition for the interim. > > and also, how can i clear mail(messages) from the mail queue? Well, there's your culprit :-) man sendmail; look at the queue time options. > Peter Philipp (PP2441) > Globalserve System Administration > "How I wish you were here..." - Pink Floyd > > On Fri, 10 Jul 1998, Nino Tungul wrote: > > > Help! Help! Help! > > > > I'm new with freeBSD and I always get a message > > "kernel: uid 0 /: file system full" on our server, but when run df it only > > shows 41% (mounted on / ) on capacity. How can I clear this mess.? > > Can somebody help me? > > > > and also, how can i clear mail(messages) from the mail queue? > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 Jul 10 17:25:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24472 for freebsd-stable-outgoing; Fri, 10 Jul 1998 17:25:04 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from foobar.franken.de (ojnAMRVndnlP2eIatH4ssZ7FrXsBsbmc@foobar.franken.de [194.94.249.81]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24356 for ; Fri, 10 Jul 1998 17:24:26 -0700 (PDT) (envelope-from logix@foobar.franken.de) Received: (from logix@localhost) by foobar.franken.de (8.8.8/8.8.5) id CAA23758; Sat, 11 Jul 1998 02:23:37 +0200 (CEST) Message-ID: <19980711022337.56229@foobar.franken.de> Date: Sat, 11 Jul 1998 02:23:37 +0200 From: Harold Gutch To: Tom , Paulo Fragoso Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Finger and getpwent References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: ; from Tom on Fri, Jul 10, 1998 at 02:49:12PM -0700 X-Organisation: BatmanSystemDistribution X-Mission: To free the world from the Penguin Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jul 10, 1998 at 02:49:12PM -0700, Tom wrote: > I hope you realize that commented usersnames have not been historically > allowed in UNIX. > The FreeBSD manpage to passwd(5) explicitely mentions this case: Lines whose first non-whitespace character is a pound-sign (#) are com- ments, and are ignored. NetBSD 1.3, RedHat Linux 5.1, IRIX 5.2, SunOS 5.5 do not mention "commented usernames" etc. in their manpages. I am not sure how/when the sentence mentioned above made its way into the manpage, but as it seemed to have worked before (see Paolo's original Mail), I guess the manpage is correct and therefore getpwent() is broken somehow... -- bye, logix Sleep is an abstinence syndrome wich occurs due to lack of caffein. Wed Mar 4 04:53:33 CET 1998 #unix, ircnet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 20:01:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA15774 for freebsd-stable-outgoing; Fri, 10 Jul 1998 20:01:08 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from pop.uniserve.com (pop.uniserve.com [204.244.156.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id UAA15769 for ; Fri, 10 Jul 1998 20:01:07 -0700 (PDT) (envelope-from tom@uniserve.com) Received: from shell.uniserve.ca [204.244.186.218] by pop.uniserve.com with smtp (Exim 1.82 #4) id 0yupty-0001qr-00; Fri, 10 Jul 1998 20:00:43 -0700 Date: Fri, 10 Jul 1998 20:00:39 -0700 (PDT) From: Tom X-Sender: tom@shell.uniserve.ca To: Harold Gutch cc: Paulo Fragoso , freebsd-stable@FreeBSD.ORG Subject: Re: Finger and getpwent In-Reply-To: <19980711022337.56229@foobar.franken.de> 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, 11 Jul 1998, Harold Gutch wrote: > Paolo's original Mail), I guess the manpage is correct and > therefore getpwent() is broken somehow... No, getpwent is not broken. pwd_mkdb should not even put commeted out usernames into the database for getpwent to see. > -- > bye, logix > > Sleep is an abstinence syndrome wich occurs due to lack of caffein. > Wed Mar 4 04:53:33 CET 1998 #unix, ircnet Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 20:17:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA17095 for freebsd-stable-outgoing; Fri, 10 Jul 1998 20:17:24 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from gooey.bunnynet.org (root@ftw-tx1-19.ix.netcom.com [205.184.173.51]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA17083 for ; Fri, 10 Jul 1998 20:17:21 -0700 (PDT) (envelope-from s012mrw@discover.wright.edu) Received: from [10.3.2.6] (bunny@moof.bunnynet.org [10.3.2.6]) by gooey.bunnynet.org (8.8.8/8.8.7) with SMTP id WAA01472 for ; Fri, 10 Jul 1998 22:18:05 -0500 (CDT) (envelope-from s012mrw@discover.wright.edu) Message-Id: <199807110318.WAA01472@gooey.bunnynet.org> Subject: Error in kernel build Date: Fri, 10 Jul 1998 22:17:30 -0500 x-mailer: Claris Emailer 2.0v3, January 22, 1998 From: Matt White To: Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello... As of this evening I cannot make the -STABLE kernel. I get the follow error: cc -c -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -nostdinc -I- -I. -I../.. -I../../../include -DSBC_IRQ=10 -DNETATALK -DFAILSAFE -DCOMPAT_43 -DMSDOSFS -DNFS -DFFS -DINET -DKERNEL ../../netatalk/ddp_output.c ../../netatalk/ddp_output.c: In function `ddp_route': ../../netatalk/ddp_output.c:184: invalid type argument of `->' *** Error code 1 Stop. I cvsupped last night (July 9th), and once this happened I tried it a second time today (July 10th) and the same error message happens. -- Matt s012mrw@discover.wright.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 10 20:36:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA19580 for freebsd-stable-outgoing; Fri, 10 Jul 1998 20:36:03 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from geeklab.globalserve.net (geeklab.globalserve.net [209.90.144.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA19575 for ; Fri, 10 Jul 1998 20:36:00 -0700 (PDT) (envelope-from philipp@globalserve.net) Received: from localhost (philipp@localhost) by geeklab.globalserve.net (8.8.8/8.8.7) with SMTP id XAA09268; Fri, 10 Jul 1998 23:57:18 -0400 (EDT) X-Authentication-Warning: geeklab.globalserve.net: philipp owned process doing -bs Date: Fri, 10 Jul 1998 23:57:18 -0400 (EDT) From: Peter Philipp To: Tom cc: freebsd-stable@FreeBSD.ORG Subject: Re: Finger and getpwent 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 if you want my opion hash comments in /etc/*passwd is just ugly and wrong. In the FreeBSD manpage I'll requote what someone else quoted.. Lines whose first non-whitespace character is a pound-sign (#) are comments, and are ignored. Blank lines which consist only of spaces, tabs or newlines are also ignored. ...yet if you look below and closer... HISTORY A passwd file format appeared in Version 6 AT&T UNIX. The YP/NIS functionality is modeled after SunOS and first appeared in FreeBSD 1.1 The override capability is new in FreeBSD 2.0. The override capability was updated to properly support netgroups in FreeBSD 2.0.5. Support for comments first appeared in FreeBSD 3.0. ^^^^^^^^^^^^ That could explain it... the passwd(5) manpage is a little bit ahead of itself in -stable, and thus comments are most likely not supported as -stable is not quite at 3.0. Possible? I haven't checked the code but this would make sense. Peter Philipp (PP2441) Globalserve System Administration "How I wish you were here..." - Pink Floyd On Fri, 10 Jul 1998, Tom wrote: > > On Sat, 11 Jul 1998, Harold Gutch wrote: > > > Paolo's original Mail), I guess the manpage is correct and > > therefore getpwent() is broken somehow... > > No, getpwent is not broken. pwd_mkdb should not even put commeted out > usernames into the database for getpwent to see. > > > -- > > bye, logix > > > > Sleep is an abstinence syndrome wich occurs due to lack of caffein. > > Wed Mar 4 04:53:33 CET 1998 #unix, ircnet > > 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 Fri Jul 10 23:52:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA04055 for freebsd-stable-outgoing; Fri, 10 Jul 1998 23:52:14 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA04050; Fri, 10 Jul 1998 23:52:05 -0700 (PDT) (envelope-from se@dialup124.zpr.uni-koeln.de) Received: from dialup124.zpr.Uni-Koeln.DE (dialup124.zpr.Uni-Koeln.DE [134.95.219.124]) by Octopussy.MI.Uni-Koeln.DE (8.8.8/8.8.8) with ESMTP id IAA09422; Sat, 11 Jul 1998 08:51:53 +0200 (MET DST) Received: (from se@localhost) by dialup124.zpr.Uni-Koeln.DE (8.8.8/8.6.9) id AAA01872; Sat, 11 Jul 1998 00:25:59 +0200 (CEST) X-Face: " Date: Sat, 11 Jul 1998 00:25:57 +0200 From: Stefan Esser To: Robert_Wagner@dgii.com, freebsd-stable@FreeBSD.ORG Cc: Stefan Esser Subject: Re: driver needs to read file when loading References: <8625663B.00742455.00@msp-ln01.dgii.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: <8625663B.00742455.00@msp-ln01.dgii.com>; from Robert_Wagner@dgii.com on Wed, Jul 08, 1998 at 04:11:06PM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 1998-07-08 16:11 -0500, Robert_Wagner@dgii.com wrote: > when loading a pci driver I need to read in a firmware file for the > filesystem and put it in a place in memory. > > Any suggestions on how I can open a file and read it into a buffer in > the attach portion of the driver. > This driver is an PCI LKM. 1) It *is* possible to read a file from within the kernel, this has been discussed in the mail lists before. The driver could try reading the firmware from within the probe or attach code and could print meaningful messages if it doesn't succeed. 2) There could be a user land tool that loads the firmware after the LKM has been loaded, for example by means of an ioctl(). The real attach (or even the probe) may have to be delayed until after the ioctl() has been called. 3) A final linkage step of the LKM could combine the driver and firmware before the LKM is actually loaded into the kernel. That's all I found by thinking real hard about your problem for all of five minutes. So I assume there must be other and better ways ;-) Regards, STefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 11 08:29:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11046 for freebsd-stable-outgoing; Sat, 11 Jul 1998 08:29:51 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from orion.aye.net (orion.aye.net [206.185.8.9]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id IAA11041 for ; Sat, 11 Jul 1998 08:29:49 -0700 (PDT) (envelope-from rabtter@orion.aye.net) Received: (qmail 17895 invoked by uid 3759); 11 Jul 1998 15:29:29 -0000 Date: Sat, 11 Jul 1998 11:29:29 -0400 (EDT) From: "B. Richardson" To: Nino Tungul cc: freebsd-stable@FreeBSD.ORG Subject: Re: your mail In-Reply-To: <199807102021.NAA07672@server.everexgov.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 Try a "df -i" and have a look at %iused. If that looks ok take a note of the device your root filesystem is on, reboot the machine, at the "Boot: " prompt type "-s". When it comes up in single user mode do a "mount -u -o rw /" and a "fsck your_root_device" and then see if anything appears in lost and found. -- B. Richardson On Fri, 10 Jul 1998, Nino Tungul wrote: > Help! Help! Help! > > I'm new with freeBSD and I always get a message > "kernel: uid 0 /: file system full" on our server, but when run df it only > shows 41% (mounted on / ) on capacity. How can I clear this mess.? > Can somebody help me? > > and also, how can i clear mail(messages) from the mail queue? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 Jul 11 11:30:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA28777 for freebsd-stable-outgoing; Sat, 11 Jul 1998 11:30:14 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA28762 for ; Sat, 11 Jul 1998 11:30:09 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id LAA22673 for ; Sat, 11 Jul 1998 11:30:00 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: stable@FreeBSD.ORG Subject: FAT32 support in -stable? Date: Sat, 11 Jul 1998 11:30:00 -0700 Message-ID: <22669.900181800@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG What happened to the folks who were working on this? I'm still waiting for a definitive set of patches and, at this rate, the feature will NOT make it into 2.2.7 unless somebody makes some serious effort to get things ready to go very very soon! Thanks! - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 11 19:06:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA00442 for freebsd-stable-outgoing; Sat, 11 Jul 1998 19:06:35 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA00425 for ; Sat, 11 Jul 1998 19:06:30 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id VAA17659; Sat, 11 Jul 1998 21:55:49 +0200 (MET DST) Received: from localhost (localhost [127.0.0.1]) by semyam.dinoco.de (8.8.8/8.8.8) with ESMTP id VAA07450; Sat, 11 Jul 1998 21:47:59 +0200 (CEST) (envelope-from seggers@semyam.dinoco.de) Message-Id: <199807111947.VAA07450@semyam.dinoco.de> Subject: Re: your mail In-reply-to: Your message of "Fri, 10 Jul 1998 18:44:38 EDT." To: freebsd-stable@FreeBSD.ORG, Nino Tungul Cc: seggers@semyam.dinoco.de Date: Sat, 11 Jul 1998 21:47:58 +0200 From: Stefan Eggers Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > if your filesystem is fairly small and you have a certain program > generating a core file, you might see these messages and the core file > gets truncated (useless). Just a thought..hope it helps. Given this would be the case the truncated core file should still be there and the filesystem still full. > > "kernel: uid 0 /: file system full" on our server, but when run df it only > > shows 41% (mounted on / ) on capacity. How can I clear this mess.? I suspect some program trying to use /tmp and failing to get enough space. As a result of terminating and cleaning up it removes some rather large temporary files it created. Those temporary files need not be visible execpt shortly after creation as one can open a file and immediately after that delete it. As long as it is open it will consume space in the filesystem. > > Can somebody help me? My solution to having an overfull /tmp fill / as well (and getting more space in /tmp at the same time) was to use MFS to separate /tmp from /. It was the easiest way as I didn't have to do any filesystem moving and besides that it should be faster than a real disk as long as there is enough memory available. You have to make a custom kernel, though to make use of MFS. If you don't like that you can use some space on /usr (if that is a spearate filesystem as it should be) for /tmp. Make a directory there, remove /tmp and then make a soft link from /tmp to the directory you intend to use for your temporary files. As you seem to be new to Unix type machines the least favorable solution to you is to backup the filesystems and repartition every- thing. You better first get some confidence in the way one makes a backup, make sure that it actually works and have a plan on how to use it in case you need it. > > and also, how can i clear mail(messages) from the mail queue? What does your /etc/rc.d say? Did you disable sendmail there or change its flags? I think otherwise it should stay in memory as demon and periodically (30 minutes I think) empty the queue. In case sendmail uses /tmp it might be a huge mail which fills /. Then this might cause the queue emptying to stop. I'd first try to find out who fills / and solve that problem. Stefan. -- Stefan Eggers Lu4 yao2 zhi1 ma3 li4, Max-Slevogt-Str. 1 ri4 jiu3 jian4 ren2 xin1. 51109 Koeln Federal Republic of Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 11 20:51:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA24701 for freebsd-stable-outgoing; Sat, 11 Jul 1998 20:51:51 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from silvia.carrot.kansai.oki.co.jp (okigate.oki.co.jp [202.226.91.194]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA24696 for ; Sat, 11 Jul 1998 20:51:49 -0700 (PDT) (envelope-from hyama@silvia.carrot.kansai.oki.co.jp) Received: from localhost (localhost [127.0.0.1]) by silvia.carrot.kansai.oki.co.jp (8.8.8/3.6W) with ESMTP id MAA10100; Sun, 12 Jul 1998 12:51:32 +0900 (JST) Message-Id: <199807120351.MAA10100@silvia.carrot.kansai.oki.co.jp> To: jkh@time.cdrom.com Cc: stable@FreeBSD.ORG Subject: Re: FAT32 support in -stable? From: Hideki Yamamoto In-Reply-To: Your message of "Sat, 11 Jul 1998 11:30:00 -0700" References: <22669.900181800@time.cdrom.com> X-Mailer: Mew version 1.70 on Emacs 19.28.1 / Mule 2.3 Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Date: Sun, 12 Jul 1998 12:51:32 +0900 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, >>>>> On Sat, 11 Jul 1998 11:30:00 -0700, "Jordan K. Hubbard" said: jkh> What happened to the folks who were working on this? I'm still jkh> waiting for a definitive set of patches and, at this rate, the feature jkh> will NOT make it into 2.2.7 unless somebody makes some serious effort jkh> to get things ready to go very very soon! $B#I(B have just sent msdosfs modules for both -stable and -current to you. If you received it correctly, please let me know. I have changed macro identifiers from FBSDCUR to __FreeBSD_version in my porting code. After changing, I checked code for -stable on my FreeBSD-2.2.5 machine. In order to check code for -current by using diff command between -current branch and my code, I made a tiny tool named "back-cur" that removes lines added for -stable support. ( back-cur removes lines between "#if{n}def __FreeBSD_version" and "#endif" ) The difference between back-cur'ed code and -current branch is code for PC98. I do not know what to do to PC98 code. Does -current branch basically support PC98? I think this code can be compiled for *both* 2.2-stable and 3.0-current. I hope you will merge this work effortlessly. Sincerely, Hideki Yamamoto (hyama@acm.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 11 21:09:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA27929 for freebsd-stable-outgoing; Sat, 11 Jul 1998 21:09:36 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA27923 for ; Sat, 11 Jul 1998 21:09:34 -0700 (PDT) (envelope-from jfieber@indiana.edu) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.8.8/8.8.7) with SMTP id XAA00991 for ; Sat, 11 Jul 1998 23:09:31 -0500 (EST) Date: Sat, 11 Jul 1998 23:09:30 -0500 (EST) From: John Fieber To: stable@FreeBSD.ORG Subject: Whacked systat/vmstat reports 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 Here is a bit of cut-n-paste from a "systat -vmstat" display on my 2.2.6-stable machine with 64MB ram and 128MB swap: Mem:KB REAL VIRTUAL VN PAGER SWAP PAGER Tot Share Tot Share Free in out in out Act 17980 2376 3825328 3608 7996 count 3 1 All 64072 5612 815324 17140 pages 15 3 What is wrong with this picture? Does the 3825328 seem ever so slightly whacked? This has been a curiosity for quite some time, in fact I think it might even pre-date my upgrade from 2.2.5 to 2.2.6. Oddly enough, top(1) reports a reasonable figure for the same parameter. The output of vmstat(8) is whacked in the same way as systat(1) though. dmesg says: real memory = 67108864 (65536K bytes) avail memory = 63660032 (62168K bytes) Clues? Where should I start looking? -john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message