From owner-freebsd-stable Sun Jul 14 3:19:56 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B4B537B400 for ; Sun, 14 Jul 2002 03:19:46 -0700 (PDT) Received: from gatekeeper.radio-do.de (gatekeeper.Radio-do.de [193.101.164.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43D2443E42 for ; Sun, 14 Jul 2002 03:19:45 -0700 (PDT) (envelope-from fn@Radio-do.de) Received: from cube.radio-do.de (cube.Radio-do.de [193.101.164.7]) by gatekeeper.radio-do.de (Postfix) with ESMTP id 0EFBB8E for ; Sun, 14 Jul 2002 12:19:43 +0200 (CEST) Received: from cube.radio-do.de (localhost [127.0.0.1]) by cube.radio-do.de (8.12.3/8.12.3) with ESMTP id g6EAJgem001777 for ; Sun, 14 Jul 2002 12:19:42 +0200 (CEST) (envelope-from fn@Radio-do.de) Received: (from fn@localhost) by cube.radio-do.de (8.12.3/8.12.3/Submit) id g6EAJgPM001776; Sun, 14 Jul 2002 12:19:42 +0200 (CEST) X-Authentication-Warning: cube.radio-do.de: fn set sender to fn@Radio-do.de using -f To: freebsd-stable@FreeBSD.ORG Subject: usbd dumps core after changing /etc/usbd.conf on 4.6-RELEASE-p1 From: Frank Nobis Date: 14 Jul 2002 12:19:42 +0200 Message-ID: Lines: 54 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-=-= Hi, did anyone see this too?. I changed my /etc/usbd.conf to have additional entries for a Microsoft Intelli Mouse with 3 and 5 Buttons and a wheel. Now the usbd dumps core in read_configuration on line 464 of usbd.c revision 1.10.2.4. This seems to be, because of the whitespace and comment checking part is counting len to zero, while searching for real config lines and skiping the comments etc. But somehow len now become -1 and obviuosly dumps out in strncpy(linez, line, len) A patch may be this: Index: usbd.c =================================================================== RCS file: /net/ga/home2/ncvs/src/usr.sbin/usbd/usbd.c,v retrieving revision 1.10.2.4 diff -c -r1.10.2.4 usbd.c *** usbd.c 24 Feb 2002 14:23:13 -0000 1.10.2.4 --- usbd.c 13 Jul 2002 16:25:40 -0000 *************** *** 449,455 **** len--; } ! if (len == 0) /* empty line */ continue; if (line[0] == '#') /* comment line */ continue; --- 449,455 ---- len--; } ! if (len <= 0) /* empty line */ continue; if (line[0] == '#') /* comment line */ continue; Here is my /etc/usdb.conf which causes that trouble. --=-=-= Content-Disposition: attachment; filename=usbd.conf Content-Description: usbd.conf for Intelli Mouse # Configuration file the USB daemon. # # See usbd.conf(5) for the description of the format of the file. # # $FreeBSD: src/etc/usbd.conf,v 1.5.2.2 2000/10/16 16:32:12 n_hibma Exp $ # Firmware download into the ActiveWire board. After the firmware download is # done the device detaches and reappears as something new and shiny automatically. # device "ActiveWire board, firmware download" vendor 0x0854 product 0x0100 release 0x0000 attach "/usr/local/bin/ezdownload -f /usr/local/share/usb/firmware/0854.0100.0_01.hex ${DEVNAME}" # Firmware download for Entrega Serial DB25 adapter. # device "Entrega Serial with UART" product 0x8001 vendor 0x1645 release 0x0101 attach "if ! kldstat -n usio > /dev/null 2>&1 ; then kldload usio; fi" attach "/usr/sbin/ezdownload -v -f /usr/share/usb/firmware/1645.8001.0101 /dev/${DEVNAME}" # The entry below starts and stops dhclient when an ethernet device is inserted # Caveat: It does not support multiple interfaces (but neither does pccardd, # it shouldn't be too big a deal :-) # device "USB ethernet" devname "[ack]ue[0-9]+" attach "dhclient ${DEVNAME}" detach "killall dhclient" # The entry below starts moused when a mouse is plugged in. Moused # stops automatically (actually it bombs :) when the device disappears. # #device "Microsoft 5-Button Mouse with IntelliEye(TM)" # devname "ums[0-9]+" # product 0x0039 # vendor 0x045e # attach "/usr/sbin/moused -p /dev/${DEVNAME} -I /var/run/moused.${DEVNAME}.pid -z 6 7" device "Microsoft 3-Button Mouse with IntelliEye(TM)" devname "ums[0-9]+" product 0x0040 vendor 0x045e attach "/usr/sbin/moused -p /dev/${DEVNAME} -I /var/run/moused.${DEVNAME}.pid -z 4 5" # The entry below starts moused when a mouse is plugged in. Moused # stops automatically (actually it bombs :) when the device disappears. # device "Mouse" devname "ums[0-9]+" attach "/usr/sbin/moused -p /dev/${DEVNAME} -I /var/run/moused.${DEVNAME}.pid" # The fallthrough entry: Nothing is specified, nothing is done. And it isn't # necessary at all :-). Just for pretty printing in debugging mode. # device "USB device" --=-=-= Greetings Frank Nobis -- .signature is: umop 3p!sdn --=-=-=-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 4:15:10 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EA0D37B400 for ; Sun, 14 Jul 2002 04:15:04 -0700 (PDT) Received: from gatekeeper.radio-do.de (gatekeeper.Radio-do.de [193.101.164.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC93743E42 for ; Sun, 14 Jul 2002 04:15:03 -0700 (PDT) (envelope-from fn@Radio-do.de) Received: from cube.radio-do.de (cube.Radio-do.de [193.101.164.7]) by gatekeeper.radio-do.de (Postfix) with ESMTP id F306D24B for ; Sun, 14 Jul 2002 13:15:01 +0200 (CEST) Received: from cube.radio-do.de (localhost [127.0.0.1]) by cube.radio-do.de (8.12.3/8.12.3) with ESMTP id g6EBF1em001951 for ; Sun, 14 Jul 2002 13:15:01 +0200 (CEST) (envelope-from fn@Radio-do.de) Received: (from fn@localhost) by cube.radio-do.de (8.12.3/8.12.3/Submit) id g6EBF1mK001950; Sun, 14 Jul 2002 13:15:01 +0200 (CEST) X-Authentication-Warning: cube.radio-do.de: fn set sender to fn@Radio-do.de using -f To: freebsd-stable@FreeBSD.ORG Subject: Unable to rip audio CDs on a LG DVD ROM GCC-4120B From: Frank Nobis Date: 14 Jul 2002 13:15:01 +0200 Message-ID: Lines: 22 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, on my 4.6-RELEASE-p1 system every attempt to read an audo CD with dagrab it fails to do so. The error message is acd0: READ_CD - ABORTED COMMAND asc=0x00 ascq=0x00 error=0x04 The drive is identified as acd0: CD-RW at ata1-master PIO4 Normaly this drive should be able to do digital audio playback and extraction. Some hints? Greetings Frank -- .signature is: umop 3p!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 5: 0:48 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48FB637B400 for ; Sun, 14 Jul 2002 05:00:31 -0700 (PDT) Received: from smtp.noos.fr (zola.noos.net [212.198.2.76]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41BAB43E67 for ; Sun, 14 Jul 2002 05:00:29 -0700 (PDT) (envelope-from root@gits.dyndns.org) Received: (qmail 42696388 invoked by uid 0); 14 Jul 2002 12:00:26 -0000 Received: from unknown (HELO gits.gits.dyndns.org) ([212.198.229.153]) (envelope-sender ) by 212.198.2.76 (qmail-ldap-1.03) with SMTP for ; 14 Jul 2002 12:00:26 -0000 Received: from gits.gits.dyndns.org (rm09m4ecvzw9siga@localhost [127.0.0.1]) by gits.gits.dyndns.org (8.12.5/8.12.5) with ESMTP id g6EC0OdT062403; Sun, 14 Jul 2002 14:00:25 +0200 (CEST) (envelope-from root@gits.dyndns.org) Received: (from root@localhost) by gits.gits.dyndns.org (8.12.5/8.12.5/Submit) id g6EC0HhX062401; Sun, 14 Jul 2002 14:00:17 +0200 (CEST) (envelope-from root) Date: Sun, 14 Jul 2002 14:00:16 +0200 From: Cyrille Lefevre To: Joe Kelsey Cc: stan , freebsd stable , gnome Subject: Re: Gnome/Sawfish problems after portupgrade Message-ID: <20020714120016.GD35142@gits.dyndns.org> Mail-Followup-To: Cyrille Lefevre , Joe Kelsey , stan , freebsd stable , gnome References: <20020707152829.GA22987@teddy.fas.com> <20020713021507.GF2527@gits.dyndns.org> <1026532325.8748.95.camel@zircon.zircon.seattle.wa.us> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1026532325.8748.95.camel@zircon.zircon.seattle.wa.us> User-Agent: Mutt/1.3.99i Organization: ACME X-Face: V|+c;4!|B?E%BE^{E6);aI.[< List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jul 12, 2002 at 08:52:05PM -0700, Joe Kelsey wrote: > On Fri, 2002-07-12 at 19:15, Cyrille Lefevre wrote: > > On Sun, Jul 07, 2002 at 11:28:29AM -0400, stan wrote: > > > After last weekends cvsup & portupgrade I am unable to run Sawfish as the > > > window manager fro Gnome on both machnes I track STABLE on > > > > > > Basicly Gnome starts up (after a _very long_ time) and there is no window > > ^^^^^^^^^^^^^^^^^^^^^^^^ > > I've this problem too. it seems to be `esd' startup which sleep for > > a while but don't know why. > > In my experience, it really was Sawfish that was hanging. The problem > (in may case) was that Swafish would hang for minutes, but would > eventually continue. > > I'll bet you are running an X Font Server. I was running xfs-tt. As no, I'm running XFree-4 which don't need xfs-tt to handle TT fonts. just have `Load "freetype"' in the "Module" section of /etc/X11/XF86Config. to be more precise, the problem is ... ... 62191 gnome-login-chec 1026646819.141317 CALL access(0x2848b060,0x6) 62191 gnome-login-chec 1026646819.141632 NAMI "/root/.esd/socket" 62191 gnome-login-chec 1026646819.141752 RET access -1 errno 2 No such file o r directory 62191 gnome-login-chec 1026646819.142074 CALL socket(0x2,0x1,0) 62191 gnome-login-chec 1026646819.142184 RET socket 3 62191 gnome-login-chec 1026646819.142303 CALL fcntl(0x3,0x2,0x1) 62191 gnome-login-chec 1026646819.142353 RET fcntl 0 62191 gnome-login-chec 1026646819.142464 CALL setsockopt(0x3,0xffff,0x4,0xbfbf b928,0x4) 62191 gnome-login-chec 1026646819.142520 RET setsockopt 0 62191 gnome-login-chec 1026646819.142639 CALL connect(0x3,0xbfbfb978,0x10) **************** ***** here ***** **************** 62191 gnome-login-chec 1026646894.134824 RET connect -1 errno 60 Operation ti med out 62191 gnome-login-chec 1026646894.135135 CALL close(0x3) 62191 gnome-login-chec 1026646894.135214 RET close 0 ... 62208 sh 1026646894.224087 CALL execve(0x80d23ac,0x80cc720,0x80d2204) 62208 sh 1026646894.224133 NAMI "/usr/local/bin/esd" 62208 sh 1026646894.226061 NAMI "/usr/libexec/ld-elf.so.1" 62208 esd 1026646894.227562 RET execve 0 ... 62208 esd 1026646894.249376 CALL write(0x2,0xbfbfb5bc,0x1b) 62208 esd 1026646894.249486 GIO fd 2 wrote 27 bytes "- using device /dev/dsp0.1 " ... 62208 esd 1026646894.254407 CALL mkdir(0x28076c60,0x3ed) 62208 esd 1026646894.254463 NAMI "/root/.esd" 62208 esd 1026646894.254984 RET mkdir 0 62208 esd 1026646894.255090 CALL chmod(0x28076c60,0x3ed) 62208 esd 1026646894.255134 NAMI "/root/.esd" 62208 esd 1026646894.255271 RET chmod 0 62208 esd 1026646894.255356 CALL socket(0x1,0x1,0) 62208 esd 1026646894.255435 RET socket 5 62208 esd 1026646894.255501 CALL fcntl(0x5,0x2,0x1) 62208 esd 1026646894.255539 RET fcntl 0 62208 esd 1026646894.255596 CALL setsockopt(0x5,0xffff,0x4,0xbfbfbba4,0x4 ) 62208 esd 1026646894.255646 RET setsockopt 0 62208 esd 1026646894.255894 CALL connect(0x5,0xbfbfbba8,0x13) 62208 esd 1026646894.255966 NAMI "/root/.esd/socket" 62208 esd 1026646894.256071 RET connect -1 errno 2 No such file or direc tory 62208 esd 1026646894.256159 CALL unlink(0x28077060) 62208 esd 1026646894.256205 NAMI "/root/.esd/socket" 62208 esd 1026646894.256283 RET unlink -1 errno 2 No such file or direct ory 62208 esd 1026646894.256324 CALL socket(0x1,0x1,0) 62208 esd 1026646894.256381 RET socket 6 62208 esd 1026646894.256419 CALL fcntl(0x6,0x4,0x4) 62208 esd 1026646894.256458 RET fcntl 0 62208 esd 1026646894.256492 CALL setsockopt(0x6,0xffff,0x80,0xbfbfbc40,0x 8) 62208 esd 1026646894.256530 RET setsockopt 0 62208 esd 1026646894.256563 CALL setsockopt(0x6,0xffff,0x4,0xbfbfbc3c,0x4 ) 62208 esd 1026646894.256598 RET setsockopt 0 62208 esd 1026646894.256663 CALL umask(0) 62208 esd 1026646894.256699 RET umask 18/0x12 62208 esd 1026646894.256762 CALL bind(0x6,0xbfbfbc48,0x13) 62208 esd 1026646894.256808 NAMI "/root/.esd/socket" 62208 esd 1026646894.257049 RET bind 0 62208 esd 1026646894.257102 CALL umask(0x12) 62208 esd 1026646894.257138 RET umask 0 62208 esd 1026646894.257208 CALL listen(0x6,0x10) 62208 esd 1026646894.257258 RET listen 0 62208 esd 1026646894.257334 CALL open(0xbfbfbfc7,0x5,0) 62208 esd 1026646894.257384 NAMI "/dev/dsp0.1" 62191 gnome-login-chec 1026646894.313875 RET select 0 62191 gnome-login-chec 1026646894.313971 CALL close(0x3) ... it looks that gnome-login-check try to connect to the esd server which isn't started yet, then it sleep for a while (around 74 secs), then start esd, then it is able to connect to esd. CC -stable, -gnome Cyrille. -- Cyrille Lefevre mailto:cyrille.lefevre@laposte.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 5: 7:57 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A0DF37B428 for ; Sun, 14 Jul 2002 05:07:21 -0700 (PDT) Received: from smtp.noos.fr (aragon.noos.net [212.198.2.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D9D243E4A for ; Sun, 14 Jul 2002 05:07:20 -0700 (PDT) (envelope-from root@gits.dyndns.org) Received: (qmail 6071222 invoked by uid 0); 14 Jul 2002 12:07:18 -0000 Received: from unknown (HELO gits.gits.dyndns.org) ([212.198.229.153]) (envelope-sender ) by 212.198.2.75 (qmail-ldap-1.03) with SMTP for ; 14 Jul 2002 12:07:18 -0000 Received: from gits.gits.dyndns.org (ntur25ykrqjwok5p@localhost [127.0.0.1]) by gits.gits.dyndns.org (8.12.5/8.12.5) with ESMTP id g6EC7HdT062448; Sun, 14 Jul 2002 14:07:18 +0200 (CEST) (envelope-from root@gits.dyndns.org) Received: (from root@localhost) by gits.gits.dyndns.org (8.12.5/8.12.5/Submit) id g6EC7GCW062447; Sun, 14 Jul 2002 14:07:16 +0200 (CEST) (envelope-from root) Date: Sun, 14 Jul 2002 14:07:16 +0200 From: Cyrille Lefevre To: David Syphers Cc: Andrew Martin , freebsd-stable@FreeBSD.ORG Subject: Re: /dev/dsp reports "device busy" but nothing using it Message-ID: <20020714120716.GE35142@gits.dyndns.org> Mail-Followup-To: Cyrille Lefevre , David Syphers , Andrew Martin , freebsd-stable@FreeBSD.ORG References: <20020713022152.22036620.ugly@inhuman.org> <200207130215.34890.dsyphers@uchicago.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200207130215.34890.dsyphers@uchicago.edu> User-Agent: Mutt/1.3.99i Organization: ACME X-Face: V|+c;4!|B?E%BE^{E6);aI.[< List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jul 13, 2002 at 02:15:34AM -0500, David Syphers wrote: > On Saturday 13 July 2002 01:21 am, Andrew Martin wrote: > > I was playing audio with mplayer and when it finished, mplayer closed as > > usual, however when trying to play something else I now receive "device > > busy" messages about /dev/dsp. I do _NOT_ have esd or any other sound to have it running w/o conflict w/ other apps, you may do the following things : $ grep vchan /etc/sysctl.conf hw.snd.pcm0.vchans=2 $ grep spawn /usr/local/etc/esd.conf spawn_options=-d /dev/dsp0.2 -terminate -nobeeps -as 2 Cyrille. -- Cyrille Lefevre mailto:cyrille.lefevre@laposte.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 7:42:16 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44B0F37B400 for ; Sun, 14 Jul 2002 07:42:11 -0700 (PDT) Received: from hotmail.com (law2-f11.hotmail.com [216.32.181.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05AA143E31 for ; Sun, 14 Jul 2002 07:42:11 -0700 (PDT) (envelope-from kmays2000@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 14 Jul 2002 07:42:10 -0700 Received: from 24.196.232.182 by lw2fd.hotmail.msn.com with HTTP; Sun, 14 Jul 2002 14:42:10 GMT X-Originating-IP: [24.196.232.182] From: "Kenneth Mays" To: freebsd-stable@FreeBSD.ORG Subject: RE: Upcoming 4.6.1 Date: Sun, 14 Jul 2002 10:42:10 -0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 14 Jul 2002 14:42:10.0571 (UTC) FILETIME=[A29C2DB0:01C22B44] Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Well, I felt that if you went through the trouble of creating a 'release' then you should check to see what is important to upgrade and what is not. The main thing is that a 'point' or minor release (e.g. v4.6.x.x not v4.x or major releases (v4.0 vs v5.0), usually doesn't do a port/package sweep of upgrades (time-consuming to some). I was told to ask for the major stuff now before v4.7-R. The ATA patches and other "can't live without" patches are within reason of time to implement. Changing the ports/packages whenever the wind blows can be time consuming if not managed correctly (imagine all those dependencies to monitor too). Even Sun has a hard time keeping Solaris up to date with all those patches to the OS (bi-monthly) and Sun PAYS their engineers/developers to do that. You deal with Sol8 10/01 vs. Sol8 02/02 and all those bi-monthly patches in-between. I've focused my attention on only the 'first' ISO image and whatever is on that disc. Then, I've focused on the snapshot images and ONLY what I see on those discs. I talked about OpenSSH, OpenSSL, tar, and perl since these are on the snapshot images as well as Xfree86 (5.0 put perl in port/packages and off the main snapshot). The ATA patch is one of those higher priority list items as well as a kernel crash issue. I made a request for people to go through usr/bin and any other bin command just to see if an update is needed. Just my wooden nickels... -K _________________________________________________________________ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 7:57:34 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D99B37B405 for ; Sun, 14 Jul 2002 07:57:30 -0700 (PDT) Received: from pc1-cove2-4-cust33.bir.cable.ntl.com (pc1-cove2-4-cust33.bir.cable.ntl.com [80.4.78.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF82743E65 for ; Sun, 14 Jul 2002 07:57:27 -0700 (PDT) (envelope-from ianjhart@ntlworld.com) Received: from ntlworld.com (alpha.private.lan [192.168.0.2]) by pc1-cove2-4-cust33.bir.cable.ntl.com (8.12.3/8.12.3) with ESMTP id g6EEuigA038269; Sun, 14 Jul 2002 15:56:44 +0100 (BST) (envelope-from ianjhart@ntlworld.com) Message-ID: <3D31912C.210CFEF1@ntlworld.com> Date: Sun, 14 Jul 2002 15:56:44 +0100 From: ian j hart X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: "stable@FreeBSD.ORG" Cc: SXren Schmidt Subject: Re: ATA tags and stuff References: <3D2F6DC6.A5392FF7@ntlworld.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ian j hart wrote: > > I can reproduce the "tags problem", RELENG_4 built today. > Also noticed some weird secondary IDE stuff. > > Are there any ATA patches I don't know about? > Is it worth trying CURRENT? > > Will do anything (legal) to help solve the problem. > I've borrowed the box for the weekend, so fire away. > > Three IBM-DTLA-307075 rescued from backup duties plus > one new IC35L080AVVA07-0. > > [shown with tags off here] > ad0: 78533MB [159560/16/63] at ata0-master UDMA100 > ad1: 73308MB [148945/16/63] at ata0-slave UDMA100 > > ad2: 73308MB [148945/16/63] at ata1-master UDMA100 > ad3: 73308MB [148945/16/63] at ata1-slave UDMA100 > > First tried a LEX BN630LT M/B. Installed 4.6-RELEASE, upgraded > to STABLE. Set up vinum RAID10 volume. While formating > I had systat -vmstat running. Noticed that while the "load" > appeared the same on all four disks, ad0 and ad1 were at ~5% > busy, ad2 and ad3 were at ~50% busy. > > I posted somthing similar before (20010807). I've swapped > the cables around, same result. Tried different cables, same > result. All cables are spec length, don't have any shorter. > > This is a new board - could be a design fault. So I > tried a recent gigabyte board, same result. > > Set tags on. As soon as I load the vinum volume I get > > [snip time /kernel] > ad2: READ command timeout tag=0 serv=0 - resetting > ad2: invalidating queued requests > ad2: timeout waiting for cmd=00 s=d0 e=04 > ad2: flush queue failed > ata1: resetting devices .. ad2: invalidating queued requests > ad2: DMA limited to UDMA33, non-ATA66 cable or device > ad3: invalidating queued requests > done > ad2: no request for tag=0 > ad2: invalidating queued requests > > So far only ad2 and ad3 fail. > > A thought occurs. There could be a master/slave problem > with the firmware in the DTLA drives, which is fixed > in the IC35. I'll swap the IDE cables on the M/B and see what > happens. > > Maybe I'd better sleep first, I'm rambling. > > BTW, this is NOT a vinum problem. I get the same problem > on normal volumes (but only on ad2 ad3). This is just a *neat* > way of loading the drives. Pass the pointy hat. I'd used the IBM feature tool to disable the write cache, but only on two of the three *old* drives. Enabling wc fixes the systat load reading and the tags error. The worse thing is there was a post with all the clues in (on wednesday), and I still didn't get it. -- ian j hart To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 8: 4:38 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8127037B400 for ; Sun, 14 Jul 2002 08:04:33 -0700 (PDT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4ECC943E5E for ; Sun, 14 Jul 2002 08:04:32 -0700 (PDT) (envelope-from marck@rinet.ru) Received: from localhost (marck@localhost) by woozle.rinet.ru (8.11.6/8.11.6) with ESMTP id g6EF4Lw99263; Sun, 14 Jul 2002 19:04:21 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Sun, 14 Jul 2002 19:04:21 +0400 (MSD) From: Dmitry Morozovsky To: Yann Sommer Cc: stable@FreeBSD.ORG Subject: Re: umount of a removed procfs? In-Reply-To: <000501c22ac0$d847b260$5801a8c0@yann> Message-ID: <20020714190242.J66047-100000@woozle.rinet.ru> X-NCC-RegID: ru.rinet MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 13 Jul 2002, Yann Sommer wrote: YS> Heya, YS> YS> After creating a jail, mounting it's /proc, and renaming it's directory YS> structure in the host environment as follows: YS> YS> # mkdir -p /jails/a/proc YS> # mount_procfs proc /jails/a/proc YS> # mv /jails/a /jails/b YS> YS> ...the following happens: YS> YS> # mount |tail -n 1 YS> procfs on /jails/a/proc (procfs, local) YS> # umount -f /jails/a/proc YS> umount: unmount of /jails/a/proc failed: No such file or directory umount -f procfs will help you (If it is the last one mounted procfs; otherwise, repeat umount -f as needed) Then, mount 'em again in new places. There should be a little or no at all harm to running programs to live a bit without procfs. Sincerely, D.Marck [DM5020, DM268-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 9:18:34 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3758B37B400 for ; Sun, 14 Jul 2002 09:18:31 -0700 (PDT) Received: from kpt-c-24-159-35-85.chartertn.net (kpt-c-24-159-35-85.chartertn.net [24.159.35.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A23343E65 for ; Sun, 14 Jul 2002 09:18:30 -0700 (PDT) (envelope-from ericg@chartertn.net) Received: from zaphod (zaphod.lonesome.org [192.168.1.88]) by kpt-c-24-159-35-85.chartertn.net (8.11.6/8.11.6) with ESMTP id g6EGIOj49199; Sun, 14 Jul 2002 12:18:25 -0400 (EDT) (envelope-from ericg@chartertn.net) Message-Id: <200207141618.g6EGIOj49199@kpt-c-24-159-35-85.chartertn.net> From: "Eric Olsen" To: Ian Dowse , stable@freebsd.org Date: Sun, 14 Jul 2002 12:18:24 -0400 MIME-Version: 1.0 Subject: Re: strange ATA behavior with -STABLE Reply-To: ericg@chartertn.net References: Your message of "Thu, 11 Jul 2002 10:01:37 +0200." <20020711095747.B19121-100000@carmel.diva.nl> In-reply-to: <200207122338.aa27236@salmon.maths.tcd.ie> X-mailer: Pegasus Mail for Windows (v4.01) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 12 Jul 2002 at 23:38, Ian Dowse wrote: > In message <20020711095747.B19121-100000@carmel.diva.nl>, Michiel Boland > writes : >Please correct me if I'm wrong but I don't think the splx > patch does >anything to help people with broken CD-ROM drives. > > Try the following. It fixes CD-ROM drives in VMWare for me, so > there is a good chance it may help with real CD-ROM drives too. > > Sorry, I meant to try to track this down ages ago as it sounded > (and was) really easy to find, but I rarely use CD-ROM drives in > VMWare so I never got around to it. It's just a simple race where > if the completion interrupt comes in between the splx() and the > tsleep(), the tsleep will sit in "atprq" forever. Moving the splx() to > after the tsleep ensures that this can't happen. > > Ian FWIW, a quick and dirty test shows that your patch works for me on this kernel: > uname -a FreeBSD hp.lonesome.org 4.6-STABLE FreeBSD 4.6-STABLE #1: Sun Jul 14 11:34:28 EDT 2002 ericg@hp.lonesome.org:/extra/src/sys/compile/HP i386 (that was 4-STABLE as of 02 July 2002, installed from a JP snapshot) with this CDROM: > dmesg |grep acd0 acd0: CDROM at ata1-slave PIO4 > and with the following sysctl settings: > sysctl -a | egrep "\.ata" hw.ata.ata_dma: 1 hw.ata.wc: 1 hw.ata.tags: 0 hw.ata.atapi_dma: 1 (The above sysctl settings didn't help before the patch. I haven't tried to find out if they matter after the patch.) Let's hope the patch can be included in 4.6.1-RELEASE. Thanks, Ian, for some much-needed relief! Eric To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 10:14:36 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4249837B401 for ; Sun, 14 Jul 2002 10:14:33 -0700 (PDT) Received: from scaup.mail.pas.earthlink.net (scaup.mail.pas.earthlink.net [207.217.120.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF38543E6E for ; Sun, 14 Jul 2002 10:14:32 -0700 (PDT) (envelope-from mvh@ix.netcom.com) Received: from lsanca1-ar6-4-62-202-162.lsanca1.elnk.dsl.genuity.net ([4.62.202.162] helo=netcom1.netcom.com) by scaup.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 17Tmx5-0002LZ-00 for stable@freebsd.org; Sun, 14 Jul 2002 10:14:32 -0700 Received: by netcom1.netcom.com (Postfix, from userid 1000) id 06EDF13109; Sun, 14 Jul 2002 10:14:30 -0700 (PDT) From: Mike Harding To: stable@freebsd.org Subject: another high hz issue Message-Id: <20020714171430.06EDF13109@netcom1.netcom.com> Date: Sun, 14 Jul 2002 10:14:30 -0700 (PDT) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG just noticed this after bumping HZ to 1000: $sysctl -a ... net.inet.tcp.keepidle: -1389934 ... I don't know if the display is overflowed, or the display, but either way it's a little confusing... - Mike H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 10:31:33 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7ADDC37B400 for ; Sun, 14 Jul 2002 10:31:30 -0700 (PDT) Received: from loudminds.com (loudminds.com [216.122.251.99]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1557643E64 for ; Sun, 14 Jul 2002 10:31:29 -0700 (PDT) (envelope-from josephv@loudminds.com) Received: from br28w6 (24-193-34-17.nyc.rr.com [24.193.34.17]) by loudminds.com (8.11.0/8.11.0) with SMTP id g6EHVO163228 for ; Sun, 14 Jul 2002 13:31:25 -0400 (EDT) (envelope-from josephv@loudminds.com) From: "Joseph Velez" To: Subject: subsrcibe Date: Sun, 14 Jul 2002 13:42:11 -0400 Message-ID: MIME-Version: 1.0 Content-Type: application/ms-tnef; name="winmail.dat" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="winmail.dat" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MS-TNEF-Correlator: X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG eJ8+IgsRAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEGgAMADgAAANIHBwAOAA0AKgAAAAAAJQEB A5AGAFADAAAcAAAACwACAAEAAAALACMAAAAAAAMAJgAAAAAACwApAAAAAAADADYAAAAAAB4AcAAB AAAACgAAAHN1YnNyY2liZQAAAAIBcQABAAAAFgAAAAHCK13Dhdhki16KtElIgyfbjP3Q7IoAAAIB HQwBAAAAGwAAAFNNVFA6Sk9TRVBIVkBMT1VETUlORFMuQ09NAAALAAEOAAAAAEAABg4AZJzBXSvC AQIBCg4BAAAAGAAAAAAAAABbIMPbnPNaQp/DtpaCWWKBwoAAAAsAHw4AAAAACwABgAggBgAAAAAA wAAAAAAAAEYAAAAAA4UAAAAAAAADAAOACCAGAAAAAADAAAAAAAAARgAAAAAQhQAAAAAAAAMAB4AI IAYAAAAAAMAAAAAAAABGAAAAAFKFAAA/cQEAHgAJgAggBgAAAAAAwAAAAAAAAEYAAAAAVIUAAAEA AAAEAAAAOS4wAAsADYAIIAYAAAAAAMAAAAAAAABGAAAAAIKFAAABAAAACwA6gAggBgAAAAAAwAAA AAAAAEYAAAAADoUAAAAAAAADADyACCAGAAAAAADAAAAAAAAARgAAAAARhQAAAAAAAAMAPYAIIAYA AAAAAMAAAAAAAABGAAAAABiFAAAAAAAACwBSgAggBgAAAAAAwAAAAAAAAEYAAAAABoUAAAAAAAAD AFOACCAGAAAAAADAAAAAAAAARgAAAAABhQAAAAAAAAIB+A8BAAAAEAAAAFsgw9uc81pCn8O2loJZ YoECAfoPAQAAABAAAABbIMPbnPNaQp/DtpaCWWKBAgH7DwEAAACfAAAAAAAAADihuxAF5RAaobsI ACsqVsIAAFBTVFBSWC5ETEwAAAAAAAAAAE5JVEH5v7gBAKoAN9luAAAAQzpcRG9jdW1lbnRzIGFu ZCBTZXR0aW5nc1xrcm9ub3MuQlIyOFc2XExvY2FsIFNldHRpbmdzXEFwcGxpY2F0aW9uIERhdGFc TWljcm9zb2Z0XE91dGxvb2tcb3V0bG9vay5wc3QAAAMA/g8FAAAAAwANNP03AAACAX8AAQAAADUA AAA8RktFQ0pQTURPTkxHRUJJQ1BPSENNRU9HQ0JBQS5qb3NlcGh2QGxvdWRtaW5kcy5jb20+AAAA AHyg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 16: 7:40 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B2E237B400 for ; Sun, 14 Jul 2002 16:07:38 -0700 (PDT) Received: from hokkshideh2.jetcafe.org (hokkshideh2.jetcafe.org [205.147.43.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id D038043E31 for ; Sun, 14 Jul 2002 16:07:37 -0700 (PDT) (envelope-from dave@jetcafe.org) Received: from hokkshideh2.jetcafe.org (localhost [127.0.0.1]) by hokkshideh2.jetcafe.org (8.11.6/8.11.6) with ESMTP id g6EN6o013905; Sun, 14 Jul 2002 16:06:50 -0700 (PDT) (envelope-from dave@hokkshideh2.jetcafe.org) Message-Id: <200207142306.g6EN6o013905@hokkshideh2.jetcafe.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: ericg@chartertn.net Cc: Ian Dowse , stable@FreeBSD.ORG Subject: Re: strange ATA behavior with -STABLE Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 14 Jul 2002 16:06:45 -0700 From: Dave Hayes Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Eric Olsen writes: > acd0: CDROM at ata1-slave PIO4 ... >> sysctl -a | egrep "\.ata" > hw.ata.atapi_dma: 1 Hmm, isn't that sysctl supposed to put the CDROM in DMA mode? ------ Dave Hayes - Consultant - Altadena CA, USA - dave@jetcafe.org >>> The opinions expressed above are entirely my own <<< There is no distinctly native American criminal class except Congress. -- Mark Twain To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 17:41: 8 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63DA837B400 for ; Sun, 14 Jul 2002 17:41:05 -0700 (PDT) Received: from ns.itga.com.au (ns.itga.com.au [202.53.40.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8F8443E4A for ; Sun, 14 Jul 2002 17:41:03 -0700 (PDT) (envelope-from gnb@itga.com.au) Received: from lightning.itga.com.au (lightning.itga.com.au [192.168.71.20]) by ns.itga.com.au (8.9.3/8.9.3) with ESMTP id KAA29495; Mon, 15 Jul 2002 10:41:01 +1000 (EST) (envelope-from gnb@itga.com.au) Received: from lightning.itga.com.au (localhost [127.0.0.1]) by lightning.itga.com.au (8.9.3/8.9.3) with ESMTP id KAA27019; Mon, 15 Jul 2002 10:40:59 +1000 (EST) Message-Id: <200207150040.KAA27019@lightning.itga.com.au> X-Mailer: exmh version 2.4 05/15/2001 with nmh-1.0.4 From: Gregory Bond To: Jim Weeks Cc: freebsd-stable@FreeBSD.ORG Subject: Re: ssh keys not accepted In-reply-to: Your message of Fri, 12 Jul 2002 12:04:35 -0400. Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 15 Jul 2002 10:40:59 +1000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > For some strange reason, keys from this host are not accepted by any of my > other machines. However, I can push id_dsa.pub into authorized_keys2 on > this machine and login from any other host. Check that the authorised_keys2 file on the remote host has each key on exactly 1 line. I sometimes get bitten by unnoticed linebreaks when cut-n-pasting keys using xterm! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 17:47:17 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E020537B400 for ; Sun, 14 Jul 2002 17:47:14 -0700 (PDT) Received: from mail.allcaps.org (h-66-166-142-198.SNDACAGL.covad.net [66.166.142.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86A8143E65 for ; Sun, 14 Jul 2002 17:47:14 -0700 (PDT) (envelope-from bsder@mail.allcaps.org) Received: by mail.allcaps.org (Postfix, from userid 501) id 12627153B7; Sun, 14 Jul 2002 17:47:10 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by mail.allcaps.org (Postfix) with ESMTP id 099BE15277; Sun, 14 Jul 2002 17:47:10 -0700 (PDT) Date: Sun, 14 Jul 2002 17:47:10 -0700 (PDT) From: "Andrew P. Lentvorski" To: Gregory Bond Cc: Jim Weeks , Subject: Re: ssh keys not accepted In-Reply-To: <200207150040.KAA27019@lightning.itga.com.au> Message-ID: <20020714174412.X80411-100000@mail.allcaps.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Did you try using "ssh -2 " to force version 2 of the ssh protocol to be used? The defaults in ssh_config and sshd_config automatically set everything to version 1. The relevant line will say "Protocol 1,2" when you probably want "Protocol 2,1". -a To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 19:38: 8 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BE6C37B400 for ; Sun, 14 Jul 2002 19:38:05 -0700 (PDT) Received: from aurora.siteplus.com (aurora.siteplus.com [66.129.2.160]) by mx1.FreeBSD.org (Postfix) with ESMTP id C94FC43E6D for ; Sun, 14 Jul 2002 19:38:04 -0700 (PDT) (envelope-from jim@jwweeks.com) Received: from veager.jwweeks.com (pcp01076331pcs.midval01.tn.comcast.net [68.59.219.194]) by aurora.siteplus.com (8.12.5/8.12.5) with ESMTP id g6F2bwbc069219; Sun, 14 Jul 2002 22:37:58 -0400 (EDT) (envelope-from jim@jwweeks.com) Date: Sun, 14 Jul 2002 22:38:00 -0400 (EDT) From: Jim Weeks To: Gregory Bond Cc: freebsd-stable@FreeBSD.ORG, Subject: Re: ssh keys not accepted In-Reply-To: <200207150040.KAA27019@lightning.itga.com.au> Message-ID: <20020714222732.V526-100000@veager.jwweeks.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 15 Jul 2002, Gregory Bond wrote: > > For some strange reason, keys from this host are not accepted by any of my > > other machines. However, I can push id_dsa.pub into authorized_keys2 on > > this machine and login from any other host. > > Check that the authorised_keys2 file on the remote host has each key on > exactly 1 line. I sometimes get bitten by unnoticed linebreaks when > cut-n-pasting keys using xterm! > And, Andrew P. Lentvorski wrote: > Did you try using "ssh -2 " to force version 2 of the ssh > protocol to be used? The defaults in ssh_config and sshd_config > automatically set everything to version 1. The relevant line will say > "Protocol 1,2" when you probably want "Protocol 2,1". Thanks for all the replies ;-) Since the whole ssh update has been a hot topic, I am combining these two responses to save bandwidth. Both of these were good suggestions, but they weren't the solution. Evidently I missed something with this particular machine when I upgraded ssh. Any way, rebuilding ssh and pam did the trick. Regards, -- Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Jul 14 21: 5:53 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B1D237B400 for ; Sun, 14 Jul 2002 21:05:49 -0700 (PDT) Received: from sproxy14.hi-ho.ne.jp (sproxy14.hi-ho.ne.jp [202.224.159.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C39943E3B for ; Sun, 14 Jul 2002 21:05:48 -0700 (PDT) (envelope-from karuhito@cam.hi-ho.ne.jp) Received: from localhost (h128packet1-p101.hi-ho.ne.jp [61.211.119.230]) by sproxy14.hi-ho.ne.jp (hi-ho Mail Server) with ESMTP id <0GZ900J6MVDIZV@sproxy14.hi-ho.ne.jp> for stable@freebsd.org; Mon, 15 Jul 2002 13:05:46 +0900 (JST) Date: Mon, 15 Jul 2002 13:05:18 +0900 (JST) From: =?iso-2022-jp?B?GyRCOXU0ZBsoQiAbJEJPQjlUGyhC?= Subject: Re: lnc interface dying under heavy I/O when running 4.6-STABLE under VMware 3.1.1 In-reply-to: <20020710105447.84833.qmail@web40308.mail.yahoo.com> To: stable@freebsd.org Message-id: <20020715.130518.730555025.karuhito@cam.hi-ho.ne.jp> MIME-version: 1.0 X-Mailer: Mew version 3.0.55 on XEmacs 21.4.6 (Common Lisp) Content-type: Text/Plain; charset=us-ascii Content-transfer-encoding: 7bit References: <20020710105447.84833.qmail@web40308.mail.yahoo.com> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello. I work at same environment. And I faced to same problem that lnc stopped transmission under heavy load. So I tried patch you posted, it works fine. I noticed that before adapting a patch, transmission is burstly processed and stacked. But after patched, transmission looks gently (slowly) as Windows guest does. Is this expected behaviour? From: Nuzrin Yaapar Subject: lnc interface dying under heavy I/O when running 4.6-STABLE under VMware 3.1.1 Date: Wed, 10 Jul 2002 03:54:47 -0700 (PDT) > Guys, > > The subject describes it all. I don't know if anyone else is facing this > problem, but I can reproduce this problem at will. Under VMware 3.1.1 > for Windows, the lnc driver will stop responding after some time. The > weirdest part is that it will only manifest itself when doing some heavy > network I/O, such as 'make installworld' from NFS mount, or doing > netperf. > > The host OS is WinXP Pro, and the guest OS is the freshly cvsup > RELENG_4. Looking at VMware log file, I see a lot these messages: > > Jul 09 16:42:48: VMX|VLANCE: ethernet0 skipped 1024 time(s) > Jul 09 16:42:48: VMX|VLANCE: 254 30 24 23 26 215 11 3 2 0 0 0 0 0 0 0 > Jul 09 16:42:48: VMX|VLANCE: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 436 > Jul 09 16:42:51: VMX|VLANCE: ethernet0 skipped 1280 time(s) > Jul 09 16:42:51: VMX|VLANCE: 354 44 37 35 37 313 17 3 3 1 0 0 0 0 0 0 > Jul 09 16:42:51: VMX|VLANCE: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 436 > > I've done some investigation, and it seems that after some heavy network > activity, the lnc driver will stop calling RX interrupt routine, > lnc_rint(). The "fix" is very simple though; in sys/i386/isa/if_lnc.c, > delete the call to outw(sc->rdp, RINT | INEA) at the very end of > lnc_rint() function. See diff below applied against the latest RELENG_4 > code. > > # diff -ruN sys/i386/isa/if_lnc.c.old sys/i386/isa/if_lnc.c > --- sys/i386/isa/if_lnc.c.old Tue Jul 9 21:04:31 2002 > +++ sys/i386/isa/if_lnc.c Tue Jul 9 21:04:45 2002 > @@ -630,7 +630,6 @@ > * here have been dealt with. > */ > > - outw(sc->rdp, RINT | INEA); > } > > Anyone care to describe/explain/enlighten me on what is happening > actually? -- kazuyuki KUROIWA Email: karuhito@cam.hi-ho.ne.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 15 5: 5:33 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7686B37B400; Mon, 15 Jul 2002 05:05:27 -0700 (PDT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA29C43E67; Mon, 15 Jul 2002 05:05:25 -0700 (PDT) (envelope-from marck@rinet.ru) Received: from localhost (marck@localhost) by woozle.rinet.ru (8.11.6/8.11.6) with ESMTP id g6FC5NK51751; Mon, 15 Jul 2002 16:05:24 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Mon, 15 Jul 2002 16:05:23 +0400 (MSD) From: Dmitry Morozovsky To: Doug Barton Cc: freebsd-bugs@FreeBSD.org, Subject: Re: bin/40416: update for mergemaster.sh (login.conf.db rebuild) In-Reply-To: <200207150824.g6F8OUCS036787@freefall.freebsd.org> Message-ID: <20020715160020.S50265-100000@woozle.rinet.ru> X-NCC-RegID: ru.rinet MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 15 Jul 2002, Doug Barton wrote: DB> Synopsis: update for mergemaster.sh (login.conf.db rebuild) DB> DB> State-Changed-From-To: open->closed DB> State-Changed-By: dougb DB> State-Changed-When: Mon Jul 15 01:23:31 PDT 2002 DB> State-Changed-Why: DB> DB> Thank you for your submission, however I like the current behavior DB> because if the user doesn't have a db already, they probably should DB> (it's faster); and admins who know they don't want one can just say no. Hmm. I'm not sure. At least, if admin _does_ know he is needed to have .db, he'd just run cap_mkdb as mentioned in the file header once, and then mergemaster will handle this. But for systems with default login.conf with just 8 classes it would be just waste -- isn't it? Or, if we stick with you way, then I think sysinstall should make .db during first install pass, just like newaliases. Comments? Sincerely, D.Marck [DM5020, DM268-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 7:33:59 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E437437B400 for ; Mon, 15 Jul 2002 07:33:56 -0700 (PDT) Received: from TheSocket.remoteserver.org (dsl-65-189-64-149.telocity.com [65.189.64.149]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15FE443E31 for ; Mon, 15 Jul 2002 07:33:56 -0700 (PDT) (envelope-from swordman@TheSocket.remoteserver.org) Received: from localhost (swordman@localhost) by TheSocket.remoteserver.org (8.11.6/8.11.4) with ESMTP id g6FEaBe25575 for ; Mon, 15 Jul 2002 09:36:12 -0500 (CDT) Date: Mon, 15 Jul 2002 09:36:11 -0500 (CDT) From: SwordManX To: freebsd-stable@freebsd.org Subject: Subscribe. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'd like to subscribe to the mailing list. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 8:31:45 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78CB537B400 for ; Mon, 15 Jul 2002 08:31:40 -0700 (PDT) Received: from frl.nisser.com (c0039.upc-c.chello.nl [212.187.0.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0C9343E70 for ; Mon, 15 Jul 2002 08:31:39 -0700 (PDT) (envelope-from roelof@eboa.com) Received: from eboa.com (roelof.nisser.com [10.0.0.2]) by frl.nisser.com (Postfix) with ESMTP id 0BD9DEA99 for ; Mon, 15 Jul 2002 17:27:46 +0200 (CEST) Message-ID: <3D32E9F1.6070009@eboa.com> Date: Mon, 15 Jul 2002 17:27:45 +0200 From: Roelof Osinga Organization: eBOA - Programming the Web User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0rc3) Gecko/20020523 X-Accept-Language: en,pdf MIME-Version: 1.0 To: freebsd-stable@FreeBSD.ORG Subject: Three nics routing problem Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've got a routing problem the answer to which eludes me. The situation is as follows. The box (4.6) has three NICs: rl0: flags=8843 mtu 1500 inet 10.0.1.55 netmask 0xffffff00 broadcast 10.0.1.255 ether 00:e0:4c:39:00:32 media: Ethernet autoselect (100baseTX ) status: active ep0: flags=8843 mtu 1500 inet 10.0.0.55 netmask 0xffffff00 broadcast 10.0.0.255 ether 00:60:97:14:31:a7 media: Ethernet 10base2/BNC ep1: flags=8843 mtu 1500 inet 212.187.0.39 netmask 0xfffff800 broadcast 212.187.7.255 ether 00:60:97:e4:98:db media: Ethernet 10baseT/UTP The ep1 connects to the CATV external connection. The ep0 to the local coax cable and finally the rl0 to a "switchlet". The idea was to start moving to the UTP network. However, the box fails to comply. Diagrammatically it looks like this: CATV <--- ep1 ep0 <---> test's ed0 as 10.0.0.10 <---> other boxes rl0 <---> test's rl0 as 10.0.1.100 <---> other stuff Destination Gateway Flags Refs Use Netif Expire default 212.187.0.1 UGSc 35 338854 ep1 10/24 link#2 UC 2 0 ep0 10.0.0.2 0:0:e8:ef:7b:fb UHLW 9 87347 ep0 1139 10.0.1/24 link#1 UCc 1 0 rl0 127.0.0.1 127.0.0.1 UH 2 17851 lo0 212.187.0/21 link#3 UC 2 0 ep1 212.187.0.1 0:30:7b:94:31:c8 UHLW 29 4 ep1 1200 212.187.7.255 ff:ff:ff:ff:ff:ff UHLWb 0 5 ep1 frl:~/samba/NOTAS$ sysctl -a|grep forward net.inet.ip.forwarding: 1 net.inet.ip.fastforwarding: 0 Even with forwarding enabled it does not forward. My workstation can connect to 10.0.1.100 but only through the coax cable (the test box also has forwarding enabled). When I unplug that cable it can no longer reach the test box. Which is unfortunate. The frl box will of course always communicate with the test box. But it will not forward packets from the 10.0.0. net to the 10.0.1. net without resorting to the coax net. If someone knows what I'm overlooking, please inform! Roelof PS this went unanswered on the questions list -- _______________________________________________________________________ eBOA® est. 1982 http://eBOA.com/ tel. +31-58-2123014 mailto:info@eBOA.com?subject=Information_request fax. +31-58-2160293 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 10:33:12 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC2AA37B405; Mon, 15 Jul 2002 10:33:07 -0700 (PDT) Received: from pe4.eziba.com (mail.eziba.com [64.80.31.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id C19A443FE0; Mon, 15 Jul 2002 10:10:30 -0700 (PDT) (envelope-from jay@eziba.com) Received: from eziba.com (thelonius.eziba.com [192.168.0.31]) by pe4.eziba.com (8.11.6/8.11.6) with ESMTP id g6FH9p021215; Mon, 15 Jul 2002 13:09:52 -0400 Message-ID: <3D3301DF.70801@eziba.com> Date: Mon, 15 Jul 2002 13:09:51 -0400 From: Jay Sachs User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.0) Gecko/20020607 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Cyrille Lefevre Cc: Doug Barton , stan , FreeBSD Stable Mailing List , des@FreeBSD.ORG Subject: Re: ssh to remote machines problem after cvsup References: <20020708152519.O84324-100000@zoot.corp.yahoo.com> <3D2A2A60.4090807@eziba.com> <3D2B18C9.B266193A@FreeBSD.org> <3D2B270B.2050201@eziba.com> <20020713024753.GH2527@gits.dyndns.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Cyrille Lefevre wrote: > the problem here isn't the Protocol switch which is valiable. > it is the OpenSSH bug which fail to fallback from v2 to v1 when not > available. so, Doug is right and I'm w/ him when he though that > shouldn't happen until this `feature' isn't fixed and arguing than > UPDATING is the solution is too simple. this commit break some > installation in a way it shouldn't. point. I have to agree with this logic. My mistake for not being aware that the "backwards" protocol change was to work around a bug in the updated openssh. jay To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 11:14:16 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9963C37B400 for ; Mon, 15 Jul 2002 11:14:13 -0700 (PDT) Received: from outersurf.com (nat200-118.mpoweredpc.net [142.177.200.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id E098C43E67 for ; Mon, 15 Jul 2002 11:14:12 -0700 (PDT) (envelope-from jadams@dalalumni.ca) Received: from dalalumni.ca (nobody@outersurf.com [127.0.0.1]) by outersurf.com (8.12.5/8.12.5) with SMTP id g6FIE5lw019142 for ; Mon, 15 Jul 2002 15:14:05 -0300 (ADT) (envelope-from jadams@dalalumni.ca) From: "Joseph D. Adams" Received: from 172.16.0.12 (SquirrelMail authenticated user jadams) by mail.dalalumni.ca with HTTP; Mon, 15 Jul 2002 15:14:05 -0300 (ADT) Message-ID: <4575.172.16.0.12.1026756845.squirrel@mail.dalalumni.ca> Date: Mon, 15 Jul 2002 15:14:05 -0300 (ADT) Subject: To: X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal X-Mailer: SquirrelMail (version 1.2.7) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG auth 18f3741d subscribe freebsd-stable jadams@dalalumni.ca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 12:16:48 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF66437B401; Mon, 15 Jul 2002 12:16:39 -0700 (PDT) Received: from alicia.nttmcl.com (alicia.nttmcl.com [216.69.69.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EB6843E42; Mon, 15 Jul 2002 12:16:39 -0700 (PDT) (envelope-from jj@alicia.nttmcl.com) Received: (from jj@localhost) by alicia.nttmcl.com (8.10.1/8.10.1) id g6FJGMB06048; Mon, 15 Jul 2002 12:16:22 -0700 (PDT) Date: Mon, 15 Jul 2002 12:16:22 -0700 From: Shannon -jj Behrens To: "Richard Seaman, Jr." , Don Bowman , freebsd-stable@FreeBSD.ORG, freebsd-java@FreeBSD.ORG Subject: Re: linux JRE 1.4 under linux compatibility only runs as root Message-ID: <20020715121622.A4888@alicia.nttmcl.com> Mail-Followup-To: Shannon -jj Behrens , "Richard Seaman, Jr." , Don Bowman , freebsd-stable@FreeBSD.ORG, freebsd-java@FreeBSD.ORG References: <20020711214742.C259A37B406@hub.freebsd.org> <20020711150748.B14694@alicia.nttmcl.com> <20020711174958.E32743@seaman.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20020711174958.E32743@seaman.org>; from dick@seaman.org on Thu, Jul 11, 2002 at 05:49:58PM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ok, I've submitted a PR for this: Hopefully, someone will commit your patch :) -jj > On Thu, Jul 11, 2002 at 03:07:48PM -0700, Shannon -jj Behrens wrote: > > > > I know several other people have run into the problem where > > > > the (Linux) JDK or JRE 1.4 will only run as root. > > > > Tracing this with 'ktrace', the issue is a statfs call, > > > > which returns 'RESTART'. I don't see that errno listed on > > > > the man page for statfs, I guess it must come from the > > > > linux_statfs in compat/linux. > > > > > > > > 48927 java CALL statfs(0xbf1f) > > > > 48927 java RET statfs RESTART > > > > > > OK, after having found out that 'ktrace' isn't appropriate > > > for linux executables (use truss or linux_kdump), I found that > > > the culprit is actually: > > > > > > linux_sched_getscheduler(0xcb18) ERR#1 'Operation not > > > permitted' > > > > > > when root, this is permitted. When non-root, this is not-permitted. > > > > > > Suggestions? Is this a problem with the linux emulation? Or is > > > there a permissions difference between linux & freebsd here? > > > > I'm having the same problem. It looks like this has been discussed on -STABLE, > > -JAVA, -HACKERS, and -QUESTIONS, but to no avail: > > > > > > > > I'm sorry for the redundant cross-post, but this looks like a hard one to > > solve. > > Not hard at all. The perms in sched_getscheduler in -stable are silly. > (also sched_getparam). Just try changing it to something like the patch > below (note that I don't have a stable system at the moment, so I don't > guarantee it works, nor that it even compiles -- take it as a guide only). > > --- p1003_1b.c.orig Thu Jul 11 17:29:55 2002 > +++ p1003_1b.c Thu Jul 11 17:40:51 2002 > @@ -211,14 +211,24 @@ > int sched_getscheduler(struct proc *p, > struct sched_getscheduler_args *uap) > { > - int e; > - (void) (0 > - || (e = p31b_proc(p, uap->pid, &p)) > - || (e = ksched_getscheduler(&p->p_retval[0], ksched, p)) > - ); > + int e = 0; > + struct proc *targetp; > > - return e; > + if (uap->pid == 0) { > + targetp = p; > + } else { > + targetp = pfind(uap->pid); > + if (targetp == NULL) { > + e = ESRCH; > + } > + } > + > + if (e == 0) > + e = ksched_getscheduler(&p->p_retval[0], ksched, targetp); > + > + return (e); > } > + > int sched_yield(struct proc *p, > struct sched_yield_args *uap) > { > > -- > Richard Seaman, Jr. email: dick@seaman.org > 5182 N. Maple Lane phone: 262-367-5450 > Nashotah WI 53058 fax: 262-367-5852 -- Real programmers don't draw flowcharts. Flowcharts are, after all, the illiterate's form of documentation. Cavemen drew flowcharts; look how much good it did them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 12:40: 7 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45A3137B401; Mon, 15 Jul 2002 12:39:58 -0700 (PDT) Received: from viefep11-int.chello.at (viefep11-int.chello.at [213.46.255.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC54F43E5E; Mon, 15 Jul 2002 12:39:56 -0700 (PDT) (envelope-from ant@overclockers.at) Received: from Deadcell.ant ([212.17.108.240]) by viefep11-int.chello.at (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with ESMTP id <20020715193955.DVAC4240.viefep11-int.chello.at@Deadcell.ant>; Mon, 15 Jul 2002 21:39:55 +0200 Received: from Deadcell.ant (localhost [127.0.0.1]) by Deadcell.ant (8.12.4/8.12.3) with ESMTP id g6FJdt5Q042190; Mon, 15 Jul 2002 21:39:55 +0200 (CEST) (envelope-from ant@Deadcell.ant) Received: (from ant@localhost) by Deadcell.ant (8.12.4/8.12.4/Submit) id g6FJdnjF042189; Mon, 15 Jul 2002 21:39:49 +0200 (CEST) Date: Mon, 15 Jul 2002 21:39:49 +0200 From: Andreas Ntaflos To: Bob Boyken Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: autoconf/aclocal woes at building lyx-1.1.6 Message-ID: <20020715193949.GB644@Deadcell.ant> References: <20020712141821.GB372@Deadcell.ant> <20020712121344.0831592d.bob@boyken.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020712121344.0831592d.bob@boyken.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jul 12, 2002 at 12:13:44PM -0500, Bob Boyken wrote: > Your answer is here: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/35197 > > Bob > Yep, thanks a lot, that's it! regards -- Andreas "ant" Ntaflos ant@overclockers.at Vienna, AUSTRIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 13:30:35 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F53E37B400 for ; Mon, 15 Jul 2002 13:30:29 -0700 (PDT) Received: from mailhost.xciv.org (vantage.xciv.org [195.82.119.76]) by mx1.FreeBSD.org (Postfix) with ESMTP id B035643E31 for ; Mon, 15 Jul 2002 13:30:28 -0700 (PDT) (envelope-from paul@xciv.org) Received: from localhost ([127.0.0.1] helo=xciv.org) by mailhost.xciv.org with esmtp id 17UCUF-0005po-00; Mon, 15 Jul 2002 21:30:27 +0100 To: freebsd-stable@freebsd.org Subject: installworld failing (sup @ Jul 15 21:07) Organization: XCIV, London UK Reply-To: paul@xciv.org Date: Mon, 15 Jul 2002 21:30:26 +0100 Message-ID: <10254.1026765026@xciv.org> From: Paul Civati Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Someone forgot a bracket. ===> share/examples (cd /build/src/share/examples/../../etc; make etc-examples) (cd /build/src/etc; install -c -o root -g wheel -m 444 amd.map apmd.conf auth. conf crontab csh.cshrc csh.login csh.logout dhclient.conf dm.conf fbtab ftpuse rs gettytab group hosts hosts.allow host.conf hosts.equiv hosts.lpd inetd.conf login.access login.conf motd modems networks newsyslog.conf pam.conf phones p rintcap profile protocols rc rc.atm rc.diskless1 rc.diskless2 rc.firewall rc.fi rewall6 rc.network rc.network6 rc.pccard rc.sendmail rc.serial rc.shutdown rc. syscons rc.sysctl remote rpc services shells sysctl.conf syslog.conf usbd.conf etc.i386/disktab etc.i386/rc.i386 etc.i386/ttys /build/src/etc/../gnu/usr.bi n/man/manpath/manpath.config /build/src/etc/../usr.bin/mail/misc/mail.rc /buil d/src/etc/../usr.bin/locate/locate/locate.rc netstart pccard_ether rc.suspend rc .resume nsmb.conf opieaccess /usr/share/examples/etc; cd /build/src/etc/defaul ts; install -c -o root -g wheel -m 444 rc.conf make.conf pccard.conf periodic.c onf /usr/share/examples/etc/defaults; Syntax error: end of file unexpected (expecting ")") *** Error code 2 BTW, if I modify my local 'src/etc/Makefile' locally, as a temporary fix, will cvsup overwrite it correctly when the CVS repository one is updated? -Paul- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 13:30:51 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAA6D37B40C; Mon, 15 Jul 2002 13:30:43 -0700 (PDT) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44CD743E5E; Mon, 15 Jul 2002 13:30:43 -0700 (PDT) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id B0F40534A; Mon, 15 Jul 2002 22:30:40 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Jay Sachs Cc: Cyrille Lefevre , Doug Barton , stan , FreeBSD Stable Mailing List Subject: Re: ssh to remote machines problem after cvsup References: <20020708152519.O84324-100000@zoot.corp.yahoo.com> <3D2A2A60.4090807@eziba.com> <3D2B18C9.B266193A@FreeBSD.org> <3D2B270B.2050201@eziba.com> <20020713024753.GH2527@gits.dyndns.org> <3D3301DF.70801@eziba.com> From: Dag-Erling Smorgrav Date: 15 Jul 2002 22:30:39 +0200 In-Reply-To: <3D3301DF.70801@eziba.com> Message-ID: Lines: 17 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jay Sachs writes: > Cyrille Lefevre wrote: > > the problem here isn't the Protocol switch which is valiable. > > it is the OpenSSH bug which fail to fallback from v2 to v1 when not > > available. so, Doug is right and I'm w/ him when he though that > > shouldn't happen until this `feature' isn't fixed and arguing than > > UPDATING is the solution is too simple. this commit break some > > installation in a way it shouldn't. point. > I have to agree with this logic. My mistake for not being aware that > the "backwards" protocol change was to work around a bug in the > updated openssh. It isn't. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 13:41:43 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CE0937B400 for ; Mon, 15 Jul 2002 13:41:39 -0700 (PDT) Received: from smurf.jnielsen.net (12-254-136-47.client.attbi.com [12.254.136.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F5B343E64 for ; Mon, 15 Jul 2002 13:41:38 -0700 (PDT) (envelope-from stable@jnielsen.net) Received: from max (max.local [192.168.0.9]) by smurf.jnielsen.net (8.12.3/8.12.3) with SMTP id g6FKfTOZ001092 for ; Mon, 15 Jul 2002 14:41:29 -0600 (MDT) (envelope-from stable@jnielsen.net) Message-ID: <001d01c22c3f$ff753b70$0900a8c0@max> From: "John Nielsen" To: Subject: XFree86-4-FontServer won't build under 4.6-p2 Date: Mon, 15 Jul 2002 14:41:29 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Spam-Status: No, hits=0.2 required=5.0 tests=WEIRD_PORT,AWL version=2.30 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm seeing this on two different machines, both running 4.6-RELEASE-p2 (fresh install of 4.6 followed by an installworld over NFS). I'm not sure if the problem is with the port or the p2 release (it seems like I successfully built X recently on a different machine). Has anyone else seen this? Any ideas what to do about it? Wraphelp.c is being fetched properly, and other parts of XFree86-4 built fine. Any input would be appreciated. :) Here's the tail end of the build output: LD_LIBRARY_PATH=../../exports/lib cc -c -O -pipe -ansi -pedantic -Dasm=__asm -Wall -Wpointer-arith -I.. /.. -I../../exports/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO= 15 -DNARROWPROTO -DHASXDMAUTH -ansi -pedantic -Dasm=__asm -Wall -Wpoint er-arith -I../.. -I../../exports/include -I/usr/X11R6/include -DCSRG_BAS ED -DFUNCPROTO=15 -DNARROWPROTO -DHASXDMAUTH Wrap.c Wrap.c: In function `XdmcpWrap': Wrap.c:64: warning: implicit declaration of function `_XdmcpAuthSetup' Wrap.c:85: warning: implicit declaration of function `_XdmcpAuthDoIt' rm -f Unwrap.o LD_LIBRARY_PATH=../../exports/lib cc -c -O -pipe -ansi -pedantic -Dasm=__asm -Wall -Wpointer-arith -I.. /.. -I../../exports/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO= 15 -DNARROWPROTO -DHASXDMAUTH -ansi -pedantic -Dasm=__asm -Wall -Wpoint er-arith -I../.. -I../../exports/include -I/usr/X11R6/include -DCSRG_BAS ED -DFUNCPROTO=15 -DNARROWPROTO -DHASXDMAUTH Unwrap.c Unwrap.c: In function `XdmcpUnwrap': Unwrap.c:70: warning: implicit declaration of function `_XdmcpAuthSetup' Unwrap.c:79: warning: implicit declaration of function `_XdmcpAuthDoIt' make: don't know how to make Wraphelp.c. Stop *** Error code 2 Stop in /usr/ports/x11-servers/XFree86-4-FontServer/work/xc/lib. *** Error code 1 Stop in /usr/ports/x11-servers/XFree86-4-FontServer/work/xc. *** Error code 1 Stop in /usr/ports/x11-servers/XFree86-4-FontServer/work/xc. *** Error code 1 Stop in /usr/ports/x11-servers/XFree86-4-FontServer. *** Error code 1 Stop in /usr/ports/x11/XFree86-4. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 13:42:12 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C35E437B401; Mon, 15 Jul 2002 13:42:03 -0700 (PDT) Received: from iguana.icir.org (iguana.icir.org [192.150.187.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F61B43E84; Mon, 15 Jul 2002 13:42:01 -0700 (PDT) (envelope-from rizzo@iguana.icir.org) Received: (from rizzo@localhost) by iguana.icir.org (8.11.6/8.11.3) id g6FKg0S91816; Mon, 15 Jul 2002 13:42:00 -0700 (PDT) (envelope-from rizzo) Date: Mon, 15 Jul 2002 13:42:00 -0700 From: Luigi Rizzo To: ipfw@FreeBSD.ORG Subject: updated ipfw2 patches for -stable Message-ID: <20020715134200.A91754@iguana.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG [Bcc to -stable as relevant there] As the subject says, the latest patches to run ipfw2 on -stable are at http://info.iet.unipi.it/~luigi/ipfw2.stable.020715.diffs They rely on the code that I have committed to -stable last week, and replicate the functionality that is available in -current in the CVS repository. This version fixes all bugs reported so far (which were limited to minor problems in the userland code, and alignment issues on 64-bit architectures) and implements keepalives to prevent dynamic rules from expiring when your session is idle for longer than the timeout. Once you have patched your source tree, you need to add options IPFW2 to your kernel config file to have the new functionality available, otherwise you will still use the old ipfw code. You also need to recompile /sbin/ipfw. Note that this patch *does not* update libalias (I will add patches for that in the next version of the code). (For the curious, ipfw2 is a nickname for the new firewall code which is in -current. It is much faster and more flexible than the old one, and implements the old ipfw syntax as a subset, so your existing configuration files should work unmodified -- and if they don't, please report the rule(s) where it chokes so i can fix that). cheers luigi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 13:50:10 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2144B37B401 for ; Mon, 15 Jul 2002 13:50:04 -0700 (PDT) Received: from smtp1.wanadoo.nl (smtp1.wanadoo.nl [194.134.35.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0992043E67 for ; Mon, 15 Jul 2002 13:50:01 -0700 (PDT) (envelope-from steve@sohara.org) Received: from ams-gw.sohara.org (p0858.vwa.wanadoo.nl [194.134.198.90]) by smtp1.wanadoo.nl (Postfix) with SMTP id 85ECD5B3CF; Mon, 15 Jul 2002 22:49:57 +0200 (MEST) Date: Mon, 15 Jul 2002 22:49:53 +0200 From: Steve O'Hara-Smith To: Cyrille Lefevre Cc: dsyphers@uchicago.edu, ugly@inhuman.org, freebsd-stable@FreeBSD.ORG Subject: Re: /dev/dsp reports "device busy" but nothing using it Message-Id: <20020715224953.79d5b45c.steve@sohara.org> In-Reply-To: <20020714120716.GE35142@gits.dyndns.org> References: <20020713022152.22036620.ugly@inhuman.org> <200207130215.34890.dsyphers@uchicago.edu> <20020714120716.GE35142@gits.dyndns.org> X-Mailer: Sylpheed version 0.7.8 (GTK+ 1.2.10; i386-portbld-freebsd4.6) X-Face: %]+HVL}K`P8>+8ZcY-WGHP6j@&mxMo9JH6_WdgIgUGH)JX/usO0%jy7T~IVgqjumD^OBqX,Kv^-GM6mlw(fI^$"QRKyZ$?xx/ Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 14 Jul 2002 14:07:16 +0200 Cyrille Lefevre wrote: CL> $ grep vchan /etc/sysctl.conf CL> hw.snd.pcm0.vchans=2 Doesn't this just make the vchans block up one by one ? I get /dev/pcm locked out occasionally by mplayer in particular (and I'm now starting to wonder if that's exclusively at fault). -- C:>WIN | Directable Mirrors The computer obeys and wins. |A Better Way To Focus The Sun You lose and Bill collects. | licenses available - see: | http://www.sohara.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 15 14:21:16 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B080337B400 for ; Mon, 15 Jul 2002 14:21:12 -0700 (PDT) Received: from carmel.diva.nl (carmel.diva.nl [213.136.18.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id B31DD43E64 for ; Mon, 15 Jul 2002 14:21:11 -0700 (PDT) (envelope-from boland@carmel.diva.nl) Received: from localhost (boland@localhost) by carmel.diva.nl (8.11.6/8.11.6) with ESMTP id g6FLL2U40842 for ; Mon, 15 Jul 2002 23:21:02 +0200 (CEST) (envelope-from boland@carmel.diva.nl) Date: Mon, 15 Jul 2002 23:21:02 +0200 (CEST) From: Michiel Boland To: stable@freebsd.org Subject: RELENG_4_4 merges Message-ID: <20020715152201.N38467-100000@carmel.diva.nl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi. Can someone explain the sudden rush of fixes into the RELENG_4_4 branch? For instance, just exactly what good does the BIND 8.3.3 merge do? Surely people who want to run BIND 8.3.3 on RELENG_4_4 can use the port. Please correct me if I'm wrong, but I thought the 'remote buffer overrun' bug in earlier BIND versions was in libbind.a, which isn't even installed on a stock FreeBSD system, as far as I can see. Just exactly what's next? Are we going to see merges of things like sendmail 8.12.3 into RELENG_4_4!?!? I'm just trying to get things clear here. Perhaps I'm missing the point completely (as usual). But I would think that this continuous merging of stuff into RELENG_4_4 creates a maintenance nightmare for everyone who runs off this branch. Confused, Cheers Michiel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 14:30:45 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21CBB37B400 for ; Mon, 15 Jul 2002 14:30:44 -0700 (PDT) Received: from osvald.void.ru (osvald.void.ru [195.209.226.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E33243E58 for ; Mon, 15 Jul 2002 14:30:43 -0700 (PDT) (envelope-from krok@osvald.void.ru) Received: (from krok@localhost) by osvald.void.ru (0.0.0/6.6.6) id g6FLXQb72508 for freebsd-stable@FreeBSD.org; Tue, 16 Jul 2002 01:33:26 +0400 (MSD) (envelope-from krok) Date: Tue, 16 Jul 2002 01:33:26 +0400 (MSD) From: krok Message-Id: <200207152133.g6FLXQb72508@osvald.void.ru> To: freebsd-stable@FreeBSD.org Subject: subscribe freebsd-stable Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG subscribe freebsd-stable To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 14:35:53 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B714D37B400 for ; Mon, 15 Jul 2002 14:35:48 -0700 (PDT) Received: from sage-one.net (adsl-65-71-135-137.dsl.crchtx.swbell.net [65.71.135.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3A3643E77 for ; Mon, 15 Jul 2002 14:35:44 -0700 (PDT) (envelope-from jackstone@sage-one.net) Received: from sagea (sagea [192.168.0.3]) by sage-one.net (8.11.6/8.11.6) with SMTP id g6FLZQ542166; Mon, 15 Jul 2002 16:35:32 -0500 (CDT) (envelope-from jackstone@sage-one.net) Message-Id: <3.0.5.32.20020715163524.0117a758@mail.sage-one.net> X-Sender: jackstone@mail.sage-one.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Mon, 15 Jul 2002 16:35:24 -0500 To: Michiel Boland , stable@FreeBSD.ORG From: "Jack L. Stone" Subject: Re: RELENG_4_4 merges In-Reply-To: <20020715152201.N38467-100000@carmel.diva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 11:21 PM 7.15.2002 +0200, Michiel Boland wrote: >Hi. > >Can someone explain the sudden rush of fixes into the RELENG_4_4 branch? >For instance, just exactly what good does the BIND 8.3.3 merge do? >Surely people who want to run BIND 8.3.3 on RELENG_4_4 can use the port. >Please correct me if I'm wrong, but I thought the 'remote buffer overrun' >bug in earlier BIND versions was in libbind.a, which isn't even installed >on a stock FreeBSD system, as far as I can see. > >Just exactly what's next? Are we going to see merges of things like >sendmail 8.12.3 into RELENG_4_4!?!? > >I'm just trying to get things clear here. Perhaps I'm missing the point >completely (as usual). But I would think that this continuous merging of >stuff into RELENG_4_4 creates a maintenance nightmare for everyone who >runs off this branch. > >Confused, > >Cheers >Michiel HUH! Now, that has me confused. I'm following RELENG_4_5 and nothing merged there. Still has the old BIND 8.2.4-REL, that I wish had been merged.... Are you sure you are following 4_4....??? Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.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 15 14:42: 7 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 181E237B400 for ; Mon, 15 Jul 2002 14:42:03 -0700 (PDT) Received: from mailb.telia.com (mailb.telia.com [194.22.194.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF3B643E65 for ; Mon, 15 Jul 2002 14:42:01 -0700 (PDT) (envelope-from erikt@midgard.homeip.net) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by mailb.telia.com (8.12.5/8.12.5) with ESMTP id g6FLg0oF004637 for ; Mon, 15 Jul 2002 23:42:00 +0200 (CEST) X-Original-Recipient: Received: from falcon.midgard.homeip.net (h53n2fls20o913.telia.com [212.181.163.53]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id XAA22507 for ; Mon, 15 Jul 2002 23:41:58 +0200 (CEST) Received: (qmail 52280 invoked by uid 1001); 15 Jul 2002 21:41:55 -0000 Date: Mon, 15 Jul 2002 23:41:54 +0200 From: Erik Trulsson To: "Jack L. Stone" Cc: Michiel Boland , stable@FreeBSD.ORG Subject: Re: RELENG_4_4 merges Message-ID: <20020715214154.GA51011@falcon.midgard.homeip.net> Mail-Followup-To: "Jack L. Stone" , Michiel Boland , stable@FreeBSD.ORG References: <20020715152201.N38467-100000@carmel.diva.nl> <3.0.5.32.20020715163524.0117a758@mail.sage-one.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3.0.5.32.20020715163524.0117a758@mail.sage-one.net> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jul 15, 2002 at 04:35:24PM -0500, Jack L. Stone wrote: > At 11:21 PM 7.15.2002 +0200, Michiel Boland wrote: > >Hi. > > > >Can someone explain the sudden rush of fixes into the RELENG_4_4 branch? > >For instance, just exactly what good does the BIND 8.3.3 merge do? > >Surely people who want to run BIND 8.3.3 on RELENG_4_4 can use the port. > >Please correct me if I'm wrong, but I thought the 'remote buffer overrun' > >bug in earlier BIND versions was in libbind.a, which isn't even installed > >on a stock FreeBSD system, as far as I can see. > > > >Just exactly what's next? Are we going to see merges of things like > >sendmail 8.12.3 into RELENG_4_4!?!? > > > >I'm just trying to get things clear here. Perhaps I'm missing the point > >completely (as usual). But I would think that this continuous merging of > >stuff into RELENG_4_4 creates a maintenance nightmare for everyone who > >runs off this branch. > > > >Confused, > > > >Cheers > >Michiel > > HUH! Now, that has me confused. I'm following RELENG_4_5 and nothing merged > there. Still has the old BIND 8.2.4-REL, that I wish had been merged.... > > Are you sure you are following 4_4....??? You haven't been following it closely enough. BIND 8.3.3 was merged to RELENG_4_6, 4_5 and 4_4 earlier today. Do a cvsup and you will see it. As to why it was merged to these branches is a question I don't know the answer to, but I assume there is some good reason for it. -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 14:43:47 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71EB037B49B for ; Mon, 15 Jul 2002 14:43:31 -0700 (PDT) Received: from ntaihsd.ne.client2.attbi.com (ntaihsd.ne.client2.attbi.com [24.147.210.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B49843E4A for ; Mon, 15 Jul 2002 14:43:30 -0700 (PDT) (envelope-from naoyuki_tai@mac.com) Received: from nile.ntaihsd.ne.client2.attbi.com (nile.camelsoft.com [192.168.10.31]) by ntaihsd.ne.client2.attbi.com (8.12.5/8.12.5) with ESMTP id g6FLhOFa052589; Mon, 15 Jul 2002 17:43:24 -0400 (EDT) (envelope-from naoyuki_tai@mac.com) Date: Mon, 15 Jul 2002 17:43:24 -0400 Message-ID: <86k7nwwttv.wl@mac.com> From: =?ISO-2022-JP?B?GyRCRUQwZkQ+RzcbKEI=?= To: freebsd-stable@freebsd.org Subject: mbuf clusters behavior (NMBCLUSTERS) User-Agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory?= =?ISO-8859-4?Q?=F2mae?=) APEL/10.3 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I'm seeing a bit of problem with my FreeBSD 4.6 stable server. In short, how can I prevent "mbuf clusters exhaustion"? My server: FreeBSD 4.6 Stable, Intel P3 933 / 256M Memory / a pair of 60G IDE drives (Seagate ATA IV). NIC: Intel EtherExpress 100+ NFS export. My workstation: RH Linux 7.3 Athlon 850, NIC: 3com 950 NFS mounts the FreeBSD server's NFS When I copy a 500M file (like iso image) from the workstation to the server, the server starts to emit: Jul 12 09:28:54 nile /kernel: All mbuf clusters exhausted, please see tuning(7). So, I bumped up the nmbclusters to kern.ipc.nmbclusters=65536 I allocated 128Mbytes to the mbuf clusters, hoping that it is big enough. But, it still shows that the same All mbuf clusters exhausted, please see tuning(7). Hmm. So, I watched 'netstat -m' output while copying a file between the freebsd server and rh client. 95/48080/262144 mbufs in use (current/peak/max): 94 mbufs allocated to data 1 mbufs allocated to packet headers 92/36424/65536 mbuf clusters in use (current/peak/max) 84868 Kbytes allocated to network (0% of mb_map in use) 0 requests for memory denied 0 requests for memory delayed 0 calls to protocol drain routines I type % cp a-big-file-on-the-workstation a-freebsd-servers-directory While copying the file 92/36424/65536 mbuf clusters in use (current/peak/max) : 8498/36424/65536 mbuf clusters in use (current/peak/max) : 28567/36424/65536 mbuf clusters in use (current/peak/max) I suspend the cp. The mbuf clusters stays the same for about 10 to 20 seconds. And then, it starts to come down. ---------------- If I do not suspend the copy command, the mbuf clusters hit the max and the server starts to drop the packets. It slows down the nfs serving severly due to its nfs retry. How can I prevent this "mbuf clusters exhaustion"? Increasing mbuf clusters is not an option. There is no way that I can allocate big enough for all of files I copy. Relating to this, I do not understand why that the mbuf clusters are not freed fast enough. I watched "top" and it does seem to be that CPU is not exhausted. After all, I'm copying less than 10Mbyte/sec, probably 6 - 7 Mbytes at most. Hard disk is a Seagate ATA/IV 60Gbyte.The drive is hooked up to a Promise PCI ATA/UDMA 100 controller card. bonnie shows that it can sustain 15M - 20M bytes read/write. Is there anything I can try? Thank you! -- ntai@mac.com, Naoyuki "Tai" Tai P.S. I sent this message to freebsd-questions, but, did not get any response. If you've seen this message before, sorry. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 14:45:40 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8507237B418 for ; Mon, 15 Jul 2002 14:45:24 -0700 (PDT) Received: from clink.schulte.org (clink.schulte.org [209.134.156.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2A3343E6A for ; Mon, 15 Jul 2002 14:45:23 -0700 (PDT) (envelope-from schulte+freebsd@nospam.schulte.org) Received: from localhost (localhost [127.0.0.1]) by clink.schulte.org (Postfix) with ESMTP id 46A3A243C0; Mon, 15 Jul 2002 16:45:22 -0500 (CDT) Received: from schulte-laptop.nospam.schulte.org (nb-65.netbriefings.com [209.134.134.65]) by clink.schulte.org (Postfix) with ESMTP id A423B243BE; Mon, 15 Jul 2002 16:45:19 -0500 (CDT) Message-Id: <5.1.1.6.2.20020715164145.045004c8@pop3s.schulte.org> X-Sender: (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.1.1 Date: Mon, 15 Jul 2002 16:44:57 -0500 To: "Jack L. Stone" , Michiel Boland , stable@FreeBSD.ORG From: Christopher Schulte Subject: Re: RELENG_4_4 merges In-Reply-To: <3.0.5.32.20020715163524.0117a758@mail.sage-one.net> References: <20020715152201.N38467-100000@carmel.diva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: by AMaViS 0.3.12pre6 on clink.schulte.org Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 04:35 PM 7/15/2002 -0500, Jack L. Stone wrote: >HUH! Now, that has me confused. I'm following RELENG_4_5 and nothing merged >there. Still has the old BIND 8.2.4-REL, that I wish had been merged.... > >Are you sure you are following 4_4....??? http://www.freebsd.org/cgi/cvsweb.cgi/src/contrib/bind/?only_with_tag=RELENG_4_4 Looks to have had 8.3.3 imported. as did RELENG_4_5 and RELENG_4_6: http://www.freebsd.org/cgi/cvsweb.cgi/src/contrib/bind/?only_with_tag=RELENG_4_5 http://www.freebsd.org/cgi/cvsweb.cgi/src/contrib/bind/?only_with_tag=RELENG_4_6 Nothing in UPDATING yet. >Best regards, >Jack L. Stone, >Administrator > >SageOne Net >http://www.sage-one.net >jackstone@sage-one.net -- Christopher Schulte http://www.schulte.org/ Do not un-munge my @nospam.schulte.org email address. This address is valid. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 14:49:33 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81B0837B400 for ; Mon, 15 Jul 2002 14:49:30 -0700 (PDT) Received: from sage-one.net (adsl-65-71-135-137.dsl.crchtx.swbell.net [65.71.135.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4CB243E65 for ; Mon, 15 Jul 2002 14:49:29 -0700 (PDT) (envelope-from jackstone@sage-one.net) Received: from sagea (sagea [192.168.0.3]) by sage-one.net (8.11.6/8.11.6) with SMTP id g6FLnO542350; Mon, 15 Jul 2002 16:49:24 -0500 (CDT) (envelope-from jackstone@sage-one.net) Message-Id: <3.0.5.32.20020715164922.0117a758@mail.sage-one.net> X-Sender: jackstone@mail.sage-one.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Mon, 15 Jul 2002 16:49:22 -0500 To: Christopher Schulte , Michiel Boland , stable@FreeBSD.ORG From: "Jack L. Stone" Subject: Re: RELENG_4_4 merges In-Reply-To: <5.1.1.6.2.20020715164145.045004c8@pop3s.schulte.org> References: <3.0.5.32.20020715163524.0117a758@mail.sage-one.net> <20020715152201.N38467-100000@carmel.diva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 04:44 PM 7.15.2002 -0500, Christopher Schulte wrote: >At 04:35 PM 7/15/2002 -0500, Jack L. Stone wrote: >>HUH! Now, that has me confused. I'm following RELENG_4_5 and nothing merged >>there. Still has the old BIND 8.2.4-REL, that I wish had been merged.... >> >>Are you sure you are following 4_4....??? > >http://www.freebsd.org/cgi/cvsweb.cgi/src/contrib/bind/?only_with_tag=RELEN G_4_4 > >Looks to have had 8.3.3 imported. > >as did RELENG_4_5 and RELENG_4_6: > >http://www.freebsd.org/cgi/cvsweb.cgi/src/contrib/bind/?only_with_tag=RELEN G_4_5 >http://www.freebsd.org/cgi/cvsweb.cgi/src/contrib/bind/?only_with_tag=RELEN G_4_6 > >Nothing in UPDATING yet. > Great...! ...I think... I was about to install 8.3.3 from ports, so this saves me the trouble..... my cvsup is a couple weeks old. Glad I was watching the list....! Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.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 15 15: 2:39 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E67DD37B401; Mon, 15 Jul 2002 15:02:26 -0700 (PDT) Received: from mail.rpi.edu (mail.rpi.edu [128.113.22.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DF8943E5E; Mon, 15 Jul 2002 15:02:26 -0700 (PDT) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.netel.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.12.1/8.12.1) with ESMTP id g6FM2B3W018196; Mon, 15 Jul 2002 18:02:12 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <001d01c22c3f$ff753b70$0900a8c0@max> References: <001d01c22c3f$ff753b70$0900a8c0@max> Date: Mon, 15 Jul 2002 18:02:11 -0400 To: "John Nielsen" , From: Garance A Drosihn Subject: Re: XFree86-4-FontServer won't build under 4.6-p2 Cc: Eric Anholt Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: MIMEDefang 2.3 (www dot roaringpenguin dot com slash mimedefang) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 2:41 PM -0600 7/15/02, John Nielsen wrote: >I'm seeing this on two different machines, both running 4.6-RELEASE-p2 >(fresh install of 4.6 followed by an installworld over NFS). >I'm not sure if the problem is with the port or the p2 release >(it seems like I successfully built X recently on a different >machine). Has anyone else seen this? Any ideas what to do >about it? Wraphelp.c is being fetched properly, and other parts >of XFree86-4 built fine. Any input would be appreciated. :) > >Here's the tail end of the build output: [...skipping...] >Unwrap.c: In function `XdmcpUnwrap': >Unwrap.c:70: warning: implicit declaration of function `_XdmcpAuthSetup' >Unwrap.c:79: warning: implicit declaration of function `_XdmcpAuthDoIt' >make: don't know how to make Wraphelp.c. Stop >*** Error code 2 > >Stop in /usr/ports/x11-servers/XFree86-4-FontServer/work/xc/lib. You say that "Wraphelp.c is being fetched properly". Fetched by who? Where did you put it? I suspect this is a temp oversight in the latest XFree86-4 ports. I ran into this last night, and in my case I just did the quick-fix workaround of copying Wraphelp.c (which I had downloaded) into the proper directory under /usr/ports/x11-servers/XFree86-4-FontServer/work/xc there is some README or INSTALL file there which said where it had to go. I then cd'ed into that /usr/ports/x11-servers/XFree86-4-FontServer/work/xc directory and did the "make". I then cd'ed into /usr/ports/x11-servers/XFree86-4-FontServer and did the 'make install && make clean' This seemed to get me going, on freebsd-current. This is the first time I've been able to rebuild all of X on -current in quite a few weeks, and I was very happy to see all the recent work on the XFree86-4 ports! -- Garance Alistair Drosehn = gad@gilead.netel.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 15: 9:16 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5892B37B400; Mon, 15 Jul 2002 15:09:12 -0700 (PDT) Received: from frl.nisser.com (c0039.upc-c.chello.nl [212.187.0.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4D4743E42; Mon, 15 Jul 2002 15:09:11 -0700 (PDT) (envelope-from roelof@eboa.com) Received: from eboa.com (roelof.nisser.com [10.0.0.2]) by frl.nisser.com (Postfix) with ESMTP id 61193EA94; Tue, 16 Jul 2002 00:09:07 +0200 (CEST) Message-ID: <3D334803.70101@eboa.com> Date: Tue, 16 Jul 2002 00:09:07 +0200 From: Roelof Osinga Organization: eBOA - Programming the Web User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0rc3) Gecko/20020523 X-Accept-Language: en,pdf MIME-Version: 1.0 To: barbish@a1poweruser.com Cc: FBSDQ , stable@freebsd.org Subject: Re: Three nics routing problem References: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Joe & Fhe Barbish wrote: > You need gateway="YES' in your /etc/rc.conf file Hi Joe and everyone else involved, First thanks to y'all. Second, nope. The trick is downing the ed0 interface on the test box. That one found it 'convenient' to use the coax channel for outgoing info. I.e. info directed to the true gateway. So even when a packet got in on the UTP it went out on the coax. Once that interface went down on the test box it stopped that silly behavior. Ah well, I hadn't expected that one . Roelof PS that (gateway) was reflected in the net.inet.ip.forwarding parameter -- _______________________________________________________________________ eBOA® est. 1982 http://eBOA.com/ tel. +31-58-2123014 mailto:info@eBOA.com?subject=Information_request fax. +31-58-2160293 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 15:38:13 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62ADC37B400 for ; Mon, 15 Jul 2002 15:38:09 -0700 (PDT) Received: from angelica.unixdaemons.com (angelica.unixdaemons.com [209.148.64.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82F3943E5E for ; Mon, 15 Jul 2002 15:38:08 -0700 (PDT) (envelope-from bmilekic@angelica.unixdaemons.com) Received: from angelica.unixdaemons.com (bmilekic@localhost.unixdaemons.com [127.0.0.1]) by angelica.unixdaemons.com (8.12.5/8.12.1) with ESMTP id g6FMc06M042414; Mon, 15 Jul 2002 18:38:00 -0400 (EDT) X-Authentication-Warning: angelica.unixdaemons.com: Host bmilekic@localhost.unixdaemons.com [127.0.0.1] claimed to be angelica.unixdaemons.com Received: (from bmilekic@localhost) by angelica.unixdaemons.com (8.12.5/8.12.1/Submit) id g6FMbx4k042413; Mon, 15 Jul 2002 18:37:59 -0400 (EDT) (envelope-from bmilekic) Date: Mon, 15 Jul 2002 18:37:59 -0400 From: Bosko Milekic To: "?$BED0fD>G7?(B" Cc: freebsd-stable@FreeBSD.ORG Subject: Re: mbuf clusters behavior (NMBCLUSTERS) Message-ID: <20020715183759.A38238@unixdaemons.com> References: <86k7nwwttv.wl@mac.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <86k7nwwttv.wl@mac.com>; from naoyuki_tai@mac.com on Mon, Jul 15, 2002 at 05:43:24PM -0400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jul 15, 2002 at 05:43:24PM -0400, ?$BED0fD>G7?(B wrote: [...] > If I do not suspend the copy command, the mbuf clusters hit the > max and the server starts to drop the packets. It slows down the nfs > serving severly due to its nfs retry. Are you sure that you're actually running out of address space? (i.e., does `netstat -m' finally show a totally exhausted cluster pool?) It is also possible to get the messages you mention if, for example, you run out of available RAM. > How can I prevent this "mbuf clusters exhaustion"? Assuming this is really you running out of clusters or mbufs because NMBCLUSTERS is too low and not because you're out of RAM, you can take a look at setting per-UID sbsize (socket buffer) limits. > Increasing mbuf clusters is not an option. There is no way that I > can allocate big enough for all of files I copy. > > Relating to this, I do not understand why that the mbuf clusters > are not freed fast enough. I watched "top" and it does seem to be > that CPU is not exhausted. > After all, I'm copying less than 10Mbyte/sec, probably 6 - 7 Mbytes > at most. > Hard disk is a Seagate ATA/IV 60Gbyte.The drive is hooked up to a > Promise PCI ATA/UDMA 100 controller card. > bonnie shows that it can sustain 15M - 20M bytes read/write. Uhm, I've been following you up to this point. I'm not sure why clusters are not being released faster, either, however: what exactly are you copying from, and what are you copying to? I'm assuming you're copying to an NFS mount somewhere? > Is there anything I can try? Check your memory usage in top. > Thank you! > > -- > ntai@mac.com, Naoyuki "Tai" Tai > > P.S. > > I sent this message to freebsd-questions, but, did not get any > response. If you've seen this message before, sorry. Regards, -- Bosko Milekic bmilekic@unixdaemons.com bmilekic@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 15 16:21:22 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA09C37B400 for ; Mon, 15 Jul 2002 16:21:18 -0700 (PDT) Received: from awww.jeah.net (awww.jeah.net [216.111.239.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7B5143E42 for ; Mon, 15 Jul 2002 16:21:16 -0700 (PDT) (envelope-from chris@JEAH.net) Received: from chris (chris [66.188.91.52]) by awww.jeah.net (8.12.5/8.12.2) with SMTP id g6FNKv41040139 for ; Mon, 15 Jul 2002 18:20:57 -0500 (CDT) (envelope-from chris@JEAH.net) Message-ID: <00ef01c22c56$37c0ff80$345bbc42@mad.chartermi.net> From: "Chris Byrnes" To: Subject: installworld error [/usr/src/share/examples] Date: Mon, 15 Jul 2002 18:20:32 -0500 Organization: JEAH Communications, LLC 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 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG please cc in replies, not subscribed. while running installworld a few minutes ago: ===> share/examples (cd /usr/src/share/examples/../../etc; make etc-examples) (cd /usr/src/etc; install -c -o root -g wheel -m 444 amd.map apmd.conf auth.conf crontab csh.cshrc csh.login csh.logout dhclient.conf dm.conf fbtab ftpusers gettytab group hosts hosts.allow host.conf hosts.equiv hosts.lpd inetd.conf login.access login.conf motd modems networks newsyslog.conf pam.conf phones printcap profile protocols rc rc.atm rc.diskless1 rc.diskless2 rc.firewall rc.firewall6 rc.network rc.network6 rc.pccard rc.sendmail rc.serial rc.shutdown rc.syscons rc.sysctl remote rpc services shells sysctl.conf syslog.conf usbd.conf etc.i386/disktab etc.i386/rc.i386 etc.i386/ttys /usr/src/etc/../gnu/usr.bin/man/manpath/manpath.config /usr/src/etc/../usr.bin/mail/misc/mail.rc /usr/src/etc/../usr.bin/locate/locate/locate.rc rc.isdn netstart pccard_ether rc.suspend rc.resume nsmb.conf opieaccess /usr/share/examples/etc; cd /usr/src/etc/defaults; install -c -o root -g wheel -m 444 rc.conf make.conf pccard.conf periodic.conf /usr/share/examples/etc/defaults; Syntax error: end of file unexpected (expecting ")") *** Error code 2 Stop in /usr/src/etc. *** Error code 1 Stop in /usr/src/share/examples. *** Error code 1 Stop in /usr/src/share. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 16:52:36 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E446A37B400 for ; Mon, 15 Jul 2002 16:52:32 -0700 (PDT) Received: from smurf.jnielsen.net (12-254-136-47.client.attbi.com [12.254.136.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7677543E67 for ; Mon, 15 Jul 2002 16:52:23 -0700 (PDT) (envelope-from stable@jnielsen.net) Received: from max (max.local [192.168.0.9]) by smurf.jnielsen.net (8.12.3/8.12.3) with SMTP id g6FNpAhw000299; Mon, 15 Jul 2002 17:51:11 -0600 (MDT) (envelope-from stable@jnielsen.net) Message-ID: <000b01c22c5a$7f59b720$0900a8c0@max> From: "John Nielsen" To: "Chris Byrnes" , References: <00ef01c22c56$37c0ff80$345bbc42@mad.chartermi.net> Subject: Re: installworld error [/usr/src/share/examples] Date: Mon, 15 Jul 2002 17:51:10 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Spam-Status: No, hits=0.1 required=5.0 tests=AWL version=2.31 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Chris Byrnes wrote: > please cc in replies, not subscribed. > > while running installworld a few minutes ago: > > ===> share/examples > (cd /usr/src/share/examples/../../etc; make etc-examples) > (cd /usr/src/etc; install -c -o root -g wheel -m 444 amd.map apmd.conf > auth.conf crontab csh.cshrc csh.login csh.logout dhclient.conf dm.conf > fbtab ftpusers gettytab group hosts hosts.allow host.conf hosts.equiv > hosts.lpd inetd.conf login.access login.conf motd modems networks > newsyslog.conf pam.conf phones printcap profile protocols rc rc.atm > rc.diskless1 rc.diskless2 rc.firewall rc.firewall6 rc.network rc.network6 > rc.pccard rc.sendmail rc.serial rc.shutdown rc.syscons rc.sysctl remote > rpc services shells sysctl.conf syslog.conf usbd.conf etc.i386/disktab > etc.i386/rc.i386 etc.i386/ttys > /usr/src/etc/../gnu/usr.bin/man/manpath/manpath.config > /usr/src/etc/../usr.bin/mail/misc/mail.rc > /usr/src/etc/../usr.bin/locate/locate/locate.rc rc.isdn netstart > pccard_ether rc.suspend rc.resume nsmb.conf opieaccess > /usr/share/examples/etc; cd /usr/src/etc/defaults; install -c -o root -g > wheel -m 444 rc.conf make.conf pccard.conf periodic.conf > /usr/share/examples/etc/defaults; > Syntax error: end of file unexpected (expecting ")") > *** Error code 2 > > Stop in /usr/src/etc. > *** Error code 1 > > Stop in /usr/src/share/examples. > *** Error code 1 > > Stop in /usr/src/share. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. I got the same thing just now. However I fixed it by replacing the final (and unnecessary) "\" on line 227 of src/etc/Makefile with a ")". Hopefully someone can do the same thing in the CVS tree. JN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 16:56:42 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4B3F37B40A; Mon, 15 Jul 2002 16:56:37 -0700 (PDT) Received: from smurf.jnielsen.net (12-254-136-47.client.attbi.com [12.254.136.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95EF543E64; Mon, 15 Jul 2002 16:55:53 -0700 (PDT) (envelope-from stable@jnielsen.net) Received: from max (max.local [192.168.0.9]) by smurf.jnielsen.net (8.12.3/8.12.3) with SMTP id g6FNsahw000310; Mon, 15 Jul 2002 17:54:37 -0600 (MDT) (envelope-from stable@jnielsen.net) Message-ID: <002501c22c5a$fa360c00$0900a8c0@max> From: "John Nielsen" To: , "Garance A Drosihn" Cc: "Eric Anholt" References: <001d01c22c3f$ff753b70$0900a8c0@max> Subject: Re: XFree86-4-FontServer won't build under 4.6-p2 Date: Mon, 15 Jul 2002 17:54:36 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Spam-Status: No, hits=0.2 required=5.0 tests=WEIRD_PORT,AWL version=2.31 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Garance A Drosihn wrote: > At 2:41 PM -0600 7/15/02, John Nielsen wrote: >> I'm seeing this on two different machines, both running 4.6-RELEASE-p2 >> (fresh install of 4.6 followed by an installworld over NFS). >> I'm not sure if the problem is with the port or the p2 release >> (it seems like I successfully built X recently on a different >> machine). Has anyone else seen this? Any ideas what to do >> about it? Wraphelp.c is being fetched properly, and other parts >> of XFree86-4 built fine. Any input would be appreciated. :) >> >> Here's the tail end of the build output: > [...skipping...] > >> Unwrap.c: In function `XdmcpUnwrap': >> Unwrap.c:70: warning: implicit declaration of function `_XdmcpAuthSetup' >> Unwrap.c:79: warning: implicit declaration of function `_XdmcpAuthDoIt' >> make: don't know how to make Wraphelp.c. Stop >> *** Error code 2 >> >> Stop in /usr/ports/x11-servers/XFree86-4-FontServer/work/xc/lib. > > You say that "Wraphelp.c is being fetched properly". Fetched by who? > Where did you put it? Fetched by the port mechanism, when I did a "make install" in /usr/ports/x11/XFree86-4. It got put in /usr/ports/distfiles/xc, after I renamed the existing xc directory. > I suspect this is a temp oversight in the latest XFree86-4 ports. > I ran into this last night, and in my case I just did the quick-fix > workaround of copying Wraphelp.c (which I had downloaded) into the > proper directory under > /usr/ports/x11-servers/XFree86-4-FontServer/work/xc > > there is some README or INSTALL file there which said where it > had to go. I then cd'ed into that > /usr/ports/x11-servers/XFree86-4-FontServer/work/xc > directory and did the "make". I then cd'ed into > /usr/ports/x11-servers/XFree86-4-FontServer > and did the 'make install && make clean' I will try that. :) > This seemed to get me going, on freebsd-current. This is the first > time I've been able to rebuild all of X on -current in quite a few > weeks, and I was very happy to see all the recent work on the > XFree86-4 ports! Thanks, JN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 18: 9:20 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D01437B400 for ; Mon, 15 Jul 2002 18:09:19 -0700 (PDT) Received: from wattres.Watt.COM (dsl-sj-66-219-76-254.broadviewnet.net [66.219.76.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id E90D943E65 for ; Mon, 15 Jul 2002 18:09:17 -0700 (PDT) (envelope-from steve@Watt.COM) Received: (from steve@localhost) by wattres.Watt.COM (8.12.4/8.12.4) id g6G19CD1066734 for stable@freebsd.org; Mon, 15 Jul 2002 18:09:12 -0700 (PDT) (envelope-from steve) Message-Id: <200207160109.g6G19CD1066734@wattres.Watt.COM> X-Newsgroups: local.freebsd-stable In-Reply-To: <20020710214051.Q1494@shell.gsinet.sittig.org> References: <20020710175614.7F3535D03@ptavv.es.net> Organization: Watt Consultants, San Jose, CA, USA From: steve@Watt.COM (Steve Watt) Date: Mon, 15 Jul 2002 18:09:12 -0700 X-Mailer: Mail User's Shell (7.2.6 beta(5) 10/07/98) To: stable@freebsd.org Subject: Re: 4.6-RELEASE -> 4.5-RELENG Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In <20020710214051.Q1494@shell.gsinet.sittig.org>, Gerhard.Sittig@gmx.net wrote: >On Wed, Jul 10, 2002 at 10:56 -0700, Kevin Oberman wrote: >> >> [ ... upgrading from source ... ] >> >> While there are a few niggles, the proper sequence is: >> mergemaster -p (This is NEW!) > >Should this read "sh usr.sbin/mergemaster/mergemaster.sh -p" for >the case where your in $PATH mergemaster(8) is just old enough to >not know the -p switch or where it lacks needed preparation steps >for the buildworld run to come? Doesn't matter because mergmaster is run after the installworld in single-user mode. -- Steve Watt KD6GGD PP-ASEL-IA ICBM: 121W 56' 57.8" / 37N 20' 14.9" Internet: steve @ Watt.COM Whois: SW32 Free time? There's no such thing. It just comes in varying prices... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 18:12:56 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37B2837B400 for ; Mon, 15 Jul 2002 18:12:54 -0700 (PDT) Received: from wattres.Watt.COM (dsl-sj-66-219-76-254.broadviewnet.net [66.219.76.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCA6E43E4A for ; Mon, 15 Jul 2002 18:12:53 -0700 (PDT) (envelope-from steve@Watt.COM) Received: (from steve@localhost) by wattres.Watt.COM (8.12.4/8.12.4) id g6G1CrWB067167 for stable@freebsd.org; Mon, 15 Jul 2002 18:12:53 -0700 (PDT) (envelope-from steve) Message-Id: <200207160112.g6G1CrWB067167@wattres.Watt.COM> X-Newsgroups: local.freebsd-stable In-Reply-To: <200207160109.g6G19CD1066734@wattres.Watt.COM> References: <20020710214051.Q1494@shell.gsinet.sittig.org> Organization: Watt Consultants, San Jose, CA, USA From: steve@Watt.COM (Steve Watt) Date: Mon, 15 Jul 2002 18:12:53 -0700 X-Mailer: Mail User's Shell (7.2.6 beta(5) 10/07/98) To: stable@freebsd.org Subject: Re: 4.6-RELEASE -> 4.5-RELENG Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I wrote: >Doesn't matter because mergmaster is run after the installworld in >single-user mode. Nevermind. It took a while, but it got through my head that this was the *pre*buildworld* one. Duh. -- Steve Watt KD6GGD PP-ASEL-IA ICBM: 121W 56' 57.8" / 37N 20' 14.9" Internet: steve @ Watt.COM Whois: SW32 Free time? There's no such thing. It just comes in varying prices... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 18:43:30 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 819C037B400 for ; Mon, 15 Jul 2002 18:43:26 -0700 (PDT) Received: from mail.gbronline.com (mail.gbronline.com [12.145.226.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id D886E43E4A for ; Mon, 15 Jul 2002 18:43:25 -0700 (PDT) (envelope-from kdk@daleco.biz) Received: from daleco [12.145.226.43] by mail.gbronline.com (SMTPD32-7.11) id AA4C6500248; Mon, 15 Jul 2002 20:43:40 -0500 Message-ID: <001e01c22c6a$204455a0$2be2910c@fbccarthage.com> From: "Kevin Kinsey, DaleCo, S.P." To: "Chris Byrnes" , References: <00ef01c22c56$37c0ff80$345bbc42@mad.chartermi.net> Subject: REPLICATED Re: installworld error [/usr/src/share/examples] Date: Mon, 15 Jul 2002 20:43:03 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Same error here. Post follows.... ----- Original Message ----- From: "Chris Byrnes" To: Sent: Monday, July 15, 2002 6:20 PM Subject: installworld error [/usr/src/share/examples] > please cc in replies, not subscribed. > > while running installworld a few minutes ago: > > ===> share/examples > (cd /usr/src/share/examples/../../etc; make etc-examples) > (cd /usr/src/etc; install -c -o root -g wheel -m 444 amd.map apmd.conf > auth.conf crontab csh.cshrc csh.login csh.logout dhclient.conf dm.conf > fbtab ftpusers gettytab group hosts hosts.allow host.conf hosts.equiv > hosts.lpd inetd.conf login.access login.conf motd modems networks > newsyslog.conf pam.conf phones printcap profile protocols rc rc.atm > rc.diskless1 rc.diskless2 rc.firewall rc.firewall6 rc.network rc.network6 > rc.pccard rc.sendmail rc.serial rc.shutdown rc.syscons rc.sysctl remote rpc > services shells sysctl.conf syslog.conf usbd.conf etc.i386/disktab > etc.i386/rc.i386 etc.i386/ttys > /usr/src/etc/../gnu/usr.bin/man/manpath/manpath.config > /usr/src/etc/../usr.bin/mail/misc/mail.rc > /usr/src/etc/../usr.bin/locate/locate/locate.rc rc.isdn netstart > pccard_ether rc.suspend rc.resume nsmb.conf opieaccess > /usr/share/examples/etc; cd /usr/src/etc/defaults; install -c -o root -g > wheel -m 444 rc.conf make.conf pccard.conf periodic.conf > /usr/share/examples/etc/defaults; > Syntax error: end of file unexpected (expecting ")") > *** Error code 2 > > Stop in /usr/src/etc. > *** Error code 1 > > Stop in /usr/src/share/examples. > *** Error code 1 > > Stop in /usr/src/share. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 15 18:44:53 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A24A37B400 for ; Mon, 15 Jul 2002 18:44:45 -0700 (PDT) Received: from mail.gbronline.com (mail.gbronline.com [12.145.226.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id A99F843E58 for ; Mon, 15 Jul 2002 18:44:44 -0700 (PDT) (envelope-from kdk@daleco.biz) Received: from daleco [12.145.226.43] by mail.gbronline.com (SMTPD32-7.11) id AAA06DB023A; Mon, 15 Jul 2002 20:45:04 -0500 Message-ID: <002201c22c6a$5238b9c0$2be2910c@fbccarthage.com> From: "Kevin Kinsey, DaleCo, S.P." To: Subject: Duplicate Installworld Error Expecting ")" Date: Mon, 15 Jul 2002 20:44:26 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_001F_01C22C40.68F65B60" X-Priority: 1 X-MSMail-Priority: High X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_001F_01C22C40.68F65B60 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, I did cvsup of -STABLE this afternoon. Did make buildworld,=20 make buildkernel, make installkernel, and then installworld failed. The last output of make is at the bottom. Missing ")" ? = Understandable, I guess, but where do I find it? What do I need to read to fix this? Is the offending code here? Doesn't seem likely, this does not appear to have changed since May. from /usr/share/examples/etc/defaults/periodic.conf: # Define source_periodic_confs, the mechanism used by /etc/periodic/*/* # scripts to source defaults/periodic.conf overrides safely. if [ -z "${source_periodic_confs_defined}" ]; then source_periodic_confs_defined=3Dyes source_periodic_confs () { local i sourced_files for i in ${periodic_conf_files}; do case ${sourced_files} in *:$i:*) ;; *) sourced_files=3D"${sourced_files}:$i:" [ -r $i ] && . $i ;; esac done } fi ERROR MESSAGE FOLLOWS: install -c -o root -g wheel -m 444 propernames = /usr/share/dict/propernames install -c -o root -g wheel -m 444 web2 /usr/share/dict/web2 install -c -o root -g wheel -m 444 web2a /usr/share/dict/web2a install -c -o root -g wheel -m 444 freebsd /usr/share/dict/freebsd /usr/share/dict/words -> web2 =3D=3D=3D> share/examples (cd /usr/src/share/examples/../../etc; make etc-examples) (cd /usr/src/etc; install -c -o root -g wheel -m 444 amd.map apmd.conf = auth.conf crontab csh.cshrc csh.login csh.logout dhclient.conf dm.conf = fbtab ftpusers gettytab group hosts hosts.allow host.conf hosts.equiv = hosts.lpd inetd.conf login.access login.conf motd modems networks newsyslog.conf = pam.conf phones printcap profile protocols rc rc.atm rc.diskless1 = rc.diskless2 rc firewall rc.firewall6 rc.network rc.network6 rc.pccard rc.sendmail = rc.serial rc.shutdown rc.syscons rc.sysctl remote rpc services shells sysctl.conf syslog.conf = usbd.conf =20 etc.i386/disktab etc.i386/rc.i386 etc.i386/ttys = /usr/src/etc/../gnu/usr.bin/man/manpath/manpath.config /usr/src/etc/../usr.bin/mail/misc/mail.rc = /usr/src/etc/../usr.bin/locate/locate/locate.rc=20 rc.isdn netstart pccard_ether rc.suspend rc.resume nsmb.conf opieaccess = /usr/share/examples/etc; cd /usr/src/etc/defaults; install -c -o root = -g wheel -m 444 =20 rc.conf make.conf pccard.conf periodic.conf = /usr/share/examples/etc/defaults; Syntax error: end of file unexpected (expecting ")") *** Error code 2 Stop in /usr/src/etc. *** Error code 1 Stop in /usr/src/share/examples. *** Error code 1 Stop in /usr/src/share. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 ------=_NextPart_000_001F_01C22C40.68F65B60 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello,
        I did cvsup of -STABLE this=20 afternoon.  Did make buildworld,
make buildkernel, make installkernel, and then installworld = failed.
The last output of make is at the bottom.  Missing ")"  = ? =20 Understandable,
I guess, but where do I find it?  What do I need to read to = fix=20 this?
 
Is the offending code here?  Doesn't seem likely, this does = not=20 appear
to have changed since May.
 
from /usr/share/examples/etc/defaults/periodic.conf:
 
# Define source_periodic_confs, the mechanism used by=20 /etc/periodic/*/*
# scripts to source defaults/periodic.conf = overrides=20 safely.
 
if [ -z "${source_periodic_confs_defined}" ];=20 then
       =20 source_periodic_confs_defined=3Dyes
     &nbs= p; =20 source_periodic_confs ()=20 {
           &n= bsp;   =20 local i sourced_files
 
           &n= bsp;   =20 for i in ${periodic_conf_files};=20 do
           &= nbsp;           =20 case ${sourced_files}=20 in
           &= nbsp;           =20 *:$i:*)
          &n= bsp;           &nb= sp;        =20 ;;
           &= nbsp;           =20 *)
           &= nbsp;           &n= bsp;       =20 sourced_files=3D"${sourced_files}:$i:"
     &= nbsp;           &n= bsp;           &nb= sp; =20 [ -r $i ] && .=20 $i
           &= nbsp;           &n= bsp;       =20 ;;
           &= nbsp;           =20 esac
           = ;    =20 done
        }
fi
 
ERROR MESSAGE FOLLOWS:

install -c -o root  -g wheel -m 444   = propernames =20 /usr/share/dict/propernames
install -c -o root  -g wheel -m=20 444   web2  /usr/share/dict/web2
install -c -o = root  -g=20 wheel -m 444   web2a  /usr/share/dict/web2a
install -c = -o=20 root  -g wheel -m 444   freebsd =20 /usr/share/dict/freebsd
/usr/share/dict/words -> = web2
=3D=3D=3D>=20 share/examples
(cd /usr/src/share/examples/../../etc; make=20 etc-examples)
(cd /usr/src/etc;  install -c -o root -g wheel -m=20 444  amd.map apmd.conf
auth.conf  crontab csh.cshrc csh.login csh.logout  = dhclient.conf=20 dm.conf
fbtab ftpusers gettytab group  hosts hosts.allow host.conf = hosts.equiv=20 hosts.lpd
inetd.conf login.access login.conf  motd modems networks=20 newsyslog.conf 
pam.conf phones printcap profile protocols  rc rc.atm = rc.diskless1=20 rc.diskless2 rc
firewall rc.firewall6  rc.network rc.network6 rc.pccard = rc.sendmail=20 rc.serial rc.shutdown
rc.syscons rc.sysctl remote rpc services shells sysctl.conf =20 syslog.conf usbd.conf 
etc.i386/disktab  etc.i386/rc.i386  etc.i386/ttys =20 /usr/src/etc/../gnu/usr.bin/man/manpath/manpath.config
/usr/src/etc/../usr.bin/mail/misc/mail.rc =20 /usr/src/etc/../usr.bin/locate/locate/locate.rc
rc.isdn netstart pccard_ether rc.suspend rc.resume nsmb.conf=20 opieaccess 
/usr/share/examples/etc;  cd /usr/src/etc/defaults; install -c = -o root=20 -g wheel -m 444 
rc.conf make.conf pccard.conf periodic.conf=20 /usr/share/examples/etc/defaults;
Syntax error: end of file = unexpected=20 (expecting ")")
*** Error code 2
 
Stop in /usr/src/etc.
*** Error code 1
 
Stop in /usr/src/share/examples.
*** Error code 1
 
Stop in /usr/src/share.
*** Error code 1
 
Stop in /usr/src.
*** Error code 1
 
Stop in /usr/src.
*** Error code 1
------=_NextPart_000_001F_01C22C40.68F65B60-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 18:48:24 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E644A37B400 for ; Mon, 15 Jul 2002 18:48:22 -0700 (PDT) Received: from mail.gbronline.com (mail.gbronline.com [12.145.226.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53A2443E3B for ; Mon, 15 Jul 2002 18:48:22 -0700 (PDT) (envelope-from kdk@daleco.biz) Received: from daleco [12.145.226.43] by mail.gbronline.com (SMTPD32-7.11) id AB7AD1F021E; Mon, 15 Jul 2002 20:48:42 -0500 Message-ID: <002f01c22c6a$d44a7480$2be2910c@fbccarthage.com> From: "Kevin Kinsey, DaleCo, S.P." To: References: <002201c22c6a$5238b9c0$2be2910c@fbccarthage.com> Subject: Re: Duplicate Installworld Error Expecting ")" Date: Mon, 15 Jul 2002 20:48:05 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG OK, there's the fix....thanks John. >I got the same thing just now. However I fixed it by >replacing the final >(and unnecessary) "\" on line 227 of src/etc/Makefile >with a ")". Hopefully >someone can do the same thing in the CVS tree. > >JN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 18:57:34 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72EE437B400 for ; Mon, 15 Jul 2002 18:57:32 -0700 (PDT) Received: from hotmail.com (law2-f98.hotmail.com [216.32.181.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E8D443E42 for ; Mon, 15 Jul 2002 18:57:32 -0700 (PDT) (envelope-from kmays2000@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 15 Jul 2002 18:57:32 -0700 Received: from 24.196.232.182 by lw2fd.hotmail.msn.com with HTTP; Tue, 16 Jul 2002 01:57:31 GMT X-Originating-IP: [24.196.232.182] From: "Kenneth Mays" To: freebsd-stable@freebsd.org Subject: Commas in automake-1.5.1 filename... Date: Mon, 15 Jul 2002 21:57:31 -0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 16 Jul 2002 01:57:32.0169 (UTC) FILETIME=[25C71790:01C22C6C] Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Ref: ftp://ftp.freebsd.org/pub/FreeBSD/branches/4.0-stable/packages/All/ automake-1.5,1.tgz ------------^ Did anyone notice the comma in this filename??? Ken _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 19: 0:59 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A44637B400 for ; Mon, 15 Jul 2002 19:00:57 -0700 (PDT) Received: from deborah.paradise.net.nz (deborah.paradise.net.nz [203.96.152.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8468E43E65 for ; Mon, 15 Jul 2002 19:00:56 -0700 (PDT) (envelope-from tortise@paradise.net.nz) Received: from P1200n (203-79-82-182.adsl-wns.paradise.net.nz [203.79.82.182]) by deborah.paradise.net.nz (Postfix) with SMTP id 67006D200F for ; Tue, 16 Jul 2002 14:00:55 +1200 (NZST) Message-ID: <007801c22c6c$9dc32fe0$0900a8c0@P1200n> From: "Tortise@Paradise" To: References: <25f401c228d4$a3482fb0$1a01000a@area51><20020711091015.B51520@flake.decibel.org><20020711200902.3653b534.steve@sohara.org><20020713032546.GD61459@wantadilla.lemis.com><20020713075109.06ecf02f.steve@sohara.org><20020713100218.B284@twincat.vladsempire.net><20020713222745.00281f72.steve@sohara.org><20020714004247.GB16279@wantadilla.lemis.com> <20020714071524.1587f419.steve@sohara.org> Subject: Poor Mans Software raid 1 on root partition? Date: Tue, 16 Jul 2002 14:00:53 +1200 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 6.00.2600.0000 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Reading this thread it seems that this is currently not an option. However why can't we do a poor mans RAID, namely run a cron job say daily (or whenever) which bulk copies / updates one (complete) HDD onto a second one, be it SCSI or IDE, with a view that should the main HDD fail the second can still be booted from and the only data loss will be the interim since the last "backup". Comments on this strategy would be appreciated. (No! I do not work for a HDD manufacturer.....LOL) David Hingston MB ChB MBA _________________________________________________________________________ tortoise@paradise.net.nz http://hingston.yi.org/ http://pcmc.yi.org/ If you seek a digitally signed response please advise. If you received a warning on reading this e-mail, please go to http://www.baycorpid.com/settings/email.asp?CA=healthcert to update your settings To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 19:16:21 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C87637B400 for ; Mon, 15 Jul 2002 19:16:19 -0700 (PDT) Received: from midway.uchicago.edu (midway.uchicago.edu [128.135.12.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9786B43E4A for ; Mon, 15 Jul 2002 19:16:18 -0700 (PDT) (envelope-from dsyphers@uchicago.edu) Received: from Yggdrasil (adsl-68-20-19-170.dsl.chcgil.ameritech.net [68.20.19.170]) by midway.uchicago.edu (8.12.2/8.12.2) with ESMTP id g6G2GHCE029256; Mon, 15 Jul 2002 21:16:17 -0500 (CDT) Content-Type: text/plain; charset="iso-8859-1" From: David Syphers Reply-To: dsyphers@uchicago.edu To: "Kenneth Mays" , freebsd-stable@FreeBSD.ORG Subject: Re: Commas in automake-1.5.1 filename... Date: Mon, 15 Jul 2002 21:16:17 -0500 User-Agent: KMail/1.4.2 References: In-Reply-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200207152116.17646.dsyphers@uchicago.edu> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday 15 July 2002 08:57 pm, Kenneth Mays wrote: > Hi, > > Ref: > ftp://ftp.freebsd.org/pub/FreeBSD/branches/4.0-stable/packages/All/ > automake-1.5,1.tgz > ------------^ > Did anyone notice the comma in this filename??? It's there on purpose. It's not version 1.5.1, it's version 1.5 in port epoch 1. Maintainers sometimes bump the port epoch to prevent conflicts. Like when they upgraded XFree86 from 4.1.0 to 4.2.0, and then subquently pulled the change, they went back to 4.1.0,1. -David -- Everyone who believes in telekinesis, raise my hand... Astronomy and Astrophysics Center The University of Chicago To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 19:21:41 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 201B537B400 for ; Mon, 15 Jul 2002 19:21:37 -0700 (PDT) Received: from quack.kfu.com (adsl-67-113-12-90.dsl.snfc21.pacbell.net [67.113.12.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37F1F43E58 for ; Mon, 15 Jul 2002 19:21:36 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Received: from morpheus.kfu.com (morpheus.kfu.com [IPv6:3ffe:1200:301b:1:2d0:b7ff:fe3f:bdd0]) by quack.kfu.com (8.12.3/8.12.3) with ESMTP id g6G2LZKi093053 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Mon, 15 Jul 2002 19:21:35 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Received: from quack.kfu.com (localhost [IPv6:::1]) by morpheus.kfu.com (8.12.3/8.12.3) with ESMTP id g6G2LT6J007443; Mon, 15 Jul 2002 19:21:29 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Message-ID: <3D338329.4010205@quack.kfu.com> Date: Mon, 15 Jul 2002 19:21:29 -0700 From: Nick Sayer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.0) Gecko/20020606 X-Accept-Language: en, en-US, en-GB MIME-Version: 1.0 To: "Tortise@Paradise" Cc: freebsd-stable@freebsd.org Subject: Re: Poor Mans Software raid 1 on root partition? References: <25f401c228d4$a3482fb0$1a01000a@area51><20020711091015.B51520@flake.decibel.org><20020711200902.3653b534.steve@sohara.org><20020713032546.GD61459@wantadilla.lemis.com><20020713075109.06ecf02f.steve@sohara.org><20020713100218.B284@twincat.vladsempire.net><20020713222745.00281f72.steve@sohara.org><20020714004247.GB16279@wantadilla.lemis.com> <20020714071524.1587f419.steve@sohara.org> <007801c22c6c$9dc32fe0$0900a8c0@P1200n> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It would be far, far better to simply do a daily backup using 'dump'. For just a little more money than buying a whole 'nother drive, you could buy a tape drive. Tape drives are really ideal for backups because you can store the media other than inside the machine you're backing up. :-) If you don't want a tape drive, it's still a better idea to do dumps to another disk rather than dd. Why? 1. You can compress the output of dump. 2. You don't have to have identically partitioned disks 3. You won't get a "clean" filesystem copying it with dd. In fact, the source filesystem may change enough over the course of the dd that the resulting image may be completely useless. 4. You can potentially store many, many days worth of backups on the alternate drive. This lets you restore not just last night's backup, but potentially last *week's*. 5. You can use the 'nodump' flag (see chflags(1)) to exclude files from the backup that are uninteresting. Yes, doing a restore takes a little more time than simply booting the other drive. But in practice, the likelyhood that you will really *need* to do so is sufficiently low as to not be worthwhile, IMHO. The only reason to consider software raid for a truly mission critical application is if you've got a really large dataset in an external box that you can move from one machine to another if you need to get back up quickly. In that circumstance, presumably the contents of the system disk of the machine don't matter, meaning that the application would come back on line simply by moving the disk to another machine and restarting it. If that's unreasonable, then the whole machine requires RAID (among other things), which means you'll be getting a hardware RAID. But don't ever forget that RAID won't help you if you accidently do an rm -rf / as root. :-) Data integrity is NOT a substitute for good backups. Tortise@Paradise wrote: > Reading this thread it seems that this is currently not an option. > > However why can't we do a poor mans RAID, namely run a cron job say daily > (or whenever) which bulk copies / updates one (complete) HDD onto a second > one, be it SCSI or IDE, with a view that should the main HDD fail the second > can still be booted from and the only data loss will be the interim since > the last "backup". Comments on this strategy would be appreciated. (No! I > do not work for a HDD manufacturer.....LOL) > > David Hingston MB ChB MBA > _________________________________________________________________________ > tortoise@paradise.net.nz > http://hingston.yi.org/ > http://pcmc.yi.org/ > If you seek a digitally signed response please advise. > If you received a warning on reading this e-mail, please go to > http://www.baycorpid.com/settings/email.asp?CA=healthcert to update your > settings > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 15 19:24:35 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3439637B400; Mon, 15 Jul 2002 19:24:33 -0700 (PDT) Received: from hotmail.com (f85.law15.hotmail.com [64.4.23.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0114943E42; Mon, 15 Jul 2002 19:24:33 -0700 (PDT) (envelope-from jack_zhangcl@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 15 Jul 2002 19:24:32 -0700 Received: from 202.94.4.250 by lw15fd.law15.hotmail.msn.com with HTTP; Tue, 16 Jul 2002 02:24:32 GMT X-Originating-IP: [202.94.4.250] From: "zhang jack" To: security@FreeBSD.ORG, stable@FreeBSD.org Subject: syncache testing Date: Tue, 16 Jul 2002 02:24:32 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=gb2312; format=flowed Message-ID: X-OriginalArrivalTime: 16 Jul 2002 02:24:32.0760 (UTC) FILETIME=[EBB9A780:01C22C6F] Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I am testing syncache on FreeBSD 4.6 stable,and it works fine, but I found it *only* protect syn flooding of itself,can it act as a gateway( or firewall ) to protect my www server? can anyone help me? Jack.zhang _________________________________________________________________ ÏíÓÃÊÀ½çÉÏ×î´óµÄµç×ÓÓʼþϵͳ¡ª MSN Hotmail¡£http://www.hotmail.com/cn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 20:30:26 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D19AD37B401 for ; Mon, 15 Jul 2002 20:30:15 -0700 (PDT) Received: from deborah.paradise.net.nz (deborah.paradise.net.nz [203.96.152.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 293DE43E58 for ; Mon, 15 Jul 2002 20:30:15 -0700 (PDT) (envelope-from tortise@paradise.net.nz) Received: from P1200n (203-79-82-182.adsl-wns.paradise.net.nz [203.79.82.182]) by deborah.paradise.net.nz (Postfix) with SMTP id 7BAC9D166B; Tue, 16 Jul 2002 15:30:13 +1200 (NZST) Message-ID: <00a601c22c79$1671d8e0$0900a8c0@P1200n> From: "Tortise@Paradise" To: "Nick Sayer" Cc: References: <25f401c228d4$a3482fb0$1a01000a@area51><20020711091015.B51520@flake.decibel.org><20020711200902.3653b534.steve@sohara.org><20020713032546.GD61459@wantadilla.lemis.com><20020713075109.06ecf02f.steve@sohara.org><20020713100218.B284@twincat.vladsempire.net><20020713222745.00281f72.steve@sohara.org><20020714004247.GB16279@wantadilla.lemis.com> <20020714071524.1587f419.steve@sohara.org> <007801c22c6c$9dc32fe0$0900a8c0@P1200n> <3D338329.4010205@quack.kfu.com> Subject: Re: Poor Mans Software raid 1 on root partition? Date: Tue, 16 Jul 2002 15:30:09 +1200 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 6.00.2600.0000 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Nick Many thanks for your detailed and considered response. May I interact with it? I shall presume I may. > If you don't want a tape drive, it's still a better idea to do dumps to > another disk rather than dd. Why? > > 1. You can compress the output of dump. I prefer to have a (potentially) running bootable backup drive, so it can be "hot swapped." (Well almost) > 2. You don't have to have identically partitioned disks Would I have to, to do that???? > > 3. You won't get a "clean" filesystem copying it with dd. In fact, the > source filesystem may change enough over the course of the dd that the > resulting image may be completely useless. mmm Now that is a problem to overcome. Maybe I need Dump and restore to the backup HDD? > 4. You can potentially store many, many days worth of backups on the > alternate drive. This lets you restore not just last night's backup, but > potentially last *week's*. And presumably I could do this on multiple HDD's also? I am afraid I am biased by HDD copying. In my experience it works. Almost always. Can the same be said for Tape drives? And there is no need to frig around restoring so up running more quickly. Copying between HDD's is generally quicker than tapes. (Well it was once) > Yes, doing a restore takes a little more time than simply booting the > other drive. But in practice, the likelyhood that you will really *need* > to do so is sufficiently low as to not be worthwhile, IMHO. I guess that depends on how old your HDD is. The one in mind is old. (1G is old isn't it??) However in my (limited) experience I have had more new high performance drives fail under warranty than old ones..... The 1G must be due to expire....LOL Its mate did yrs ago..... > The only reason to consider software raid for a truly mission critical > application is if you've got a really large dataset in an external box > that you can move from one machine to another if you need to get back up > quickly. In that circumstance, presumably the contents of the system > disk of the machine don't matter, meaning that the application would > come back on line simply by moving the disk to another machine and > restarting it. This is what I want, that is an acceptable scenario for me, especially in terms of time input to fix and the (high) likelihood of it working..... If that's unreasonable, then the whole machine requires > RAID (among other things), which means you'll be getting a hardware RAID. IDE hardware RAID remains an option, (I think the promise cards are supported, this is not 100% clear) but given I have some spare SCSI HDD floating surplus I'd rather use them for now..... > But don't ever forget that RAID won't help you if you accidently do an > rm -rf / as root. :-) Data integrity is NOT a substitute for good backups. Point well made. There is no backup panacea..... We have to do what we judge to be acceptable....and cost effective and what we can live with in the event of...... Any further comments welcomed, especially anything pointing me in a direction to proceed with. Regards David Hingston MB ChB MBA _________________________________________________________________________ tortoise@paradise.net.nz http://hingston.yi.org/ http://pcmc.yi.org/ If you seek a digitally signed response please advise. If you received a warning on reading this e-mail, please go to http://www.baycorpid.com/settings/email.asp?CA=healthcert to update your settings ----- Original Message ----- From: "Nick Sayer" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 20:36:50 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DA3437B400 for ; Mon, 15 Jul 2002 20:36:48 -0700 (PDT) Received: from mailout08.sul.t-online.com (mailout08.sul.t-online.com [194.25.134.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE1EE43E3B for ; Mon, 15 Jul 2002 20:36:44 -0700 (PDT) (envelope-from 520002375936-0001@t-online.de) Received: from fwd06.sul.t-online.de by mailout08.sul.t-online.com with smtp id 17UJ8m-0005LR-01; Tue, 16 Jul 2002 05:36:44 +0200 Received: from grybel.mayn.de (520002375936-0001@[80.133.239.188]) by fwd06.sul.t-online.com with smtp id 17UJ8h-1vB3BoC; Tue, 16 Jul 2002 05:36:39 +0200 Received: (qmail 21370 invoked by uid 500); 16 Jul 2002 03:36:38 -0000 Date: Tue, 16 Jul 2002 05:36:38 +0200 From: 520002375936-0001@t-online.de (Linus) To: freebsd-stable@freebsd.org Subject: Re: subscribe freebsd-stable Message-ID: <20020716053638.A21324@grybel.mayn.de> Reply-To: resident@grybel.mayn.de References: <200207152133.g6FLXQb72508@osvald.void.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200207152133.g6FLXQb72508@osvald.void.ru>; from krok@osvald.void.ru on Tue, Jul 16, 2002 at 01:33:26AM +0400 X-Sender: 520002375936-0001@t-dialin.net Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jul 16, 2002 at 01:33:26AM +0400, krok wrote: > subscribe freebsd-stable How about changing the passage in the FreeBSD-Handbook as to less misleading/confusing the people who want to (un)subscribe to various freebsd-MLs? New users easily get confused with 'freebsd-xyz@...' and 'majordomo@...' and to which of them they have to send a(n) (un)subscribe to. Or am I mislead and the mislead "(un)subscribe"-messages ain't being more and more frequent? -- Linus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 21:25:19 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD3E937B400 for ; Mon, 15 Jul 2002 21:25:14 -0700 (PDT) Received: from notus.primus.ca (mail.tor.primus.ca [216.254.136.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AC7143E42 for ; Mon, 15 Jul 2002 21:25:14 -0700 (PDT) (envelope-from leth@primus.ca) Received: from dialin-142-73.hamilton.primus.ca ([209.90.142.73]) by notus.primus.ca with esmtp (Exim 3.33 #16) id 17UJth-0007zq-0A for stable@freebsd.org; Tue, 16 Jul 2002 00:25:13 -0400 Date: Tue, 16 Jul 2002 00:25:18 -0400 (EDT) From: Jason Hunt X-X-Sender: leth@lethargic.dyndns.org To: stable@freebsd.org Subject: installworld died ... :( Message-ID: <20020716002213.T2096-100000@lethargic.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I cvsup'd earlier this evening, and got the following whilst installing world. I'm not sure if it's anything to be worried about. I figure I'll just cvsup again tomorrow and rebuild. Anyone else get this? ===> share/examples (cd /usr/src/share/examples/../../etc; make etc-examples) (cd /usr/src/etc; install -c -o root -g wheel -m 444 amd.map apmd.conf auth.co nf crontab csh.cshrc csh.login csh.logout dhclient.conf dm.conf fbtab ftpusers gettytab group hosts hosts.allow host.conf hosts.equiv hosts.lpd inetd.conf l ogin.access login.conf motd modems networks newsyslog.conf pam.conf phones pri ntcap profile protocols rc rc.atm rc.diskless1 rc.diskless2 rc.firewall rc.fire wall6 rc.network rc.network6 rc.pccard rc.sendmail rc.serial rc.shutdown rc.sy scons rc.sysctl remote rpc services shells sysctl.conf syslog.conf usbd.conf e tc.i386/disktab etc.i386/rc.i386 etc.i386/ttys /usr/src/etc/../gnu/usr.bin/ma n/manpath/manpath.config /usr/src/etc/../usr.bin/mail/misc/mail.rc /usr/src/et c/../usr.bin/locate/locate/locate.rc rc.isdn netstart pccard_ether rc.suspend rc .resume nsmb.conf opieaccess /usr/share/examples/etc; cd /usr/src/etc/defaults ; install -c -o root -g wheel -m 444 rc.conf make.conf pccard.conf periodic.con f /usr/share/examples/etc/defaults; Syntax error: end of file unexpected (expecting ")") *** Error code 2 Stop in /usr/src/etc. *** Error code 1 Stop in /usr/src/share/examples. *** Error code 1 Stop in /usr/src/share. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. # exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 21:30:43 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4B9B37B400 for ; Mon, 15 Jul 2002 21:30:38 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F19B43E65 for ; Mon, 15 Jul 2002 21:30:38 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id VAA30241; Mon, 15 Jul 2002 21:30:32 -0700 Message-ID: <3D33A167.6030906@owt.com> Date: Mon, 15 Jul 2002 21:30:31 -0700 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4.1) Gecko/20020314 Netscape6/6.2.2 X-Accept-Language: en-us, es-mx MIME-Version: 1.0 To: Jason Hunt Cc: stable@FreeBSD.ORG Subject: Re: installworld died ... :( References: <20020716002213.T2096-100000@lethargic.dyndns.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jason Hunt wrote: > I cvsup'd earlier this evening, and got the following whilst installing > world. I'm not sure if it's anything to be worried about. I figure I'll > just cvsup again tomorrow and rebuild. > > Anyone else get this? John Nielsen posted a fix earlier. It was as follows: I got the same thing just now. However I fixed it by replacing the final (and unnecessary) "\" on line 227 of src/etc/Makefile with a ")". Hopefully someone can do the same thing in the CVS tree. JN I haven't tried it but it looks right. Kent > > > ===> share/examples > (cd /usr/src/share/examples/../../etc; make etc-examples) > (cd /usr/src/etc; install -c -o root -g wheel -m 444 amd.map apmd.conf > auth.co > nf crontab csh.cshrc csh.login csh.logout dhclient.conf dm.conf fbtab > ftpusers > gettytab group hosts hosts.allow host.conf hosts.equiv hosts.lpd > inetd.conf l > ogin.access login.conf motd modems networks newsyslog.conf pam.conf > phones pri > ntcap profile protocols rc rc.atm rc.diskless1 rc.diskless2 rc.firewall > rc.fire > wall6 rc.network rc.network6 rc.pccard rc.sendmail rc.serial rc.shutdown > rc.sy > scons rc.sysctl remote rpc services shells sysctl.conf syslog.conf > usbd.conf e > tc.i386/disktab etc.i386/rc.i386 etc.i386/ttys > /usr/src/etc/../gnu/usr.bin/ma > n/manpath/manpath.config /usr/src/etc/../usr.bin/mail/misc/mail.rc > /usr/src/et > c/../usr.bin/locate/locate/locate.rc rc.isdn netstart pccard_ether > rc.suspend rc > .resume nsmb.conf opieaccess /usr/share/examples/etc; cd > /usr/src/etc/defaults > ; install -c -o root -g wheel -m 444 rc.conf make.conf pccard.conf > periodic.con > f /usr/share/examples/etc/defaults; > Syntax error: end of file unexpected (expecting ")") > *** Error code 2 > > Stop in /usr/src/etc. > *** Error code 1 > > Stop in /usr/src/share/examples. > *** Error code 1 > > Stop in /usr/src/share. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > # exit > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > . > > -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 22:15:55 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB66437B400 for ; Mon, 15 Jul 2002 22:15:50 -0700 (PDT) Received: from trustafari.doofdoof.com (dsl-65-188-195-25.telocity.com [65.188.195.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1B0F43E42 for ; Mon, 15 Jul 2002 22:15:49 -0700 (PDT) (envelope-from glen@burningman.com) Received: from xdream.doofdoof.com ([172.16.1.1] helo=burningman.com) by trustafari.doofdoof.com with esmtp (Exim 3.35 #1 (Debian)) id 17UKge-0007bv-00 for ; Mon, 15 Jul 2002 22:15:48 -0700 Message-ID: <3D33ABFA.3090408@burningman.com> Date: Mon, 15 Jul 2002 22:15:38 -0700 From: Glen Mehn User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.0.0) Gecko/20020530 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Re: Poor Mans Software raid 1 on root partition? References: <25f401c228d4$a3482fb0$1a01000a@area51><20020711091015.B51520@flake.decibel.org><20020711200902.3653b534.steve@sohara.org><20020713032546.GD61459@wantadilla.lemis.com><20020713075109.06ecf02f.steve@sohara.org><20020713100218.B284@twincat.vladsempire.net><20020713222745.00281f72.steve@sohara.org><20020714004247.GB16279@wantadilla.lemis.com> <20020714071524.1587f419.steve@sohara.org> <007801c22c6c$9dc32fe0$0900a8c0@P1200n> <3D338329.4010205@quack.kfu.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You can get a 3ware 7210 for $120: http://newegg.com it'll save you a lOT of time and heartache, and it's not that much $$... -g Nick Sayer wrote: > It would be far, far better to simply do a daily backup using 'dump'. > For just a little more money than buying a whole 'nother drive, you > could buy a tape drive. Tape drives are really ideal for backups because > you can store the media other than inside the machine you're backing > up. :-) > > If you don't want a tape drive, it's still a better idea to do dumps to > another disk rather than dd. Why? > > 1. You can compress the output of dump. > > 2. You don't have to have identically partitioned disks > > 3. You won't get a "clean" filesystem copying it with dd. In fact, the > source filesystem may change enough over the course of the dd that the > resulting image may be completely useless. > > 4. You can potentially store many, many days worth of backups on the > alternate drive. This lets you restore not just last night's backup, but > potentially last *week's*. > > 5. You can use the 'nodump' flag (see chflags(1)) to exclude files from > the backup that are uninteresting. > > Yes, doing a restore takes a little more time than simply booting the > other drive. But in practice, the likelyhood that you will really *need* > to do so is sufficiently low as to not be worthwhile, IMHO. > > The only reason to consider software raid for a truly mission critical > application is if you've got a really large dataset in an external box > that you can move from one machine to another if you need to get back up > quickly. In that circumstance, presumably the contents of the system > disk of the machine don't matter, meaning that the application would > come back on line simply by moving the disk to another machine and > restarting it. If that's unreasonable, then the whole machine requires > RAID (among other things), which means you'll be getting a hardware RAID. > > But don't ever forget that RAID won't help you if you accidently do an > rm -rf / as root. :-) Data integrity is NOT a substitute for good backups. > > Tortise@Paradise wrote: > >> Reading this thread it seems that this is currently not an option. >> >> However why can't we do a poor mans RAID, namely run a cron job say daily >> (or whenever) which bulk copies / updates one (complete) HDD onto a >> second >> one, be it SCSI or IDE, with a view that should the main HDD fail the >> second >> can still be booted from and the only data loss will be the interim since >> the last "backup". Comments on this strategy would be appreciated. >> (No! I >> do not work for a HDD manufacturer.....LOL) >> >> David Hingston MB ChB MBA >> _________________________________________________________________________ >> tortoise@paradise.net.nz >> http://hingston.yi.org/ >> http://pcmc.yi.org/ >> If you seek a digitally signed response please advise. >> If you received a warning on reading this e-mail, please go to >> http://www.baycorpid.com/settings/email.asp?CA=healthcert to update your >> settings >> >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-stable" in the body of the message > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Glen Mehn glen at burningman dot com at zerowaitstate dot com at doofdoof dot com "If u ever devour the universe, remember to spit the dragon back out.xx." -swan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 22:16: 7 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4384F37B420 for ; Mon, 15 Jul 2002 22:16:01 -0700 (PDT) Received: from smurf.jnielsen.net (12-254-136-47.client.attbi.com [12.254.136.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 950DC43E6A for ; Mon, 15 Jul 2002 22:16:00 -0700 (PDT) (envelope-from stable@jnielsen.net) Received: from max (max.local [192.168.0.9]) by smurf.jnielsen.net (8.12.3/8.12.3) with SMTP id g6G5Fmhw000723; Mon, 15 Jul 2002 23:15:49 -0600 (MDT) (envelope-from stable@jnielsen.net) Message-ID: <002901c22c87$d91e8ba0$0900a8c0@max> From: "John Nielsen" To: Cc: "Garance A Drosihn" References: <001d01c22c3f$ff753b70$0900a8c0@max> <002501c22c5a$fa360c00$0900a8c0@max> Subject: Re: XFree86-4-FontServer won't build under 4.6-p2 Date: Mon, 15 Jul 2002 23:15:48 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Spam-Status: No, hits=0.2 required=5.0 tests=WEIRD_PORT,AWL version=2.31 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG John Nielsen wrote: > Garance A Drosihn wrote: >> At 2:41 PM -0600 7/15/02, John Nielsen wrote: >>> I'm seeing this on two different machines, both running 4.6-RELEASE-p2 >>> (fresh install of 4.6 followed by an installworld over NFS). >>> I'm not sure if the problem is with the port or the p2 release >>> (it seems like I successfully built X recently on a different >>> machine). Has anyone else seen this? Any ideas what to do >>> about it? Wraphelp.c is being fetched properly, and other parts >>> of XFree86-4 built fine. Any input would be appreciated. :) >>> >>> Here's the tail end of the build output: >> [...skipping...] >> >>> Unwrap.c: In function `XdmcpUnwrap': >>> Unwrap.c:70: warning: implicit declaration of function `_XdmcpAuthSetup' >>> Unwrap.c:79: warning: implicit declaration of function `_XdmcpAuthDoIt' >>> make: don't know how to make Wraphelp.c. Stop >>> *** Error code 2 >>> >>> Stop in /usr/ports/x11-servers/XFree86-4-FontServer/work/xc/lib. >> >> You say that "Wraphelp.c is being fetched properly". Fetched by who? >> Where did you put it? > > Fetched by the port mechanism, when I did a "make install" in > /usr/ports/x11/XFree86-4. It got put in /usr/ports/distfiles/xc, after I > renamed the existing xc directory. > >> I suspect this is a temp oversight in the latest XFree86-4 ports. >> I ran into this last night, and in my case I just did the quick-fix >> workaround of copying Wraphelp.c (which I had downloaded) into the >> proper directory under >> /usr/ports/x11-servers/XFree86-4-FontServer/work/xc >> >> there is some README or INSTALL file there which said where it >> had to go. I then cd'ed into that >> /usr/ports/x11-servers/XFree86-4-FontServer/work/xc >> directory and did the "make". I then cd'ed into >> /usr/ports/x11-servers/XFree86-4-FontServer >> and did the 'make install && make clean' > > I will try that. :) I just got the build to work (following your advice), and I submitted a PR on the issue (ports/40637). For reference, here's what I did: cd /usr/ports/x11-servers/XFree86-4-FontServer make extract cp /usr/ports/distfiles/xc/Wraphelp.c work/xc/lib/Xdmcp make ...etc. JN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 22:45:38 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3735737B400 for ; Mon, 15 Jul 2002 22:45:35 -0700 (PDT) Received: from mail.gbronline.com (mail.gbronline.com [12.145.226.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94DF943E64 for ; Mon, 15 Jul 2002 22:45:34 -0700 (PDT) (envelope-from kdk@daleco.biz) Received: from daleco [12.145.226.127] by mail.gbronline.com (SMTPD32-7.11) id A2F788F00A4; Tue, 16 Jul 2002 00:45:27 -0500 Message-ID: <008f01c22c8b$e6ffdf40$7fe2910c@fbccarthage.com> From: "Kevin Kinsey, DaleCo, S.P." To: "Kent Stewart" , "Jason Hunt" Cc: References: <20020716002213.T2096-100000@lethargic.dyndns.org> <3D33A167.6030906@owt.com> Subject: Re: installworld died ... :( Date: Tue, 16 Jul 2002 00:44:49 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Kent Stewart" To: "Jason Hunt" Cc: Sent: Monday, July 15, 2002 11:30 PM Subject: Re: installworld died ... :( > > > Jason Hunt wrote: > > > I cvsup'd earlier this evening, and got the following whilst installing > > world. I'm not sure if it's anything to be worried about. I figure I'll > > just cvsup again tomorrow and rebuild. > > > > Anyone else get this? > > > John Nielsen posted a fix earlier. It was as follows: > > I got the same thing just now. However I fixed it by replacing the > final (and unnecessary) "\" on line 227 of src/etc/Makefile with a > ")". Hopefully someone can do the same thing in the CVS tree. > > JN > > I haven't tried it but it looks right. > > Kent > > It is... I've built -STABLE on two boxes today. KDK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 22:57:12 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 225AB37B400 for ; Mon, 15 Jul 2002 22:57:10 -0700 (PDT) Received: from mail.allcaps.org (h-66-166-142-198.SNDACAGL.covad.net [66.166.142.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id B08D743E5E for ; Mon, 15 Jul 2002 22:57:09 -0700 (PDT) (envelope-from bsder@mail.allcaps.org) Received: by mail.allcaps.org (Postfix, from userid 501) id 3D1D0153B7; Mon, 15 Jul 2002 22:57:08 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by mail.allcaps.org (Postfix) with ESMTP id 324B615277; Mon, 15 Jul 2002 22:57:08 -0700 (PDT) Date: Mon, 15 Jul 2002 22:57:08 -0700 (PDT) From: "Andrew P. Lentvorski" To: Glen Mehn Cc: freebsd-stable@freebsd.org Subject: Re: Poor Mans Software raid 1 on root partition? In-Reply-To: <3D33ABFA.3090408@burningman.com> Message-ID: <20020715225138.V82789-100000@mail.allcaps.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 15 Jul 2002, Glen Mehn wrote: > You can get a 3ware 7210 for $120: http://newegg.com > > it'll save you a lOT of time and heartache, and it's not that much $$... True, but if that 3ware quits making those cards and your card goes, your data is completely lost. And what if you choose not to upgrade each time 3ware spins the cards? How much testing does 3ware do against say the 6000 series? Can I take my drives on my 68XX card and plug them into a 78XX card and have them work? What about if 3ware creates an 88XX series? One significant advantage to software RAID is the fact that you can still extract your data from the disk even if you have to completely transplant the disks to different hardware. -a To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 23: 2:53 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ED4A37B401 for ; Mon, 15 Jul 2002 23:02:48 -0700 (PDT) Received: from mail6.nc.rr.com (fe6.southeast.rr.com [24.93.67.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77E4843E65 for ; Mon, 15 Jul 2002 23:02:47 -0700 (PDT) (envelope-from bts@fake.com) Received: from this_is.fake.com ([66.26.254.93]) by mail6.nc.rr.com with Microsoft SMTPSVC(5.5.1877.757.75); Tue, 16 Jul 2002 00:54:19 -0400 Received: by this_is.fake.com (Postfix, from userid 111) id 71168BB2C; Tue, 16 Jul 2002 00:54:12 -0400 (EDT) Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: "Tortise@Paradise" , "Nick Sayer" Subject: Re: Poor Mans Software raid 1 on root partition? Date: Tue, 16 Jul 2002 00:54:12 -0400 X-Mailer: KMail [version 1.3] Cc: References: <25f401c228d4$a3482fb0$1a01000a@area51> <3D338329.4010205@quack.kfu.com> <00a601c22c79$1671d8e0$0900a8c0@P1200n> In-Reply-To: <00a601c22c79$1671d8e0$0900a8c0@P1200n> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020716045412.71168BB2C@this_is.fake.com> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday 15 July 2002 11:30 pm, tortise@paradise.net.nz wrote: | Nick | Many thanks for your detailed and considered response. May I interact with | it? I shall presume I may. | | > If you don't want a tape drive, it's still a better idea to do dumps to | > another disk rather than dd. Why? | > | > 1. You can compress the output of dump. | | I prefer to have a (potentially) running bootable backup drive, so it can | be "hot swapped." (Well almost) | | > 2. You don't have to have identically partitioned disks | | Would I have to, to do that???? | | > 3. You won't get a "clean" filesystem copying it with dd. In fact, the | > source filesystem may change enough over the course of the dd that the | > resulting image may be completely useless. | | mmm Now that is a problem to overcome. Maybe I need Dump and restore to | the backup HDD? I don't think that you said anything about dd in the first place. FWIW, I mirror with "rsync." Even though it's not really remote it works nice for informal mirroring. | | > 4. You can potentially store many, many days worth of backups on the | > alternate drive. This lets you restore not just last night's backup, but | > potentially last *week's*. | | And presumably I could do this on multiple HDD's also? I am afraid I am | biased by HDD copying. In my experience it works. Almost always. Can the | same be said for Tape drives? And there is no need to frig around | restoring so up running more quickly. Copying between HDD's is generally | quicker than tapes. (Well it was once) | | > Yes, doing a restore takes a little more time than simply booting the | > other drive. But in practice, the likelyhood that you will really *need* | > to do so is sufficiently low as to not be worthwhile, IMHO. | | I guess that depends on how old your HDD is. The one in mind is old. (1G | is old isn't it??) However in my (limited) experience I have had more new | high performance drives fail under warranty than old ones..... The 1G must | be due to expire....LOL Its mate did yrs ago..... | | > The only reason to consider software raid for a truly mission critical | > application is if you've got a really large dataset in an external box | > that you can move from one machine to another if you need to get back up | > quickly. In that circumstance, presumably the contents of the system | > disk of the machine don't matter, meaning that the application would | > come back on line simply by moving the disk to another machine and | > restarting it. | | This is what I want, that is an acceptable scenario for me, especially in | terms of time input to fix and the (high) likelihood of it working..... | | If that's unreasonable, then the whole machine requires | | > RAID (among other things), which means you'll be getting a hardware RAID. | | IDE hardware RAID remains an option, (I think the promise cards are | supported, this is not 100% clear) but given I have some spare SCSI HDD | floating surplus I'd rather use them for now..... | | > But don't ever forget that RAID won't help you if you accidently do an | > rm -rf / as root. :-) Data integrity is NOT a substitute for good | > backups. | | Point well made. There is no backup panacea..... | | We have to do what we judge to be acceptable....and cost effective and what | we can live with in the event of...... | | Any further comments welcomed, especially anything pointing me in a | direction to proceed with. | Regards | David Hingston MB ChB MBA | _________________________________________________________________________ | tortoise@paradise.net.nz | http://hingston.yi.org/ | http://pcmc.yi.org/ | If you seek a digitally signed response please advise. | If you received a warning on reading this e-mail, please go to | http://www.baycorpid.com/settings/email.asp?CA=healthcert to update your | settings | ----- Original Message ----- | From: "Nick Sayer" | | | | To Unsubscribe: send mail to majordomo@FreeBSD.org | with "unsubscribe freebsd-stable" in the body of the message -- Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org http://www.eff.org http://www.programming-freedom.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 15 23: 4: 4 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7D8437B400 for ; Mon, 15 Jul 2002 23:04:00 -0700 (PDT) Received: from deborah.paradise.net.nz (deborah.paradise.net.nz [203.96.152.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id F359F43E3B for ; Mon, 15 Jul 2002 23:03:59 -0700 (PDT) (envelope-from tortise@paradise.net.nz) Received: from P1200n (203-79-82-182.adsl-wns.paradise.net.nz [203.79.82.182]) by deborah.paradise.net.nz (Postfix) with SMTP id CFBB5D15AE; Tue, 16 Jul 2002 18:03:57 +1200 (NZST) Message-ID: <011c01c22c8e$8e6d6f70$0900a8c0@P1200n> From: "Tortise@Paradise" To: "Andrew P. Lentvorski" , "Glen Mehn" Cc: References: <20020715225138.V82789-100000@mail.allcaps.org> Subject: Re: Poor Mans Software raid 1 on root partition? Date: Tue, 16 Jul 2002 18:03:50 +1200 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 6.00.2600.0000 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > You can get a 3ware 7210 for $120: http://newegg.com > > > > it'll save you a lOT of time and heartache, and it's not that much $$... > > True, but if that 3ware quits making those cards and your card goes, your > data is completely lost. And what if you choose not to upgrade each time > 3ware spins the cards? How much testing does 3ware do against say the > 6000 series? Can I take my drives on my 68XX card and plug them into a > 78XX card and have them work? What about if 3ware creates an 88XX series? > > One significant advantage to software RAID is the fact that you can still > extract your data from the disk even if you have to completely transplant > the disks to different hardware. mmmm I think what I want to achieve is a second SCSI disc, which is regularly "backed up to" in some fashion, although in less than real time be OK. (vis a vis RAID) so long as it is a bootable reliable "backup" with a controllable interval backup. (Also avoids the hardware reliance. I have one machine (W2000) which has a backup RAID card so it can be got running again quickly......without worrying about sourcing another card..... Clearly this is undesirable...) Does anyone do this? Regards David Hingston MB ChB MBA _________________________________________________________________________ tortoise@paradise.net.nz http://hingston.yi.org/ http://pcmc.yi.org/ If you seek a digitally signed response please advise. If you received a warning on reading this e-mail, please go to http://www.baycorpid.com/settings/email.asp?CA=healthcert to update your settings To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Jul 15 23:27: 5 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 701DC37B400 for ; Mon, 15 Jul 2002 23:27:00 -0700 (PDT) Received: from mail.tecdigital.net (midgar.tecdigital.net [67.29.135.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CB2243E58 for ; Mon, 15 Jul 2002 23:27:00 -0700 (PDT) (envelope-from mariodoria@yahoo.com) Received: from yahoo.com (unknown [148.243.211.157]) by mail.tecdigital.net (Postfix) with ESMTP id 8479C22505 for ; Tue, 16 Jul 2002 01:26:50 -0500 (CDT) Message-ID: <3D33BC58.8040409@yahoo.com> Date: Tue, 16 Jul 2002 01:25:28 -0500 From: Mario Doria User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.1a+) Gecko/20020714 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: make installworld broken on /usr/src/share/examples Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I've seen this on three machines. cvsup as of 23:00 GMT. On the three machines, adding "NOSHARE=true" to /etc/make.conf fixed this. ===> share ===> share/colldef install -c -m 644 -o root -g wheel bg_BG.CP1251.out /usr/share/locale/bg_BG.CP1251/LC_COLLATE install -c -m 644 -o root -g wheel cs_CZ.ISO8859-2.out /usr/share/locale/cs_CZ.ISO8859-2/LC_COLLATE install -c -m 644 -o root -g wheel de_DE.ISO8859-1.out /usr/share/locale/de_DE.ISO8859-1/LC_COLLATE install -c -m 644 -o root -g wheel de_DE.ISO8859-15.out /usr/share/locale/de_DE.ISO8859-15/LC_COLLA install -c -m 644 -o root -g wheel el_GR.ISO8859-7.out /usr/share/locale/el_GR.ISO8859-7/LC_COLLATE install -c -m 644 -o root -g wheel es_ES.ISO8859-1.out /usr/share/locale/es_ES.ISO8859-1/LC_COLLATE install -c -m 644 -o root -g wheel es_ES.ISO8859-15.out /usr/share/locale/es_ES.ISO8859-15/LC_COLLA install -c -m 644 -o root -g wheel et_EE.ISO8859-15.out /usr/share/locale/et_EE.ISO8859-15/LC_COLLA ln -fs ../la_LN.ISO8859-15/LC_COLLATE /usr/share/locale/pt_PT.ISO8859-15/LC_COLLATE ln -fs ../la_LN.ISO8859-2/LC_COLLATE /usr/share/locale/hr_HR.ISO8859-2/LC_COLLATE ln -fs ../la_LN.ISO8859-2/LC_COLLATE /usr/share/locale/hu_HU.ISO8859-2/LC_COLLATE ln -fs ../la_LN.ISO8859-2/LC_COLLATE /usr/share/locale/pl_PL.ISO8859-2/LC_COLLATE ln -fs ../la_LN.ISO8859-2/LC_COLLATE /usr/share/locale/ro_RO.ISO8859-2/LC_COLLATE ln -fs ../la_LN.ISO8859-2/LC_COLLATE /usr/share/locale/sl_SI.ISO8859-2/LC_COLLATE ln -fs ../de_DE.ISO8859-1/LC_COLLATE /usr/share/locale/de_AT.ISO8859-1/LC_COLLATE ln -fs ../de_DE.ISO8859-15/LC_COLLATE /usr/share/locale/de_AT.ISO8859-15/LC_COLLATE ln -fs ../de_DE.ISO8859-1/LC_COLLATE /usr/share/locale/de_CH.ISO8859-1/LC_COLLATE ln -fs ../de_DE.ISO8859-15/LC_COLLATE /usr/share/locale/de_CH.ISO8859-15/LC_COLLATE ln -fs ../cs_CZ.ISO8859-2/LC_COLLATE /usr/share/locale/sk_SK.ISO8859-2/LC_COLLATE ===> share/dict install -c -o root -g wheel -m 444 README /usr/share/dict/README install -c -o root -g wheel -m 444 propernames /usr/share/dict/propernames install -c -o root -g wheel -m 444 web2 /usr/share/dict/web2 install -c -o root -g wheel -m 444 web2a /usr/share/dict/web2a install -c -o root -g wheel -m 444 freebsd /usr/share/dict/freebsd /usr/share/dict/words -> web2 ===> share/examples (cd /usr/src/share/examples/../../etc; make etc-examples) (cd /usr/src/etc; install -c -o root -g wheel -m 444 amd.map apmd.conf auth.conf crontab csh.cshr *** Error code 2 Stop in /usr/src/etc. *** Error code 1 Stop in /usr/src/share/examples. *** Error code 1 Stop in /usr/src/share. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. Has anybody seen this also? - Mario Doria To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 0:27:59 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 137B537B400; Tue, 16 Jul 2002 00:27:57 -0700 (PDT) Received: from gateway.sanyusan.se (gateway.sanyusan.se [213.88.225.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3488543E58; Tue, 16 Jul 2002 00:27:56 -0700 (PDT) (envelope-from anders@gateway.sanyusan.se) Received: from gateway.sanyusan.se (anders@localhost [127.0.0.1]) by gateway.sanyusan.se (8.12.5/8.12.5) with ESMTP id g6G7RqAi011794; Tue, 16 Jul 2002 09:27:53 +0200 (CEST) (envelope-from anders@gateway.sanyusan.se) Received: (from anders@localhost) by gateway.sanyusan.se (8.12.5/8.12.5/Submit) id g6G7Rpjq011793; Tue, 16 Jul 2002 09:27:51 +0200 (CEST) (envelope-from anders) Date: Tue, 16 Jul 2002 09:27:51 +0200 From: Anders Andersson To: des@FreeBSD.org Cc: stable@FreeBSD.org Subject: fix for RELENG_4 installworld breakage Message-ID: <20020716072751.GA11772@gateway.sanyusan.se> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="J2SCkAp4GZ/dPZZf" Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --J2SCkAp4GZ/dPZZf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi DES, Here is a patch that fixes your breakage of src/etc/Makefile on RELENG_4 Anders -- Anders Andersson anders@sanyusan.se Sanyusan Int. AB http://www.sanyusan.se/ --J2SCkAp4GZ/dPZZf Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="Makefile.diff" --- Makefile Tue Jul 16 09:17:31 2002 +++ Makefile.new Tue Jul 16 09:17:51 2002 @@ -224,6 +224,6 @@ ${BIN1} ${BIN2} nsmb.conf opieaccess \ ${DESTDIR}/usr/share/examples/etc; \ cd ${.CURDIR}/defaults; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ - ${DEFAULTS} ${DESTDIR}/usr/share/examples/etc/defaults; \ + ${DEFAULTS} ${DESTDIR}/usr/share/examples/etc/defaults) .include --J2SCkAp4GZ/dPZZf-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 2:25:14 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 444F837B400 for ; Tue, 16 Jul 2002 02:25:10 -0700 (PDT) Received: from hermes.atrada.de (hermes.atrada.de [195.145.104.130]) by mx1.FreeBSD.org (Postfix) with SMTP id 18E8A43E31 for ; Tue, 16 Jul 2002 02:25:09 -0700 (PDT) (envelope-from maret@atrada.net) Received: from erlangen01.atrada.de by hermes.atrada.de via smtpd (for mx1.FreeBSD.org [216.136.204.125]) with SMTP; 16 Jul 2002 09:25:08 UT Received: (private information removed) Message-ID: <58A002A02C5ED311812E0050044517F00D2860@erlangen01.atrada.de> From: Alexander Maret To: "'freebsd-stable@freebsd.org'" Subject: AW: mbuf clusters behavior (NMBCLUSTERS) Date: Tue, 16 Jul 2002 11:25:06 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-2022-jp" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > -----Ursprungliche Nachricht----- > Von: naoyuki_tai@mac.com [mailto:naoyuki_tai@mac.com] > > When I copy a 500M file (like iso image) from the workstation to the > server, the server starts to emit: > > Jul 12 09:28:54 nile /kernel: All mbuf clusters exhausted, > please see tuning(7). I'm getting the same error here with 4.6-R. > So, I bumped up the nmbclusters to kern.ipc.nmbclusters=65536 > I allocated 128Mbytes to the mbuf clusters, hoping that it is > big enough. > But, it still shows that the same > > All mbuf clusters exhausted, please see tuning(7). The same for me. > How can I prevent this "mbuf clusters exhaustion"? I would be interested in an answer, too. > Relating to this, I do not understand why that the mbuf clusters > are not freed fast enough. I watched "top" and it does seem to be > that CPU is not exhausted. > After all, I'm copying less than 10Mbyte/sec, probably 6 - 7 Mbytes > at most. > Hard disk is a Seagate ATA/IV 60Gbyte.The drive is hooked up to a > Promise PCI ATA/UDMA 100 controller card. > bonnie shows that it can sustain 15M - 20M bytes read/write. I'm trying to copy data from an 1GHZ Mobile PIII Linux installation with IDE disks to an AMD Athlon 700 FBSD 4.6-R installation with Ultra 160 SCSI disks over NFS. I'm wondering too why the FreeBSD box can't cope with my lousy linux installation. Didn't have time to investigate though. > Is there anything I can try? Greetings, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 4:54:38 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AAE537B400 for ; Tue, 16 Jul 2002 04:54:34 -0700 (PDT) Received: from mail.mobikom.com (ns.mobikom.com [212.5.128.30]) by mx1.FreeBSD.org (Postfix) with SMTP id 3E0FA43E4A for ; Tue, 16 Jul 2002 04:54:31 -0700 (PDT) (envelope-from ivailon@mobikom.com) Received: (qmail 10011 invoked from network); 16 Jul 2002 11:56:06 -0000 Received: from unknown (HELO DarkStar) (217.9.225.106) by mail.mobikom.com with SMTP; 16 Jul 2002 11:56:06 -0000 Content-Type: text/plain; charset="us-ascii" From: Ivajlo Nikolov Reply-To: ivailon@mobikom.com To: stable@FreeBSD.org Date: Tue, 16 Jul 2002 14:52:18 +0300 User-Agent: KMail/1.4.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200207161452.18335.ivailon@mobikom.com> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG =09Hi, =09I have Creative Sound Blaster Live 5.1 with digital output. Is there s= omeone=20 who knows how I can use this feature ??? Cause I have a receiver with dig= ital=20 input. Best regards. Ivajlo =20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 5: 7:26 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1FBD37B400 for ; Tue, 16 Jul 2002 05:07:22 -0700 (PDT) Received: from HAL9000.homeunix.com (12-233-156-170.client.attbi.com [12.233.156.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7572C43E3B for ; Tue, 16 Jul 2002 05:07:22 -0700 (PDT) (envelope-from dschultz@uclink.Berkeley.EDU) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.3/8.12.3) with ESMTP id g6GC7g2p000386; Tue, 16 Jul 2002 05:07:43 -0700 (PDT) (envelope-from dschultz@uclink.Berkeley.EDU) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.3/8.12.3/Submit) id g6GC7fRK000385; Tue, 16 Jul 2002 05:07:41 -0700 (PDT) (envelope-from dschultz@uclink.Berkeley.EDU) Date: Tue, 16 Jul 2002 05:07:41 -0700 From: David Schultz To: Ivajlo Nikolov Cc: stable@FreeBSD.ORG Subject: Re: 5.1 channel sound support Message-ID: <20020716120741.GA336@HAL9000.homeunix.com> Mail-Followup-To: Ivajlo Nikolov , stable@FreeBSD.ORG References: <200207161452.18335.ivailon@mobikom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200207161452.18335.ivailon@mobikom.com> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Ivajlo Nikolov : > I have Creative Sound Blaster Live 5.1 with digital > output. Is there someone who knows how I can use this feature > ??? Cause I have a receiver with digital input. The short answer is: Yes, but not for free right now. See http://www.opensound.com/freebsd.html By the way, you should really be asking this on -questions. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 6:19: 0 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E38037B400 for ; Tue, 16 Jul 2002 06:18:56 -0700 (PDT) Received: from maul.immure.com (ns.immure.com [207.8.42.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 753DA43E42 for ; Tue, 16 Jul 2002 06:18:55 -0700 (PDT) (envelope-from bob@immure.com) Received: (from root@localhost) by maul.immure.com (8.11.5/8.11.2) id g6GDItF22432 for freebsd-stable@freebsd.org; Tue, 16 Jul 2002 08:18:55 -0500 (CDT) (envelope-from bob@immure.com) Received: from luke.immure.com (luke.vieo.com [10.1.132.3]) by maul.immure.com (8.11.5/8.11.2) with ESMTP id g6GDIpc22182; Tue, 16 Jul 2002 08:18:51 -0500 (CDT) (envelope-from bob@immure.com) Received: (from root@localhost) by luke.immure.com (8.12.5/8.12.3) id g6GDIp23030547; Tue, 16 Jul 2002 08:18:51 -0500 (CDT) (envelope-from bob@luke.immure.com) Received: from luke.immure.com (localhost [127.0.0.1]) by luke.immure.com (8.12.5/8.12.3) with ESMTP id g6GDIpV6030522; Tue, 16 Jul 2002 08:18:51 -0500 (CDT) (envelope-from bob@luke.immure.com) Received: (from bob@localhost) by luke.immure.com (8.12.5/8.12.5/Submit) id g6GDIo5b030521; Tue, 16 Jul 2002 08:18:50 -0500 (CDT) Date: Tue, 16 Jul 2002 08:18:50 -0500 From: Bob Willcox To: "Steve O'Hara-Smith" Cc: "Greg 'groggy' Lehey" , friar_josh@webwarrior.net, jim@nasby.net, laursen@netgroup.dk, freebsd-stable@freebsd.org Subject: Re: Software raid 1 on root partition? Message-ID: <20020716131850.GB28928@luke.immure.com> Reply-To: Bob Willcox References: <25f401c228d4$a3482fb0$1a01000a@area51> <20020711091015.B51520@flake.decibel.org> <20020711200902.3653b534.steve@sohara.org> <20020713032546.GD61459@wantadilla.lemis.com> <20020713075109.06ecf02f.steve@sohara.org> <20020713100218.B284@twincat.vladsempire.net> <20020713222745.00281f72.steve@sohara.org> <20020714004247.GB16279@wantadilla.lemis.com> <20020714071524.1587f419.steve@sohara.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020714071524.1587f419.steve@sohara.org> User-Agent: Mutt/1.5.1i X-scanner: scanned by Inflex 1.0.12.3 on luke.immure.com X-scanner: scanned by Inflex 0.1.5c+ on maul.immure.com Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jul 14, 2002 at 07:15:24AM +0200, Steve O'Hara-Smith wrote: > On Sun, 14 Jul 2002 10:12:47 +0930 > Greg 'groggy' Lehey wrote: > > G> On Saturday, 13 July 2002 at 22:27:45 +0200, Steve O'Hara-Smith wrote: > > G> > It seems to be about RAID on standard non-raid controllers to my > G> > poor eye. It does not mention that they will not work, only that there > G> > are boot restrictions. > G> > G> I've been reading the atacontrol man page. It's not very clear, but > G> you could be right. If so, it's a well-kept secret. There also > G> appears to be no way to recover such a RAID 1 partition. > > I've found confirmation - There was a thread in -stable around the > 18th of June (subject the new ATA driver vs. vinum) in which Bob Wilcox and > Remo Lacho both mentioned running RAID arrays on non RAID controllers using > the support in the ATA driver. > > Having RAID1 without recovery seems less than ideal though. I have been assuming (no confirmation as I haven't tried this yet) that the recovery process is to dump the file systems on the RAID1 configuration, replace the dead disk, reconfigure/newfs the filesystem, and then restore it. Certainly not ideal, but it still beats losing the data I think. The only part of this that I'm uncertain about is access to the array while one of its disks is dead. BTW, I've been running a RAID0+1 (striped and mirrored) configuration of 4 80GB IBM disks on this system for over a month now. Bob -- Bob Willcox Vital papers will demonstrate their vitality by bob@vieo.com spontaneously moving from where you left them to where Austin, TX you can't find them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 6:55:13 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C96A737B407 for ; Tue, 16 Jul 2002 06:54:56 -0700 (PDT) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D7A8441ED for ; Tue, 16 Jul 2002 06:41:52 -0700 (PDT) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.9.3/8.9.3) with ESMTP id JAA11170; Tue, 16 Jul 2002 09:41:50 -0400 (EDT) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id g6GDfKp51673; Tue, 16 Jul 2002 09:41:20 -0400 (EDT) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15668.8831.992051.789196@grasshopper.cs.duke.edu> Date: Tue, 16 Jul 2002 09:41:19 -0400 (EDT) To: Alexander Maret Cc: "'freebsd-stable@freebsd.org'" , naoyuki_tai@mac.com Subject: Re: AW: mbuf clusters behavior (NMBCLUSTERS) In-Reply-To: <58A002A02C5ED311812E0050044517F00D2860@erlangen01.atrada.de> References: <58A002A02C5ED311812E0050044517F00D2860@erlangen01.atrada.de> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alexander Maret writes: > > -----Ursprungliche Nachricht----- > > Von: naoyuki_tai@mac.com [mailto:naoyuki_tai@mac.com] > > > > When I copy a 500M file (like iso image) from the workstation to the > > server, the server starts to emit: > > > > Jul 12 09:28:54 nile /kernel: All mbuf clusters exhausted, > > please see tuning(7). > > I'm getting the same error here with 4.6-R. > > > So, I bumped up the nmbclusters to kern.ipc.nmbclusters=65536 > > I allocated 128Mbytes to the mbuf clusters, hoping that it is > > big enough. > > But, it still shows that the same > > > > All mbuf clusters exhausted, please see tuning(7). > > The same for me. > > > > How can I prevent this "mbuf clusters exhaustion"? > > I would be interested in an answer, too. RH Linux has a (really dumb) default of using UDP mounts with a 16K read and write size. A small percentage of packet loss will cause many fragments to build up on the IP reassembly queues and run you out of mbuf clusters. There are 3 things you could do to fix this: a) Use more reasonable NFS mount options on the linux boxes. 8K UDP should help quite a bit, 32K TCP should totally eliminate the problem. b) Drastically reduce net.inet.ip.maxfragpackets (make sure that (maxfragpackets * (16384/1472)) < (maxmbufclusters - some_constant). This will limit the amount of packets (and therefor mbufs) on the IP reassembly queues. This may could destroy your observed NFS write performance from the linux side if you do not also implement (a) above. c) Eliminate all packet loss in your network between the client and server. Not likely, as I suspect some of the packet loss might even be inside the linux or freebsd boxes. I suggest you do both (a) and (b). > > > Relating to this, I do not understand why that the mbuf clusters > > are not freed fast enough. I watched "top" and it does seem to be IP reassembly queues are timed-out out after IPFRAGTTL, which is quite a long time. Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 6:55:38 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65F8E37B401 for ; Tue, 16 Jul 2002 06:54:58 -0700 (PDT) Received: from sage-one.net (adsl-65-71-135-137.dsl.crchtx.swbell.net [65.71.135.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3627044159 for ; Tue, 16 Jul 2002 06:39:53 -0700 (PDT) (envelope-from jackstone@sage-one.net) Received: from sagea (sagea [192.168.0.3]) by sage-one.net (8.11.6/8.11.6) with SMTP id g6GDd6552017; Tue, 16 Jul 2002 08:39:07 -0500 (CDT) (envelope-from jackstone@sage-one.net) Message-Id: <3.0.5.32.20020716083905.0117a758@mail.sage-one.net> X-Sender: jackstone@mail.sage-one.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Tue, 16 Jul 2002 08:39:05 -0500 To: "Tortise@Paradise" , "Andrew P. Lentvorski" , "Glen Mehn" From: "Jack L. Stone" Subject: Re: Poor Mans Software raid 1 on root partition? Cc: In-Reply-To: <011c01c22c8e$8e6d6f70$0900a8c0@P1200n> References: <20020715225138.V82789-100000@mail.allcaps.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 06:03 PM 7.16.2002 +1200, Tortise@Paradise wrote: >> > You can get a 3ware 7210 for $120: http://newegg.com >> > >> > it'll save you a lOT of time and heartache, and it's not that much $$... >> >> True, but if that 3ware quits making those cards and your card goes, your >> data is completely lost. And what if you choose not to upgrade each time >> 3ware spins the cards? How much testing does 3ware do against say the >> 6000 series? Can I take my drives on my 68XX card and plug them into a >> 78XX card and have them work? What about if 3ware creates an 88XX series? >> >> One significant advantage to software RAID is the fact that you can still >> extract your data from the disk even if you have to completely transplant >> the disks to different hardware. > >mmmm > >I think what I want to achieve is a second SCSI disc, which is regularly >"backed up to" in some fashion, although in less than real time be OK. (vis >a vis RAID) so long as it is a bootable reliable "backup" with a >controllable interval backup. (Also avoids the hardware reliance. I have >one machine (W2000) which has a backup RAID card so it can be got running >again quickly......without worrying about sourcing another card..... Clearly >this is undesirable...) > >Does anyone do this? > >Regards >David Hingston MB ChB MBA >_________________________________________________________________________ >tortoise@paradise.net.nz >http://hingston.yi.org/ >http://pcmc.yi.org/ >If you seek a digitally signed response please advise. >If you received a warning on reading this e-mail, please go to >http://www.baycorpid.com/settings/email.asp?CA=healthcert to update your >settings > > Please don't take this wrong, but on all OS lists, the emphasis always seems to be on the "backup" and very little on the restore -- and I'm speaking more from the disaster recovery -- to get back up and running within minutes. In raising the question about that, I have noticed few have ever "tested" any sort of backup plans to see if they really can restore, or how quickly they can restore. I for one would sure like to hear more about recovery plans..... mine is to use two identical HDs on each server and run DD frequently, with tars for incremental. Thus, I have found it very simple to shut down, pull the bad HD, move HD #2 up and re cable it -- then boot and voila! I'm back up. THEN, add back any incremental while running in the meantime.... Yes, critical files are backed up over NFS to other machines.... and other types of backups used too, but I 'm only referring to getting up & running as fast as possible. Tape restore is too slow for me.... please don't jump on me about tapes... I use them too but HDs are cheap and I use lost of them for fast backups and restores..... Just for the sake of discussion..... I'd be interested in hearing about more restores... successful ones... not "plans" to restore. Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 6:55:55 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9107837B426 for ; Tue, 16 Jul 2002 06:55:36 -0700 (PDT) Received: from hcshh.hcs.de (hcshh.hcs.de [194.123.40.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id C676644020 for ; Tue, 16 Jul 2002 06:51:27 -0700 (PDT) (envelope-from hm@hcs.de) Received: from localhost (localhost.hcs.de [127.0.0.1]) by hcshh.hcs.de (Postfix) with ESMTP id 1530E15580 for ; Tue, 16 Jul 2002 15:32:36 +0200 (CEST) Received: from hcswork.hcs.de (hcswork.hcs.de [172.24.124.5]) by hcshh.hcs.de (Postfix) with ESMTP id 4247A155C7 for ; Tue, 16 Jul 2002 15:32:34 +0200 (CEST) Received: by hcswork.hcs.de (Postfix, from userid 200) id 13299566; Tue, 16 Jul 2002 15:32:33 +0200 (METDST) Subject: "Hanging" TCP connections over ISDN To: FreeBSD-Stable List Date: Tue, 16 Jul 2002 15:32:33 +0200 (METDST) Reply-To: hm@hcs.de Organization: HCS Hanseatischer Computerservice GmbH X-Mailer: ELM [version 2.4ME+ PL84 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20020716133233.13299566@hcswork.hcs.de> From: hm@hcs.de (Hellmuth Michaelis) X-Virus-Scanned-HCS: by AMaViS perl-11 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, since upgrading two ISDN-connected systems from 4.5 RC1 to 4.6 TCP connections between this two systems "hang" from time to time. When both ran under 4.5, interactive connections (mostly ssh and scp) run smoothly, no "hangs" or interruptions were noticed. The two systems ran (nearly) same OS versions using i4b and userland ppp(8). When 4.6 arrived, i decided to test the RC's and since then both systems ran RC1, RC2 and now a stable from the first week of July. Since the first 4.6 i began noticing "hangs" when using interactive programs (elm, editors, etc.) which occur now and then sometimes more often, sometimes less, sometimes in intervalls of 3 or 5 seconds - i cant see a regularity in it. With scp, data flows, gets slower, stalls, flows, stalls, flows etc. all in all it the transfer rate much lower than the expected 7.5 Kb/s: about 1.5 to 3 Kb/s. First i traced the ISDN traffic: all seems well, no anomalies, just the B-channel traffic stopped sometines, see above. Then i saw a mail from phk "Is newreno still sick ?": i disabled newreno on all machines and it got much better: where the "hangs" lasted several seconds, the now lasted just one or two seconds and i "felt" they occured much less. Still, it is boring to work over such a link. Last weekend i instrumented the i4b rbch-driver, but as hard as i tried, i found nothing wrong. Then i reduced the mtu and mru (1500 by default) for ppp(8) and the smaller i made it, the smoother the connection became. Still "hangs" but the frequency got lower and the hangs were much shorter - nearly gone. Now today i replaced the combination i4b-rbch/userland-ppp with the i4b isp/sppp combination and i get the same hangs as with the default rbch/ppp setup. I'm a bit stuck here. It still might be a bug in the ISDN subsystem, but nothing important has changed between 4.5 and 4.6. Two totally different ISDN interfaces to the network stack show the same behaviour. So it might not be a bug in the ISDN subsystem. Using several different parameters in the networking code leads to a changed behaviour. So it might be a bug in the network subsystem ;-) As i said, i'm a bit stuck here. Perhaps someone has an idea or a hint for me where to have a more detailed look or what knobs to use to fix this problem. hellmuth -- Hellmuth Michaelis Tel +49 40 55 97 47-70 HCS Hanseatischer Computerservice GmbH Fax +49 40 55 97 47-77 Oldesloer Strasse 97-99 Mail hm [at] hcs.de D-22457 Hamburg WWW http://www.hcs.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 7:11:17 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B501D37B401 for ; Tue, 16 Jul 2002 07:11:11 -0700 (PDT) Received: from ntaihsd.ne.client2.attbi.com (ntaihsd.ne.client2.attbi.com [24.147.210.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id 840A143E6A for ; Tue, 16 Jul 2002 07:11:10 -0700 (PDT) (envelope-from naoyuki_tai@mac.com) Received: from nile.ntaihsd.ne.client2.attbi.com (nile.camelsoft.com [192.168.10.31]) by ntaihsd.ne.client2.attbi.com (8.12.5/8.12.5) with ESMTP id g6GEB8TR001879; Tue, 16 Jul 2002 10:11:09 -0400 (EDT) (envelope-from naoyuki_tai@mac.com) Date: Tue, 16 Jul 2002 10:11:08 -0400 Message-ID: <867kjvoj9f.wl@mac.com> From: Naoyuki Tai To: freebsd-stable@freebsd.org Subject: Re: mbuf clusters behavior (NMBCLUSTERS) In-Reply-To: <20020715183759.A38238@unixdaemons.com> References: <86k7nwwttv.wl@mac.com> User-Agent: Wanderlust/2.8.1 (Something) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) Reply-To: ntai@mac.com MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If someone can answer this question, I can probably start troubleshoot the problem. After nfs server uses up the mbuf clusters, how are the mbuf clusters flushed? Should I try to change "maxusers 0" to a number like 10? One thing I forgot to mention is that the file system uses soft update. Would it matter? At Mon, 15 Jul 2002 18:37:59 -0400, Bosko Milekic wrote: > > On Mon, Jul 15, 2002 at 05:43:24PM -0400, ?$BED0fD>G7?(B wrote: > [...] > > If I do not suspend the copy command, the mbuf clusters hit the > > max and the server starts to drop the packets. It slows down the nfs > > serving severly due to its nfs retry. > > Are you sure that you're actually running out of address space? (i.e., > does `netstat -m' finally show a totally exhausted cluster pool?) > It is also possible to get the messages you mention if, for example, > you run out of available RAM. > > > How can I prevent this "mbuf clusters exhaustion"? > > Assuming this is really you running out of clusters or mbufs because > NMBCLUSTERS is too low and not because you're out of RAM, you can take > a look at setting per-UID sbsize (socket buffer) limits. > > > Increasing mbuf clusters is not an option. There is no way that I > > can allocate big enough for all of files I copy. > > > > Relating to this, I do not understand why that the mbuf clusters > > are not freed fast enough. I watched "top" and it does seem to be > > that CPU is not exhausted. > > After all, I'm copying less than 10Mbyte/sec, probably 6 - 7 Mbytes > > at most. > > Hard disk is a Seagate ATA/IV 60Gbyte.The drive is hooked up to a > > Promise PCI ATA/UDMA 100 controller card. > > bonnie shows that it can sustain 15M - 20M bytes read/write. > > Uhm, I've been following you up to this point. I'm not sure why > clusters are not being released faster, either, however: what exactly > are you copying from, and what are you copying to? I'm assuming you're > copying to an NFS mount somewhere? Please read the original message again. I believe that I included all the information I can think of. In summary: 1. Simple nfs file copy exhausts the mbuf clusters 2. When mbuf clusters are exhausted, the whole copy process suspends for 10 - 20 seconds. 3. One NFS server: FreeBSD 4.6-stable and Client: RH 7.3 4. I tried various size of mbuf clusters. 5. NMBCLUSTERS is not too low. I assigned more than recommended. 32768 (64M) is for multiuser large scale server. For this case, one server and one client, I gave it the double of it, and it is still no go. 6. The size of mbuf clusters is 128Mbytes and I can not increase any more. > > Is there anything I can try? > > Check your memory usage in top. Why? What do you think that what's hapenning? Slashing? Very unlikely. The FreeBSD server has no other client for the test or any other major service running. If so, I'd have mentioned in the original message. > > Thank you! > > > > -- > > ntai@mac.com, Naoyuki "Tai" Tai > > > > P.S. > > > > I sent this message to freebsd-questions, but, did not get any > > response. If you've seen this message before, sorry. > > Regards, > -- > Bosko Milekic > bmilekic@unixdaemons.com > bmilekic@FreeBSD.org > Have a good day! -- ntai@mac.com, Naoyuki "Tai" Tai To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 7:38:12 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E0E337B400 for ; Tue, 16 Jul 2002 07:38:06 -0700 (PDT) Received: from thunderbird.etv.net (thunderbird.etv.net [208.14.190.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1DB343E65 for ; Tue, 16 Jul 2002 07:38:05 -0700 (PDT) (envelope-from efinleywork@efinley.com) Received: from [208.14.190.162] (helo=PriceDMSDoc) by thunderbird.etv.net with smtp (Exim 3.36 #1) id 17UTSQ-000BeB-00; Tue, 16 Jul 2002 08:37:42 -0600 Message-ID: <00a001c22cd6$694888e0$035ad70a@PriceDMSDoc> Reply-To: "Elliot Finley" From: "Elliot Finley" To: "Tortise@Paradise" , "Andrew P. Lentvorski" , "Glen Mehn" Cc: References: <20020715225138.V82789-100000@mail.allcaps.org> <011c01c22c8e$8e6d6f70$0900a8c0@P1200n> Subject: Re: Poor Mans Software raid 1 on root partition? Date: Tue, 16 Jul 2002 08:38:11 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Here is what I do to make a bootable backup of my running system. #!/bin/sh # #ad2 # cd / /sbin/umount /mnt /sbin/fdisk -BI ad2 /sbin/disklabel -w -r -B ad2s1 auto /sbin/disklabel -r ad2 > /usr/local/etc/backups/disk.label /bin/echo 'a: 256M 0 4.2BSD' >> /usr/local/etc/backups/disk.label /bin/echo 'b: 1G * swap' >> /usr/local/etc/backups/disk.label /bin/echo 'e: 30G * 4.2BSD' >> /usr/local/etc/backups/disk.label /bin/echo 'f: * * 4.2BSD' >> /usr/local/etc/backups/disk.label /sbin/disklabel -R -B ad2s1 /usr/local/etc/backups/disk.label /bin/rm /usr/local/etc/backups/disk.label /sbin/newfs -U /dev/ad2s1a /sbin/newfs -U /dev/ad2s1e /sbin/newfs -U /dev/ad2s1f /sbin/mount -rw /dev/ad2s1a /mnt cd /mnt /sbin/dump -0f - / | /sbin/restore -rf - cd / /sbin/umount /mnt /sbin/mount -rw /dev/ad2s1e /mnt cd /mnt /sbin/dump -0f - /usr | /sbin/restore -rf - cd / /sbin/umount /mnt /sbin/mount -rw /dev/ad2s1f /mnt cd /mnt /sbin/dump -0f - /var | /sbin/restore -rf - cd / /sbin/umount /mnt # # END # Elliot ----- Original Message ----- From: "Tortise@Paradise" To: "Andrew P. Lentvorski" ; "Glen Mehn" Cc: Sent: Tuesday, July 16, 2002 12:03 AM Subject: Re: Poor Mans Software raid 1 on root partition? > > > You can get a 3ware 7210 for $120: http://newegg.com > > > > > > it'll save you a lOT of time and heartache, and it's not that much $$... > > > > True, but if that 3ware quits making those cards and your card goes, your > > data is completely lost. And what if you choose not to upgrade each time > > 3ware spins the cards? How much testing does 3ware do against say the > > 6000 series? Can I take my drives on my 68XX card and plug them into a > > 78XX card and have them work? What about if 3ware creates an 88XX series? > > > > One significant advantage to software RAID is the fact that you can still > > extract your data from the disk even if you have to completely transplant > > the disks to different hardware. > > mmmm > > I think what I want to achieve is a second SCSI disc, which is regularly > "backed up to" in some fashion, although in less than real time be OK. (vis > a vis RAID) so long as it is a bootable reliable "backup" with a > controllable interval backup. (Also avoids the hardware reliance. I have > one machine (W2000) which has a backup RAID card so it can be got running > again quickly......without worrying about sourcing another card..... Clearly > this is undesirable...) > > Does anyone do this? > > Regards > David Hingston MB ChB MBA > _________________________________________________________________________ > tortoise@paradise.net.nz > http://hingston.yi.org/ > http://pcmc.yi.org/ > If you seek a digitally signed response please advise. > If you received a warning on reading this e-mail, please go to > http://www.baycorpid.com/settings/email.asp?CA=healthcert to update your > settings > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 7:43:30 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12E8237B401 for ; Tue, 16 Jul 2002 07:43:26 -0700 (PDT) Received: from grosbein.pp.ru (D00015.dialonly.kemerovo.su [213.184.66.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BA2243E65 for ; Tue, 16 Jul 2002 07:43:23 -0700 (PDT) (envelope-from eugen@grosbein.pp.ru) Received: from grosbein.pp.ru (smmsp@localhost [127.0.0.1]) by grosbein.pp.ru (8.12.5/8.12.5) with ESMTP id g6GEhKfP000947 for ; Tue, 16 Jul 2002 22:43:20 +0800 (KRAST) (envelope-from eugen@grosbein.pp.ru) Received: (from eugen@localhost) by grosbein.pp.ru (8.12.5/8.12.5/Submit) id g6GEhILO000942 for stable@freebsd.org; Tue, 16 Jul 2002 22:43:18 +0800 (KRAST) Date: Tue, 16 Jul 2002 22:43:18 +0800 From: Eugene Grosbein To: stable@freebsd.org Subject: cu(1) fails to run ~$cat file Message-ID: <20020716224318.A797@grosbein.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi! I try to reprogram 1M flash of my modem, connect to port using 'cu -l cuaa1 -s 57600' (port uses hardware flow control, crtscts) and send flash loader software using ~$cat loader.s37 The loader is small (23078 bytes) and is transferred right, it starts, prompts me for flash image and waits. Note the speed must be 57600 or less to smooth reprogramming. Now I send image using ~$cat image.s37 (393250 bytes), it starts sending but at some point cat(1) fails with 'Input/output error'. So I get inoperable flash. I suspect that cu(1) doesn't keep data rate under 57600 so I enable rshd, play with dummynet and mtu of lo0 and use another console to run rsh localhost cat image.s37 >>/dev/cuaa1 instead of ~$cat image.s37 dummynet keeps data rate under 57600 and reprogramming process completes successfully so I can send this letter :-) I wonder why cu(1) doesn't handles output of cat(1) correctly? I tried also to use ~> instead of ~$cat to send file but failed to deny cu(1) to check echo. I tried ~s binary (binary mode transfer) and ~s echonl \000 (disable waiting for echo) but it still waits for echo. ~s echo-check is false by default. Eugene Grosbein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 8: 0:57 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEBF937B401 for ; Tue, 16 Jul 2002 08:00:53 -0700 (PDT) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 171D643E5E for ; Tue, 16 Jul 2002 08:00:53 -0700 (PDT) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.9.3/8.9.3) with ESMTP id LAA13962; Tue, 16 Jul 2002 11:00:52 -0400 (EDT) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id g6GF0Ml51758; Tue, 16 Jul 2002 11:00:22 -0400 (EDT) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15668.13574.480189.404472@grasshopper.cs.duke.edu> Date: Tue, 16 Jul 2002 11:00:22 -0400 (EDT) To: ntai@mac.com Cc: freebsd-stable@freebsd.org Subject: Re: mbuf clusters behavior (NMBCLUSTERS) In-Reply-To: <867kjvoj9f.wl@mac.com> References: <86k7nwwttv.wl@mac.com> <867kjvoj9f.wl@mac.com> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Naoyuki Tai writes: > > If someone can answer this question, I can probably start troubleshoot > the problem. > > After nfs server uses up the mbuf clusters, how are the mbuf clusters > flushed? An nfs server does not use up the clusters; data is copied from clusters into the buffer cache, then written to disk. > Should I try to change "maxusers 0" to a number like 10? No! > One thing I forgot to mention is that the file system uses soft update. > Would it matter? No. None of this matters. You're getting killed by lots of IP frags because of RH Linux's stupid 16K UDP read/write defualts. As I suggested in my previous message, you should reduce net.inet.ip.maxfragpackets and reduce the read/write size the linux clients are using (change the default in their fstabs). Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 8:11:17 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60D3B37B400 for ; Tue, 16 Jul 2002 08:11:12 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAF0643E67 for ; Tue, 16 Jul 2002 08:11:07 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g6GFAiV94631; Tue, 16 Jul 2002 18:10:44 +0300 (EEST) (envelope-from ru) Date: Tue, 16 Jul 2002 18:10:44 +0300 From: Ruslan Ermilov To: Dmitry Pryanishnikov Cc: stable@FreeBSD.ORG Subject: Re: Upcoming 4.6.1 Message-ID: <20020716151044.GA94381@sunbay.com> References: <20020707015520.E11035@freebsdmall.com.lucky.freebsd.vendors> <20020708150706.Q83398-100000@atlantis.atlantis.dp.ua> <20020711084905.GB4745@sunbay.com> <20020712151756.GA67588@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5vNYLRcllDrimb99" Content-Disposition: inline In-Reply-To: <20020712151756.GA67588@sunbay.com> User-Agent: Mutt/1.3.99i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 12, 2002 at 06:17:56PM +0300, Ruslan Ermilov wrote: > On Thu, Jul 11, 2002 at 11:49:05AM +0300, Ruslan Ermilov wrote: > > On Mon, Jul 08, 2002 at 03:18:13PM +0300, Dmitry Pryanishnikov wrote: > > >=20 > > > Hello! > > >=20 > > > On Sun, 7 Jul 2002, Murray Stokely wrote: > > > > currently working on a conservative set of changes to merge to the > > > > RELENG_4_6 branch in preparation for a 4.6.1 release. This point > > > > release will include Soren's one-line ATA patch that fixes some of = the > > > > reported ATA problems, along with security-related updates for SSH, > > > > BIND, ktrace, and possibly sendmail. 4.6.1 is currently scheduled = for > > > > July 17. If you have any questions or comments about this point > > > > release, please let us (re@) know. Thanks! > > >=20 > > [...] > > > 2. Please check why /usr/share/examples/kld and /usr/share/examples/d= rivers > > > are empty (while been OK in CVS repositary) both in 4.6-RELEASE and > > > 4.6-RELEASE-p1. > > >=20 > > I'm working on this, and already have patches for 5.0-CURRENT under the > > test. > >=20 > A fix has just been committed: >=20 > $FreeBSD: src/share/mk/bsd.obj.mk,v 1.47 2002/07/12 15:09:35 ru Exp $ > $FreeBSD: src/share/mk/bsd.subdir.mk,v 1.44 2002/07/12 15:09:35 ru Exp $ >=20 > MFC is scheduled on Monday. >=20 I've just merged this fix. But it wasn't as simple as merging these two. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --5vNYLRcllDrimb99 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9NDd0Ukv4P6juNwoRAk0qAJ9Ytu2zaRc40ldCz8vo/Td4Aa7zjgCfRPme 2MPP5I91D+MPPFihWbCjCSQ= =8Ls9 -----END PGP SIGNATURE----- --5vNYLRcllDrimb99-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 8:33: 9 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7ED6937B400 for ; Tue, 16 Jul 2002 08:33:07 -0700 (PDT) Received: from palrel11.hp.com (palrel11.hp.com [156.153.255.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1915543E5E for ; Tue, 16 Jul 2002 08:33:02 -0700 (PDT) (envelope-from kgunders@hpb50341.boi.hp.com) Received: from hpbs5002.boi.hp.com (hpbs5002.boi.hp.com [15.2.216.28]) by palrel11.hp.com (Postfix) with ESMTP id 48EB7600A8C for ; Tue, 16 Jul 2002 08:33:01 -0700 (PDT) Received: from kasilof.boi.hp.com (hpb50341.boi.hp.com [15.56.24.166]) by hpbs5002.boi.hp.com with ESMTP (8.7.1/8.7.3 SMKit7.02) id JAA22253 for ; Tue, 16 Jul 2002 09:32:59 -0600 (MDT) Received: by kasilof.boi.hp.com (Postfix, from userid 1000) id 2BACABA84; Tue, 16 Jul 2002 09:31:18 -0600 (MDT) Date: Tue, 16 Jul 2002 09:31:18 -0600 From: Ken Gunderson To: freebsd-stable@freebsd.org Subject: e: Poor Mans Software raid 1 on root partition? Message-ID: <20020716093118.D1978@kasilof.boi.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Something I've not seen mentioned yet on this thread is bootstrapping vinum: I've not utilized this approach personally, but you might want to give it a gander... -- Regards, Ken Gunderson (non-HP) HP-UX Systems Administrator HP NAOD Front-line System Management Boise Server Support Team 208-396-7926 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 8:35:31 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E388837B400 for ; Tue, 16 Jul 2002 08:35:12 -0700 (PDT) Received: from gx.dnepr.net (gx.dnepr.net [217.198.131.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D3F243E6E for ; Tue, 16 Jul 2002 08:35:10 -0700 (PDT) (envelope-from land@gx.dnepr.net) Received: from gx.dnepr.net (localhost.dnepr.net [127.0.0.1]) by gx.dnepr.net with ESMTP id g6GFZ6gj041580 for ; Tue, 16 Jul 2002 18:35:06 +0300 (EEST) (envelope-from land@gx.dnepr.net) Received: (from land@localhost) by gx.dnepr.net id g6GFZ6Ut041579 for freebsd-stable@freebsd.org; Tue, 16 Jul 2002 18:35:06 +0300 (EEST) (envelope-from land) Date: Tue, 16 Jul 2002 18:35:06 +0300 From: Andrey Lakhno To: freebsd-stable@freebsd.org Subject: weird kernel panics Message-ID: <20020716153506.GA41125@gx.dnepr.net> Mail-Followup-To: freebsd-stable@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi! I use FreeBSD 4.6-R with zebra routing software (zebra-0.93a). Both ripd and ospfd is running. With non-zero probability, when I kill ripd or ospfd process, system panics with the following diagnostics: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x6 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01856c7 stack pointer = 0x10:0xca01bc90 frame pointer = 0x10:0xca01bca4 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 629 (ripd) interrupt mask = net trap number = 12 panic: page fault syncing disks... 40 2 1 1 1 1 1 1 1 done I found that such panics occurs only on machines with vlan interfaces. Kernel config follows: ---8<--- makeoptions DEBUG=-g machine i386 cpu I686_CPU ident XXX options INET options FFS options FFS_ROOT options SOFTUPDATES options PROCFS options COMPAT_43 options UCONSOLE options KTRACE options SYSVSHM options SYSVMSG options SYSVSEM options P1003_1B options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM options KBD_INSTALL_CDEV device isa device pci device ata device atadisk options ATA_STATIC_ID device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 device vga0 at isa? device sc0 at isa? flags 0x100 device npx0 at nexus? port IO_NPX irq 13 device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device miibus device fxp device ed device rl pseudo-device loop pseudo-device ether pseudo-device pty pseudo-device bpf pseudo-device vlan 2 options UFS_DIRHASH options IPFIREWALL options IPFIREWALL_VERBOSE options IPFIREWALL_DEFAULT_TO_ACCEPT options TCP_DROP_SYNFIN options DUMMYNET options HZ=1000 options SC_HISTORY_SIZE=100 ---8<--- ifconfig: fxp0: flags=8843 mtu 1500 inet x.x.x.x netmask 0xffffffe0 broadcast x.x.x.x ether 00:03:47:xx:xx:xx media: Ethernet autoselect (100baseTX ) status: active vlan0: flags=8843 mtu 1500 inet x.x.x.x netmask 0xffffffe0 broadcast x.x.x.x ether 00:03:47:xx:xx:xx vlan: 5 parent interface: fxp0 vlan1: flags=0<> mtu 1500 ether 00:00:00:00:00:00 vlan: 0 parent interface: lo0: flags=8049 mtu 16384 inet 127.0.0.1 netmask 0xff000000 Here is output from gdb -k: (kgdb) where #0 dumpsys () at ../../kern/kern_shutdown.c:487 #1 0xc01445bf in boot (howto=256) at ../../kern/kern_shutdown.c:316 #2 0xc01449e4 in poweroff_wait (junk=0xc0211d6c, howto=-1071572849) at ../../kern/kern_shutdown.c:595 #3 0xc01eb71e in trap_fatal (frame=0xca01bc50, eva=6) at ../../i386/i386/trap.c:966 #4 0xc01eb3f1 in trap_pfault (frame=0xca01bc50, usermode=0, eva=6) at ../../i386/i386/trap.c:859 #5 0xc01eafdb in trap (frame={tf_fs = -1071448048, tf_es = 6422544, tf_ds = -1066074096, tf_edi = -1066046208, tf_esi = 1, tf_ebp = -905855836, tf_isp = -905855876, tf_ebx = -1053640192, tf_edx = 6, tf_ecx = -905855812, tf_eax = 2, tf_trapno = 12, tf_err = 0, tf_eip = -1072146745, tf_cs = 8, tf_eflags = 66050, tf_esp = -1053640192, tf_ss = -1052190624}) at ../../i386/i386/trap.c:458 #6 0xc01856c7 in rt_msg1 (type=16, rtinfo=0xca01bcbc) at ../../net/rtsock.c:613 #7 0xc0185b35 in rt_newmaddrmsg (cmd=16, ifma=0xc148d860) at ../../net/rtsock.c:848 #8 0xc018020c in if_delmulti (ifp=0xc132ba00, sa=0xca01bd3c) at ../../net/if.c:1507 #9 0xc01818f5 in vlan_setmulti (ifp=0xc132b400) at ../../net/if_vlan.c:154 #10 0xc0182416 in vlan_ioctl (ifp=0xc132b400, cmd=2149607730, data=0x0) at ../../net/if_vlan.c:704 #11 0xc01802e6 in if_delmulti (ifp=0xc132b400, sa=0xc0724040) at ../../net/if.c:1548 #12 0xc0188b6f in in_delmulti (inm=0xc14c4820) at ../../netinet/in.c:893 #13 0xc019352c in ip_freemoptions (imo=0xc14fba00) at ../../netinet/ip_output.c:1886 #14 0xc01894ad in in_pcbdetach (inp=0xc93dbfc0) at ../../netinet/in_pcb.c:567 #15 0xc019b418 in udp_detach (so=0xc931e940) at ../../netinet/udp_usrreq.c:871 #16 0xc0162511 in soclose (so=0xc931e940) at ../../kern/uipc_socket.c:320 #17 0xc0156a56 in soo_close (fp=0xc14ad600, p=0xc890d6c0) at ../../kern/sys_socket.c:195 #18 0xc013a2df in fdrop (fp=0xc14ad600, p=0xc890d6c0) at ../../sys/file.h:217 #19 0xc013a227 in closef (fp=0xc14ad600, p=0xc890d6c0) at ../../kern/kern_descrip.c:1277 #20 0xc0139629 in close (p=0xc890d6c0, uap=0xca01bf80) at ../../kern/kern_descrip.c:581 #21 0xc01eb9cd in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = -1077937712, tf_esi = 0, tf_ebp = -1077938364, tf_isp = -905855020, tf_ebx = 134973184, tf_edx = 134754364, tf_ecx = 134956992, tf_eax = 6, tf_trapno = 12, tf_err = 2, tf_eip = 672846696, tf_cs = 31, tf_eflags = 659, tf_esp = -1077938408, tf_ss = 47}) at ../../i386/i386/trap.c:1167 #22 0xc01dfe15 in Xint0x80_syscall () #23 0x8049ab8 in ?? () #24 0xbfbfffac in ?? () #25 0x8049d47 in ?? () #26 0x8049909 in ?? () (kgdb) up 5 #5 0xc01eafdb in trap (frame={tf_fs = -1071448048, tf_es = 6422544, tf_ds = -1066074096, tf_edi = -1066046208, tf_esi = 1, tf_ebp = -905855836, tf_isp = -905855876, tf_ebx = -1053640192, tf_edx = 6, tf_ecx = -905855812, tf_eax = 2, tf_trapno = 12, tf_err = 0, tf_eip = -1072146745, tf_cs = 8, tf_eflags = 66050, tf_esp = -1053640192, tf_ss = -1052190624}) at ../../i386/i386/trap.c:458 458 (void) trap_pfault(&frame, FALSE, eva); (kgdb) frame frame->tf_ebp frame->tf_eip #0 rt_msg1 (type=16, rtinfo=0xca01bcbc) at ../../net/rtsock.c:614 614 dlen = ROUNDUP(sa->sa_len); (kgdb) list 609 bzero((caddr_t)rtm, len); 610 for (i = 0; i < RTAX_MAX; i++) { 611 if ((sa = rtinfo->rti_info[i]) == NULL) 612 continue; 613 rtinfo->rti_addrs |= (1 << i); 614 dlen = ROUNDUP(sa->sa_len); 615 m_copyback(m, len, dlen, (caddr_t)sa); 616 len += dlen; 617 } 618 if (m->m_pkthdr.len != len) { (kgdb) print sa $1 = (struct sockaddr *) 0x0 (kgdb) up #1 0xc0185b35 in rt_newmaddrmsg (cmd=16, ifma=0xc148d860) at ../../net/rtsock.c:848 848 if ((m = rt_msg1(cmd, &info)) == NULL) (kgdb) list 843 /* 844 * If a link-layer address is present, present it as a ``gateway'' 845 * (similarly to how ARP entries, e.g., are presented). 846 */ 847 gate = ifma->ifma_lladdr; 848 if ((m = rt_msg1(cmd, &info)) == NULL) 849 return; 850 ifmam = mtod(m, struct ifma_msghdr *); 851 ifmam->ifmam_index = ifp->if_index; 852 ifmam->ifmam_addrs = info.rti_addrs; (kgdb) up #2 0xc018020c in if_delmulti (ifp=0xc132ba00, sa=0xca01bd3c) at ../../net/if.c:1507 1507 rt_newmaddrmsg(RTM_DELMADDR, ifma); (kgdb) list 1502 if (ifma->ifma_refcount > 1) { 1503 ifma->ifma_refcount--; 1504 return 0; 1505 } 1506 1507 rt_newmaddrmsg(RTM_DELMADDR, ifma); 1508 sa = ifma->ifma_lladdr; 1509 s = splimp(); 1510 LIST_REMOVE(ifma, ifma_link); 1511 /* (kgdb) up #3 0xc01818f5 in vlan_setmulti (ifp=0xc132b400) at ../../net/if_vlan.c:154 154 error = if_delmulti(ifp_p, (struct sockaddr *)&sdl); (kgdb) list 149 150 /* First, remove any existing filter entries. */ 151 while(SLIST_FIRST(&sc->vlan_mc_listhead) != NULL) { 152 mc = SLIST_FIRST(&sc->vlan_mc_listhead); 153 bcopy((char *)&mc->mc_addr, LLADDR(&sdl), ETHER_ADDR_LEN); 154 error = if_delmulti(ifp_p, (struct sockaddr *)&sdl); 155 if (error) 156 return(error); 157 SLIST_REMOVE_HEAD(&sc->vlan_mc_listhead, mc_entries); 158 free(mc, M_VLAN); (kgdb) up #4 0xc0182416 in vlan_ioctl (ifp=0xc132b400, cmd=2149607730, data=0x0) at ../../net/if_vlan.c:704 704 error = vlan_setmulti(ifp); (kgdb) list 699 error = EINVAL; 700 } 701 break; 702 case SIOCADDMULTI: 703 case SIOCDELMULTI: 704 error = vlan_setmulti(ifp); 705 break; 706 default: 707 error = EINVAL; 708 } (kgdb) up #5 0xc01802e6 in if_delmulti (ifp=0xc132b400, sa=0xc0724040) at ../../net/if.c:1548 1548 ifp->if_ioctl(ifp, SIOCDELMULTI, 0); (kgdb) list 1543 return 0; 1544 } 1545 1546 s = splimp(); 1547 LIST_REMOVE(ifma, ifma_link); 1548 ifp->if_ioctl(ifp, SIOCDELMULTI, 0); 1549 splx(s); 1550 free(ifma->ifma_addr, M_IFMADDR); 1551 free(sa, M_IFMADDR); 1552 free(ifma, M_IFMADDR); (kgdb) up #6 0xc0188b6f in in_delmulti (inm=0xc14c4820) at ../../netinet/in.c:893 893 if_delmulti(ifma->ifma_ifp, ifma->ifma_addr); (kgdb) list 888 ifma->ifma_protospec = 0; 889 LIST_REMOVE(inm, inm_link); 890 free(inm, M_IPMADDR); 891 } 892 /* XXX - should be separate API for when we have an ifma? */ 893 if_delmulti(ifma->ifma_ifp, ifma->ifma_addr); 894 if (my_inm.inm_ifp != NULL) 895 igmp_leavegroup(&my_inm); 896 splx(s); 897 } (kgdb) up #7 0xc019352c in ip_freemoptions (imo=0xc14fba00) at ../../netinet/ip_output.c:1886 1886 in_delmulti(imo->imo_membership[i]); (kgdb) list 1881 { 1882 register int i; 1883 1884 if (imo != NULL) { 1885 for (i = 0; i < imo->imo_num_memberships; ++i) 1886 in_delmulti(imo->imo_membership[i]); 1887 free(imo, M_IPMOPTS); 1888 } 1889 } 1890 (kgdb) up #8 0xc01894ad in in_pcbdetach (inp=0xc93dbfc0) at ../../netinet/in_pcb.c:567 567 ip_freemoptions(inp->inp_moptions); (kgdb) list 562 sofree(so); 563 if (inp->inp_options) 564 (void)m_free(inp->inp_options); 565 if (inp->inp_route.ro_rt) 566 rtfree(inp->inp_route.ro_rt); 567 ip_freemoptions(inp->inp_moptions); 568 inp->inp_vflag = 0; 569 zfreei(ipi->ipi_zone, inp); 570 } 571 -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 8:49:13 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C96DD37B400 for ; Tue, 16 Jul 2002 08:49:10 -0700 (PDT) Received: from quack.kfu.com (adsl-67-113-12-90.dsl.snfc21.pacbell.net [67.113.12.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D03943E3B for ; Tue, 16 Jul 2002 08:49:10 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Received: from icarus.kfu.com (icarus.kfu.com [IPv6:3ffe:1200:301b:2:230:abff:fe06:62e5]) by quack.kfu.com (8.12.3/8.12.3) with ESMTP id g6GFn7Ki099171 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Tue, 16 Jul 2002 08:49:08 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Received: from quack.kfu.com (localhost [IPv6:::1]) by icarus.kfu.com (8.12.3/8.12.3) with ESMTP id g6GFn2TF019531; Tue, 16 Jul 2002 08:49:02 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Message-ID: <3D34406E.3000502@quack.kfu.com> Date: Tue, 16 Jul 2002 08:49:02 -0700 From: Nick Sayer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.0) Gecko/20020606 X-Accept-Language: en, en-US, en-GB MIME-Version: 1.0 To: Elliot Finley Cc: freebsd-stable@freebsd.org Subject: Re: Poor Mans Software raid 1 on root partition? References: <20020715225138.V82789-100000@mail.allcaps.org> <011c01c22c8e$8e6d6f70$0900a8c0@P1200n> <00a001c22cd6$694888e0$035ad70a@PriceDMSDoc> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Elliot Finley wrote: > Here is what I do to make a bootable backup of my running system. [...] > /sbin/dump -0f - /usr | /sbin/restore -rf - This is a... (I hesitate to use the word "bad", since it's not nearly bad as using dd) not-so-good thing to do with a live filesystem. What happens is that between phase 2 and 3 of the dump, the restore runs through the entire filesystem and makes all the directories. This is a *substantial* delay. In the meantime, the original filesystem can be changing. Level 0 backups need to be done when the filesystem is quiescent as possible anyway. Piping it to restore just makes things worse. The better way is dump | gxip > temporary_file gzcat temporary_file | restore rm temporary_file One trick is to actually newfs your swap partition and use that for the temporary file, presuming your swap area is large enough to do the trick. I do dump | restore all the time when I want to move from one disk to another, but I only do it in single-user mode. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 9: 7:19 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29BC437B400 for ; Tue, 16 Jul 2002 09:07:17 -0700 (PDT) Received: from sage-one.net (adsl-65-71-135-137.dsl.crchtx.swbell.net [65.71.135.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4222F43E3B for ; Tue, 16 Jul 2002 09:07:16 -0700 (PDT) (envelope-from jackstone@sage-one.net) Received: from sagea (sagea [192.168.0.3]) by sage-one.net (8.11.6/8.11.6) with SMTP id g6GG78553811; Tue, 16 Jul 2002 11:07:08 -0500 (CDT) (envelope-from jackstone@sage-one.net) Message-Id: <3.0.5.32.20020716110707.012724d8@mail.sage-one.net> X-Sender: jackstone@mail.sage-one.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Tue, 16 Jul 2002 11:07:07 -0500 To: Nick Sayer , Elliot Finley From: "Jack L. Stone" Subject: Re: Poor Mans Software raid 1 on root partition? Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: <3D34406E.3000502@quack.kfu.com> References: <20020715225138.V82789-100000@mail.allcaps.org> <011c01c22c8e$8e6d6f70$0900a8c0@P1200n> <00a001c22cd6$694888e0$035ad70a@PriceDMSDoc> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >I do dump | restore all the time when I want to move from one disk to >another, but I only do it in single-user mode. :-) > ...but, then the system is unavailable to others in "single-user mode" for some length of time which is unacceptable in many cases.... Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 9:49:36 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E88937B400; Tue, 16 Jul 2002 09:49:20 -0700 (PDT) Received: from ns.altadena.net (ns.altadena.net [206.126.144.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C8CE43E65; Tue, 16 Jul 2002 09:49:19 -0700 (PDT) (envelope-from pete@ns.altadena.net) Received: from ns.altadena.net (localhost [127.0.0.1]) by ns.altadena.net (8.12.3/8.12.3) with ESMTP id g6GGnCb8052979; Tue, 16 Jul 2002 09:49:12 -0700 (PDT) (envelope-from pete@ns.altadena.net) Received: (from pete@localhost) by ns.altadena.net (8.12.3/8.12.3/Submit) id g6GGnC0b052978; Tue, 16 Jul 2002 09:49:12 -0700 (PDT) (envelope-from pete) From: Pete Carah Message-Id: <200207161649.g6GGnC0b052978@ns.altadena.net> Subject: RELENG_4_6 To: stable@freebsd.org, questions@freebsd.org Date: Tue, 16 Jul 2002 09:49:12 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL68 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=iso8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At first I thought I may have picked up a partial cvsup but cvsup'd twice more at hour intervals with no fix apparent. There appears to be=20 a missing file in the MFC for skey fixes... This is *not* a problem in RELENG_4, only RELENG_4_6. I haven't tried RELENG_4_5. -- Pete ------------------------end of make world output--------------------- cd /usr/src/usr.sbin/i4b/isdntelctl; make _EXTRADEPEND echo isdntelctl: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend =3D=3D=3D> usr.sbin/i4b/isdntest rm -f .depend mkdep -f .depend -a /usr/src/usr.sbin/i4b/isdntest/main.c cd /usr/src/usr.sbin/i4b/isdntest; make _EXTRADEPEND echo isdntest: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend =3D=3D=3D> usr.sbin/i4b/isdntrace rm -f .depend mkdep -f .depend -a /usr/src/usr.sbin/i4b/isdntrace/q921.c /usr/src/us= r.sbin/i4b/isdntrace/q931.c /usr/src/usr.sbin/i4b/isdntrace/q931_util.c /us= r/src/usr.sbin/i4b/isdntrace/q932_fac.c /usr/src/usr.sbin/i4b/isdntrace/1tr= 6.c /usr/src/usr.sbin/i4b/isd= ntrace/trace.c /usr/src/usr.sbin/i4b/isdntrace/pcause_1tr6.c /usr/src/usr.s= bin/i4b/isdntrace/pcause_q850.c /usr/src/usr.sbin/i4b/isdntrace/unknownl3.c cd /usr/src/usr.sbin/i4b/isdntrace; make _EXTRADEPEND echo isdntrace: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend =3D=3D=3D> usr.sbin/i4b/man =3D=3D=3D> usr.sbin/boot0cfg rm -f .depend mkdep -f .depend -a /usr/src/usr.sbin/boot0cfg/boot0cfg.c cd /usr/src/usr.sbin/boot0cfg; make _EXTRADEPEND echo boot0cfg: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend =3D=3D=3D> secure =3D=3D=3D> secure/lib =3D=3D=3D> secure/lib/libcipher =3D=3D=3D> secure/lib/libcrypto =3D=3D=3D> secure/lib/libssl =3D=3D=3D> secure/lib/libssh =3D=3D=3D> secure/libexec =3D=3D=3D> secure/libexec/sftp-server rm -f .depend mkdep -f .depend -a -I/usr/src/secure/libexec/sftp-server/../../../crypt= o/openssh -DNO_IDEA /usr/src/secure/libexec/sftp-server/../../../crypto/op= enssh/sftp-server.c /usr/src/secure/libexec/sftp-server/../../../crypto/ope= nssh/sftp-common.c cd /usr/src/secure/libexec/sftp-server; make _EXTRADEPEND echo sftp-server: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i3= 86/usr/lib/libcrypto.a >> .depend =3D=3D=3D> secure/libexec/ssh-keysign rm -f .depend mkdep -f .depend -a -I/usr/src/secure/libexec/ssh-keysign/../../../crypt= o/openssh -DNO_IDEA /usr/src/secure/libexec/ssh-keysign/../../../crypto/op= enssh/ssh-keysign.c cd /usr/src/secure/libexec/ssh-keysign; make _EXTRADEPEND echo ssh-keysign: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i3= 86/usr/lib/libcrypto.a /usr/obj/usr/src/i386/usr/lib/libz.a >> .depend =3D=3D=3D> secure/usr.bin =3D=3D=3D> secure/usr.bin/bdes rm -f .depend mkdep -f .depend -a -DNO_IDEA /usr/src/secure/usr.bin/bdes/bdes.c cd /usr/src/secure/usr.bin/bdes; make _EXTRADEPEND echo bdes: /usr/obj/usr/src/i386/usr/lib/libc.a libcipher.a >> .depend =3D=3D=3D> secure/usr.bin/openssl cc -O -pipe -DMONOLITH -I/usr/src/secure/usr.bin/openssl -DNO_IDEA -c /= usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/x509.c rm -f .depend mkdep -f .depend -a -DMONOLITH -I/usr/src/secure/usr.bin/openssl -DNO_ID= EA /usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/app_rand.c= /usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/apps.c /usr/s= rc/secure/usr.bin/openssl/../= ../../crypto/openssl/apps/asn1pars.c /usr/src/secure/usr.bin/openssl/../../= ../crypto/openssl/apps/ca.c /usr/src/secure/usr.bin/openssl/../../../crypto= /openssl/apps/ciphers.c /usr/src/secure/usr.bin/openssl/../../../crypto/ope= nssl/apps/crl.c /usr/src/secu= re/usr.bin/openssl/../../../crypto/openssl/apps/crl2p7.c /usr/src/secure/us= r.bin/openssl/../../../crypto/openssl/apps/dgst.c /usr/src/secure/usr.bin/o= penssl/../../../crypto/openssl/apps/dh.c /usr/src/secure/usr.bin/openssl/..= /../../crypto/openssl/apps/dh= param.c /usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/dsa.c = /usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/dsaparam.c /us= r/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/enc.c /usr/src/se= cure/usr.bin/openssl/../../..= /crypto/openssl/apps/errstr.c /usr/src/secure/usr.bin/openssl/../../../cryp= to/openssl/apps/gendh.c /usr/src/secure/usr.bin/openssl/../../../crypto/ope= nssl/apps/gendsa.c /usr/src/secure/usr.bin/openssl/../../../crypto/openssl/= apps/genrsa.c /usr/src/secure= /usr.bin/openssl/../../../crypto/openssl/apps/nseq.c /usr/src/secure/usr.bi= n/openssl/../../../crypto/openssl/apps/openssl.c /usr/src/secure/usr.bin/op= enssl/../../../crypto/openssl/apps/passwd.c /usr/src/secure/usr.bin/openssl= /../../../crypto/openssl/apps= /pkcs12.c /usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/pkcs= 7.c /usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/pkcs8.c /u= sr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/rand.c /usr/src/= secure/usr.bin/openssl/../../= ../crypto/openssl/apps/req.c /usr/src/secure/usr.bin/openssl/../../../crypt= o/openssl/apps/rsa.c /usr/src/secure/usr.bin/openssl/../../../crypto/openss= l/apps/rsautl.c /usr/src/secure/usr.bin/openssl/../../../crypto/openssl/app= s/s_cb.c /usr/src/secure/usr.= bin/openssl/../../../crypto/openssl/apps/s_client.c /usr/src/secure/usr.bin= /openssl/../../../crypto/openssl/apps/s_server.c /usr/src/secure/usr.bin/op= enssl/../../../crypto/openssl/apps/s_socket.c /usr/src/secure/usr.bin/opens= sl/../../../crypto/openssl/ap= ps/s_time.c /usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/se= ss_id.c /usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/smime.= c /usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/speed.c /usr= /src/secure/usr.bin/openssl/.= ./../../crypto/openssl/apps/spkac.c /usr/src/secure/usr.bin/openssl/../../.= ./crypto/openssl/apps/verify.c /usr/src/secure/usr.bin/openssl/../../../cry= pto/openssl/apps/version.c cd /usr/src/secure/usr.bin/openssl; make _EXTRADEPEND echo openssl: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend =3D=3D=3D> secure/usr.bin/scp rm -f .depend mkdep -f .depend -a -I/usr/src/secure/usr.bin/scp/../../../crypto/openss= h -DNO_IDEA /usr/src/secure/usr.bin/scp/../../../crypto/openssh/scp.c cd /usr/src/secure/usr.bin/scp; make _EXTRADEPEND echo scp: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend =3D=3D=3D> secure/usr.bin/sftp rm -f .depend mkdep -f .depend -a -I/usr/src/secure/usr.bin/sftp/../../../crypto/opens= sh -DNO_IDEA /usr/src/secure/usr.bin/sftp/../../../crypto/openssh/sftp.c /= usr/src/secure/usr.bin/sftp/../../../crypto/openssh/sftp-client.c /usr/src/= secure/usr.bin/sftp/../../../= crypto/openssh/sftp-int.c /usr/src/secure/usr.bin/sftp/../../../crypto/open= ssh/sftp-common.c /usr/src/secure/usr.bin/sftp/../../../crypto/openssh/sftp= -glob.c cd /usr/src/secure/usr.bin/sftp; make _EXTRADEPEND echo sftp: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i386/usr/= lib/libcrypto.a >> .depend =3D=3D=3D> secure/usr.bin/ssh rm -f .depend mkdep -f .depend -a -I/usr/src/secure/usr.bin/ssh/../../../crypto/openss= h -DKRB5 -DHEIMDAL -DXAUTH_PATH=3D\"/usr/X11R6/bin/xauth\" -DNO_IDEA /usr/= src/secure/usr.bin/ssh/../../../crypto/openssh/ssh.c /usr/src/secure/usr.bi= n/ssh/../../../crypto/openssh/r= eadconf.c /usr/src/secure/usr.bin/ssh/../../../crypto/openssh/clientloop.c = /usr/src/secure/usr.bin/ssh/../../../crypto/openssh/sshtty.c /usr/src/secur= e/usr.bin/ssh/../../../crypto/openssh/sshconnect.c /usr/src/secure/usr.bin/= ssh/../../../crypto/openssh/s= shconnect1.c /usr/src/secure/usr.bin/ssh/../../../crypto/openssh/sshconnect= 2.c cd /usr/src/secure/usr.bin/ssh; make _EXTRADEPEND echo ssh: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i386/usr/li= b/libkrb5.a /usr/obj/usr/src/i386/usr/lib/libcom_err.a /usr/obj/usr/src/i3= 86/usr/lib/libmd.a /usr/obj/usr/src/i386/usr/lib/libcrypt.a /usr/obj/usr/s= rc/i386/usr/lib/libcrypto.a /= usr/obj/usr/src/i386/usr/lib/libutil.a /usr/obj/usr/src/i386/usr/lib/libz.a= >> .depend =3D=3D=3D> secure/usr.bin/ssh-add rm -f .depend mkdep -f .depend -a -I/usr/src/secure/usr.bin/ssh-add/../../../crypto/op= enssh -DNO_IDEA /usr/src/secure/usr.bin/ssh-add/../../../crypto/openssh/ss= h-add.c cd /usr/src/secure/usr.bin/ssh-add; make _EXTRADEPEND echo ssh-add: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i386/u= sr/lib/libcrypto.a >> .depend =3D=3D=3D> secure/usr.bin/ssh-agent rm -f .depend mkdep -f .depend -a -I/usr/src/secure/usr.bin/ssh-agent/../../../crypto/= openssh -DNO_IDEA /usr/src/secure/usr.bin/ssh-agent/../../../crypto/openss= h/ssh-agent.c cd /usr/src/secure/usr.bin/ssh-agent; make _EXTRADEPEND echo ssh-agent: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i386= /usr/lib/libcrypto.a >> .depend =3D=3D=3D> secure/usr.bin/ssh-keygen rm -f .depend mkdep -f .depend -a -I/usr/src/secure/usr.bin/ssh-keygen/../../../crypto= /openssh -DNO_IDEA /usr/src/secure/usr.bin/ssh-keygen/../../../crypto/open= ssh/ssh-keygen.c cd /usr/src/secure/usr.bin/ssh-keygen; make _EXTRADEPEND echo ssh-keygen: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i38= 6/usr/lib/libcrypto.a >> .depend =3D=3D=3D> secure/usr.bin/ssh-keyscan rm -f .depend mkdep -f .depend -a -I/usr/src/secure/usr.bin/ssh-keyscan/../../../crypt= o/openssh -DNO_IDEA /usr/src/secure/usr.bin/ssh-keyscan/../../../crypto/op= enssh/ssh-keyscan.c cd /usr/src/secure/usr.bin/ssh-keyscan; make _EXTRADEPEND echo ssh-keyscan: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i3= 86/usr/lib/libcrypto.a /usr/obj/usr/src/i386/usr/lib/libz.a >> .depend =3D=3D=3D> secure/usr.sbin =3D=3D=3D> secure/usr.sbin/sshd make: don't know how to make auth-skey.c. Stop *** Error code 2 Stop in /usr/src/secure/usr.sbin. *** Error code 1 Stop in /usr/src/secure. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop 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 Tue Jul 16 10:59:56 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A70BA37B400; Tue, 16 Jul 2002 10:59:51 -0700 (PDT) Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23CA743E64; Tue, 16 Jul 2002 10:59:51 -0700 (PDT) (envelope-from bmah@employees.org) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020716175950.ZLHP8262.rwcrmhc52.attbi.com@bmah.dyndns.org>; Tue, 16 Jul 2002 17:59:50 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.5/8.12.5) with ESMTP id g6GHxoeU049112; Tue, 16 Jul 2002 10:59:50 -0700 (PDT) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.5/8.12.5/Submit) id g6GHxoxR049111; Tue, 16 Jul 2002 10:59:50 -0700 (PDT) Message-Id: <200207161759.g6GHxoxR049111@intruder.bmah.org> X-Mailer: exmh version 2.5+ 20020506 with nmh-1.0.4 To: Pete Carah Cc: stable@FreeBSD.ORG, questions@FreeBSD.ORG, des@FreeBSD.ORG Subject: Re: RELENG_4_6 In-Reply-To: <200207161649.g6GGnC0b052978@ns.altadena.net> References: <200207161649.g6GGnC0b052978@ns.altadena.net> Comments: In-reply-to Pete Carah message dated "Tue, 16 Jul 2002 09:49:12 -0700." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_-1758456700P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Tue, 16 Jul 2002 10:59:50 -0700 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --==_Exmh_-1758456700P Content-Type: text/plain; charset=us-ascii If memory serves me right, Pete Carah wrote: > At first I thought I may have picked up a partial cvsup but cvsup'd > twice more at hour intervals with no fix apparent. There appears to be > a missing file in the MFC for skey fixes... From what I can tell (my local respository, commit logs, and cvsweb) it looks like src/crypto/openssh/auth-skey.c didn't get committed to the RELENG_4_6 branch. Bruce. --==_Exmh_-1758456700P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) Comment: Exmh version 2.5+ 20020506 iD8DBQE9NF8W2MoxcVugUsMRAmn8AKCq1eFjX7vworYQNSktAA5aPx7XFQCeNLo4 FW1FyRzQRpWO/70R5Fa2ukY= =1gQM -----END PGP SIGNATURE----- --==_Exmh_-1758456700P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 11: 3: 2 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56CF637B400 for ; Tue, 16 Jul 2002 11:02:57 -0700 (PDT) Received: from valen.gwi.net (valen.gwi.net [207.5.128.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9805343E64 for ; Tue, 16 Jul 2002 11:02:56 -0700 (PDT) (envelope-from jamin@gwi.net) Received: from dargo.gwi (dargo.gwi.net [207.5.142.21]) by valen.gwi.net (8.11.6/8.11.6) with ESMTP id g6GI2tU13086 for ; Tue, 16 Jul 2002 14:02:55 -0400 (EDT) Date: Tue, 16 Jul 2002 14:02:55 -0400 (EDT) From: "Jamin A. Brown" To: freebsd-stable@FreeBSD.ORG Subject: Re: RELENG_4_6 In-Reply-To: <200207161759.g6GHxoxR049111@intruder.bmah.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I just attempted to buildworld from a cvsup of this same branch from cvs11.freebsd.org. I ran mergemaster -p first, which added the sshd group to /etc/group. My failure is different: ===> usr.sbin/boot0cfg rm -f .depend mkdep -f .depend -a /usr/src/usr.sbin/boot0cfg/boot0cfg.c cd /usr/src/usr.sbin/boot0cfg; make _EXTRADEPEND echo boot0cfg: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend 1 error *** Error code 2 1 error *** Error code 2 1 error On Tue, 16 Jul 2002, Bruce A. Mah wrote: > If memory serves me right, Pete Carah wrote: > > At first I thought I may have picked up a partial cvsup but cvsup'd > > twice more at hour intervals with no fix apparent. There appears to be > > a missing file in the MFC for skey fixes... > > >From what I can tell (my local respository, commit logs, and cvsweb) it > looks like src/crypto/openssh/auth-skey.c didn't get committed to the > RELENG_4_6 branch. > > Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 11:10: 1 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 523A237B400 for ; Tue, 16 Jul 2002 11:09:47 -0700 (PDT) Received: from ion.gank.org (ion.gank.org [64.81.113.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0649143E4A for ; Tue, 16 Jul 2002 11:09:46 -0700 (PDT) (envelope-from craig@meoqu.gank.org) Received: from owen1492.it.oot (nat72962.owentools.com [206.50.138.221]) by ion.gank.org (GankMail) with ESMTP id 7BD5B5378 for ; Tue, 16 Jul 2002 13:09:44 -0500 (CDT) Subject: Re: weird kernel panics From: Craig Boston To: stable@freebsd.org In-Reply-To: <20020716153506.GA41125@gx.dnepr.net> References: <20020716153506.GA41125@gx.dnepr.net> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.8 Date: 16 Jul 2002 13:09:39 -0500 Message-Id: <1026842984.1084.9.camel@owen1492.it.oot> Mime-Version: 1.0 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just another data point, this has happened to me as well. This was on a production box so I hadn't had time to trace it yet; thanks Andrey :) Very similar setup -- zebra and ospfd running on a box with a vlan on an fxp card. Killing ospfd will sometimes cause this panic (whether I kill it manually or a shutdown -r kills it). This was happening to me on 4.5-STABLE, so it looks like it's been around at least since then. Pseudo-workaround for me was to not kill ospfd ;) Craig On Tue, 2002-07-16 at 10:35, Andrey Lakhno wrote: > Hi! > > I use FreeBSD 4.6-R with zebra routing software (zebra-0.93a). > Both ripd and ospfd is running. With non-zero probability, when I kill ripd > or ospfd process, system panics with the following diagnostics: > > Fatal trap 12: page fault while in kernel mode > fault virtual address = 0x6 > fault code = supervisor read, page not present > instruction pointer = 0x8:0xc01856c7 > stack pointer = 0x10:0xca01bc90 > frame pointer = 0x10:0xca01bca4 > code segment = base 0x0, limit 0xfffff, type 0x1b > = DPL 0, pres 1, def32 1, gran 1 > processor eflags = interrupt enabled, resume, IOPL = 0 > current process = 629 (ripd) > interrupt mask = net > trap number = 12 > panic: page fault > > syncing disks... 40 2 1 1 1 1 1 1 1 > done > > I found that such panics occurs only on machines with vlan interfaces. > > > Kernel config follows: > ---8<--- > makeoptions DEBUG=-g > > machine i386 > cpu I686_CPU > ident XXX > > options INET > options FFS > options FFS_ROOT > options SOFTUPDATES > options PROCFS > options COMPAT_43 > options UCONSOLE > options KTRACE > options SYSVSHM > options SYSVMSG > options SYSVSEM > options P1003_1B > options _KPOSIX_PRIORITY_SCHEDULING > options ICMP_BANDLIM > options KBD_INSTALL_CDEV > > device isa > device pci > > device ata > device atadisk > options ATA_STATIC_ID > > device atkbdc0 at isa? port IO_KBD > device atkbd0 at atkbdc? irq 1 > > device vga0 at isa? > device sc0 at isa? flags 0x100 > device npx0 at nexus? port IO_NPX irq 13 > > device sio0 at isa? port IO_COM1 flags 0x10 irq 4 > device sio1 at isa? port IO_COM2 irq 3 > > device miibus > device fxp > device ed > device rl > > pseudo-device loop > pseudo-device ether > pseudo-device pty > pseudo-device bpf > pseudo-device vlan 2 > > options UFS_DIRHASH > options IPFIREWALL > options IPFIREWALL_VERBOSE > options IPFIREWALL_DEFAULT_TO_ACCEPT > options TCP_DROP_SYNFIN > options DUMMYNET > options HZ=1000 > options SC_HISTORY_SIZE=100 > ---8<--- > > ifconfig: > fxp0: flags=8843 mtu 1500 > inet x.x.x.x netmask 0xffffffe0 broadcast x.x.x.x > ether 00:03:47:xx:xx:xx > media: Ethernet autoselect (100baseTX ) > status: active > vlan0: flags=8843 mtu 1500 > inet x.x.x.x netmask 0xffffffe0 broadcast x.x.x.x > ether 00:03:47:xx:xx:xx > vlan: 5 parent interface: fxp0 > vlan1: flags=0<> mtu 1500 > ether 00:00:00:00:00:00 > vlan: 0 parent interface: > lo0: flags=8049 mtu 16384 > inet 127.0.0.1 netmask 0xff000000 > > > Here is output from gdb -k: > > (kgdb) where > #0 dumpsys () at ../../kern/kern_shutdown.c:487 > #1 0xc01445bf in boot (howto=256) at ../../kern/kern_shutdown.c:316 > #2 0xc01449e4 in poweroff_wait (junk=0xc0211d6c, howto=-1071572849) > at ../../kern/kern_shutdown.c:595 > #3 0xc01eb71e in trap_fatal (frame=0xca01bc50, eva=6) > at ../../i386/i386/trap.c:966 > #4 0xc01eb3f1 in trap_pfault (frame=0xca01bc50, usermode=0, eva=6) > at ../../i386/i386/trap.c:859 > #5 0xc01eafdb in trap (frame={tf_fs = -1071448048, tf_es = 6422544, > tf_ds = -1066074096, tf_edi = -1066046208, tf_esi = 1, > tf_ebp = -905855836, tf_isp = -905855876, tf_ebx = -1053640192, > tf_edx = 6, tf_ecx = -905855812, tf_eax = 2, tf_trapno = 12, tf_err = 0, > tf_eip = -1072146745, tf_cs = 8, tf_eflags = 66050, > tf_esp = -1053640192, tf_ss = -1052190624}) at ../../i386/i386/trap.c:458 > #6 0xc01856c7 in rt_msg1 (type=16, rtinfo=0xca01bcbc) > at ../../net/rtsock.c:613 > #7 0xc0185b35 in rt_newmaddrmsg (cmd=16, ifma=0xc148d860) > at ../../net/rtsock.c:848 > #8 0xc018020c in if_delmulti (ifp=0xc132ba00, sa=0xca01bd3c) > at ../../net/if.c:1507 > #9 0xc01818f5 in vlan_setmulti (ifp=0xc132b400) at ../../net/if_vlan.c:154 > #10 0xc0182416 in vlan_ioctl (ifp=0xc132b400, cmd=2149607730, data=0x0) > at ../../net/if_vlan.c:704 > #11 0xc01802e6 in if_delmulti (ifp=0xc132b400, sa=0xc0724040) > at ../../net/if.c:1548 > #12 0xc0188b6f in in_delmulti (inm=0xc14c4820) at ../../netinet/in.c:893 > #13 0xc019352c in ip_freemoptions (imo=0xc14fba00) > at ../../netinet/ip_output.c:1886 > #14 0xc01894ad in in_pcbdetach (inp=0xc93dbfc0) at ../../netinet/in_pcb.c:567 > #15 0xc019b418 in udp_detach (so=0xc931e940) at ../../netinet/udp_usrreq.c:871 > #16 0xc0162511 in soclose (so=0xc931e940) at ../../kern/uipc_socket.c:320 > #17 0xc0156a56 in soo_close (fp=0xc14ad600, p=0xc890d6c0) > at ../../kern/sys_socket.c:195 > #18 0xc013a2df in fdrop (fp=0xc14ad600, p=0xc890d6c0) at ../../sys/file.h:217 > #19 0xc013a227 in closef (fp=0xc14ad600, p=0xc890d6c0) > at ../../kern/kern_descrip.c:1277 > #20 0xc0139629 in close (p=0xc890d6c0, uap=0xca01bf80) > at ../../kern/kern_descrip.c:581 > #21 0xc01eb9cd in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, > tf_edi = -1077937712, tf_esi = 0, tf_ebp = -1077938364, > tf_isp = -905855020, tf_ebx = 134973184, tf_edx = 134754364, > tf_ecx = 134956992, tf_eax = 6, tf_trapno = 12, tf_err = 2, > tf_eip = 672846696, tf_cs = 31, tf_eflags = 659, tf_esp = -1077938408, > tf_ss = 47}) at ../../i386/i386/trap.c:1167 > #22 0xc01dfe15 in Xint0x80_syscall () > #23 0x8049ab8 in ?? () > #24 0xbfbfffac in ?? () > #25 0x8049d47 in ?? () > #26 0x8049909 in ?? () > > (kgdb) up 5 > #5 0xc01eafdb in trap (frame={tf_fs = -1071448048, tf_es = 6422544, > tf_ds = -1066074096, tf_edi = -1066046208, tf_esi = 1, > tf_ebp = -905855836, tf_isp = -905855876, tf_ebx = -1053640192, > tf_edx = 6, tf_ecx = -905855812, tf_eax = 2, tf_trapno = 12, tf_err = 0, > tf_eip = -1072146745, tf_cs = 8, tf_eflags = 66050, > tf_esp = -1053640192, tf_ss = -1052190624}) at ../../i386/i386/trap.c:458 > 458 (void) trap_pfault(&frame, FALSE, eva); > > (kgdb) frame frame->tf_ebp frame->tf_eip > #0 rt_msg1 (type=16, rtinfo=0xca01bcbc) at ../../net/rtsock.c:614 > 614 dlen = ROUNDUP(sa->sa_len); > > (kgdb) list > 609 bzero((caddr_t)rtm, len); > 610 for (i = 0; i < RTAX_MAX; i++) { > 611 if ((sa = rtinfo->rti_info[i]) == NULL) > 612 continue; > 613 rtinfo->rti_addrs |= (1 << i); > 614 dlen = ROUNDUP(sa->sa_len); > 615 m_copyback(m, len, dlen, (caddr_t)sa); > 616 len += dlen; > 617 } > 618 if (m->m_pkthdr.len != len) { > > (kgdb) print sa > $1 = (struct sockaddr *) 0x0 > > (kgdb) up > #1 0xc0185b35 in rt_newmaddrmsg (cmd=16, ifma=0xc148d860) > at ../../net/rtsock.c:848 > 848 if ((m = rt_msg1(cmd, &info)) == NULL) > (kgdb) list > 843 /* > 844 * If a link-layer address is present, present it as a ``gateway'' > 845 * (similarly to how ARP entries, e.g., are presented). > 846 */ > 847 gate = ifma->ifma_lladdr; > 848 if ((m = rt_msg1(cmd, &info)) == NULL) > 849 return; > 850 ifmam = mtod(m, struct ifma_msghdr *); > 851 ifmam->ifmam_index = ifp->if_index; > 852 ifmam->ifmam_addrs = info.rti_addrs; > (kgdb) up > #2 0xc018020c in if_delmulti (ifp=0xc132ba00, sa=0xca01bd3c) > at ../../net/if.c:1507 > 1507 rt_newmaddrmsg(RTM_DELMADDR, ifma); > (kgdb) list > 1502 if (ifma->ifma_refcount > 1) { > 1503 ifma->ifma_refcount--; > 1504 return 0; > 1505 } > 1506 > 1507 rt_newmaddrmsg(RTM_DELMADDR, ifma); > 1508 sa = ifma->ifma_lladdr; > 1509 s = splimp(); > 1510 LIST_REMOVE(ifma, ifma_link); > 1511 /* > (kgdb) up > #3 0xc01818f5 in vlan_setmulti (ifp=0xc132b400) at ../../net/if_vlan.c:154 > 154 error = if_delmulti(ifp_p, (struct sockaddr *)&sdl); > (kgdb) list > 149 > 150 /* First, remove any existing filter entries. */ > 151 while(SLIST_FIRST(&sc->vlan_mc_listhead) != NULL) { > 152 mc = SLIST_FIRST(&sc->vlan_mc_listhead); > 153 bcopy((char *)&mc->mc_addr, LLADDR(&sdl), ETHER_ADDR_LEN); > 154 error = if_delmulti(ifp_p, (struct sockaddr *)&sdl); > 155 if (error) > 156 return(error); > 157 SLIST_REMOVE_HEAD(&sc->vlan_mc_listhead, mc_entries); > 158 free(mc, M_VLAN); > (kgdb) up > #4 0xc0182416 in vlan_ioctl (ifp=0xc132b400, cmd=2149607730, data=0x0) > at ../../net/if_vlan.c:704 > 704 error = vlan_setmulti(ifp); > (kgdb) list > 699 error = EINVAL; > 700 } > 701 break; > 702 case SIOCADDMULTI: > 703 case SIOCDELMULTI: > 704 error = vlan_setmulti(ifp); > 705 break; > 706 default: > 707 error = EINVAL; > 708 } > (kgdb) up > #5 0xc01802e6 in if_delmulti (ifp=0xc132b400, sa=0xc0724040) > at ../../net/if.c:1548 > 1548 ifp->if_ioctl(ifp, SIOCDELMULTI, 0); > (kgdb) list > 1543 return 0; > 1544 } > 1545 > 1546 s = splimp(); > 1547 LIST_REMOVE(ifma, ifma_link); > 1548 ifp->if_ioctl(ifp, SIOCDELMULTI, 0); > 1549 splx(s); > 1550 free(ifma->ifma_addr, M_IFMADDR); > 1551 free(sa, M_IFMADDR); > 1552 free(ifma, M_IFMADDR); > (kgdb) up > #6 0xc0188b6f in in_delmulti (inm=0xc14c4820) at ../../netinet/in.c:893 > 893 if_delmulti(ifma->ifma_ifp, ifma->ifma_addr); > (kgdb) list > 888 ifma->ifma_protospec = 0; > 889 LIST_REMOVE(inm, inm_link); > 890 free(inm, M_IPMADDR); > 891 } > 892 /* XXX - should be separate API for when we have an ifma? */ > 893 if_delmulti(ifma->ifma_ifp, ifma->ifma_addr); > 894 if (my_inm.inm_ifp != NULL) > 895 igmp_leavegroup(&my_inm); > 896 splx(s); > 897 } > (kgdb) up > #7 0xc019352c in ip_freemoptions (imo=0xc14fba00) > at ../../netinet/ip_output.c:1886 > 1886 in_delmulti(imo->imo_membership[i]); > (kgdb) list > 1881 { > 1882 register int i; > 1883 > 1884 if (imo != NULL) { > 1885 for (i = 0; i < imo->imo_num_memberships; ++i) > 1886 in_delmulti(imo->imo_membership[i]); > 1887 free(imo, M_IPMOPTS); > 1888 } > 1889 } > 1890 > (kgdb) up > #8 0xc01894ad in in_pcbdetach (inp=0xc93dbfc0) at ../../netinet/in_pcb.c:567 > 567 ip_freemoptions(inp->inp_moptions); > (kgdb) list > 562 sofree(so); > 563 if (inp->inp_options) > 564 (void)m_free(inp->inp_options); > 565 if (inp->inp_route.ro_rt) > 566 rtfree(inp->inp_route.ro_rt); > 567 ip_freemoptions(inp->inp_moptions); > 568 inp->inp_vflag = 0; > 569 zfreei(ipi->ipi_zone, inp); > 570 } > 571 > > -- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 11:17:25 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 242E837B447 for ; Tue, 16 Jul 2002 11:17:15 -0700 (PDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id BC50B43E42 for ; Tue, 16 Jul 2002 11:17:13 -0700 (PDT) (envelope-from Gerhard.Sittig@gmx.net) Received: (qmail 4329 invoked by uid 0); 16 Jul 2002 18:17:11 -0000 Received: from p5091030c.dip0.t-ipconnect.de (HELO mail.gsinet.sittig.org) (80.145.3.12) by mail.gmx.net (mp007-rz3) with SMTP; 16 Jul 2002 18:17:11 -0000 Received: (qmail 14612 invoked from network); 16 Jul 2002 17:56:33 -0000 Received: from shell.gsinet.sittig.org (192.168.11.153) by mail.gsinet.sittig.org with SMTP; 16 Jul 2002 17:56:33 -0000 Received: (from sittig@localhost) by shell.gsinet.sittig.org (8.11.3/8.11.3) id g6GHuOh14599 for freebsd-stable@freebsd.org; Tue, 16 Jul 2002 19:56:24 +0200 (CEST) (envelope-from sittig) Date: Tue, 16 Jul 2002 19:56:24 +0200 From: Gerhard Sittig To: freebsd-stable@freebsd.org Subject: Re: subscribe freebsd-stable Message-ID: <20020716195624.X1494@shell.gsinet.sittig.org> Mail-Followup-To: freebsd-stable@freebsd.org References: <200207152133.g6FLXQb72508@osvald.void.ru> <20020716053638.A21324@grybel.mayn.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020716053638.A21324@grybel.mayn.de>; from 520002375936-0001@t-online.de on Tue, Jul 16, 2002 at 05:36:38AM +0200 Organization: System Defenestrators Inc. Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jul 16, 2002 at 05:36 +0200, Linus wrote: > > On Tue, Jul 16, 2002 at 01:33:26AM +0400, krok wrote: > > subscribe freebsd-stable > > How about changing the passage in the FreeBSD-Handbook as to less > misleading/confusing the people who want to (un)subscribe to various > freebsd-MLs? New users easily get confused with 'freebsd-xyz@...' and > 'majordomo@...' and to which of them they have to send a(n) > (un)subscribe to. Which part of the handbook are you talking about? I have here: ----- snip ------------------------------------------------------ [ Appendix C. Resources on the Internet ] [ C.1. Mailing Lists ] C.1.2. How to Subscribe All mailing lists live on FreeBSD.org, so to post to a given list you simply mail to . It will then be redistributed to mailing list members world-wide. To subscribe to a list, send mail to and include subscribe [] in the body of your message. For example, to subscribe yourself to freebsd-announce, you'd do: % mail majordomo@FreeBSD.org subscribe freebsd-announce ^D If you want to subscribe yourself under a different name [ ... ] ----- snap ------------------------------------------------------ How can one misunderstand the instructions? It even has an example. Although new users might not be too familiar with mail(1) they could get the idea. But then again they could simply click on the mailto: URL with the majordomo address -- clicking cannot be this difficult, can it? There is even an explicite statement of what "posting to the list by sending mail to " does. And the very next paragraph (the second in the section) tells how to subscribe. Since you suggest to "change the passage to something less confusing" -- can you come up with something better? Just saying "somebody should ..." (write the doc, do the coding, test stuff, do advocacy, choose whatever you wish to get done) doesn't magically make things get done. Should you know how to phrase the above instructions better, feel free to submit the changes. Don't care too much about markup, -doc people will happily do this for you should the content improve this way. Just provide the words people will less likely be confused by ... > Or am I mislead and the mislead "(un)subscribe"-messages ain't being > more and more frequent? [ OT ] Well, one cannot solve human problems with technical means ... One of the mailing lists' principles is "Give a man a fish, and you feed him for a day. Tell him he should learn how to fish himself, and he'll hate you for a lifetime." I guess there is no cure for people who are unwilling or unable to read and follow simple instructions. Handholding doesn't work (for too long, it's rather short sighted) and is not the UNIX way. Most probably some of those people are better off with chosing a different OS for their purposes. Those who know how to read and simply err in a hurry surely are in the minority (and still err unnecessarily and for no acceptable reason). virtually yours 82D1 9B9C 01DC 4FB4 D7B4 61BE 3F49 4F77 72DE DA76 Gerhard Sittig true | mail -s "get gpg key" Gerhard.Sittig@gmx.net -- If you don't understand or are scared by any of the above ask your parents or an adult to help you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 11:41:37 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7E7337B400 for ; Tue, 16 Jul 2002 11:41:33 -0700 (PDT) Received: from gx.dnepr.net (gx.dnepr.net [217.198.131.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3EBE43E6A for ; Tue, 16 Jul 2002 11:41:31 -0700 (PDT) (envelope-from land@gx.dnepr.net) Received: from gx.dnepr.net (localhost.dnepr.net [127.0.0.1]) by gx.dnepr.net with ESMTP id g6GIfRgj044420; Tue, 16 Jul 2002 21:41:27 +0300 (EEST) (envelope-from land@gx.dnepr.net) Received: (from land@localhost) by gx.dnepr.net id g6GIfQSg044419; Tue, 16 Jul 2002 21:41:26 +0300 (EEST) (envelope-from land) Date: Tue, 16 Jul 2002 21:41:26 +0300 From: Andrey Lakhno To: Craig Boston Cc: freebsd-stable@freebsd.org Subject: Re: weird kernel panics Message-ID: <20020716184126.GB44049@gx.dnepr.net> Mail-Followup-To: Craig Boston , freebsd-stable@freebsd.org References: <20020716153506.GA41125@gx.dnepr.net> <1026842984.1084.9.camel@owen1492.it.oot> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <1026842984.1084.9.camel@owen1492.it.oot> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Craig! On Tue, 16 Jul 2002, Craig Boston wrote: > Just another data point, this has happened to me as well. This was on a > production box so I hadn't had time to trace it yet; thanks Andrey :) > > Very similar setup -- zebra and ospfd running on a box with a vlan on an > fxp card. Killing ospfd will sometimes cause this panic (whether I kill > it manually or a shutdown -r kills it). This was happening to me on > 4.5-STABLE, so it looks like it's been around at least since then. > Pseudo-workaround for me was to not kill ospfd ;) Do you have unitialized vlans ? E.g.: vlan1: flags=0<> mtu 1500 ether 00:00:00:00:00:00 vlan: 0 parent interface: -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 11:53:30 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22F0A37B400 for ; Tue, 16 Jul 2002 11:53:28 -0700 (PDT) Received: from mail.deltanet.com (mail.deltanet.com [216.237.144.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97D5D43E64 for ; Tue, 16 Jul 2002 11:53:26 -0700 (PDT) (envelope-from pherman@frenchfries.net) Received: from mammoth.eat.frenchfries.net (da001d0577.lax-ca.osd.concentric.net [64.0.146.66]) by mail.deltanet.com (8.11.6/8.11.6) with ESMTP id g6GIQpO24191 for ; Tue, 16 Jul 2002 11:26:56 -0700 Received: by mammoth.eat.frenchfries.net (Postfix, from userid 1000) id 4B2AB4EBD; Tue, 16 Jul 2002 09:40:25 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by mammoth.eat.frenchfries.net (Postfix) with ESMTP id 483EB49C5; Tue, 16 Jul 2002 09:40:25 -0700 (PDT) Date: Tue, 16 Jul 2002 09:40:25 -0700 (PDT) From: Paul Herman X-X-Sender: pherman@mammoth.eat.frenchfries.net To: Hellmuth Michaelis Cc: FreeBSD-Stable List Subject: Re: "Hanging" TCP connections over ISDN In-Reply-To: <20020716133233.13299566@hcswork.hcs.de> Message-ID: <20020716092551.I99681-100000@mammoth.eat.frenchfries.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 16 Jul 2002, Hellmuth Michaelis wrote: > since upgrading two ISDN-connected systems from 4.5 RC1 to 4.6 TCP > connections between this two systems "hang" from time to time. > > [...] > > I'm a bit stuck here. It still might be a bug in the ISDN subsystem, > but nothing important has changed between 4.5 and 4.6. Unfortunately, I don't have much of an idea where the problem might be, but I can say "Me Too." The two machines connected over the internet are 4.6-STABLE and 4.5-RELEASE with a 56k link and 1.5 Mbit cable modem respectively. I've got newreno off on both, turning off delayed ACKs doesn't seem to help either. Also, the 56k modem is attached to a G4 iMac running Darwin 5.4 doing ipfw/natd which itself doesn't seem to stall nearly as much, so the link itself is probably OK. I guess I'll start looking at tcpdumps. -Paul. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 12: 3:30 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E6A837B400 for ; Tue, 16 Jul 2002 12:03:28 -0700 (PDT) Received: from skalman.campus.luth.se (skalman.campus.luth.se [130.240.197.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ACA043E4A for ; Tue, 16 Jul 2002 12:03:27 -0700 (PDT) (envelope-from pantzer@skalman.campus.luth.se) Received: from skalman.campus.luth.se (pantzer@localhost [127.0.0.1]) by skalman.campus.luth.se (8.12.5/8.12.2) with ESMTP id g6GJ3Pst001144; Tue, 16 Jul 2002 21:03:25 +0200 (CEST) (envelope-from pantzer@skalman.campus.luth.se) Received: (from pantzer@localhost) by skalman.campus.luth.se (8.12.5/8.12.3/Submit) id g6GJ3ODq001143; Tue, 16 Jul 2002 21:03:24 +0200 (CEST) Date: Tue, 16 Jul 2002 21:03:24 +0200 From: Mattias Pantzare To: "Jack L. Stone" Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Poor Mans Software raid 1 on root partition? Message-ID: <20020716190324.GA1042@skalman.campus.luth.se> Mail-Followup-To: "Jack L. Stone" , freebsd-stable@FreeBSD.ORG References: <20020715225138.V82789-100000@mail.allcaps.org> <3.0.5.32.20020716083905.0117a758@mail.sage-one.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3.0.5.32.20020716083905.0117a758@mail.sage-one.net> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > seems to be on the "backup" and very little on the restore -- and I'm > speaking more from the disaster recovery -- to get back up and running > within minutes. In raising the question about that, I have noticed few have > ever "tested" any sort of backup plans to see if they really can restore, > or how quickly they can restore. > > I for one would sure like to hear more about recovery plans..... mine is to > use two identical HDs on each server and run DD frequently, with tars for > incremental. Thus, I have found it very simple to shut down, pull the bad > HD, move HD #2 up and re cable it -- then boot and voila! I'm back up. > THEN, add back any incremental while running in the meantime.... What will hapen if the HD crashes while you are copying it? You can end upp with bad content in files without you knowing it. rsync is probably better than dd. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 12:13:39 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A73C37B400 for ; Tue, 16 Jul 2002 12:13:36 -0700 (PDT) Received: from natto.numachi.com (natto.numachi.com [198.175.254.216]) by mx1.FreeBSD.org (Postfix) with SMTP id CC33343E4A for ; Tue, 16 Jul 2002 12:13:34 -0700 (PDT) (envelope-from reichert@numachi.com) Received: (qmail 10064 invoked by uid 1001); 16 Jul 2002 19:13:34 -0000 Date: Tue, 16 Jul 2002 15:13:34 -0400 From: Brian Reichert To: stable@freebsd.org Subject: Re: making a 4.6 release under 4.5? Message-ID: <20020716151334.F259@numachi.com> References: <20020710170215.T259@numachi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020710170215.T259@numachi.com>; from reichert@numachi.com on Wed, Jul 10, 2002 at 05:02:15PM -0400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jul 10, 2002 at 05:02:15PM -0400, Brian Reichert wrote: > I have to apologize of this isn't the best-targetted mailing list > for my questions. > > But first, the setup: > > I have a 4.5-RELEASE box. On this box, I'm trying to build a > 4.6-STABLE release via 'make release'. I've made progress in my efforts, and it turns out that the 'build release' failure(s) (in part) come about from certain ports' distfiles, associated with the document toolchain, not being fetched (intermittent network failures, Sourceforge breakage, etc.). The 'solution', it seems to me, it to pre-fetch them myself. However, other than by time-consuming trail-and-error, I don't know what to pre-fetch. So - my question to all you smart people out there: is this an answerable question: For all RELEASETAGs for which I can perform a 'make release' for, which distfiles are neccessary to satisfy the MINIMALDOCPORTS target? -- Brian 'you Bastard' Reichert 37 Crystal Ave. #303 Daytime number: (603) 434-6842 Derry NH 03038-1713 USA Intel architecture: the left-hand path To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 12:22:44 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3426E37B400 for ; Tue, 16 Jul 2002 12:22:39 -0700 (PDT) Received: from gx.dnepr.net (gx.dnepr.net [217.198.131.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77C2C43E4A for ; Tue, 16 Jul 2002 12:22:37 -0700 (PDT) (envelope-from land@gx.dnepr.net) Received: from gx.dnepr.net (localhost.dnepr.net [127.0.0.1]) by gx.dnepr.net with ESMTP id g6GJMYgj045142 for ; Tue, 16 Jul 2002 22:22:34 +0300 (EEST) (envelope-from land@gx.dnepr.net) Received: (from land@localhost) by gx.dnepr.net id g6GJMYBo045141 for stable@freebsd.org; Tue, 16 Jul 2002 22:22:34 +0300 (EEST) (envelope-from land) Date: Tue, 16 Jul 2002 22:22:34 +0300 From: Andrey Lakhno To: stable@freebsd.org Subject: Re: weird kernel panics Message-ID: <20020716192234.GA44689@gx.dnepr.net> References: <20020716153506.GA41125@gx.dnepr.net> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20020716153506.GA41125@gx.dnepr.net> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi ! On Tue, 16 Jul 2002, Andrey Lakhno wrote: > I use FreeBSD 4.6-R with zebra routing software (zebra-0.93a). > Both ripd and ospfd is running. With non-zero probability, when I kill ripd > or ospfd process, system panics with the following diagnostics: > > Fatal trap 12: page fault while in kernel mode > fault virtual address = 0x6 > fault code = supervisor read, page not present > instruction pointer = 0x8:0xc01856c7 > stack pointer = 0x10:0xca01bc90 > frame pointer = 0x10:0xca01bca4 > code segment = base 0x0, limit 0xfffff, type 0x1b > = DPL 0, pres 1, def32 1, gran 1 > processor eflags = interrupt enabled, resume, IOPL = 0 > current process = 629 (ripd) > interrupt mask = net > trap number = 12 > panic: page fault > > syncing disks... 40 2 1 1 1 1 1 1 1 > done > > I found that such panics occurs only on machines with vlan interfaces. > > Here is output from gdb -k: > > (kgdb) where > #0 dumpsys () at ../../kern/kern_shutdown.c:487 > #1 0xc01445bf in boot (howto=256) at ../../kern/kern_shutdown.c:316 > #2 0xc01449e4 in poweroff_wait (junk=0xc0211d6c, howto=-1071572849) > at ../../kern/kern_shutdown.c:595 > #3 0xc01eb71e in trap_fatal (frame=0xca01bc50, eva=6) > at ../../i386/i386/trap.c:966 > #4 0xc01eb3f1 in trap_pfault (frame=0xca01bc50, usermode=0, eva=6) > at ../../i386/i386/trap.c:859 > #5 0xc01eafdb in trap (frame={tf_fs = -1071448048, tf_es = 6422544, > tf_ds = -1066074096, tf_edi = -1066046208, tf_esi = 1, > tf_ebp = -905855836, tf_isp = -905855876, tf_ebx = -1053640192, > tf_edx = 6, tf_ecx = -905855812, tf_eax = 2, tf_trapno = 12, tf_err = 0, > tf_eip = -1072146745, tf_cs = 8, tf_eflags = 66050, > tf_esp = -1053640192, tf_ss = -1052190624}) at ../../i386/i386/trap.c:458 > #6 0xc01856c7 in rt_msg1 (type=16, rtinfo=0xca01bcbc) > at ../../net/rtsock.c:613 > #7 0xc0185b35 in rt_newmaddrmsg (cmd=16, ifma=0xc148d860) > at ../../net/rtsock.c:848 > #8 0xc018020c in if_delmulti (ifp=0xc132ba00, sa=0xca01bd3c) > at ../../net/if.c:1507 > #9 0xc01818f5 in vlan_setmulti (ifp=0xc132b400) at ../../net/if_vlan.c:154 > #10 0xc0182416 in vlan_ioctl (ifp=0xc132b400, cmd=2149607730, data=0x0) > at ../../net/if_vlan.c:704 > #11 0xc01802e6 in if_delmulti (ifp=0xc132b400, sa=0xc0724040) > at ../../net/if.c:1548 > #12 0xc0188b6f in in_delmulti (inm=0xc14c4820) at ../../netinet/in.c:893 > #13 0xc019352c in ip_freemoptions (imo=0xc14fba00) > at ../../netinet/ip_output.c:1886 > #14 0xc01894ad in in_pcbdetach (inp=0xc93dbfc0) at ../../netinet/in_pcb.c:567 > #15 0xc019b418 in udp_detach (so=0xc931e940) at ../../netinet/udp_usrreq.c:871 > #16 0xc0162511 in soclose (so=0xc931e940) at ../../kern/uipc_socket.c:320 > #17 0xc0156a56 in soo_close (fp=0xc14ad600, p=0xc890d6c0) > at ../../kern/sys_socket.c:195 > #18 0xc013a2df in fdrop (fp=0xc14ad600, p=0xc890d6c0) at ../../sys/file.h:217 > #19 0xc013a227 in closef (fp=0xc14ad600, p=0xc890d6c0) > at ../../kern/kern_descrip.c:1277 > #20 0xc0139629 in close (p=0xc890d6c0, uap=0xca01bf80) > at ../../kern/kern_descrip.c:581 > #21 0xc01eb9cd in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, > tf_edi = -1077937712, tf_esi = 0, tf_ebp = -1077938364, > tf_isp = -905855020, tf_ebx = 134973184, tf_edx = 134754364, > tf_ecx = 134956992, tf_eax = 6, tf_trapno = 12, tf_err = 2, > tf_eip = 672846696, tf_cs = 31, tf_eflags = 659, tf_esp = -1077938408, > tf_ss = 47}) at ../../i386/i386/trap.c:1167 > #22 0xc01dfe15 in Xint0x80_syscall () > #23 0x8049ab8 in ?? () > #24 0xbfbfffac in ?? () > #25 0x8049d47 in ?? () > #26 0x8049909 in ?? () > > (kgdb) up 5 > #5 0xc01eafdb in trap (frame={tf_fs = -1071448048, tf_es = 6422544, > tf_ds = -1066074096, tf_edi = -1066046208, tf_esi = 1, > tf_ebp = -905855836, tf_isp = -905855876, tf_ebx = -1053640192, > tf_edx = 6, tf_ecx = -905855812, tf_eax = 2, tf_trapno = 12, tf_err = 0, > tf_eip = -1072146745, tf_cs = 8, tf_eflags = 66050, > tf_esp = -1053640192, tf_ss = -1052190624}) at ../../i386/i386/trap.c:458 > 458 (void) trap_pfault(&frame, FALSE, eva); > > (kgdb) frame frame->tf_ebp frame->tf_eip > #0 rt_msg1 (type=16, rtinfo=0xca01bcbc) at ../../net/rtsock.c:614 > 614 dlen = ROUNDUP(sa->sa_len); > > (kgdb) list > 609 bzero((caddr_t)rtm, len); > 610 for (i = 0; i < RTAX_MAX; i++) { > 611 if ((sa = rtinfo->rti_info[i]) == NULL) > 612 continue; > 613 rtinfo->rti_addrs |= (1 << i); > 614 dlen = ROUNDUP(sa->sa_len); > 615 m_copyback(m, len, dlen, (caddr_t)sa); > 616 len += dlen; > 617 } > 618 if (m->m_pkthdr.len != len) { > > (kgdb) print sa > $1 = (struct sockaddr *) 0x0 I do not familiar with kernel internals and kernel debugging. So I just wondering how could sa == (struct sockaddr *) 0x0 ? We explicitly checked that sa != NULL 2 lines higher: if ((sa = rtinfo->rti_info[i]) == NULL) continue; -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 12:33:25 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84C7337B400 for ; Tue, 16 Jul 2002 12:33:22 -0700 (PDT) Received: from sage-one.net (adsl-65-71-135-137.dsl.crchtx.swbell.net [65.71.135.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48B3543E77 for ; Tue, 16 Jul 2002 12:33:19 -0700 (PDT) (envelope-from jackstone@sage-one.net) Received: from sagea (sagea [192.168.0.3]) by sage-one.net (8.11.6/8.11.6) with SMTP id g6GJX5556239; Tue, 16 Jul 2002 14:33:05 -0500 (CDT) (envelope-from jackstone@sage-one.net) Message-Id: <3.0.5.32.20020716143303.012724d8@mail.sage-one.net> X-Sender: jackstone@mail.sage-one.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Tue, 16 Jul 2002 14:33:03 -0500 To: Mattias Pantzare From: "Jack L. Stone" Subject: Re: Poor Mans Software raid 1 on root partition? Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: <20020716190324.GA1042@skalman.campus.luth.se> References: <3.0.5.32.20020716083905.0117a758@mail.sage-one.net> <20020715225138.V82789-100000@mail.allcaps.org> <3.0.5.32.20020716083905.0117a758@mail.sage-one.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 09:03 PM 7.16.2002 +0200, Mattias Pantzare wrote: >> seems to be on the "backup" and very little on the restore -- and I'm >> speaking more from the disaster recovery -- to get back up and running >> within minutes. In raising the question about that, I have noticed few have >> ever "tested" any sort of backup plans to see if they really can restore, >> or how quickly they can restore. >> >> I for one would sure like to hear more about recovery plans..... mine is to >> use two identical HDs on each server and run DD frequently, with tars for >> incremental. Thus, I have found it very simple to shut down, pull the bad >> HD, move HD #2 up and re cable it -- then boot and voila! I'm back up. >> THEN, add back any incremental while running in the meantime.... > >What will hapen if the HD crashes while you are copying it? You can end >upp with bad content in files without you knowing it. > >rsync is probably better than dd. > Well that would really be a bad day....! But, that can happen when copying to anything... tape for instance... dump... tar... dunno about rsync whether it would survive with a good copy. But, in my case, as I said, I copy tars over NFS to other machines. So, as a fallback in that extreme example (never had that one in 14 years...but anything can happen), I resinstall the OS on a new HD and then copy back my latest backups from the other machines. So, in between an extreme case, I can recover and be running within minutes with my "DD" method.... Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 12:58:18 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00BBB37B400 for ; Tue, 16 Jul 2002 12:58:07 -0700 (PDT) Received: from zpfe.com (dev06.eqp.zpfe.com [209.46.51.22]) by mx1.FreeBSD.org (Postfix) with SMTP id 839E543E4A for ; Tue, 16 Jul 2002 12:58:05 -0700 (PDT) (envelope-from stevep-hv@zpfe.com) Received: (qmail 51293 invoked from network); 16 Jul 2002 19:57:48 -0000 Received: from unknown (HELO PUFFY.zpfe.com) (65.203.84.227) by dev06.eqp.zpfe.com with SMTP; 16 Jul 2002 19:57:48 -0000 Message-Id: <5.1.0.14.2.20020716145549.032ddc78@wheresmymailserver.com> X-Sender: (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Tue, 16 Jul 2002 14:57:16 -0500 To: Pete Carah , stable@freebsd.org From: Steve Peterson Subject: Re: RELENG_4_6 In-Reply-To: <200207161649.g6GGnC0b052978@ns.altadena.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm seeing the same problem with a cvsup from about 4 hours ago. S -- ===> secure/usr.bin/ssh-keyscan rm -f .depend mkdep -f .depend -a -I/usr/src/secure/usr.bin/ssh-keyscan/../../../crypto/openssh -DNO_IDEA /usr/src/secure/usr.bin/ssh-keyscan/../../../crypto/openssh/ssh-keyscan.c cd /usr/src/secure/usr.bin/ssh-keyscan; make _EXTRADEPEND echo ssh-keyscan: /usr/obj/usr/src/i386/usr/lib/libc.a /usr/obj/usr/src/i386/usr/lib/libcrypto.a /usr/obj/usr/src/i386/usr/lib/libz.a >> .depend ===> secure/usr.sbin ===> secure/usr.sbin/sshd make: don't know how to make auth-skey.c. Stop *** Error code 2 Stop in /usr/src/secure/usr.sbin. *** Error code 1 Stop in /usr/src/secure. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. -- At 09:49 AM 7/16/2002 -0700, Pete Carah wrote: >At first I thought I may have picked up a partial cvsup but cvsup'd >twice more at hour intervals with no fix apparent. There appears to be >a missing file in the MFC for skey fixes... > >This is *not* a problem in RELENG_4, only RELENG_4_6. I haven't >tried RELENG_4_5. > >-- Pete > >------------------------end of make world output--------------------- >cd /usr/src/usr.sbin/i4b/isdntelctl; make _EXTRADEPEND >echo isdntelctl: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend >===> usr.sbin/i4b/isdntest >rm -f .depend >mkdep -f .depend -a /usr/src/usr.sbin/i4b/isdntest/main.c >cd /usr/src/usr.sbin/i4b/isdntest; make _EXTRADEPEND >echo isdntest: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend >===> usr.sbin/i4b/isdntrace >rm -f .depend >mkdep -f .depend -a /usr/src/usr.sbin/i4b/isdntrace/q921.c >/usr/src/usr.sbin/i4b/isdntrace/q931.c >/usr/src/usr.sbin/i4b/isdntrace/q931_util.c >/usr/src/usr.sbin/i4b/isdntrace/q932_fac.c >/usr/src/usr.sbin/i4b/isdntrace/1tr6.c >/usr/src/usr.sbin/i4b/isdntrace/trace.c >/usr/src/usr.sbin/i4b/isdntrace/pcause_1tr6.c >/usr/src/usr.sbin/i4b/isdntrace/pcause_q850.c >/usr/src/usr.sbin/i4b/isdntrace/unknownl3.c >cd /usr/src/usr.sbin/i4b/isdntrace; make _EXTRADEPEND >echo isdntrace: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend >===> usr.sbin/i4b/man >===> usr.sbin/boot0cfg >rm -f .depend >mkdep -f .depend -a /usr/src/usr.sbin/boot0cfg/boot0cfg.c >cd /usr/src/usr.sbin/boot0cfg; make _EXTRADEPEND >echo boot0cfg: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend >===> secure >===> secure/lib >===> secure/lib/libcipher >===> secure/lib/libcrypto >===> secure/lib/libssl >===> secure/lib/libssh >===> secure/libexec >===> secure/libexec/sftp-server >rm -f .depend >mkdep -f .depend >-a -I/usr/src/secure/libexec/sftp-server/../../../crypto/openssh >-DNO_IDEA >/usr/src/secure/libexec/sftp-server/../../../crypto/openssh/sftp-server.c >/usr/src/secure/libexec/sftp-server/../../../crypto/openssh/sftp-common.c >cd /usr/src/secure/libexec/sftp-server; make _EXTRADEPEND >echo sftp-server: >/usr/obj/usr/src/i386/usr/lib/libc.a >/usr/obj/usr/src/i386/usr/lib/libcrypto.a >> .depend >===> secure/libexec/ssh-keysign >rm -f .depend >mkdep -f .depend >-a -I/usr/src/secure/libexec/ssh-keysign/../../../crypto/openssh >-DNO_IDEA >/usr/src/secure/libexec/ssh-keysign/../../../crypto/openssh/ssh-keysign.c >cd /usr/src/secure/libexec/ssh-keysign; make _EXTRADEPEND >echo ssh-keysign: >/usr/obj/usr/src/i386/usr/lib/libc.a >/usr/obj/usr/src/i386/usr/lib/libcrypto.a >/usr/obj/usr/src/i386/usr/lib/libz.a >> .depend >===> secure/usr.bin >===> secure/usr.bin/bdes >rm -f .depend >mkdep -f .depend -a -DNO_IDEA /usr/src/secure/usr.bin/bdes/bdes.c >cd /usr/src/secure/usr.bin/bdes; make _EXTRADEPEND >echo bdes: /usr/obj/usr/src/i386/usr/lib/libc.a libcipher.a >> .depend >===> secure/usr.bin/openssl >cc -O -pipe -DMONOLITH -I/usr/src/secure/usr.bin/openssl -DNO_IDEA -c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/x509.c >rm -f .depend >mkdep -f .depend -a -DMONOLITH -I/usr/src/secure/usr.bin/openssl >-DNO_IDEA >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/app_rand.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/apps.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/asn1pars.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/ca.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/ciphers.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/crl.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/crl2p7.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/dgst.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/dh.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/dhparam.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/dsa.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/dsaparam.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/enc.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/errstr.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/gendh.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/gendsa.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/genrsa.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/nseq.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/openssl.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/passwd.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/pkcs12.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/pkcs7.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/pkcs8.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/rand.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/req.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/rsa.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/rsautl.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/s_cb.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/s_client.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/s_server.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/s_socket.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/s_time.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/sess_id.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/smime.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/speed.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/spkac.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/verify.c >/usr/src/secure/usr.bin/openssl/../../../crypto/openssl/apps/version.c >cd /usr/src/secure/usr.bin/openssl; make _EXTRADEPEND >echo openssl: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend >===> secure/usr.bin/scp >rm -f .depend >mkdep -f .depend >-a -I/usr/src/secure/usr.bin/scp/../../../crypto/openssh >-DNO_IDEA /usr/src/secure/usr.bin/scp/../../../crypto/openssh/scp.c >cd /usr/src/secure/usr.bin/scp; make _EXTRADEPEND >echo scp: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend >===> secure/usr.bin/sftp >rm -f .depend >mkdep -f .depend >-a -I/usr/src/secure/usr.bin/sftp/../../../crypto/openssh >-DNO_IDEA /usr/src/secure/usr.bin/sftp/../../../crypto/openssh/sftp.c >/usr/src/secure/usr.bin/sftp/../../../crypto/openssh/sftp-client.c >/usr/src/secure/usr.bin/sftp/../../../crypto/openssh/sftp-int.c >/usr/src/secure/usr.bin/sftp/../../../crypto/openssh/sftp-common.c >/usr/src/secure/usr.bin/sftp/../../../crypto/openssh/sftp-glob.c >cd /usr/src/secure/usr.bin/sftp; make _EXTRADEPEND >echo sftp: >/usr/obj/usr/src/i386/usr/lib/libc.a >/usr/obj/usr/src/i386/usr/lib/libcrypto.a >> .depend >===> secure/usr.bin/ssh >rm -f .depend >mkdep -f .depend >-a -I/usr/src/secure/usr.bin/ssh/../../../crypto/openssh -DKRB5 >-DHEIMDAL -DXAUTH_PATH=\"/usr/X11R6/bin/xauth\" >-DNO_IDEA /usr/src/secure/usr.bin/ssh/../../../crypto/openssh/ssh.c >/usr/src/secure/usr.bin/ssh/../../../crypto/openssh/readconf.c >/usr/src/secure/usr.bin/ssh/../../../crypto/openssh/clientloop.c >/usr/src/secure/usr.bin/ssh/../../../crypto/openssh/sshtty.c >/usr/src/secure/usr.bin/ssh/../../../crypto/openssh/sshconnect.c >/usr/src/secure/usr.bin/ssh/../../../crypto/openssh/sshconnect1.c >/usr/src/secure/usr.bin/ssh/../../../crypto/openssh/sshconnect2.c >cd /usr/src/secure/usr.bin/ssh; make _EXTRADEPEND >echo ssh: /usr/obj/usr/src/i386/usr/lib/libc.a >/usr/obj/usr/src/i386/usr/lib/libkrb5.a >/usr/obj/usr/src/i386/usr/lib/libcom_err.a >/usr/obj/usr/src/i386/usr/lib/libmd.a >/usr/obj/usr/src/i386/usr/lib/libcrypt.a >/usr/obj/usr/src/i386/usr/lib/libcrypto.a >/usr/obj/usr/src/i386/usr/lib/libutil.a >/usr/obj/usr/src/i386/usr/lib/libz.a >> .depend >===> secure/usr.bin/ssh-add >rm -f .depend >mkdep -f .depend >-a -I/usr/src/secure/usr.bin/ssh-add/../../../crypto/openssh >-DNO_IDEA /usr/src/secure/usr.bin/ssh-add/../../../crypto/openssh/ssh-add.c >cd /usr/src/secure/usr.bin/ssh-add; make _EXTRADEPEND >echo ssh-add: >/usr/obj/usr/src/i386/usr/lib/libc.a >/usr/obj/usr/src/i386/usr/lib/libcrypto.a >> .depend >===> secure/usr.bin/ssh-agent >rm -f .depend >mkdep -f .depend >-a -I/usr/src/secure/usr.bin/ssh-agent/../../../crypto/openssh >-DNO_IDEA >/usr/src/secure/usr.bin/ssh-agent/../../../crypto/openssh/ssh-agent.c >cd /usr/src/secure/usr.bin/ssh-agent; make _EXTRADEPEND >echo ssh-agent: >/usr/obj/usr/src/i386/usr/lib/libc.a >/usr/obj/usr/src/i386/usr/lib/libcrypto.a >> .depend >===> secure/usr.bin/ssh-keygen >rm -f .depend >mkdep -f .depend >-a -I/usr/src/secure/usr.bin/ssh-keygen/../../../crypto/openssh >-DNO_IDEA >/usr/src/secure/usr.bin/ssh-keygen/../../../crypto/openssh/ssh-keygen.c >cd /usr/src/secure/usr.bin/ssh-keygen; make _EXTRADEPEND >echo ssh-keygen: >/usr/obj/usr/src/i386/usr/lib/libc.a >/usr/obj/usr/src/i386/usr/lib/libcrypto.a >> .depend >===> secure/usr.bin/ssh-keyscan >rm -f .depend >mkdep -f .depend >-a -I/usr/src/secure/usr.bin/ssh-keyscan/../../../crypto/openssh >-DNO_IDEA >/usr/src/secure/usr.bin/ssh-keyscan/../../../crypto/openssh/ssh-keyscan.c >cd /usr/src/secure/usr.bin/ssh-keyscan; make _EXTRADEPEND >echo ssh-keyscan: >/usr/obj/usr/src/i386/usr/lib/libc.a >/usr/obj/usr/src/i386/usr/lib/libcrypto.a >/usr/obj/usr/src/i386/usr/lib/libz.a >> .depend >===> secure/usr.sbin >===> secure/usr.sbin/sshd >make: don't know how to make auth-skey.c. Stop >*** Error code 2 > >Stop in /usr/src/secure/usr.sbin. >*** Error code 1 > >Stop in /usr/src/secure. >*** Error code 1 > >Stop in /usr/src. >*** Error code 1 > >Stop in /usr/src. >*** Error code 1 > >Stop in /usr/src. >----------------------------------------------------------------- > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 13: 7:42 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E34337B400 for ; Tue, 16 Jul 2002 13:07:38 -0700 (PDT) Received: from islet.dsl.unixan.com (islet.dsl.unixan.com [206.124.137.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id C37DF43E31 for ; Tue, 16 Jul 2002 13:07:37 -0700 (PDT) (envelope-from djb@unixan.com) Received: from mesa.unixan.com (djb@mesa.dsl.unixan.com [206.124.137.18]) by islet.dsl.unixan.com (8.12.3/8.12.3) with SMTP id g6GK7Vvh035832; Tue, 16 Jul 2002 13:07:31 -0700 (PDT) (envelope-from djb@unixan.com) Date: Tue, 16 Jul 2002 13:07:31 -0700 From: Daniel Brown To: freebsd-stable@FreeBSD.ORG Cc: Mattias Pantzare , jackstone@sage-one.net Subject: Re: Poor Mans Software raid 1 on root partition? Message-Id: <20020716130731.73e01b80.djb@unixan.com> In-Reply-To: <20020716190324.GA1042@skalman.campus.luth.se> References: <20020715225138.V82789-100000@mail.allcaps.org> <3.0.5.32.20020716083905.0117a758@mail.sage-one.net> <20020716190324.GA1042@skalman.campus.luth.se> X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i686-pc-linux-gnu) X-Face: ".E)>Dp:mHJC%;_j&|O(iET^Y#v)'R,3Th)?un#2[`x7J&@ClPD0?MlzHBP61gci=t1G!Jf8V9r+nMFv:GX&}5R2YZ@lzKO_S5,^.!^<^OijwA[0*`cfC'.Ft7-qcuK4^-Cu X-Face-Credit: Saviour Machine; www.saviourmachine.com X-Frustrated-Since: 999302400 Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Wrote Mattias Pantzare: > > seems to be on the "backup" and very little on the restore -- and I'm > > speaking more from the disaster recovery -- to get back up and running > > within minutes. In raising the question about that, I have noticed few have > > ever "tested" any sort of backup plans to see if they really can restore, > > or how quickly they can restore. > > > > I for one would sure like to hear more about recovery plans..... mine is to > > use two identical HDs on each server and run DD frequently, with tars for > > incremental. Thus, I have found it very simple to shut down, pull the bad > > HD, move HD #2 up and re cable it -- then boot and voila! I'm back up. > > THEN, add back any incremental while running in the meantime.... > > What will hapen if the HD crashes while you are copying it? You can end > upp with bad content in files without you knowing it. > > rsync is probably better than dd. Indeed, 'dd' also has the problem of copying a live filesystem whose metadata may change right under you. It is best to simply partition your second drive the same way (you can, in fact, pipe the 'disklabel' output of one drive into the 'disklabel -R -B /dev/stdin' for an identical drive), add appropriate /etc/fstab entries, then do periodic software updates. However, rsync is a VERY poor choice for backing up an entire filesystem; as it loads a "worklist" in memory prior to making its moves, it becomes very memory and CPU intensive. This is both slow and annoyingly affects response time for services on the machine. Try mirrordir (good, has problems with socket nodes, not found in ports), ssync (ok, but doesn't do devices/etc), pax -rw (ok, but doesn't delete removed files), or rdiff-backup (nice, but hardlinks not respected, not found in ports, never tried it on FreeBSD). Or search for other similar tools -- keep an eye for low resources use, incremental updates, and few/no problems with "special" filetypes. If you go with mirrordir (the sockets problem is inconsequential as unix-domain sockets need to be deleted before listening on them anyways), you need to --exclude both your destination directory as well as any filesystem (like /proc) that you don't want backed up, then re-create those mount points afterwards. For instance, assuming /backup is where your mirror drive is: /usr/local/bin/mirrordir --exclude /backup --exclude /proc / /backup mkdir /backup/backup mkdir /backup/proc If you want to keep a log of what it is copying, add --verbose and direct the stdout appropriately. I've used this solution on numerous production machines, and it works out the best of every similar solution I've run into in the past 2 years. -Daniel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 13:52:19 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DCEE37B400 for ; Tue, 16 Jul 2002 13:52:18 -0700 (PDT) Received: from marqusee5.berkeley.edu (marqusee5.Berkeley.EDU [128.32.253.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id F116743E42 for ; Tue, 16 Jul 2002 13:52:16 -0700 (PDT) (envelope-from kael@zebra.berkeley.edu) Received: from dubu.berkeley.edu ([192.168.0.7]) by marqusee5.berkeley.edu (8.9.3/8.9.3) with ESMTP id NAA97461 for ; Tue, 16 Jul 2002 13:52:15 -0700 (PDT) (envelope-from kael@zebra.berkeley.edu) Message-Id: <5.0.0.25.2.20020716135206.03043940@marqusee5.berkeley.edu> X-Sender: kael@marqusee5.berkeley.edu X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Tue, 16 Jul 2002 13:52:14 -0700 To: freebsd-stable@FreeBSD.org From: Kael Fischer Subject: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: 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 Tue Jul 16 14: 4:27 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 853E537B400; Tue, 16 Jul 2002 14:04:23 -0700 (PDT) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id E16AC43E5E; Tue, 16 Jul 2002 14:04:22 -0700 (PDT) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id E9535534D; Tue, 16 Jul 2002 23:04:20 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: bmah@FreeBSD.ORG Cc: Pete Carah , stable@FreeBSD.ORG, questions@FreeBSD.ORG Subject: Re: RELENG_4_6 References: <200207161649.g6GGnC0b052978@ns.altadena.net> <200207161759.g6GHxoxR049111@intruder.bmah.org> From: Dag-Erling Smorgrav Date: 16 Jul 2002 23:04:20 +0200 In-Reply-To: <200207161759.g6GHxoxR049111@intruder.bmah.org> Message-ID: Lines: 11 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Bruce A. Mah" writes: > From what I can tell (my local respository, commit logs, and cvsweb) it > looks like src/crypto/openssh/auth-skey.c didn't get committed to the > RELENG_4_6 branch. Thanks. That's where the first commit died, and apparently I off-by-one'd when I restarted it. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 14: 5:30 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1640F37B400 for ; Tue, 16 Jul 2002 14:05:28 -0700 (PDT) Received: from mx1.freebsd.org (ANice-101-1-4-119.abo.wanadoo.fr [193.253.186.119]) by mx1.FreeBSD.org (Postfix) with SMTP id BCB7743E5E for ; Tue, 16 Jul 2002 14:05:26 -0700 (PDT) (envelope-from jeanlouisdenice@yahoo.fr) From: jeanlouisdenice@yahoo.fr (Jean Louis) To: stable@freebsd.org SUBJECT: Je vends mon appartement à Nice. Pouvez-vous m'aider ? Message-ID: <15885111555trucmuche@cu.com> MIME-Version: 1.0 Content-Type: multipart/alternative;boundary="_NextPart_000_0030_01C05A03.8AD62BA2" Date: Tue, 16 Jul 2002 14:05:26 -0700 (PDT) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --_NextPart_000_0030_01C05A03.8AD62BA2 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable coucou --_NextPart_000_0030_01C05A03.8AD62BA2 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable mail

A vendre, un appartement-villa
dans un Château, à Nice.

Dans un site calme et protégé, à 5 minutes de la Promenade des Anglais et de la plage, un appartement d'exception entouré d'un jardin orné d'oliviers centenaires et d'arbres fruitiers. 210 m², répartis en 6 pièces dont une chambre avec cabinet de toilette attenant, très grande salle de bain, cuisine semi-équipée, 3 W-C, dépendances, Garage fermé et parking.

Prix : 565.000 €

Visite

Madame, Monsieur,

Je vous adresse ce mail car votre profession peut vous mettre en relation avec des personnes recherchant une villa sur la côte.

Je vous offrirai volontiers une récompense de 50.000 Frs si la vente se réalise par votre intermédiaire.

--_NextPart_000_0030_01C05A03.8AD62BA2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 14: 9:36 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9B8937B400 for ; Tue, 16 Jul 2002 14:09:35 -0700 (PDT) Received: from postoffice.prismnet.com (postoffice.prismnet.com [209.198.128.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4782443E31 for ; Tue, 16 Jul 2002 14:09:35 -0700 (PDT) (envelope-from ted@prismnet.com) Received: from babcom2.prismnet.com (babcom.prismnet.com [205.166.246.23]) by postoffice.prismnet.com (8.11.6/8.11.6) with ESMTP id g6GL9YG37660 for ; Tue, 16 Jul 2002 16:09:34 -0500 (CDT) (envelope-from ted@prismnet.com) Message-Id: <4.3.1.2.20020716160928.00a91cd0@postoffice.prismnet.com> X-Sender: ted@postoffice.prismnet.com (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 4.3.1 Date: Tue, 16 Jul 2002 16:09:31 -0500 To: freebsd-stable@FreeBSD.org From: Ted Hatfield Subject: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 14:11:11 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85E4037B400 for ; Tue, 16 Jul 2002 14:11:10 -0700 (PDT) Received: from mail.dada.it (mail3.dada.it [195.110.96.70]) by mx1.FreeBSD.org (Postfix) with SMTP id 38A1F43E4A for ; Tue, 16 Jul 2002 14:11:04 -0700 (PDT) (envelope-from ale@unixmania.net) Received: (qmail 26273 invoked from network); 16 Jul 2002 21:10:51 -0000 Received: from unknown (HELO libero.sunshine.ale) (195.110.114.252) by mail.dada.it with SMTP; 16 Jul 2002 21:10:51 -0000 Received: by libero.sunshine.ale (Postfix, from userid 1001) id A49DD6030; Tue, 16 Jul 2002 23:10:55 +0200 (CEST) Date: Tue, 16 Jul 2002 23:10:55 +0200 From: Alessandro de Manzano To: Steve Peterson Cc: Pete Carah , stable@freebsd.org Subject: Re: RELENG_4_6 Message-ID: <20020716231055.B23900@libero.sunshine.ale> Reply-To: Alessandro de Manzano References: <200207161649.g6GGnC0b052978@ns.altadena.net> <5.1.0.14.2.20020716145549.032ddc78@wheresmymailserver.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <5.1.0.14.2.20020716145549.032ddc78@wheresmymailserver.com>; from stevep-hv@zpfe.com on Tue, Jul 16, 2002 at 02:57:16PM -0500 X-Operating-System: FreeBSD 4.6-STABLE Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jul 16, 2002 at 02:57:16PM -0500, Steve Peterson wrote: > I'm seeing the same problem with a cvsup from about 4 hours ago. > make: don't know how to make auth-skey.c. Stop > *** Error code 2 DES has just commited this missing file, try cvsupping again. -- bye! Ale To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 15:12: 4 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6665237B400 for ; Tue, 16 Jul 2002 15:12:02 -0700 (PDT) Received: from 12-222-67-235.client.insightBB.com (12-222-67-235.client.insightBB.com [12.222.67.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D68343E67 for ; Tue, 16 Jul 2002 15:12:01 -0700 (PDT) (envelope-from mikes@12-222-67-235.client.insightBB.com) Received: from 12-222-67-235.client.insightBB.com (localhost [127.0.0.1]) by 12-222-67-235.client.insightBB.com (8.12.4/8.12.3) with ESMTP id g6GMBxlW025916 for ; Tue, 16 Jul 2002 17:12:00 -0500 (EST) (envelope-from mikes@12-222-67-235.client.insightBB.com) Received: (from mikes@localhost) by 12-222-67-235.client.insightBB.com (8.12.4/8.12.4/Submit) id g6GMBxgs025915 for freebsd-stable@freebsd.org; Tue, 16 Jul 2002 17:11:59 -0500 (EST) From: "Michael L. Squires" Message-Id: <200207162211.g6GMBxgs025915@12-222-67-235.client.insightBB.com> Subject: /usr/src/UPDATING has no warning about ssh group/passwd changes To: FreeBSD Stable Date: Tue, 16 Jul 2002 17:11:59 -0500 (EST) X-Mailer: ELM [version 2.4ME+ PL88 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm running 4.6-STABLE as of 6/26. I just cvsup'd 4.6-STABLE and found, as expected, /usr/src/etc/group and /usr/src/etc/master.passwd now had SSH entries. /usr/src/UPDATING, however, is dated 7/06 and has no warning about having to update /etc/group and /etc/master.passwd before doing a buildworld. Is it just me, or is there something missing? Mike Squires To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 15:24:21 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A4DA37B43F for ; Tue, 16 Jul 2002 15:24:03 -0700 (PDT) Received: from mailout10.sul.t-online.com (mailout10.sul.t-online.com [194.25.134.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E819543E58 for ; Tue, 16 Jul 2002 15:24:01 -0700 (PDT) (envelope-from nicolas@dauerreden.de) Received: from fwd07.sul.t-online.de by mailout10.sul.t-online.com with smtp id 17Uajg-0000iA-01; Wed, 17 Jul 2002 00:24:00 +0200 Received: from pc5.abc (520067998749-0001@[217.233.115.110]) by fmrl07.sul.t-online.com with esmtp id 17UajS-01aRVYC; Wed, 17 Jul 2002 00:23:46 +0200 Received: from pc5.abc (localhost.abc [127.0.0.1]) by pc5.abc (8.12.3/8.12.3) with ESMTP id g6GMNh2e049617 for ; Wed, 17 Jul 2002 00:23:44 +0200 (CEST) (envelope-from nicolas@pc5.abc) Received: (from nicolas@localhost) by pc5.abc (8.12.3/8.12.3/Submit) id g6GMNgn9049616 for freebsd-stable@FreeBSD.ORG; Wed, 17 Jul 2002 00:23:42 +0200 (CEST) Date: Wed, 17 Jul 2002 00:23:40 +0200 From: Nicolas Rachinsky To: freebsd-stable@FreeBSD.ORG Subject: Re: Poor Mans Software raid 1 on root partition? Message-ID: <20020716222339.GA49575@narr.dauerreden.de> Mail-Followup-To: freebsd-stable@FreeBSD.ORG References: <20020715225138.V82789-100000@mail.allcaps.org> <3.0.5.32.20020716083905.0117a758@mail.sage-one.net> <20020716190324.GA1042@skalman.campus.luth.se> <20020716130731.73e01b80.djb@unixan.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020716130731.73e01b80.djb@unixan.com> X-Powered-by: FreeBSD X-Homepage: http://www.rachinsky.de X-PGP-Keyid: C11ABC0E X-PGP-Fingerprint: 19DB 8392 8FE0 814A 7362 EEBD A53B 526A C11A BC0E X-PGP-Key: http://www.rachinsky.de/nicolas/nicolas_rachinsky.asc User-Agent: Mutt/1.5.1i X-Sender: 520067998749-0001@t-dialin.net Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Daniel Brown [2002-07-16 13:07 -0700]: > Wrote Mattias Pantzare: > > > rsync is probably better than dd. > > Indeed, 'dd' also has the problem of copying a live filesystem whose > metadata may change right under you. It is best to simply partition > your second drive the same way (you can, in fact, pipe the 'disklabel' > output of one drive into the 'disklabel -R -B /dev/stdin' for an > identical drive), add appropriate /etc/fstab entries, then do periodic > software updates. > > However, rsync is a VERY poor choice for backing up an entire > filesystem; as it loads a "worklist" in memory prior to making its > moves, it becomes very memory and CPU intensive. This is both slow > and annoyingly affects response time for services on the machine. > > Try mirrordir (good, has problems with socket nodes, not found in > ports), ssync (ok, but doesn't do devices/etc), pax -rw (ok, but > doesn't delete removed files), or rdiff-backup (nice, but hardlinks > not respected, not found in ports, never tried it on FreeBSD). Or > search for other similar tools -- keep an eye for low resources use, > incremental updates, and few/no problems with "special" filetypes. /usr/ports/sysutils/cpdup To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 15:36:40 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DA9737B400 for ; Tue, 16 Jul 2002 15:36:36 -0700 (PDT) Received: from the.oneinsane.net (the.oneinsane.net [66.42.61.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0821143E4A for ; Tue, 16 Jul 2002 15:36:36 -0700 (PDT) (envelope-from blovett@moria.bsdguru.com) Received: from moria.bsdguru.com (unknown [65.123.250.26]) by the.oneinsane.net (Postfix) with ESMTP id 763DB15672 for ; Tue, 16 Jul 2002 15:36:30 -0700 (PDT) Received: by moria.bsdguru.com (Postfix, from userid 1000) id F0900879; Tue, 16 Jul 2002 15:36:25 -0700 (PDT) Date: Tue, 16 Jul 2002 15:36:25 -0700 From: Ben Lovett To: stable@freebsd.org Subject: Problems booting with a degraded RAID1 Message-ID: <20020716223625.GA11595@bsdguru.com> Mail-Followup-To: Ben Lovett , stable@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-Moon: The Moon is Waxing Crescent (47% of Full) X-GPG-Key: http://www.bsdguru.com/~blovett/blovett.pgp X-GPG-Fingerprint: 22E2 6A6D BD5A E63A 1D2D 86AC 1066 FBE9 B120 B402 X-GPG-KeyID: 0xB120B402 X-Operating-System: FreeBSD moria 4.6-STABLE X-Uptime: 3:25PM up 4:06, 2 users, load averages: 0.00, 0.00, 0.00 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Has anyone else noticed any problems with booting a system with a degraded RAID1 array? On a system with a on board HPT370 (Abit KG7-RAID), it will drop me to a "root device selection" if the RAID is in degraded mode. While this will generally not be a problem, it will become one if the machine gets rebooted (forcefully or not) before the dead hard disk is replaced. Currently the only way to bring the system back up is to rebuild the array from the BIOS, which will keep the machine down for the 30-45 minutes that it takes to rebuild the array. Anyone have any work arounds, or fixes for this? Thanks, Ben -- Ben Lovett -------------------------------------------------------------------------- I believe the technical term is "Oops!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 15:55:25 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F066437B400 for ; Tue, 16 Jul 2002 15:55:22 -0700 (PDT) Received: from erwin.nwcr.net (pppoe-64-91-101-210.rb.gh.centurytel.net [64.91.101.210]) by mx1.FreeBSD.org (Postfix) with SMTP id 38CA143E31 for ; Tue, 16 Jul 2002 15:55:22 -0700 (PDT) (envelope-from jparker@emunix.emich.edu) Received: (qmail 9834 invoked by uid 85); 16 Jul 2002 22:55:24 -0000 Date: Tue, 16 Jul 2002 15:55:22 -0700 From: Jeremy Parker To: "Michael L. Squires" Cc: stable@freebsd.org Subject: Re: /usr/src/UPDATING has no warning about ssh group/passwd changes Message-ID: <20020716225522.GA9624@emunix.emich.edu> Reply-To: jparker@emunix.emich.edu Mail-Followup-To: "Michael L. Squires" , stable@freebsd.org References: <200207162211.g6GMBxgs025915@12-222-67-235.client.insightBB.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200207162211.g6GMBxgs025915@12-222-67-235.client.insightBB.com> User-Agent: Mutt/1.4i X-Arbitrary-Number-Of-The-Day: 42 X-Sender: jparker@emunix.emich.edu X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I believe mergemaster is included in the upgrade process as specified in UPDATING, and that would handle merging those changes in. Jeremy Michael L. Squires(mikes@12-222-67-235.client.insightBB.com)@Tue, Jul 16, 2002 at 05:11:59PM -0500: > I'm running 4.6-STABLE as of 6/26. > > I just cvsup'd 4.6-STABLE and found, as expected, /usr/src/etc/group and > /usr/src/etc/master.passwd now had SSH entries. /usr/src/UPDATING, however, > is dated 7/06 and has no warning about having to update /etc/group and /etc/master.passwd before doing a buildworld. > > Is it just me, or is there something missing? > > Mike Squires > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 17:55:57 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FF1B37B401 for ; Tue, 16 Jul 2002 17:55:54 -0700 (PDT) Received: from graveyard.inhuman.org (ip68-100-76-222.nv.nv.cox.net [68.100.76.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9042B43E65 for ; Tue, 16 Jul 2002 17:55:53 -0700 (PDT) (envelope-from ugly@inhuman.org) Received: from whorism (unknown [192.168.1.4]) by graveyard.inhuman.org (Postfix) with ESMTP id CAAC9C9 for ; Tue, 16 Jul 2002 20:57:57 -0400 (EDT) Date: Tue, 16 Jul 2002 20:56:00 -0400 From: Andrew Martin To: freebsd-stable@freebsd.org Subject: buildworld fails on getpeereid.c Message-Id: <20020716205600.5f5609db.ugly@inhuman.org> X-Mailer: Sylpheed version 0.8.0 (GTK+ 1.2.10; i386-portbld-freebsd4.6) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I'm trying to run a buildworld on 4.6-STABLE source checked out today (07/16) but it errors as show below. I will provide more information if needed. My current uname output: FreeBSD spectrum 4.5-STABLE FreeBSD 4.5-STABLE #2: Thu Feb 7 17:48:35 EST 2002 ugly@spectrum:/usr/src/sys/compile/SPECTRUM i386 error output on 'make buildworld': cc -O -pipe -DLIBC_RCS -DSYSLIBC_RCS -I/usr/src/lib/libc_r/../libc/include -DPTHREAD_KERNEL -D_THREAD_SAFE -I/usr/src/lib/libc_r/uthread -I/usr/src/lib/libc_r/../../include -D_LOCK_DEBUG -D_PTHREADS_INVARIANTS -D__DBINTERFACE_PRIVATE -DINET6 -DPOSIX_MISTAKE -I/usr/src/lib/libc_r/../libc/locale -DBROKEN_DES -DYP -c /usr/src/lib/libc_r/../libc/gen/getpeereid.c -o getpeereid.o /usr/src/lib/libc_r/../libc/gen/getpeereid.c: In function `getpeereid': /usr/src/lib/libc_r/../libc/gen/getpeereid.c:41: storage size of `xuc' isn't known /usr/src/lib/libc_r/../libc/gen/getpeereid.c:46: `LOCAL_PEERCRED' undeclared (first use in this function) /usr/src/lib/libc_r/../libc/gen/getpeereid.c:46: (Each undeclared identifier is reported only once /usr/src/lib/libc_r/../libc/gen/getpeereid.c:46: for each function it appears in.) /usr/src/lib/libc_r/../libc/gen/getpeereid.c:49: `XUCRED_VERSION' undeclared (first use in this function) *** Error code 1 Stop in /usr/src/lib/libc_r. *** Error code 1 -Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 21:17:32 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4935037B400 for ; Tue, 16 Jul 2002 21:17:29 -0700 (PDT) Received: from mail.lambertfam.org (www.lambertfam.org [216.223.196.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC09A43E4A for ; Tue, 16 Jul 2002 21:17:28 -0700 (PDT) (envelope-from lambert@lambertfam.org) Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.inch.com (Postfix) with ESMTP id 807BA350A2 for ; Wed, 17 Jul 2002 00:14:44 -0400 (EDT) Received: from laptop.lambertfam.org (unknown [10.1.0.2]) by mail.lambertfam.org (Postfix) with ESMTP id 93A6334FC1 for ; Wed, 17 Jul 2002 00:14:39 -0400 (EDT) Received: by laptop.lambertfam.org (Postfix, from userid 1000) id AA4F328B09; Wed, 17 Jul 2002 00:17:12 -0400 (EDT) Date: Wed, 17 Jul 2002 00:16:29 -0400 From: Scott Lambert To: FreeBSD-STABLE@FreeBSD.org Subject: Re: Dynamic Rules with IPFW Message-ID: <20020717041629.GA48980@laptop.lambertfam.org> References: <20020716214248.3fef4af2.freebsd@ec.rr.com> <200207170303.g6H330Je077763@drugs.dv.isc.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200207170303.g6H330Je077763@drugs.dv.isc.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jul 17, 2002 at 01:03:00PM +1000, Mark.Andrews@isc.org wrote: > > > I use Dynamic rulesets with IPFW: > > > > ipfw add check-state > > ipfw add deny tcp from any to any established > > ipfw add allow tcp from my-net to any setup keep-state > > > > But I also have services I need anyone on the net to get to, without > > me making a connection first from "my-net ". I allow such services > > with: > > > > allow tcp from any to my-net 25,80,443 setup in via xl0 keep-state > > > > This works fine for 25,80, and 443. However, when I apply the > > same rule for SSH, and login to my box remotely, about 10 > > minutes later, the connection just dies, and it dies with every > > connection. Removing the keep-state option for ssh effectively > > closes 22 obviously. Would check-state be a better option here? > > > > Michael > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-security" in the body of the message > > smtp, http and https are short lived connections with very > little idle time. > > ssh is a long lived connection with large amounts of idle > time. You need to have the dynamic lifetime exceed the > keep alive timer or allow established ssh connections to > continue to exist. Or turn KeepAlive and/or ClientAlive* on in your sshd_config maybe? You need to keep some kind of traffic flowing across the connection or the elevator door will close. man sshd_config -- Scott Lambert KC5MLE Unix SysAdmin lambert@lambertfam.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 16 21:38:10 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D938D37B401 for ; Tue, 16 Jul 2002 21:38:07 -0700 (PDT) Received: from ion.gank.org (ion.gank.org [64.81.113.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2684A43E4A for ; Tue, 16 Jul 2002 21:38:07 -0700 (PDT) (envelope-from craig@meoqu.gank.org) Received: from aldaris2.auir.gank.org (dsl081-113-221.dfw1.dsl.speakeasy.net [64.81.113.221]) by ion.gank.org (GankMail) with ESMTP id 0C7585378; Tue, 16 Jul 2002 23:38:05 -0500 (CDT) Subject: Re: weird kernel panics From: Craig Boston To: Andrey Lakhno Cc: freebsd-stable@freebsd.org In-Reply-To: <20020716184126.GB44049@gx.dnepr.net> References: <20020716153506.GA41125@gx.dnepr.net> <1026842984.1084.9.camel@owen1492.it.oot> <20020716184126.GB44049@gx.dnepr.net> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.8 Date: 16 Jul 2002 23:38:34 -0500 Message-Id: <1026880721.18096.5.camel@aldaris2.auir.gank.org> Mime-Version: 1.0 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 2002-07-16 at 13:41, Andrey Lakhno wrote: > Do you have unitialized vlans ? > E.g.: > vlan1: flags=0<> mtu 1500 > ether 00:00:00:00:00:00 > vlan: 0 parent interface: I did back on 4.5 (4 vlans statically in the kernel I think). When I upgraded to 4.6, they became dynamic so I only have vlan0 now. Actually, that particular upgrade bit me because now cloned_interfaces="vlan0" in rc.conf is needed (that really should be in UPDATING, IMHO). So the first boot didn't work :( I haven't tried to see if it's still happened now that they're gone -- intentionally panicking a production box isn't very high on my list of things to do :) Craig To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 21:42:56 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6602037B400 for ; Tue, 16 Jul 2002 21:42:54 -0700 (PDT) Received: from fep1.cogeco.net (smtp.cogeco.net [216.221.81.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C8AC43E58 for ; Tue, 16 Jul 2002 21:42:50 -0700 (PDT) (envelope-from markd@cogeco.ca) Received: from promethium (d141-146-131.home.cgocable.net [24.141.146.131]) by fep1.cogeco.net (Postfix) with ESMTP id 1ABC1394F for ; Wed, 17 Jul 2002 00:42:49 -0400 (EDT) Reply-To: From: "Mark D" To: Subject: Kernel config problem with 4.6-STABLE... Date: Wed, 17 Jul 2002 00:42:54 -0400 Message-ID: <000001c22d4c$6a74a930$fb00000a@promethium> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I CVSup'd to 4.6-STABLE today and after a buildworld I tried to make my custom kernel (that I've made a dozen times - and no the hardware hasn't changed) and received this error (below). I tried it again after a make clean and still ran into this. Google wasn't too much help. If anyone has any suggestions I'd greatly appreciate a response (I'm not subscribed to -stable, so if it's not too much trouble, would you respond to this address ;) - Mark D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 22: 4:54 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE0FF37B400 for ; Tue, 16 Jul 2002 22:04:52 -0700 (PDT) Received: from turbine.trit.org (turbine.trit.org [63.198.170.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 321C343E5E for ; Tue, 16 Jul 2002 22:04:52 -0700 (PDT) (envelope-from dima@trit.org) Received: from turbine.trit.org (localhost [127.0.0.1]) by turbine.trit.org (Postfix) with ESMTP id B29D63F45; Wed, 17 Jul 2002 05:04:49 +0000 (UTC) To: Andrew Martin Cc: freebsd-stable@freebsd.org Subject: Re: buildworld fails on getpeereid.c In-Reply-To: <20020716205600.5f5609db.ugly@inhuman.org>; from ugly@inhuman.org on "Tue, 16 Jul 2002 20:56:00 -0400" Date: Wed, 17 Jul 2002 05:04:48 +0000 From: Dima Dorfman Message-Id: <20020717050449.B29D63F45@turbine.trit.org> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Andrew Martin wrote: > cc -O -pipe -DLIBC_RCS -DSYSLIBC_RCS > -I/usr/src/lib/libc_r/../libc/include -DPTHREAD_KERNEL -D_THREAD_SAFE > -I/usr/src/lib/libc_r/uthread -I/usr/src/lib/libc_r/../../include > -D_LOCK_DEBUG -D_PTHREADS_INVARIANTS -D__DBINTERFACE_PRIVATE -DINET6 > -DPOSIX_MISTAKE -I/usr/src/lib/libc_r/../libc/locale -DBROKEN_DES -DYP > -c /usr/src/lib/libc_r/../libc/gen/getpeereid.c -o getpeereid.o > /usr/src/lib/libc_r/../libc/gen/getpeereid.c: In function `getpeereid': > /usr/src/lib/libc_r/../libc/gen/getpeereid.c:41: storage size of `xuc' > isn't known > /usr/src/lib/libc_r/../libc/gen/getpeereid.c:46: `LOCAL_PEERCRED' > undeclared (first use in this function) > /usr/src/lib/libc_r/../libc/gen/getpeereid.c:46: (Each undeclared > identifier is reported only once > /usr/src/lib/libc_r/../libc/gen/getpeereid.c:46: for each function it > appears in.) > /usr/src/lib/libc_r/../libc/gen/getpeereid.c:49: `XUCRED_VERSION' > undeclared (first use in this function) > *** Error code 1 The change that's probably responsible for this (MFC of getpeereid) is about four months old now, but some people still seem to be stumbling over this (see, for example, PR 37498, and there have also been other, similar, reports). I have no idea what causes it, or how to fix it, but it seems to be pilot error, or some combination of options that very few people seem to use, or it would have been fixed by now. If you have time and want it fixed, look at the aforementioned PR and in the -stable archives for similar reports and see if you can find what you have in common with all the other people having trouble with this. (Any build gurus lurking out there are free to try to figure it out, too (hint, hint) :-]). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 23:35:18 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D472E37B43D for ; Tue, 16 Jul 2002 23:35:08 -0700 (PDT) Received: from lakemtao02.cox.net (lakemtao02.cox.net [68.1.17.243]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CA1E43E4A for ; Tue, 16 Jul 2002 23:35:08 -0700 (PDT) (envelope-from jeffi@rcn.com) Received: from thevoid.delnoch.net ([68.100.191.91]) by lakemtao02.cox.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with ESMTP id <20020717063505.RXNX3097.lakemtao02.cox.net@thevoid.delnoch.net> for ; Wed, 17 Jul 2002 02:35:05 -0400 Received: (from jeff@localhost) by thevoid.delnoch.net (8.12.3/8.12.3/Submit) id g6H6ZTTN004296 for freebsd-stable@freebsd.org; Wed, 17 Jul 2002 02:35:29 -0400 (EDT) X-Authentication-Warning: thevoid.delnoch.net: jeff set sender to jeffi@rcn.com using -f Date: Wed, 17 Jul 2002 02:35:29 -0400 From: Jeff Ito To: freebsd-stable@freebsd.org Subject: Re: Kernel config problem with 4.6-STABLE... Message-ID: <20020717063529.GA4280@rcn.com> References: <000001c22d4c$6a74a930$fb00000a@promethium> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000001c22d4c$6a74a930$fb00000a@promethium> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jul 17, 2002 at 12:42:54AM -0400, Mark D wrote: > I CVSup'd to 4.6-STABLE today and after a buildworld I tried to make my > custom kernel (that I've made a dozen times - and no the hardware hasn't > changed) and received this error (below). I tried it again after a make > clean and still ran into this. Google wasn't too much help. If anyone > has any suggestions I'd greatly appreciate a response (I'm not > subscribed to -stable, so if it's not too much trouble, would you > respond to this address ;) > > > It should probably be noted that this only occurs with the config ; make depend ; make process of kernel compilation, and not in the make buildkernel method. I dont know if this helps track down the problem or not. Jeff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Jul 16 23:38:55 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4529537B400 for ; Tue, 16 Jul 2002 23:38:53 -0700 (PDT) Received: from leafy.idv.tw (sw59-154-113.adsl.seed.net.tw [61.59.154.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3986143E42 for ; Tue, 16 Jul 2002 23:38:52 -0700 (PDT) (envelope-from leafy@leafy.idv.tw) Received: from leafy.idv.tw (localhost [127.0.0.1]) by leafy.idv.tw (8.12.5/8.12.5) with ESMTP id g6H6cpJj000423 for ; Wed, 17 Jul 2002 14:38:51 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.5/8.12.5/Submit) id g6H6cpxw000422 for freebsd-stable@FreeBSD.ORG; Wed, 17 Jul 2002 14:38:51 +0800 (CST) Date: Wed, 17 Jul 2002 14:38:51 +0800 From: JY To: freebsd-stable@FreeBSD.ORG Subject: Re: Kernel config problem with 4.6-STABLE... Message-ID: <20020717063851.GA412@leafy.idv.tw> Mail-Followup-To: freebsd-stable@FreeBSD.ORG References: <000001c22d4c$6a74a930$fb00000a@promethium> <20020717063529.GA4280@rcn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <20020717063529.GA4280@rcn.com> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jul 17, 2002 at 02:35:29AM -0400, Jeff Ito wrote: > It should probably be noted that this only occurs with the config ; > make depend ; make process of kernel compilation, and not in the > make buildkernel method. I dont know if this helps track down the > problem or not. > > Jeff > make buildkernel does a make clean first, would you want to do that as well? I had a problem with kernel that was solved only after I chopped off all /usr/src/sys and re-cvsup . Jiawei Ye To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 0:49:43 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4990737B49C; Wed, 17 Jul 2002 00:49:37 -0700 (PDT) Received: from pump3.york.ac.uk (pump3.york.ac.uk [144.32.128.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1F6643E5E; Wed, 17 Jul 2002 00:48:31 -0700 (PDT) (envelope-from gavin.atkinson@ury.york.ac.uk) Received: from ury.york.ac.uk (ury.york.ac.uk [144.32.108.81]) by pump3.york.ac.uk (8.10.2/8.10.2) with ESMTP id g6H7kUa19246; Wed, 17 Jul 2002 08:46:30 +0100 (BST) Received: from ury.york.ac.uk (localhost.york.ac.uk [127.0.0.1]) by ury.york.ac.uk (8.12.3/8.12.3) with ESMTP id g6H7kUv6004050; Wed, 17 Jul 2002 08:46:30 +0100 (BST) (envelope-from gavin.atkinson@ury.york.ac.uk) Received: from localhost (gavin@localhost) by ury.york.ac.uk (8.12.3/8.12.3/Submit) with ESMTP id g6H7kTcu004047; Wed, 17 Jul 2002 08:46:29 +0100 (BST) X-Authentication-Warning: ury.york.ac.uk: gavin owned process doing -bs Date: Wed, 17 Jul 2002 08:46:29 +0100 (BST) From: Gavin Atkinson To: , Subject: Build error if crypto was not installed Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Fresh CVSUP as of 3pm yesterday GMT of stable cvs-all. System was installed from 4.6 CD, however only the base package was installed from the CD, no crypto. Make buildworld: ===> secure/usr.bin/scp cc -O -pipe -I/usr/src/secure/usr.bin/scp/../../../crypto/openssh -DNO_IDEA -c /usr/src/secure/usr.bin/scp/../../../crypto/openssh/scp.c cc -O -pipe -I/usr/src/secure/usr.bin/scp/../../../crypto/openssh -DNO_IDEA -o scp scp.o -lssh /usr/obj/usr/src/i386/usr/libexec/elf/ld: warning: libcrypto.so.2, needed by /usr/obj/usr/src/i386/usr/lib/libssh.so, not found (try using -rpath or -rpath-link) /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `EVP_DigestInit' /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `EVP_enc_null' /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `EVP_CIPHER_CTX_init' /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `BN_rand' /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `RSA_generate_key' /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `PEM_read_PrivateKey' /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `EVP_DigestFinal' [snipped lots more undefined references] /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `HMAC_Update' /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `EVP_bf_cbc' /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `EVP_get_digestbyname' *** Error code 1 Stop in /usr/src/secure/usr.bin/scp. *** Error code 1 Stop in /usr/src/secure/usr.bin. *** Error code 1 Stop in /usr/src/secure. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. Thanks, Gavin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 1:50:31 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E53837B400 for ; Wed, 17 Jul 2002 01:50:24 -0700 (PDT) Received: from dastardly.newsbastards.org.72.27.172.IN-addr.ARPA.NetScum.dyndns.dk (dclient217-162-144-20.hispeed.ch [217.162.144.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB89343E64 for ; Wed, 17 Jul 2002 01:50:22 -0700 (PDT) (envelope-from bounce@dcf77-zeit.netscum.dyndns.dk) Received: from beerswilling.netscum.dyndns.dk (ipv6.NetScum.dyndns.dk [2002:d9a2:9014:0:200:c0ff:fefc:19aa]) by dastardly.newsbastards.org.72.27.172.IN-addr.ARPA.NetScum.dyndns.dk (8.11.6/8.11.6-SPAMMERS-DeLiGHt) with ESMTP id g6H8oHi00578 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified NO) for ; Wed, 17 Jul 2002 10:50:20 +0200 (CEST) (envelope-from bounce@dcf77-zeit.netscum.dyndns.dk) Received: (from root@localhost) by beerswilling.netscum.dyndns.dk (8.11.6/SMI-4.1-R00T0WNED) id g6H8oHs00577; Wed, 17 Jul 2002 10:50:17 +0200 (CEST) (envelope-from bounce@dcf77-zeit.netscum.dyndns.dk) Date: Wed, 17 Jul 2002 10:50:17 +0200 (CEST) Message-Id: <200207170850.g6H8oHs00577@beerswilling.netscum.dyndns.dk> From: BOUWSMA Beery Organization: Men not wearing any pants that dont shave To: freebsd-stable@freebsd.org Subject: compact2 panic, probably unionfs-related, in months-old stable X-Hacked: via telnet to your port 25, what else? X-Internet-Access-Provided-By: Mountain Informatik AG X-NetScum: Yes X-One-And-Only-Real-True-Fluffy: No Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG [danger, ipv6-only e-mail address; remove the obvious if you're not ipv6-capable and need to reply to me directly] This panic seems to have happened, when I tried futzing around in a unionfs-mounted writeable directory atop a read-only source repository. Soon, I'll see if it's repeatable... System details are -stable, from early March, with the panicking kernel rebuilt on 20.Jun, I'm hoping from the same old source, but it's possible I built that kernel alone from newer source (I did a test buildworld/kernel but no installworld afterwards, so no clues remain in my source tree) This GDB was configured as "i386-unknown-freebsd"... IdlePTD at phsyical address 0x00412000 initial pcb at physical address 0x00337820 panicstr: ufs_direnter: compact2 panic messages: --- panic: ufs_direnter: compact2 syncing disks... 25 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 giving up on 8 buffers Uptime: 11h24m20s (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 #1 0xc016e64f in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:316 #2 0xc016ea8d in panic (fmt=0xc02d14de "ufs_direnter: compact2") at /usr/src/sys/kern/kern_shutdown.c:595 #3 0xc0218922 in ufs_direnter (dvp=0xc7915e00, tvp=0x0, dirp=0xc7694ce4, cnp=0xc7694ec0, newdirbp=0x0) at /usr/src/sys/ufs/ufs/ufs_lookup.c:907 #4 0xc021b525 in ufs_rename (ap=0xc7694e20) at /usr/src/sys/ufs/ufs/ufs_vnops.c:1105 #5 0xc021cc3d in ufs_vnoperate (ap=0xc7694e20) at /usr/src/sys/ufs/ufs/ufs_vnops.c:2422 #6 0xc176739f in ?? () #7 0xc01a1353 in rename (p=0xc76855e0, uap=0xc7694f80) at vnode_if.h:645 #8 0xc0296ff5 in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = 178045, tf_esi = -1077937732, tf_ebp = -1077937220, tf_isp = -949399596, tf_ebx = -1077937732, tf_edx = -1, tf_ecx = 2, tf_eax = 128, tf_trapno = 0, tf_err = 2, tf_eip = 671781748, tf_cs = 31, tf_eflags = 647, tf_esp = -1077937776, tf_sss = 47}) at /usr/src/sys/i386/i386/trap.c:1167 #9 0xc0289bb5 in Xint0x80_syscall () #10 0x804b1f8 in ?? () #11 0x8049005 in ?? () (kgdb) up 3 #3 0xc0218922 in ufs_direnter (dvp=0xc7915e00, tvp=0x0, dirp=0xc7694ce4, cnp=0xc7694ec0, newdirbp=0x0) at /usr/src/sys/ufs/ufs/ufs_lookup.c:907 907 panic("ufs_direnter: compact2"); (kgdb) l 902 if (spacefree + dsize < newentrysize) 903 panic("ufs_direnter: compact1"); 904 dirp->d_reclen = spacefree + dsize; 905 } else { 906 if (spacefree < newentrysize) 907 panic("ufs_direnter: compact2"); 908 dirp->d_reclen = spacefree; 909 ep->d_reclen = dsize; 910 ep = (struct direct *)((char *)ep + dsize); 911 } (kgdb) p spacefree $1 = 0 (kgdb) p newentrysize $2 = 28 -rw-r--r-- 1 root wheel 36013 Oct 31 2001 /usr/src/sys/ufs/ufs/ufs_lookup.c (kgdb) p dsize $3 = 24 (kgdb) p *ep $5 = {d_ino = 113637, d_reclen = 24, d_type = 8 '\b', d_namlen = 14 '\016', d_name = "mergemaster.sh\000Ç\001\000\000\000\034\000\016\023mergemaster.sh.or ig\000§À\001\000´\001\b\022mergemaster.sh-OLD\000Ç", '\000' } The unionfs shadow directory mounted rw atop /usr/src contents look somewhat like this after the reboot: bash-2.05a$ ls -larti /usr/local/source-hacks/usr.sbin/mergemaster/ total 68 114854 -rwxr-xr-x 1 root wheel 27677 Jun 25 00:29 mergemaster.sh.orig 114855 -rwxr-xr-x 1 root wheel 33365 Jun 26 13:38 mergemaster.sh-OLD 114852 drwxr-xr-x 149 root wheel 3072 Jun 27 02:11 .. 114853 drwxr-xr-x 2 root wheel 512 Jul 17 09:01 . The /usr/src under the unionfs mount is a nullfs mount from elsewhere whose contents look like this: bash-2.05a$ ls -larti /usr/local/system/src/usr.sbin/mergemaster/ total 100 167961 -rwxr-xr-x 1 root wheel 25185 Aug 11 2001 mergemaster.sh-DIST 168619 -rwxr-xr-x 1 root wheel 25185 Aug 11 2001 mergemaster.sh.orig 167958 -rw-r--r-- 1 root wheel 189 Oct 31 2001 Makefile 167244 drwxr-xr-x 154 root wheel 4096 Jun 25 00:29 .. 174143 -rw-r--r-- 1 root wheel 10683 Jun 25 00:29 mergemaster.8 178045 -rwxr-xr-x 1 root wheel 27696 Jul 1 15:24 mergemaster.sh 167957 drwxr-xr-x 2 root wheel 512 Jul 1 15:24 . The kernel has UFS_DIRHASH and the filesystems were mounted with softupdates. `ep' and `nep' in the trace seem identical. My poor brane can't figure out anything much more; while the fs was newfs'ed with probably a non-default value or two for inode count or file size, the value shouldn't be too far off (it's a bog-standard /usr filesystem, not a CD-WAV archive), and I don't think the hacks I've applied affect this part of the k0deZ. Lessee if this panic is repeatable... Hrm, nope, or else I'm doing things differently now than when it panicked. Sorry. Submitted for your amusement, I guess thanks barry bouwsma To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 2:54:59 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 945B437B400 for ; Wed, 17 Jul 2002 02:54:57 -0700 (PDT) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id F004443E3B for ; Wed, 17 Jul 2002 02:54:56 -0700 (PDT) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 199EB534A; Wed, 17 Jul 2002 11:54:54 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Gavin Atkinson Cc: Subject: Re: Build error if crypto was not installed References: From: Dag-Erling Smorgrav Date: 17 Jul 2002 11:54:53 +0200 In-Reply-To: Message-ID: Lines: 17 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Gavin Atkinson writes: > Fresh CVSUP as of 3pm yesterday GMT of stable cvs-all. System was > installed from 4.6 CD, however only the base package was installed from > the CD, no crypto. > > Make buildworld: > ===> secure/usr.bin/scp > cc -O -pipe -I/usr/src/secure/usr.bin/scp/../../../crypto/openssh -DNO_IDEA -c /usr/src/secure/usr.bin/scp/../../../crypto/openssh/scp.c > cc -O -pipe -I/usr/src/secure/usr.bin/scp/../../../crypto/openssh -DNO_IDEA -o scp scp.o -lssh > /usr/obj/usr/src/i386/usr/libexec/elf/ld: warning: libcrypto.so.2, needed by /usr/obj/usr/src/i386/usr/lib/libssh.so, not found (try using -rpath or -rpath-link) It looks like the build is not setting LD_LIBRARY_PATH correctly. Can you show me the output of 'find /usr/obj -name libcrypto.so.2'? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 3:28:54 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6782137B400 for ; Wed, 17 Jul 2002 03:28:51 -0700 (PDT) Received: from deborah.paradise.net.nz (deborah.paradise.net.nz [203.96.152.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53C9943E4A for ; Wed, 17 Jul 2002 03:28:49 -0700 (PDT) (envelope-from tortise@paradise.net.nz) Received: from P1200n (203-79-82-163.adsl-wns.paradise.net.nz [203.79.82.163]) by deborah.paradise.net.nz (Postfix) with SMTP id 43E65D1516 for ; Wed, 17 Jul 2002 22:28:48 +1200 (NZST) Message-ID: <011701c22d7c$b929bc70$0600a8c0@P1200n> From: "Tortise@Paradise" To: References: <25f401c228d4$a3482fb0$1a01000a@area51> <20020711091015.B51520@flake.decibel.org> <20020711200902.3653b534.steve@sohara.org> <20020713032546.GD61459@wantadilla.lemis.com> <20020713075109.06ecf02f.steve@sohara.org> <20020713100218.B284@twincat.vladsempire.net> <20020713222745.00281f72.steve@sohara.org> <20020714004247.GB16279@wantadilla.lemis.com> <20020714071524.1587f419.steve@sohara.org> <20020716131850.GB28928@luke.immure.com> Subject: Re: Software raid 1 on root partition? Date: Wed, 17 Jul 2002 22:28:41 +1200 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 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > I have been assuming (no confirmation as I haven't tried this yet) > that the recovery process is to dump the file systems on the RAID1 > configuration, replace the dead disk, reconfigure/newfs the filesystem, > and then restore it. Certainly not ideal, but it still beats losing the > data I think. The only part of this that I'm uncertain about is access > to the array while one of its disks is dead. Well if it didn't reliably work there would be no (well little) point in it.....RAID 1 that is. > BTW, I've been running a RAID0+1 (striped and mirrored) configuration of > 4 80GB IBM disks on this system for over a month now. If you are feeling game you could reproduce the scenario artificially.....unplug one HDD power cable......when the servers not busy.....and prove it continues to work..... Or perhaps replace one HDD with a blank equivalent and see what happens..... But don't blame me for any adverse consequences...... But if there are they were likely waiting to happen anyway..... The thing about HDD failure is that the question is not if it will occur, but rather when it will occur....and how prepared were you? For one windows server I use a RAID 1 IDE setup. Somewhat like Jack Stone's described system. The HDD/filesystems are mirrored. My variation is to have a third IDE Drive which is externally plugged in. (One RAID ide drive internal, the second externally cold swappable) This external drive is swapped and "restored" whenever a significant OS/software change is made, so I have an offsite working HDD, along with a spare RAID card. That server can then be reconstructed without too much angst (eg in the event of fire....theft etc) and updated with the more minor critical file backups I also maintain off site. It also tests to some degree the backup reliability and seeing it work is encouraging..... This system has yet to fail and be "properly" tested, but the artificial planned tests (drive swaps) have all worked fine. Thanks indeed for the interesting contributions. I feared the issue might be seen to be too "low level". I have plenty of homework scope here.....LOL...to recreate something similar in FreeBSD that I can be confident in and that has an acceptable cost/reliability/recovery time balance. David Hingston MB ChB MBA _________________________________________________________________________ tortoise@paradise.net.nz http://hingston.yi.org/ http://pcmc.yi.org/ If you seek a digitally signed response please advise. If you received a warning on reading this e-mail, please go to http://www.baycorpid.com/settings/email.asp?CA=healthcert to update your settings To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 3:49: 8 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17BC837B400 for ; Wed, 17 Jul 2002 03:49:05 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53A0343E58 for ; Wed, 17 Jul 2002 03:49:01 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g6HAm2E19487; Wed, 17 Jul 2002 13:48:02 +0300 (EEST) (envelope-from ru) Date: Wed, 17 Jul 2002 13:48:02 +0300 From: Ruslan Ermilov To: Dag-Erling Smorgrav Cc: Gavin Atkinson , stable@FreeBSD.ORG Subject: Re: Build error if crypto was not installed Message-ID: <20020717104802.GC18389@sunbay.com> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="yLVHuoLXiP9kZBkt" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.99i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --yLVHuoLXiP9kZBkt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jul 17, 2002 at 11:54:53AM +0200, Dag-Erling Smorgrav wrote: > Gavin Atkinson writes: > > Fresh CVSUP as of 3pm yesterday GMT of stable cvs-all. System was > > installed from 4.6 CD, however only the base package was installed from > > the CD, no crypto. > >=20 > > Make buildworld: > > =3D=3D=3D> secure/usr.bin/scp > > cc -O -pipe -I/usr/src/secure/usr.bin/scp/../../../crypto/openssh -DNO= _IDEA -c /usr/src/secure/usr.bin/scp/../../../crypto/openssh/scp.c > > cc -O -pipe -I/usr/src/secure/usr.bin/scp/../../../crypto/openssh -DNO= _IDEA -o scp scp.o -lssh > > /usr/obj/usr/src/i386/usr/libexec/elf/ld: warning: libcrypto.so.2, need= ed by /usr/obj/usr/src/i386/usr/lib/libssh.so, not found (try using -rpath = or -rpath-link) >=20 > It looks like the build is not setting LD_LIBRARY_PATH correctly. Can > you show me the output of 'find /usr/obj -name libcrypto.so.2'? >=20 I've just committed the relevant fixes to gnu/usr.bin/binutils/ld. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --yLVHuoLXiP9kZBkt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9NUtiUkv4P6juNwoRAijjAJ93ezLoOCLh1N7HzYZYWdX6QrQr6ACggZ+g ifrlXGrP+qgAv+kYRLPAo2Y= =29Us -----END PGP SIGNATURE----- --yLVHuoLXiP9kZBkt-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 5:29: 0 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE39237B400 for ; Wed, 17 Jul 2002 05:28:56 -0700 (PDT) Received: from graveyard.inhuman.org (ip68-100-76-222.nv.nv.cox.net [68.100.76.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B6E643E4A for ; Wed, 17 Jul 2002 05:28:56 -0700 (PDT) (envelope-from ugly@inhuman.org) Received: from whorism (unknown [192.168.1.4]) by graveyard.inhuman.org (Postfix) with ESMTP id 2A78DC9; Wed, 17 Jul 2002 08:31:00 -0400 (EDT) Date: Wed, 17 Jul 2002 08:29:01 -0400 From: Andrew Martin To: Dima Dorfman Cc: freebsd-stable@freebsd.org Subject: Re: buildworld fails on getpeereid.c Message-Id: <20020717082901.3c7a9a2d.ugly@inhuman.org> In-Reply-To: <20020717050449.B29D63F45@turbine.trit.org> References: <20020716205600.5f5609db.ugly@inhuman.org> <20020717050449.B29D63F45@turbine.trit.org> X-Mailer: Sylpheed version 0.8.0 (GTK+ 1.2.10; i386-portbld-freebsd4.6) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks, the PR had a fix in it (make includes). -Andrew On Wed, 17 Jul 2002 05:04:48 +0000 Dima Dorfman wrote: > > The change that's probably responsible for this (MFC of getpeereid) is > about four months old now, but some people still seem to be stumbling > over this (see, for example, PR 37498, and there have also been other, > similar, reports). I have no idea what causes it, or how to fix it, > but it seems to be pilot error, or some combination of options that > very few people seem to use, or it would have been fixed by now. > > If you have time and want it fixed, look at the aforementioned PR and > in the -stable archives for similar reports and see if you can find > what you have in common with all the other people having trouble with > this. (Any build gurus lurking out there are free to try to figure it > out, too (hint, hint) :-]). > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 6:37: 2 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67B1A37B400 for ; Wed, 17 Jul 2002 06:37:00 -0700 (PDT) Received: from ntaihsd.ne.client2.attbi.com (ntaihsd.ne.client2.attbi.com [24.147.210.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0A8043E65 for ; Wed, 17 Jul 2002 06:36:59 -0700 (PDT) (envelope-from naoyuki_tai@mac.com) Received: from nile.ntaihsd.ne.client2.attbi.com (nile.camelsoft.com [192.168.10.31]) by ntaihsd.ne.client2.attbi.com (8.12.5/8.12.5) with ESMTP id g6HDavTR004334; Wed, 17 Jul 2002 09:36:58 -0400 (EDT) (envelope-from naoyuki_tai@mac.com) Date: Wed, 17 Jul 2002 09:36:57 -0400 Message-ID: <8665zeo4qu.wl@mac.com> From: Naoyuki Tai Cc: Andrew Gallatin To: freebsd-stable@freebsd.org Subject: Re: mbuf clusters behavior (NMBCLUSTERS) In-Reply-To: <15668.13574.480189.404472@grasshopper.cs.duke.edu> References: <86k7nwwttv.wl@mac.com> <867kjvoj9f.wl@mac.com> <15668.13574.480189.404472@grasshopper.cs.duke.edu> User-Agent: Wanderlust/2.8.1 (Something) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Tue, 16 Jul 2002 11:00:22 -0400 (EDT), Andrew Gallatin wrote: > > As I suggested in my previous message, you should reduce > net.inet.ip.maxfragpackets and reduce the read/write size the linux > clients are using (change the default in their fstabs). > > Drew Drew, You are 100% right. I added rsize=8192,wsize=8192 option to the nfs mount point of linux client. I did a same copy file between nfs server and client, and "netstat -m" shows 97/212/65536 mbuf clusters in use (current/peak/max) The peak stays well below Thank you and have a nice day! -- ntai@mac.com, Naoyuki "Tai" Tai To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 7:17:50 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4D4837B400 for ; Wed, 17 Jul 2002 07:17:42 -0700 (PDT) Received: from www.mmlab.cse.yzu.edu.tw (www.mmlab.cse.yzu.edu.tw [140.138.145.166]) by mx1.FreeBSD.org (Postfix) with SMTP id 5764843E31 for ; Wed, 17 Jul 2002 07:17:40 -0700 (PDT) (envelope-from avatar@www.mmlab.cse.yzu.edu.tw) Received: (qmail 51732 invoked from network); 17 Jul 2002 14:16:41 -0000 Received: from www.mmlab.cse.yzu.edu.tw (@140.138.145.166) by www.mmlab.cse.yzu.edu.tw with SMTP; 17 Jul 2002 14:16:41 -0000 Date: Wed, 17 Jul 2002 22:16:41 +0800 (CST) From: Tai-hwa Liang To: freebsd-stable@FreeBSD.org Subject: slow ssh connection speed(bind problem?) Message-ID: <20020717214655.R51546-100000@www.mmlab.cse.yzu.edu.tw> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, After cvsupped to the latest version of RELENG_4 this morning, I found that the sshd on the newly built system takes more time during ssh connection handshaking: some.host.on.lan> ssh -vvv newly.built.releng.4.server . . . debug1: SSH2_MSG_NEWKEYS received debug1: done: ssh_kex2. debug1: send SSH2_MSG_SERVICE_REQUEST debug1: service_accept: ssh-userauth debug1: got SSH2_MSG_SERVICE_ACCEPT # stuck about 1 minute here . . Server debug log: . . debug1: newkeys: mode 0 debug1: SSH2_MSG_NEWKEYS received debug1: KEX done debug3: Trying to reverse map address 192.168.0.9. # stuck here . . Both of the client and server run OpenSSH-3.4p1. Neither the server nor the client has named enabled. I'm pretty sure that there is *no* change in any resolv related configuration file on newly.built.releng.4.server: /etc/hosts ::1 localhost localhost.my.domain 127.0.0.1 localhost.my.domain localhost 192.168.0.12 newly.built.releng.4.server test /etc/resolv.conf: domain my.domain. search my.domain. nameserver 192.168.0.1 /etc/host.conf: # First try the /etc/hosts file hosts # Now try the nameserver next. bind # If you have YP/NIS configured, uncomment the next line # nis However, the sshd seems being blocked at canohost.c:77 for about 65 seconds: $OpenBSD: canohost.c,v 1.32 2002/06/11 08:11:45 itojun Exp $ . . . /* Map the IP address to a host name. */ if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name), NULL, 0, NI_NAMEREQD) != 0) { /* Host name not found. Use ip address. */ log("Could not reverse map address %.100s.", ntop); return xstrdup(ntop); } Furthermore, if I turned on log_in_vain on the server side, there would be several lines of "Connection attempt to UDP 127.0.0.1:1073 from 127.0.0.1:53" appended to server log during client connection. I'm wondering whether there was any bind(especially getnameinfo()) related changes in recent RELENG_4. Or did I miss any sshd_config related knobs? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 7:30:19 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 535DC37B400 for ; Wed, 17 Jul 2002 07:30:15 -0700 (PDT) Received: from norton.palomine.net (dsl254-102-179.nyc1.dsl.speakeasy.net [216.254.102.179]) by mx1.FreeBSD.org (Postfix) with SMTP id 4DEEF43E58 for ; Wed, 17 Jul 2002 07:30:14 -0700 (PDT) (envelope-from cjohnson@palomine.net) Received: (qmail 19359 invoked by uid 1000); 17 Jul 2002 14:30:13 -0000 Date: Wed, 17 Jul 2002 10:30:12 -0400 From: Chris Johnson To: Tai-hwa Liang Cc: freebsd-stable@FreeBSD.org Subject: Re: slow ssh connection speed(bind problem?) Message-ID: <20020717143012.GA19247@palomine.net> References: <20020717214655.R51546-100000@www.mmlab.cse.yzu.edu.tw> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PNTmBPCT7hxwcZjr" Content-Disposition: inline In-Reply-To: <20020717214655.R51546-100000@www.mmlab.cse.yzu.edu.tw> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --PNTmBPCT7hxwcZjr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Jul 17, 2002 at 10:16:41PM +0800, Tai-hwa Liang wrote: > After cvsupped to the latest version of RELENG_4 this morning, I > found that the sshd on the newly built system takes more time during ssh > connection handshaking: I've found that this happens on some boxes but not others, both with the new OpenSSH-3.4p1 in the base system and with the openssh-portable in the ports. I haven't been able to figure why it happens only on some boxes and not others. One solution I've found is this: # chflags noschg /var/empty # mkdir /var/empty/etc # cp /etc/resolv.conf /var/empty/etc # chflags schg /var/empty I don't know if there are security (or any other) implications to this, but it fixes the problem in any case. Chris Johnson --PNTmBPCT7hxwcZjr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9NX90PC78Lz4X/PARAg0bAJ9zO2FUGh8Tgrqo7+vYUCajHR4PjwCgqpkT omDo7cLn7KyLkMRTSFGDV2k= =5e4J -----END PGP SIGNATURE----- --PNTmBPCT7hxwcZjr-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 7:45: 7 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FD5837B400 for ; Wed, 17 Jul 2002 07:45:04 -0700 (PDT) Received: from frontend2.aha.ru (bird.zenon.net [213.189.198.215]) by mx1.FreeBSD.org (Postfix) with ESMTP id EADC243E42 for ; Wed, 17 Jul 2002 07:45:02 -0700 (PDT) (envelope-from uitm@zenon.net) Received: from [195.2.83.132] (HELO backend2.aha.ru) by frontend2.aha.ru (CommuniGate Pro SMTP 3.5.9) with ESMTP id 129862445; Wed, 17 Jul 2002 18:45:01 +0400 Received: from uitm.zenon.net ([195.2.69.86] verified) by backend2.aha.ru (CommuniGate Pro SMTP 3.5.9) with ESMTP id 24791181; Wed, 17 Jul 2002 18:45:01 +0400 From: Andrey Alekseyev Message-Id: <200207171445.g6HEj1J35604@uitm.zenon.net> Subject: Re: slow ssh connection speed(bind problem?) In-Reply-To: <20020717143012.GA19247@palomine.net> from Chris Johnson at "Jul 17, 2002 10:30:12 am" To: Chris Johnson Date: Wed, 17 Jul 2002 18:45:01 +0400 (MSD) Cc: Tai-hwa Liang , freebsd-stable@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL61 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Copying resolv.conf (and probably login.conf) into /var/empty/etc is not so unnecessary anyway, because of sshd-net process trying to resolve ip address of a client. Without resolv.conf there you get errors on resolving ip to name -- just perform the following: mkdir -p /var/empty/var/run ln /var/run/log /var/empty/var/run/log and turn on debug logging for sshd > One solution I've found is this: > > # chflags noschg /var/empty > # mkdir /var/empty/etc > # cp /etc/resolv.conf /var/empty/etc > # chflags schg /var/empty > > I don't know if there are security (or any other) implications to this, but it > fixes the problem in any case. > > Chris Johnson [application/pgp-signature is not supported, skipping...] -- Andrey Alekseyev. Zenon N.S.P. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 8:34:20 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2959B37B400; Wed, 17 Jul 2002 08:34:16 -0700 (PDT) Received: from viefep11-int.chello.at (viefep11-int.chello.at [213.46.255.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60F0043E31; Wed, 17 Jul 2002 08:34:14 -0700 (PDT) (envelope-from ant@overclockers.at) Received: from Deadcell.ant ([212.17.108.240]) by viefep11-int.chello.at (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with ESMTP id <20020717153413.CSFN4240.viefep11-int.chello.at@Deadcell.ant>; Wed, 17 Jul 2002 17:34:13 +0200 Received: from Deadcell.ant (localhost [127.0.0.1]) by Deadcell.ant (8.12.5/8.12.5) with ESMTP id g6HFYDu1001672; Wed, 17 Jul 2002 17:34:13 +0200 (CEST) (envelope-from ant@Deadcell.ant) Received: (from ant@localhost) by Deadcell.ant (8.12.5/8.12.5/Submit) id g6HFY71X001671; Wed, 17 Jul 2002 17:34:07 +0200 (CEST) Date: Wed, 17 Jul 2002 17:34:07 +0200 From: Andreas Ntaflos To: freebsd-questions@freebsd.org, freebsd-stable@freebsd.org Subject: SGI's STL (Standard Template Library) in base system? Message-ID: <20020717153407.GA1646@Deadcell.ant> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello list, Maybe I should be posting this to -hackers, but I'll try anyway. Is the Standard Template Library somehow contained in the base system of FreeBSD? I know there is the ports devel/stlport, but if it also resides in the base system (just like sendmail, perl, ssh, etc..) it would be no good idea to install it from ports, would it? But if I have to install the port, is it any good? Is it useable? I would appreciate any tips. TIA regards -- Andreas "ant" Ntaflos ant@overclockers.at Vienna, AUSTRIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 9:14:52 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D09037B400 for ; Wed, 17 Jul 2002 09:14:46 -0700 (PDT) Received: from mail.gbronline.com (mail.gbronline.com [12.145.226.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8BB743E58 for ; Wed, 17 Jul 2002 09:14:44 -0700 (PDT) (envelope-from kdk@daleco.biz) Received: from daleco [12.145.236.44] by mail.gbronline.com (SMTPD32-7.11) id A8051B5C009A; Wed, 17 Jul 2002 11:15:01 -0500 Message-ID: <04f401c22dad$0660e240$2cec910c@fbccarthage.com> From: "Kevin Kinsey, DaleCo, S.P." To: "Gerhard Sittig" , References: <200207152133.g6FLXQb72508@osvald.void.ru> <20020716053638.A21324@grybel.mayn.de> <20020716195624.X1494@shell.gsinet.sittig.org> Subject: Re: subscribe freebsd-stable [OT] Date: Wed, 17 Jul 2002 11:14:24 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Gerhard Sittig" To: Sent: Tuesday, July 16, 2002 12:56 PM Subject: Re: subscribe freebsd-stable > On Tue, Jul 16, 2002 at 05:36 +0200, Linus wrote: > > > > On Tue, Jul 16, 2002 at 01:33:26AM +0400, krok wrote: > > > subscribe freebsd-stable > > > > How about changing the passage in the FreeBSD-Handbook as to less > > misleading/confusing the people who want to (un)subscribe to various > > freebsd-MLs? New users easily get confused with 'freebsd-xyz@...' and > > 'majordomo@...' and to which of them they have to send a(n) > > (un)subscribe to. > > Which part of the handbook are you talking about? I have here: > > ----- snip ------------------------------------------------------ > Here Gerhard quotes the Handbook..... > ----- snap ------------------------------------------------------ > > How can one misunderstand the instructions? It even has an > example. Although new users might not be too familiar with > mail(1) they could get the idea. But then again they could > simply click on the mailto: URL with the majordomo address -- > clicking cannot be this difficult, can it? There is even an > explicite statement of what "posting to the list by sending > mail to " does. And the very next > paragraph (the second in the section) tells how to subscribe. > > Since you suggest to "change the passage to something less > confusing" -- can you come up with something better? Just saying > "somebody should ..." (write the doc, do the coding, test stuff, > do advocacy, choose whatever you wish to get done) doesn't > magically make things get done. Should you know how to phrase > the above instructions better, feel free to submit the changes. > Don't care too much about markup, -doc people will happily do > this for you should the content improve this way. Just provide > the words people will less likely be confused by ... > > > Or am I mislead and the mislead "(un)subscribe"-messages ain't being > > more and more frequent? Not IMHO. > > [ OT ] > > Well, one cannot solve human problems with technical means ... > > One of the mailing lists' principles is "Give a man a fish, and > you feed him for a day. Tell him he should learn how to fish > himself, and he'll hate you for a lifetime." > > I guess there is no cure for people who are unwilling or unable > to read and follow simple instructions. Handholding doesn't > work (for too long, it's rather short sighted) and is not the > UNIX way. Most probably some of those people are better off > with chosing a different OS for their purposes. Those who know > how to read and simply err in a hurry surely are in the minority > (and still err unnecessarily and for no acceptable reason). > > virtually yours, Gerhard Sittig > If you don't understand or are scared by any of the above > ask your parents or an adult to help you. LOL!! 2 things in society that cause this, I guess I'm disagreeing with your last sentence, but the fundamental axiom "it ain't broke enough for the rest of us to fix" remains the same.: 1. People *are* in too much of a hurry to read directions. (At least in the USA.) That's 30-40% of the traffic on this server anyway, esp. questions@ --- so often the answer is in the handbook. (my est., I haven't done 'traffic analysis') 2. The promulgation of many majordomo-TYPE programs that use different syntax that majordomo does. FBSD in general does some things differently than some people are used to. Witness the number of people who assume corporate structure (a recent example was a posting to -questions about a copy of a magazine for the archives). Or, witness the occasional poster who assumes that he it talking to TECH SUPPORT --- "Dear Sir, ...." or that we're offering degrees/certification --- "How can I be certified in FBSD?" Just because you can send the word "subscribe" to a listserv (or whatever) server and be successful doesn't mean we should not use majordomo, but the fact that there are many other mailing list managers suggests that from time to time we'll get emails that say nothing but 'subscribe'. And, you can tell how much perseverance a user has by how many permutations of the command he sends to the wrong address before he either gives up or does it correctly. I say, let 'em send the mail. At least I KNOW there's nothing interesting in the messages with that header---I look forward to hitting 'delete' w/o parsing them. As for the [l]users, when they don't start receiving listmail maybe they'll break rule #1 above, and learn how to do #2 ... education is a Good Thing(TM*). KDK *Whose trademark, I dunno. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 10:17:32 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2371A37B400 for ; Wed, 17 Jul 2002 10:17:30 -0700 (PDT) Received: from wopr.webexc.com (wopr.webexc.com [66.162.122.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD82C43E42 for ; Wed, 17 Jul 2002 10:17:29 -0700 (PDT) (envelope-from matt@webexc.com) Received: from spock.webexc.com (209-212-209-89.office.webexc.com [209.212.209.89]) by wopr.webexc.com (Postfix) with ESMTP id B9F1DEB; Wed, 17 Jul 2002 12:16:42 -0500 (EST) Received: by spock.webexc.com (Postfix, from userid 1001) id 18486568; Wed, 17 Jul 2002 11:46:29 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by spock.webexc.com (Postfix) with ESMTP id F042E563; Wed, 17 Jul 2002 11:46:28 -0500 (EST) Date: Wed, 17 Jul 2002 11:46:26 -0500 (EST) From: Matt Barton X-X-Sender: mbarton@spock.webexc.com To: Jeremy Parker Cc: "Michael L. Squires" , Subject: Re: /usr/src/UPDATING has no warning about ssh group/passwd changes In-Reply-To: <20020716225522.GA9624@emunix.emich.edu> Message-ID: <20020717114558.K81442-100000@spock.webexc.com> Organization: Webexcellence MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Tue, 16 Jul 2002, Jeremy Parker wrote: > I believe mergemaster is included in the upgrade process as specified in > UPDATING, and that would handle merging those changes in. I upgraded one of my -STABLE boxes recently and running mergemaster did allow me to add the 'ssh' user and group with no problems. - -- Matt Barton Webexcellence PH: 317.423.3548 x22 TF: 800.808.6332 x22 FX: 317.423.8735 matt@webexc.com www.webexc.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9NZ9k67cWHlKNnWkRAuN4AJ9TRSMzhCIOnR1yf3ivV4gLiK6K+wCfSBud xxSpYk48583P0qLknrv+L88= =07TH -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 10:40:54 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7590337B400; Wed, 17 Jul 2002 10:40:51 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCD9043E31; Wed, 17 Jul 2002 10:40:38 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.3/8.12.3) with ESMTP id g6HHeW1f020198; Wed, 17 Jul 2002 11:40:33 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 17 Jul 2002 11:40:15 -0600 (MDT) Message-Id: <20020717.114015.88960595.imp@bsdimp.com> To: ant@overclockers.at Cc: freebsd-questions@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: SGI's STL (Standard Template Library) in base system? From: "M. Warner Losh" In-Reply-To: <20020717153407.GA1646@Deadcell.ant> References: <20020717153407.GA1646@Deadcell.ant> X-Mailer: Mew version 2.1 on Emacs 21.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: <20020717153407.GA1646@Deadcell.ant> Andreas Ntaflos writes: : Is the Standard Template Library somehow contained in the base : system of FreeBSD? Yes. : But if I have to install the port, is it any good? Is it useable? The stl in the base is adequate for most uses, but sophisticated users will have issues. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 11: 4: 6 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2A0E37B400 for ; Wed, 17 Jul 2002 11:04:03 -0700 (PDT) Received: from postal2.es.net (postal2.es.net [198.128.3.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02BF243E64 for ; Wed, 17 Jul 2002 11:04:03 -0700 (PDT) (envelope-from oberman@es.net) Received: from ptavv.es.net ([198.128.4.29]) by postal2.es.net (Postal Node 2) with ESMTP id GQF37091 for ; Wed, 17 Jul 2002 11:03:54 -0700 Received: from ptavv (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id 8031D5D06 for ; Wed, 17 Jul 2002 11:04:01 -0700 (PDT) To: stable@freebsd.org Subject: Possible problems with cvsup14.freebsd.org Date: Wed, 17 Jul 2002 11:04:01 -0700 From: "Kevin Oberman" Message-Id: <20020717180401.8031D5D06@ptavv.es.net> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have been updating from many months from cvsup14 but I have had no updates to src-all with the RELENG_4 tag for at least two days. Seemed VERY unlikely! So I just run another cvsup from cvsup3 and got a VERY large number of changes. Seems like something might be broken at cvsup14. But it's not totally dead as I have been getting port updates from cvsup14 just fine. As I final check, I cvsuped my ports from cvsup3 and got only a few changes. So it looks like something is wrong with its src-all mirror. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 11: 4:31 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67A1D37B400; Wed, 17 Jul 2002 11:04:29 -0700 (PDT) Received: from mail.freebsdmall.com (www.freebsdmall.com [66.220.2.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED43143E3B; Wed, 17 Jul 2002 11:04:28 -0700 (PDT) (envelope-from murray@freebsdmall.com) Received: by mail.freebsdmall.com (Postfix, from userid 2074) id C85192E884; Wed, 17 Jul 2002 10:38:22 -0700 (PDT) Date: Wed, 17 Jul 2002 10:38:22 -0700 From: Murray Stokely To: stable@FreeBSD.org Cc: re@FreeBSD.org Subject: FreeBSD 4.6.1 RC1 (i386) Message-ID: <20020717103822.C62004@freebsdmall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 4.6.1 RC1 (i386) is available now on the major FreeBSD FTP sites. This is currently only available for net installs. Ports, packages, and documentation are not available. An ISO image will be created for RC2 with full packages. This RC was created before the OpenSSH merge (thanks DES!) but could still certainly use some testing of the major BIND update and assorted fixes to sendmail, ktrace, etc.. - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 11:13:24 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1443A37B400 for ; Wed, 17 Jul 2002 11:13:22 -0700 (PDT) Received: from moek.pir.net (moek.pir.net [130.64.1.215]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9E1A43E58 for ; Wed, 17 Jul 2002 11:13:21 -0700 (PDT) (envelope-from pir@pir.net) Received: from pir by moek.pir.net with local (Exim) id 17UtIf-0000h4-00 for stable@FreeBSD.org; Wed, 17 Jul 2002 14:13:21 -0400 Date: Wed, 17 Jul 2002 14:13:21 -0400 From: Peter Radcliffe To: stable@FreeBSD.org Subject: Re: FreeBSD 4.6.1 RC1 (i386) Message-ID: <20020717181320.GA43@pir.net> Reply-To: stable@freebsd.org Mail-Followup-To: stable@FreeBSD.org References: <20020717103822.C62004@freebsdmall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020717103822.C62004@freebsdmall.com> User-Agent: Mutt/1.4i X-fish: < X-Copy-On-Listmail: Please do NOT Cc: me on list mail. Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Murray Stokely probably said: > 4.6.1 RC1 (i386) is available now on the major FreeBSD FTP sites. > This is currently only available for net installs. Ports, packages, > and documentation are not available. An ISO image will be created for > RC2 with full packages. This RC was created before the OpenSSH merge > (thanks DES!) but could still certainly use some testing of the major > BIND update and assorted fixes to sendmail, ktrace, etc.. Will, following on from this, there be a new RELENG_4_6_1 or is this (as is probably more sensible) be keeping to RELENG_4_6 ? P. -- pir pir-sig@pir.net pir-sig@net.tufts.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 11:25:19 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E38937B400; Wed, 17 Jul 2002 11:25:15 -0700 (PDT) Received: from topperwein.dyndns.org (acs-24-154-28-203.zoominternet.net [24.154.28.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BF7343E31; Wed, 17 Jul 2002 11:25:14 -0700 (PDT) (envelope-from behanna@zbzoom.net) Received: from topperwein (topperwein [192.168.168.10]) by topperwein.dyndns.org (8.12.5/8.12.5) with ESMTP id g6HIPDxQ025730; Wed, 17 Jul 2002 14:25:13 -0400 (EDT) (envelope-from behanna@zbzoom.net) Date: Wed, 17 Jul 2002 14:25:08 -0400 (EDT) From: Chris BeHanna Reply-To: Chris BeHanna To: FreeBSD-Stable Cc: freebsd-questions@freebsd.org Subject: Re: SGI's STL (Standard Template Library) in base system? In-Reply-To: <20020717153407.GA1646@Deadcell.ant> Message-ID: <20020717142017.W24970-100000@topperwein.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 17 Jul 2002, Andreas Ntaflos wrote: > Hello list, > Maybe I should be posting this to -hackers, but I'll try anyway. > > Is the Standard Template Library somehow contained in the base > system of FreeBSD? I know there is the ports devel/stlport, but if The GCC STL is in the base system. I've had problems with thread-safe allocators in the GCC 2.95 version. I haven't tried it in the 3.x series. > it also resides in the base system (just like sendmail, perl, ssh, > etc..) it would be no good idea to install it from ports, would it? The port will install into /usr/local/include/stlport. There should be no worries, but you'll have to add -nostdinc++ -I/usr/local/include/stlport to your CXXFLAGS to use the stlport version. > But if I have to install the port, is it any good? Is it useable? My experience with it was on Solaris, and it was quite good indeed. There are some Koenig lookup issues when building older versions of Crypto++ against it, but the current versions should play happily together. -- Chris BeHanna http://www.pennasoft.com Principal Consultant PennaSoft Corporation chris@pennasoft.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 17 11:29:45 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20C6737B400 for ; Wed, 17 Jul 2002 11:29:42 -0700 (PDT) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3763B43E75 for ; Wed, 17 Jul 2002 11:29:41 -0700 (PDT) (envelope-from bmah@employees.org) Received: from bmah.dyndns.org ([12.233.149.189]) by sccrmhc02.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020717182940.LTTR6023.sccrmhc02.attbi.com@bmah.dyndns.org> for ; Wed, 17 Jul 2002 18:29:40 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.5/8.12.5) with ESMTP id g6HITdeU066117 for ; Wed, 17 Jul 2002 11:29:39 -0700 (PDT) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.5/8.12.5/Submit) id g6HITdw7066116; Wed, 17 Jul 2002 11:29:39 -0700 (PDT) Message-Id: <200207171829.g6HITdw7066116@intruder.bmah.org> X-Mailer: exmh version 2.5+ 20020506 with nmh-1.0.4 To: stable@FreeBSD.ORG Subject: Re: FreeBSD 4.6.1 RC1 (i386) In-Reply-To: <20020717181320.GA43@pir.net> References: <20020717103822.C62004@freebsdmall.com> <20020717181320.GA43@pir.net> Comments: In-reply-to Peter Radcliffe message dated "Wed, 17 Jul 2002 14:13:21 -0400." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_-1535576064P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Wed, 17 Jul 2002 11:29:39 -0700 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --==_Exmh_-1535576064P Content-Type: text/plain; charset=us-ascii If memory serves me right, Peter Radcliffe wrote: > Murray Stokely probably said: > > 4.6.1 RC1 (i386) is available now on the major FreeBSD FTP sites. > > This is currently only available for net installs. Ports, packages, > > and documentation are not available. An ISO image will be created for > > RC2 with full packages. This RC was created before the OpenSSH merge > > (thanks DES!) but could still certainly use some testing of the major > > BIND update and assorted fixes to sendmail, ktrace, etc.. > > Will, following on from this, there be a new RELENG_4_6_1 or is this > (as is probably more sensible) be keeping to RELENG_4_6 ? The latter. 4.6.1-RELEASE is a point along the RELENG_4_6 security branch. There will be a RELENG_4_6_1_RELEASE tag to mark this, but no RELENG_4_6_1 branch. Bruce. --==_Exmh_-1535576064P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) Comment: Exmh version 2.5+ 20020506 iD8DBQE9NbeT2MoxcVugUsMRApHHAJ9O832b9NaudQXgjNgaVc996WjsWACgghHm mEMX/TCRoqRzsU9LJT1VDYU= =lcCU -----END PGP SIGNATURE----- --==_Exmh_-1535576064P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 11:40: 0 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32E7637B400 for ; Wed, 17 Jul 2002 11:39:57 -0700 (PDT) Received: from HAL9000.homeunix.com (12-233-156-170.client.attbi.com [12.233.156.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA3ED43E31 for ; Wed, 17 Jul 2002 11:39:56 -0700 (PDT) (envelope-from dschultz@uclink.Berkeley.EDU) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.3/8.12.3) with ESMTP id g6HIeJS8000561; Wed, 17 Jul 2002 11:40:19 -0700 (PDT) (envelope-from dschultz@uclink.Berkeley.EDU) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.3/8.12.3/Submit) id g6HIeIF8000560; Wed, 17 Jul 2002 11:40:18 -0700 (PDT) (envelope-from dschultz@uclink.Berkeley.EDU) Date: Wed, 17 Jul 2002 11:40:17 -0700 From: David Schultz To: Gerhard Sittig Cc: freebsd-stable@FreeBSD.ORG Subject: Re: subscribe freebsd-stable Message-ID: <20020717184017.GA488@HAL9000.homeunix.com> Mail-Followup-To: Gerhard Sittig , freebsd-stable@FreeBSD.ORG References: <200207152133.g6FLXQb72508@osvald.void.ru> <20020716053638.A21324@grybel.mayn.de> <20020716195624.X1494@shell.gsinet.sittig.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020716195624.X1494@shell.gsinet.sittig.org> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Gerhard Sittig : > How can one misunderstand the instructions? It even has an > example. Although new users might not be too familiar with > mail(1) they could get the idea. But then again they could > simply click on the mailto: URL with the majordomo address -- > clicking cannot be this difficult, can it? There is even an > explicite statement of what "posting to the list by sending > mail to " does. And the very next > paragraph (the second in the section) tells how to subscribe. I used to work at a library. At the circulation desk, there was one sign. Just one. It was bright yellow. It said, in big bold letters, ``Please turn your books over and have your card ready.'' Roughly half of the patrons turned their books over (presumably this can be attributed to random chance) and about one tenth had their cards ready. Reflect on the fact that this is a library. Most of the visitors either can read or are just trying to pick up women and don't know where to look, and the people in the latter category aren't checking out *books*. The point is that it's hard to get people to pay attention, even when there are no attractive women around, and moreover, the more words you have the less likely it is that people will notice the important part. Unless you can work MOTOS into the discussion, that is. Part of the problem in this case, I think, is that the first thing under the heading ``How to Subscribe'' actually said how to send mail to the list. People saw the heading, scanned for an address, and sent subscribe requests to the wrong place. I believe Giorgos has committed a fix for this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 11:41: 1 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBD8937B401; Wed, 17 Jul 2002 11:40:55 -0700 (PDT) Received: from Www.HCRC.edu.tw (www.HCRC.edu.tw [163.28.64.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15EA543E6D; Wed, 17 Jul 2002 11:40:48 -0700 (PDT) (envelope-from ijliao@Terry.Dorm11.NCTU.edu.tw) Received: from Terry.Dorm11.NCTU.edu.tw (root@Terry.Dorm11.NCTU.edu.tw [140.113.192.99]) by Www.HCRC.edu.tw (8.12.3/8.12.3) with ESMTP id g6HIee3a024483; Thu, 18 Jul 2002 02:40:40 +0800 (CST) (envelope-from ijliao@Terry.Dorm11.NCTU.edu.tw) Received: from Terry.Dorm11.NCTU.edu.tw (ijliao@localhost [127.0.0.1]) by Terry.Dorm11.NCTU.edu.tw (8.12.3/8.12.3) with ESMTP id g6HIelVg096773; Thu, 18 Jul 2002 02:40:48 +0800 (CST) (envelope-from ijliao@Terry.Dorm11.NCTU.edu.tw) Received: (from ijliao@localhost) by Terry.Dorm11.NCTU.edu.tw (8.12.3/8.12.3/Submit) id g6HIeldd096772; Thu, 18 Jul 2002 02:40:47 +0800 (CST) Date: Thu, 18 Jul 2002 02:40:47 +0800 From: Ying-Chieh Liao To: Murray Stokely Cc: stable@FreeBSD.ORG, re@FreeBSD.ORG Subject: Re: FreeBSD 4.6.1 RC1 (i386) Message-ID: <20020717184047.GA95143@terry.dragon2.net> References: <20020717103822.C62004@freebsdmall.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="9jxsPFA5p3P2qPhR" Content-Disposition: inline In-Reply-To: <20020717103822.C62004@freebsdmall.com> X-Operating-System: FreeBSD 5.0-CURRENT i386 X-PGP-Key-Location: http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0x11C02382 X-PGP-Key-Fingerprint: 4E98 55CC 2866 7A90 EFD7 9DA5 ACC6 0165 11C0 2382 User-Agent: Mutt/1.5.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --9jxsPFA5p3P2qPhR Content-Type: text/plain; charset=big5 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jul 17, 2002 at 10:38:22 -0700, Murray Stokely wrote: > 4.6.1 RC1 (i386) is available now on the major FreeBSD FTP sites. ftp://ftp.tw.freebsd.org/pub/i386/4.6.1-RC1/ ftp://ftp10.tw.freebsd.org/pub/FreeBSD/releases/i386/4.6.1-RC1/ these sites are ok now :) --=20 int i;main(){for(;i["]; Wed, 17 Jul 2002 11:43:21 -0700 (PDT) Received: from moek.pir.net (moek.pir.net [130.64.1.215]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71A9F43E31 for ; Wed, 17 Jul 2002 11:43:21 -0700 (PDT) (envelope-from pir@pir.net) Received: from pir by moek.pir.net with local (Exim) id 17Utlh-0000uO-00 for stable@FreeBSD.ORG; Wed, 17 Jul 2002 14:43:21 -0400 Date: Wed, 17 Jul 2002 14:43:20 -0400 From: Peter Radcliffe To: stable@FreeBSD.ORG Subject: Re: FreeBSD 4.6.1 RC1 (i386) Message-ID: <20020717184320.GC43@pir.net> Reply-To: stable@freebsd.org Mail-Followup-To: stable@FreeBSD.ORG References: <20020717103822.C62004@freebsdmall.com> <20020717181320.GA43@pir.net> <200207171829.g6HITdw7066116@intruder.bmah.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200207171829.g6HITdw7066116@intruder.bmah.org> User-Agent: Mutt/1.4i X-fish: < X-Copy-On-Listmail: Please do NOT Cc: me on list mail. Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Bruce A. Mah" probably said: > The latter. 4.6.1-RELEASE is a point along the RELENG_4_6 security > branch. There will be a RELENG_4_6_1_RELEASE tag to mark this, but no > RELENG_4_6_1 branch. Good, the sensible line :) Thanks. P. -- pir pir-sig@pir.net pir-sig@net.tufts.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 12: 4: 3 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3361137B409 for ; Wed, 17 Jul 2002 12:03:59 -0700 (PDT) Received: from gx.dnepr.net (gx.dnepr.net [217.198.131.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5211B43E58 for ; Wed, 17 Jul 2002 12:03:57 -0700 (PDT) (envelope-from land@gx.dnepr.net) Received: from gx.dnepr.net (localhost.dnepr.net [127.0.0.1]) by gx.dnepr.net with ESMTP id g6HJ3rgj069106 for ; Wed, 17 Jul 2002 22:03:53 +0300 (EEST) (envelope-from land@gx.dnepr.net) Received: (from land@localhost) by gx.dnepr.net id g6HJ3rCk069105 for stable@freebsd.org; Wed, 17 Jul 2002 22:03:53 +0300 (EEST) (envelope-from land) Date: Wed, 17 Jul 2002 22:03:53 +0300 From: Andrey Lakhno To: stable@freebsd.org Subject: Re: weird kernel panics Message-ID: <20020717190353.GB68988@gx.dnepr.net> References: <20020716153506.GA41125@gx.dnepr.net> <1026842984.1084.9.camel@owen1492.it.oot> <20020716184126.GB44049@gx.dnepr.net> <1026880721.18096.5.camel@aldaris2.auir.gank.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <1026880721.18096.5.camel@aldaris2.auir.gank.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Craig! On Tue, 16 Jul 2002, Craig Boston wrote: > On Tue, 2002-07-16 at 13:41, Andrey Lakhno wrote: > > Do you have unitialized vlans ? > > E.g.: > > vlan1: flags=0<> mtu 1500 > > ether 00:00:00:00:00:00 > > vlan: 0 parent interface: > > I did back on 4.5 (4 vlans statically in the kernel I think). When I > upgraded to 4.6, they became dynamic so I only have vlan0 now. > Actually, that particular upgrade bit me because now > cloned_interfaces="vlan0" in rc.conf is needed (that really should be in > UPDATING, IMHO). So the first boot didn't work :( > > I haven't tried to see if it's still happened now that they're gone -- > intentionally panicking a production box isn't very high on my list of > things to do :) Seems that panics caused by disabling multicast on vlan interface. -- Andrey Lakhno, land-ripe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 12:26: 0 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E87F37B400 for ; Wed, 17 Jul 2002 12:25:58 -0700 (PDT) Received: from mail2000.popstick.com (dns1.popstick.com [66.37.210.4]) by mx1.FreeBSD.org (Postfix) with SMTP id D56B243E70 for ; Wed, 17 Jul 2002 12:25:56 -0700 (PDT) (envelope-from mlists@northglobe.com) Received: (qmail 71786 invoked from network); 17 Jul 2002 19:25:55 -0000 Received: from unknown (HELO hemingway.northglobe.com) (4.17.165.181) by 0 with SMTP; 17 Jul 2002 19:25:55 -0000 Message-Id: <5.1.0.14.0.20020717152215.00a79df0@dns1.popstick.com> X-Sender: mlists@northglobe.com@dns1.popstick.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Wed, 17 Jul 2002 15:25:54 -0400 To: , From: Nicholas Basila Subject: Re: Kernel config problem with 4.6-STABLE... In-Reply-To: <000001c22d4c$6a74a930$fb00000a@promethium> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I ran into a similar problem after a cvsup the other day. I found that by doing this: cd /usr/src/share make install I could then build the kernel. The errors I received: "/source/sys/modules/accf_data/../../conf/kmod.mk", line 196: Could not find bsd.links.mk make: fatal errors encountered -- cannot continue *** Error code 1 Stop in /source/sys/modules. *** Error code 1 Stop in /source/sys/compile/LULLY2. Good luck! Nicholas At 12:42 AM 7/17/2002 -0400, Mark D wrote: >I CVSup'd to 4.6-STABLE today and after a buildworld I tried to make my >custom kernel (that I've made a dozen times - and no the hardware hasn't >changed) and received this error (below). I tried it again after a make >clean and still ran into this. Google wasn't too much help. If anyone >has any suggestions I'd greatly appreciate a response (I'm not >subscribed to -stable, so if it's not too much trouble, would you >respond to this address ;) > > > > > >- >Mark D > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 12:30:17 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B10CF37B422 for ; Wed, 17 Jul 2002 12:30:11 -0700 (PDT) Received: from I-Sphere.COM (shell.i-sphere.com [209.249.146.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBCF243E31 for ; Wed, 17 Jul 2002 12:30:10 -0700 (PDT) (envelope-from fasty@shell.i-sphere.com) Received: from shell.i-sphere.com (fasty@localhost [127.0.0.1]) by I-Sphere.COM (8.12.3/8.12.3) with ESMTP id g6HJUcus052757; Wed, 17 Jul 2002 12:30:38 -0700 (PDT) (envelope-from fasty@shell.i-sphere.com) Received: (from fasty@localhost) by shell.i-sphere.com (8.12.3/8.12.3/Submit) id g6HJUcvu052756; Wed, 17 Jul 2002 12:30:38 -0700 (PDT) Date: Wed, 17 Jul 2002 12:30:38 -0700 From: faSty To: Kevin Oberman Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Possible problems with cvsup14.freebsd.org Message-ID: <20020717193038.GB52553@i-sphere.com> References: <20020717180401.8031D5D06@ptavv.es.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020717180401.8031D5D06@ptavv.es.net> User-Agent: Mutt/1.4i X-Virus-Scanned: by amavisd-milter (http://amavis.org/) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG try cvsup10.freebsd.org. they are rieable cvs server. On Wed, Jul 17, 2002 at 11:04:01AM -0700, Kevin Oberman wrote: > I have been updating from many months from cvsup14 but I have had no > updates to src-all with the RELENG_4 tag for at least two days. Seemed > VERY unlikely! > > So I just run another cvsup from cvsup3 and got a VERY large number > of changes. Seems like something might be broken at cvsup14. But it's > not totally dead as I have been getting port updates from cvsup14 just > fine. As I final check, I cvsuped my ports from cvsup3 and got only a > few changes. So it looks like something is wrong with its src-all > mirror. > > R. Kevin Oberman, Network Engineer > Energy Sciences Network (ESnet) > Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) > E-mail: oberman@es.net Phone: +1 510 486-8634 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 12:40:33 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCBD337B400 for ; Wed, 17 Jul 2002 12:40:30 -0700 (PDT) Received: from popmail.ct.lodgenet.com (mozart.lodgenet.com [204.124.122.253]) by mx1.FreeBSD.org (Postfix) with SMTP id 89B7543E77 for ; Wed, 17 Jul 2002 12:40:29 -0700 (PDT) (envelope-from johnp@lodgenet.com) Received: (qmail 55838 invoked from network); 17 Jul 2002 19:40:28 -0000 Received: from windoze.ct.lodgenet.com (HELO windoze.lodgenet.com) (10.0.122.50) by popmail.ct.lodgenet.com with SMTP; 17 Jul 2002 19:40:28 -0000 Message-Id: <5.1.0.14.2.20020717143529.00abad40@popmail.ct.lodgenet.com> X-Sender: johnp@popmail.ct.lodgenet.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Wed, 17 Jul 2002 14:40:26 -0500 To: stable@freebsd.org From: John Prince Subject: ATA-Atapi read_big Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello.. Not wanting to resurrect a dead horse, and please do not refer me to the ERATTA page... Is anyone else looking/still looking into this problem? Is Soren back yet? Thanks. --john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 14:15:54 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25EDB37B400 for ; Wed, 17 Jul 2002 14:15:51 -0700 (PDT) Received: from devil.stderror.at (chello212186175010.4.14.vie.surfer.at [212.186.175.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEE3143E4A for ; Wed, 17 Jul 2002 14:15:49 -0700 (PDT) (envelope-from pinhead@stderror.at) Received: by devil.stderror.at (Postfix, from userid 1000) id 0A28815620; Wed, 17 Jul 2002 23:27:54 +0000 (GMT) Date: Wed, 17 Jul 2002 23:27:53 +0000 From: Toni Schmidbauer To: stable@freebsd.org Cc: tm@it-austria.net Subject: tcp keepalive interval Message-ID: <20020717232753.GA51975@devil.stderror.at> Reply-To: toni@stderror.at Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="oyUTqETQ0mS9luUI" Content-Disposition: inline User-Agent: Mutt/1.3.99i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable hi, i was just wondering if its possible to tune the timeout interval a new tcp connection is held in the half-open state. under solaris you can tune tcp_ip_abort_cinterval and as far as i know under linux its tcp_syn_retries. i am using 4.6-stable. the only thing i found was: #define TCPTV_KEEP_INIT ( 75*hz) in /usr/src/sys/netinet/tcp_timer.h. but is this the only possibility?=20 thanks in advance toni --=20 Toni Schmidbauer "es gibt 2 dinge die sind unendlich - das universum und die menschliche dummheit. beim universum bin ich mir noch nicht ganz sicher." - a. einstein --oyUTqETQ0mS9luUI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9Nf15u/mjSj7RMocRAg6iAJ44jAfKjLPDIPgVhgrE10ejqe/LiACeMsmN m4eyM+sMlVlGl96+jD3q+xc= =7YKW -----END PGP SIGNATURE----- --oyUTqETQ0mS9luUI-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 15:15:20 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DCC337B400 for ; Wed, 17 Jul 2002 15:15:11 -0700 (PDT) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0C5743E6A for ; Wed, 17 Jul 2002 15:15:10 -0700 (PDT) (envelope-from bmah@employees.org) Received: from bmah.dyndns.org ([12.233.149.189]) by sccrmhc02.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020717221510.WNOM6023.sccrmhc02.attbi.com@bmah.dyndns.org>; Wed, 17 Jul 2002 22:15:10 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.5/8.12.5) with ESMTP id g6HMF9eU067863; Wed, 17 Jul 2002 15:15:09 -0700 (PDT) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.5/8.12.5/Submit) id g6HMF95d067862; Wed, 17 Jul 2002 15:15:09 -0700 (PDT) Message-Id: <200207172215.g6HMF95d067862@intruder.bmah.org> X-Mailer: exmh version 2.5+ 20020506 with nmh-1.0.4 To: John Prince Cc: stable@FreeBSD.ORG Subject: Re: ATA-Atapi read_big In-Reply-To: <5.1.0.14.2.20020717143529.00abad40@popmail.ct.lodgenet.com> References: <5.1.0.14.2.20020717143529.00abad40@popmail.ct.lodgenet.com> Comments: In-reply-to John Prince message dated "Wed, 17 Jul 2002 14:40:26 -0500." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_755113984P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Wed, 17 Jul 2002 15:15:08 -0700 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --==_Exmh_755113984P Content-Type: text/plain; charset=us-ascii If memory serves me right, John Prince wrote: > Not wanting to resurrect a dead horse, and > please do not refer me to the ERATTA page... > > Is anyone else looking/still looking into this problem? > Is Soren back yet? Did you see this patch posted to stable@? Message-id: <200207122338.aa27236@salmon.maths.tcd.ie> It was committed three days ago as rev. 1.46.2.14 of src/sys/dev/ata/atapi-all.c. Does a more recent 4-STABLE build work for you now? Bruce. --==_Exmh_755113984P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) Comment: Exmh version 2.5+ 20020506 iD8DBQE9Nexs2MoxcVugUsMRAjn5AJ99k0Y+5GpqfTPNW9S86usX6kmHMACcDeN6 Hh2faTMZMhftfyp8ICnalR4= =W7Uu -----END PGP SIGNATURE----- --==_Exmh_755113984P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 15:22:35 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A3E437B400 for ; Wed, 17 Jul 2002 15:22:29 -0700 (PDT) Received: from drugs.dv.isc.org (drugs.dv.isc.org [130.155.191.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9669843E4A for ; Wed, 17 Jul 2002 15:22:27 -0700 (PDT) (envelope-from marka@drugs.dv.isc.org) Received: from drugs.dv.isc.org (localhost [127.0.0.1]) by drugs.dv.isc.org (8.12.5/8.12.5) with ESMTP id g6HMMJJe085318; Thu, 18 Jul 2002 08:22:22 +1000 (EST) (envelope-from marka@drugs.dv.isc.org) Message-Id: <200207172222.g6HMMJJe085318@drugs.dv.isc.org> To: Tai-hwa Liang Cc: freebsd-stable@FreeBSD.ORG From: Mark.Andrews@isc.org Subject: Re: slow ssh connection speed(bind problem?) In-reply-to: Your message of "Wed, 17 Jul 2002 22:16:41 +0800." <20020717214655.R51546-100000@www.mmlab.cse.yzu.edu.tw> Date: Thu, 18 Jul 2002 08:22:19 +1000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Hi, > > After cvsupped to the latest version of RELENG_4 this morning, I > found that the sshd on the newly built system takes more time during ssh > connection handshaking: > > some.host.on.lan> ssh -vvv newly.built.releng.4.server > . > . > . > debug1: SSH2_MSG_NEWKEYS received > debug1: done: ssh_kex2. > debug1: send SSH2_MSG_SERVICE_REQUEST > debug1: service_accept: ssh-userauth > debug1: got SSH2_MSG_SERVICE_ACCEPT # stuck about 1 minute here > . > . > > Server debug log: > > . > . > debug1: newkeys: mode 0 > debug1: SSH2_MSG_NEWKEYS received > debug1: KEX done > debug3: Trying to reverse map address 192.168.0.9. # stuck here > . > . > > > Both of the client and server run OpenSSH-3.4p1. Neither the > server nor the client has named enabled. > > I'm pretty sure that there is *no* change in any resolv related > configuration file on newly.built.releng.4.server: > > /etc/hosts > ::1 localhost localhost.my.domain > 127.0.0.1 localhost.my.domain localhost > 192.168.0.12 newly.built.releng.4.server test > > /etc/resolv.conf: > domain my.domain. > search my.domain. > nameserver 192.168.0.1 > > /etc/host.conf: > > # First try the /etc/hosts file > hosts > # Now try the nameserver next. > bind > # If you have YP/NIS configured, uncomment the next line > # nis > > However, the sshd seems being blocked at canohost.c:77 for about > 65 seconds: > > $OpenBSD: canohost.c,v 1.32 2002/06/11 08:11:45 itojun Exp $ > . > . > . > /* Map the IP address to a host name. */ > if (getnameinfo((struct sockaddr *)&from, fromlen, name, > sizeof(name), NULL, 0, NI_NAMEREQD) != 0) { > /* Host name not found. Use ip address. */ > log("Could not reverse map address %.100s.", ntop); > return xstrdup(ntop); > } > > Furthermore, if I turned on log_in_vain on the server side, > there would be several lines of "Connection attempt to UDP 127.0.0.1:1073 > from 127.0.0.1:53" appended to server log during client connection. Well are you serving the RFC 1918 address range you are using or are you depending upon the over loaded servers on the Internet to answer you leaked queries? If you are using RFC 1918 address and are using the DNS you should be serving the appropriate address range. Even a empty zone (SOA and NS record only) will do to stop the queries leaking and speed up the response. > I'm wondering whether there was any bind(especially getnameinfo()) > related changes in recent RELENG_4. Or did I miss any sshd_config related > knobs? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Mark Andrews, Internet Software Consortium 1 Seymour St., Dundas Valley, NSW 2117, Australia PHONE: +61 2 9871 4742 INTERNET: Mark.Andrews@isc.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 15:28:51 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DED8137B400 for ; Wed, 17 Jul 2002 15:28:48 -0700 (PDT) Received: from obsidian.sentex.ca (obsidian.sentex.ca [64.7.128.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54CBE43E31 for ; Wed, 17 Jul 2002 15:28:48 -0700 (PDT) (envelope-from freebsd@coal.sentex.ca) Received: from plebeian (pyroxene.sentex.ca [199.212.134.18]) (authenticated bits=0) by obsidian.sentex.ca (8.12.5/8.12.4) with ESMTP id g6HMSlmV053317 for ; Wed, 17 Jul 2002 18:28:47 -0400 (EDT) (envelope-from freebsd@coal.sentex.ca) Date: Wed, 17 Jul 2002 18:31:02 -0400 From: Damian Gerow X-Mailer: The Bat! (v1.60q) Organization: Sentex Communications X-Priority: 3 (Normal) Message-ID: <11422142369.20020717183102@sentex.net> To: freebsd-stable@freebsd.org Subject: CheckMail option in sshd_config MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: By Sentex Communications (obsidian/20020220) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG With the recent SSH commits to -STABLE, sshd_config has lost the CheckMail option. Users can be notified whenever new mail arrives by specifying 'biff y', but what about on first login? I can't seem to find anything that will tell you if you have new/old mail when you first log in. - Damian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 15:54:48 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E68FC37B400 for ; Wed, 17 Jul 2002 15:54:45 -0700 (PDT) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AD3843E65 for ; Wed, 17 Jul 2002 15:54:45 -0700 (PDT) (envelope-from bmah@employees.org) Received: from bmah.dyndns.org ([12.233.149.189]) by sccrmhc02.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020717225444.YIQT6023.sccrmhc02.attbi.com@bmah.dyndns.org> for ; Wed, 17 Jul 2002 22:54:44 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.5/8.12.5) with ESMTP id g6HMsheU068226 for ; Wed, 17 Jul 2002 15:54:43 -0700 (PDT) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.5/8.12.5/Submit) id g6HMshIx068225; Wed, 17 Jul 2002 15:54:43 -0700 (PDT) Message-Id: <200207172254.g6HMshIx068225@intruder.bmah.org> X-Mailer: exmh version 2.5+ 20020506 with nmh-1.0.4 To: stable@FreeBSD.ORG Subject: Re: FreeBSD 4.6.1 RC1 (i386) In-Reply-To: <20020717103822.C62004@freebsdmall.com> References: <20020717103822.C62004@freebsdmall.com> Comments: In-reply-to Murray Stokely message dated "Wed, 17 Jul 2002 10:38:22 -0700." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_988821504P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Wed, 17 Jul 2002 15:54:43 -0700 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --==_Exmh_988821504P Content-Type: text/plain; charset=us-ascii If memory serves me right, Murray Stokely wrote: > 4.6.1 RC1 (i386) is available now on the major FreeBSD FTP sites. > This is currently only available for net installs. Ports, packages, > and documentation are not available. An ISO image will be created for > RC2 with full packages. This RC was created before the OpenSSH merge > (thanks DES!) but could still certainly use some testing of the major > BIND update and assorted fixes to sendmail, ktrace, etc.. I should mention that the draft release notes (which weren't built for the 4.6.1-RC1 snapshot) can be found on the RELNOTESng snapshot page. Bruce. --==_Exmh_988821504P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) Comment: Exmh version 2.5+ 20020506 iD8DBQE9NfWz2MoxcVugUsMRAo4sAJ9P7n5DyFQWbMynTt+rz/53eIrhtgCfeuUd NzVTX7loNnIT8GGWGjHwkpk= =NAnh -----END PGP SIGNATURE----- --==_Exmh_988821504P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 16: 8:51 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7646D37B4CE for ; Wed, 17 Jul 2002 16:08:38 -0700 (PDT) Received: from bunrab.catwhisker.org (adsl-63-193-123-122.dsl.snfc21.pacbell.net [63.193.123.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id C585843E65 for ; Wed, 17 Jul 2002 16:08:30 -0700 (PDT) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (localhost [127.0.0.1]) by bunrab.catwhisker.org (8.12.5/8.12.5) with ESMTP id g6HN8QpI002366; Wed, 17 Jul 2002 16:08:26 -0700 (PDT) (envelope-from david@bunrab.catwhisker.org) Received: (from david@localhost) by bunrab.catwhisker.org (8.12.5/8.12.5/Submit) id g6HN8QEI002365; Wed, 17 Jul 2002 16:08:26 -0700 (PDT) Date: Wed, 17 Jul 2002 16:08:26 -0700 (PDT) From: David Wolfskill Message-Id: <200207172308.g6HN8QEI002365@bunrab.catwhisker.org> To: oberman@es.net, stable@FreeBSD.ORG Subject: Re: Possible problems with cvsup14.freebsd.org In-Reply-To: <20020717180401.8031D5D06@ptavv.es.net> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >Date: Wed, 17 Jul 2002 11:04:01 -0700 >From: "Kevin Oberman" >I have been updating from many months from cvsup14 but I have had no >updates to src-all with the RELENG_4 tag for at least two days. Seemed >VERY unlikely! Indeed -- I've been using cvsup14 for quite a while (almost a year), and have not seen a problem like that at all. >So I just run another cvsup from cvsup3 and got a VERY large number >of changes. Seems like something might be broken at cvsup14. But it's >not totally dead as I have been getting port updates from cvsup14 just >fine. As I final check, I cvsuped my ports from cvsup3 and got only a >few changes. So it looks like something is wrong with its src-all >mirror. Then again, I use it to update my local FreeBSD CVS repository, so my usage is a little different. In any case, I've been getting the expected changes, routinely. Cheers, david (links to my resume at http://www.catwhisker.org/~david) -- David H. Wolfskill david@catwhisker.org My reluctance to use or support Microsoft products is a direct consequence of my desire to use tools that work properly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 16: 9: 0 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40DAD37B412 for ; Wed, 17 Jul 2002 16:08:57 -0700 (PDT) Received: from wall.polstra.com (wall-gw.polstra.com [206.213.73.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A70243E31 for ; Wed, 17 Jul 2002 16:08:56 -0700 (PDT) (envelope-from jdp@polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.11.3/8.11.3) with ESMTP id g6HN8pD63645; Wed, 17 Jul 2002 16:08:51 -0700 (PDT) (envelope-from jdp@vashon.polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.12.4/8.12.4/Submit) id g6HN8pRc018988; Wed, 17 Jul 2002 16:08:51 -0700 (PDT) (envelope-from jdp) Date: Wed, 17 Jul 2002 16:08:51 -0700 (PDT) Message-Id: <200207172308.g6HN8pRc018988@vashon.polstra.com> To: stable@freebsd.org From: John Polstra Cc: oberman@es.net Subject: Re: Possible problems with cvsup14.freebsd.org In-Reply-To: <20020717180401.8031D5D06@ptavv.es.net> References: <20020717180401.8031D5D06@ptavv.es.net> Organization: Polstra & Co., Seattle, WA Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In article <20020717180401.8031D5D06@ptavv.es.net>, Kevin Oberman wrote: > I have been updating from many months from cvsup14 but I have had no > updates to src-all with the RELENG_4 tag for at least two days. Seemed > VERY unlikely! > > So I just run another cvsup from cvsup3 and got a VERY large number > of changes. Seems like something might be broken at cvsup14. But it's > not totally dead as I have been getting port updates from cvsup14 just > fine. As I final check, I cvsuped my ports from cvsup3 and got only a > few changes. So it looks like something is wrong with its src-all > mirror. Could you please report this to cvsup14's maintainer, ? By the way, all of the CVSup mirror site maintainers are listed in the FreeBSD Handbook here: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html#CVSUP-MIRRORS Thanks, John -- John Polstra John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 16:11:55 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1407737B400 for ; Wed, 17 Jul 2002 16:11:53 -0700 (PDT) Received: from wall.polstra.com (wall-gw.polstra.com [206.213.73.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EBEB43E4A for ; Wed, 17 Jul 2002 16:11:52 -0700 (PDT) (envelope-from jdp@polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.11.3/8.11.3) with ESMTP id g6HNBoD63688; Wed, 17 Jul 2002 16:11:50 -0700 (PDT) (envelope-from jdp@vashon.polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.12.4/8.12.4/Submit) id g6HNBnsf019010; Wed, 17 Jul 2002 16:11:49 -0700 (PDT) (envelope-from jdp) Date: Wed, 17 Jul 2002 16:11:49 -0700 (PDT) Message-Id: <200207172311.g6HNBnsf019010@vashon.polstra.com> To: stable@freebsd.org From: John Polstra Cc: fasty@i-sphere.com Subject: Re: Possible problems with cvsup14.freebsd.org In-Reply-To: <20020717193038.GB52553@i-sphere.com> References: <20020717180401.8031D5D06@ptavv.es.net> <20020717193038.GB52553@i-sphere.com> Organization: Polstra & Co., Seattle, WA Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In article <20020717193038.GB52553@i-sphere.com>, faSty wrote: > > try cvsup10.freebsd.org. they are rieable cvs server. They are _all_ reliable, but that doesn't mean there are never ever any problems. Please, if you suspect a problem with a mirror site then find the address of its maintainer in the FreeBSD Handbook (section A.6.7 currently) and let him know. Thanks, John -- John Polstra John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 16:14: 9 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9197537B400 for ; Wed, 17 Jul 2002 16:14:06 -0700 (PDT) Received: from dogme.burningman.com (ns3.burningman.com [66.180.227.135]) by mx1.FreeBSD.org (Postfix) with SMTP id 37BC143E5E for ; Wed, 17 Jul 2002 16:14:06 -0700 (PDT) (envelope-from glen@burningman.com) Received: (qmail 9055 invoked by uid 89); 17 Jul 2002 23:19:16 -0000 Received: from localhost.burningman.com (HELO burningman.com) (127.0.0.1) by localhost.burningman.com with SMTP; 17 Jul 2002 23:19:16 -0000 Message-ID: <3D35FEF7.3010500@burningman.com> Date: Wed, 17 Jul 2002 16:34:15 -0700 From: Glen Mehn User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.0) Gecko/20020530 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Damian Gerow Cc: freebsd-stable@freebsd.org Subject: Re: CheckMail option in sshd_config References: <11422142369.20020717183102@sentex.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: localhost.burningman.com 1.6.2 0/1000/N Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Damian Gerow wrote: >With the recent SSH commits to -STABLE, sshd_config has lost the CheckMail >option. Users can be notified whenever new mail arrives by specifying 'biff >y', but what about on first login? I can't seem to find anything that will >tell you if you have new/old mail when you first log in. > > - Damian > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-stable" in the body of the message > > UseLogin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 17:11:39 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C94C37B400 for ; Wed, 17 Jul 2002 17:11:36 -0700 (PDT) Received: from postal2.es.net (postal2.es.net [198.128.3.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CF1943E5E for ; Wed, 17 Jul 2002 17:11:35 -0700 (PDT) (envelope-from oberman@es.net) Received: from ptavv.es.net ([198.128.4.29]) by postal2.es.net (Postal Node 2) with ESMTP id GQF37091; Wed, 17 Jul 2002 17:11:27 -0700 Received: from ptavv (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id 258135D03; Wed, 17 Jul 2002 17:11:34 -0700 (PDT) To: John Polstra Cc: stable@freebsd.org Subject: Re: Possible problems with cvsup14.freebsd.org In-reply-to: Your message of "Wed, 17 Jul 2002 16:08:51 PDT." <200207172308.g6HN8pRc018988@vashon.polstra.com> Date: Wed, 17 Jul 2002 17:11:34 -0700 From: "Kevin Oberman" Message-Id: <20020718001134.258135D03@ptavv.es.net> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG John, David, and all who replied, In the unforgettable words of Emily Littella, "Never mind." I found a slight error in my SUP file that was causing the problem. At some time in the past I appear to have updated the system to RELEASE and have edited one of my SUP files accordingly. No patches to RELEASE meant no updates to src-all. Remove the offending "_6" and it works fine. Totally embarrassed, R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 18:29:47 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 391F737B400 for ; Wed, 17 Jul 2002 18:29:45 -0700 (PDT) Received: from www.mmlab.cse.yzu.edu.tw (www.mmlab.cse.yzu.edu.tw [140.138.145.166]) by mx1.FreeBSD.org (Postfix) with SMTP id E96F543E58 for ; Wed, 17 Jul 2002 18:29:43 -0700 (PDT) (envelope-from avatar@www.mmlab.cse.yzu.edu.tw) Received: (qmail 53928 invoked from network); 18 Jul 2002 01:28:46 -0000 Received: from www.mmlab.cse.yzu.edu.tw (@140.138.145.166) by www.mmlab.cse.yzu.edu.tw with SMTP; 18 Jul 2002 01:28:46 -0000 Date: Thu, 18 Jul 2002 09:28:46 +0800 (CST) From: Tai-hwa Liang To: Chris Johnson Cc: freebsd-stable@FreeBSD.org Subject: Re: slow ssh connection speed(bind problem?) In-Reply-To: <20020717143012.GA19247@palomine.net> Message-ID: <20020718091734.E53886-100000@www.mmlab.cse.yzu.edu.tw> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 17 Jul 2002, Chris Johnson wrote: > On Wed, Jul 17, 2002 at 10:16:41PM +0800, Tai-hwa Liang wrote: > > After cvsupped to the latest version of RELENG_4 this morning, I > > found that the sshd on the newly built system takes more time during ssh > > connection handshaking: > > I've found that this happens on some boxes but not others, both with the new > OpenSSH-3.4p1 in the base system and with the openssh-portable in the ports. I > haven't been able to figure why it happens only on some boxes and not others. According to my testing result, such resolving problem only happens on sshd with "UsePrivilegeSeparation" turned on. Maybe sshd just chrooted to /var/empty at the first time and was not able to find /var/empty/etc/resolv.conf when doing reverse address mapping later. > > One solution I've found is this: > > # chflags noschg /var/empty > # mkdir /var/empty/etc > # cp /etc/resolv.conf /var/empty/etc > # chflags schg /var/empty That's did the trick. A working /var/empty/etc/resolv.conf did solve the UsePrivilegeSeparation chrooted issue. However, the same problem does not happen on another Linux box with portable OpenSSH-3.4p1 installed.... > > I don't know if there are security (or any other) implications to this, but it Maybe you'd like change the last command to "chflags -R schg /var/empty" to protect your /var/empty/etc/*. > fixes the problem in any case. > > Chris Johnson > Thanks a lot for your enlighten. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 18:45:25 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0911237B400 for ; Wed, 17 Jul 2002 18:45:23 -0700 (PDT) Received: from www.mmlab.cse.yzu.edu.tw (www.mmlab.cse.yzu.edu.tw [140.138.145.166]) by mx1.FreeBSD.org (Postfix) with SMTP id DD7AB43E6A for ; Wed, 17 Jul 2002 18:45:21 -0700 (PDT) (envelope-from avatar@www.mmlab.cse.yzu.edu.tw) Received: (qmail 53986 invoked from network); 18 Jul 2002 01:45:20 -0000 Received: from www.mmlab.cse.yzu.edu.tw (@140.138.145.166) by www.mmlab.cse.yzu.edu.tw with SMTP; 18 Jul 2002 01:45:20 -0000 Date: Thu, 18 Jul 2002 09:45:20 +0800 (CST) From: Tai-hwa Liang To: Mark.Andrews@isc.org Cc: freebsd-stable@FreeBSD.ORG Subject: Re: slow ssh connection speed(bind problem?) In-Reply-To: <200207172222.g6HMMJJe085318@drugs.dv.isc.org> Message-ID: <20020718093542.Q53886-100000@www.mmlab.cse.yzu.edu.tw> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 18 Jul 2002 Mark.Andrews@isc.org wrote: [...] > > /etc/hosts > > ::1 localhost localhost.my.domain > > 127.0.0.1 localhost.my.domain localhost > > 192.168.0.12 newly.built.releng.4.server test > > > > /etc/resolv.conf: > > domain my.domain. > > search my.domain. > > nameserver 192.168.0.1 > > [...] > > Well are you serving the RFC 1918 address range you are using > or are you depending upon the over loaded servers on the Internet > to answer you leaked queries? If you are using RFC 1918 address > and are using the DNS you should be serving the appropriate > address range. Even a empty zone (SOA and NS record only) > will do to stop the queries leaking and speed up the response. We did setup a named listen on 192.168.0.1 and serves all RFC 1918 ranged addressing records(forward & reverse) since years ago. The slowdown only appeared after enabling UsePrivilegeSeparation in the latest OpenSSH-3.4p1. According to Chris Johnson's reply, a working /var/empty/etc/resolv.conf did solve the problem; however, a Linux box with OpenSSH-3.4p1 + UsePrivilegeSeparation with an empty /var/empty/(no resolv.conf) doesn't have such problem, though. > > > I'm wondering whether there was any bind(especially getnameinfo()) > > related changes in recent RELENG_4. Or did I miss any sshd_config related > > knobs? > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > -- > Mark Andrews, Internet Software Consortium > 1 Seymour St., Dundas Valley, NSW 2117, Australia > PHONE: +61 2 9871 4742 INTERNET: Mark.Andrews@isc.org > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 19: 4:14 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87FE337B400 for ; Wed, 17 Jul 2002 19:04:10 -0700 (PDT) Received: from drugs.dv.isc.org (drugs.dv.isc.org [130.155.191.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 066D643E64 for ; Wed, 17 Jul 2002 19:04:09 -0700 (PDT) (envelope-from marka@drugs.dv.isc.org) Received: from drugs.dv.isc.org (localhost [127.0.0.1]) by drugs.dv.isc.org (8.12.5/8.12.5) with ESMTP id g6I244Je000390; Thu, 18 Jul 2002 12:04:06 +1000 (EST) (envelope-from marka@drugs.dv.isc.org) Message-Id: <200207180204.g6I244Je000390@drugs.dv.isc.org> To: Tai-hwa Liang Cc: freebsd-stable@FreeBSD.ORG From: Mark.Andrews@isc.org Subject: Re: slow ssh connection speed(bind problem?) In-reply-to: Your message of "Thu, 18 Jul 2002 09:45:20 +0800." <20020718093542.Q53886-100000@www.mmlab.cse.yzu.edu.tw> Date: Thu, 18 Jul 2002 12:04:04 +1000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Thu, 18 Jul 2002 Mark.Andrews@isc.org wrote: > [...] > > > /etc/hosts > > > ::1 localhost localhost.my.domain > > > 127.0.0.1 localhost.my.domain localhost > > > 192.168.0.12 newly.built.releng.4.server test > > > > > > /etc/resolv.conf: > > > domain my.domain. > > > search my.domain. > > > nameserver 192.168.0.1 > > > > [...] > > > > Well are you serving the RFC 1918 address range you are using > > or are you depending upon the over loaded servers on the Internet > > to answer you leaked queries? If you are using RFC 1918 address > > and are using the DNS you should be serving the appropriate > > address range. Even a empty zone (SOA and NS record only) > > will do to stop the queries leaking and speed up the response. > We did setup a named listen on 192.168.0.1 and serves all RFC 1918 ranged > addressing records(forward & reverse) since years ago. The slowdown only > appeared after enabling UsePrivilegeSeparation in the latest OpenSSH-3.4p1. > > According to Chris Johnson's reply, a working /var/empty/etc/resolv.conf > did solve the problem; however, a Linux box with OpenSSH-3.4p1 + > UsePrivilegeSeparation with an empty /var/empty/(no resolv.conf) doesn't > have such problem, though. Well if resolv.conf is missing the resolver will try to contact a nameserver on the local machine via 127.0.0.1#53 or 0.0.0.0#53. > > > I'm wondering whether there was any bind(especially getnameinfo()) > > > related changes in recent RELENG_4. Or did I miss any sshd_config related > > > knobs? > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > -- > > Mark Andrews, Internet Software Consortium > > 1 Seymour St., Dundas Valley, NSW 2117, Australia > > PHONE: +61 2 9871 4742 INTERNET: Mark.Andrews@isc.org > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Mark Andrews, Internet Software Consortium 1 Seymour St., Dundas Valley, NSW 2117, Australia PHONE: +61 2 9871 4742 INTERNET: Mark.Andrews@isc.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 21:16:53 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D727A37B400 for ; Wed, 17 Jul 2002 21:16:51 -0700 (PDT) Received: from leafy.idv.tw (sw59-154-113.adsl.seed.net.tw [61.59.154.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAEF743E4A for ; Wed, 17 Jul 2002 21:16:45 -0700 (PDT) (envelope-from leafy@leafy.idv.tw) Received: (from root@localhost) by leafy.idv.tw (8.12.5/8.12.3) id g6I4GiK5000192 for freebsd-stable@freebsd.org; Thu, 18 Jul 2002 12:16:44 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: from leafy.idv.tw (localhost [127.0.0.1]) by leafy.idv.tw (8.12.5/8.12.3av) with ESMTP id g6I4Ge0B000184 for ; Thu, 18 Jul 2002 12:16:40 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.5/8.12.5/Submit) id g6I4GeIo000183 for freebsd-stable@FreeBSD.ORG; Thu, 18 Jul 2002 12:16:40 +0800 (CST) Date: Thu, 18 Jul 2002 12:16:40 +0800 From: JY To: freebsd-stable@freebsd.org Subject: SSHD for protocol version 2 changed? Message-ID: <20020718041640.GA169@leafy.idv.tw> Mail-Followup-To: freebsd-stable@FreeBSD.ORG References: <20020718093542.Q53886-100000@www.mmlab.cse.yzu.edu.tw> <200207180204.g6I244Je000390@drugs.dv.isc.org> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <200207180204.g6I244Je000390@drugs.dv.isc.org> User-Agent: Mutt/1.5.1i X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Did a buildworld just now with newest source. But upon reboot, my putty can no longer login for protocol 2. After typing in password, it caused a GPF and died. Protocol version 1 is ok though. Is there anything changed in protocol version 2 for sshd? Or is there anything I missed in the configuration files? Thanks in advance Jiawei YE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 21:34:40 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FA4037B400 for ; Wed, 17 Jul 2002 21:34:38 -0700 (PDT) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0A2643E64 for ; Wed, 17 Jul 2002 21:34:35 -0700 (PDT) (envelope-from doconnor@gsoft.com.au) Received: from localhost (localhost [127.0.0.1]) by cain.gsoft.com.au (8.12.4/8.12.3) with ESMTP id g6I4YUZL014264; Thu, 18 Jul 2002 14:04:32 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Subject: Re: SSHD for protocol version 2 changed? From: "Daniel O'Connor" To: JY Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: <20020718041640.GA169@leafy.idv.tw> References: <20020718093542.Q53886-100000@www.mmlab.cse.yzu.edu.tw> <200207180204.g6I244Je000390@drugs.dv.isc.org> <20020718041640.GA169@leafy.idv.tw> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.8 Date: 18 Jul 2002 14:04:30 +0930 Message-Id: <1026966873.18062.26.camel@chowder.gsoft.com.au> Mime-Version: 1.0 X-Scanned-By: MIMEDefang 2.6 (www dot roaringpenguin dot com slash mimedefang) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 2002-07-18 at 13:46, JY wrote: > Did a buildworld just now with newest source. But upon reboot, my putty can > no longer login for protocol 2. After typing in password, it caused a GPF and > died. Protocol version 1 is ok though. Is there anything changed in > protocol version 2 for sshd? Or is there anything I missed in the > configuration files? Perhaps you should try a newer version of putty? GPF'ing on a connection is a pretty bad bug. -- 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 GPG Fingerprint - 9A8C 569F 685A D928 5140 AE4B 319B 41F4 5D17 FDD5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Jul 17 23:35:39 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D58CD37B400 for ; Wed, 17 Jul 2002 23:35:35 -0700 (PDT) Received: from gate.consol.de (gate.consol.de [194.221.87.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC2DD43E9B for ; Wed, 17 Jul 2002 23:35:33 -0700 (PDT) (envelope-from Thorsten.Greiner@consol.de) Received: from imap.consol.de (imap.consol.de [10.250.0.113]) by gate.consol.de (8.11.6/8.11.6) with ESMTP id g6I6ZWB67850 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified NO) for ; Thu, 18 Jul 2002 08:35:32 +0200 (CEST) (envelope-from Thorsten.Greiner@consol.de) Received: from msgsrv2.bb.consol.de (vscanner.bb.consol.de [10.250.0.120]) by imap.consol.de (8.12.2/8.12.2) with ESMTP id g6I6ZWtp012222 for ; Thu, 18 Jul 2002 08:35:32 +0200 (CEST) (envelope-from thorsten@consol.de) Received: (from www@localhost) by msgsrv2.bb.consol.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) id IAA17265 for freebsd-stable@freebsd.org; Thu, 18 Jul 2002 08:35:31 +0200 From: Thorsten.Greiner@consol.de X-Authentication-Warning: msgsrv2.bb.consol.de: www set sender to thorsten@consol.de using -f To: freebsd-stable@freebsd.org Subject: bsd.init.mk ? Message-ID: <1026974131.3d3661b3c9a1c@intranet.consol.de> Date: Thu, 18 Jul 2002 08:35:31 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP IMAP webmail program 2.2.4 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, after cvsuping (just about now from cvsup3.de.freebsd.org) I'm having problems during "make depend": rm -f .newdep make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs mkdep -a -f .newdep -O -pipe -march=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfilter -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 make -V SFILES -V SYSTEM_SFILES | xargs env MKDEP_CPP="cc -E" mkdep -a -f .newdep -x assembler-with-cpp -DLOCORE -O -pipe -march=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfilter -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 rm -f .depend mv -f .newdep .depend cd ../../modules ; env MAKEOBJDIRPREFIX=/usr/src/sys/compile/TYBALT/modules MODULES_OVERRIDE="linux sound/snd sound/pcm sound/driver/ich linprocfs smbfs libiconv libmchain ipfw vn union cd9660 msdos" MACHINE=i386 make obj ; env MAKEOBJDIRPREFIX=/usr/src/sys/compile/TYBALT/modules MODULES_OVERRIDE="linux sound/snd sound/pcm sound/driver/ich linprocfs smbfs libiconv libmchain ipfw vn union cd9660 msdos" MACHINE=i386 make depend ===> linux "/usr/src/sys/modules/linux/../../conf/kmod.mk", line 63: Could not find bsd.init.mk "/usr/src/sys/modules/linux/../../conf/kmod.mk", line 190: Could not find bsd.links.mk make: fatal errors encountered -- cannot continue *** Error code 1 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/src/sys/compile/TYBALT. The complaint is valid, there is no "bsd.init.mk" or "bsd.links.mk" in /usr/share/mk. I have seen no "heads up" or something like that. I have removed the compile directory and rerun "config" to no avail. Any hints? Regards -Thorsten To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 0: 0: 0 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBC0237B400 for ; Wed, 17 Jul 2002 23:59:54 -0700 (PDT) Received: from precipice.4gh.net (washdc3-ar2-4-64-221-151.washdc3.elnk.dsl.genuity.net [4.64.221.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABB8443E3B for ; Wed, 17 Jul 2002 23:59:53 -0700 (PDT) (envelope-from stuartb@4gh.net) Received: from localhost (stuartb@localhost) by precipice.4gh.net (8.11.6/8.11.6) with ESMTP id g6I6xpA34790 for ; Thu, 18 Jul 2002 02:59:51 -0400 (EDT) (envelope-from stuartb@4gh.net) Date: Thu, 18 Jul 2002 02:59:50 -0400 (EDT) From: Stuart Barkley To: freebsd-stable@FreeBSD.ORG Subject: Re: ATA-Atapi read_big In-Reply-To: <200207172215.g6HMF95d067862@intruder.bmah.org> Message-ID: <20020718023024.F32164-200000@precipice.4gh.net> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-904446463-1026975590=:32164" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-904446463-1026975590=:32164 Content-Type: TEXT/PLAIN; charset=US-ASCII On Wed, 17 Jul 2002, Bruce A. Mah wrote: > If memory serves me right, John Prince wrote: > > > Not wanting to resurrect a dead horse, and > > please do not refer me to the ERATTA page... > > > > Is anyone else looking/still looking into this problem? > > Is Soren back yet? > > Did you see this patch posted to stable@? > > Message-id: <200207122338.aa27236@salmon.maths.tcd.ie> > > It was committed three days ago as rev. 1.46.2.14 of > src/sys/dev/ata/atapi-all.c. Does a more recent 4-STABLE build work > for you now? I continue to see the "acd0: READ_BIG - ILLEGAL REQUEST asc=0x64 ascq=0x00 error=0x00" problems with everything I've tried on my test system. This system did not exhibit this problem with 4.5-RELEASE. The problem exists in 4.6-RELEASE. The problem exists in 4.6-RELEASE with patched ata-all.c containing the misplaced splx() fix (1.50.2.36.2.1). The problem exists in 4.6-RELEASE with patched ata-all.c containing the misplaced splx() fix (1.50.2.36.2.1) and the patched atapi-all.c (1.46.2.14) mentioned by Bruce. The problem exists in 4.6-RELEASE (tag=RELENG_4_6) cvsuped Wednesday evening. The problem exists in 4-STABLE (tag=RELENG_4 date=2002.07.16.00.00.00, more recent cvsup dates failed to build). As best I can tell, nothing has helped this problem for my systems. This system is a 6+ year old 133 MHz Pentium, single processor, Digital system. It has two 2GB SCSI drives + an IDE Creative CD-ROM drive. A full dmesg from the 4-STABLE boot is attached. Also, note that I've never had DMA mode working for ata on my machines, but I haven't tried hard to get that working previously. PIO mode has worked adequately for my needs. --0-904446463-1026975590=:32164 Content-Type: TEXT/PLAIN; charset=US-ASCII; name="dmesg.nick.stable" Content-Transfer-Encoding: BASE64 Content-ID: <20020718025950.S32164@precipice.4gh.net> Content-Description: Content-Disposition: attachment; filename="dmesg.nick.stable" Q29weXJpZ2h0IChjKSAxOTkyLTIwMDIgVGhlIEZyZWVCU0QgUHJvamVjdC4N CkNvcHlyaWdodCAoYykgMTk3OSwgMTk4MCwgMTk4MywgMTk4NiwgMTk4OCwg MTk4OSwgMTk5MSwgMTk5MiwgMTk5MywgMTk5NA0KCVRoZSBSZWdlbnRzIG9m IHRoZSBVbml2ZXJzaXR5IG9mIENhbGlmb3JuaWEuIEFsbCByaWdodHMgcmVz ZXJ2ZWQuDQpGcmVlQlNEIDQuNi1TVEFCTEUgIzA6IFRodSBKdWwgMTggMDE6 NDY6MTUgRURUIDIwMDINCiAgICBzdHVhcnRiQG5pY2suNGdoLm5ldDovdXNy L3N0YWJsZS9zcmMvc3lzL2NvbXBpbGUvR0VORVJJQw0KVGltZWNvdW50ZXIg Imk4MjU0IiAgZnJlcXVlbmN5IDExOTMxODIgSHoNCkNQVTogUGVudGl1bS9Q NTRDICgxMzIuMDAtTUh6IDU4Ni1jbGFzcyBDUFUpDQogIE9yaWdpbiA9ICJH ZW51aW5lSW50ZWwiICBJZCA9IDB4NTJjICBTdGVwcGluZyA9IDEyDQogIEZl YXR1cmVzPTB4MWJmPEZQVSxWTUUsREUsUFNFLFRTQyxNU1IsTUNFLENYOD4N CnJlYWwgbWVtb3J5ICA9IDgzODg2MDgwICg4MTkyMEsgYnl0ZXMpDQphdmFp bCBtZW1vcnkgPSA3NjU5MTEwNCAoNzQ3OTZLIGJ5dGVzKQ0KUHJlbG9hZGVk IGVsZiBrZXJuZWwgImtlcm5lbCIgYXQgMHhjMDRkNDAwMC4NCkludGVsIFBl bnRpdW0gZGV0ZWN0ZWQsIGluc3RhbGxpbmcgd29ya2Fyb3VuZCBmb3IgRjAw RiBidWcNCm1kMDogTWFsbG9jIGRpc2sNCm5weDA6IDxtYXRoIHByb2Nlc3Nv cj4gb24gbW90aGVyYm9hcmQNCm5weDA6IElOVCAxNiBpbnRlcmZhY2UNCnBj aWIwOiA8SG9zdCB0byBQQ0kgYnJpZGdlPiBvbiBtb3RoZXJib2FyZA0KcGNp MDogPFBDSSBidXM+IG9uIHBjaWIwDQpuY3IwOiA8bmNyIDUzYzgxMCBmYXN0 MTAgc2NzaT4gcG9ydCAweGVjMDAtMHhlY2ZmIG1lbSAweGZlZGZmZjAwLTB4 ZmVkZmZmZmYgaXJxIDExIGF0IGRldmljZSAxLjAgb24gcGNpMA0KaXNhYjA6 IDxJbnRlbCA4MjM3OElCIFBDSSB0byBJU0EgYnJpZGdlPiBhdCBkZXZpY2Ug Mi4wIG9uIHBjaTANCmlzYTA6IDxJU0EgYnVzPiBvbiBpc2FiMA0KcGNpMDog PHVua25vd24gY2FyZD4gKHZlbmRvcj0weDEyNWQsIGRldj0weDE5ODgpIGF0 IDYuMCBpcnEgMTANCmRlMDogPERpZ2l0YWwgMjExNDBBIEZhc3QgRXRoZXJu ZXQ+IHBvcnQgMHhlMDgwLTB4ZTBmZiBtZW0gMHhmZWRmZmU4MC0weGZlZGZm ZWZmIGlycSAxNSBhdCBkZXZpY2UgNy4wIG9uIHBjaTANCmRlMDogMjExNDBB IFsxMC0xMDBNYi9zXSBwYXNzIDIuMg0KZGUwOiBhZGRyZXNzIDAwOjQwOjA1 OmExOjdmOjA3DQpwY2kwOiA8QVRJIE1hY2g2NC1HUCBncmFwaGljcyBhY2Nl bGVyYXRvcj4gYXQgOC4wIGlycSA5DQpvcm0wOiA8T3B0aW9uIFJPTXM+IGF0 IGlvbWVtIDB4YzAwMDAtMHhjN2ZmZiwweGM4MDAwLTB4Y2JmZmYgb24gaXNh MA0KZmRjMDogPE5FQyA3MjA2NUIgb3IgY2xvbmU+IGF0IHBvcnQgMHgzZjAt MHgzZjUsMHgzZjcgaXJxIDYgZHJxIDIgb24gaXNhMA0KZmRjMDogRklGTyBl bmFibGVkLCA4IGJ5dGVzIHRocmVzaG9sZA0KZmQwOiA8MTQ0MC1LQiAzLjUi IGRyaXZlPiBvbiBmZGMwIGRyaXZlIDANCmF0YTAgYXQgcG9ydCAweDFmMC0w eDFmNywweDNmNiBpcnEgMTQgb24gaXNhMA0KYXRhMSBhdCBwb3J0IDB4MTcw LTB4MTc3LDB4Mzc2IGlycSAxNSBvbiBpc2EwDQphdGtiZGMwOiA8S2V5Ym9h cmQgY29udHJvbGxlciAoaTgwNDIpPiBhdCBwb3J0IDB4NjAsMHg2NCBvbiBp c2EwDQphdGtiZDA6IDxBVCBLZXlib2FyZD4gZmxhZ3MgMHgxIGlycSAxIG9u IGF0a2JkYzANCmtiZDAgYXQgYXRrYmQwDQpwc20wOiA8UFMvMiBNb3VzZT4g aXJxIDEyIG9uIGF0a2JkYzANCnBzbTA6IG1vZGVsIEludGVsbGlNb3VzZSwg ZGV2aWNlIElEIDMNCnZnYTA6IDxHZW5lcmljIElTQSBWR0E+IGF0IHBvcnQg MHgzYzAtMHgzZGYgaW9tZW0gMHhhMDAwMC0weGJmZmZmIG9uIGlzYTANCnNj MDogPFN5c3RlbSBjb25zb2xlPiBhdCBmbGFncyAweDEwMCBvbiBpc2EwDQpz YzA6IFZHQSA8MTYgdmlydHVhbCBjb25zb2xlcywgZmxhZ3M9MHgzMDA+DQpz aW8wIGF0IHBvcnQgMHgzZjgtMHgzZmYgaXJxIDQgZmxhZ3MgMHgxMCBvbiBp c2EwDQpzaW8wOiB0eXBlIDE2NTUwQQ0Kc2lvMSBhdCBwb3J0IDB4MmY4LTB4 MmZmIGlycSAzIG9uIGlzYTANCnNpbzE6IHR5cGUgMTY1NTBBDQpwcGMwOiA8 UGFyYWxsZWwgcG9ydD4gYXQgcG9ydCAweDM3OC0weDM3ZiBpcnEgNyBvbiBp c2EwDQpwcGMwOiBHZW5lcmljIGNoaXBzZXQgKE5JQkJMRS1vbmx5KSBpbiBD T01QQVRJQkxFIG1vZGUNCnBsaXAwOiA8UExJUCBuZXR3b3JrIGludGVyZmFj ZT4gb24gcHBidXMwDQpscHQwOiA8UHJpbnRlcj4gb24gcHBidXMwDQpscHQw OiBJbnRlcnJ1cHQtZHJpdmVuIHBvcnQNCnBwaTA6IDxQYXJhbGxlbCBJL08+ IG9uIHBwYnVzMA0KYWNkMDogQ0RST00gPENSRUFUSVZFIENEMzIzMUU+IGF0 IGF0YTAtc2xhdmUgQklPU1BJTw0KV2FpdGluZyAxNSBzZWNvbmRzIGZvciBT Q1NJIGRldmljZXMgdG8gc2V0dGxlDQpkZTA6IGVuYWJsaW5nIDEwMGJhc2VU WCBwb3J0DQpNb3VudGluZyByb290IGZyb20gdWZzOi9kZXYvZGEwczFhDQpk YTAgYXQgbmNyMCBidXMgMCB0YXJnZXQgMSBsdW4gMA0KZGEwOiA8SFAgQzMz MjVBIDUwMjA+IEZpeGVkIERpcmVjdCBBY2Nlc3MgU0NTSS0yIGRldmljZSAN CmRhMDogMTAuMDAwTUIvcyB0cmFuc2ZlcnMgKDEwLjAwME1Ieiwgb2Zmc2V0 IDgpLCBUYWdnZWQgUXVldWVpbmcgRW5hYmxlZA0KZGEwOiAyMDY5TUIgKDQy Mzg4MzYgNTEyIGJ5dGUgc2VjdG9yczogMjU1SCA2M1MvVCAyNjNDKQ0KZGEx IGF0IG5jcjAgYnVzIDAgdGFyZ2V0IDMgbHVuIDANCmRhMTogPEhQIEMzMzI1 QSA1MjkzPiBGaXhlZCBEaXJlY3QgQWNjZXNzIFNDU0ktMiBkZXZpY2UgDQpk YTE6IDEwLjAwME1CL3MgdHJhbnNmZXJzICgxMC4wMDBNSHosIG9mZnNldCA4 KSwgVGFnZ2VkIFF1ZXVlaW5nIEVuYWJsZWQNCmRhMTogMjA2OU1CICg0MjM4 ODM2IDUxMiBieXRlIHNlY3RvcnM6IDI1NUggNjNTL1QgMjYzQykNCklQIHBh Y2tldCBmaWx0ZXJpbmcgaW5pdGlhbGl6ZWQsIGRpdmVydCBkaXNhYmxlZCwg cnVsZS1iYXNlZCBmb3J3YXJkaW5nIGVuYWJsZWQsIGRlZmF1bHQgdG8gZGVu eSwgbG9nZ2luZyBkaXNhYmxlZA0K --0-904446463-1026975590=:32164-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 0: 5:41 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC64937B400 for ; Thu, 18 Jul 2002 00:05:39 -0700 (PDT) Received: from precipice.4gh.net (washdc3-ar2-4-64-221-151.washdc3.elnk.dsl.genuity.net [4.64.221.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id F011043E4A for ; Thu, 18 Jul 2002 00:05:38 -0700 (PDT) (envelope-from stuartb@4gh.net) Received: from localhost (stuartb@localhost) by precipice.4gh.net (8.11.6/8.11.6) with ESMTP id g6I75UL35323; Thu, 18 Jul 2002 03:05:30 -0400 (EDT) (envelope-from stuartb@4gh.net) Date: Thu, 18 Jul 2002 03:05:30 -0400 (EDT) From: Stuart Barkley To: Thorsten.Greiner@consol.de Cc: freebsd-stable@FreeBSD.ORG Subject: Re: bsd.init.mk ? In-Reply-To: <1026974131.3d3661b3c9a1c@intranet.consol.de> Message-ID: <20020718030136.B32164-100000@precipice.4gh.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 18 Jul 2002 Thorsten.Greiner@consol.de wrote: > after cvsuping (just about now from cvsup3.de.freebsd.org) I'm having problems during > "make depend": > [...] > > "/usr/src/sys/modules/linux/../../conf/kmod.mk", line 63: Could not find bsd.init.mk > "/usr/src/sys/modules/linux/../../conf/kmod.mk", line 190: Could not find bsd.links.mk > make: fatal errors encountered -- cannot continue > *** Error code 1 > [...] > > The complaint is valid, there is no "bsd.init.mk" or "bsd.links.mk" > in /usr/share/mk. > > I have seen no "heads up" or something like that. I have removed the > compile directory and rerun "config" to no avail. > > Any hints? I had to back up a little bit to build a -stable kernel. I used the following line in my cvsup file: *default release=cvs tag=RELENG_4 date=2002.07.16.00.00.00 This retrieves the version as of midnight July 16 (UTC time I assume). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 0:57:45 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C28B237B401; Thu, 18 Jul 2002 00:57:41 -0700 (PDT) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1C9D43E42; Thu, 18 Jul 2002 00:57:40 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: from srv1.cosmo-project.de (localhost [IPv6:::1]) by srv1.cosmo-project.de (8.12.3/8.12.3) with ESMTP id g6I7vW0i094332 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 18 Jul 2002 09:57:33 +0200 (CEST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by srv1.cosmo-project.de (8.12.3/8.12.3/Submit) with UUCP id g6I7vWaj094331; Thu, 18 Jul 2002 09:57:32 +0200 (CEST) (envelope-from andreas@klemm.gtn.com) Received: from titan.klemm.apsfilter.org (localhost.klemm.apsfilter.org [127.0.0.1]) by klemm.gtn.com (8.12.5/8.12.3) with ESMTP id g6I7uqkU037705; Thu, 18 Jul 2002 09:56:57 +0200 (CEST) (envelope-from andreas@titan.klemm.apsfilter.org) Received: (from andreas@localhost) by titan.klemm.apsfilter.org (8.12.5/8.12.3/Submit) id g6I7uqD3037704; Thu, 18 Jul 2002 09:56:52 +0200 (CEST) (envelope-from andreas) Date: Thu, 18 Jul 2002 09:56:52 +0200 From: Andreas Klemm To: stable@FreeBSD.ORG Cc: ru@FreeBSD.ORG, imp@FreeBSD.ORG Subject: etc/defaults/make.conf needs a fix asap because of INSTALL=-C Message-ID: <20020718075652.GA36564@titan.klemm.apsfilter.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Operating-System: FreeBSD 4.6-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular User-Agent: Mutt/1.5.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Our skeleton make.conf needs an urgent update. If you don't read /usr/src/UPDATING and copy and paste this skeleton file to /etc/make.conf you think, that its still possible to enable INSTALL=install -C in /etc/make.conf. This way I got some incomplete installed ports because I had to use "-ki" as a time saver to get the ports installed and my system working... Now having some time I found the real culprit. I will delete my PR, since first I thought the change in xinstall.c has been introduced too quickly, but then suddenly /etc/make.conf came into mind and I found the real source of my port mess ... Well I will have to install them again *sigh* ;-) Andreas /// -- Andreas Klemm /\/\/\/\/\/\/\/\/\/\/\ http://www.64bits.de < Powered by FreeBSD > http://www.apsfilter.org/ \ www.FreeBSD.org / http://people.FreeBSD.ORG/~andreas \/\/\/\/\/\/\/\/\/\/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 1:10:21 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F41937B400; Thu, 18 Jul 2002 01:10:17 -0700 (PDT) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id E618143E64; Thu, 18 Jul 2002 01:10:15 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: from srv1.cosmo-project.de (localhost [IPv6:::1]) by srv1.cosmo-project.de (8.12.3/8.12.3) with ESMTP id g6I8AD0i094499 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 18 Jul 2002 10:10:14 +0200 (CEST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by srv1.cosmo-project.de (8.12.3/8.12.3/Submit) with UUCP id g6I8ADas094498; Thu, 18 Jul 2002 10:10:13 +0200 (CEST) (envelope-from andreas@klemm.gtn.com) Received: from titan.klemm.apsfilter.org (localhost.klemm.apsfilter.org [127.0.0.1]) by klemm.gtn.com (8.12.5/8.12.3) with ESMTP id g6I85qkU038207; Thu, 18 Jul 2002 10:05:57 +0200 (CEST) (envelope-from andreas@titan.klemm.apsfilter.org) Received: (from andreas@localhost) by titan.klemm.apsfilter.org (8.12.5/8.12.3/Submit) id g6I85qAp038206; Thu, 18 Jul 2002 10:05:52 +0200 (CEST) (envelope-from andreas) Date: Thu, 18 Jul 2002 10:05:52 +0200 From: Andreas Klemm To: stable@FreeBSD.ORG Cc: ru@FreeBSD.ORG, imp@FreeBSD.ORG Subject: Re: etc/defaults/make.conf needs a fix asap because of INSTALL=-C Message-ID: <20020718080552.GA38153@titan.klemm.apsfilter.org> References: <20020718075652.GA36564@titan.klemm.apsfilter.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020718075652.GA36564@titan.klemm.apsfilter.org> X-Operating-System: FreeBSD 4.6-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular User-Agent: Mutt/1.5.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I updated my PR 40724, set status to analyzed and assigned it to ru. If ru doesn't have time, I'll take care of that little change in the make.conf profile. Andreas /// On Thu, Jul 18, 2002 at 09:56:52AM +0200, Andreas Klemm wrote: > Our skeleton make.conf needs an urgent update. > > If you don't read /usr/src/UPDATING and copy > and paste this skeleton file to /etc/make.conf > you think, that its still possible to enable > INSTALL=install -C > in /etc/make.conf. > > This way I got some incomplete installed ports > because I had to use "-ki" as a time saver to > get the ports installed and my system working... > > Now having some time I found the real culprit. > > I will delete my PR, since first I thought the > change in xinstall.c has been introduced too > quickly, but then suddenly /etc/make.conf came > into mind and I found the real source of my > port mess ... > > Well I will have to install them again *sigh* ;-) > > Andreas /// > > -- > Andreas Klemm /\/\/\/\/\/\/\/\/\/\/\ > http://www.64bits.de < Powered by FreeBSD > > http://www.apsfilter.org/ \ www.FreeBSD.org / > http://people.FreeBSD.ORG/~andreas \/\/\/\/\/\/\/\/\/\/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Andreas Klemm /\/\/\/\/\/\/\/\/\/\/\ http://www.64bits.de < Powered by FreeBSD > http://www.apsfilter.org/ \ www.FreeBSD.org / http://people.FreeBSD.ORG/~andreas \/\/\/\/\/\/\/\/\/\/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 1:11:13 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50D9737B405 for ; Thu, 18 Jul 2002 01:11:09 -0700 (PDT) Received: from koncom-utc.ukrtel.net (Koncom-UTC.ukrtel.net [195.5.25.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id C521243E65 for ; Thu, 18 Jul 2002 01:11:07 -0700 (PDT) (envelope-from alx@koncom-utc.ukrtel.net) Received: from koncom-utc.ukrtel.net (localhost [127.0.0.1]) by koncom-utc.ukrtel.net (8.12.5/8.12.5) with ESMTP id g6I8GBWW060851 for ; Thu, 18 Jul 2002 11:16:11 +0300 (EEST) (envelope-from alx@koncom-utc.ukrtel.net) Received: (from alx@localhost) by koncom-utc.ukrtel.net (8.12.5/8.12.5/Submit) id g6I8GB4k060849 for freebsd-stable@freebsd.org; Thu, 18 Jul 2002 11:16:11 +0300 (EEST) Date: Thu, 18 Jul 2002 11:16:11 +0300 (EEST) From: "Al.Chechet" Message-Id: <200207180816.g6I8GB4k060849@koncom-utc.ukrtel.net> To: freebsd-stable@freebsd.org Subject: freetype2 install problem Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've just built 4.6-STABLE. When attempting to install freetype2 from ports I've got some repeating messages on the stage "make install". It looks like uncompatible Makefile syntax: "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 46: Need an operator "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 48: Need an operator "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 59: Missing dependency operator "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 61: Need an operator Error expanding embedded variable. gmake: [install] Error 2 (ignored) install -c -o root -g wheel -m 444 /usr/ports/print/freetype2/work/freetype-2.1.2/builds/unix/ft2unix.h /usr/local/include/ft2build.h "/usr/ports/print/freetype2/work/freetype-2.1.2/Makefile", line 26: Need an operator "/usr/ports/print/freetype2/work/freetype-2.1.2/Makefile", line 28: Need an operator "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 46: Need an operator "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 48: Need an operator "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 59: Missing dependency operator "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 61: Need an operator Error expanding embedded variable. gmake: *** [install] Error 2 *** Error code 2 Thanks for any help To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 2: 7:20 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69ED637B400 for ; Thu, 18 Jul 2002 02:07:18 -0700 (PDT) Received: from ib.com.ua (ib.com.ua [217.144.67.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 450AB43E58 for ; Thu, 18 Jul 2002 02:07:16 -0700 (PDT) (envelope-from toha@ib.com.ua) Received: from ib.com.ua (localhost.ib.com.ua [127.0.0.1]) by ib.com.ua (8.12.5/8.12.5) with ESMTP id g6I956Ox074204 for ; Thu, 18 Jul 2002 12:05:06 +0300 (EEST) (envelope-from toha@ib.com.ua) Received: (from toha@localhost) by ib.com.ua (8.12.5/8.12.5/Submit) id g6I955Yu074202 for freebsd-stable@freebsd.org; Thu, 18 Jul 2002 12:05:05 +0300 (EEST) Date: Thu, 18 Jul 2002 12:05:05 +0300 (EEST) From: Anton Yudin Message-Id: <200207180905.g6I955Yu074202@ib.com.ua> To: freebsd-stable@freebsd.org Subject: smbfs + libiconv problems Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In freebsd 4.6 stable I successfuly mount shared resources with smbfs (as dynamic module or built-in). I successfuly use character sets recoding feature. But every directory with russian encoding looks like they are empty (really they are not empty). is this a known bug? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 2:19:59 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83F8B37B400 for ; Thu, 18 Jul 2002 02:19:55 -0700 (PDT) Received: from mail.droso.net (koala.droso.net [193.162.142.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16B9043E72 for ; Thu, 18 Jul 2002 02:19:55 -0700 (PDT) (envelope-from erwin@mail.droso.net) Received: from localhost (localhost [127.0.0.1]) by mail.droso.net (Postfix) with ESMTP id E45885BC1 for ; Thu, 18 Jul 2002 11:19:52 +0200 (CEST) Received: by mail.droso.net (Postfix, from userid 1001) id 5557D5BAE; Thu, 18 Jul 2002 11:19:51 +0200 (CEST) Date: Thu, 18 Jul 2002 11:19:51 +0200 From: Erwin Lansing To: freebsd-stable@freebsd.org Subject: -stable b0rked? Message-ID: <20020718111951.B11648@droso.net> Mime-Version: 1.0 Content-Type: application/pgp; x-action=sign; format=text Content-Disposition: inline; filename="msg.pgp" User-Agent: Mutt/1.2.5.1i X-Operating-System: FreeBSD/i386 4.6-STABLE X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 vale# cd /usr/src/sys/i386/conf/ vale# config VALE Don't forget to do a ``make depend'' Kernel build directory is ../../compile/VALE vale# cd ../../compile/VALE rm -f .newdep make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs mkdep -a -f .newdep -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfilter -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 make -V SFILES -V SYSTEM_SFILES | xargs env MKDEP_CPP="cc -E" mkdep -a -f .newdep -x assembler-with-cpp -DLOCORE -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfilter -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 rm -f .depend mv -f .newdep .depend cd ../../modules ; env MAKEOBJDIRPREFIX=/usr/src/sys/compile/VALE/modules MACHINE=i386 make obj ; env MAKEOBJDIRPREFIX=/usr/src/sys/compile/VALE/modules MACHINE=i386 make depend ===> accf_data "/usr/src/sys/modules/accf_data/../../conf/kmod.mk", line 63: Could not find bsd.init.mk "/usr/src/sys/modules/accf_data/../../conf/kmod.mk", line 190: Could not find bsd.links.mk make: fatal errors encountered -- cannot continue *** Error code 1 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/src/sys/compile/VALE. - -- Erwin Lansing -- http://droso.org -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE9Nog3qy9aWxUlaZARAr6BAJ0eXC4DIXS6CSRGUqvw3veSijBPDgCguiBh 7ldcAprwGK1VJLQbbczNm3g= =fScJ -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 2:20:33 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA16C37B400 for ; Thu, 18 Jul 2002 02:20:30 -0700 (PDT) Received: from leafy.idv.tw (sw59-154-113.adsl.seed.net.tw [61.59.154.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id D47DC43EC5 for ; Thu, 18 Jul 2002 02:20:29 -0700 (PDT) (envelope-from leafy@leafy.idv.tw) Received: (from root@localhost) by leafy.idv.tw (8.12.5/8.12.3) id g6I9KS6k072205 for freebsd-stable@freebsd.org; Thu, 18 Jul 2002 17:20:28 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: from leafy.idv.tw (localhost [127.0.0.1]) by leafy.idv.tw (8.12.5/8.12.3av) with ESMTP id g6I9KS0B072197 for ; Thu, 18 Jul 2002 17:20:28 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.5/8.12.5/Submit) id g6I9KRe8072192 for freebsd-stable@FreeBSD.ORG; Thu, 18 Jul 2002 17:20:27 +0800 (CST) Date: Thu, 18 Jul 2002 17:20:27 +0800 From: JY To: freebsd-stable@freebsd.org Subject: Re: smbfs + libiconv problems Message-ID: <20020718092027.GA72170@leafy.idv.tw> Mail-Followup-To: freebsd-stable@FreeBSD.ORG References: <200207180905.g6I955Yu074202@ib.com.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <200207180905.g6I955Yu074202@ib.com.ua> User-Agent: Mutt/1.5.1i X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jul 18, 2002 at 12:05:05PM +0300, Anton Yudin wrote: > > In freebsd 4.6 stable I successfuly mount shared resources with > smbfs (as dynamic module or built-in). I successfuly use character sets > recoding feature. But every directory > with russian encoding looks like they are empty (really they are not empty). > is this a known bug? Did you enable kernel LIBICONV? Jiawei Ye To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 2:25:24 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5028E37B400; Thu, 18 Jul 2002 02:25:22 -0700 (PDT) Received: from pump3.york.ac.uk (pump3.york.ac.uk [144.32.128.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3425843E65; Thu, 18 Jul 2002 02:25:21 -0700 (PDT) (envelope-from gavin.atkinson@ury.york.ac.uk) Received: from ury.york.ac.uk (ury.york.ac.uk [144.32.108.81]) by pump3.york.ac.uk (8.10.2/8.10.2) with ESMTP id g6I9PHa04904; Thu, 18 Jul 2002 10:25:17 +0100 (BST) Received: from ury.york.ac.uk (localhost.york.ac.uk [127.0.0.1]) by ury.york.ac.uk (8.12.3/8.12.3) with ESMTP id g6I9PHv6020528; Thu, 18 Jul 2002 10:25:17 +0100 (BST) (envelope-from gavin.atkinson@ury.york.ac.uk) Received: from localhost (gavin@localhost) by ury.york.ac.uk (8.12.3/8.12.3/Submit) with ESMTP id g6I9PHAH020525; Thu, 18 Jul 2002 10:25:17 +0100 (BST) X-Authentication-Warning: ury.york.ac.uk: gavin owned process doing -bs Date: Thu, 18 Jul 2002 10:25:17 +0100 (BST) From: Gavin Atkinson To: Ruslan Ermilov Cc: Dag-Erling Smorgrav , Subject: Re: Build error if crypto was not installed In-Reply-To: <20020717104802.GC18389@sunbay.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 17 Jul 2002, Ruslan Ermilov wrote: > On Wed, Jul 17, 2002 at 11:54:53AM +0200, Dag-Erling Smorgrav wrote: > > Gavin Atkinson writes: > > > Make buildworld: > > > ===> secure/usr.bin/scp > > > cc -O -pipe -I/usr/src/secure/usr.bin/scp/../../../crypto/openssh -DNO_IDEA -c /usr/src/secure/usr.bin/scp/../../../crypto/openssh/scp.c > > > cc -O -pipe -I/usr/src/secure/usr.bin/scp/../../../crypto/openssh -DNO_IDEA -o scp scp.o -lssh > > > /usr/obj/usr/src/i386/usr/libexec/elf/ld: warning: libcrypto.so.2, needed by /usr/obj/usr/src/i386/usr/lib/libssh.so, not found (try using -rpath or -rpath-link) > > > > It looks like the build is not setting LD_LIBRARY_PATH correctly. Can > > you show me the output of 'find /usr/obj -name libcrypto.so.2'? > > > I've just committed the relevant fixes to gnu/usr.bin/binutils/ld. This fixed the problem, thanks Gavin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 2:26:15 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACA8737B400 for ; Thu, 18 Jul 2002 02:26:11 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9B6243E42 for ; Thu, 18 Jul 2002 02:26:06 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g6I9PTt78531; Thu, 18 Jul 2002 12:25:29 +0300 (EEST) (envelope-from ru) Date: Thu, 18 Jul 2002 12:25:29 +0300 From: Ruslan Ermilov To: Erwin Lansing Cc: freebsd-stable@FreeBSD.ORG Subject: Re: -stable b0rked? Message-ID: <20020718092529.GB75841@sunbay.com> References: <20020718111951.B11648@droso.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="hHWLQfXTYDoKhP50" Content-Disposition: inline In-Reply-To: <20020718111951.B11648@droso.net> User-Agent: Mutt/1.3.99i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --hHWLQfXTYDoKhP50 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 18, 2002 at 11:19:51AM +0200, Erwin Lansing wrote: > vale# cd /usr/src/sys/i386/conf/ > vale# config VALE > Don't forget to do a ``make depend'' > Kernel build directory is ../../compile/VALE > vale# cd ../../compile/VALE > rm -f .newdep > make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs mkdep -a -f .newde= p -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -= Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensio= ns -ansi -nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfi= lter -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=3D2 > make -V SFILES -V SYSTEM_SFILES | xargs env MKDEP_CPP=3D"cc -E" mkdep -a= -f .newdep -x assembler-with-cpp -DLOCORE -O -pipe -Wall -Wredundant-decl= s -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arit= h -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.= . -I../../../include -I../../contrib/ipfilter -D_KERNEL -include opt_globa= l.h -elf -mpreferred-stack-boundary=3D2 > rm -f .depend > mv -f .newdep .depend > cd ../../modules ; env MAKEOBJDIRPREFIX=3D/usr/src/sys/compile/VALE/modul= es MACHINE=3Di386 make obj ; env MAKEOBJDIRPREFIX=3D/usr/src/sys/compile/V= ALE/modules MACHINE=3Di386 make depend > =3D=3D=3D> accf_data > "/usr/src/sys/modules/accf_data/../../conf/kmod.mk", line 63: Could not f= ind bsd.init.mk > "/usr/src/sys/modules/accf_data/../../conf/kmod.mk", line 190: Could not = find bsd.links.mk > make: fatal errors encountered -- cannot continue > *** Error code 1 >=20 > Stop in /usr/src/sys/modules. > *** Error code 1 >=20 > Stop in /usr/src/sys/compile/VALE. >=20 share/mk was recently updated. Either use the "always should be working" buildkernel method, or update your /usr/share/mk with the new stuff. I will send a HEADS UP shortly. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --hHWLQfXTYDoKhP50 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9NomJUkv4P6juNwoRAuOtAJ9KIfzxStB0bRsE38GQ4qtyGib/TACfUjXS ZKlNX1mtUAnGDo09La2Rjuw= =g9mP -----END PGP SIGNATURE----- --hHWLQfXTYDoKhP50-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 2:26:57 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1BAF37B400 for ; Thu, 18 Jul 2002 02:26:55 -0700 (PDT) Received: from ib.com.ua (ib.com.ua [217.144.67.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDDB143E64 for ; Thu, 18 Jul 2002 02:26:53 -0700 (PDT) (envelope-from tech@ib.com.ua) Received: from ib.com.ua (localhost.ib.com.ua [127.0.0.1]) by ib.com.ua (8.12.5/8.12.5) with ESMTP id g6I9OhOx074760; Thu, 18 Jul 2002 12:24:43 +0300 (EEST) (envelope-from tech@ib.com.ua) Received: (from tech@localhost) by ib.com.ua (8.12.5/8.12.5/Submit) id g6I9OgrQ074758; Thu, 18 Jul 2002 12:24:42 +0300 (EEST) Date: Thu, 18 Jul 2002 12:24:42 +0300 (EEST) From: tech Message-Id: <200207180924.g6I9OgrQ074758@ib.com.ua> To: freebsd-stable@FreeBSD.ORG, leafy@leafy.idv.tw Subject: Re: smbfs + libiconv problems In-Reply-To: <20020718092027.GA72170@leafy.idv.tw> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > On Thu, Jul 18, 2002 at 12:05:05PM +0300, Anton Yudin wrote: > > > > In freebsd 4.6 stable I successfuly mount shared resources with > > smbfs (as dynamic module or built-in). I successfuly use character sets > > recoding feature. But every directory > > with russian encoding looks like they are empty (really they are not empty). > > is this a known bug? > Did you enable kernel LIBICONV? > Yes, of course :-) options SMBFS options NETSMB options NETSMBCRYPTO options LIBMCHAIN options LIBICONV and libiconv-1.8 from up-to-date ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 2:37:39 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8B2737B400 for ; Thu, 18 Jul 2002 02:37:34 -0700 (PDT) Received: from mail.droso.net (koala.droso.net [193.162.142.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6422043E3B for ; Thu, 18 Jul 2002 02:37:34 -0700 (PDT) (envelope-from erwin@mail.droso.net) Received: from localhost (localhost [127.0.0.1]) by mail.droso.net (Postfix) with ESMTP id 604435B8D for ; Thu, 18 Jul 2002 11:37:33 +0200 (CEST) Received: by mail.droso.net (Postfix, from userid 1001) id BF7765B8B; Thu, 18 Jul 2002 11:37:31 +0200 (CEST) Date: Thu, 18 Jul 2002 11:37:31 +0200 From: Erwin Lansing To: freebsd-stable@FreeBSD.ORG Subject: Re: -stable b0rked? Message-ID: <20020718113731.A15098@droso.net> Mail-Followup-To: freebsd-stable@FreeBSD.ORG References: <20020718111951.B11648@droso.net> <20020718092529.GB75841@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="45Z9DzgjV8m4Oswq" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020718092529.GB75841@sunbay.com>; from ru@FreeBSD.ORG on Thu, Jul 18, 2002 at 12:25:29PM +0300 X-Operating-System: FreeBSD/i386 4.6-STABLE X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --45Z9DzgjV8m4Oswq Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 18, 2002 at 12:25:29PM +0300, Ruslan Ermilov wrote: > > "/usr/src/sys/modules/accf_data/../../conf/kmod.mk", line 63: Could not= find bsd.init.mk > > "/usr/src/sys/modules/accf_data/../../conf/kmod.mk", line 190: Could no= t find bsd.links.mk > > make: fatal errors encountered -- cannot continue > > *** Error code 1 > >=20 > > Stop in /usr/src/sys/modules. > > *** Error code 1 > >=20 > > Stop in /usr/src/sys/compile/VALE. > >=20 > share/mk was recently updated. Either use the "always should be working" > buildkernel method, or update your /usr/share/mk with the new stuff. > I will send a HEADS UP shortly. >=20 I thought the mk-stuff would come with a cvsup. Anyway, I'll await the HEADS UP. Thanks, /erwin --=20 Erwin Lansing -- http://droso.org --45Z9DzgjV8m4Oswq Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE9Noxbqy9aWxUlaZARArnuAJ4l6EFq7tg8rTQF7kbxHWCMNjFpfwCcDcqm DCx0Settz47+9O8Cf6pBpdo= =1oB3 -----END PGP SIGNATURE----- --45Z9DzgjV8m4Oswq-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 2:40:23 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD4A037B400 for ; Thu, 18 Jul 2002 02:40:20 -0700 (PDT) Received: from mile.nevermind.kiev.ua (office.netstyle.com.ua [213.186.199.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 711BD43E3B for ; Thu, 18 Jul 2002 02:40:18 -0700 (PDT) (envelope-from never@mile.nevermind.kiev.ua) Received: from mile.nevermind.kiev.ua (never@localhost [127.0.0.1]) by mile.nevermind.kiev.ua (8.12.3/8.12.3) with ESMTP id g6I9e8pb049951; Thu, 18 Jul 2002 12:40:09 +0300 (EEST) (envelope-from never@mile.nevermind.kiev.ua) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.12.3/8.12.3/Submit) id g6I9e5JS049949; Thu, 18 Jul 2002 12:40:05 +0300 (EEST) Date: Thu, 18 Jul 2002 12:40:05 +0300 From: Alexandr Kovalenko To: tech Cc: freebsd-stable@FreeBSD.ORG, leafy@leafy.idv.tw Subject: Re: smbfs + libiconv problems Message-ID: <20020718094005.GD26608@nevermind.kiev.ua> References: <20020718092027.GA72170@leafy.idv.tw> <200207180924.g6I9OgrQ074758@ib.com.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200207180924.g6I9OgrQ074758@ib.com.ua> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, tech! On Thu, Jul 18, 2002 at 12:24:42PM +0300, you wrote: > > > In freebsd 4.6 stable I successfuly mount shared resources with > > > smbfs (as dynamic module or built-in). I successfuly use character sets > > > recoding feature. But every directory > > > with russian encoding looks like they are empty (really they are not empty). > > > is this a known bug? > > Did you enable kernel LIBICONV? > > > Yes, of course :-) > > options SMBFS > options NETSMB > options NETSMBCRYPTO > options LIBMCHAIN > options LIBICONV That's correct. > and libiconv-1.8 from up-to-date ports It has NOTHING to do with kernel LIBICONV. -- NEVE-RIPE Ukrainian FreeBSD User Group http://uafug.org.ua/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 3: 4:39 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45CE337B400 for ; Thu, 18 Jul 2002 03:04:36 -0700 (PDT) Received: from mile.nevermind.kiev.ua (office.netstyle.com.ua [213.186.199.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5571343E70 for ; Thu, 18 Jul 2002 03:04:34 -0700 (PDT) (envelope-from never@mile.nevermind.kiev.ua) Received: from mile.nevermind.kiev.ua (never@localhost [127.0.0.1]) by mile.nevermind.kiev.ua (8.12.3/8.12.3) with ESMTP id g6IA4Vpb050354; Thu, 18 Jul 2002 13:04:32 +0300 (EEST) (envelope-from never@mile.nevermind.kiev.ua) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.12.3/8.12.3/Submit) id g6IA4SxH050353; Thu, 18 Jul 2002 13:04:28 +0300 (EEST) Date: Thu, 18 Jul 2002 13:04:28 +0300 From: Alexandr Kovalenko To: tech Cc: freebsd-stable@FreeBSD.ORG, leafy@leafy.idv.tw Subject: Re: smbfs + libiconv problems Message-ID: <20020718100428.GA50235@nevermind.kiev.ua> References: <20020718092027.GA72170@leafy.idv.tw> <200207180924.g6I9OgrQ074758@ib.com.ua> <20020718094005.GD26608@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20020718094005.GD26608@nevermind.kiev.ua> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Alexandr Kovalenko! On Thu, Jul 18, 2002 at 12:40:05PM +0300, you wrote: > > and libiconv-1.8 from up-to-date ports > It has NOTHING to do with kernel LIBICONV. Please, disregard this. I thought that Boris Popov was more clever. I think depending kernel module on some port is not very good :( We should include libiconv in base source tree probably. -- NEVE-RIPE Ukrainian FreeBSD User Group http://uafug.org.ua/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 3:26:56 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E76D37B400 for ; Thu, 18 Jul 2002 03:26:54 -0700 (PDT) Received: from www.svzserv.kemerovo.su (www.svzserv.kemerovo.su [213.184.65.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB66343E65 for ; Thu, 18 Jul 2002 03:26:52 -0700 (PDT) (envelope-from eugen@www.svzserv.kemerovo.su) Received: from www.svzserv.kemerovo.su (eugen@localhost [127.0.0.1]) by www.svzserv.kemerovo.su (8.12.4/8.12.3) with ESMTP id g6IAQohA052037 for ; Thu, 18 Jul 2002 18:26:50 +0800 (KRAST) (envelope-from eugen@www.svzserv.kemerovo.su) Received: (from eugen@localhost) by www.svzserv.kemerovo.su (8.12.4/8.12.4/Submit) id g6IAQnTk052036 for stable@freebsd.org; Thu, 18 Jul 2002 18:26:49 +0800 (KRAST) Date: Thu, 18 Jul 2002 18:26:48 +0800 From: Eugene Grosbein To: stable@freebsd.org Subject: dummynmet shaper broken? Message-ID: <20020718182648.A47588@svzserv.kemerovo.su> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi! Try this: 1. enable ipfw, dummynet and rshd 2. ipfw pipe 10 config bw 10Kbyte/s queue 100 3. ipfw add 10 pipe 10 tcp from any to any shell via lo0 4. rsh localhost dd if=/dev/zero bs=16k count=1000 >/dev/null Using my Celeron 366 I obtain not 10Kbyte/s but about 40-60Kbyte/s. Big difference. I tried 'ifconfig lo0 mtu 576', it gives the same speed using same procedure. It seems dummynet shaper is broken, isn't it? If I try to decrease queue size, speed increases, that is expected. Eugene Grosbein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 4: 6: 2 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F264737B407 for ; Thu, 18 Jul 2002 04:05:52 -0700 (PDT) Received: from news.kiev.sovam.com (news.kiev.sovam.com [212.109.32.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2231443E58 for ; Thu, 18 Jul 2002 04:05:51 -0700 (PDT) (envelope-from gw-bsd-stable@news.kiev.sovam.com) Received: from mail by news.kiev.sovam.com with local (Exim 2.12 #1) id 17V96R-000Kk6-00 for freebsd-stable@freebsd.org; Thu, 18 Jul 2002 14:05:47 +0300 From: Dmitry Alyabyev To: freebsd-stable@freebsd.org Reply-To: dimitry@al.org.ua Subject: Re: Problems booting with a degraded RAID1 Date: Thu, 18 Jul 2002 14:05:46 +0300 Message-ID: References: <20020716223625.GA11595@bsdguru.com> X-Organization: Svit Online (post does not reflect views of Golden Telecom) X-Gated-By: news2list v1.4, (c) Vladimir Litovka X-Gated-Date: Thu Jul 18 11:05:47 2002 GMT Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ben Lovett wrote: > Has anyone else noticed any problems with booting a system with a > degraded RAID1 array? On a system with a on board HPT370 (Abit > KG7-RAID), it will drop me to a "root device selection" if the RAID is > in degraded mode. While this will generally not be a problem, it will > become one if the machine gets rebooted (forcefully or not) before the > dead hard disk is replaced. Currently the only way to bring the > system back up is to rebuild the array from the BIOS, which will keep > the machine down for the 30-45 minutes that it takes to rebuild the > array. > > Anyone have any work arounds, or fixes for this? AFAIR a lot of RAD-cards support background rebuilding so you can just start rebuild from BIOS and after reboot the process has re-start too. -- Dimitry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 4:52:25 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE7F137B400 for ; Thu, 18 Jul 2002 04:52:18 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 974BC43E64 for ; Thu, 18 Jul 2002 04:52:10 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g6IBpcX06791; Thu, 18 Jul 2002 14:51:38 +0300 (EEST) (envelope-from ru) Date: Thu, 18 Jul 2002 14:51:38 +0300 From: Ruslan Ermilov To: Thorsten.Greiner@consol.de Cc: stable@FreeBSD.org Subject: HEADS UP: share/mk stuff is being updated (was: Re: bsd.init.mk ?) Message-ID: <20020718115138.GB99249@sunbay.com> References: <1026974131.3d3661b3c9a1c@intranet.consol.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="24zk1gE8NUlDmwG9" Content-Disposition: inline In-Reply-To: <1026974131.3d3661b3c9a1c@intranet.consol.de> User-Agent: Mutt/1.3.99i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --24zk1gE8NUlDmwG9 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi! I am currently in the middle of the process of merging my half-a-year work on the share/mk stuff into RELENG_4. Below is the typical problem people have met with this, explanation of the problem, and a quick work-around for those who want it quickly. On Thu, Jul 18, 2002 at 08:35:31AM +0200, Thorsten.Greiner@consol.de wrote: > Hello,=20 > =20 > after cvsuping (just about now from cvsup3.de.freebsd.org) I'm having pro= blems during=20 > "make depend":=20 > =20 > rm -f .newdep=20 > make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs mkdep -a -f .newde= p -O -pipe=20 > -march=3Dpentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-pro= totypes =20 > -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-exten= sions -ansi =20 > -nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfilter -D= _KERNEL -include=20 > opt_global.h -elf -mpreferred-stack-boundary=3D2=20 > make -V SFILES -V SYSTEM_SFILES | xargs env MKDEP_CPP=3D"cc -E" mkdep -a= -f .newdep -x=20 > assembler-with-cpp -DLOCORE -O -pipe -march=3Dpentiumpro -Wall -Wredundan= t-decls=20 > -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arit= h -Winline=20 > -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../..= /../include=20 > -I../../contrib/ipfilter -D_KERNEL -include opt_global.h -elf =20 > -mpreferred-stack-boundary=3D2=20 > rm -f .depend=20 > mv -f .newdep .depend=20 > cd ../../modules ; env MAKEOBJDIRPREFIX=3D/usr/src/sys/compile/TYBALT/mod= ules=20 > MODULES_OVERRIDE=3D"linux sound/snd sound/pcm sound/driver/ich linprocfs = smbfs libiconv=20 > libmchain ipfw vn union cd9660 msdos" MACHINE=3Di386 make obj ; env=20 > MAKEOBJDIRPREFIX=3D/usr/src/sys/compile/TYBALT/modules MODULES_OVERRIDE= =3D"linux sound/snd=20 > sound/pcm sound/driver/ich linprocfs smbfs libiconv libmchain ipfw vn uni= on cd9660 msdos"=20 > MACHINE=3Di386 make depend=20 > =3D=3D=3D> linux=20 > "/usr/src/sys/modules/linux/../../conf/kmod.mk", line 63: Could not find = bsd.init.mk=20 > "/usr/src/sys/modules/linux/../../conf/kmod.mk", line 190: Could not find= bsd.links.mk=20 > make: fatal errors encountered -- cannot continue=20 > *** Error code 1=20 > =20 > Stop in /usr/src/sys/modules.=20 > *** Error code 1=20 > =20 > Stop in /usr/src/sys/compile/TYBALT.=20 > =20 > =20 > The complaint is valid, there is no "bsd.init.mk" or "bsd.links.mk" in /u= sr/share/mk.=20 > =20 > I have seen no "heads up" or something like that. I have removed the comp= ile directory=20 > and rerun "config" to no avail.=20 > =20 > Any hints?=20 > =20 The only method that is GUARANTEED to work with source code updates is described in UPDATING. It is "buildworld" followed by "buildkernel". This particular problem is caused by your /usr/share/mk stuff being not in sync with the source tree. To work around this (if you really want to build only your kernel from fresh sources), you need to: cd /usr/src/share/mk && make install Then continue with the kernel build config(8) way. Or use "buildkernel" that, as I said, should work all the time (it takes care of picking up the correct share/mk files from the source tree). If it does not work, try precede it with "buildworld" (it will build the new version of config(8)). If this does not help, then report it as a bug. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --24zk1gE8NUlDmwG9 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9NqvKUkv4P6juNwoRAjZhAJ9B8LZn0EDLTyKtazSJ1qzmENPbCgCfd2uC fZC2OtfXVB1aoi6dRgUTQVI= =1kWA -----END PGP SIGNATURE----- --24zk1gE8NUlDmwG9-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 5:28:24 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C906C37B400; Thu, 18 Jul 2002 05:28:18 -0700 (PDT) Received: from gate.consol.de (gate.consol.de [194.221.87.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 331A343E6A; Thu, 18 Jul 2002 05:28:17 -0700 (PDT) (envelope-from Thorsten.Greiner@consol.de) Received: from imap.consol.de (imap.consol.de [10.250.0.113]) by gate.consol.de (8.11.6/8.11.6) with ESMTP id g6ICSFB83476 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified NO); Thu, 18 Jul 2002 14:28:15 +0200 (CEST) (envelope-from Thorsten.Greiner@consol.de) Received: from msgsrv2.bb.consol.de (vscanner.bb.consol.de [10.250.0.120]) by imap.consol.de (8.12.2/8.12.2) with ESMTP id g6ICSFtp022289; Thu, 18 Jul 2002 14:28:15 +0200 (CEST) (envelope-from thorsten@consol.de) Received: (from www@localhost) by msgsrv2.bb.consol.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) id OAA26368; Thu, 18 Jul 2002 14:28:15 +0200 From: Thorsten.Greiner@consol.de X-Authentication-Warning: msgsrv2.bb.consol.de: www set sender to thorsten@consol.de using -f To: Ruslan Ermilov Subject: Re: HEADS UP: share/mk stuff is being updated (was: Re: bsd.init.mk ?) Message-ID: <1026995295.3d36b45f5c6c4@intranet.consol.de> Date: Thu, 18 Jul 2002 14:28:15 +0200 (CEST) Cc: freebsd-stable@FreeBSD.org References: <1026974131.3d3661b3c9a1c@intranet.consol.de> <20020718115138.GB99249@sunbay.com> In-Reply-To: <20020718115138.GB99249@sunbay.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP IMAP webmail program 2.2.4 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG make buildworld / make buildkernel did the job. Thanks. -Thorsten Quoting Ruslan Ermilov : > Hi! > > I am currently in the middle of the process of merging my half-a-year > work > on the share/mk stuff into RELENG_4. Below is the typical problem > people > have met with this, explanation of the problem, and a quick work-around > for those who want it quickly. > > On Thu, Jul 18, 2002 at 08:35:31AM +0200, Thorsten.Greiner@consol.de > wrote: > > Hello, > > > > after cvsuping (just about now from cvsup3.de.freebsd.org) I'm having > problems during > > "make depend": > > > > rm -f .newdep > > make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs mkdep -a -f > .newdep -O -pipe > > -march=pentiumpro -Wall -Wredundant-decls -Wnested-externs > -Wstrict-prototypes > > -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual > -fformat-extensions -ansi > > -nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfilter > -D_KERNEL -include > > opt_global.h -elf -mpreferred-stack-boundary=2 > > make -V SFILES -V SYSTEM_SFILES | xargs env MKDEP_CPP="cc -E" mkdep > -a -f .newdep -x > > assembler-with-cpp -DLOCORE -O -pipe -march=pentiumpro -Wall > -Wredundant-decls > > -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes > -Wpointer-arith -Winline > > -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. > -I../../../include > > -I../../contrib/ipfilter -D_KERNEL -include opt_global.h -elf > > -mpreferred-stack-boundary=2 > > rm -f .depend > > mv -f .newdep .depend > > cd ../../modules ; env > MAKEOBJDIRPREFIX=/usr/src/sys/compile/TYBALT/modules > > MODULES_OVERRIDE="linux sound/snd sound/pcm sound/driver/ich linprocfs > smbfs libiconv > > libmchain ipfw vn union cd9660 msdos" MACHINE=i386 make obj ; env > > MAKEOBJDIRPREFIX=/usr/src/sys/compile/TYBALT/modules > MODULES_OVERRIDE="linux sound/snd > > sound/pcm sound/driver/ich linprocfs smbfs libiconv libmchain ipfw vn > union cd9660 msdos" > > MACHINE=i386 make depend > > ===> linux > > "/usr/src/sys/modules/linux/../../conf/kmod.mk", line 63: Could not > find bsd.init.mk > > "/usr/src/sys/modules/linux/../../conf/kmod.mk", line 190: Could not > find bsd.links.mk > > make: fatal errors encountered -- cannot continue > > *** Error code 1 > > > > Stop in /usr/src/sys/modules. > > *** Error code 1 > > > > Stop in /usr/src/sys/compile/TYBALT. > > > > > > The complaint is valid, there is no "bsd.init.mk" or "bsd.links.mk" in > /usr/share/mk. > > > > I have seen no "heads up" or something like that. I have removed the > compile directory > > and rerun "config" to no avail. > > > > Any hints? > > > The only method that is GUARANTEED to work with source code updates is > described in UPDATING. It is "buildworld" followed by "buildkernel". > > This particular problem is caused by your /usr/share/mk stuff being not > in sync with the source tree. To work around this (if you really want > to build only your kernel from fresh sources), you need to: > > cd /usr/src/share/mk && make install > > Then continue with the kernel build config(8) way. > > Or use "buildkernel" that, as I said, should work all the time (it > takes care of picking up the correct share/mk files from the source > tree). If it does not work, try precede it with "buildworld" (it > will build the new version of config(8)). If this does not help, > then report it as a bug. > > > Cheers, > -- > Ruslan Ermilov Sysadmin and DBA, > ru@sunbay.com Sunbay Software AG, > ru@FreeBSD.org FreeBSD committer, > +380.652.512.251 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 5:35:13 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E85E37B400; Thu, 18 Jul 2002 05:35:08 -0700 (PDT) Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA90543E31; Thu, 18 Jul 2002 05:35:07 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by earth.hub.org (Postfix) with ESMTP id 820BA2CC6CA; Thu, 18 Jul 2002 09:35:02 -0300 (ADT) Date: Thu, 18 Jul 2002 09:35:01 -0300 (ADT) From: "Marc G. Fournier" To: freebsd-stable@freebsd.org Cc: freebsd-scsi@freebsd.org Subject: Adaptec 39160 Controller in IBM xSeries 360 Server Message-ID: <20020718092446.F92631-100000@mail1.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have an xSeries 360 + EXP300 that I'm trying to get up with FreeBSD ... we picked up a 39160 Controller, which the server itself picks up nicely, and reports all 14 drives in the EXP300 ... but I can't get FreeBSD to see the card ... I have 4.6-STABLE installed on the machine, upgraded to Sunday's source code ... The card is reporting an Adaptec BIOS 3.10.0 ... going into the config utility, its reporting 7 drives / channel, as I'm expecting ... sitting at IRQ 10, I/O Port 2100h ... The onboard SCSI is a AIC-7892, sitting on IRQ 9 / 1900h ... From what I can tell, there are no IRQ conflicts or anything: nemesis# dmesg | grep irq IOAPIC #0 intpin 2 -> irq 0 IOAPIC #0 intpin 36 -> irq 9 IOAPIC #0 intpin 17 -> irq 2 IOAPIC #0 intpin 42 -> irq 3 IOAPIC #0 intpin 41 -> irq 5 IOAPIC #0 intpin 16 -> irq 7 chip1: port 0x1800-0x187f mem 0xfbc00000-0xfbdfffff irq 2 at device 2.0 on pci0 pci0: (vendor=0x8086, dev=0x1229) at 3.0 irq 3 ahc0: port 0x1900-0x19ff mem 0xfbf7e000-0xfbf7efff irq 5 at device 4.0 on pci0 pci0: at 15.2 irq 7 atkbd0: irq 1 on atkbdc0 psm0: irq 12 on atkbdc0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fxp0: port 0x1880-0x18bf mem 0xfbe00000-0xfbefffff,0xfbf7f000-0xfbf7ffff irq 3 at device 3.0 on pci0 ohci0: mem 0xfbf7d000-0xfbf7dfff irq 7 at device 15.2 on pci0 Is this supposed to work under 4.6-*? If so, is there something I'm missing as far as debugging is concerned? Maybe an 'ID' got changed somewhere along the way @ Adaptec that 4.6-* isn't recognizing? Thanks for any help ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 5:48:23 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D491337B400 for ; Thu, 18 Jul 2002 05:48:20 -0700 (PDT) Received: from viefep16-int.chello.at (viefep16-int.chello.at [213.46.255.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBF2843E31 for ; Thu, 18 Jul 2002 05:48:18 -0700 (PDT) (envelope-from ant@overclockers.at) Received: from Deadcell.ant ([212.17.108.240]) by viefep16-int.chello.at (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with ESMTP id <20020718124817.ICTX2227.viefep16-int.chello.at@Deadcell.ant> for ; Thu, 18 Jul 2002 14:48:17 +0200 Received: from Deadcell.ant (localhost [127.0.0.1]) by Deadcell.ant (8.12.5/8.12.5) with ESMTP id g6ICmGdo001997 for ; Thu, 18 Jul 2002 14:48:16 +0200 (CEST) (envelope-from ant@Deadcell.ant) Received: (from ant@localhost) by Deadcell.ant (8.12.5/8.12.5/Submit) id g6ICmB3d001996 for freebsd-stable@freebsd.org; Thu, 18 Jul 2002 14:48:11 +0200 (CEST) Date: Thu, 18 Jul 2002 14:48:11 +0200 From: Andreas Ntaflos To: freebsd-stable@freebsd.org Subject: RoamAbout Cabletron 802.11 nic not supported anymore? Message-ID: <20020718124811.GA1961@Deadcell.ant> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I have a RoamAbout Cabletron 802.11 wireless pccard, and it used to work, or at least it used to be detected by FreeBSD in the past (4.4-STABLE I think) on my Laptop (Toshiba Satellite 3000-100). Now, I have 4.6-STABLE running quite fine, but whenever I insert the card, I just get the message "pccard: card inserted, slot 0" or something like that. The wifi card itself does not get detected or identified which used to be the case half a year ago or so. I have the "device wi" in my kernel config file, but that doesn't seem to mean anything to it. wicontrol doesn't work either when the card is inserted (of course it does not since nothing gets detected by the system, except for a pccard :) ), it gives me a "wicontrol: SIOCGWAVELAN: Device not configured". So what's it with this? From /etc/defaults/pccard.conf I think the card is supported, but I can't seem to get it right. Is it supported or not is my question now, and if it is, what am I missing? Thanks in advance regards -- Andreas "ant" Ntaflos ant@overclockers.at Vienna, AUSTRIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 5:53:16 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 829DC37B400 for ; Thu, 18 Jul 2002 05:53:13 -0700 (PDT) Received: from viefep16-int.chello.at (viefep16-int.chello.at [213.46.255.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id A733443E65 for ; Thu, 18 Jul 2002 05:53:11 -0700 (PDT) (envelope-from ant@overclockers.at) Received: from Deadcell.ant ([212.17.108.240]) by viefep16-int.chello.at (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with ESMTP id <20020718125310.IELA2227.viefep16-int.chello.at@Deadcell.ant>; Thu, 18 Jul 2002 14:53:10 +0200 Received: from Deadcell.ant (localhost [127.0.0.1]) by Deadcell.ant (8.12.5/8.12.5) with ESMTP id g6ICr9do002013; Thu, 18 Jul 2002 14:53:09 +0200 (CEST) (envelope-from ant@Deadcell.ant) Received: (from ant@localhost) by Deadcell.ant (8.12.5/8.12.5/Submit) id g6ICr2Bn002012; Thu, 18 Jul 2002 14:53:02 +0200 (CEST) Date: Thu, 18 Jul 2002 14:53:02 +0200 From: Andreas Ntaflos To: "Al.Chechet" Cc: freebsd-stable@freebsd.org Subject: Re: freetype2 install problem Message-ID: <20020718125302.GB1961@Deadcell.ant> References: <200207180816.g6I8GB4k060849@koncom-utc.ukrtel.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200207180816.g6I8GB4k060849@koncom-utc.ukrtel.net> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jul 18, 2002 at 11:16:11AM +0300, Al.Chechet wrote: > I've just built 4.6-STABLE. When attempting to install > freetype2 from ports I've got some repeating messages > on the stage "make install". It looks like uncompatible > Makefile syntax: > > "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 46: Need an operator > "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 48: Need an operator > "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 59: Missing dependency operator > "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 61: Need an operator > Error expanding embedded variable. > gmake: [install] Error 2 (ignored) > install -c -o root -g wheel -m 444 /usr/ports/print/freetype2/work/freetype-2.1.2/builds/unix/ft2unix.h /usr/local/include/ft2build.h > "/usr/ports/print/freetype2/work/freetype-2.1.2/Makefile", line 26: Need an operator > "/usr/ports/print/freetype2/work/freetype-2.1.2/Makefile", line 28: Need an operator > "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 46: Need an operator > "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 48: Need an operator > "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 59: Missing dependency operator > "/usr/ports/print/freetype2/work/freetype-2.1.2/./builds/toplevel.mk", line 61: Need an operator > Error expanding embedded variable. > gmake: *** [install] Error 2 > *** Error code 2 > You seem to have "." in your $PATH. I've had that problem too 2 weeks ago; remove "." from your path and the build should work just fine. As I understand, there is a script in work/freetype-2.1.2 called install, which gets executed when you have the current directory "." in your path, which calls GNU make and GNU install, instead of the correct BSD make and install. This leads to the incompatible Makefile syntax. Search through the archives from ~2 weeks ago, you'll find it explained there. HTH regards -- Andreas "ant" Ntaflos ant@overclockers.at Vienna, AUSTRIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 6: 4: 5 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1017637B400 for ; Thu, 18 Jul 2002 06:04:00 -0700 (PDT) Received: from Rachel.ProFX.net (profxi.lnk.telstra.net [139.130.215.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D94C43E42 for ; Thu, 18 Jul 2002 06:03:57 -0700 (PDT) (envelope-from Pro@ProFX.net) Received: from melissa ([192.168.0.9]) by Rachel.ProFX.net (8.12.2/8.12.2) with SMTP id g6ID2OdD001033; Thu, 18 Jul 2002 23:02:25 +1000 (EST) Message-ID: <002b01c22e5b$91a115b0$0900a8c0@Hiley.cx> From: "Brendan Hiley" To: "Andreas Ntaflos" , References: <20020718124811.GA1961@Deadcell.ant> Subject: Re: RoamAbout Cabletron 802.11 nic not supported anymore? Date: Thu, 18 Jul 2002 23:03:51 +1000 MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=SHA1; boundary="----=_NextPart_000_0027_01C22EAF.61C3C690" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0027_01C22EAF.61C3C690 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit I'm also running 4.6-stable and regularly use Enterasys/Cabletron RoamAbouts. I haven't noticed any support issues. I have the wi driver in the kernel, and the default pccard.conf from 4.6-release. So I'm not quite sure what you're missing :) If you figure it out, be sure to let us know what was going on. -Brendan Hiley. ----- Original Message ----- From: "Andreas Ntaflos" To: Sent: Thursday, July 18, 2002 10:48 PM Subject: RoamAbout Cabletron 802.11 nic not supported anymore? > Hello, > I have a RoamAbout Cabletron 802.11 wireless pccard, and it used to > work, or at least it used to be detected by FreeBSD in the past > (4.4-STABLE I think) on my Laptop (Toshiba Satellite 3000-100). > Now, I have 4.6-STABLE running quite fine, but whenever I insert > the card, I just get the message "pccard: card inserted, slot 0" or > something like that. The wifi card itself does not get detected or > identified which used to be the case half a year ago or so. > > I have the "device wi" in my kernel config file, but that doesn't > seem to mean anything to it. wicontrol doesn't work either when the > card is inserted (of course it does not since nothing gets detected > by the system, except for a pccard :) ), it gives me a "wicontrol: > SIOCGWAVELAN: Device not configured". > > So what's it with this? From /etc/defaults/pccard.conf I think the > card is supported, but I can't seem to get it right. Is it supported > or not is my question now, and if it is, what am I missing? > > Thanks in advance > regards > -- > Andreas "ant" Ntaflos > ant@overclockers.at > Vienna, AUSTRIA > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message ------=_NextPart_000_0027_01C22EAF.61C3C690 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIII1jCCAnQw ggHdoAMCAQICAwflATANBgkqhkiG9w0BAQQFADCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdl c3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsT FENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAw MC44LjMwMB4XDTAyMDcxNTA2MDUzMFoXDTAzMDcxNTA2MDUzMFowPzEfMB0GA1UEAxMWVGhhd3Rl IEZyZWVtYWlsIE1lbWJlcjEcMBoGCSqGSIb3DQEJARYNUHJvQFByb0ZYLm5ldDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA20RKR2Lut5v0T4thL5uCuhV04NujROPfFl9BYdp8V6/1JxFMiu8b jBVNS1YHZG52+OY2zNuq9d9xYSm/qWfkNTQDq4OUYeCQRVzCUsV9Dktq3P1jpHGcAjrN9d5IJG3k mwIkNFIoPK30nIb4DevE7AP1u+8Sma8jKO8p5lwgzyECAwEAAaMqMCgwGAYDVR0RBBEwD4ENUHJv QFByb0ZYLm5ldDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBBAUAA4GBAEs3caBXDxXZy7kOwcWs pAaxfyE44/4liLS6TwmeP3KyxLkYkYLayPqVYuWcceeOg9ElNJ87U9EZiaBnMk07HqJTfxaICwKW Ub9SO4baybGCAAGATmw8/lXlSjCBlUDo0IzScDqeXaMmA4DXisFCASwd5ZECLFqLpOHSKwYKAaCs MIIDKTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3Vs dGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMb VGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVl bWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1OVowgZIxCzAJBgNV BAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UE ChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29u YWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA3jMy pmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36 S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51J ZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0RBCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJl bDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GB AHMbbyZli/8VNEtZYortRL5Jx+gNu4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzm kpxuwSMBwgmn70uuct0GZ/VQby5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3F w5EvqZa4BTxS/N3pYgNIMIIDLTCCApagAwIBAgIBADANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UE BhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQK ExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZp c2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkB FhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTk2MDEwMTAwMDAwMFoXDTIwMTIzMTIz NTk1OVowgdExCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEaMBgGA1UEChMRVGhhd3RlIENvbnN1bHRpbmcxKDAmBgNVBAsTH0NlcnRpZmljYXRp b24gU2VydmljZXMgRGl2aXNpb24xJDAiBgNVBAMTG1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBD QTErMCkGCSqGSIb3DQEJARYccGVyc29uYWwtZnJlZW1haWxAdGhhd3RlLmNvbTCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA1GnX1LCUZFtx6UfYDFG26nKRsIRefS0Nj3sS34UldSh0OkIsYyef lXtL734Zhx2G6qPduc6WZBrCFG5ErHzmj+hND3EfQDimAKOHePb5lIZererAXnbr2RSjXW56fAyl S1V/Bhkpf56aJtVquzgkCGqYx7Hao5iR/Xnb5VrEHLkCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB /zANBgkqhkiG9w0BAQQFAAOBgQDH7JJ+Tvj1lqVnYiqk8E0RYNBvjWBYYawmu1I1XAjPMPuoSpaK H2JCI4wXD/S6ZJwXrEcp352YXtJsYHFcoqzceePnbgBHH7UNKOgCneSa/RP0ptl8sfjcXyMmCZGA c9AUG95DqYMl8uacLxXK/qarigd1iwzdUYRr5PjRzneigTGCAf4wggH6AgEBMIGaMIGSMQswCQYD VQQGEwJaQTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xDzANBgNV BAoTBlRoYXd0ZTEdMBsGA1UECxMUQ2VydGlmaWNhdGUgU2VydmljZXMxKDAmBgNVBAMTH1BlcnNv bmFsIEZyZWVtYWlsIFJTQSAyMDAwLjguMzACAwflATAJBgUrDgMCGgUAoIG6MBgGCSqGSIb3DQEJ AzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTAyMDcxODEzMDM1MVowIwYJKoZIhvcNAQkE MRYEFGElCQSpMkBmcnJ7UbqP/5vUF1Q0MFsGCSqGSIb3DQEJDzFOMEwwCgYIKoZIhvcNAwcwDgYI KoZIhvcNAwICAgCAMA0GCCqGSIb3DQMCAgFAMAcGBSsOAwIHMA0GCCqGSIb3DQMCAgEoMAcGBSsO AwIdMA0GCSqGSIb3DQEBAQUABIGAqSErpKMEjNP0HTkKxHEDEggQ4vAvY6bQx5UDDSlDLPcOw4yS NJfiiHmtrI61LxbNB48w5Xik1wRZIZpevTfWRSroU7XVmVcczXtF+F02VbOMfoTgqvPmu7zYFyXE FIHw35gkOFzZECdqIU0f1UMokmQKMbTuUUQ2DqnfpAEk67IAAAAAAAA= ------=_NextPart_000_0027_01C22EAF.61C3C690-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 6:15: 3 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7F6F37B400 for ; Thu, 18 Jul 2002 06:14:59 -0700 (PDT) Received: from viefep14-int.chello.at (viefep14-int.chello.at [213.46.255.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00D7E43E31 for ; Thu, 18 Jul 2002 06:14:58 -0700 (PDT) (envelope-from ant@overclockers.at) Received: from Deadcell.ant ([212.17.108.240]) by viefep14-int.chello.at (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with ESMTP id <20020718131456.CMRC2977.viefep14-int.chello.at@Deadcell.ant>; Thu, 18 Jul 2002 15:14:56 +0200 Received: from Deadcell.ant (localhost [127.0.0.1]) by Deadcell.ant (8.12.5/8.12.5) with ESMTP id g6IDEtdo002067; Thu, 18 Jul 2002 15:14:55 +0200 (CEST) (envelope-from ant@Deadcell.ant) Received: (from ant@localhost) by Deadcell.ant (8.12.5/8.12.5/Submit) id g6IDEnUM002066; Thu, 18 Jul 2002 15:14:49 +0200 (CEST) Date: Thu, 18 Jul 2002 15:14:49 +0200 From: Andreas Ntaflos To: Brendan Hiley Cc: freebsd-stable@freebsd.org Subject: Re: RoamAbout Cabletron 802.11 nic not supported anymore? Message-ID: <20020718131449.GA2053@Deadcell.ant> References: <20020718124811.GA1961@Deadcell.ant> <002b01c22e5b$91a115b0$0900a8c0@Hiley.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <002b01c22e5b$91a115b0$0900a8c0@Hiley.cx> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jul 18, 2002 at 11:03:51PM +1000, Brendan Hiley wrote: > I'm also running 4.6-stable and regularly use Enterasys/Cabletron > RoamAbouts. > I haven't noticed any support issues. Darrn, this is what I expected :) > I have the wi driver in the kernel, and the default pccard.conf from > 4.6-release. > So I'm not quite sure what you're missing :) Neither am I, I am doing the same as you do. Strange enough huh? > If you figure it out, be sure to let us know what was going on. I will, I'll sit down and look into it when I have the time. But that kinda sucks. Well, thanks for your reply! regards -- Andreas "ant" Ntaflos ant@overclockers.at Vienna, AUSTRIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 6:20:37 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4930B37B400 for ; Thu, 18 Jul 2002 06:20:34 -0700 (PDT) Received: from popmail.ct.lodgenet.com (mozart.lodgenet.com [204.124.122.253]) by mx1.FreeBSD.org (Postfix) with SMTP id 2FC7743E6A for ; Thu, 18 Jul 2002 06:20:33 -0700 (PDT) (envelope-from johnp@lodgenet.com) Received: (qmail 86839 invoked from network); 18 Jul 2002 13:20:35 -0000 Received: from windoze.ct.lodgenet.com (HELO windoze.lodgenet.com) (10.0.122.50) by popmail.ct.lodgenet.com with SMTP; 18 Jul 2002 13:20:35 -0000 Message-Id: <5.1.0.14.2.20020718081717.03024c50@popmail.ct.lodgenet.com> X-Sender: johnp@popmail.ct.lodgenet.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Thu, 18 Jul 2002 08:20:30 -0500 To: bmah@FreeBSD.ORG From: John Prince Subject: Re: ATA-Atapi read_big Cc: John Prince , stable@FreeBSD.ORG In-Reply-To: <200207172215.g6HMF95d067862@intruder.bmah.org> References: <5.1.0.14.2.20020717143529.00abad40@popmail.ct.lodgenet.com> <5.1.0.14.2.20020717143529.00abad40@popmail.ct.lodgenet.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Bruce.. Thanks, and yes I saw it.. The SPLX changes did not help. A stable build as of Yesterday (approx 9:40 CST) did not change anything. Thanks. --john At 03:15 PM 7/17/2002 -0700, Bruce A. Mah wrote: >If memory serves me right, John Prince wrote: > > > Not wanting to resurrect a dead horse, and > > please do not refer me to the ERATTA page... > > > > Is anyone else looking/still looking into this problem? > > Is Soren back yet? > >Did you see this patch posted to stable@? > >Message-id: <200207122338.aa27236@salmon.maths.tcd.ie> > >It was committed three days ago as rev. 1.46.2.14 of >src/sys/dev/ata/atapi-all.c. Does a more recent 4-STABLE build work >for you now? > >Bruce. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 6:24:44 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5BCA37B400; Thu, 18 Jul 2002 06:24:39 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13A1343E6A; Thu, 18 Jul 2002 06:24:39 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id GAA15521; Thu, 18 Jul 2002 06:24:38 -0700 Message-ID: <3D36C194.2090607@owt.com> Date: Thu, 18 Jul 2002 06:24:36 -0700 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4.1) Gecko/20020314 Netscape6/6.2.2 X-Accept-Language: en-us, es-mx MIME-Version: 1.0 To: Ruslan Ermilov Cc: Thorsten.Greiner@consol.de, stable@FreeBSD.ORG Subject: Re: HEADS UP: share/mk stuff is being updated (was: Re: bsd.init.mk ?) References: <1026974131.3d3661b3c9a1c@intranet.consol.de> <20020718115138.GB99249@sunbay.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ruslan Ermilov wrote: > Hi! > > I am currently in the middle of the process of merging my half-a-year work > on the share/mk stuff into RELENG_4. Below is the typical problem people > have met with this, explanation of the problem, and a quick work-around > for those who want it quickly. > > On Thu, Jul 18, 2002 at 08:35:31AM +0200, Thorsten.Greiner@consol.de wrote: > >>Hello, >> >>after cvsuping (just about now from cvsup3.de.freebsd.org) I'm having problems during >>"make depend": >> >>rm -f .newdep >>make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs mkdep -a -f .newdep -O -pipe >>-march=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes >>-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi >>-nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfilter -D_KERNEL -include >>opt_global.h -elf -mpreferred-stack-boundary=2 >>make -V SFILES -V SYSTEM_SFILES | xargs env MKDEP_CPP="cc -E" mkdep -a -f .newdep -x >>assembler-with-cpp -DLOCORE -O -pipe -march=pentiumpro -Wall -Wredundant-decls >>-Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline >>-Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include >>-I../../contrib/ipfilter -D_KERNEL -include opt_global.h -elf >>-mpreferred-stack-boundary=2 >>rm -f .depend >>mv -f .newdep .depend >>cd ../../modules ; env MAKEOBJDIRPREFIX=/usr/src/sys/compile/TYBALT/modules >>MODULES_OVERRIDE="linux sound/snd sound/pcm sound/driver/ich linprocfs smbfs libiconv >>libmchain ipfw vn union cd9660 msdos" MACHINE=i386 make obj ; env >>MAKEOBJDIRPREFIX=/usr/src/sys/compile/TYBALT/modules MODULES_OVERRIDE="linux sound/snd >>sound/pcm sound/driver/ich linprocfs smbfs libiconv libmchain ipfw vn union cd9660 msdos" >>MACHINE=i386 make depend >>===> linux >>"/usr/src/sys/modules/linux/../../conf/kmod.mk", line 63: Could not find bsd.init.mk >>"/usr/src/sys/modules/linux/../../conf/kmod.mk", line 190: Could not find bsd.links.mk >>make: fatal errors encountered -- cannot continue >>*** Error code 1 >> >>Stop in /usr/src/sys/modules. >>*** Error code 1 >> >>Stop in /usr/src/sys/compile/TYBALT. >> >> >>The complaint is valid, there is no "bsd.init.mk" or "bsd.links.mk" in /usr/share/mk. >> >>I have seen no "heads up" or something like that. I have removed the compile directory >>and rerun "config" to no avail. >> >>Any hints? >> >> > The only method that is GUARANTEED to work with source code updates is > described in UPDATING. It is "buildworld" followed by "buildkernel". > > This particular problem is caused by your /usr/share/mk stuff being not > in sync with the source tree. To work around this (if you really want > to build only your kernel from fresh sources), you need to: > > cd /usr/src/share/mk && make install > > Then continue with the kernel build config(8) way. > > Or use "buildkernel" that, as I said, should work all the time (it > takes care of picking up the correct share/mk files from the source > tree). If it does not work, try precede it with "buildworld" (it > will build the new version of config(8)). If this does not help, > then report it as a bug. This isn't completely true. I just tried a buildworld and it is dying about 90% of the way thru the build. I also tried your work around and it did not work in this case. I see the message ===> share/mk make: don't know how to make bsd.init.mk. Stop *** Error code 2 Kent > > > Cheers, > -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 6:30:18 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D64A337B400 for ; Thu, 18 Jul 2002 06:30:14 -0700 (PDT) Received: from cc-gw.1anetworks.net (cc-gw.1anetworks.net [193.243.179.83]) by mx1.FreeBSD.org (Postfix) with SMTP id E922843E3B for ; Thu, 18 Jul 2002 06:30:13 -0700 (PDT) (envelope-from brian@ukip.com) Received: from BRI (bri.1anetworks.net [212.36.98.200] (may be forged)) by parma.1anetworks.net (8.9.3+Sun/8.9.3) with SMTP id OAA15642 for ; Thu, 18 Jul 2002 14:30:12 +0100 (BST) From: "Bri" To: Subject: wheel and staff user problem Date: Thu, 18 Jul 2002 14:26:12 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have the previous sparc64 snapshot installed and haven't yet upgraded to the lastest one as yet. But when I create a new user for wheel of staff group and then try and traceroute to somewhere from within those users it comes back with this %traceroute www.icq.com traceroute: icmp socket: Operation not permitted all though ping works fine which is also icmp %ping 80.192.165.1 PING 80.192.165.1 (80.192.165.1): 48 data bytes 64 bytes from 80.192.165.1: icmp_seq=0 ttl=255 time=122.848 ms ^C --- 80.192.165.1 ping statistics --- 1 packets transmitted, 1 packets received, 0% packet loss round-trip min/avg/max/stddev = 122.848/122.848/122.848/0.000 ms is this something to do with pam authentification if so how do I fix it for just the wheel group user. Bri, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 6:30:35 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12D1E37B400 for ; Thu, 18 Jul 2002 06:30:28 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC8F143E70 for ; Thu, 18 Jul 2002 06:30:22 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g6IDU5726630; Thu, 18 Jul 2002 16:30:05 +0300 (EEST) (envelope-from ru) Date: Thu, 18 Jul 2002 16:30:05 +0300 From: Ruslan Ermilov To: Kent Stewart Cc: stable@FreeBSD.ORG Subject: Re: HEADS UP: share/mk stuff is being updated (was: Re: bsd.init.mk ?) Message-ID: <20020718133005.GA17957@sunbay.com> References: <1026974131.3d3661b3c9a1c@intranet.consol.de> <20020718115138.GB99249@sunbay.com> <3D36C194.2090607@owt.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qMm9M+Fa2AknHoGS" Content-Disposition: inline In-Reply-To: <3D36C194.2090607@owt.com> User-Agent: Mutt/1.3.99i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --qMm9M+Fa2AknHoGS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 18, 2002 at 06:24:36AM -0700, Kent Stewart wrote: >=20 >=20 > Ruslan Ermilov wrote: >=20 > >Hi! > > > >I am currently in the middle of the process of merging my half-a-year wo= rk > >on the share/mk stuff into RELENG_4. Below is the typical problem people > >have met with this, explanation of the problem, and a quick work-around > >for those who want it quickly. > > > >On Thu, Jul 18, 2002 at 08:35:31AM +0200, Thorsten.Greiner@consol.de wro= te: > > > >>Hello,=20 > >> > >>after cvsuping (just about now from cvsup3.de.freebsd.org) I'm having= =20 > >>problems during "make depend":=20 > >> > >>rm -f .newdep=20 > >>make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs mkdep -a -f=20 > >>.newdep -O -pipe -march=3Dpentiumpro -Wall -Wredundant-decls=20 > >>-Wnested-externs -Wstrict-prototypes -Wmissing-prototypes=20 > >>-Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi =20 > >>-nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfilter = =20 > >>-D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=3D2=20 > >>make -V SFILES -V SYSTEM_SFILES | xargs env MKDEP_CPP=3D"cc -E" mkdep = -a=20 > >>-f .newdep -x assembler-with-cpp -DLOCORE -O -pipe -march=3Dpentiumpro= =20 > >>-Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes =20 > >>-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual =20 > >>-fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include= =20 > >>-I../../contrib/ipfilter -D_KERNEL -include opt_global.h -elf =20 > >>-mpreferred-stack-boundary=3D2 rm -f .depend=20 > >>mv -f .newdep .depend=20 > >>cd ../../modules ; env=20 > >>MAKEOBJDIRPREFIX=3D/usr/src/sys/compile/TYBALT/modules=20 > >>MODULES_OVERRIDE=3D"linux sound/snd sound/pcm sound/driver/ich linprocf= s=20 > >>smbfs libiconv libmchain ipfw vn union cd9660 msdos" MACHINE=3Di386 mak= e=20 > >>obj ; env MAKEOBJDIRPREFIX=3D/usr/src/sys/compile/TYBALT/modules=20 > >>MODULES_OVERRIDE=3D"linux sound/snd sound/pcm sound/driver/ich linprocf= s=20 > >>smbfs libiconv libmchain ipfw vn union cd9660 msdos" MACHINE=3Di386 mak= e=20 > >>depend =3D=3D=3D> linux=20 > >>"/usr/src/sys/modules/linux/../../conf/kmod.mk", line 63: Could not fin= d=20 > >>bsd.init.mk "/usr/src/sys/modules/linux/../../conf/kmod.mk", line 190:= =20 > >>Could not find bsd.links.mk make: fatal errors encountered -- cannot=20 > >>continue *** Error code 1=20 > >> > >>Stop in /usr/src/sys/modules.=20 > >>*** Error code 1=20 > >> > >>Stop in /usr/src/sys/compile/TYBALT.=20 > >> > >> > >>The complaint is valid, there is no "bsd.init.mk" or "bsd.links.mk" in= =20 > >>/usr/share/mk.=20 > >>I have seen no "heads up" or something like that. I have removed the=20 > >>compile directory and rerun "config" to no avail.=20 > >> > >>Any hints?=20 > >> > >> > >The only method that is GUARANTEED to work with source code updates is > >described in UPDATING. It is "buildworld" followed by "buildkernel". > > > >This particular problem is caused by your /usr/share/mk stuff being not > >in sync with the source tree. To work around this (if you really want > >to build only your kernel from fresh sources), you need to: > > > > cd /usr/src/share/mk && make install > > > >Then continue with the kernel build config(8) way. > > > >Or use "buildkernel" that, as I said, should work all the time (it > >takes care of picking up the correct share/mk files from the source > >tree). If it does not work, try precede it with "buildworld" (it > >will build the new version of config(8)). If this does not help, > >then report it as a bug. >=20 >=20 > This isn't completely true. I just tried a buildworld and it is dying=20 > about 90% of the way thru the build. I also tried your work around and=20 > it did not work in this case. I see the message >=20 > =3D=3D=3D> share/mk > make: don't know how to make bsd.init.mk. Stop > *** Error code 2 >=20 Then there is probably a problem with your CVSup server lacking some changes. The share/mk/Makefile and share/mk/bsd.init.mk were committed atomically with this commitlog: MFC: bsd.init.mk, don't include bsd.own.mk from sys.mk, assorted fixes. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --qMm9M+Fa2AknHoGS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9NsLdUkv4P6juNwoRAsOYAJ9zJfJ+WVUDBerQTDUhbDWDaX096ACfUvkZ /GMEDZ8K3KIUWau2Xi6vyKA= =CrMX -----END PGP SIGNATURE----- --qMm9M+Fa2AknHoGS-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 7:23:11 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6809337B400; Thu, 18 Jul 2002 07:23:08 -0700 (PDT) Received: from viefep16-int.chello.at (viefep16-int.chello.at [213.46.255.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BC4543E3B; Thu, 18 Jul 2002 07:23:06 -0700 (PDT) (envelope-from ant@overclockers.at) Received: from Deadcell.ant ([212.17.108.240]) by viefep16-int.chello.at (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with ESMTP id <20020718142305.JIGX2227.viefep16-int.chello.at@Deadcell.ant>; Thu, 18 Jul 2002 16:23:05 +0200 Received: from Deadcell.ant (localhost [127.0.0.1]) by Deadcell.ant (8.12.5/8.12.5) with ESMTP id g6IEN4do002212; Thu, 18 Jul 2002 16:23:04 +0200 (CEST) (envelope-from ant@Deadcell.ant) Received: (from ant@localhost) by Deadcell.ant (8.12.5/8.12.5/Submit) id g6IEMx3G002211; Thu, 18 Jul 2002 16:22:59 +0200 (CEST) Date: Thu, 18 Jul 2002 16:22:59 +0200 From: Andreas Ntaflos To: freebsd-questions@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: SGI's STL (Standard Template Library) in base system? Message-ID: <20020718142259.GA2083@Deadcell.ant> References: <20020717153407.GA1646@Deadcell.ant> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020717153407.GA1646@Deadcell.ant> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ok, thanks for answering, I found that it should be enough for a not-really-sophisticated user like me :) Thanks and regards -- Andreas "ant" Ntaflos ant@overclockers.at Vienna, AUSTRIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 7:48:55 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C63A37B400; Thu, 18 Jul 2002 07:48:50 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id A44DD43E3B; Thu, 18 Jul 2002 07:48:49 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id HAA19584; Thu, 18 Jul 2002 07:48:48 -0700 Message-ID: <3D36D550.10800@owt.com> Date: Thu, 18 Jul 2002 07:48:48 -0700 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4.1) Gecko/20020314 Netscape6/6.2.2 X-Accept-Language: en-us, es-mx MIME-Version: 1.0 To: Ruslan Ermilov Cc: stable@FreeBSD.ORG Subject: Re: HEADS UP: share/mk stuff is being updated (was: Re: bsd.init.mk ?) References: <1026974131.3d3661b3c9a1c@intranet.consol.de> <20020718115138.GB99249@sunbay.com> <3D36C194.2090607@owt.com> <20020718133005.GA17957@sunbay.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ruslan Ermilov wrote: > On Thu, Jul 18, 2002 at 06:24:36AM -0700, Kent Stewart wrote: > >> >>Ruslan Ermilov wrote: >> >> >>>Hi! >>> >>>I am currently in the middle of the process of merging my half-a-year work >>>on the share/mk stuff into RELENG_4. Below is the typical problem people >>>have met with this, explanation of the problem, and a quick work-around >>>for those who want it quickly. >>> >>>On Thu, Jul 18, 2002 at 08:35:31AM +0200, Thorsten.Greiner@consol.de wrote: >>> >>> >>>>Hello, >>>> >>>>after cvsuping (just about now from cvsup3.de.freebsd.org) I'm having >>>>problems during "make depend": >>>> >>>>rm -f .newdep >>>>make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs mkdep -a -f >>>>.newdep -O -pipe -march=pentiumpro -Wall -Wredundant-decls >>>>-Wnested-externs -Wstrict-prototypes -Wmissing-prototypes >>>>-Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi >>>>-nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfilter >>>>-D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 >>>>make -V SFILES -V SYSTEM_SFILES | xargs env MKDEP_CPP="cc -E" mkdep -a >>>>-f .newdep -x assembler-with-cpp -DLOCORE -O -pipe -march=pentiumpro >>>>-Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes >>>>-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual >>>>-fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include >>>>-I../../contrib/ipfilter -D_KERNEL -include opt_global.h -elf >>>>-mpreferred-stack-boundary=2 rm -f .depend >>>>mv -f .newdep .depend >>>>cd ../../modules ; env >>>>MAKEOBJDIRPREFIX=/usr/src/sys/compile/TYBALT/modules >>>>MODULES_OVERRIDE="linux sound/snd sound/pcm sound/driver/ich linprocfs >>>>smbfs libiconv libmchain ipfw vn union cd9660 msdos" MACHINE=i386 make >>>>obj ; env MAKEOBJDIRPREFIX=/usr/src/sys/compile/TYBALT/modules >>>>MODULES_OVERRIDE="linux sound/snd sound/pcm sound/driver/ich linprocfs >>>>smbfs libiconv libmchain ipfw vn union cd9660 msdos" MACHINE=i386 make >>>>depend ===> linux >>>>"/usr/src/sys/modules/linux/../../conf/kmod.mk", line 63: Could not find >>>>bsd.init.mk "/usr/src/sys/modules/linux/../../conf/kmod.mk", line 190: >>>>Could not find bsd.links.mk make: fatal errors encountered -- cannot >>>>continue *** Error code 1 >>>> >>>>Stop in /usr/src/sys/modules. >>>>*** Error code 1 >>>> >>>>Stop in /usr/src/sys/compile/TYBALT. >>>> >>>> >>>>The complaint is valid, there is no "bsd.init.mk" or "bsd.links.mk" in >>>>/usr/share/mk. >>>>I have seen no "heads up" or something like that. I have removed the >>>>compile directory and rerun "config" to no avail. >>>> >>>>Any hints? >>>> >>>> >>>> >>>The only method that is GUARANTEED to work with source code updates is >>>described in UPDATING. It is "buildworld" followed by "buildkernel". >>> >>>This particular problem is caused by your /usr/share/mk stuff being not >>>in sync with the source tree. To work around this (if you really want >>>to build only your kernel from fresh sources), you need to: >>> >>> cd /usr/src/share/mk && make install >>> >>>Then continue with the kernel build config(8) way. >>> >>>Or use "buildkernel" that, as I said, should work all the time (it >>>takes care of picking up the correct share/mk files from the source >>>tree). If it does not work, try precede it with "buildworld" (it >>>will build the new version of config(8)). If this does not help, >>>then report it as a bug. >>> >> >>This isn't completely true. I just tried a buildworld and it is dying >>about 90% of the way thru the build. I also tried your work around and >>it did not work in this case. I see the message >> >>===> share/mk >>make: don't know how to make bsd.init.mk. Stop >>*** Error code 2 >> >> > Then there is probably a problem with your CVSup server lacking > some changes. The share/mk/Makefile and share/mk/bsd.init.mk > were committed atomically with this commitlog: > > MFC: bsd.init.mk, don't include bsd.own.mk from sys.mk, assorted fixes. You were right. I was using cvsup16 and when I changed to cvsup13, it spent long time catching up. My local mirror only had the changes to Makefile and none of your other changes. Kent > > > Cheers, > -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 7:53: 3 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B39037B400; Thu, 18 Jul 2002 07:53:00 -0700 (PDT) Received: from aslan.scsiguy.com (aslan.scsiguy.com [63.229.232.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF84543E5E; Thu, 18 Jul 2002 07:52:58 -0700 (PDT) (envelope-from gibbs@scsiguy.com) Received: from scsiguy.com (localhost [127.0.0.1]) by aslan.scsiguy.com (8.12.4/8.11.5) with ESMTP id g6IEptbA076625; Thu, 18 Jul 2002 08:52:10 -0600 (MDT) (envelope-from gibbs@scsiguy.com) Message-Id: <200207181452.g6IEptbA076625@aslan.scsiguy.com> To: "Marc G. Fournier" Cc: freebsd-stable@FreeBSD.ORG, freebsd-scsi@FreeBSD.ORG Subject: Re: Adaptec 39160 Controller in IBM xSeries 360 Server In-Reply-To: Your message of "Thu, 18 Jul 2002 09:35:01 -0300." <20020718092446.F92631-100000@mail1.hub.org> Date: Thu, 18 Jul 2002 08:51:55 -0600 From: "Justin T. Gibbs" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > >I have an xSeries 360 + EXP300 that I'm trying to get up with FreeBSD ... >we picked up a 39160 Controller, which the server itself picks up nicely, >and reports all 14 drives in the EXP300 ... but I can't get FreeBSD to see >the card ... Can you provide pciconf -l output for the machine with the card installed? A verbose boot may also be interesting. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 7:57:44 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5C6D37B400; Thu, 18 Jul 2002 07:57:37 -0700 (PDT) Received: from pimout1-ext.prodigy.net (pimout1-ext.prodigy.net [207.115.63.77]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12A2343E3B; Thu, 18 Jul 2002 07:57:37 -0700 (PDT) (envelope-from vetter_david@sbcglobal.net) Received: from handbasket (adsl-63-195-109-194.dsl.snfc21.pacbell.net [63.195.109.194]) by pimout1-ext.prodigy.net (8.11.0/8.11.0) with SMTP id g6IEvZQ71600; Thu, 18 Jul 2002 10:57:35 -0400 Message-ID: <002301c22e6b$6d467e70$c26dc33f@handbasket> From: "David" To: , "John Prince" Cc: "John Prince" , References: <5.1.0.14.2.20020717143529.00abad40@popmail.ct.lodgenet.com> <5.1.0.14.2.20020717143529.00abad40@popmail.ct.lodgenet.com> <5.1.0.14.2.20020718081717.03024c50@popmail.ct.lodgenet.com> Subject: Re: ATA-Atapi read_big Date: Thu, 18 Jul 2002 07:57:12 -0700 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 6.00.2600.0000 X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "John Prince" Subject: Re: ATA-Atapi read_big > Hi Bruce.. > Thanks, and yes I saw it.. > The SPLX changes did not help. > A stable build as of Yesterday > (approx 9:40 CST) did not change anything. > > Thanks. > --john > > At 03:15 PM 7/17/2002 -0700, Bruce A. Mah wrote: > >If memory serves me right, John Prince wrote: > > > > > Not wanting to resurrect a dead horse, and > > > please do not refer me to the ERATTA page... > > > > > > Is anyone else looking/still looking into this problem? > > > Is Soren back yet? > > > >Did you see this patch posted to stable@? > > > >Message-id: <200207122338.aa27236@salmon.maths.tcd.ie> > > > >It was committed three days ago as rev. 1.46.2.14 of > >src/sys/dev/ata/atapi-all.c. Does a more recent 4-STABLE build work > >for you now? > > > >Bruce. > > I saw the same thing on my K6-2 300 machine. However, I added the following to /boot/loader.conf and the errors went away immediatly. hw.ata.ata_dma="1" hw.ata.atapi_dma="1" I hadn't even realized that the on-board IDE supported DMA unitl after I upgraded to a post 4.6 kernel and saw the drives were being accessed in ATA33 mode. David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 8:47: 3 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D65937B400 for ; Thu, 18 Jul 2002 08:46:59 -0700 (PDT) Received: from fep3.cogeco.net (smtp.cogeco.net [216.221.81.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6C8F43E58 for ; Thu, 18 Jul 2002 08:46:54 -0700 (PDT) (envelope-from markd@cogeco.ca) Received: from promethium (d141-146-131.home.cgocable.net [24.141.146.131]) by fep3.cogeco.net (Postfix) with ESMTP id 9C76220A9 for ; Thu, 18 Jul 2002 11:46:53 -0400 (EDT) Reply-To: From: "Mark D" To: Subject: RE: Kernel config problem with 4.6-STABLE... [solution] Date: Thu, 18 Jul 2002 11:46:56 -0400 Message-ID: <000601c22e72$58b76a80$fb00000a@promethium> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 In-Reply-To: <5.1.0.14.0.20020717152215.00a79df0@dns1.popstick.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If anyone is interested, I have the solution. After the buildworld I configured my kernel the "old way" (config KERNEL; make depend;make;make install). Using Make buildkernel KERNCONF=KERNEL;make installkernel KERNCONF=KERNEL worked nicely. Maybe it's not the perfect solution, but it did the job and I'm not complaining. Thanks for the help. - Mark D At 12:42 AM 7/17/2002 -0400, Mark D wrote: >I CVSup'd to 4.6-STABLE today and after a buildworld I tried to make my >custom kernel (that I've made a dozen times - and no the hardware >hasn't >changed) and received this error (below). I tried it again after a make >clean and still ran into this. Google wasn't too much help. If anyone >has any suggestions I'd greatly appreciate a response (I'm not >subscribed to -stable, so if it's not too much trouble, would you >respond to this address ;) > > > > > >- >Mark D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 8:49:52 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D79E837B400; Thu, 18 Jul 2002 08:49:47 -0700 (PDT) Received: from smtp2.southeast.rr.com (smtp2.southeast.rr.com [24.93.67.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5EE743E3B; Thu, 18 Jul 2002 08:49:40 -0700 (PDT) (envelope-from bts@fake.com) Received: from mail7.nc.rr.com (fe7 [24.93.67.54]) by smtp2.southeast.rr.com (8.12.5/8.12.2) with ESMTP id g6IF0mAY015690; Thu, 18 Jul 2002 11:00:49 -0400 (EDT) Received: from this.is.fake.com ([66.26.254.93]) by mail7.nc.rr.com with Microsoft SMTPSVC(5.5.1877.757.75); Thu, 18 Jul 2002 09:50:39 -0400 Received: by this.is.fake.com (Postfix, from userid 111) id 70DCBBB2C; Thu, 18 Jul 2002 09:50:28 -0400 (EDT) Content-Type: text/plain; charset="iso-8859-1" From: "Brian T.Schellenberger" To: stable@freebsd.org, Julian Elischer Subject: softupdates: any way to force sync? Date: Thu, 18 Jul 2002 09:50:27 -0400 X-Mailer: KMail [version 1.3] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020718135028.70DCBBB2C@this.is.fake.com> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have been running into some issues with the time it takes softupdates to fully finish updating. Recently I deleted a lot of files (about 3G worth of files, actually), and it took over five minutes to really get the disk space back. Since I wanted to start up a process to re-fill the disk space, this was a pain: the other process kept dying because it ran out of disk space. Others have posted about similar difficulties with backups. Of course backing up a live filesystem can never be 100%, but it was in practical terms closer before softupdates came along. And yet, most of the time I *love* softupdates. It makes the system tolerable to use while turning write caching off, which makes me feel a whole lot safer. I've not had any (non-hardware-related) problems with disk corruption since I started running softupdates and I had had corrupt filesystems mulitiple times before. So . . . What I'd like is a command like "syncupdates" or something that would synchronosly force all the pending softupdates updates to update and return only when that was complete. Then when I had the (rare) occaisons where I really wanted them synced up, they could be synched up but the rest of the time I could still let it update when it pleased. Questions: - Is there any functionality already in the system that I don't know about? - Are there any plans to add it? - If not, I might have a go at it myself. Other than your code and the original paper are there any references or information that I should have in hand? - And would you, Julian, be willing to review whatever I might come up with and possibly commit it if it looks plausible? (I don't run current so whatever patches I'd come up with would be against -stable, but I presume that doing a sort of "reverse MFC" to translate them to -current patches wouldn't be terribly difficult.) Please understand that though I've programming for many, many years I've only done the very most trivial of things in the kernel before so I'd bring more enthusiasm than expertise to such an undertaking. I'd actually prefer if this feature just sort of dropped into my lap, but I'm interested enough in the feature to have a go at doing it myself. Thanks for any insight you can offer. -- Brian T. Schellenberger Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org http://www.eff.org http://www.programming-freedom.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 8:51:53 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0389E37B400 for ; Thu, 18 Jul 2002 08:51:48 -0700 (PDT) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id D84FE43E5E for ; Thu, 18 Jul 2002 08:51:46 -0700 (PDT) (envelope-from bmah@employees.org) Received: from bmah.dyndns.org ([12.233.149.189]) by sccrmhc02.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020718155146.IFUV6023.sccrmhc02.attbi.com@bmah.dyndns.org>; Thu, 18 Jul 2002 15:51:46 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.5/8.12.5) with ESMTP id g6IFpjeU076792; Thu, 18 Jul 2002 08:51:45 -0700 (PDT) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.5/8.12.5/Submit) id g6IFpduG076791; Thu, 18 Jul 2002 08:51:39 -0700 (PDT) Message-Id: <200207181551.g6IFpduG076791@intruder.bmah.org> X-Mailer: exmh version 2.5+ 20020506 with nmh-1.0.4 To: Michiel Boland Cc: stable@FreeBSD.org Subject: Re: RELENG_4_4 merges In-Reply-To: <20020715152201.N38467-100000@carmel.diva.nl> References: <20020715152201.N38467-100000@carmel.diva.nl> Comments: In-reply-to Michiel Boland message dated "Mon, 15 Jul 2002 23:21:02 +0200." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_978702601P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Thu, 18 Jul 2002 08:51:39 -0700 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --==_Exmh_978702601P Content-Type: text/plain; charset=us-ascii If memory serves me right, Michiel Boland wrote: > Can someone explain the sudden rush of fixes into the RELENG_4_4 branch? > For instance, just exactly what good does the BIND 8.3.3 merge do? > Surely people who want to run BIND 8.3.3 on RELENG_4_4 can use the port. > Please correct me if I'm wrong, but I thought the 'remote buffer overrun' > bug in earlier BIND versions was in libbind.a, which isn't even installed > on a stock FreeBSD system, as far as I can see. RELENG_4_4 is getting some security fixes. I don't see why you're calling this a "sudden rush"...I'm seeing about four different bugfixes going in (three of them are the result of security advisories). Note that all of these bugs surfaced around the same time. Technically, this branch isn't even officially supported by the security team, but it is getting some very conservative updates due to the interest of one of the committers who has the time and resources to help the security team keep it updated. > Just exactly what's next? Are we going to see merges of things like > sendmail 8.12.3 into RELENG_4_4!?!? New functionality is not the point of a security-fix branch. It's extremely unlikely that sendmail-8.12.X would be imported to RELENG_4_4. > I'm just trying to get things clear here. Perhaps I'm missing the point > completely (as usual). But I would think that this continuous merging of > stuff into RELENG_4_4 creates a maintenance nightmare for everyone who > runs off this branch. It's not like somebody's holding a gun to your head and forcing you to update your RELENG_4_4 machines. Bruce. --==_Exmh_978702601P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) Comment: Exmh version 2.5+ 20020506 iD8DBQE9NuQL2MoxcVugUsMRAqQ7AJ9FY09zAoLK4Sp7YuvsAbTw3IPrzgCgppzO awoAe5o05AXkiNmYVZyUbgE= =5d9a -----END PGP SIGNATURE----- --==_Exmh_978702601P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 9: 6: 0 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5F1137B400 for ; Thu, 18 Jul 2002 09:05:56 -0700 (PDT) Received: from nebula.wanadoo.fr (ca-sqy-4-137.abo.wanadoo.fr [80.8.57.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F3AC43E72 for ; Thu, 18 Jul 2002 09:05:54 -0700 (PDT) (envelope-from dak@wanadoo.fr) Received: from nebula.wanadoo.fr (localhost [127.0.0.1]) by nebula.wanadoo.fr (8.12.5/8.12.5) with ESMTP id g6IG3AZB001951 for ; Thu, 18 Jul 2002 18:03:10 +0200 (CEST) (envelope-from dak@nebula.wanadoo.fr) Received: (from dak@localhost) by nebula.wanadoo.fr (8.12.5/8.12.5/Submit) id g6IG3AG1001950 for stable@FreeBSD.org; Thu, 18 Jul 2002 18:03:10 +0200 (CEST) Date: Thu, 18 Jul 2002 18:03:10 +0200 From: =?unknown-8bit?Q?Aur=E9lien?= Nephtali To: stable@FreeBSD.org Subject: VIA VT82C686A and getting temperature of the motherboard Message-ID: <20020718160310.GA1881@nebula> Mime-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I'm interested in getting infos about the heat into my computer (a Compaq Presario Serie 1200) so i read 'LINT', and various man such as viapm, smb, smbus etc. Finally i get a kernel config file with: device smbus device smb device viapm device iicbb device iicbus and in dmesg: viapropm0: port 0x8080-0x808f at device 7.4 on pci0 smb0: on smbus0 According to me, everything seems OK, but lmmon and healthd give me some strange answers... First when using /dev/smb0, they tell me: 'IOCTL: Invalid argument' or when using the /dev/io they give me wrong values (like 255°C into the computer.. :>) So, my questions are: - does my motherboard support sensors (temperature for example) ? - did i make something wrong ? here is a 'dmesg | grep VIA': isab0: at device 7.0 on pci0 atapci0: port 0x1420-0x142f at device 7.1 on pci0 pci0: at 7.2 irq 11 viapropm0: port 0x8080-0x808f at device 7.4 on pci0 pcm0: port 0x1430-0x1433,0x1434-0x1437,0x1000-0x10ff irq 9 at device 7.5 on pci0 Thanks in advance. -- Aurélien To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 9: 9:40 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFACA37B400; Thu, 18 Jul 2002 09:09:34 -0700 (PDT) Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 488AC43E65; Thu, 18 Jul 2002 09:09:33 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by earth.hub.org (Postfix) with ESMTP id 774F62CC6CA; Thu, 18 Jul 2002 13:09:25 -0300 (ADT) Date: Thu, 18 Jul 2002 13:09:25 -0300 (ADT) From: "Marc G. Fournier" To: "Justin T. Gibbs" Cc: freebsd-stable@FreeBSD.ORG, Subject: Re: Adaptec 39160 Controller in IBM xSeries 360 Server In-Reply-To: <200207181452.g6IEptbA076625@aslan.scsiguy.com> Message-ID: <20020718130831.B92633-100000@mail1.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 18 Jul 2002, Justin T. Gibbs wrote: > > > >I have an xSeries 360 + EXP300 that I'm trying to get up with FreeBSD ... > >we picked up a 39160 Controller, which the server itself picks up nicely, > >and reports all 14 drives in the EXP300 ... but I can't get FreeBSD to see > >the card ... > > Can you provide pciconf -l output for the machine with the card installed? > A verbose boot may also be interesting. nemesis# pciconf -l chip0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x03021014 rev=0x02 hdr=0x00 none0@pci0:1:0: class=0x030000 card=0x01c51014 chip=0x8a225333 rev=0x06 hdr=0x00 chip1@pci0:2:0: class=0x068000 card=0x01131014 chip=0x010f1014 rev=0x00 hdr=0x00 fxp0@pci0:3:0: class=0x020000 card=0x024d1014 chip=0x12298086 rev=0x08 hdr=0x00 ahc0@pci0:4:0: class=0x010000 card=0x02011014 chip=0x008f9005 rev=0x02 hdr=0x00 none1@pci0:6:0: class=0x080800 card=0x02471014 chip=0x02461014 rev=0x00 hdr=0x00 isab0@pci0:15:0: class=0x060100 card=0x02001166 chip=0x02001166 rev=0x50 hdr=0x00 none2@pci0:15:1: class=0x01018a card=0x00000000 chip=0x02111166 rev=0x00 hdr=0x00 ohci0@pci0:15:2: class=0x0c0310 card=0x02201166 chip=0x02201166 rev=0x04 hdr=0x00 I'll do a verbose boot up next and send that in too ... but figured I could get this out nice and fast ... Oh wait, is that what that 'none1' and 'none2' are?? I just noticed those ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 9:16:13 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CB0537B401; Thu, 18 Jul 2002 09:16:09 -0700 (PDT) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 2A29B43E70; Thu, 18 Jul 2002 09:16:08 -0700 (PDT) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 18 Jul 2002 17:16:07 +0100 (BST) Date: Thu, 18 Jul 2002 17:16:06 +0100 From: David Malone To: "Brian T.Schellenberger" Cc: stable@freebsd.org, Julian Elischer Subject: Re: softupdates: any way to force sync? Message-ID: <20020718161606.GA43288@walton.maths.tcd.ie> References: <20020718135028.70DCBBB2C@this.is.fake.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020718135028.70DCBBB2C@this.is.fake.com> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jul 18, 2002 at 09:50:27AM -0400, Brian T.Schellenberger wrote: > - Is there any functionality already in the system that I don't know about? Running sync(9) a speads up the flushing of writes, AFAIK. The problem where a disk seems to be full because of pending softupdates changes has been fixed in -current, but I don't think the fix has been brought into -stable yet. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 9:17:55 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 744D337B400; Thu, 18 Jul 2002 09:17:51 -0700 (PDT) Received: from mail.freebsdmall.com (www.freebsdmall.com [66.220.2.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45F0743E58; Thu, 18 Jul 2002 09:17:51 -0700 (PDT) (envelope-from murray@freebsdmall.com) Received: by mail.freebsdmall.com (Postfix, from userid 2074) id 103382E883; Thu, 18 Jul 2002 09:17:51 -0700 (PDT) Date: Thu, 18 Jul 2002 09:17:50 -0700 From: Murray Stokely To: stable@FreeBSD.org Cc: re@FreeBSD.org Subject: 4.6.1 RC2 (i386) Message-ID: <20020718091750.N92364@freebsdmall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG A new RC is available for i386 with a full ISO image with ports, documentation, and packages. Please download and help test this release candidate. An Alpha release candidate will soon be available. (thanks John!) ftp.FreeBSD.org/pub/FreeBSD/releases/i386/4.6.1-RC2 ftp.FreeBSD.org/pub/FreeBSD/releases/i386/ISO-IMAGES/4.6.1-RC2.iso - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 9:37:43 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 359E237B400; Thu, 18 Jul 2002 09:37:16 -0700 (PDT) Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AED943E4A; Thu, 18 Jul 2002 09:37:15 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by earth.hub.org (Postfix) with ESMTP id BE2172CC6CA; Thu, 18 Jul 2002 13:37:07 -0300 (ADT) Date: Thu, 18 Jul 2002 13:37:07 -0300 (ADT) From: "Marc G. Fournier" To: "Justin T. Gibbs" Cc: freebsd-stable@FreeBSD.ORG, Subject: Re: Adaptec 39160 Controller in IBM xSeries 360 Server In-Reply-To: <20020718130831.B92633-100000@mail1.hub.org> Message-ID: <20020718133545.V92633-200000@mail1.hub.org> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-684807737-1027010227=:92633" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-684807737-1027010227=:92633 Content-Type: TEXT/PLAIN; charset=US-ASCII Okay, attached is the dmesg.boot file after a boot -v ... hope this helps ... On Thu, 18 Jul 2002, Marc G. Fournier wrote: > On Thu, 18 Jul 2002, Justin T. Gibbs wrote: > > > > > > >I have an xSeries 360 + EXP300 that I'm trying to get up with FreeBSD ... > > >we picked up a 39160 Controller, which the server itself picks up nicely, > > >and reports all 14 drives in the EXP300 ... but I can't get FreeBSD to see > > >the card ... > > > > Can you provide pciconf -l output for the machine with the card installed? > > A verbose boot may also be interesting. > > nemesis# pciconf -l > chip0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x03021014 rev=0x02 hdr=0x00 > none0@pci0:1:0: class=0x030000 card=0x01c51014 chip=0x8a225333 rev=0x06 hdr=0x00 > chip1@pci0:2:0: class=0x068000 card=0x01131014 chip=0x010f1014 rev=0x00 hdr=0x00 > fxp0@pci0:3:0: class=0x020000 card=0x024d1014 chip=0x12298086 rev=0x08 hdr=0x00 > ahc0@pci0:4:0: class=0x010000 card=0x02011014 chip=0x008f9005 rev=0x02 hdr=0x00 > none1@pci0:6:0: class=0x080800 card=0x02471014 chip=0x02461014 rev=0x00 hdr=0x00 > isab0@pci0:15:0: class=0x060100 card=0x02001166 chip=0x02001166 rev=0x50 hdr=0x00 > none2@pci0:15:1: class=0x01018a card=0x00000000 chip=0x02111166 rev=0x00 hdr=0x00 > ohci0@pci0:15:2: class=0x0c0310 card=0x02201166 chip=0x02201166 rev=0x04 hdr=0x00 > > > I'll do a verbose boot up next and send that in too ... but figured I > could get this out nice and fast ... > > Oh wait, is that what that 'none1' and 'none2' are?? I just noticed those > ... > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > --0-684807737-1027010227=:92633 Content-Type: TEXT/PLAIN; charset=US-ASCII; name="dmesg.boot" Content-Transfer-Encoding: BASE64 Content-ID: <20020718133707.Q92633@mail1.hub.org> Content-Description: Content-Disposition: attachment; filename="dmesg.boot" Q29weXJpZ2h0IChjKSAxOTkyLTIwMDIgVGhlIEZyZWVCU0QgUHJvamVjdC4N CkNvcHlyaWdodCAoYykgMTk3OSwgMTk4MCwgMTk4MywgMTk4NiwgMTk4OCwg MTk4OSwgMTk5MSwgMTk5MiwgMTk5MywgMTk5NA0KCVRoZSBSZWdlbnRzIG9m IHRoZSBVbml2ZXJzaXR5IG9mIENhbGlmb3JuaWEuIEFsbCByaWdodHMgcmVz ZXJ2ZWQuDQpGcmVlQlNEIDQuNi1TVEFCTEUgIzE6IFR1ZSBKdWwgMTYgMTY6 MTI6MDcgQURUIDIwMDINCiAgICByb290QGRlbWV0ZXIuYWNhZGlhdS5jYTov dXNyL29iai91c3Ivc3JjL3N5cy9uZW1lc2lzDQpDYWxpYnJhdGluZyBjbG9j ayhzKSAuLi4gVFNDIGNsb2NrOiAxNTAwMjM5NzQ4IEh6LCBpODI1NCBjbG9j azogMTE5MzE3MyBIeg0KQ0xLX1VTRV9JODI1NF9DQUxJQlJBVElPTiBub3Qg c3BlY2lmaWVkIC0gdXNpbmcgZGVmYXVsdCBmcmVxdWVuY3kNClRpbWVjb3Vu dGVyICJpODI1NCIgIGZyZXF1ZW5jeSAxMTkzMTgyIEh6DQpDTEtfVVNFX1RT Q19DQUxJQlJBVElPTiBub3Qgc3BlY2lmaWVkIC0gdXNpbmcgb2xkIGNhbGli cmF0aW9uIG1ldGhvZA0KQ1BVOiBQZW50aXVtIDQgKDE1MDAuMjYtTUh6IDY4 Ni1jbGFzcyBDUFUpDQogIE9yaWdpbiA9ICJHZW51aW5lSW50ZWwiICBJZCA9 IDB4ZjExICBTdGVwcGluZyA9IDENCiAgRmVhdHVyZXM9MHgzZmViZmJmZjxG UFUsVk1FLERFLFBTRSxUU0MsTVNSLFBBRSxNQ0UsQ1g4LEFQSUMsU0VQLE1U UlIsUEdFLE1DQSxDTU9WLFBBVCxQU0UzNixDTEZMVVNILERUUyxBQ1BJLE1N WCxGWFNSLFNTRSxTU0UyLFNTLDxiMjg+LEFDQz4NCnJlYWwgbWVtb3J5ICA9 IDM3NDIyNzM1MzYgKDM2NTQ1NjRLIGJ5dGVzKQ0KUGh5c2ljYWwgbWVtb3J5 IGNodW5rKHMpOg0KMHgwMDAwMTAwMCAtIDB4MDAwOWNmZmYsIDYzODk3NiBi eXRlcyAoMTU2IHBhZ2VzKQ0KMHgwMDJkZTAwMCAtIDB4ZGYwZTBmZmYsIDM3 MzkyMzQzMDQgYnl0ZXMgKDkxMjg5OSBwYWdlcykNCmF2YWlsIG1lbW9yeSA9 IDM2NDUyMjcwMDggKDM1NTk3OTJLIGJ5dGVzKQ0KQVBJQ19JTzogTVAgdGFi bGUgYnJva2VuOiA4MjU5LT5BUElDIGVudHJ5IG1pc3NpbmchDQpQcm9ncmFt bWluZyA1MSBwaW5zIGluIElPQVBJQyAjMA0KSU9BUElDICMwIGludHBpbiAy IC0+IGlycSAwDQpJT0FQSUMgIzAgaW50cGluIDM2IC0+IGlycSA5DQpTTVA6 IENQVTAgYXBpY19pbml0aWFsaXplKCk6DQogICAgIGxpbnQwOiAweDAwMDAw NzAwIGxpbnQxOiAweDAwMDEwNDAwIFRQUjogMHgwMDAwMDAxMCBTVlI6IDB4 MDAwMDAxZmYNCkZyZWVCU0QvU01QOiBNdWx0aXByb2Nlc3NvciBtb3RoZXJi b2FyZA0KIGNwdTAgKEJTUCk6IGFwaWMgaWQ6ICAwLCB2ZXJzaW9uOiAweDAw MDUwMDE0LCBhdCAweGZlZTAwMDAwDQogY3B1MSAoQVApOiAgYXBpYyBpZDog IDQsIHZlcnNpb246IDB4MDAwNTAwMTQsIGF0IDB4ZmVlMDAwMDANCiBpbzAg KEFQSUMpOiBhcGljIGlkOiAxNCwgdmVyc2lvbjogMHgwMDMyMDAxMSwgYXQg MHhmZWNhMDAwMA0KYmlvczMyOiBGb3VuZCBCSU9TMzIgU2VydmljZSBEaXJl Y3RvcnkgaGVhZGVyIGF0IDB4YzAwZmQyZDANCmJpb3MzMjogRW50cnkgPSAw eGZkMmUxIChjMDBmZDJlMSkgIFJldiA9IDAgIExlbiA9IDENCnBjaWJpb3M6 IFBDSSBCSU9TIGVudHJ5IGF0IDB4ZDMxYw0KcG5wYmlvczogRm91bmQgUG5Q IEJJT1MgZGF0YSBhdCAweGMwMGZkY2YwDQpwbnBiaW9zOiBFbnRyeSA9IGYw MDAwOjFlOWQgIFJldiA9IDEuMA0KT3RoZXIgQklPUyBzaWduYXR1cmVzIGZv dW5kOg0KQUNQSTogMDAwZmRmZTANClByZWxvYWRlZCBlbGYga2VybmVsICJr ZXJuZWwiIGF0IDB4YzAyYjQwMDAuDQpTTVA6IENQVTAgYnNwX2FwaWNfY29u ZmlndXJlKCk6DQogICAgIGxpbnQwOiAweDAwMDEwNzAwIGxpbnQxOiAweDAw MDAwNDAwIFRQUjogMHgwMDAwMDAxMCBTVlI6IDB4MDAwMDAxZmYNCnBjaV9v cGVuKDEpOgltb2RlIDEgYWRkciBwb3J0ICgweDBjZjgpIGlzIDB4ODAwMDEw MTANCnBjaV9vcGVuKDFhKToJbW9kZTFyZXM9MHg4MDAwMDAwMCAoMHg4MDAw MDAwMCkNCnBjaV9jZmdjaGVjazoJZGV2aWNlIDAgW2NsYXNzPTA2MDAwMF0g W2hkcj0wMF0gaXMgdGhlcmUgKGlkPTAzMDIxMDE0KQ0KbnB4MDogPG1hdGgg cHJvY2Vzc29yPiBvbiBtb3RoZXJib2FyZA0KbnB4MDogSU5UIDE2IGludGVy ZmFjZQ0KcGNpYjA6IDxIb3N0IHRvIFBDSSBicmlkZ2U+IG9uIG1vdGhlcmJv YXJkDQpmb3VuZC0+CXZlbmRvcj0weDEwMTQsIGRldj0weDAzMDIsIHJldmlk PTB4MDINCgljbGFzcz0wNi0wMC0wMCwgaGRydHlwZT0weDAwLCBtZmRldj0w DQoJc3Vib3JkaW5hdGVidXM9MCAJc2Vjb25kYXJ5YnVzPTANCmZvdW5kLT4J dmVuZG9yPTB4NTMzMywgZGV2PTB4OGEyMiwgcmV2aWQ9MHgwNg0KCWNsYXNz PTAzLTAwLTAwLCBoZHJ0eXBlPTB4MDAsIG1mZGV2PTANCglzdWJvcmRpbmF0 ZWJ1cz0wIAlzZWNvbmRhcnlidXM9MA0KCWludHBpbj1hLCBpcnE9MjU1DQoJ bWFwWzEwXTogdHlwZSAxLCByYW5nZSAzMiwgYmFzZSBmYmY4MDAwMCwgc2l6 ZSAxOQ0KCW1hcFsxNF06IHR5cGUgMSwgcmFuZ2UgMzIsIGJhc2UgZjAwMDAw MDAsIHNpemUgMjcNCklPQVBJQyAjMCBpbnRwaW4gMTcgLT4gaXJxIDINCkZy ZWVpbmcgKE5PVCBpbXBsZW1lbnRlZCkgcmVkaXJlY3RlZCBQQ0kgaXJxIDQu DQpmb3VuZC0+CXZlbmRvcj0weDEwMTQsIGRldj0weDAxMGYsIHJldmlkPTB4 MDANCgljbGFzcz0wNi04MC0wMCwgaGRydHlwZT0weDAwLCBtZmRldj0wDQoJ c3Vib3JkaW5hdGVidXM9MCAJc2Vjb25kYXJ5YnVzPTANCglpbnRwaW49YSwg aXJxPTINCgltYXBbMTBdOiB0eXBlIDEsIHJhbmdlIDY0LCBiYXNlIGZiYzAw MDAwLCBzaXplIDIxDQoJbWFwWzE4XTogdHlwZSAxLCByYW5nZSAzMiwgYmFz ZSAwMDAwMTgwMCwgc2l6ZSAgNw0KSU9BUElDICMwIGludHBpbiA0MiAtPiBp cnEgMw0KRnJlZWluZyAoTk9UIGltcGxlbWVudGVkKSByZWRpcmVjdGVkIFBD SSBpcnEgNS4NCmZvdW5kLT4JdmVuZG9yPTB4ODA4NiwgZGV2PTB4MTIyOSwg cmV2aWQ9MHgwOA0KCWNsYXNzPTAyLTAwLTAwLCBoZHJ0eXBlPTB4MDAsIG1m ZGV2PTANCglzdWJvcmRpbmF0ZWJ1cz0wIAlzZWNvbmRhcnlidXM9MA0KCWlu dHBpbj1hLCBpcnE9Mw0KCW1hcFsxMF06IHR5cGUgMSwgcmFuZ2UgMzIsIGJh c2UgZmJmN2YwMDAsIHNpemUgMTINCgltYXBbMTRdOiB0eXBlIDEsIHJhbmdl IDMyLCBiYXNlIDAwMDAxODgwLCBzaXplICA2DQoJbWFwWzE4XTogdHlwZSAx LCByYW5nZSAzMiwgYmFzZSBmYmUwMDAwMCwgc2l6ZSAyMA0KSU9BUElDICMw IGludHBpbiA0MSAtPiBpcnEgNQ0KRnJlZWluZyAoTk9UIGltcGxlbWVudGVk KSByZWRpcmVjdGVkIFBDSSBpcnEgOS4NCmZvdW5kLT4JdmVuZG9yPTB4OTAw NSwgZGV2PTB4MDA4ZiwgcmV2aWQ9MHgwMg0KCWNsYXNzPTAxLTAwLTAwLCBo ZHJ0eXBlPTB4MDAsIG1mZGV2PTANCglzdWJvcmRpbmF0ZWJ1cz0wIAlzZWNv bmRhcnlidXM9MA0KCWludHBpbj1hLCBpcnE9NQ0KCW1hcFsxMF06IHR5cGUg MSwgcmFuZ2UgMzIsIGJhc2UgMDAwMDE5MDAsIHNpemUgIDgNCgltYXBbMTRd OiB0eXBlIDEsIHJhbmdlIDY0LCBiYXNlIGZiZjdlMDAwLCBzaXplIDEyDQpm b3VuZC0+CXZlbmRvcj0weDEwMTQsIGRldj0weDAyNDYsIHJldmlkPTB4MDAN CgljbGFzcz0wOC0wOC0wMCwgaGRydHlwZT0weDAwLCBtZmRldj0wDQoJc3Vi b3JkaW5hdGVidXM9MCAJc2Vjb25kYXJ5YnVzPTANCmZvdW5kLT4JdmVuZG9y PTB4MTE2NiwgZGV2PTB4MDIwMCwgcmV2aWQ9MHg1MA0KCWNsYXNzPTA2LTAx LTAwLCBoZHJ0eXBlPTB4MDAsIG1mZGV2PTENCglzdWJvcmRpbmF0ZWJ1cz0w IAlzZWNvbmRhcnlidXM9MA0KZm91bmQtPgl2ZW5kb3I9MHgxMTY2LCBkZXY9 MHgwMjExLCByZXZpZD0weDAwDQoJY2xhc3M9MDEtMDEtOGEsIGhkcnR5cGU9 MHgwMCwgbWZkZXY9MQ0KCXN1Ym9yZGluYXRlYnVzPTAgCXNlY29uZGFyeWJ1 cz0wDQoJbWFwWzIwXTogdHlwZSAxLCByYW5nZSAzMiwgYmFzZSAwMDAwMDcw MCwgc2l6ZSAgNA0KSU9BUElDICMwIGludHBpbiAxNiAtPiBpcnEgNw0KRnJl ZWluZyAoTk9UIGltcGxlbWVudGVkKSByZWRpcmVjdGVkIFBDSSBpcnEgMy4N CmZvdW5kLT4JdmVuZG9yPTB4MTE2NiwgZGV2PTB4MDIyMCwgcmV2aWQ9MHgw NA0KCWNsYXNzPTBjLTAzLTEwLCBoZHJ0eXBlPTB4MDAsIG1mZGV2PTENCglz dWJvcmRpbmF0ZWJ1cz0wIAlzZWNvbmRhcnlidXM9MA0KCWludHBpbj1hLCBp cnE9Nw0KCW1hcFsxMF06IHR5cGUgMSwgcmFuZ2UgMzIsIGJhc2UgZmJmN2Qw MDAsIHNpemUgMTINCnBjaTA6IDxQQ0kgYnVzPiBvbiBwY2liMA0KcGNpMDog PFMzIFNhdmFnZSA0IGdyYXBoaWNzIGFjY2VsZXJhdG9yPiAodmVuZG9yPTB4 NTMzMywgZGV2PTB4OGEyMikgYXQgMS4wDQpjaGlwMTogPFBDSSB0byBPdGhl ciBicmlkZ2UgKHZlbmRvcj0xMDE0IGRldmljZT0wMTBmKT4gcG9ydCAweDE4 MDAtMHgxODdmIG1lbSAweGZiYzAwMDAwLTB4ZmJkZmZmZmYgaXJxIDIgYXQg ZGV2aWNlIDIuMCBvbiBwY2kwDQpwY2kwOiA8dW5rbm93biBjYXJkPiAodmVu ZG9yPTB4ODA4NiwgZGV2PTB4MTIyOSkgYXQgMy4wIGlycSAzDQphaGMwOiA8 QWRhcHRlYyBhaWM3ODkyIFVsdHJhMTYwIFNDU0kgYWRhcHRlcj4gcG9ydCAw eDE5MDAtMHgxOWZmIG1lbSAweGZiZjdlMDAwLTB4ZmJmN2VmZmYgaXJxIDUg YXQgZGV2aWNlIDQuMCBvbiBwY2kwDQphaGMwOiBSZWFkaW5nIFNFRVBST00u Li5kb25lLg0KYWhjMDogTWFudWFsIExWRCBUZXJtaW5hdGlvbg0KYWhjMDog QklPUyBlZXByb20gaXMgcHJlc2VudA0KYWhjMDogU2Vjb25kYXJ5IEhpZ2gg Ynl0ZSB0ZXJtaW5hdGlvbiBFbmFibGVkDQphaGMwOiBTZWNvbmRhcnkgTG93 IGJ5dGUgdGVybWluYXRpb24gRW5hYmxlZA0KYWhjMDogUHJpbWFyeSBMb3cg Qnl0ZSB0ZXJtaW5hdGlvbiBFbmFibGVkDQphaGMwOiBQcmltYXJ5IEhpZ2gg Qnl0ZSB0ZXJtaW5hdGlvbiBFbmFibGVkDQphaGMwOiBEb3dubG9hZGluZyBT ZXF1ZW5jZXIgUHJvZ3JhbS4uLiA0MTkgaW5zdHJ1Y3Rpb25zIGRvd25sb2Fk ZWQNCmFpYzc4OTI6IFVsdHJhMTYwIFdpZGUgQ2hhbm5lbCBBLCBTQ1NJIElk PTcsIDMyLzI1MyBTQ0JzDQpwY2kwOiA8dW5rbm93biBjYXJkPiAodmVuZG9y PTB4MTAxNCwgZGV2PTB4MDI0NikgYXQgNi4wDQppc2FiMDogPFNlcnZlcldv cmtzIElCNjU2NiBQQ0kgdG8gSVNBIGJyaWRnZT4gYXQgZGV2aWNlIDE1LjAg b24gcGNpMA0KaXNhMDogPElTQSBidXM+IG9uIGlzYWIwDQpwY2kwOiA8VW5r bm93biBQQ0kgQVRBIGNvbnRyb2xsZXI+ICh2ZW5kb3I9MHgxMTY2LCBkZXY9 MHgwMjExKSBhdCAxNS4xDQpwY2kwOiA8T0hDSSBVU0IgY29udHJvbGxlcj4g KHZlbmRvcj0weDExNjYsIGRldj0weDAyMjApIGF0IDE1LjIgaXJxIDcNClRy eWluZyBSZWFkX1BvcnQgYXQgMjAzDQpUcnlpbmcgUmVhZF9Qb3J0IGF0IDI0 Mw0KVHJ5aW5nIFJlYWRfUG9ydCBhdCAyODMNClRyeWluZyBSZWFkX1BvcnQg YXQgMmMzDQpUcnlpbmcgUmVhZF9Qb3J0IGF0IDMwMw0KVHJ5aW5nIFJlYWRf UG9ydCBhdCAzNDMNClRyeWluZyBSZWFkX1BvcnQgYXQgMzgzDQpUcnlpbmcg UmVhZF9Qb3J0IGF0IDNjMw0KaXNhX3Byb2JlX2NoaWxkcmVuOiBkaXNhYmxp bmcgUG5QIGRldmljZXMNCmlzYV9wcm9iZV9jaGlsZHJlbjogcHJvYmluZyBu b24tUG5QIGRldmljZXMNCm9ybTA6IDxPcHRpb24gUk9NPiBhdCBpb21lbSAw eGMwMDAwLTB4YzdmZmYgb24gaXNhMA0KYXRrYmRjMDogPEtleWJvYXJkIGNv bnRyb2xsZXIgKGk4MDQyKT4gYXQgcG9ydCAweDYwLDB4NjQgb24gaXNhMA0K YXRrYmQwOiA8QVQgS2V5Ym9hcmQ+IGlycSAxIG9uIGF0a2JkYzANCmF0a2Jk OiB0aGUgY3VycmVudCBrYmQgY29udHJvbGxlciBjb21tYW5kIGJ5dGUgMDA0 NQ0KYXRrYmQ6IGtleWJvYXJkIElEIDB4NDFhYiAoMikNCmtiZDA6IGF0a2Jk MCwgQVQgMTAxLzEwMiAoMiksIGNvbmZpZzoweDAsIGZsYWdzOjB4M2QwMDAw DQpwc20wOiBjdXJyZW50IGNvbW1hbmQgYnl0ZTowMDQ1DQpwc20wOiA8UFMv MiBNb3VzZT4gaXJxIDEyIG9uIGF0a2JkYzANCnBzbTA6IG1vZGVsIEdsaWRl UG9pbnQsIGRldmljZSBJRCAwLTAwLCAzIGJ1dHRvbnMNCnBzbTA6IGNvbmZp ZzowMDAwMDAwMCwgZmxhZ3M6MDAwMDAwMDAsIHBhY2tldCBzaXplOjMNCnBz bTA6IHN5bmNtYXNrOmMwLCBzeW5jYml0czowMA0KdmdhMDogPEdlbmVyaWMg SVNBIFZHQT4gYXQgcG9ydCAweDNjMC0weDNkZiBpb21lbSAweGEwMDAwLTB4 YmZmZmYgb24gaXNhMA0KZmIwOiB2Z2EwLCB2Z2EsIHR5cGU6VkdBICg1KSwg ZmxhZ3M6MHg3MDA3Zg0KZmIwOiBwb3J0OjB4M2MwLTB4M2RmLCBjcnRjOjB4 M2Q0LCBtZW06MHhhMDAwMCAweDIwMDAwDQpmYjA6IGluaXQgbW9kZToyNCwg YmlvcyBtb2RlOjMsIGN1cnJlbnQgbW9kZToyNA0KZmIwOiB3aW5kb3c6MHhj MDBiODAwMCBzaXplOjMyayBncmFuOjMyaywgYnVmOjAgc2l6ZTozMmsNClZH QSBwYXJhbWV0ZXJzIHVwb24gcG93ZXItdXANCjUwIDE4IDEwIDAwIDAwIDAw IDAzIDAwIDAyIDY3IDVmIDRmIDUwIDgyIDU1IDgxIA0KYmYgMWYgMDAgNGYg MGQgMGUgMDAgMDAgMDcgODAgOWMgOGUgOGYgMjggMWYgOTYgDQpiOSBhMyBm ZiAwMCAwMSAwMiAwMyAwNCAwNSAxNCAwNyAzOCAzOSAzYSAzYiAzYyANCjNk IDNlIDNmIDBjIDAwIDBmIDA4IDAwIDAwIDAwIDAwIDAwIDEwIDBlIDAwIGZm IA0KVkdBIHBhcmFtZXRlcnMgaW4gQklPUyBmb3IgbW9kZSAyNA0KNTAgMTgg MTAgMDAgMTAgMDAgMDMgMDAgMDIgNjcgNWYgNGYgNTAgODIgNTUgODEgDQpi ZiAxZiAwMCA0ZiAwZCAwZSAwMCAwMCAwMCAwMCA5YyA4ZSA4ZiAyOCAxZiA5 NiANCmI5IGEzIGZmIDAwIDAxIDAyIDAzIDA0IDA1IDE0IDA3IDM4IDM5IDNh IDNiIDNjIA0KM2QgM2UgM2YgMGMgMDAgMGYgMDggMDAgMDAgMDAgMDAgMDAg MTAgMGUgMDAgZmYgDQpFR0EvVkdBIHBhcmFtZXRlcnMgdG8gYmUgdXNlZCBm b3IgbW9kZSAyNA0KNTAgMTggMTAgMDAgMTAgMDAgMDMgMDAgMDIgNjcgNWYg NGYgNTAgODIgNTUgODEgDQpiZiAxZiAwMCA0ZiAwZCAwZSAwMCAwMCAwMCAw MCA5YyA4ZSA4ZiAyOCAxZiA5NiANCmI5IGEzIGZmIDAwIDAxIDAyIDAzIDA0 IDA1IDE0IDA3IDM4IDM5IDNhIDNiIDNjIA0KM2QgM2UgM2YgMGMgMDAgMGYg MDggMDAgMDAgMDAgMDAgMDAgMTAgMGUgMDAgZmYgDQpzYzA6IDxTeXN0ZW0g Y29uc29sZT4gb24gaXNhMA0Kc2MwOiBWR0EgPDIgdmlydHVhbCBjb25zb2xl cywgZmxhZ3M9MHgyMDA+DQpzYzA6IGZiMCwga2JkMCwgdGVybWluYWwgZW11 bGF0b3I6IHNjIChzeXNjb25zIHRlcm1pbmFsKQ0KZmRjMDogPE5FQyA3MjA2 NUIgb3IgY2xvbmU+IGF0IHBvcnQgMHgzZjAtMHgzZjUsMHgzZjcgaXJxIDYg ZHJxIDIgb24gaXNhMA0KZmRjMDogRklGTyBlbmFibGVkLCA4IGJ5dGVzIHRo cmVzaG9sZA0KZmQwOiA8MTQ0MC1LQiAzLjUiIGRyaXZlPiBvbiBmZGMwIGRy aXZlIDANCmlzYV9wcm9iZV9jaGlsZHJlbjogcHJvYmluZyBQblAgZGV2aWNl cw0KU01QOiBlbmFibGVkIElOVHM6IDEsIDUsIDYsIDEyLCBhcGljX2ltZW46 IDB4MDBmZmVmOWQNCkJJT1MgR2VvbWV0cmllczoNCiAwOjAzZmVmZTNmIDAu LjEwMjI9MTAyMyBjeWxpbmRlcnMsIDAuLjI1ND0yNTUgaGVhZHMsIDEuLjYz PTYzIHNlY3RvcnMNCiAxOjAzZmVmZTNmIDAuLjEwMjI9MTAyMyBjeWxpbmRl cnMsIDAuLjI1ND0yNTUgaGVhZHMsIDEuLjYzPTYzIHNlY3RvcnMNCiAyOjAz ZmVmZTNmIDAuLjEwMjI9MTAyMyBjeWxpbmRlcnMsIDAuLjI1ND0yNTUgaGVh ZHMsIDEuLjYzPTYzIHNlY3RvcnMNCiAzOjAzZmVmZTNmIDAuLjEwMjI9MTAy MyBjeWxpbmRlcnMsIDAuLjI1ND0yNTUgaGVhZHMsIDEuLjYzPTYzIHNlY3Rv cnMNCiA0OjAzZmVmZTNmIDAuLjEwMjI9MTAyMyBjeWxpbmRlcnMsIDAuLjI1 ND0yNTUgaGVhZHMsIDEuLjYzPTYzIHNlY3RvcnMNCiA1OjAzZmVmZTNmIDAu LjEwMjI9MTAyMyBjeWxpbmRlcnMsIDAuLjI1ND0yNTUgaGVhZHMsIDEuLjYz PTYzIHNlY3RvcnMNCiA2OjAzZmVmZTNmIDAuLjEwMjI9MTAyMyBjeWxpbmRl cnMsIDAuLjI1ND0yNTUgaGVhZHMsIDEuLjYzPTYzIHNlY3RvcnMNCiA3OjAz ZmVmZTNmIDAuLjEwMjI9MTAyMyBjeWxpbmRlcnMsIDAuLjI1ND0yNTUgaGVh ZHMsIDEuLjYzPTYzIHNlY3RvcnMNCiAwIGFjY291bnRlZCBmb3INCkRldmlj ZSBjb25maWd1cmF0aW9uIGZpbmlzaGVkLg0KQVBJQ19JTzogVGVzdGluZyA4 MjU0IGludGVycnVwdCBkZWxpdmVyeQ0KQVBJQ19JTzogcm91dGluZyA4MjU0 IHZpYSBJT0FQSUMgIzAgaW50cGluIDINCmJwZjogbG8wIGF0dGFjaGVkDQpX YWl0aW5nIDIgc2Vjb25kcyBmb3IgU0NTSSBkZXZpY2VzIHRvIHNldHRsZQ0K KG5vcGVyaXBoOmFoYzA6MDotMTotMSk6IFNDU0kgYnVzIHJlc2V0IGRlbGl2 ZXJlZC4gMCBTQ0JzIGFib3J0ZWQuDQpTTVA6IEFQIENQVSAjMSBMYXVuY2hl ZCENClNNUDogQ1BVMSBhcGljX2luaXRpYWxpemUoKToNCiAgICAgbGludDA6 IDB4MDAwMTA3MDAgbGludDE6IDB4MDAwMTA0MDAgVFBSOiAweDAwMDAwMDEw IFNWUjogMHgwMDAwMDFmZg0KKGFoYzA6QToxMjowKTogUmVjZWl2ZWQgV0RU UiAxIGZpbHRlcmVkIHRvIDANCihhaGMwOkE6MTI6MCk6IFRhcmdldCBJbml0 aWF0ZWQgV0RUUg0KKGFoYzA6QToxMjowKTogU2VuZGluZyBXRFRSIDANCihh aGMwOkE6MTI6MCk6IFJlY2VpdmVkIFNEVFIgcGVyaW9kIGEsIG9mZnNldCAz Zg0KCUZpbHRlcmVkIHRvIHBlcmlvZCAwLCBvZmZzZXQgMA0KKGFoYzA6QTox MjowKTogVGFyZ2V0IEluaXRpYXRlZCBTRFRSDQooYWhjMDpBOjEyOjApOiBT ZW5kaW5nIFNEVFIgcGVyaW9kIDAsIG9mZnNldCAwDQooYWhjMDpBOjEzOjAp OiBSZWNlaXZlZCBXRFRSIDEgZmlsdGVyZWQgdG8gMA0KKGFoYzA6QToxMzow KTogVGFyZ2V0IEluaXRpYXRlZCBXRFRSDQooYWhjMDpBOjEzOjApOiBTZW5k aW5nIFdEVFIgMA0KKGFoYzA6QToxMzowKTogUmVjZWl2ZWQgU0RUUiBwZXJp b2QgYSwgb2Zmc2V0IDNmDQoJRmlsdGVyZWQgdG8gcGVyaW9kIDAsIG9mZnNl dCAwDQooYWhjMDpBOjEzOjApOiBUYXJnZXQgSW5pdGlhdGVkIFNEVFINCihh aGMwOkE6MTM6MCk6IFNlbmRpbmcgU0RUUiBwZXJpb2QgMCwgb2Zmc2V0IDAN CihhaGMwOkE6MTI6MCk6IFNlbmRpbmcgUFBSIGJ1c193aWR0aCAxLCBwZXJp b2QgOSwgb2Zmc2V0IDdmLCBwcHJfb3B0aW9ucyAyDQooYWhjMDpBOjEyOjAp OiBSZWNlaXZlZCBQUFIgd2lkdGggMSwgcGVyaW9kIDksIG9mZnNldCAzZixv cHRpb25zIDINCglGaWx0ZXJlZCB0byB3aWR0aCAxLCBwZXJpb2QgOSwgb2Zm c2V0IDNmLCBvcHRpb25zIDINCmFoYzA6IHRhcmdldCAxMiB1c2luZyAxNmJp dCB0cmFuc2ZlcnMNCmFoYzA6IHRhcmdldCAxMiBzeW5jaHJvbm91cyBhdCA4 MC4wTUh6IERULCBvZmZzZXQgPSAweDNmDQooYWhjMDpBOjEzOjApOiBTZW5k aW5nIFBQUiBidXNfd2lkdGggMSwgcGVyaW9kIDksIG9mZnNldCA3ZiwgcHBy X29wdGlvbnMgMg0KKGFoYzA6QToxMzowKTogUmVjZWl2ZWQgUFBSIHdpZHRo IDEsIHBlcmlvZCA5LCBvZmZzZXQgM2Ysb3B0aW9ucyAyDQoJRmlsdGVyZWQg dG8gd2lkdGggMSwgcGVyaW9kIDksIG9mZnNldCAzZiwgb3B0aW9ucyAyDQph aGMwOiB0YXJnZXQgMTMgdXNpbmcgMTZiaXQgdHJhbnNmZXJzDQphaGMwOiB0 YXJnZXQgMTMgc3luY2hyb25vdXMgYXQgODAuME1IeiBEVCwgb2Zmc2V0ID0g MHgzZg0KQ3JlYXRpbmcgRElTSyBkYTANCkNyZWF0aW5nIERJU0sgZGExDQpw YXNzMCBhdCBhaGMwIGJ1cyAwIHRhcmdldCA5IGx1biAwDQpwYXNzMDogPElC TSBZR0h2MyBTMiAwPiBGaXhlZCBQcm9jZXNzb3IgU0NTSS0yIGRldmljZSAN CnBhc3MwOiBTZXJpYWwgTnVtYmVyIDENCnBhc3MwOiAzLjMwME1CL3MgdHJh bnNmZXJzDQpwYXNzMSBhdCBhaGMwIGJ1cyAwIHRhcmdldCAxMiBsdW4gMA0K cGFzczE6IDxJQk0tRVNYUyBTVDMzNjYwNUxDICAgICEjIEIyNDM+IEZpeGVk IERpcmVjdCBBY2Nlc3MgU0NTSS0zIGRldmljZSANCnBhc3MxOiBTZXJpYWwg TnVtYmVyIDNGUDExTjRXMDAwMDIyMjg4S1pLDQpwYXNzMTogMTYwLjAwME1C L3MgdHJhbnNmZXJzICg4MC4wMDBNSHosIG9mZnNldCA2MywgMTZiaXQpLCBU YWdnZWQgUXVldWVpbmcgRW5hYmxlZA0KcGFzczIgYXQgYWhjMCBidXMgMCB0 YXJnZXQgMTMgbHVuIDANCnBhc3MyOiA8SUJNLUVTWFMgU1QzMzY2MDVMQyAg ICAhIyBCMjQzPiBGaXhlZCBEaXJlY3QgQWNjZXNzIFNDU0ktMyBkZXZpY2Ug DQpwYXNzMjogU2VyaWFsIE51bWJlciAzRlAxMUpUOTAwMDAyMjI4OUJOQw0K cGFzczI6IDE2MC4wMDBNQi9zIHRyYW5zZmVycyAoODAuMDAwTUh6LCBvZmZz ZXQgNjMsIDE2Yml0KSwgVGFnZ2VkIFF1ZXVlaW5nIEVuYWJsZWQNCnBhc3Mw IGF0IGFoYzAgYnVzIDAgdGFyZ2V0IDkgbHVuIDANCnBhc3MwOiA8SUJNIFlH SHYzIFMyIDA+IEZpeGVkIFByb2Nlc3NvciBTQ1NJLTIgZGV2aWNlIA0KcGFz czA6IFNlcmlhbCBOdW1iZXIgMQ0KcGFzczA6IDMuMzAwTUIvcyB0cmFuc2Zl cnMNCmRhMCBhdCBhaGMwIGJ1cyAwIHRhcmdldCAxMiBsdW4gMA0KZGEwOiA8 SUJNLUVTWFMgU1QzMzY2MDVMQyAgICAhIyBCMjQzPiBGaXhlZCBEaXJlY3Qg QWNjZXNzIFNDU0ktMyBkZXZpY2UgDQpkYTA6IFNlcmlhbCBOdW1iZXIgM0ZQ MTFONFcwMDAwMjIyODhLWksNCmRhMDogMTYwLjAwME1CL3MgdHJhbnNmZXJz ICg4MC4wMDBNSHosIG9mZnNldCA2MywgMTZiaXQpLCBUYWdnZWQgUXVldWVp bmcgRW5hYmxlZA0KZGEwOiAzNDcxNU1CICg3MTA5NjY0MCA1MTIgYnl0ZSBz ZWN0b3JzOiAyNTVIIDYzUy9UIDQ0MjVDKQ0KZGExIGF0IGFoYzAgYnVzIDAg dGFyZ2V0IDEzIGx1biAwDQpkYTE6IDxJQk0tRVNYUyBTVDMzNjYwNUxDICAg ICEjIEIyNDM+IEZpeGVkIERpcmVjdCBBY2Nlc3MgU0NTSS0zIGRldmljZSAN CmRhMTogU2VyaWFsIE51bWJlciAzRlAxMUpUOTAwMDAyMjI4OUJOQw0KZGEx OiAxNjAuMDAwTUIvcyB0cmFuc2ZlcnMgKDgwLjAwME1Ieiwgb2Zmc2V0IDYz LCAxNmJpdCksIFRhZ2dlZCBRdWV1ZWluZyBFbmFibGVkDQpkYTE6IDM0NzE1 TUIgKDcxMDk2NjQwIDUxMiBieXRlIHNlY3RvcnM6IDI1NUggNjNTL1QgNDQy NUMpDQpNb3VudGluZyByb290IGZyb20gdWZzOi9kZXYvZGEwczFhDQpkYTBz MTogdHlwZSAweGE1LCBzdGFydCA2MywgZW5kID0gNzEwODc2MjQsIHNpemUg NzEwODc1NjIgOiBPSw0Kc3RhcnRfaW5pdDogdHJ5aW5nIC9zYmluL2luaXQN Cg== --0-684807737-1027010227=:92633-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 10:40: 7 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 632B837B400 for ; Thu, 18 Jul 2002 10:40:00 -0700 (PDT) Received: from omta05.mta.everyone.net (sitemail3.everyone.net [216.200.145.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id C445143E6E for ; Thu, 18 Jul 2002 10:39:59 -0700 (PDT) (envelope-from kbock@techemail.com) Received: from sitemail.everyone.net (dsnat [216.200.145.62]) by omta05.mta.everyone.net (Postfix) with ESMTP id AF2C948EFA for ; Thu, 18 Jul 2002 10:39:59 -0700 (PDT) Received: by sitemail.everyone.net (Postfix, from userid 99) id A39ED2756; Thu, 18 Jul 2002 10:39:59 -0700 (PDT) Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: 7bit Mime-Version: 1.0 X-Mailer: MIME-tools 5.41 (Entity 5.404) Date: Thu, 18 Jul 2002 10:39:59 -0700 (PDT) From: Kevin Bockman To: freebsd-stable@freebsd.org Subject: su problems with new jails on FreeBSD 4.6 Reply-To: kbock@techemail.com X-Originating-Ip: [68.2.130.83] Message-Id: <20020718173959.A39ED2756@sitemail.everyone.net> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hey, I just cvsupped the latest -stable on July 16th, I beleive. I'm having some problems su'ing to any user, including root (on newly created jails). It is always telling me sorry! I can su fine on the host system, and any old jails previously created before the update. When I try to put on a new 4.5-release or -stable jail, su'ing to *any* user does not work. Does anyone have any kind of ideas for me? If you need more details, please let me know. I also have a patch for jail to allow you to specify a mask of ips to use for a jail that someone posted to one of the mailing lists previously, if you would like to see it. I'm just starting trying to test it out, but I've been busy trying to figure this part out first. Thanks, Kevin _____________________________________________________________ Are you a Techie? Get Your Free Tech Email Address Now! Visit http://www.TechEmail.com _____________________________________________________________ Promote your group and strengthen ties to your members with email@yourgroup.org by Everyone.net http://www.everyone.net/?btn=tag To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 11:39:22 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90EE337B400; Thu, 18 Jul 2002 11:39:18 -0700 (PDT) Received: from smtpzilla3.xs4all.nl (smtpzilla3.xs4all.nl [194.109.127.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B02443E64; Thu, 18 Jul 2002 11:39:17 -0700 (PDT) (envelope-from ronald@not4mail.cs.vu.nl) Received: from henk.klop.yi.org (a194-109-223-6.adsl.xs4all.nl [194.109.223.6]) by smtpzilla3.xs4all.nl (8.12.0/8.12.0) with ESMTP id g6IIdBt9005958; Thu, 18 Jul 2002 20:39:12 +0200 (CEST) Received: from not4mail.cs.vu.nl (localhost [127.0.0.1]) by henk.klop.yi.org (8.12.5/8.12.5) with ESMTP id g6IIcw9F000296; Thu, 18 Jul 2002 20:39:10 +0200 (CEST) (envelope-from ronald@not4mail.cs.vu.nl) Message-ID: <3D370B42.3080504@not4mail.cs.vu.nl> Date: Thu, 18 Jul 2002 20:38:58 +0200 From: Ronald Klop User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.0) Gecko/20020607 X-Accept-Language: nl, nl-be, en-us MIME-Version: 1.0 To: "Brian T.Schellenberger" Cc: stable@FreeBSD.ORG, Julian Elischer Subject: Re: softupdates: any way to force sync? References: <20020718135028.70DCBBB2C@this.is.fake.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following sysctl's define the delay before things are written to disk with softupdates. I think they work in realtime and setting them to 3,2,1 for a little time wil sync the disk faster. But wil make the caching less efficient. So play with it for a while. kern.filedelay: 30 kern.dirdelay: 29 kern.metadelay: 28 Greetings, Ronald. Brian T.Schellenberger wrote: > I have been running into some issues with the time it takes softupdates to > fully finish updating. Recently I deleted a lot of files (about 3G worth of > files, actually), and it took over five minutes to really get the disk space > back. Since I wanted to start up a process to re-fill the disk space, this > was a pain: the other process kept dying because it ran out of disk space. > > Others have posted about similar difficulties with backups. Of course > backing up a live filesystem can never be 100%, but it was in practical terms > closer before softupdates came along. > > And yet, most of the time I *love* softupdates. It makes the system > tolerable to use while turning write caching off, which makes me feel a whole > lot safer. I've not had any (non-hardware-related) problems with disk > corruption since I started running softupdates and I had had corrupt > filesystems mulitiple times before. > > So . . . > > What I'd like is a command like "syncupdates" or something that would > synchronosly force all the pending softupdates updates to update and return > only when that was complete. Then when I had the (rare) occaisons where I > really wanted them synced up, they could be synched up but the rest of the > time I could still let it update when it pleased. > > Questions: > > - Is there any functionality already in the system that I don't know about? > - Are there any plans to add it? > - If not, I might have a go at it myself. Other than your code and the > original paper are there any references or information that I should have in > hand? > - And would you, Julian, be willing to review whatever I might come up with > and possibly commit it if it looks plausible? (I don't run current so > whatever patches I'd come up with would be against -stable, but I presume > that doing a sort of "reverse MFC" to translate them to -current patches > wouldn't be terribly difficult.) > > Please understand that though I've programming for many, many years I've only > done the very most trivial of things in the kernel before so I'd bring more > enthusiasm than expertise to such an undertaking. I'd actually prefer if > this feature just sort of dropped into my lap, but I'm interested enough in > the feature to have a go at doing it myself. > > Thanks for any insight you can offer. > > -- Ronald Klop, Amsterdam, The Netherlands --> Remove the 'not4mail.' from the e-mail address before replying. <-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 12:22: 0 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C43837B400; Thu, 18 Jul 2002 12:21:54 -0700 (PDT) Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8885443E31; Thu, 18 Jul 2002 12:21:53 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: from panzer.kdm.org (localhost [127.0.0.1]) by panzer.kdm.org (8.12.5/8.12.5) with ESMTP id g6IJLcKi037706; Thu, 18 Jul 2002 13:21:38 -0600 (MDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.12.5/8.12.5/Submit) id g6IJLclh037705; Thu, 18 Jul 2002 13:21:38 -0600 (MDT) (envelope-from ken) Date: Thu, 18 Jul 2002 13:21:38 -0600 From: "Kenneth D. Merry" To: "Marc G. Fournier" Cc: "Justin T. Gibbs" , freebsd-stable@FreeBSD.ORG, freebsd-scsi@FreeBSD.ORG Subject: Re: Adaptec 39160 Controller in IBM xSeries 360 Server Message-ID: <20020718132138.A37675@panzer.kdm.org> References: <200207181452.g6IEptbA076625@aslan.scsiguy.com> <20020718130831.B92633-100000@mail1.hub.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020718130831.B92633-100000@mail1.hub.org>; from scrappy@hub.org on Thu, Jul 18, 2002 at 01:09:25PM -0300 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jul 18, 2002 at 13:09:25 -0300, Marc G. Fournier wrote: > On Thu, 18 Jul 2002, Justin T. Gibbs wrote: > > > > > > >I have an xSeries 360 + EXP300 that I'm trying to get up with FreeBSD ... > > >we picked up a 39160 Controller, which the server itself picks up nicely, > > >and reports all 14 drives in the EXP300 ... but I can't get FreeBSD to see > > >the card ... > > > > Can you provide pciconf -l output for the machine with the card installed? > > A verbose boot may also be interesting. > > nemesis# pciconf -l > chip0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x03021014 rev=0x02 hdr=0x00 > none0@pci0:1:0: class=0x030000 card=0x01c51014 chip=0x8a225333 rev=0x06 hdr=0x00 > chip1@pci0:2:0: class=0x068000 card=0x01131014 chip=0x010f1014 rev=0x00 hdr=0x00 > fxp0@pci0:3:0: class=0x020000 card=0x024d1014 chip=0x12298086 rev=0x08 hdr=0x00 > ahc0@pci0:4:0: class=0x010000 card=0x02011014 chip=0x008f9005 rev=0x02 hdr=0x00 > none1@pci0:6:0: class=0x080800 card=0x02471014 chip=0x02461014 rev=0x00 hdr=0x00 > isab0@pci0:15:0: class=0x060100 card=0x02001166 chip=0x02001166 rev=0x50 hdr=0x00 > none2@pci0:15:1: class=0x01018a card=0x00000000 chip=0x02111166 rev=0x00 hdr=0x00 > ohci0@pci0:15:2: class=0x0c0310 card=0x02201166 chip=0x02201166 rev=0x04 hdr=0x00 > > > I'll do a verbose boot up next and send that in too ... but figured I > could get this out nice and fast ... > > Oh wait, is that what that 'none1' and 'none2' are?? I just noticed those > ... None of the 'none' devices have Adaptec vendor IDs. (Look for 9004 or 9005 for the most part.) So your problem is with a bridge or something like that. Basically, FreeBSD doesn't see the chip, so no driver can attach to it. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 12:40:15 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76AA037B400; Thu, 18 Jul 2002 12:40:09 -0700 (PDT) Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14E5D43E64; Thu, 18 Jul 2002 12:40:09 -0700 (PDT) (envelope-from julian@elischer.org) Received: from InterJet.elischer.org ([12.232.206.8]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020718194008.ZUSK24728.rwcrmhc51.attbi.com@InterJet.elischer.org>; Thu, 18 Jul 2002 19:40:08 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id MAA84829; Thu, 18 Jul 2002 12:23:03 -0700 (PDT) Date: Thu, 18 Jul 2002 12:23:01 -0700 (PDT) From: Julian Elischer To: Ronald Klop Cc: "Brian T.Schellenberger" , stable@FreeBSD.ORG, Julian Elischer Subject: Re: softupdates: any way to force sync? In-Reply-To: <3D370B42.3080504@not4mail.cs.vu.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 18 Jul 2002, Ronald Klop wrote: > The following sysctl's define the delay before things are written to > disk with softupdates. I think they work in realtime and setting them to > 3,2,1 for a little time wil sync the disk faster. But wil make the > caching less efficient. So play with it for a while. > > kern.filedelay: 30 > kern.dirdelay: 29 > kern.metadelay: 28 Brian, When we were porting Soft Updates, Kirk suggested that a sequence of 4 syncs should be sufficient to force a full update. e.g. sync;sleep 1;sync;sleep 1;sync;sleep 1;sync I have my suspicions that it may be possible under some situations for some interdependencies to last longer, but I also am willing to believe that probably Kirk was right :-) He also said that an 'fsync()' on a file will recurse all the way to the root of the filesystem, resolving all unsatisfied dependencies on the way. You may want to consider this if you have a specific need. > > Greetings, > > Ronald. > > Brian T.Schellenberger wrote: [...] > > > > What I'd like is a command like "syncupdates" or something that would > > synchronosly force all the pending softupdates updates to update and return > > only when that was complete. Then when I had the (rare) occaisons where I > > really wanted them synced up, they could be synched up but the rest of the > > time I could still let it update when it pleased. > > > > Questions: > > > > - Is there any functionality already in the system that I don't know about? > > - Are there any plans to add it? > > - If not, I might have a go at it myself. Other than your code and the > > original paper are there any references or information that I should have in > > hand? > > - And would you, Julian, be willing to review whatever I might come up with > > and possibly commit it if it looks plausible? (I don't run current so > > whatever patches I'd come up with would be against -stable, but I presume > > that doing a sort of "reverse MFC" to translate them to -current patches > > wouldn't be terribly difficult.) > > I think there are much better people to review it than me.. I have not looked at the soft updates code for 3 years :-( Don't forget that while I commited it, I was only acting as an assitant to Kirk. I did most of the 'mecahnical' porting parts but he has moved a long way since then. (particularly in -current). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 14:54:21 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33D7637B400 for ; Thu, 18 Jul 2002 14:54:18 -0700 (PDT) Received: from deborah.paradise.net.nz (deborah.paradise.net.nz [203.96.152.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60EB143E65 for ; Thu, 18 Jul 2002 14:54:17 -0700 (PDT) (envelope-from james.pole@paradise.net.nz) Received: from saturn (203-79-102-130.tnt14.paradise.net.nz [203.79.102.130]) by deborah.paradise.net.nz (Postfix) with ESMTP id D22E6D2217; Fri, 19 Jul 2002 09:54:14 +1200 (NZST) Content-Type: text/plain; charset="iso-8859-1" From: James Pole Organization: None To: =?iso-8859-1?q?Aur=E9lien=20Nephtali?= Subject: Re: VIA VT82C686A and getting temperature of the motherboard Date: Fri, 19 Jul 2002 09:54:14 +1200 User-Agent: KMail/1.4.2 References: <20020718160310.GA1881@nebula> In-Reply-To: <20020718160310.GA1881@nebula> Cc: stable@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200207190954.14183.james.pole@paradise.net.nz> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 19 Jul 2002 04:03, Aur=E9lien Nephtali wrote: > Hi, > > I'm interested in getting infos about the heat into my computer (a Comp= aq > Presario Serie 1200) so i read 'LINT', and various man such as viapm, s= mb, > smbus etc. > Finally i get a kernel config file with: > > device smbus > device smb > device viapm > > device iicbb > device iicbus > > and in dmesg: > viapropm0: port 0x8080-0x808f at > device 7.4 on pci0 smb0: on smbus0 > > According to me, everything seems OK, but lmmon and healthd give me som= e > strange answers... > > First when using /dev/smb0, they tell me: > 'IOCTL: Invalid argument' > > or when using the /dev/io they give me wrong values (like 255=B0C into = the > computer.. :>) > > So, my questions are: > - does my motherboard support sensors (temperature for example) ? > - did i make something wrong ? > > here is a 'dmesg | grep VIA': > > isab0: at device 7.0 on pci0 > atapci0: port 0x1420-0x142f at device 7.1= on > pci0 pci0: at 7.2 irq 11 > viapropm0: port 0x8080-0x808f at > device 7.4 on pci0 pcm0: port > 0x1430-0x1433,0x1434-0x1437,0x1000-0x10ff irq 9 at device 7.5 on pci0 > > Thanks in advance. I use xmbmon -- it seems to work on the VIA chipset on my Gigabyte mother= board=20 without needing special devices in my kernel config. It has no problems=20 getting the temperature information -- it shows the approxmently same val= ues=20 that the BIOS and Windows utilites shows. Xmbmon is aviliable in the ports (/usr/ports/sysutils/xmbmon/). --=20 James Pole To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 16:30:20 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67FC537B400 for ; Thu, 18 Jul 2002 16:30:18 -0700 (PDT) Received: from cfcl.com (cpe-24-221-169-54.ca.sprintbbd.net [24.221.169.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id E255243E5E for ; Thu, 18 Jul 2002 16:30:17 -0700 (PDT) (envelope-from rdm@cfcl.com) Received: from [192.168.254.205] (cerberus [192.168.254.205]) by cfcl.com (8.11.6/8.11.1) with ESMTP id g6INTsh01167 for ; Thu, 18 Jul 2002 16:29:54 -0700 (PDT) (envelope-from rdm@cfcl.com) Mime-Version: 1.0 Message-Id: X-Mailer: Eudora for Macintosh! Date: Thu, 18 Jul 2002 16:27:43 -0700 To: freebsd-stable@freebsd.org From: Rich Morin Subject: Enabling passive FTP on FreeBSD 4.5? Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a user who wants to use passive-mode FTP to access files on my FreeBSD 4.5 system. Our firewall is set up to allow all outgoing packets and to allow incoming traffic on 20 TCP # FTP (data) 20 UDP # FTP " 21 TCP # FTP (control) 21 UDP # FTP " Nonetheless, she is unable to get in. So, I'm wondering whether there is any configuration option I need to set. Suggestions? -r -- email: rdm@cfcl.com; phone: +1 650-873-7841 http://www.cfcl.com/rdm - my home page, resume, etc. http://www.cfcl.com/Meta - The FreeBSD Browser, Meta Project, etc. http://www.ptf.com/dossier - Prime Time Freeware's DOSSIER series http://www.ptf.com/tdc - Prime Time Freeware's Darwin Collection To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 16:32:41 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AF6437B400; Thu, 18 Jul 2002 16:31:58 -0700 (PDT) Received: from iguana.icir.org (iguana.icir.org [192.150.187.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66BA643E67; Thu, 18 Jul 2002 16:31:57 -0700 (PDT) (envelope-from rizzo@iguana.icir.org) Received: (from rizzo@localhost) by iguana.icir.org (8.11.6/8.11.3) id g6INVvf27426; Thu, 18 Jul 2002 16:31:57 -0700 (PDT) (envelope-from rizzo) Date: Thu, 18 Jul 2002 16:31:57 -0700 From: Luigi Rizzo To: arch@FreeBSD.ORG Subject: NEW SCHEDULER available (was Re: proposed changes to kern_switch.c and kern_synch.c) Message-ID: <20020718163157.A27017@iguana.icir.org> References: <20020716235216.B6785@iguana.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020716235216.B6785@iguana.icir.org>; from rizzo@icir.org on Tue, Jul 16, 2002 at 11:52:16PM -0700 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG [crossposted to -stable as relevant there] Hi, as promised, a first version of the Proportional Share scheduler that we developed is available at http://info.iet.unipi.it/~luigi/ps_sched.20020719a.diff These are for a recent -STABLE (i think any version from 4.4 should work; the only 3 files modified are kern_synch.c, kern_switch.c and proc.h, plus a one-line change to kern_exit.c). I have tested it a little bit on a diskless system, and it seems to survive running a full X session with the usual set of xterm, netscape etc. while i do a "renice" of the processes and even switch back and forth between schedulers. But do not trust this yet for a production system! The sysctl variable kern.scheduler controls the scheduler in use. kern.scheduler=1 (default) selects Proportional Share kern.scheduler=0 selects the Feedback Priority ("classic BSD") You can switch between the two schedulers by changing the value of the sysctl variable. To change the "weight" associated to a process, use the "nice" and "renice" commands. As usual, positive values (+1..+20) mean the process will get a smaller share of the CPU, negative values (-1..-20) will get a larger share. The actual weights (which control the relative fraction of CPU cycles given to each process) are assigned through a lookup table which maps the value to the range 1 ... 100 ... 1000 (min, normal, max weight). The "old" scheduler (Feedback Priority) should be as robust and stable as always, whereas there are still a few things to cleanup in the Proportional Share scheduler, namely: * I have not looked in detail at the SMP case, so do not run it on an SMP kernel; * given that there are no priorities, processes woken up by a tsleep() are not guaranteed to run before all processes with p_priority >= PUSER; however, they are given a shorter deadline so they are likely to run first. * RTPRI and IDLEPRI processes do not have yet any special treatment (they all end up together with normal processes; this is trivial to fix, i just haven't had time to look at that). Have fun, and please if you use it let me know of any bugs and possibly suggestions to adapt it to -current. cheers luigi On Tue, Jul 16, 2002 at 11:52:16PM -0700, Luigi Rizzo wrote: > Hi, > we have implemented a weight-based process scheduler > for FreeBSD-stable, and are trying to port it to -current (in the > description below replace "process" with "thread/kse" as appropriate > for the -current case). > > In order to make this work, it is convenient to have all > scheduler-specific functions and data structures in a > single file (kern_switch*.c), and generic support in > another one (kern_synch.c). I believe this was also the original > BSD design in partitioning the code between the two files. > However, in our current code, there are some functions which > are scheduler-specific (see below) which are misplaced. > > So I would like to make the following, purely cosmetic, change > identified as step #1 below, both for consistency with what i > believe to be the original design, and to simplify further work > in this area. These would go to both -current and -stable; I > repeat, they are only cosmetic changes. > > Comments ? I already spoke to julian who has no objections. > > For those interested, a patch for -current is attached, and the one > for -stable is very similar (for the records, in -stable we have a > fully functional weight-based process scheduler, where you still > control the weights using "nice", and you can switch between the > old and the new scheduler at any time using a sysctl variable). > > --- Re. the multi-scheduler architecture --- > > The general idea is to make the process/thread/kse scheduler > a replaceable piece of the kernel, requiring no modifications > to the "struct proc", and with the ability of switching from > one scheduler to another one at runtime (this both for testing > purposes and for whatever need may arise). > > > The way to achieve this would be the following: > > 1. identify all scheduler-specific functions, put all of them > in one file (e.g. kern_switch.c for the default scheduler), > and define function pointers for all of them; > > 2. use one field in "struct proc" as a link to whatever > scheduler-specific data structures are necessary. > In -stable, we have the p_pad3 field that can be used > for this purpose, much like the if_index field in struct ifnet. > > 3. implement a function which, under control of a sysctl call, > activate a new scheduler (by initialising all the function > pointers to appropriate values) and moves all processes from > the old to the new one. > > Step #1 is basically a cosmetic change, requiring mostly a move of > some functions from kern_synch.c to kern_switch.c. These are > > roundrobin(); > > curpriority_cmp(); > > resetpriority(); > > parts of schedcpu() and schedclock(); > > cheers > luigi > ---------------------------------- > > Index: kern_switch.c > =================================================================== > RCS file: /home/ncvs/src/sys/kern/kern_switch.c,v > retrieving revision 1.33 > diff -u -r1.33 kern_switch.c > --- kern_switch.c 14 Jul 2002 03:43:33 -0000 1.33 > +++ kern_switch.c 16 Jul 2002 22:15:06 -0000 > @@ -97,6 +97,7 @@ > #include > #include > #include > +#include > #include > > CTASSERT((RQB_BPW * RQB_LEN) == RQ_NQS); > @@ -107,6 +108,9 @@ > static struct runq runq; > SYSINIT(runq, SI_SUB_RUN_QUEUE, SI_ORDER_FIRST, runq_init, &runq) > > +static struct callout roundrobin_callout; > + > +static void roundrobin(void *arg); > static void runq_readjust(struct runq *rq, struct kse *ke); > /************************************************************************ > * Functions that manipulate runnability from a thread perspective. * > @@ -442,9 +446,13 @@ > { > int i; > > + callout_init(&roundrobin_callout, 0); > + > bzero(rq, sizeof *rq); > for (i = 0; i < RQ_NQS; i++) > TAILQ_INIT(&rq->rq_queues[i]); > + > + roundrobin(NULL); > } > > /* > @@ -719,3 +727,207 @@ > } > #endif > > +/* > + * -- formerly in kern_synch.c > + */ > + > +int curpriority_cmp(struct thread *td); > + > +int > +curpriority_cmp(struct thread *td) > +{ > + return (td->td_priority - curthread->td_priority); > +} > + > +/* > + * Force switch among equal priority processes every 100ms. > + * We don't actually need to force a context switch of the current process. > + * The act of firing the event triggers a context switch to softclock() and > + * then switching back out again which is equivalent to a preemption, thus > + * no further work is needed on the local CPU. > + */ > +/* ARGSUSED */ > +static void > +roundrobin(arg) > + void *arg; > +{ > + > +#ifdef SMP > + mtx_lock_spin(&sched_lock); > + forward_roundrobin(); > + mtx_unlock_spin(&sched_lock); > +#endif > + > + callout_reset(&roundrobin_callout, sched_quantum, roundrobin, NULL); > +} > + > +/* calculations for digital decay to forget 90% of usage in 5*loadav sec */ > +#define loadfactor(loadav) (2 * (loadav)) > +#define decay_cpu(loadfac, cpu) (((loadfac) * (cpu)) / ((loadfac) + FSCALE)) > +extern fixpt_t ccpu; > +#define CCPU_SHIFT 11 /* XXX dup from kern_synch.c! */ > + > +/* > + * Recompute process priorities, every hz ticks. > + * MP-safe, called without the Giant mutex. > + */ > +void schedcpu1(struct ksegrp *kg); > +/* ARGSUSED */ > +void > +schedcpu1(struct ksegrp *kg) > +{ > + register fixpt_t loadfac = loadfactor(averunnable.ldavg[0]); > + struct thread *td; > + struct kse *ke; > + int realstathz; > + int awake; > + > + realstathz = stathz ? stathz : hz; > + > + awake = 0; > + FOREACH_KSE_IN_GROUP(kg, ke) { > + /* > + * Increment time in/out of memory and sleep > + * time (if sleeping). We ignore overflow; > + * with 16-bit int's (remember them?) > + * overflow takes 45 days. > + */ > + /* XXXKSE **WRONG***/ > + /* > + * the kse slptimes are not touched in wakeup > + * because the thread may not HAVE a KSE > + */ > + if ((ke->ke_state == KES_ONRUNQ) || > + ((ke->ke_state == KES_THREAD) && > + (ke->ke_thread->td_state == TDS_RUNNING))) { > + ke->ke_slptime++; > + } else { > + ke->ke_slptime = 0; > + awake = 1; > + } > + > + /* > + * pctcpu is only for ps? > + * Do it per kse.. and add them up at the end? > + * XXXKSE > + */ > + ke->ke_pctcpu = (ke->ke_pctcpu * ccpu) >> FSHIFT; > + /* > + * If the kse has been idle the entire second, > + * stop recalculating its priority until > + * it wakes up. > + */ > + if (ke->ke_slptime > 1) { > + continue; > + } > + > +#if (FSHIFT >= CCPU_SHIFT) > + ke->ke_pctcpu += (realstathz == 100) ? > + ((fixpt_t) ke->ke_cpticks) << > + (FSHIFT - CCPU_SHIFT) : > + 100 * (((fixpt_t) ke->ke_cpticks) << > + (FSHIFT - CCPU_SHIFT)) / realstathz; > +#else > + ke->ke_pctcpu += ((FSCALE - ccpu) * > + (ke->ke_cpticks * FSCALE / realstathz)) >> > + FSHIFT; > +#endif > + ke->ke_cpticks = 0; > + } /* end of kse loop */ > + if (awake == 0) { > + kg->kg_slptime++; > + } else { > + kg->kg_slptime = 0; > + } > + kg->kg_estcpu = decay_cpu(loadfac, kg->kg_estcpu); > + resetpriority(kg); > + FOREACH_THREAD_IN_GROUP(kg, td) { > + int changedqueue; > + if (td->td_priority >= PUSER) { > + /* > + * Only change the priority > + * of threads that are still at their > + * user priority. > + * XXXKSE This is problematic > + * as we may need to re-order > + * the threads on the KSEG list. > + */ > + changedqueue = > + ((td->td_priority / RQ_PPQ) != > + (kg->kg_user_pri / RQ_PPQ)); > + > + td->td_priority = kg->kg_user_pri; > + if (changedqueue && > + td->td_state == TDS_RUNQ) { > + /* this could be optimised */ > + remrunqueue(td); > + td->td_priority = > + kg->kg_user_pri; > + setrunqueue(td); > + } else { > + td->td_priority = kg->kg_user_pri; > + } > + } > + } > +} > + > +/* > + * Compute the priority of a process when running in user mode. > + * Arrange to reschedule if the resulting priority is better > + * than that of the current process. > + */ > +void > +resetpriority(kg) > + register struct ksegrp *kg; > +{ > + register unsigned int newpriority; > + struct thread *td; > + > + mtx_lock_spin(&sched_lock); > + if (kg->kg_pri_class == PRI_TIMESHARE) { > + newpriority = PUSER + kg->kg_estcpu / INVERSE_ESTCPU_WEIGHT + > + NICE_WEIGHT * (kg->kg_nice - PRIO_MIN); > + newpriority = min(max(newpriority, PRI_MIN_TIMESHARE), > + PRI_MAX_TIMESHARE); > + kg->kg_user_pri = newpriority; > + } > + FOREACH_THREAD_IN_GROUP(kg, td) { > + maybe_resched(td); /* XXXKSE silly */ > + } > + mtx_unlock_spin(&sched_lock); > +} > + > +#if 0 > +/* > + * We adjust the priority of the current process. The priority of > + * a process gets worse as it accumulates CPU time. The cpu usage > + * estimator (p_estcpu) is increased here. resetpriority() will > + * compute a different priority each time p_estcpu increases by > + * INVERSE_ESTCPU_WEIGHT > + * (until MAXPRI is reached). The cpu usage estimator ramps up > + * quite quickly when the process is running (linearly), and decays > + * away exponentially, at a rate which is proportionally slower when > + * the system is busy. The basic principle is that the system will > + * 90% forget that the process used a lot of CPU time in 5 * loadav > + * seconds. This causes the system to favor processes which haven't > + * run much recently, and to round-robin among other processes. > + */ > +void > +schedclock(td) > + struct thread *td; > +{ > + struct kse *ke; > + struct ksegrp *kg; > + > + KASSERT((td != NULL), ("schedlock: null thread pointer")); > + ke = td->td_kse; > + kg = td->td_ksegrp; > + ke->ke_cpticks++; > + kg->kg_estcpu = ESTCPULIM(kg->kg_estcpu + 1); > + if ((kg->kg_estcpu % INVERSE_ESTCPU_WEIGHT) == 0) { > + resetpriority(kg); > + if (td->td_priority >= PUSER) > + td->td_priority = kg->kg_user_pri; > + } > +} > +#endif > Index: kern_synch.c > =================================================================== > RCS file: /home/ncvs/src/sys/kern/kern_synch.c,v > retrieving revision 1.185 > diff -u -r1.185 kern_synch.c > --- kern_synch.c 14 Jul 2002 03:43:33 -0000 1.185 > +++ kern_synch.c 16 Jul 2002 22:16:46 -0000 > @@ -67,6 +67,8 @@ > > #include > > +void schedcpu1(struct ksegrp *kg); /* XXX in kern_switch.c */ > + > static void sched_setup(void *dummy); > SYSINIT(sched_setup, SI_SUB_KICK_SCHEDULER, SI_ORDER_FIRST, sched_setup, NULL) > > @@ -76,7 +78,6 @@ > > static struct callout loadav_callout; > static struct callout schedcpu_callout; > -static struct callout roundrobin_callout; > > struct loadavg averunnable = > { {0, 0, 0}, FSCALE }; /* load average, of runnable procs */ > @@ -92,7 +93,6 @@ > > static void endtsleep(void *); > static void loadav(void *arg); > -static void roundrobin(void *arg); > static void schedcpu(void *arg); > > static int > @@ -135,28 +135,6 @@ > } > > /* > - * Force switch among equal priority processes every 100ms. > - * We don't actually need to force a context switch of the current process. > - * The act of firing the event triggers a context switch to softclock() and > - * then switching back out again which is equivalent to a preemption, thus > - * no further work is needed on the local CPU. > - */ > -/* ARGSUSED */ > -static void > -roundrobin(arg) > - void *arg; > -{ > - > -#ifdef SMP > - mtx_lock_spin(&sched_lock); > - forward_roundrobin(); > - mtx_unlock_spin(&sched_lock); > -#endif > - > - callout_reset(&roundrobin_callout, sched_quantum, roundrobin, NULL); > -} > - > -/* > * Constants for digital decay and forget: > * 90% of (p_estcpu) usage in 5 * loadav time > * 95% of (p_pctcpu) usage in 60 seconds (load insensitive) > @@ -225,7 +203,7 @@ > #define decay_cpu(loadfac, cpu) (((loadfac) * (cpu)) / ((loadfac) + FSCALE)) > > /* decay 95% of `p_pctcpu' in 60 seconds; see CCPU_SHIFT before changing */ > -static fixpt_t ccpu = 0.95122942450071400909 * FSCALE; /* exp(-1/20) */ > +fixpt_t ccpu = 0.95122942450071400909 * FSCALE; /* exp(-1/20) */ > SYSCTL_INT(_kern, OID_AUTO, ccpu, CTLFLAG_RD, &ccpu, 0, ""); > > /* kernel uses `FSCALE', userland (SHOULD) use kern.fscale */ > @@ -255,105 +233,15 @@ > schedcpu(arg) > void *arg; > { > - register fixpt_t loadfac = loadfactor(averunnable.ldavg[0]); > - struct thread *td; > struct proc *p; > - struct kse *ke; > struct ksegrp *kg; > - int realstathz; > - int awake; > > - realstathz = stathz ? stathz : hz; > sx_slock(&allproc_lock); > FOREACH_PROC_IN_SYSTEM(p) { > mtx_lock_spin(&sched_lock); > p->p_swtime++; > FOREACH_KSEGRP_IN_PROC(p, kg) { > - awake = 0; > - FOREACH_KSE_IN_GROUP(kg, ke) { > - /* > - * Increment time in/out of memory and sleep > - * time (if sleeping). We ignore overflow; > - * with 16-bit int's (remember them?) > - * overflow takes 45 days. > - */ > - /* XXXKSE **WRONG***/ > - /* > - * the kse slptimes are not touched in wakeup > - * because the thread may not HAVE a KSE > - */ > - if ((ke->ke_state == KES_ONRUNQ) || > - ((ke->ke_state == KES_THREAD) && > - (ke->ke_thread->td_state == TDS_RUNNING))) { > - ke->ke_slptime++; > - } else { > - ke->ke_slptime = 0; > - awake = 1; > - } > - > - /* > - * pctcpu is only for ps? > - * Do it per kse.. and add them up at the end? > - * XXXKSE > - */ > - ke->ke_pctcpu = (ke->ke_pctcpu * ccpu) >> FSHIFT; > - /* > - * If the kse has been idle the entire second, > - * stop recalculating its priority until > - * it wakes up. > - */ > - if (ke->ke_slptime > 1) { > - continue; > - } > - > -#if (FSHIFT >= CCPU_SHIFT) > - ke->ke_pctcpu += (realstathz == 100) ? > - ((fixpt_t) ke->ke_cpticks) << > - (FSHIFT - CCPU_SHIFT) : > - 100 * (((fixpt_t) ke->ke_cpticks) << > - (FSHIFT - CCPU_SHIFT)) / realstathz; > -#else > - ke->ke_pctcpu += ((FSCALE - ccpu) * > - (ke->ke_cpticks * FSCALE / realstathz)) >> > - FSHIFT; > -#endif > - ke->ke_cpticks = 0; > - } /* end of kse loop */ > - if (awake == 0) { > - kg->kg_slptime++; > - } else { > - kg->kg_slptime = 0; > - } > - kg->kg_estcpu = decay_cpu(loadfac, kg->kg_estcpu); > - resetpriority(kg); > - FOREACH_THREAD_IN_GROUP(kg, td) { > - int changedqueue; > - if (td->td_priority >= PUSER) { > - /* > - * Only change the priority > - * of threads that are still at their > - * user priority. > - * XXXKSE This is problematic > - * as we may need to re-order > - * the threads on the KSEG list. > - */ > - changedqueue = > - ((td->td_priority / RQ_PPQ) != > - (kg->kg_user_pri / RQ_PPQ)); > - > - td->td_priority = kg->kg_user_pri; > - if (changedqueue && > - td->td_state == TDS_RUNQ) { > - /* this could be optimised */ > - remrunqueue(td); > - td->td_priority = > - kg->kg_user_pri; > - setrunqueue(td); > - } else { > - td->td_priority = kg->kg_user_pri; > - } > - } > - } > + schedcpu1(kg); > } /* end of ksegrp loop */ > mtx_unlock_spin(&sched_lock); > } /* end of process loop */ > @@ -944,32 +832,6 @@ > } > > /* > - * Compute the priority of a process when running in user mode. > - * Arrange to reschedule if the resulting priority is better > - * than that of the current process. > - */ > -void > -resetpriority(kg) > - register struct ksegrp *kg; > -{ > - register unsigned int newpriority; > - struct thread *td; > - > - mtx_lock_spin(&sched_lock); > - if (kg->kg_pri_class == PRI_TIMESHARE) { > - newpriority = PUSER + kg->kg_estcpu / INVERSE_ESTCPU_WEIGHT + > - NICE_WEIGHT * (kg->kg_nice - PRIO_MIN); > - newpriority = min(max(newpriority, PRI_MIN_TIMESHARE), > - PRI_MAX_TIMESHARE); > - kg->kg_user_pri = newpriority; > - } > - FOREACH_THREAD_IN_GROUP(kg, td) { > - maybe_resched(td); /* XXXKSE silly */ > - } > - mtx_unlock_spin(&sched_lock); > -} > - > -/* > * Compute a tenex style load average of a quantity on > * 1, 5 and 15 minute intervals. > * XXXKSE Needs complete rewrite when correct info is available. > @@ -1022,11 +884,9 @@ > { > > callout_init(&schedcpu_callout, 1); > - callout_init(&roundrobin_callout, 0); > callout_init(&loadav_callout, 0); > > /* Kick off timeout driven events by calling first time. */ > - roundrobin(NULL); > schedcpu(NULL); > loadav(NULL); > } > > ----- End forwarded message ----- > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-arch" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 19:49:14 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE4D137B400 for ; Thu, 18 Jul 2002 19:49:11 -0700 (PDT) Received: from dart.sr.se (dart.sr.se [134.25.0.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30D3E43E42 for ; Thu, 18 Jul 2002 19:49:10 -0700 (PDT) (envelope-from gunnar@oldie.sr.se) Received: from honken.sr.se (honken.sr.se [134.25.128.27]) by dart.sr.se (8.11.6/8.11.6) with ESMTP id g6J2n8U49113 for ; Fri, 19 Jul 2002 04:49:08 +0200 (CEST) (envelope-from gunnar@oldie.sr.se) Received: from oldie.sr.se (oldie [134.25.200.100]) by honken.sr.se (8.12.3/8.12.3) with ESMTP id g6J2n8Si063902 for ; Fri, 19 Jul 2002 04:49:08 +0200 (CEST) (envelope-from gunnar@oldie.sr.se) Received: from oldie.sr.se (localhost [127.0.0.1]) by oldie.sr.se (8.12.5/8.12.5) with ESMTP id g6J2n84g038552 for ; Fri, 19 Jul 2002 04:49:08 +0200 (CEST) (envelope-from gunnar@oldie.sr.se) Received: (from gunnar@localhost) by oldie.sr.se (8.12.5/8.12.5/Submit) id g6J2n8uu038551 for freebsd-stable@freebsd.org; Fri, 19 Jul 2002 04:49:08 +0200 (CEST) Date: Fri, 19 Jul 2002 04:49:08 +0200 From: Gunnar Flygt To: FreeBSD Stable Subject: A small annoyance Message-ID: <20020719044908.A38474@sr.se> Reply-To: Gunnar Flygt Mail-Followup-To: Gunnar Flygt , FreeBSD Stable Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Since the latest update to OpenSSH there is a small thing that has appeared on my machines (STABLE as of 30 Jun) When I run scp from a box (it can be of any brand of OpenSSH) I get two lines saying: tput: tgetent failure: No such file or directory tput: tgetent failure: No such file or directory The copy goes fine, but what does this mean? -- Gunnar Flygt, Swedish Broadcasting corp. email: flygt@sr.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 20:38:31 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9590637B400 for ; Thu, 18 Jul 2002 20:38:27 -0700 (PDT) Received: from dart.sr.se (dart.sr.se [134.25.0.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CD1143E31 for ; Thu, 18 Jul 2002 20:38:26 -0700 (PDT) (envelope-from gunnar@oldie.sr.se) Received: from honken.sr.se (honken.sr.se [134.25.128.27]) by dart.sr.se (8.11.6/8.11.6) with ESMTP id g6J3cPU49676; Fri, 19 Jul 2002 05:38:25 +0200 (CEST) (envelope-from gunnar@oldie.sr.se) Received: from oldie.sr.se (oldie [134.25.200.100]) by honken.sr.se (8.12.3/8.12.3) with ESMTP id g6J3cPSi064390; Fri, 19 Jul 2002 05:38:25 +0200 (CEST) (envelope-from gunnar@oldie.sr.se) Received: from oldie.sr.se (localhost [127.0.0.1]) by oldie.sr.se (8.12.5/8.12.5) with ESMTP id g6J3cO4g040469; Fri, 19 Jul 2002 05:38:24 +0200 (CEST) (envelope-from gunnar@oldie.sr.se) Received: (from gunnar@localhost) by oldie.sr.se (8.12.5/8.12.5/Submit) id g6J3cOTg040468; Fri, 19 Jul 2002 05:38:24 +0200 (CEST) Date: Fri, 19 Jul 2002 05:38:24 +0200 From: Gunnar Flygt To: "Scott G. Akmentins-Taylor" Cc: FreeBSD Stable Subject: Re: A small annoyance Message-ID: <20020719053824.B38474@sr.se> Reply-To: Gunnar Flygt Mail-Followup-To: Gunnar Flygt , "Scott G. Akmentins-Taylor" , FreeBSD Stable References: <200207190302.g6J32e7P025223@mrynet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200207190302.g6J32e7P025223@mrynet.com>; from staylor@mrynet.com on Thu, Jul 18, 2002 at 10:02:40PM -0500 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jul 18, 2002 at 10:02:40PM -0500, Scott G. Akmentins-Taylor wrote: > > Since the latest update to OpenSSH there is a small thing that has > > appeared on my machines (STABLE as of 30 Jun) When I run scp from a box > > (it can be of any brand of OpenSSH) I get two lines saying: > > > > tput: tgetent failure: No such file or directory > > tput: tgetent failure: No such file or directory > > > > The copy goes fine, but what does this mean? > > Hi. > > The errors are a result of something in your .profile or .cshrc > that is trying to modify the stdout as a tty device. > stty is the usual cause of this. Your particular error messages > indicate that some program being executed at the remote shell's > startup of .profile or .cshrc (or via them) is trying to perform > a tgetent() call upon the stdin or stdout, but since those won't > be a tty(4) type path, the calls fail. > > Check your .profile or .cshrc and ensure that you're not attempting > to modify the stdin/out via stty(1). If you have such code in there, > use conditionals to only perform them when an interactive login is > detected. Thanks! The tput thing came from a central bashrc, I installed a couple of weeks ago. I'll remove the stty thing in it. > > I hope this helps. > > -scott > -- > Scott G. Akmentins-Taylor InterNet: staylor@mrynet.com > Cray Inc, Minneapolis, MN - USA taylors@cray.com > SV2/UNICOS Distribution Engineering > ----- Labak miris neka sarkans - Vienoti Latvijai! ----- -- Gunnar Flygt, Postmaster SR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 21:23:23 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7004437B400 for ; Thu, 18 Jul 2002 21:23:20 -0700 (PDT) Received: from deborah.paradise.net.nz (deborah.paradise.net.nz [203.96.152.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8D5D43E31 for ; Thu, 18 Jul 2002 21:23:19 -0700 (PDT) (envelope-from tortise@paradise.net.nz) Received: from P1200n (203-79-82-182.adsl-wns.paradise.net.nz [203.79.82.182]) by deborah.paradise.net.nz (Postfix) with SMTP id ABA85D1489; Fri, 19 Jul 2002 16:23:18 +1200 (NZST) Message-ID: <016701c22edb$fcc0e250$0600a8c0@P1200n> From: "Tortise@Paradise" To: , "Rich Morin" References: Subject: Re: Enabling passive FTP on FreeBSD 4.5? Date: Fri, 19 Jul 2002 16:23:08 +1200 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 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Yes I'd appreciate the answer to this, if there is one....or if it was passed off list. With thanks David Hingston ----- Original Message ----- From: "Rich Morin" To: Sent: Friday, July 19, 2002 11:27 AM Subject: Enabling passive FTP on FreeBSD 4.5? > I have a user who wants to use passive-mode FTP to access files on my > FreeBSD 4.5 system. Our firewall is set up to allow all outgoing packets > and to allow incoming traffic on > > 20 TCP # FTP (data) > 20 UDP # FTP " > 21 TCP # FTP (control) > 21 UDP # FTP " > > Nonetheless, she is unable to get in. So, I'm wondering whether there is > any configuration option I need to set. Suggestions? > > -r > -- > email: rdm@cfcl.com; phone: +1 650-873-7841 > http://www.cfcl.com/rdm - my home page, resume, etc. > http://www.cfcl.com/Meta - The FreeBSD Browser, Meta Project, etc. > http://www.ptf.com/dossier - Prime Time Freeware's DOSSIER series > http://www.ptf.com/tdc - Prime Time Freeware's Darwin Collection > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 22:14: 9 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2371337B400 for ; Thu, 18 Jul 2002 22:13:58 -0700 (PDT) Received: from smtp02.iprimus.net.au (smtp02.iprimus.net.au [210.50.76.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9848B43E42 for ; Thu, 18 Jul 2002 22:13:56 -0700 (PDT) (envelope-from smaynard@iprimus.com.au) Received: from scott ([210.50.26.244]) by smtp02.iprimus.net.au with Microsoft SMTPSVC(5.0.2195.4617); Fri, 19 Jul 2002 15:13:51 +1000 Message-ID: <007801c22ee3$3657e8e0$0200a8c0@scott> From: "Sm" To: Subject: Problems building world (RELENG_4 and RELENG_4_6) Date: Fri, 19 Jul 2002 13:14:50 +0800 MIME-Version: 1.0 Content-Type: multipart/signed; boundary="----=_NextPart_000_0073_01C22F26.43543510"; micalg=SHA1; protocol="application/x-pkcs7-signature" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-OriginalArrivalTime: 19 Jul 2002 05:13:52.0163 (UTC) FILETIME=[1270C730:01C22EE3] Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0073_01C22F26.43543510 Content-Type: multipart/mixed; boundary="----=_NextPart_001_0074_01C22F26.43543510" ------=_NextPart_001_0074_01C22F26.43543510 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Good evening, For a couple of days I have been trying to get my make world's to succeed. I have tried cvusp'ing from cvsup.au.freebsd.org and cvsup.freebsd.org to see if that would fix the problem. I have tried checking out clean libcrypto, libssh and openssh sources. I have also tried cvs updating to RELENG_4 and RELENG_4_6 but both builds (from clean 4.6 distribution source before cvs each time) fail in exactly the same place. I have full source distribution installed and this has been working fine for the past months whenever I cvsup'd I have spoken to friends also running 4.6-release who have tried updating and their builds die in the same place too, has anyone else on the list had this problem or does anyone have a solution. Another small annoyance I have noticed is that sometimes /usr/src/etc/mtree/BSD.include.dist misses 'wi' under 'dev' after a cvsup, this only happens sometimes and is easy to fix. Does anyone else have this problem too from time to time? I have included a log of the build errors in the attachment. (apologies for big size) Any help would be greatly appreciated. Scott Maynard ------=_NextPart_001_0074_01C22F26.43543510 Content-Type: text/plain; name="builderrors.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="builderrors.txt" building static ssh library ranlib libssh.a cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/authfd.c -o authfd.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/authfile.c -o = authfile.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/bufaux.c -o bufaux.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/buffer.c -o buffer.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/canohost.c -o = canohost.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/channels.c -o = channels.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/cipher.c -o cipher.So /usr/src/secure/lib/libssh/../../../crypto/openssh/cipher.c:66: warning: = initialization from incompatible pointer type /usr/src/secure/lib/libssh/../../../crypto/openssh/cipher.c:67: warning: = initialization from incompatible pointer type /usr/src/secure/lib/libssh/../../../crypto/openssh/cipher.c:71: warning: = initialization from incompatible pointer type /usr/src/secure/lib/libssh/../../../crypto/openssh/cipher.c:72: warning: = initialization from incompatible pointer type /usr/src/secure/lib/libssh/../../../crypto/openssh/cipher.c:73: warning: = initialization from incompatible pointer type /usr/src/secure/lib/libssh/../../../crypto/openssh/cipher.c:74: warning: = initialization from incompatible pointer type /usr/src/secure/lib/libssh/../../../crypto/openssh/cipher.c: In function = `cipher_get_keycontext': /usr/src/secure/lib/libssh/../../../crypto/openssh/cipher.c:707: = warning: comparison of distinct pointer types lacks a cast /usr/src/secure/lib/libssh/../../../crypto/openssh/cipher.c: In function = `cipher_set_keycontext': /usr/src/secure/lib/libssh/../../../crypto/openssh/cipher.c:722: = warning: comparison of distinct pointer types lacks a cast cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/compat.c -o compat.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/compress.c -o = compress.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/crc32.c -o crc32.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/deattack.c -o = deattack.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/fatal.c -o fatal.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/hostfile.c -o = hostfile.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/log.c -o log.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/match.c -o match.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/mpaux.c -o mpaux.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/nchan.c -o nchan.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/packet.c -o packet.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/readpass.c -o = readpass.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/rsa.c -o rsa.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/tildexpand.c -o = tildexpand.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/ttymodes.c -o = ttymodes.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/xmalloc.c -o = xmalloc.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/atomicio.c -o = atomicio.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/key.c -o key.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/dispatch.c -o = dispatch.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/kex.c -o kex.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/mac.c -o mac.So /usr/src/secure/lib/libssh/../../../crypto/openssh/mac.c:42: warning: = initialization from incompatible pointer type /usr/src/secure/lib/libssh/../../../crypto/openssh/mac.c:43: warning: = initialization from incompatible pointer type /usr/src/secure/lib/libssh/../../../crypto/openssh/mac.c:44: warning: = initialization from incompatible pointer type /usr/src/secure/lib/libssh/../../../crypto/openssh/mac.c:45: warning: = initialization from incompatible pointer type /usr/src/secure/lib/libssh/../../../crypto/openssh/mac.c:46: warning: = initialization from incompatible pointer type /usr/src/secure/lib/libssh/../../../crypto/openssh/mac.c:47: warning: = initialization from incompatible pointer type cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/uuencode.c -o = uuencode.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/misc.c -o misc.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/rijndael.c -o = rijndael.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/ssh-dss.c -o = ssh-dss.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/ssh-rsa.c -o = ssh-rsa.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/dh.c -o dh.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/kexdh.c -o kexdh.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/kexgex.c -o kexgex.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/scard.c -o scard.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/monitor_wrap.c -o = monitor_wrap.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/monitor_fdpass.c -o = monitor_fdpass.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/msg.c -o msg.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/openbsd-compat/bsd-mis= c.c -o bsd-misc.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/entropy.c -o = entropy.So cc -fpic -DPIC -O -pipe -march=3Dpentiumpro = -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c = /usr/src/secure/lib/libssh/../../../crypto/openssh/version.c -o = version.So make: don't know how to make /usr/obj/usr/src/i386/usr/lib/libcrypto.a. = Stop *** Error code 2 Stop in /usr/src/secure/lib. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. ------=_NextPart_001_0074_01C22F26.43543510-- ------=_NextPart_000_0073_01C22F26.43543510 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIITjCCA0Aw ggLqoAMCAQICEHWhfz4qVKahQEcWhtXiS7MwDQYJKoZIhvcNAQEFBQAwgaAxIDAeBgkqhkiG9w0B CQEWEXdpbGRpZEB3aWxkaWQuY29tMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTES MBAGA1UEBxMJU2FudGEgQW5hMRMwEQYDVQQKEwpXaWxkSUQgTExDMSAwHgYDVQQLExdUb3RhbGx5 IEZyZWUgRGlnaXRhbCBJRDEPMA0GA1UEAxMGV2lsZElEMB4XDTAxMTEyNDAzNDM0MFoXDTI2MTEy NDAzNTMwNVowgaAxIDAeBgkqhkiG9w0BCQEWEXdpbGRpZEB3aWxkaWQuY29tMQswCQYDVQQGEwJV UzETMBEGA1UECBMKQ2FsaWZvcm5pYTESMBAGA1UEBxMJU2FudGEgQW5hMRMwEQYDVQQKEwpXaWxk SUQgTExDMSAwHgYDVQQLExdUb3RhbGx5IEZyZWUgRGlnaXRhbCBJRDEPMA0GA1UEAxMGV2lsZElE MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKbsNfy779a6THIfh/+q0JPlKCaQ22gp3vZOj2m6iSft dFLIYmwMCxlPN90MlmI72Fs7w79uoG9hu4OBD48+9nkCAwEAAaOB/TCB+jATBgkrBgEEAYI3FAIE Bh4EAEMAQTALBgNVHQ8EBAMCAUYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUo48SjgNSm2lw xnxUjMio7Zge2XcwgZMGA1UdHwSBizCBiDBBoD+gPYY7aHR0cDovL2N1c3RkMzc0Lmhvc3Rpbmcu aW5uZXJob3N0LmNvbS9DZXJ0RW5yb2xsL1dpbGRJRC5jcmwwQ6BBoD+GPWZpbGU6Ly9cXGN1c3Rk Mzc0Lmhvc3RpbmcuaW5uZXJob3N0LmNvbVxDZXJ0RW5yb2xsXFdpbGRJRC5jcmwwEAYJKwYBBAGC NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADQQCO6WzaX8BvCoO1qbUA/UKa6qrMAkJl64LMHHmOB7fd 3x/E7Ho8QjnHxtaLeSXivC1rpXGPvg6QGeaErTq8UYiCMIIFBjCCBLCgAwIBAgIKUKgyuAAAAAAR aDANBgkqhkiG9w0BAQUFADCBoDEgMB4GCSqGSIb3DQEJARYRd2lsZGlkQHdpbGRpZC5jb20xCzAJ BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRIwEAYDVQQHEwlTYW50YSBBbmExEzARBgNV BAoTCldpbGRJRCBMTEMxIDAeBgNVBAsTF1RvdGFsbHkgRnJlZSBEaWdpdGFsIElEMQ8wDQYDVQQD EwZXaWxkSUQwHhcNMDIwNzA2MTY1MjI0WhcNMDIwODA2MTcwMjI0WjB5MSYwJAYJKoZIhvcNAQkB FhdzbWF5bmFyZEBpcHJpbXVzLmNvbS5hdTELMAkGA1UEBhMCQVUxGjAYBgNVBAgTEVdlc3Rlcm4g QXVzdHJhbGlhMQ4wDAYDVQQHEwVQZXJ0aDEWMBQGA1UEAxMNU2NvdHQgTWF5bmFyZDCBnzANBgkq hkiG9w0BAQEFAAOBjQAwgYkCgYEAs3TH25g4sLC1mkB7r74bBt6BfQbggIQY71ICEK64GyRMXiA8 skE9XhvIRs1P1rkYLk4feiQt10BC2IM0HMH85ffamr3m+Yn983elmcAi6OrEobrH4Qlb1NJRlYWz uffVW3zKOjU/KowQSRdmYWHEMPzSBA927hT7MXN2pr2o5MMCAwEAAaOCAqwwggKoMA4GA1UdDwEB /wQEAwIE8DAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwQwHQYDVR0OBBYEFO+X9+D9/IVg s1Fjx5MYdTTlkzuNMIHcBgNVHSMEgdQwgdGAFKOPEo4DUptpcMZ8VIzIqO2YHtl3oYGmpIGjMIGg MSAwHgYJKoZIhvcNAQkBFhF3aWxkaWRAd2lsZGlkLmNvbTELMAkGA1UEBhMCVVMxEzARBgNVBAgT CkNhbGlmb3JuaWExEjAQBgNVBAcTCVNhbnRhIEFuYTETMBEGA1UEChMKV2lsZElEIExMQzEgMB4G A1UECxMXVG90YWxseSBGcmVlIERpZ2l0YWwgSUQxDzANBgNVBAMTBldpbGRJRIIQdaF/PipUpqFA RxaG1eJLszCBkwYDVR0fBIGLMIGIMEGgP6A9hjtodHRwOi8vY3VzdGQzNzQuaG9zdGluZy5pbm5l cmhvc3QuY29tL0NlcnRFbnJvbGwvV2lsZElELmNybDBDoEGgP4Y9ZmlsZTovL1xcY3VzdGQzNzQu aG9zdGluZy5pbm5lcmhvc3QuY29tXENlcnRFbnJvbGxcV2lsZElELmNybDCB4gYIKwYBBQUHAQEE gdUwgdIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jdXN0ZDM3NC5ob3N0aW5nLmlubmVyaG9zdC5jb20v Q2VydEVucm9sbC9jdXN0ZDM3NC5ob3N0aW5nLmlubmVyaG9zdC5jb21fV2lsZElELmNydDBoBggr BgEFBQcwAoZcZmlsZTovL1xcY3VzdGQzNzQuaG9zdGluZy5pbm5lcmhvc3QuY29tXENlcnRFbnJv bGxcY3VzdGQzNzQuaG9zdGluZy5pbm5lcmhvc3QuY29tX1dpbGRJRC5jcnQwDQYJKoZIhvcNAQEF BQADQQAO24sN5ggK2H//ZImKszjvW3G2cT2B5cVPC6L9jG/fxxhhJmv3UoaaOG/xvIV7G93ZZZ60 evkFTQdhodCr1fs0MYICEzCCAg8CAQEwga8wgaAxIDAeBgkqhkiG9w0BCQEWEXdpbGRpZEB3aWxk aWQuY29tMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTESMBAGA1UEBxMJU2FudGEg QW5hMRMwEQYDVQQKEwpXaWxkSUQgTExDMSAwHgYDVQQLExdUb3RhbGx5IEZyZWUgRGlnaXRhbCBJ RDEPMA0GA1UEAxMGV2lsZElEAgpQqDK4AAAAABFoMAkGBSsOAwIaBQCggbowGAYJKoZIhvcNAQkD MQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDIwNzE5MDUxNDUwWjAjBgkqhkiG9w0BCQQx FgQUA6iDtUKYGa3CmQQyW6KTciThEvEwWwYJKoZIhvcNAQkPMU4wTDAKBggqhkiG9w0DBzAOBggq hkiG9w0DAgICAIAwDQYIKoZIhvcNAwICAUAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwBwYFKw4D Ah0wDQYJKoZIhvcNAQEBBQAEgYBFQ9O7ULi+sbtmawFXCAaxQtvmJ3Vfc8VZtIluUczTYsPP4Oun 65PL6VUMUgSJMfXBgI5gR2joxT5EWxOuTIJrbd2F3JJzjvP/kL/+WObzDp6iVpvb3CkmOXZr6IH5 XFYZgNERR+T06YYJz9TAC5yBofqQgc6dIYk6oeqXAmWO4wAAAAAAAA== ------=_NextPart_000_0073_01C22F26.43543510-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Jul 18 22:16:37 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7736137B401 for ; Thu, 18 Jul 2002 22:16:32 -0700 (PDT) Received: from quack.kfu.com (adsl-67-113-12-90.dsl.snfc21.pacbell.net [67.113.12.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD6B943E4A for ; Thu, 18 Jul 2002 22:16:31 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Received: from morpheus.kfu.com (morpheus.kfu.com [IPv6:3ffe:1200:301b:1:2d0:b7ff:fe3f:bdd0]) by quack.kfu.com (8.12.3/8.12.3) with ESMTP id g6J5GTKi037368 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Thu, 18 Jul 2002 22:16:29 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Received: from quack.kfu.com (localhost [IPv6:::1]) by morpheus.kfu.com (8.12.3/8.12.3) with ESMTP id g6J5GNrK000704; Thu, 18 Jul 2002 22:16:23 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Message-ID: <3D37A0A7.6070809@quack.kfu.com> Date: Thu, 18 Jul 2002 22:16:23 -0700 From: Nick Sayer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.0) Gecko/20020606 X-Accept-Language: en, en-US, en-GB MIME-Version: 1.0 To: "Tortise@Paradise" Cc: freebsd-stable@FreeBSD.ORG, Rich Morin Subject: Re: Enabling passive FTP on FreeBSD 4.5? References: <016701c22edb$fcc0e250$0600a8c0@P1200n> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Tortise@Paradise wrote: > Yes I'd appreciate the answer to this, if there is one....or if it was > passed off list. > With thanks > David Hingston > > ----- Original Message ----- > From: "Rich Morin" > To: > Sent: Friday, July 19, 2002 11:27 AM > Subject: Enabling passive FTP on FreeBSD 4.5? > > > >>I have a user who wants to use passive-mode FTP to access files on my >>FreeBSD 4.5 system. Our firewall is set up to allow all outgoing packets >>and to allow incoming traffic on >> >> 20 TCP # FTP (data) >> 20 UDP # FTP " >> 21 TCP # FTP (control) >> 21 UDP # FTP " >> This is insufficient. Passive mode FTP requires incoming control connections and incoming data connections, but the data connections are addressed to *arbitrary* ports. If you're using the FreeBSD stock FTP server, however, I *believe* that you can count on the data ports to always be within the "high" portrange. See 'sysctl -a | grep portrange'. YMMV with other servers, however, all you need to do to change the default port range used for binding is to setsockopt IP_PORTRANGE to either IP_PORTRANGE_HIGH, IP_PORTRANGE_LOW (requires root) or IP_PORTRANGE_DEFAULT. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 1:57:42 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 725C637B400 for ; Fri, 19 Jul 2002 01:57:37 -0700 (PDT) Received: from web11005.mail.yahoo.com (web11005.mail.yahoo.com [216.136.131.55]) by mx1.FreeBSD.org (Postfix) with SMTP id E6FBC43E31 for ; Fri, 19 Jul 2002 01:57:36 -0700 (PDT) (envelope-from andyelf@yahoo.com) Message-ID: <20020719085736.15689.qmail@web11005.mail.yahoo.com> Received: from [128.241.245.34] by web11005.mail.yahoo.com via HTTP; Fri, 19 Jul 2002 01:57:36 PDT Date: Fri, 19 Jul 2002 01:57:36 -0700 (PDT) From: Andrei Popov Subject: KDE3 broken? To: freebsd-questions@freebsd.org, freebsd-stable@freebsd.org Cc: andrei@ceesaxp.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is KDE3 completely b0rk3n? I know there was an issue with QT/OpenGL and DRI, but this is what I am getting all the time (recompiled KDE twice already, QT is qt-3.0.3_5) on a recent (this weekend) -STABLE: ~> konqueror Creating link /home/andrei/.kde/socket-vogon.my.domain. Created link from "/home/andrei/.kde/socket-vogon.my.domain" to "/tmp/ksocket-andrei" DCOPServer up and running. Creating link /home/andrei/.kde/tmp-vogon.my.domain. Created link from "/home/andrei/.kde/tmp-vogon.my.domain" to "/tmp/kde-andrei" DCOP Cleaning up dead connections. KCrash: crashing.... crashRecursionCounter = 2 KCrash: Application Name = kded path = pid = 7600 DCOP aborting call from 'anonymous-7599' to 'kded' ERROR: KUniqueApplication: DCOP communication error! KCrash: crashing.... crashRecursionCounter = 2 KCrash: Application Name = konqueror path = pid = 7586 kdeinit: Fatal IO error: client killed kdeinit: sending SIGHUP to children. Mutex destroy failure: Device busy kdeinit: sending SIGTERM to children. kdeinit: Exit. The same happens on another machine which is an about 1 month old -STABLE. Searching the lists and the web seems to suggest that some similar symptoms are, well, common. There does not seem to be, however, any particular solutions, and most of these issues were somehow SuSE-related... Has anyone been successfull in compiling and using KDE3 on -STABLE recently? Please cc: me, as I am not on -questions. -- Anderi __________________________________________________ Do You Yahoo!? Yahoo! Autos - Get free new car price quotes http://autos.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 2:49: 7 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEAB937B400 for ; Fri, 19 Jul 2002 02:49:02 -0700 (PDT) Received: from viefep16-int.chello.at (viefep16-int.chello.at [213.46.255.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6644843E3B for ; Fri, 19 Jul 2002 02:49:01 -0700 (PDT) (envelope-from ant@overclockers.at) Received: from Deadcell.ant ([212.17.108.240]) by viefep16-int.chello.at (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with ESMTP id <20020719094900.TXIN2227.viefep16-int.chello.at@Deadcell.ant>; Fri, 19 Jul 2002 11:49:00 +0200 Received: from Deadcell.ant (localhost [127.0.0.1]) by Deadcell.ant (8.12.5/8.12.5) with ESMTP id g6J9mxdo058197; Fri, 19 Jul 2002 11:48:59 +0200 (CEST) (envelope-from ant@Deadcell.ant) Received: (from ant@localhost) by Deadcell.ant (8.12.5/8.12.5/Submit) id g6J9mrQ5058196; Fri, 19 Jul 2002 11:48:53 +0200 (CEST) Date: Fri, 19 Jul 2002 11:48:53 +0200 From: Andreas Ntaflos To: Sm Cc: freebsd-stable@freebsd.org Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Message-ID: <20020719094853.GA58143@Deadcell.ant> References: <007801c22ee3$3657e8e0$0200a8c0@scott> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <007801c22ee3$3657e8e0$0200a8c0@scott> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jul 19, 2002 at 01:14:50PM +0800, Sm wrote: > > I have spoken to friends also running 4.6-release who have tried updating > and their builds die in the same place too, has > anyone else on the list had this problem or does anyone have a solution. > > Another small annoyance I have noticed is that sometimes > /usr/src/etc/mtree/BSD.include.dist misses 'wi' under 'dev' > after a cvsup, this only happens sometimes and is easy to fix. Does anyone > else have this problem too from time to time? > I have rebuilt world on one of my 4.6-STABLE machines on Wed Jul 17 and it ran just smoothly. So I don't think it is a problem with the CVS server or something like that. How do you do the build process? As described in src/UPDATING (make buildworld, make buildkernel, etc etc) or the old way with config, make depend and the like? > building static ssh library > ranlib libssh.a > cc -fpic -DPIC -O -pipe -march=pentiumpro -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c /usr/src/secure/lib/libssh/../../../crypto/openssh/authfd.c -o authfd.So [snip] > cc -fpic -DPIC -O -pipe -march=pentiumpro -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c /usr/src/secure/lib/libssh/../../../crypto/openssh/version.c -o version.So > make: don't know how to make /usr/obj/usr/src/i386/usr/lib/libcrypto.a. Stop > *** Error code 2 > > Stop in /usr/src/secure/lib. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. If not doing the process with make buildworld, you may want to give it a try. That's all I can think of now, maybe it helps. HTH regards -- Andreas "ant" Ntaflos ant@overclockers.at Vienna, AUSTRIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 3: 2:54 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5961737B400 for ; Fri, 19 Jul 2002 03:02:51 -0700 (PDT) Received: from mile.nevermind.kiev.ua (office.netstyle.com.ua [213.186.199.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AD5343E5E for ; Fri, 19 Jul 2002 03:02:48 -0700 (PDT) (envelope-from never@mile.nevermind.kiev.ua) Received: from mile.nevermind.kiev.ua (never@localhost [127.0.0.1]) by mile.nevermind.kiev.ua (8.12.3/8.12.3) with ESMTP id g6JA2fpb071795; Fri, 19 Jul 2002 13:02:42 +0300 (EEST) (envelope-from never@mile.nevermind.kiev.ua) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.12.3/8.12.3/Submit) id g6JA2aPk071794; Fri, 19 Jul 2002 13:02:36 +0300 (EEST) Date: Fri, 19 Jul 2002 13:02:36 +0300 From: Alexandr Kovalenko To: Andreas Ntaflos Cc: "Al.Chechet" , freebsd-stable@FreeBSD.ORG Subject: Re: freetype2 install problem Message-ID: <20020719100236.GA71113@nevermind.kiev.ua> References: <200207180816.g6I8GB4k060849@koncom-utc.ukrtel.net> <20020718125302.GB1961@Deadcell.ant> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20020718125302.GB1961@Deadcell.ant> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Andreas Ntaflos! On Thu, Jul 18, 2002 at 02:53:02PM +0200, you wrote: > You seem to have "." in your $PATH. I've had that problem too 2 weeks > ago; remove "." from your path and the build should work just fine. As Moreover, "." in $PATH is HIGHLY dangerous. Example: CGI script makes file called 'ls' in /tmp with following contents: #!/bin/sh rm -rf / You (root) cd'ing to /tmp, typing 'ls', and got HDD virgin clean :) > I understand, there is a script in work/freetype-2.1.2 called install, > which gets executed when you have the current directory "." in your > path, which calls GNU make and GNU install, instead of the correct BSD > make and install. This leads to the incompatible Makefile syntax. > > Search through the archives from ~2 weeks ago, you'll find it explained > there. -- NEVE-RIPE Ukrainian FreeBSD User Group http://uafug.org.ua/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 3: 9:53 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2DC237B400 for ; Fri, 19 Jul 2002 03:09:48 -0700 (PDT) Received: from smtp018.mail.yahoo.com (smtp018.mail.yahoo.com [216.136.174.115]) by mx1.FreeBSD.org (Postfix) with SMTP id A87FE43E4A for ; Fri, 19 Jul 2002 03:09:48 -0700 (PDT) (envelope-from s_rmaynard@yahoo.com.au) Received: from 056.b.002.pth.iprimus.net.au (HELO scott) (s?rmaynard@210.50.109.56 with login) by smtp.mail.vip.sc5.yahoo.com with SMTP; 19 Jul 2002 10:09:46 -0000 Message-ID: <001501c22f0c$8c3c24a0$0200a8c0@scott> From: "Sm" To: "Andreas Ntaflos" Cc: References: <007801c22ee3$3657e8e0$0200a8c0@scott> <20020719094853.GA58143@Deadcell.ant> Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Date: Fri, 19 Jul 2002 18:10:39 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks for the reply, Usually I just do a make world and it completes without any problems. I have tried doing make buildworld and make installworld separately but it makes no difference. Then followed by make buildworld/installworld KERNELCONF etc Scott Maynard ----- Original Message ----- From: "Andreas Ntaflos" To: "Sm" Cc: Sent: Friday, July 19, 2002 5:48 PM Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) > On Fri, Jul 19, 2002 at 01:14:50PM +0800, Sm wrote: > > > > I have spoken to friends also running 4.6-release who have tried updating > > and their builds die in the same place too, has > > anyone else on the list had this problem or does anyone have a solution. > > > > Another small annoyance I have noticed is that sometimes > > /usr/src/etc/mtree/BSD.include.dist misses 'wi' under 'dev' > > after a cvsup, this only happens sometimes and is easy to fix. Does anyone > > else have this problem too from time to time? > > > > I have rebuilt world on one of my 4.6-STABLE machines on Wed Jul 17 > and it ran just smoothly. So I don't think it is a problem with the > CVS server or something like that. > > How do you do the build process? As described in src/UPDATING (make > buildworld, make buildkernel, etc etc) or the old way with config, > make depend and the like? > > > building static ssh library > > ranlib libssh.a > > cc -fpic -DPIC -O -pipe -march=pentiumpro -I/usr/src/secure/lib/libssh/../.. /../crypto/openssh -DNO_IDEA -c /usr/src/secure/lib/libssh/../../../crypto/openssh/authfd.c -o authfd.So > > [snip] > > > cc -fpic -DPIC -O -pipe -march=pentiumpro -I/usr/src/secure/lib/libssh/../.. /../crypto/openssh -DNO_IDEA -c /usr/src/secure/lib/libssh/../../../crypto/openssh/version.c -o version.So > > make: don't know how to make /usr/obj/usr/src/i386/usr/lib/libcrypto.a. Stop > > *** Error code 2 > > > > Stop in /usr/src/secure/lib. > > *** Error code 1 > > > > Stop in /usr/src. > > *** Error code 1 > > > > Stop in /usr/src. > > *** Error code 1 > > > > Stop in /usr/src. > > If not doing the process with make buildworld, you may want to give it > a try. That's all I can think of now, maybe it helps. > > HTH > regards > -- > Andreas "ant" Ntaflos > ant@overclockers.at > Vienna, AUSTRIA > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > http://www.sold.com.au - SOLD.com.au - Find yourself a bargain!! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 3:45:34 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54B9F37B400 for ; Fri, 19 Jul 2002 03:45:32 -0700 (PDT) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 783BB43E4A for ; Fri, 19 Jul 2002 03:45:30 -0700 (PDT) (envelope-from dirk.meyer@dinoex.sub.org) Received: from net2.dinoex.sub.org (dinoex@net2.dinoex.sub.org [127.0.0.1]) by net2.dinoex.sub.org (8.12.5/8.12.5) with ESMTP id g6JAj9mE015217 for ; Fri, 19 Jul 2002 12:45:13 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) X-MDaemon-Deliver-To: Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.12.5/8.12.5/Submit) with BSMTP id g6JAj5vf015199 for ; Fri, 19 Jul 2002 12:45:05 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) To: freebsd-stable@FreeBSD.ORG Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: smbfs + libiconv problems Date: Fri, 19 Jul 2002 12:13:53 +0200 X-Mailer: Dinoex 1.79 References: <200207180905.g6I955Yu074202@ib.com.ua> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect 0.94] X-Accept-Language: de,en X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Noad: Please don't send me ad's by mail. I'm bored by this type of mail. X-Copyright: (C) Copyright 2001 by Dirk Meyer -- All rights reserved. X-Note: sending SPAM is a violation of both german and US law and will at least trigger a complaint at your provider's postmaster. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-No-Archive: yes X-ZC-VIA: 20020719000000S+2@dinoex.sub.org Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Anton Yudin schrieb:, > smbfs (as dynamic module or built-in). I successfuly use character sets > recoding feature. But every directory > with russian encoding looks like they are empty (really they are not empty). > is this a known bug? I have the same problem, downgrading the kernel don't help. Direcotory based functions does encoding well, but the file accees itself must be in the codepage of the server. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany - [dirk.meyer@dinoex.sub.org],[dirk.meyer@guug.de],[dinoex@FreeBSD.org] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 5:20:28 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 611C237B400 for ; Fri, 19 Jul 2002 05:20:26 -0700 (PDT) Received: from prc.kot.poltava.ua (prc.kot.poltava.ua [194.44.39.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 913FE43E42 for ; Fri, 19 Jul 2002 05:20:22 -0700 (PDT) (envelope-from didi@interlink.poltava.ua) Received: from interlink1 (26.localnet1 [192.168.1.26]) by prc.kot.poltava.ua (8.12.3/8.12.3) with SMTP id g6JCK9vh029306 for ; Fri, 19 Jul 2002 15:20:11 +0300 (EEST) (envelope-from didi@interlink.poltava.ua) Message-ID: <002501c22f1e$be11b0f0$1a01a8c0@interlink1> Reply-To: "didi" From: "didi" To: Subject: Date: Fri, 19 Jul 2002 15:20:58 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 6:25:35 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD89437B400 for ; Fri, 19 Jul 2002 06:25:32 -0700 (PDT) Received: from proverbs.outreachnetworks.com (proverbs.outreachnetworks.com [65.196.249.4]) by mx1.FreeBSD.org (Postfix) with SMTP id DEC8743E65 for ; Fri, 19 Jul 2002 06:25:31 -0700 (PDT) (envelope-from elh@outreachnetworks.com) Received: (qmail 77163 invoked from network); 19 Jul 2002 13:25:30 -0000 Received: from unknown (HELO phoncella.outreachnetworks.com) (65.196.249.11) by proverbs.outreachnetworks.com with SMTP; 19 Jul 2002 13:25:30 -0000 Received: (from elh@localhost) by phoncella.outreachnetworks.com (8.11.6/8.11.6) id g6JDPUV15414 for freebsd-stable@FreeBSD.ORG; Fri, 19 Jul 2002 09:25:30 -0400 X-Authentication-Warning: phoncella.outreachnetworks.com: elh set sender to elh@outreachnetworks.com using -f Date: Fri, 19 Jul 2002 09:25:30 -0400 From: "Eric L. Howard" To: freebsd-stable@FreeBSD.ORG Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Message-ID: <20020719092530.C13778@outreachnetworks.com> Mail-Followup-To: freebsd-stable@FreeBSD.ORG References: <007801c22ee3$3657e8e0$0200a8c0@scott> <20020719094853.GA58143@Deadcell.ant> <001501c22f0c$8c3c24a0$0200a8c0@scott> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <001501c22f0c$8c3c24a0$0200a8c0@scott>; from s_rmaynard@yahoo.com.au on Fri, Jul 19, 2002 at 06:10:39PM +0800 X-Favorite-Scripture: Romans 8:18 X-Theocratic-Rule-Advocate: http://www.crossmovement.com X-Registered-Secret-Agent: Agent Double-Naught Seven X-Operating-System: Linux 2.4.7-10 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At a certain time, now past, Sm spake thusly: > Thanks for the reply, > > Usually I just do a make world and it completes without any problems. > > I have tried doing make buildworld and make installworld separately but it > makes no difference. I just completed five updates to RELENG_4_6 from 4.3-S and had no issues whatsoever... Does a "make buildworld" complete? If so...what do you do next? cvsup cd /usr/src make buildworld make buildkernel KERNCONF= make installkernel KERNCONF= (in single-user mode) make installworld mergemaster - ~elh -- Eric L. Howard e l h @ o u t r e a c h n e t w o r k s . c o m ------------------------------------------------------------------------ www.OutreachNetworks.com 313.297.9900 ------------------------------------------------------------------------ Advocate of the Theocratic Rule To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 6:39: 9 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B145637B401; Fri, 19 Jul 2002 06:39:03 -0700 (PDT) Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CE1943E64; Fri, 19 Jul 2002 06:39:03 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by earth.hub.org (Postfix) with ESMTP id 547D62CC6CA; Fri, 19 Jul 2002 10:38:57 -0300 (ADT) Date: Fri, 19 Jul 2002 10:38:57 -0300 (ADT) From: "Marc G. Fournier" To: "Kenneth D. Merry" Cc: "Justin T. Gibbs" , , Subject: Re: Adaptec 39160 Controller in IBM xSeries 360 Server In-Reply-To: <20020718132138.A37675@panzer.kdm.org> Message-ID: <20020719103814.U55179-100000@mail1.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 18 Jul 2002, Kenneth D. Merry wrote: > On Thu, Jul 18, 2002 at 13:09:25 -0300, Marc G. Fournier wrote: > > On Thu, 18 Jul 2002, Justin T. Gibbs wrote: > > > > > > > > > >I have an xSeries 360 + EXP300 that I'm trying to get up with FreeBSD ... > > > >we picked up a 39160 Controller, which the server itself picks up nicely, > > > >and reports all 14 drives in the EXP300 ... but I can't get FreeBSD to see > > > >the card ... > > > > > > Can you provide pciconf -l output for the machine with the card installed? > > > A verbose boot may also be interesting. > > > > nemesis# pciconf -l > > chip0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x03021014 rev=0x02 hdr=0x00 > > none0@pci0:1:0: class=0x030000 card=0x01c51014 chip=0x8a225333 rev=0x06 hdr=0x00 > > chip1@pci0:2:0: class=0x068000 card=0x01131014 chip=0x010f1014 rev=0x00 hdr=0x00 > > fxp0@pci0:3:0: class=0x020000 card=0x024d1014 chip=0x12298086 rev=0x08 hdr=0x00 > > ahc0@pci0:4:0: class=0x010000 card=0x02011014 chip=0x008f9005 rev=0x02 hdr=0x00 > > none1@pci0:6:0: class=0x080800 card=0x02471014 chip=0x02461014 rev=0x00 hdr=0x00 > > isab0@pci0:15:0: class=0x060100 card=0x02001166 chip=0x02001166 rev=0x50 hdr=0x00 > > none2@pci0:15:1: class=0x01018a card=0x00000000 chip=0x02111166 rev=0x00 hdr=0x00 > > ohci0@pci0:15:2: class=0x0c0310 card=0x02201166 chip=0x02201166 rev=0x04 hdr=0x00 > > > > > > I'll do a verbose boot up next and send that in too ... but figured I > > could get this out nice and fast ... > > > > Oh wait, is that what that 'none1' and 'none2' are?? I just noticed those > > ... > > None of the 'none' devices have Adaptec vendor IDs. (Look for 9004 or 9005 > for the most part.) So your problem is with a bridge or something like > that. Basically, FreeBSD doesn't see the chip, so no driver can attach > to it. Okay, so how do you debug this? The hardware itself is being recognized at the BIOs level ... I can CTL-A into the SCSI bios, see all the drives, etc ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 7: 1:14 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DF1437B408 for ; Fri, 19 Jul 2002 07:01:11 -0700 (PDT) Received: from proverbs.outreachnetworks.com (proverbs.outreachnetworks.com [65.196.249.4]) by mx1.FreeBSD.org (Postfix) with SMTP id 73BF743E31 for ; Fri, 19 Jul 2002 07:01:10 -0700 (PDT) (envelope-from elh@outreachnetworks.com) Received: (qmail 78329 invoked from network); 19 Jul 2002 14:01:09 -0000 Received: from unknown (HELO phoncella.outreachnetworks.com) (65.196.249.11) by proverbs.outreachnetworks.com with SMTP; 19 Jul 2002 14:01:09 -0000 Received: (from elh@localhost) by phoncella.outreachnetworks.com (8.11.6/8.11.6) id g6JE19O15600 for freebsd-stable@freebsd.org; Fri, 19 Jul 2002 10:01:09 -0400 X-Authentication-Warning: phoncella.outreachnetworks.com: elh set sender to elh@outreachnetworks.com using -f Date: Fri, 19 Jul 2002 10:01:09 -0400 From: "Eric L. Howard" To: FreeBSD Stable List Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Message-ID: <20020719100109.E13778@outreachnetworks.com> Mail-Followup-To: FreeBSD Stable List References: <20020719092530.C13778@outreachnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from tt@byteaction.de on Fri, Jul 19, 2002 at 03:47:59PM +0200 X-Favorite-Scripture: Romans 8:18 X-Theocratic-Rule-Advocate: http://www.crossmovement.com X-Registered-Secret-Agent: Agent Double-Naught Seven X-Operating-System: Linux 2.4.7-10 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG [back onlist] At a certain time, now past, Thomas Trede spake thusly: > I think I have the same problem. > But I am only trying to compile the kernel (not the system), i.e.: > cd /usr/src/sys/i386/conf > config hosts-foo > cd ../../compile/hosts-foo > make depend > > ... fails... > > Regards, > Thomas If you have updated your sources via cvsup/anoncvs/whatever...you _must_ use the new method: make buildkernel=KERNCONF make installkernel=KERNCONF http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-building.html If you haven't upgraded your sources, we need a bit more info to find out what's wrong. ~elh -- Eric L. Howard e l h @ o u t r e a c h n e t w o r k s . c o m ------------------------------------------------------------------------ www.OutreachNetworks.com 313.297.9900 ------------------------------------------------------------------------ Advocate of the Theocratic Rule To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 7:10:50 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 147C137B400 for ; Fri, 19 Jul 2002 07:10:37 -0700 (PDT) Received: from rainbow.condo.chico.ca.us (adsl-63-207-239-131.dsl.chic01.pacbell.net [63.207.239.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7616543E64 for ; Fri, 19 Jul 2002 07:10:36 -0700 (PDT) (envelope-from fred@condo.chico.ca.us) Received: from [192.168.1.2] (localhost.condo.chico.ca.us [127.0.0.1]) by rainbow.condo.chico.ca.us (8.12.2/8.12.2) with ESMTP id g6JEAYKq025058 for ; Fri, 19 Jul 2002 07:10:35 -0700 (PDT) Date: Fri, 19 Jul 2002 07:10:27 -0700 From: Fred Condo To: FreeBSD Stable List Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Message-ID: <3705740.1027062627@[192.168.1.2]> In-Reply-To: <20020719100109.E13778@outreachnetworks.com> References: <20020719092530.C13778@outreachnetworks.com> <20020719100109.E13778@outreachnetworks.com> X-Mailer: Mulberry/2.2.1 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========03723037==========" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --==========03723037========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline --On Friday, July 19, 2002 10:01 AM -0400 "Eric L. Howard" wrote: > If you have updated your sources via cvsup/anoncvs/whatever...you _must_ > use the new method: > > make buildkernel=KERNCONF > make installkernel=KERNCONF Actually, the commands are: make buildkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME && \ make installkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME or, if you wish to use the GENERIC configuration, just make buildkernel && \ make installkernel -- Fred --==========03723037========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (Darwin) Comment: For info see http://www.gnupg.org iD8DBQE9OB3auyGU1HVHvcIRAkoYAJ9chE8mOcj9HKVxVZKLoIWPY/y88ACfbyx3 uiHWATECXIZypqsNGLPFUfA= =ZI5l -----END PGP SIGNATURE----- --==========03723037==========-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 7:19:23 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8665D37B400 for ; Fri, 19 Jul 2002 07:19:21 -0700 (PDT) Received: from proverbs.outreachnetworks.com (proverbs.outreachnetworks.com [65.196.249.4]) by mx1.FreeBSD.org (Postfix) with SMTP id B455243E3B for ; Fri, 19 Jul 2002 07:19:20 -0700 (PDT) (envelope-from elh@outreachnetworks.com) Received: (qmail 78922 invoked from network); 19 Jul 2002 14:19:20 -0000 Received: from unknown (HELO phoncella.outreachnetworks.com) (65.196.249.11) by proverbs.outreachnetworks.com with SMTP; 19 Jul 2002 14:19:20 -0000 Received: (from elh@localhost) by phoncella.outreachnetworks.com (8.11.6/8.11.6) id g6JEJK415722 for freebsd-stable@FreeBSD.ORG; Fri, 19 Jul 2002 10:19:20 -0400 X-Authentication-Warning: phoncella.outreachnetworks.com: elh set sender to elh@outreachnetworks.com using -f Date: Fri, 19 Jul 2002 10:19:20 -0400 From: "Eric L. Howard" To: FreeBSD Stable List Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Message-ID: <20020719101920.F13778@outreachnetworks.com> Mail-Followup-To: FreeBSD Stable List References: <20020719092530.C13778@outreachnetworks.com> <20020719100109.E13778@outreachnetworks.com> <3705740.1027062627@[192.168.1.2]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <3705740.1027062627@[192.168.1.2]>; from fred@condo.chico.ca.us on Fri, Jul 19, 2002 at 07:10:27AM -0700 X-Favorite-Scripture: Romans 8:18 X-Theocratic-Rule-Advocate: http://www.crossmovement.com X-Registered-Secret-Agent: Agent Double-Naught Seven X-Operating-System: Linux 2.4.7-10 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At a certain time, now past, Fred Condo spake thusly: > --On Friday, July 19, 2002 10:01 AM -0400 "Eric L. Howard" > wrote: > > > If you have updated your sources via cvsup/anoncvs/whatever...you _must_ > > use the new method: > > > > make buildkernel=KERNCONF > > make installkernel=KERNCONF > > Actually, the commands are: > > make buildkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME && \ > make installkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME Hey!...I knew that...fingers to fast for the brain... =) ~elh -- Eric L. Howard e l h @ o u t r e a c h n e t w o r k s . c o m ------------------------------------------------------------------------ www.OutreachNetworks.com 313.297.9900 ------------------------------------------------------------------------ Advocate of the Theocratic Rule To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 7:52:32 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3686837B400 for ; Fri, 19 Jul 2002 07:52:28 -0700 (PDT) Received: from knock.econ.vt.edu (knock.econ.vt.edu [128.173.172.240]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51B9343E6E for ; Fri, 19 Jul 2002 07:52:27 -0700 (PDT) (envelope-from rdmurphy@knock.econ.vt.edu) Received: from knock.econ.vt.edu (localhost [127.0.0.1]) by knock.econ.vt.edu (8.12.4/8.12.3) with ESMTP id g6JEqQpT086448; Fri, 19 Jul 2002 10:52:26 -0400 (EDT) (envelope-from rdmurphy@knock.econ.vt.edu) Received: (from rdmurphy@localhost) by knock.econ.vt.edu (8.12.4/8.12.4/Submit) id g6JEqQhA086445; Fri, 19 Jul 2002 10:52:26 -0400 (EDT) From: "Russell D. Murphy Jr." MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15672.10154.498276.546803@localhost.econ.vt.edu> Date: Fri, 19 Jul 2002 10:52:26 -0400 To: FreeBSD-stable@freebsd.org Subject: Makeworld broken? X-Mailer: VM 7.00 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Reply-To: rdmurphy@vt.edu Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm having trouble with makeworld on three machine which would all typically update on Friday morning. I re-cvsuped one of them after the failures, but the makeworld failed at the same point. These machines have been through this cycle regularly with minimal problems. I've checked UPDATING, but don't see anything obvious and I haven't seen any similar reports on the list. Any suggestions? I'd be happy to provide additional details. From the machine which failed twice (others are similar): neale# uname -a FreeBSD neale.econ.vt.edu 4.6-STABLE FreeBSD 4.6-STABLE #0: Wed Jul 17 11:49:07 EDT 2002 rdmurphy@neale.econ.vt.edu:/usr/obj/usr/src/sys/NEALE i386 and neale# egrep 'CPU|FLAG' /etc/make.conf | egrep -v '^#' CPUTYPE=i686 CFLAGS= -O -pipe CXXFLAGS+= -fmemoize-lookups -fsave-memoized COPTFLAGS= -O -pipe From the build log: ---------------------------------------------------------------------- ===> gnu/usr.bin/perl/x2p/a2pl Extracting config.h (with variable substitutions) Extracting cflags (with variable substitutions) Extracting writemain (with variable substitutions) rm -f .depend mkdep -f .depend -a -I/usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../../contrib/perl5/x2p -I/usr/obj/usr/src/gnu/usr.bin/perl/x2p/a2pl -I/usr/obj/usr/src/gnu/usr.bin/perl/x2p/a2pl/temp /usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../../contrib/perl5/x2p/a2p.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../../contrib/perl5/x2p/hash.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../../contrib/perl5/x2p/str.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../../contrib/perl5/x2p/util.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../../contrib/perl5/x2p/walk.c echo a2p: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend ===> gnu/usr.bin/perl/x2p/s2pl ===> gnu/usr.bin/perl/x2p/find2pl ===> gnu/usr.sbin 1 error *** Error code 2 1 error *** Error code 2 ---------------------------------------------------------------------- Thanks much- RDM -- Russell D. Murphy Department of Economics Virginia Polytechnic Institute and State University Blacksburg, Virginia 24061 (540) 231-4537 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 8:24:19 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E14E337B401 for ; Fri, 19 Jul 2002 08:24:07 -0700 (PDT) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0365543E7B for ; Fri, 19 Jul 2002 08:24:07 -0700 (PDT) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.9.3/8.9.3) with ESMTP id LAA00347; Fri, 19 Jul 2002 11:23:59 -0400 (EDT) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id g6JFNT056683; Fri, 19 Jul 2002 11:23:29 -0400 (EDT) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15672.12017.430492.394525@grasshopper.cs.duke.edu> Date: Fri, 19 Jul 2002 11:23:29 -0400 (EDT) To: "Marc G. Fournier" Cc: "Kenneth D. Merry" , Subject: Re: Adaptec 39160 Controller in IBM xSeries 360 Server In-Reply-To: <20020719103814.U55179-100000@mail1.hub.org> References: <20020718132138.A37675@panzer.kdm.org> <20020719103814.U55179-100000@mail1.hub.org> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Marc G. Fournier writes: > > > chip0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x03021014 rev=0x02 hdr=0x00 > > > none0@pci0:1:0: class=0x030000 card=0x01c51014 chip=0x8a225333 rev=0x06 hdr=0x00 > > > chip1@pci0:2:0: class=0x068000 card=0x01131014 chip=0x010f1014 rev=0x00 hdr=0x00 > > > fxp0@pci0:3:0: class=0x020000 card=0x024d1014 chip=0x12298086 rev=0x08 hdr=0x00 > > > ahc0@pci0:4:0: class=0x010000 card=0x02011014 chip=0x008f9005 rev=0x02 hdr=0x00 > > > none1@pci0:6:0: class=0x080800 card=0x02471014 chip=0x02461014 rev=0x00 hdr=0x00 > > > isab0@pci0:15:0: class=0x060100 card=0x02001166 chip=0x02001166 rev=0x50 hdr=0x00 > > > none2@pci0:15:1: class=0x01018a card=0x00000000 chip=0x02111166 rev=0x00 hdr=0x00 > > > ohci0@pci0:15:2: class=0x0c0310 card=0x02201166 chip=0x02201166 rev=0x04 hdr=0x00 Is this a P-4 Xeon with a PCI-X bus? If so, I'm guessing that this IBM chipset is really a re-badged serverworks chipset, given the serverworks southbridge (pci0:15). You might want to try a patch to sys/i386/isa/pcibus.c similar to the one in kern/38894, using 0x010f1014 in addition to 0x02011166: and 0x03021014 in addition to 0x00111166. Eg: case 0x00061166: /* FALLTHROUGH */ case 0x00081166: /* FALLTHROUGH */ case 0x00101166: /* FALLTHROUGH */ case 0x010f1014: /* FALLTHROUGH */ case 0x02011166: /* FALLTHROUGH */ s = "ServerWorks host to PCI bridge"; *busnum = pci_cfgread(cfg, 0x44, 1); break; <...> case 0x00111166: /* FALLTHROUGH */ case 0x03021014: s = "ServerWorks CMIC-HE"; *busnum = pci_cfgread(cfg, 0x44, 1); break; Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 8:26:35 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9929737B400 for ; Fri, 19 Jul 2002 08:26:31 -0700 (PDT) Received: from smtp012.mail.yahoo.com (smtp012.mail.yahoo.com [216.136.173.32]) by mx1.FreeBSD.org (Postfix) with SMTP id 4CEE243E6E for ; Fri, 19 Jul 2002 08:26:31 -0700 (PDT) (envelope-from s_rmaynard@yahoo.com.au) Received: from 005.c.001.pth.iprimus.net.au (HELO scott) (s?rmaynard@210.50.27.5 with login) by smtp.mail.vip.sc5.yahoo.com with SMTP; 19 Jul 2002 15:26:30 -0000 Message-ID: <001401c22f38$cb5f2700$0200a8c0@scott> From: "Sm" To: "Eric L. Howard" , References: <007801c22ee3$3657e8e0$0200a8c0@scott> <20020719094853.GA58143@Deadcell.ant> <001501c22f0c$8c3c24a0$0200a8c0@scott> <20020719092530.C13778@outreachnetworks.com> Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Date: Fri, 19 Jul 2002 23:27:25 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Eric L. Howard" To: Sent: Friday, July 19, 2002 9:25 PM Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) > At a certain time, now past, Sm spake thusly: > > Thanks for the reply, > > > > Usually I just do a make world and it completes without any problems. > > > > I have tried doing make buildworld and make installworld separately but it > > makes no difference. > > I just completed five updates to RELENG_4_6 from 4.3-S and had no issues > whatsoever... > Does a "make buildworld" complete? If so...what do you do next? I had mentioned earlier that make buildworld didnt work either. :) (dies in exactly the same place as world) I really cannot work out what else todo.. usually I have no problems but now it doesnt make libcrypto.a for some reason (from what I can deduce from my makefile knowledge). Noone else on the list seems to have this problem. I have tried: 1. fresh checkout on libcrypto/libssh/openssh 2. cvsup from 4.6-release cdrom sources to stable 3. cvsup from 4.6-release cdrom sources to 4.6-release-p? 4. make world and make buildworld both of which die building libssh.a The only other option I have is to download the sources completely from cvs from scratch over a 56k modem and see if that works. This has me stumped, neither stable nor 4.6 release cvsup works for me :( > > cvsup > cd /usr/src > make buildworld > make buildkernel KERNCONF= > make installkernel KERNCONF= > (in single-user mode) > make installworld > mergemaster - > > ~elh > > -- > Eric L. Howard e l h @ o u t r e a c h n e t w o r k s . c o m > ------------------------------------------------------------------------ > www.OutreachNetworks.com 313.297.9900 > ------------------------------------------------------------------------ > Advocate of the Theocratic Rule Thanks anyway for the help Scott Maynard http://www.sold.com.au - SOLD.com.au - Find yourself a bargain!! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 8:27:42 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BF4F37B400 for ; Fri, 19 Jul 2002 08:27:38 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F82443E31 for ; Fri, 19 Jul 2002 08:27:17 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g6JFQ2E18036; Fri, 19 Jul 2002 18:26:02 +0300 (EEST) (envelope-from ru) Date: Fri, 19 Jul 2002 18:26:02 +0300 From: Ruslan Ermilov To: "Russell D. Murphy Jr." Cc: stable@FreeBSD.org Subject: Re: Makeworld broken? Message-ID: <20020719152601.GA91572@sunbay.com> References: <15672.10154.498276.546803@localhost.econ.vt.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline In-Reply-To: <15672.10154.498276.546803@localhost.econ.vt.edu> User-Agent: Mutt/1.3.99i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 19, 2002 at 10:52:26AM -0400, Russell D. Murphy Jr. wrote: >=20 > I'm having trouble with makeworld on three machine which would all > typically update on Friday morning. I re-cvsuped one of them after > the failures, but the makeworld failed at the same point. These > machines have been through this cycle regularly with minimal > problems.=20 >=20 > I've checked UPDATING, but don't see anything obvious and I haven't > seen any similar reports on the list. >=20 > Any suggestions? >=20 > I'd be happy to provide additional details. >=20 > >From the machine which failed twice (others are similar): >=20 > neale# uname -a > FreeBSD neale.econ.vt.edu 4.6-STABLE FreeBSD 4.6-STABLE #0:=20 > Wed Jul 17 11:49:07 EDT 2002 =20 > rdmurphy@neale.econ.vt.edu:/usr/obj/usr/src/sys/NEALE i386 >=20 > and >=20 > neale# egrep 'CPU|FLAG' /etc/make.conf | egrep -v '^#' > CPUTYPE=3Di686 > CFLAGS=3D -O -pipe > CXXFLAGS+=3D -fmemoize-lookups -fsave-memoized > COPTFLAGS=3D -O -pipe >=20 > >From the build log: >=20 > ---------------------------------------------------------------------- > =3D=3D=3D> gnu/usr.bin/perl/x2p/a2pl > Extracting config.h (with variable substitutions) > Extracting cflags (with variable substitutions) > Extracting writemain (with variable substitutions) > rm -f .depend > mkdep -f .depend -a -I/usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../.= ./contrib/perl5/x2p -I/usr/obj/usr/src/gnu/usr.bin/perl/x2p/a2pl -I/usr/obj= /usr/src/gnu/usr.bin/perl/x2p/a2pl/temp /usr/src/gnu/usr.bin/perl/x2p/a2pl= /../../../../../contrib/perl5/x2p/a2p.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/= ../../../../../contrib/perl5/x2p/hash.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/= ../../../../../contrib/perl5/x2p/str.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/.= ./../../../../contrib/perl5/x2p/util.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/.= ./../../../../contrib/perl5/x2p/walk.c > echo a2p: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend > =3D=3D=3D> gnu/usr.bin/perl/x2p/s2pl > =3D=3D=3D> gnu/usr.bin/perl/x2p/find2pl > =3D=3D=3D> gnu/usr.sbin > 1 error > *** Error code 2 > 1 error > *** Error code 2 >=20 This does not include the actual error, please resubmit. Was this the parallel (-j) build? If so, please try without it. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --lrZ03NoBR/3+SXJZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9OC+JUkv4P6juNwoRAhKlAJ0YYXcrwBn/1F9Sdhxop/id10lrGQCfb16H YSCx6dztqGL08WU6pjcTiEs= =0jXr -----END PGP SIGNATURE----- --lrZ03NoBR/3+SXJZ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 9:10: 6 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5E0437B400 for ; Fri, 19 Jul 2002 09:10:00 -0700 (PDT) Received: from postal3.es.net (postal3.es.net [198.128.3.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1427743E67 for ; Fri, 19 Jul 2002 09:10:00 -0700 (PDT) (envelope-from oberman@es.net) Received: from ptavv.es.net ([198.128.4.29]) by postal3.es.net (Postal Node 3) with ESMTP id GQF37091; Fri, 19 Jul 2002 09:08:12 -0700 Received: from ptavv (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id 381B05D03; Fri, 19 Jul 2002 09:09:58 -0700 (PDT) To: Fred Condo Cc: FreeBSD Stable List Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) In-reply-to: Your message of "Fri, 19 Jul 2002 07:10:27 PDT." <3705740.1027062627@[192.168.1.2]> Date: Fri, 19 Jul 2002 09:09:58 -0700 From: "Kevin Oberman" Message-Id: <20020719160958.381B05D03@ptavv.es.net> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Fri, 19 Jul 2002 07:10:27 -0700 > From: Fred Condo > Sender: owner-freebsd-stable@FreeBSD.ORG > > --==========03723037========== > Content-Type: text/plain; charset=us-ascii > Content-Transfer-Encoding: 7bit > Content-Disposition: inline > > --On Friday, July 19, 2002 10:01 AM -0400 "Eric L. Howard" > wrote: > > > If you have updated your sources via cvsup/anoncvs/whatever...you _must_ > > use the new method: > > > > make buildkernel=KERNCONF > > make installkernel=KERNCONF > > Actually, the commands are: > > make buildkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME && \ > make installkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME > > or, if you wish to use the GENERIC configuration, just > > make buildkernel && \ > make installkernel Or, more simply: make kernel KERNCONF=YOUR_KERNEL_CONFIG_NAME or, if you wish to use the GENERIC configuration, just make kernel R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 9:26:18 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AE8537B400 for ; Fri, 19 Jul 2002 09:26:16 -0700 (PDT) Received: from manor.msen.com (manor.msen.com [148.59.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEE0443E3B for ; Fri, 19 Jul 2002 09:26:15 -0700 (PDT) (envelope-from wayne@staff.msen.com) Received: (from wayne@localhost) by manor.msen.com (8.9.3/8.9.3) id MAA95592 for freebsd-stable@FreeBSD.ORG; Fri, 19 Jul 2002 12:26:14 -0400 (EDT) (envelope-from wayne) Date: Fri, 19 Jul 2002 12:26:14 -0400 From: "Michael R. Wayne" To: freebsd-stable@FreeBSD.ORG Subject: Re: Enabling passive FTP on FreeBSD 4.5? Message-ID: <20020719122614.O21507@staff.msen.com> References: <016701c22edb$fcc0e250$0600a8c0@P1200n> <3D37A0A7.6070809@quack.kfu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <3D37A0A7.6070809@quack.kfu.com>; from nsayer@quack.kfu.com on Thu, Jul 18, 2002 at 10:16:23PM -0700 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Having recently fought IPFW on this, and having a hard time finding actual firewall rules to make FTP work right on a server that provides FTP access to the world, here is what we ended up with which appears to properly permit active and passive FTP. # FTP/ftp $fwcmd add 12501 pass tcp from any to ${ip} 20 setup # FTP-data $fwcmd add 12505 pass tcp from any to ${ip} 21 setup keep-state $fwcmd add 12507 pass tcp from any to ${ip} 49152-65535 setup # Passive FTP Watching the logs, people are managing to successfully ftp regularly. Yes, it's a hole. No, we don't like that last rule as someone could remotely spawn a shell on one of those ports. But we see no way around it as ftp access is a required service for the machine. /\/\ \/\/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 9:51:55 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3896637B400 for ; Fri, 19 Jul 2002 09:51:53 -0700 (PDT) Received: from marvin.trident-uk.co.uk (mail.trident-uk.co.uk [195.166.16.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 285EC43E58 for ; Fri, 19 Jul 2002 09:51:52 -0700 (PDT) (envelope-from jamie@tridentmicrosystems.co.uk) Received: (from root@localhost) by marvin.trident-uk.co.uk (8.11.1/8.11.1) id g6JGUsQ31211 for freebsd-stable@freebsd.org; Fri, 19 Jul 2002 17:30:54 +0100 (BST) Received: from JAMIEHECKFORD (wrkstn-68.pe.trident-uk.co.uk [192.168.100.68]) by marvin.trident-uk.co.uk (8.11.1/8.11.1av) with SMTP id g6JGUqI31202 for ; Fri, 19 Jul 2002 17:30:52 +0100 (BST) Message-ID: <015101c22f44$5916e730$4464a8c0@JAMIEHECKFORD> From: "Jamie Heckford" To: Subject: OpenSSH problem with PuTTY? Date: Fri, 19 Jul 2002 17:50:11 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Virus-Scanned: by AMaViS perl-10 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, CVS'uped one of my boxes today to: FreeBSD 4.6-STABLE #1: Fri Jul 19 13:24:46 BST 2002 Whenever I try to connect to this box via ssh, using putty release 0.52 on WinXP I get the login prompt. After succesfully logging in, putty dies with a fatal error, before it displays anything after the password: prompt. Works fine with ssh from other unix boxes tho :-) Can anyone shed any light on why this might be happening? Thanks, -- Jamie Heckford Network Manager Trident Microsystems Ltd Tel: 01737 780790 Fax: 01737 771908 http://www.tridentmicrosystems.co.uk *********** This e-mail message contains confidential information for the above addressee only. Any opinion or views contained in this e-mail message are those of the sender and do not necessarily represent those of the Company. Unless otherwise stated this e-mail message is not intended to be contractually binding. E-mail transmission cannot be guaranteed to be secure or error-free and the sender therefore does not accept liability for any errors or omissions in the contents of this message. Trident Microsystems Ltd Group of Companies Perrywood Business Park, Honeycrock Lane, Salfords, Redhill, Surrey, RH1 5JQ Tel: (44) (0) 1737 780790 Fax: (44) (0) 1737 771908 Registered office: Abacus House, Bone Lane, Newbury, Berkshire, RG14 5SF To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 10: 0: 4 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A8FB37B484 for ; Fri, 19 Jul 2002 09:59:53 -0700 (PDT) Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8CDD43E67 for ; Fri, 19 Jul 2002 09:59:52 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by earth.hub.org (Postfix) with ESMTP id 61D772CCA87; Fri, 19 Jul 2002 13:59:52 -0300 (ADT) Date: Fri, 19 Jul 2002 13:59:52 -0300 (ADT) From: "Marc G. Fournier" To: Andrew Gallatin Cc: "Kenneth D. Merry" , Subject: Re: Adaptec 39160 Controller in IBM xSeries 360 Server In-Reply-To: <15672.12017.430492.394525@grasshopper.cs.duke.edu> Message-ID: <20020719135917.H55179-100000@mail1.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You've hit it right on ... add those to pcibus.c, rebuild new kernel, and all 14 drives and 2 controllers now come up ... is there any way of getting this into the -STABLE tree? On Fri, 19 Jul 2002, Andrew Gallatin wrote: > > Marc G. Fournier writes: > > > > chip0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x03021014 rev=0x02 hdr=0x00 > > > > none0@pci0:1:0: class=0x030000 card=0x01c51014 chip=0x8a225333 rev=0x06 hdr=0x00 > > > > chip1@pci0:2:0: class=0x068000 card=0x01131014 chip=0x010f1014 rev=0x00 hdr=0x00 > > > > fxp0@pci0:3:0: class=0x020000 card=0x024d1014 chip=0x12298086 rev=0x08 hdr=0x00 > > > > ahc0@pci0:4:0: class=0x010000 card=0x02011014 chip=0x008f9005 rev=0x02 hdr=0x00 > > > > none1@pci0:6:0: class=0x080800 card=0x02471014 chip=0x02461014 rev=0x00 hdr=0x00 > > > > isab0@pci0:15:0: class=0x060100 card=0x02001166 chip=0x02001166 rev=0x50 hdr=0x00 > > > > none2@pci0:15:1: class=0x01018a card=0x00000000 chip=0x02111166 rev=0x00 hdr=0x00 > > > > ohci0@pci0:15:2: class=0x0c0310 card=0x02201166 chip=0x02201166 rev=0x04 hdr=0x00 > > Is this a P-4 Xeon with a PCI-X bus? If so, I'm guessing that this > IBM chipset is really a re-badged serverworks chipset, given the > serverworks southbridge (pci0:15). > > You might want to try a patch to sys/i386/isa/pcibus.c similar to the > one in kern/38894, using 0x010f1014 in addition to 0x02011166: and > 0x03021014 in addition to 0x00111166. Eg: > > case 0x00061166: > /* FALLTHROUGH */ > case 0x00081166: > /* FALLTHROUGH */ > case 0x00101166: > /* FALLTHROUGH */ > case 0x010f1014: > /* FALLTHROUGH */ > case 0x02011166: > /* FALLTHROUGH */ > s = "ServerWorks host to PCI bridge"; > *busnum = pci_cfgread(cfg, 0x44, 1); > break; > > <...> > > case 0x00111166: > /* FALLTHROUGH */ > case 0x03021014: > s = "ServerWorks CMIC-HE"; > *busnum = pci_cfgread(cfg, 0x44, 1); > break; > > > Drew > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 10: 7:56 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE98E37B400; Fri, 19 Jul 2002 10:07:49 -0700 (PDT) Received: from mail.quantified.com (ns2.quantified.com [63.212.171.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDDFB43E4A; Fri, 19 Jul 2002 10:07:48 -0700 (PDT) (envelope-from dsilver@urchin.com) Received: from danzig.sd.quantified.net (web.quantified.com [63.212.171.5]) by mail.quantified.com (8.12.1/8.12.1) with ESMTP id g6JH7QOF066039; Fri, 19 Jul 2002 10:07:26 -0700 (PDT) (envelope-from dsilver@urchin.com) Date: Fri, 19 Jul 2002 10:07:30 -0700 (PDT) From: Doug Silver X-Sender: dsilver@danzig.sd.quantified.net To: Andrei Popov Cc: freebsd-questions@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG, andrei@ceesaxp.org Subject: Re: KDE3 broken? In-Reply-To: <20020719085736.15689.qmail@web11005.mail.yahoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Filter-Version: 1.7 (mail.quantified.com) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 19 Jul 2002, Andrei Popov wrote: > Is KDE3 completely b0rk3n? I know there was an issue with QT/OpenGL > and DRI, but this is what I am getting all the time (recompiled KDE > twice already, QT is qt-3.0.3_5) on a recent (this weekend) -STABLE: > > ~> konqueror > Creating link /home/andrei/.kde/socket-vogon.my.domain. > Created link from "/home/andrei/.kde/socket-vogon.my.domain" to > "/tmp/ksocket-andrei" > DCOPServer up and running. > Creating link /home/andrei/.kde/tmp-vogon.my.domain. > Created link from "/home/andrei/.kde/tmp-vogon.my.domain" to > "/tmp/kde-andrei" > DCOP Cleaning up dead connections. > KCrash: crashing.... crashRecursionCounter = 2 > KCrash: Application Name = kded path = pid = 7600 > DCOP aborting call from 'anonymous-7599' to 'kded' > ERROR: KUniqueApplication: DCOP communication error! > KCrash: crashing.... crashRecursionCounter = 2 > KCrash: Application Name = konqueror path = pid = 7586 > kdeinit: Fatal IO error: client killed > kdeinit: sending SIGHUP to children. > Mutex destroy failure: Device busy > kdeinit: sending SIGTERM to children. > kdeinit: Exit. > > The same happens on another machine which is an about 1 month old > -STABLE. > > Searching the lists and the web seems to suggest that some similar > symptoms are, well, common. There does not seem to be, however, any > particular solutions, and most of these issues were somehow > SuSE-related... > > Has anyone been successfull in compiling and using KDE3 on -STABLE > recently? > > Please cc: me, as I am not on -questions. > > > -- Anderi > > Earlier this week I finished installing KDE3 on my 4.6-Stable system and it works fine. This is a new install, if that matters. -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Doug Silver Network Manager Urchin Software Corp. http://www.urchin.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 10:28:24 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E99D37B400 for ; Fri, 19 Jul 2002 10:28:23 -0700 (PDT) Received: from smtp3.wanadoo.nl (smtp3.wanadoo.nl [194.134.35.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id C275E43E6E for ; Fri, 19 Jul 2002 10:28:22 -0700 (PDT) (envelope-from steve@sohara.org) Received: from ams-gw.sohara.org (p2315.vwr.wanadoo.nl [194.134.217.20]) by smtp3.wanadoo.nl (Postfix) with SMTP id 98BCE1B5AA; Fri, 19 Jul 2002 19:28:19 +0200 (MEST) Date: Fri, 19 Jul 2002 19:28:14 +0200 From: Steve O'Hara-Smith To: Fred Condo Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Message-Id: <20020719192814.7b64c13e.steve@sohara.org> In-Reply-To: <3705740.1027062627@[192.168.1.2]> References: <20020719092530.C13778@outreachnetworks.com> <20020719100109.E13778@outreachnetworks.com> <3705740.1027062627@[192.168.1.2]> X-Mailer: Sylpheed version 0.8.0 (GTK+ 1.2.10; i386-portbld-freebsd4.6) X-Face: %]+HVL}K`P8>+8ZcY-WGHP6j@&mxMo9JH6_WdgIgUGH)JX/usO0%jy7T~IVgqjumD^OBqX,Kv^-GM6mlw(fI^$"QRKyZ$?xx/ Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 19 Jul 2002 07:10:27 -0700 Fred Condo wrote: FC> Actually, the commands are: FC> FC> make buildkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME && \ FC> make installkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME Is there any reason not to use this ? make kernel KERNCONF=YOUR_KERNEL_CONFIG_NAME -- C:>WIN | Directable Mirrors The computer obeys and wins. |A Better Way To Focus The Sun You lose and Bill collects. | licenses available - see: | http://www.sohara.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 10:33:28 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18F5C37B400 for ; Fri, 19 Jul 2002 10:33:25 -0700 (PDT) Received: from mail.gbronline.com (mail.gbronline.com [12.145.226.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85AE243E31 for ; Fri, 19 Jul 2002 10:33:24 -0700 (PDT) (envelope-from kdk@daleco.biz) Received: from daleco [12.145.236.231] by mail.gbronline.com (SMTPD32-7.11) id AD62AD60216; Fri, 19 Jul 2002 12:33:22 -0500 Message-ID: <025101c22f4a$588fce20$60e2910c@fbccarthage.com> From: "Kevin Kinsey, DaleCo, S.P." To: "Jamie Heckford" , References: <015101c22f44$5916e730$4464a8c0@JAMIEHECKFORD> Subject: Re: OpenSSH problem with PuTTY? Date: Fri, 19 Jul 2002 12:33:07 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG What does it say in /var/log/security? KDK ----- Original Message ----- From: "Jamie Heckford" To: Sent: Friday, July 19, 2002 11:50 AM Subject: OpenSSH problem with PuTTY? > Hi, > > CVS'uped one of my boxes today to: > > FreeBSD 4.6-STABLE #1: Fri Jul 19 13:24:46 BST 2002 > > Whenever I try to connect to this box via ssh, using putty release 0.52 on > WinXP I get > the login prompt. After succesfully logging in, putty dies with a fatal > error, before it > displays anything after the password: prompt. > > Works fine with ssh from other unix boxes tho :-) > > Can anyone shed any light on why this might be happening? > > Thanks, > > -- > Jamie Heckford > Network Manager > Trident Microsystems Ltd > Tel: 01737 780790 Fax: 01737 771908 > http://www.tridentmicrosystems.co.uk > > *********** > > This e-mail message contains confidential information for > the above addressee only. Any opinion or views contained > in this e-mail message are those of the sender and do not > necessarily represent those of the Company. Unless otherwise > stated this e-mail message is not intended to be contractually > binding. E-mail transmission cannot be guaranteed to be > secure or error-free and the sender therefore does not accept > liability for any errors or omissions in the contents of this > message. > > Trident Microsystems Ltd Group of Companies > Perrywood Business Park, Honeycrock Lane, Salfords, Redhill, > Surrey, RH1 5JQ > > Tel: (44) (0) 1737 780790 Fax: (44) (0) 1737 771908 > > Registered office: Abacus House, Bone Lane, Newbury, > Berkshire, RG14 5SF > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 19 10:38:55 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90E6F37B401 for ; Fri, 19 Jul 2002 10:38:52 -0700 (PDT) Received: from clink.schulte.org (clink.schulte.org [209.134.156.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7BFC43E4A for ; Fri, 19 Jul 2002 10:38:51 -0700 (PDT) (envelope-from schulte+freebsd@nospam.schulte.org) Received: from localhost (localhost [127.0.0.1]) by clink.schulte.org (Postfix) with ESMTP id 2FC1E243CF; Fri, 19 Jul 2002 12:38:50 -0500 (CDT) Received: from schulte-laptop.nospam.schulte.org (nb-65.netbriefings.com [209.134.134.65]) by clink.schulte.org (Postfix) with ESMTP id 98CA0243C2; Fri, 19 Jul 2002 12:38:47 -0500 (CDT) Message-Id: <5.1.1.6.2.20020719123557.041657f8@pop3s.schulte.org> X-Sender: (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.1.1 Date: Fri, 19 Jul 2002 12:38:26 -0500 To: Steve O'Hara-Smith , Fred Condo From: Christopher Schulte Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: <20020719192814.7b64c13e.steve@sohara.org> References: <3705740.1027062627@[192.168.1.2]> <20020719092530.C13778@outreachnetworks.com> <20020719100109.E13778@outreachnetworks.com> <3705740.1027062627@[192.168.1.2]> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: by AMaViS 0.3.12pre6 on clink.schulte.org Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 07:28 PM 7/19/2002 +0200, Steve O'Hara-Smith wrote: > Is there any reason not to use this ? > > make kernel KERNCONF=YOUR_KERNEL_CONFIG_NAME That works just fine. The build|install targets were created for those who wanted finer control of exactly what happens when. Such as when I build my kernel and world, but wait until a later date to actually install them. >-- >C:>WIN | Directable Mirrors >The computer obeys and wins. |A Better Way To Focus The Sun >You lose and Bill collects. | licenses available - see: -- Christopher Schulte http://www.schulte.org/ Do not un-munge my @nospam.schulte.org email address. This address is valid. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 11:17: 7 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4312237B400 for ; Fri, 19 Jul 2002 11:17:04 -0700 (PDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 1DD7A43E58 for ; Fri, 19 Jul 2002 11:17:03 -0700 (PDT) (envelope-from Gerhard.Sittig@gmx.net) Received: (qmail 12730 invoked by uid 0); 19 Jul 2002 18:17:01 -0000 Received: from p5091008d.dip0.t-ipconnect.de (HELO mail.gsinet.sittig.org) (80.145.0.141) by mail.gmx.net (mp011-rz3) with SMTP; 19 Jul 2002 18:17:01 -0000 Received: (qmail 61297 invoked from network); 19 Jul 2002 17:57:47 -0000 Received: from shell.gsinet.sittig.org (192.168.11.153) by mail.gsinet.sittig.org with SMTP; 19 Jul 2002 17:57:47 -0000 Received: (from sittig@localhost) by shell.gsinet.sittig.org (8.11.3/8.11.3) id g6JHvcP61282 for freebsd-stable@freebsd.org; Fri, 19 Jul 2002 19:57:38 +0200 (CEST) (envelope-from sittig) Date: Fri, 19 Jul 2002 19:57:38 +0200 From: Gerhard Sittig To: freebsd-stable@freebsd.org Subject: Re: Kernel config problem with 4.6-STABLE... [solution] Message-ID: <20020719195738.Y1494@shell.gsinet.sittig.org> Mail-Followup-To: freebsd-stable@freebsd.org References: <5.1.0.14.0.20020717152215.00a79df0@dns1.popstick.com> <000601c22e72$58b76a80$fb00000a@promethium> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000601c22e72$58b76a80$fb00000a@promethium>; from markd@cogeco.ca on Thu, Jul 18, 2002 at 11:46:56AM -0400 Organization: System Defenestrators Inc. Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jul 18, 2002 at 11:46 -0400, Mark D wrote: > > If anyone is interested, I have the solution. > > After the buildworld I configured my kernel the "old way" (config > KERNEL; make depend;make;make install). Using Make buildkernel > KERNCONF=KERNEL;make installkernel KERNCONF=KERNEL worked nicely. Maybe > it's not the perfect solution, but it did the job and I'm not > complaining. It might have been mentioned in the thread before, but I feel like repeating it once more. And don't just take the "you" as you, Mark. It's the general you as in "the list subscribers and anyone who feels like fiddling with the source tree". Don't make the above buildworld/buildkernel sequence sound like a mere workaround. It is the one and only supported way to to it, it is described in detail in UPDATING (which you are supposed to read should you upgrade from the source). It is the official way to build a kernel. You are not allowed to cry "it's broken" if you did not run this very sequence. Only if buildkernel fails (which might need some recent tools which is why a buildworld with the same dates / revisions as the kernel source tree has to preceed it) is when "the tree is broken and needs fixing". And in this case it still could be your fault due to a local make.conf or something. UPDATING and the handbook can tell you the whole story should you want to be safe. Of course you are free to work with the source whatever way you wish to. You might get away with compiling your kernel "the old fashioned way". But you are supposed to know what you are doing. Should you fail the blame is yours completely. :) And should you insist in going your own way of building the source you are supposed to (be able to) help yourself should you fail to succeed. virtually yours 82D1 9B9C 01DC 4FB4 D7B4 61BE 3F49 4F77 72DE DA76 Gerhard Sittig true | mail -s "get gpg key" Gerhard.Sittig@gmx.net -- If you don't understand or are scared by any of the above ask your parents or an adult to help you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 11:31:21 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1760937B405 for ; Fri, 19 Jul 2002 11:31:18 -0700 (PDT) Received: from ion.gank.org (ion.gank.org [64.81.113.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAA2C43E4A for ; Fri, 19 Jul 2002 11:31:17 -0700 (PDT) (envelope-from craig@meoqu.gank.org) Received: from owen1492.it.oot (nat72962.owentools.com [206.50.138.221]) by ion.gank.org (GankMail) with ESMTP id 783955378; Fri, 19 Jul 2002 13:31:16 -0500 (CDT) Subject: Re: Kernel config problem with 4.6-STABLE... [solution] From: Craig Boston To: Gerhard Sittig Cc: freebsd-stable@freebsd.org In-Reply-To: <20020719195738.Y1494@shell.gsinet.sittig.org> References: <5.1.0.14.0.20020717152215.00a79df0@dns1.popstick.com> <000601c22e72$58b76a80$fb00000a@promethium> <20020719195738.Y1494@shell.gsinet.sittig.org> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.8 Date: 19 Jul 2002 13:30:35 -0500 Message-Id: <1027103476.19808.21.camel@owen1492.it.oot> Mime-Version: 1.0 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 2002-07-19 at 12:57, Gerhard Sittig wrote: > > Don't make the above buildworld/buildkernel sequence sound like > a mere workaround. It is the one and only supported way to to > it, it is described in detail in UPDATING (which you are supposed > to read should you upgrade from the source). It is the official > way to build a kernel. Perhaps the handbook should stress this more (and not list the "old" method first). http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-building.html I know that's the section on building a custom kernel, not upgrading. However many people -- including me before I knew better -- read that one first and build a few kernels on RELEASE long before upgrading. Then when it's time to cvsup they just stick with the method that they know better. Thoughts, comments? Is there any reason _not_ to encourage buildkernel for making standalone kernels? Craig To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 11:41:52 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E356937B400; Fri, 19 Jul 2002 11:41:50 -0700 (PDT) Received: from bastion.internal.lustygrapes.net (dhcp065-024-083-096.columbus.rr.com [65.24.83.96]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FAFD43E72; Fri, 19 Jul 2002 11:41:50 -0700 (PDT) (envelope-from brianmcd@columbus.rr.com) Received: from nivomede.internal.lustygrapes.net (nivomede.internal.lustygrapes.net [192.168.10.65]) by bastion.internal.lustygrapes.net (Postfix) with ESMTP id 909835A1B; Fri, 19 Jul 2002 14:41:47 -0400 (EDT) Subject: MFC of sys/cam/scsi/scsi_sa.c version 1.78? From: Brian McDonald To: freebsd-stable@freebsd.org Cc: mjacob@freebsd.org Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.5 Date: 19 Jul 2002 14:41:46 -0400 Message-Id: <1027104108.22079.110.camel@nivomede.internal.lustygrapes.net> Mime-Version: 1.0 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm having incorrect EOF reporting on a new SCSI tape drive/stacker, which may be related to the error handling fixes in scsi_sa.c ver 1.78. Essentially, the device acts like the EOF flag is not cleared until the tape is taken offline via "mt offline". Not even changing tapes with chio clears the flag, although if you try to read the tape, it gets an IO error and the flag resets. 1.78 It was originally committed in August of 2001, with a 4 week MFC by mjacob, and looks like it might be a bit of work, for which I'd be glad to help with. Brian -- Brian McDonald CCNA(tm) Certified Tandemedia, Inc. http://www.tandemedia.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 12: 0:21 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C76FF37B401 for ; Fri, 19 Jul 2002 12:00:15 -0700 (PDT) Received: from mail.qcislands.net (mail.qcislands.net [209.53.238.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C7DB43E6A for ; Fri, 19 Jul 2002 12:00:15 -0700 (PDT) (envelope-from ccstore@qcislands.net) Received: from [209.53.238.9] (helo=autha.qcislands.net) by mail.qcislands.net with esmtp (Exim 4.05) id 17Vczi-000H7s-00 for freebsd-stable@freebsd.org; Fri, 19 Jul 2002 12:00:50 -0700 Received: from ccstore by autha.qcislands.net with local-rmail (Exim 4.05) id 17VczA-0003YV-00 for freebsd-stable@freebsd.org; Fri, 19 Jul 2002 12:00:16 -0700 Received: from fstable by dick.ccstores.com with local (Exim 4.04) id 17VcZW-0000r7-00 for freebsd-stable@freebsd.org; Fri, 19 Jul 2002 11:33:46 -0700 From: fstable@ccstores.com (FreeBSD stable) To: freebsd-stable@freebsd.org Subject: 4.6 interaction with web hit counter X-Mailer: SCO Shell Date: Fri, 19 Jul 2002 11:33:46 -0700 (PDT) Message-Id: X-local_scan: locally submitted (9) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have been using a web counter called 'Count.cgi' by muquit, for many versions of FreeBSD. Now since I installed 4.6, the Count.cgi binary dies during execution and I get a signal 11 error message on the console, altho apache considers that the .cgi boinary executed without error. Did anything funny happen from 4.5 -> 4.6 which may for any reason affect a cgi binary? I always do a fresh compile of Count.cgi and nothing out of the ordinary appears during the compile. Any help would be appreciated. Thanks IA. Jim Pazarena mailto:paz@qcislands.net -- FreeBSD stable directly mailto:paz@qcislands.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 12: 4: 9 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DB1B37B400 for ; Fri, 19 Jul 2002 12:04:07 -0700 (PDT) Received: from norton.palomine.net (dsl254-102-179.nyc1.dsl.speakeasy.net [216.254.102.179]) by mx1.FreeBSD.org (Postfix) with SMTP id 02DB143E31 for ; Fri, 19 Jul 2002 12:04:06 -0700 (PDT) (envelope-from cjohnson@palomine.net) Received: (qmail 83008 invoked by uid 1000); 19 Jul 2002 19:04:04 -0000 Mail-Followup-To: jamie@tridentmicrosystems.co.uk, freebsd-stable@freebsd.org Date: Fri, 19 Jul 2002 15:04:04 -0400 From: Chris Johnson To: freebsd-stable@freebsd.org Cc: Jamie Heckford Subject: Re: OpenSSH problem with PuTTY? Message-ID: <20020719190403.GA82992@palomine.net> References: <015101c22f44$5916e730$4464a8c0@JAMIEHECKFORD> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bp/iNruPH9dso1Pn" Content-Disposition: inline In-Reply-To: <015101c22f44$5916e730$4464a8c0@JAMIEHECKFORD> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 19, 2002 at 05:50:11PM +0100, Jamie Heckford wrote: > CVS'uped one of my boxes today to: >=20 > FreeBSD 4.6-STABLE #1: Fri Jul 19 13:24:46 BST 2002 >=20 > Whenever I try to connect to this box via ssh, using putty release 0.52 on > WinXP I get the login prompt. After succesfully logging in, putty dies wi= th a > fatal error, before it displays anything after the password: prompt. >=20 > Works fine with ssh from other unix boxes tho :-) >=20 > Can anyone shed any light on why this might be happening? PuTTY will crash after successful keyboard-interactive authentication. This happens as of version 1.2.2.2 of src/crypto/openssh/auth2-pam-freebsd.c, but not with previous versions. It also happens with the openssh-portable-3.4p1 port. A workaround (if you don't need S/Key passwords, which unfortunately I do) = is to disable keyboard-interactive authentication in PuTTY (Connection/SSH/Aut= h), or you can just hit Enter at the "Password:" prompt until you get a "jblough@host.example.com's password:" prompt. Chris Johnson --bp/iNruPH9dso1Pn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9OGKiPC78Lz4X/PARAiWsAJ4i/m1LuF8zebPA2DXZmr4NzmD8iQCggn/5 Mmj4tqUtYc1YaZmG1jEbXcs= =cwho -----END PGP SIGNATURE----- --bp/iNruPH9dso1Pn-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 12: 5:19 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 404C437B400; Fri, 19 Jul 2002 12:05:13 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDED043E31; Fri, 19 Jul 2002 12:05:08 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g6JJ54K39264; Fri, 19 Jul 2002 22:05:04 +0300 (EEST) (envelope-from ru) Date: Fri, 19 Jul 2002 22:05:04 +0300 From: Ruslan Ermilov To: stable@FreeBSD.org, ports@FreeBSD.org Subject: HEADS UP: new bsd.lib.mk API Message-ID: <20020719190504.GA37965@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HlL+5n6rz5pIUxbD" Content-Disposition: inline User-Agent: Mutt/1.3.99i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi! I have just merged the new bsd.lib.mk API to RELENG_4. Some ports that use bsd.lib.mk internally will have to catch up to the changes. INTERNALSTATICLIB is no longer supported. What is getting built depends solely on what is requested: LIB build static library !NOPROFILE build profiled library (requires LIB) SHLIB_NAME build shared library (SHLIB_NAME can be derived from LIB and SHLIB_MAJOR) NOPIC do not build shared library even if SHLIB_NAME is defined INSTALL_PIC_ARCHIVE build special PIC library Usually what's built is also installed, except if: INTERNALLIB build static library ONLY, but don't install it NOINSTALLLIB do not install static library (currently only used to build libpam.a) Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --HlL+5n6rz5pIUxbD Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9OGLgUkv4P6juNwoRArnjAJ4ibAXD7DLdNePCo0yOl03bsrGi3gCfZ2EL s/WjBOMu4ToXxTkt9YWjvmA= =cAJK -----END PGP SIGNATURE----- --HlL+5n6rz5pIUxbD-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 13:24:31 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBAC637B400 for ; Fri, 19 Jul 2002 13:24:29 -0700 (PDT) Received: from sumter.awod.com (sumter.awod.com [208.140.99.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EADB43E42 for ; Fri, 19 Jul 2002 13:24:29 -0700 (PDT) (envelope-from stanb@awod.com) Received: from teddy.fas.com (pcp01010372pcs.mplsnt01.sc.comcast.net [68.58.176.67]) by sumter.awod.com (8.8.7/8.12.2) with ESMTP id QAA57662 for ; Fri, 19 Jul 2002 16:24:28 -0400 (EDT) (envelope-from stanb@awod.com) X-Authentication-Warning: sumter.awod.com: User sandib [pcp01010372pcs.mplsnt01.sc.comcast.net] popped 20 seconds ago Received: from stan by teddy.fas.com with local (Exim 3.35 #1 (Debian)) id 17VeOY-0005Bq-00 for ; Fri, 19 Jul 2002 16:30:34 -0400 Date: Fri, 19 Jul 2002 16:30:34 -0400 From: stan To: FreeBSD Stable Mailing List Subject: Problems building lot's of ports .in files missing Message-ID: <20020719203034.GA19809@teddy.fas.com> Mail-Followup-To: FreeBSD Stable Mailing List Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i X-Editor: gVim X-Operating-System: Debian GNU/Linux X-Kernel-Version: 2.4.17 X-Uptime: 16:26:10 up 30 days, 21:45, 1 user, load average: 0.27, 0.26, 0.26 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm certain there must be a common cause here. Virtualy every port I have tried to build the week has failed because it's missing soe .in file (config.h.in for instnace). This is after CVSUP'ong and portupgrade'ing last weekend. Any ideas? -- "They that would give up essential liberty for temporary safety deserve neither liberty nor safety." -- Benjamin Franklin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 13:29: 0 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E89837B400 for ; Fri, 19 Jul 2002 13:28:58 -0700 (PDT) Received: from ldc.ro (ldc-gw.rdsnet.ro [213.157.163.8]) by mx1.FreeBSD.org (Postfix) with SMTP id 12BDC43E5E for ; Fri, 19 Jul 2002 13:28:57 -0700 (PDT) (envelope-from razor@ldc.ro) Received: (qmail 41315 invoked by uid 666); 19 Jul 2002 20:28:55 -0000 Date: Fri, 19 Jul 2002 23:28:55 +0300 From: Alex Popa To: Sm Cc: "Eric L. Howard" , freebsd-stable@FreeBSD.ORG Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Message-ID: <20020719232855.A30258@ldc.ro> References: <007801c22ee3$3657e8e0$0200a8c0@scott> <20020719094853.GA58143@Deadcell.ant> <001501c22f0c$8c3c24a0$0200a8c0@scott> <20020719092530.C13778@outreachnetworks.com> <001401c22f38$cb5f2700$0200a8c0@scott> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <001401c22f38$cb5f2700$0200a8c0@scott>; from s_rmaynard@yahoo.com.au on Fri, Jul 19, 2002 at 11:27:25PM +0800 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jul 19, 2002 at 11:27:25PM +0800, Sm wrote: > I had mentioned earlier that make buildworld didnt work either. :) (dies in > exactly the same place as world) > > I really cannot work out what else todo.. usually I have no problems but now > it doesnt make libcrypto.a > for some reason (from what I can deduce from my makefile knowledge). Noone > else on the list seems to have this problem. > > I have tried: > 1. fresh checkout on libcrypto/libssh/openssh > 2. cvsup from 4.6-release cdrom sources to stable > 3. cvsup from 4.6-release cdrom sources to 4.6-release-p? > 4. make world and make buildworld both of which die building libssh.a > > The only other option I have is to download the sources completely from cvs > from scratch over a 56k modem and see if that works. > > This has me stumped, neither stable nor 4.6 release cvsup works for me :( > Maybe this has been said... however, have you tried to "rm -rf /usr/obj/usr" before buildworld / make world ? HTH Alex ------------+------------------------------------------ Alex Popa, | "Artificial Intelligence is razor@ldc.ro| no match for Natural Stupidity" ------------+------------------------------------------ "It took the computing power of three C-64s to fly to the Moon. It takes a 486 to run Windows 95. Something is wrong here." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 13:45:54 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 283DA37B400; Fri, 19 Jul 2002 13:45:51 -0700 (PDT) Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F63343E3B; Fri, 19 Jul 2002 13:45:50 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from mailhost.feral.com (mjacob@mailhost.feral.com [192.67.166.1]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id g6JKjfY34021; Fri, 19 Jul 2002 13:45:42 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Fri, 19 Jul 2002 13:45:41 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Brian McDonald Cc: freebsd-stable@freebsd.org, mjacob@freebsd.org Subject: Re: MFC of sys/cam/scsi/scsi_sa.c version 1.78? In-Reply-To: <1027104108.22079.110.camel@nivomede.internal.lustygrapes.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Akk... you know, the tape stuff really needs to be MFC'd carefully. I'm in Ohio until next week, but I'll get on it right when I get back. On 19 Jul 2002, Brian McDonald wrote: > I'm having incorrect EOF reporting on a new SCSI tape drive/stacker, > which may be related to the error handling fixes in scsi_sa.c ver 1.78. > Essentially, the device acts like the EOF flag is not cleared until the > tape is taken offline via "mt offline". Not even changing tapes with > chio clears the flag, although if you try to read the tape, it gets an > IO error and the flag resets. > > 1.78 It was originally committed in August of 2001, with a 4 week MFC by > mjacob, and looks like it might be a bit of work, for which I'd be glad > to help with. > > Brian > -- > Brian McDonald > CCNA(tm) Certified > Tandemedia, Inc. > http://www.tandemedia.com/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 15: 6:41 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFEBE37B400 for ; Fri, 19 Jul 2002 15:06:39 -0700 (PDT) Received: from d188h80.mcb.uconn.edu (d188h80.mcb.uconn.edu [137.99.188.80]) by mx1.FreeBSD.org (Postfix) with SMTP id 103C843E42 for ; Fri, 19 Jul 2002 15:06:39 -0700 (PDT) (envelope-from sirmoo@cowbert.2y.net) Received: (qmail 56074 invoked by uid 1001); 19 Jul 2002 22:06:37 -0000 Date: Fri, 19 Jul 2002 18:06:37 -0400 From: "Peter C. Lai" To: freebsd-stable@freebsd.org Subject: make buildworld breaks Message-ID: <20020719180637.A56061@cowbert.2y.net> Reply-To: peter.lai@uconn.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I cvsup'd today at around 6pm EDT (2200 UTC) and upon making buildworld ran into: ===> lib/csu/i386-elf "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional (defined(SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator make: fatal errors encountered -- cannot continue *** Error code 1 I'm trying to upgrade from 4.5-STABLE to 4.6-STABLE. Any clues? -- Peter C. Lai University of Connecticut Dept. of Molecular and Cell Biology | Undergraduate Research Assistant Yale University School of Medicine Center for Medical Informatics | Research Assistant http://cowbert.2y.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 15:12:49 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7355537B400 for ; Fri, 19 Jul 2002 15:12:47 -0700 (PDT) Received: from chen.org.nz (chen.org.nz [210.54.19.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9192543E6A for ; Fri, 19 Jul 2002 15:12:46 -0700 (PDT) (envelope-from jonc@chen.org.nz) Received: from grimoire.chen.org.nz (localhost [127.0.0.1]) by chen.org.nz (8.12.5/8.12.5) with ESMTP id g6JMCj7i021282; Sat, 20 Jul 2002 10:12:45 +1200 (NZST) (envelope-from jonc@grimoire.chen.org.nz) Received: (from jonc@localhost) by grimoire.chen.org.nz (8.12.5/8.12.5/Submit) id g6JMCibg021281; Sat, 20 Jul 2002 10:12:44 +1200 (NZST) Date: Sat, 20 Jul 2002 10:12:44 +1200 From: Jonathan Chen To: Craig Boston Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Kernel config problem with 4.6-STABLE... [solution] Message-ID: <20020719221244.GE17899@grimoire.chen.org.nz> References: <5.1.0.14.0.20020717152215.00a79df0@dns1.popstick.com> <000601c22e72$58b76a80$fb00000a@promethium> <20020719195738.Y1494@shell.gsinet.sittig.org> <1027103476.19808.21.camel@owen1492.it.oot> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1027103476.19808.21.camel@owen1492.it.oot> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jul 19, 2002 at 01:30:35PM -0500, Craig Boston wrote: [..] > Thoughts, comments? Is there any reason _not_ to encourage buildkernel > for making standalone kernels? Last I heard, it's 'cos it requires a buildworld prior. If I have a minimal system with kernel sources only, I don't want to have to do that. -- Jonathan Chen ---------------------------------------------------------------------- "I don't want to achive immortality through my works.. I want to achieve it through not dying" - Woody Allen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 15:24:17 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CAF037B400 for ; Fri, 19 Jul 2002 15:24:16 -0700 (PDT) Received: from jagor.srce.hr (jagor.srce.hr [161.53.2.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 860BA43E58 for ; Fri, 19 Jul 2002 15:24:15 -0700 (PDT) (envelope-from ivoras@fer.hr) Received: from flatline (a717.cmu.carnet.hr [193.198.133.117]) by jagor.srce.hr (8.12.2/8.12.2) with SMTP id g6JMNWX7009860 for ; Sat, 20 Jul 2002 00:23:33 +0200 (MEST) Message-ID: <004e01c22f72$f8e21ae0$7585c6c1@shara.net> From: "Ivan Voras" To: Subject: smbfs Date: Sat, 20 Jul 2002 00:22:41 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Virus-Scanned: by amavisd-milter (http://amavis.org/) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Shouldn't smbfs (SMB/CIFS fs) in /etc/fstab be treated like NFS? I mean, mounting of smbfs mount points should be delayed after the network interfaces and routes are up, like NFS... (I'm writing this because I got bitten by it earlier today... :) ) ------ signature down To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 17:30:48 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B83A037B400 for ; Fri, 19 Jul 2002 17:30:43 -0700 (PDT) Received: from smtpzilla3.xs4all.nl (smtpzilla3.xs4all.nl [194.109.127.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3D2843E6D for ; Fri, 19 Jul 2002 17:30:42 -0700 (PDT) (envelope-from b.gosselink@xs4all.nl) Received: from wsbg01 (fizgig.xs4all.nl [80.126.22.163]) by smtpzilla3.xs4all.nl (8.12.0/8.12.0) with SMTP id g6K0Ufqf099190 for ; Sat, 20 Jul 2002 02:30:41 +0200 (CEST) Message-ID: <000801c22f84$9bc0fd60$6500a8c0@wsbg01> From: "Bas Gosselink" To: Subject: subscribe Date: Sat, 20 Jul 2002 02:30:10 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C22F95.5EDD7700" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C22F95.5EDD7700 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable ------=_NextPart_000_0005_01C22F95.5EDD7700 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
------=_NextPart_000_0005_01C22F95.5EDD7700-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 18:34: 4 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46B5937B400 for ; Fri, 19 Jul 2002 18:34:01 -0700 (PDT) Received: from mail.gbronline.com (mail.gbronline.com [12.145.226.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D9FC43E4A for ; Fri, 19 Jul 2002 18:34:00 -0700 (PDT) (envelope-from kdk@daleco.biz) Received: from daleco [12.145.226.120] by mail.gbronline.com (SMTPD32-7.11) id AE06112C02A0; Fri, 19 Jul 2002 20:33:58 -0500 Message-ID: <006901c22f8d$7d11adc0$78e2910c@fbccarthage.com> From: "Kevin Kinsey, DaleCo, S.P." To: , References: <20020719180637.A56061@cowbert.2y.net> Subject: Re: make buildworld breaks Date: Fri, 19 Jul 2002 20:33:44 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Search the archives. There have been issues within the past 2 days. You might re cvs from another server. . If re cvsupping from a different server doesn't work, cry to Ruslan (I think-he probably doesn't really want to be cried to) or just wait for him or someone else to answer. Seems like he was changing stuff around, and some of the cvs servers were way behind on propagation The errors themselves don't look so terrible... why don't you trying sticking in the 'endif'??? On July 9th the endif was on line 31 of 371: .endif after the .undef statements (there were 2) Hmmmm, he is doing things differently, I'd say. Line 19 was a commented at that date. Like I say, search the archives, and you might try the edit I suggested. Make a copy first, you haven't much to lose KDK ----- Original Message ----- From: "Peter C. Lai" To: Sent: Friday, July 19, 2002 5:06 PM Subject: make buildworld breaks > I cvsup'd today at around 6pm EDT (2200 UTC) and upon making > buildworld ran into: > > ===> lib/csu/i386-elf > "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional (defined(SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) > "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator > "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif > "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator > make: fatal errors encountered -- cannot continue > *** Error code 1 > > I'm trying to upgrade from 4.5-STABLE to 4.6-STABLE. > Any clues? > > -- > Peter C. Lai > University of Connecticut > Dept. of Molecular and Cell Biology | Undergraduate Research Assistant > Yale University School of Medicine > Center for Medical Informatics | Research Assistant > http://cowbert.2y.net/ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 19: 0:17 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58CE237B43B for ; Fri, 19 Jul 2002 19:00:11 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BAC843E42 for ; Fri, 19 Jul 2002 19:00:11 -0700 (PDT) (envelope-from lbff@no-reply.com) Received: from [66.120.159.86] ([66.120.159.86]) by mta7.pltn13.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with SMTP id <0GZI00AZWT9F1I@mta7.pltn13.pbi.net> for freebsd-stable@freebsd.org; Fri, 19 Jul 2002 16:58:31 -0700 (PDT) Date: Fri, 19 Jul 2002 16:53:17 -0800 From: Robin Duarte Subject: Long Beach Film Festival - Now Accepting Films & Screenplays To: freebsd-stable@freebsd.org Reply-To: lbff@no-reply.com Message-id: <0GZI00A0BT9J1I@mta7.pltn13.pbi.net> MIME-version: 1.0 X-Mailer: Microsoft Outlook Express 6.00.2600.0000 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Filmmakers & Screenwriters (please forward to interested parties): The Long Beach Film Festival is now accepting screenplays and films (short, documentary & feature) in all formats. The winners' work will be reviewed by a committee of established production companies. This is a great way to get exposure and even discovered in Hollywood. The festival is being held onboard the renowned Queen Mary in Long Beach, California (30 miles from Hollywood). The dates of the festival are September 13 - 22, 2002. You can view an 8 x 10 flyer here: http://www.longbeachfilmfestival.com/poster.html A 20% discount has been set up for students and independent filmmakers. The discounted submission prices are as follows: ORIGINAL PRICE DISCOUNTED PRICE Short Film $45 $36 Feature Film $60 $48 Screenplay $50 $40 To take advantage of these discounted prices, simply include a printout of this email with the submission form and legibly write 'email discount' on the payment check. The submission forms can be found here: http://www.longbeachfilmfestival.com/entry.htm All submissions must be received by August 15th, 2002. We look forward to receiving your work. Robin Duarte http://www.longbeachfilmfestival.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 21:45:56 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A27537B400 for ; Fri, 19 Jul 2002 21:45:55 -0700 (PDT) Received: from proverbs.outreachnetworks.com (proverbs.outreachnetworks.com [65.196.249.4]) by mx1.FreeBSD.org (Postfix) with SMTP id 2D5AD43E4A for ; Fri, 19 Jul 2002 21:45:54 -0700 (PDT) (envelope-from elh@outreachnetworks.com) Received: (qmail 5279 invoked from network); 20 Jul 2002 04:45:53 -0000 Received: from unknown (HELO phoncella.outreachnetworks.com) (65.196.249.11) by proverbs.outreachnetworks.com with SMTP; 20 Jul 2002 04:45:53 -0000 Received: (from elh@localhost) by phoncella.outreachnetworks.com (8.11.6/8.11.6) id g6K4jqV18405 for freebsd-stable@freebsd.org; Sat, 20 Jul 2002 00:45:52 -0400 X-Authentication-Warning: phoncella.outreachnetworks.com: elh set sender to elh@outreachnetworks.com using -f Date: Sat, 20 Jul 2002 00:45:52 -0400 From: "Eric L. Howard" To: FreeBSD Stable List Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Message-ID: <20020720004552.I13778@outreachnetworks.com> Mail-Followup-To: FreeBSD Stable List References: <20020719092530.C13778@outreachnetworks.com> <200207200209.g6K29Q0j001729@12-222-67-235.client.insightBB.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200207200209.g6K29Q0j001729@12-222-67-235.client.insightBB.com>; from mikes@12-222-67-235.client.insightBB.com on Fri, Jul 19, 2002 at 09:09:26PM -0500 X-Favorite-Scripture: Romans 8:18 X-Theocratic-Rule-Advocate: http://www.crossmovement.com X-Registered-Secret-Agent: Agent Double-Naught Seven X-Operating-System: Linux 2.4.7-10 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At a certain time, now past, Michael L. Squires spake thusly: > > cvsup > > cd /usr/src > > Don't you need "mergemaster -p" here? normally yes...but I added the smmsp and mailnull users by hand since I knew I would need them to successfully buildworld. ~elh -- Eric L. Howard e l h @ o u t r e a c h n e t w o r k s . c o m ------------------------------------------------------------------------ www.OutreachNetworks.com 313.297.9900 ------------------------------------------------------------------------ Advocate of the Theocratic Rule To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 22:36:15 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B27A37B400 for ; Fri, 19 Jul 2002 22:36:13 -0700 (PDT) Received: from mail.lambertfam.org (www.lambertfam.org [216.223.196.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12C8743E58 for ; Fri, 19 Jul 2002 22:36:13 -0700 (PDT) (envelope-from lambert@lambertfam.org) Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.inch.com (Postfix) with ESMTP id 1DE3D35169 for ; Sat, 20 Jul 2002 01:33:16 -0400 (EDT) Received: from laptop.lambertfam.org (unknown [10.1.0.2]) by mail.lambertfam.org (Postfix) with ESMTP id A62E535168 for ; Sat, 20 Jul 2002 01:33:09 -0400 (EDT) Received: by laptop.lambertfam.org (Postfix, from userid 1000) id 0F8A428B09; Sat, 20 Jul 2002 01:35:59 -0400 (EDT) Date: Sat, 20 Jul 2002 01:35:59 -0400 From: Scott Lambert To: freebsd-stable@FreeBSD.ORG Subject: Re: Enabling passive FTP on FreeBSD 4.5? Message-ID: <20020720053558.GA3487@laptop.lambertfam.org> Mail-Followup-To: freebsd-stable@FreeBSD.ORG References: <016701c22edb$fcc0e250$0600a8c0@P1200n> <3D37A0A7.6070809@quack.kfu.com> <20020719122614.O21507@staff.msen.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020719122614.O21507@staff.msen.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jul 19, 2002 at 12:26:14PM -0400, Michael R. Wayne wrote: > Having recently fought IPFW on this, and having a hard time finding > actual firewall rules to make FTP work right on a server that > provides FTP access to the world, here is what we ended up with > which appears to properly permit active and passive FTP. > > # FTP/ftp > $fwcmd add 12501 pass tcp from any to ${ip} 20 setup # FTP-data > $fwcmd add 12505 pass tcp from any to ${ip} 21 setup keep-state > $fwcmd add 12507 pass tcp from any to ${ip} 49152-65535 setup # Passive FTP > > Watching the logs, people are managing to successfully ftp regularly. > > Yes, it's a hole. No, we don't like that last rule as someone > could remotely spawn a shell on one of those ports. But we see no > way around it as ftp access is a required service for the machine. Doesn't ipf with ipnat have the ability to watch the FTP control channel and figure out when and what port to allow through for a passive FTP data channel? It's been a while since I looked at this so I could be smoking crack. -- Scott Lambert KC5MLE Unix SysAdmin lambert@lambertfam.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Jul 19 22:38:10 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD63F37B400 for ; Fri, 19 Jul 2002 22:37:08 -0700 (PDT) Received: from softy.maz.net (softy.maz.net [194.163.250.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5FC343E42 for ; Fri, 19 Jul 2002 22:37:06 -0700 (PDT) (envelope-from postmaster@ision.net) Received: by softy.maz.net (8.9.3) id (multiple receipients); Sat, 20 Jul 2002 07:37:04 +0200 (MET DST) Date: Sat, 20 Jul 2002 07:37:04 +0200 (MET DST) Message-Id: <200207200537.HAA23789@softy.maz.net> To: stable@FreeBSD.ORG From: MAILER-DAEMON@ision.net Subject: Your mail to todd.parry In-Reply-To: , from owner-freebsd-stable-digest@FreeBSD.ORG (stable-digest) MIME-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Transfer-Encoding: 8bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG [english text at bottom] Sehr geehrter Absender, diese automatische Nachricht erhalten Sie aufgrund Ihrer kuerzlich gesendeten eMail. Leider ist die Adresse todd.parry nicht oder nicht mehr gültig. Aufgrund einiger Veränderungen in unserem Unternehmen ist es möglich, dass der Empfänger nicht mehr bei ISION beschäftigt ist. Daher möchten wir Sie bitten, Ihre Nachricht noch einmal an INFO@ISION.NET zu senden, damit sich der richtige Ansprechpartner kurzfristig mit Ihnen in Verbindung setzen kann. Für den Fall, dass es sich um ein technisches Problem mit einem unserer Produkte oder mit einer unserer Dienstleistungen handelt, möchten wir Sie bitten, Ihre Nachricht an unseren Support zu senden. Die Adresse ist: SUPPORT@ISION.NET Bitte beachten Sie, dass Ihre Nachricht nicht weitergeleitet wurde, daher möchten wir Sie bitten, Ihre eMail noch einmal an eine der beiden oben genannten Adressen zu schicken, für eventuelle Unannehmlichkeiten möchten wir uns entschuldigen. BITTE BEANTWORTEN SIE DIESE AUTOMATISCH GENERIERTE EMAIL NICHT PER REPLY, NACHRICHTEN AN DEN AUTOANSWER ROBOT WERDEN AUTOMATISCH GELOESCHT. Herzlichen Dank fuer Ihr Entgegenkommen. Mit freundlichen Gruessen, AutoAnswer robot, im Auftrag des ISION Postmasters Nachfolgend eine Kopie Ihrer nicht zugestellten Nachricht. --------------------------- english version ------------------------------ This pre-recorded message is being sent in response to your recent email. Unfortunately, the address todd.parry is/are not or not anymore valid. Due to some changes in our company, the person you have tried to contact may not be employed at ISION anymore. Since it seems that this is the case, we kindly request that you contact the address INFO@ISION.NET to get a new address for your query. In case of any technical problem with ISION hardware or software or any of our products, please contact our customer support at SUPPORT@ISION.NET Remember that your message has not been forwarded to any other person, you need to resend it, if you think that this is important. PLEASE DO NOT REPLY TO THIS MESSAGE DIRECTLY, SINCE IT IS SENT FROM AN UNATTENDED MAILBOX AND REPLIES ARE DISCARDED AUTOMATICALLY. With kind regards, AutoAnswer robot, on behalf of ISION Postmaster Here's your original, unsent message: ----------------------------------------------------------------------------- From: owner-freebsd-stable-digest@FreeBSD.ORG (stable-digest) To: freebsd-stable-digest@FreeBSD.ORG Subject: stable-digest V5 #594 Date: Fri, 19 Jul 2002 22:36:18 -0700 (PDT) Message-ID: stable-digest Friday, July 19 2002 Volume 05 : Number 594 In this issue: Re: Enabling passive FTP on FreeBSD 4.5? KDE3 broken? Re: Problems building world (RELENG_4 and RELENG_4_6) Re: freetype2 install problem Re: Problems building world (RELENG_4 and RELENG_4_6) Re: smbfs + libiconv problems Date: Fri, 19 Jul 2002 15:20:58 +0300 Re: Problems building world (RELENG_4 and RELENG_4_6) Re: Adaptec 39160 Controller in IBM xSeries 360 Server Re: Problems building world (RELENG_4 and RELENG_4_6) Re: Problems building world (RELENG_4 and RELENG_4_6) Re: Problems building world (RELENG_4 and RELENG_4_6) Makeworld broken? Re: Adaptec 39160 Controller in IBM xSeries 360 Server Re: Problems building world (RELENG_4 and RELENG_4_6) Re: Makeworld broken? Re: Problems building world (RELENG_4 and RELENG_4_6) Re: Enabling passive FTP on FreeBSD 4.5? OpenSSH problem with PuTTY? Re: Adaptec 39160 Controller in IBM xSeries 360 Server Re: KDE3 broken? Re: Problems building world (RELENG_4 and RELENG_4_6) Re: OpenSSH problem with PuTTY? Re: Problems building world (RELENG_4 and RELENG_4_6) Re: Kernel config problem with 4.6-STABLE... [solution] Re: Kernel config problem with 4.6-STABLE... [solution] MFC of sys/cam/scsi/scsi_sa.c version 1.78? 4.6 interaction with web hit counter Re: OpenSSH problem with PuTTY? HEADS UP: new bsd.lib.mk API Problems building lot's of ports .in files missing Re: Problems building world (RELENG_4 and RELENG_4_6) Re: MFC of sys/cam/scsi/scsi_sa.c version 1.78? make buildworld breaks Re: Kernel config problem with 4.6-STABLE... [solution] smbfs subscribe Re: make buildworld breaks Long Beach Film Festival - Now Accepting Films & Screenplays Re: Problems building world (RELENG_4 and RELENG_4_6) Re: Enabling passive FTP on FreeBSD 4.5? ---------------------------------------------------------------------- Date: Thu, 18 Jul 2002 22:16:23 -0700 From: Nick Sayer Subject: Re: Enabling passive FTP on FreeBSD 4.5? Tortise@Paradise wrote: > Yes I'd appreciate the answer to this, if there is one....or if it was > passed off list. > With thanks > David Hingston > > ----- Original Message ----- > From: "Rich Morin" > To: > Sent: Friday, July 19, 2002 11:27 AM > Subject: Enabling passive FTP on FreeBSD 4.5? > > > >>I have a user who wants to use passive-mode FTP to access files on my >>FreeBSD 4.5 system. Our firewall is set up to allow all outgoing packets >>and to allow incoming traffic on >> >> 20 TCP # FTP (data) >> 20 UDP # FTP " >> 21 TCP # FTP (control) >> 21 UDP # FTP " >> This is insufficient. Passive mode FTP requires incoming control connections and incoming data connections, but the data connections are addressed to *arbitrary* ports. If you're using the FreeBSD stock FTP server, however, I *believe* that you can count on the data ports to always be within the "high" portrange. See 'sysctl -a | grep portrange'. YMMV with other servers, however, all you need to do to change the default port range used for binding is to setsockopt IP_PORTRANGE to either IP_PORTRANGE_HIGH, IP_PORTRANGE_LOW (requires root) or IP_PORTRANGE_DEFAULT. ------------------------------ Date: Fri, 19 Jul 2002 01:57:36 -0700 (PDT) From: Andrei Popov Subject: KDE3 broken? Is KDE3 completely b0rk3n? I know there was an issue with QT/OpenGL and DRI, but this is what I am getting all the time (recompiled KDE twice already, QT is qt-3.0.3_5) on a recent (this weekend) -STABLE: ~> konqueror Creating link /home/andrei/.kde/socket-vogon.my.domain. Created link from "/home/andrei/.kde/socket-vogon.my.domain" to "/tmp/ksocket-andrei" DCOPServer up and running. Creating link /home/andrei/.kde/tmp-vogon.my.domain. Created link from "/home/andrei/.kde/tmp-vogon.my.domain" to "/tmp/kde-andrei" DCOP Cleaning up dead connections. KCrash: crashing.... crashRecursionCounter = 2 KCrash: Application Name = kded path = pid = 7600 DCOP aborting call from 'anonymous-7599' to 'kded' ERROR: KUniqueApplication: DCOP communication error! KCrash: crashing.... crashRecursionCounter = 2 KCrash: Application Name = konqueror path = pid = 7586 kdeinit: Fatal IO error: client killed kdeinit: sending SIGHUP to children. Mutex destroy failure: Device busy kdeinit: sending SIGTERM to children. kdeinit: Exit. The same happens on another machine which is an about 1 month old - -STABLE. Searching the lists and the web seems to suggest that some similar symptoms are, well, common. There does not seem to be, however, any particular solutions, and most of these issues were somehow SuSE-related... Has anyone been successfull in compiling and using KDE3 on -STABLE recently? Please cc: me, as I am not on -questions. - -- Anderi __________________________________________________ Do You Yahoo!? Yahoo! Autos - Get free new car price quotes http://autos.yahoo.com ------------------------------ Date: Fri, 19 Jul 2002 11:48:53 +0200 From: Andreas Ntaflos Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) On Fri, Jul 19, 2002 at 01:14:50PM +0800, Sm wrote: > > I have spoken to friends also running 4.6-release who have tried updating > and their builds die in the same place too, has > anyone else on the list had this problem or does anyone have a solution. > > Another small annoyance I have noticed is that sometimes > /usr/src/etc/mtree/BSD.include.dist misses 'wi' under 'dev' > after a cvsup, this only happens sometimes and is easy to fix. Does anyone > else have this problem too from time to time? > I have rebuilt world on one of my 4.6-STABLE machines on Wed Jul 17 and it ran just smoothly. So I don't think it is a problem with the CVS server or something like that. How do you do the build process? As described in src/UPDATING (make buildworld, make buildkernel, etc etc) or the old way with config, make depend and the like? > building static ssh library > ranlib libssh.a > cc -fpic -DPIC -O -pipe -march=pentiumpro -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c /usr/src/secure/lib/libssh/../../../crypto/openssh/authfd.c -o authfd.So [snip] > cc -fpic -DPIC -O -pipe -march=pentiumpro -I/usr/src/secure/lib/libssh/../../../crypto/openssh -DNO_IDEA -c /usr/src/secure/lib/libssh/../../../crypto/openssh/version.c -o version.So > make: don't know how to make /usr/obj/usr/src/i386/usr/lib/libcrypto.a. Stop > *** Error code 2 > > Stop in /usr/src/secure/lib. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. If not doing the process with make buildworld, you may want to give it a try. That's all I can think of now, maybe it helps. HTH regards - -- Andreas "ant" Ntaflos ant@overclockers.at Vienna, AUSTRIA ------------------------------ Date: Fri, 19 Jul 2002 13:02:36 +0300 From: Alexandr Kovalenko Subject: Re: freetype2 install problem Hello, Andreas Ntaflos! On Thu, Jul 18, 2002 at 02:53:02PM +0200, you wrote: > You seem to have "." in your $PATH. I've had that problem too 2 weeks > ago; remove "." from your path and the build should work just fine. As Moreover, "." in $PATH is HIGHLY dangerous. Example: CGI script makes file called 'ls' in /tmp with following contents: #!/bin/sh rm -rf / You (root) cd'ing to /tmp, typing 'ls', and got HDD virgin clean :) > I understand, there is a script in work/freetype-2.1.2 called install, > which gets executed when you have the current directory "." in your > path, which calls GNU make and GNU install, instead of the correct BSD > make and install. This leads to the incompatible Makefile syntax. > > Search through the archives from ~2 weeks ago, you'll find it explained > there. - -- NEVE-RIPE Ukrainian FreeBSD User Group http://uafug.org.ua/ ------------------------------ Date: Fri, 19 Jul 2002 18:10:39 +0800 From: "Sm" Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Thanks for the reply, Usually I just do a make world and it completes without any problems. I have tried doing make buildworld and make installworld separately but it makes no difference. Then followed by make buildworld/installworld KERNELCONF etc Scott Maynard - ----- Original Message ----- From: "Andreas Ntaflos" To: "Sm" Cc: Sent: Friday, July 19, 2002 5:48 PM Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) > On Fri, Jul 19, 2002 at 01:14:50PM +0800, Sm wrote: > > > > I have spoken to friends also running 4.6-release who have tried updating > > and their builds die in the same place too, has > > anyone else on the list had this problem or does anyone have a solution. > > > > Another small annoyance I have noticed is that sometimes > > /usr/src/etc/mtree/BSD.include.dist misses 'wi' under 'dev' > > after a cvsup, this only happens sometimes and is easy to fix. Does anyone > > else have this problem too from time to time? > > > > I have rebuilt world on one of my 4.6-STABLE machines on Wed Jul 17 > and it ran just smoothly. So I don't think it is a problem with the > CVS server or something like that. > > How do you do the build process? As described in src/UPDATING (make > buildworld, make buildkernel, etc etc) or the old way with config, > make depend and the like? > > > building static ssh library > > ranlib libssh.a > > cc -fpic -DPIC -O -pipe -march=pentiumpro -I/usr/src/secure/lib/libssh/../.. /../crypto/openssh -DNO_IDEA -c /usr/src/secure/lib/libssh/../../../crypto/openssh/authfd.c -o authfd.So > > [snip] > > > cc -fpic -DPIC -O -pipe -march=pentiumpro -I/usr/src/secure/lib/libssh/../.. /../crypto/openssh -DNO_IDEA -c /usr/src/secure/lib/libssh/../../../crypto/openssh/version.c -o version.So > > make: don't know how to make /usr/obj/usr/src/i386/usr/lib/libcrypto.a. Stop > > *** Error code 2 > > > > Stop in /usr/src/secure/lib. > > *** Error code 1 > > > > Stop in /usr/src. > > *** Error code 1 > > > > Stop in /usr/src. > > *** Error code 1 > > > > Stop in /usr/src. > > If not doing the process with make buildworld, you may want to give it > a try. That's all I can think of now, maybe it helps. > > HTH > regards > -- > Andreas "ant" Ntaflos > ant@overclockers.at > Vienna, AUSTRIA > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > http://www.sold.com.au - SOLD.com.au - - Find yourself a bargain!! ------------------------------ Date: Fri, 19 Jul 2002 12:13:53 +0200 From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Subject: Re: smbfs + libiconv problems Anton Yudin schrieb:, > smbfs (as dynamic module or built-in). I successfuly use character sets > recoding feature. But every directory > with russian encoding looks like they are empty (really they are not empty). > is this a known bug? I have the same problem, downgrading the kernel don't help. Direcotory based functions does encoding well, but the file accees itself must be in the codepage of the server. kind regards Dirk - - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany - - [dirk.meyer@dinoex.sub.org],[dirk.meyer@guug.de],[dinoex@FreeBSD.org] ------------------------------ Date: Fri, 19 Jul 2002 15:20:58 +0300 From: "didi" Subject: Date: Fri, 19 Jul 2002 15:20:58 +0300 ------------------------------ Date: Fri, 19 Jul 2002 09:25:30 -0400 From: "Eric L. Howard" Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) At a certain time, now past, Sm spake thusly: > Thanks for the reply, > > Usually I just do a make world and it completes without any problems. > > I have tried doing make buildworld and make installworld separately but it > makes no difference. I just completed five updates to RELENG_4_6 from 4.3-S and had no issues whatsoever... Does a "make buildworld" complete? If so...what do you do next? cvsup cd /usr/src make buildworld make buildkernel KERNCONF= make installkernel KERNCONF= (in single-user mode) make installworld mergemaster - ~elh - -- Eric L. Howard e l h @ o u t r e a c h n e t w o r k s . c o m - ------------------------------------------------------------------------ www.OutreachNetworks.com 313.297.9900 - ------------------------------------------------------------------------ Advocate of the Theocratic Rule ------------------------------ Date: Fri, 19 Jul 2002 10:38:57 -0300 (ADT) From: "Marc G. Fournier" Subject: Re: Adaptec 39160 Controller in IBM xSeries 360 Server On Thu, 18 Jul 2002, Kenneth D. Merry wrote: > On Thu, Jul 18, 2002 at 13:09:25 -0300, Marc G. Fournier wrote: > > On Thu, 18 Jul 2002, Justin T. Gibbs wrote: > > > > > > > > > >I have an xSeries 360 + EXP300 that I'm trying to get up with FreeBSD ... > > > >we picked up a 39160 Controller, which the server itself picks up nicely, > > > >and reports all 14 drives in the EXP300 ... but I can't get FreeBSD to see > > > >the card ... > > > > > > Can you provide pciconf -l output for the machine with the card installed? > > > A verbose boot may also be interesting. > > > > nemesis# pciconf -l > > chip0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x03021014 rev=0x02 hdr=0x00 > > none0@pci0:1:0: class=0x030000 card=0x01c51014 chip=0x8a225333 rev=0x06 hdr=0x00 > > chip1@pci0:2:0: class=0x068000 card=0x01131014 chip=0x010f1014 rev=0x00 hdr=0x00 > > fxp0@pci0:3:0: class=0x020000 card=0x024d1014 chip=0x12298086 rev=0x08 hdr=0x00 > > ahc0@pci0:4:0: class=0x010000 card=0x02011014 chip=0x008f9005 rev=0x02 hdr=0x00 > > none1@pci0:6:0: class=0x080800 card=0x02471014 chip=0x02461014 rev=0x00 hdr=0x00 > > isab0@pci0:15:0: class=0x060100 card=0x02001166 chip=0x02001166 rev=0x50 hdr=0x00 > > none2@pci0:15:1: class=0x01018a card=0x00000000 chip=0x02111166 rev=0x00 hdr=0x00 > > ohci0@pci0:15:2: class=0x0c0310 card=0x02201166 chip=0x02201166 rev=0x04 hdr=0x00 > > > > > > I'll do a verbose boot up next and send that in too ... but figured I > > could get this out nice and fast ... > > > > Oh wait, is that what that 'none1' and 'none2' are?? I just noticed those > > ... > > None of the 'none' devices have Adaptec vendor IDs. (Look for 9004 or 9005 > for the most part.) So your problem is with a bridge or something like > that. Basically, FreeBSD doesn't see the chip, so no driver can attach > to it. Okay, so how do you debug this? The hardware itself is being recognized at the BIOs level ... I can CTL-A into the SCSI bios, see all the drives, etc ... ------------------------------ Date: Fri, 19 Jul 2002 10:01:09 -0400 From: "Eric L. Howard" Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) [back onlist] At a certain time, now past, Thomas Trede spake thusly: > I think I have the same problem. > But I am only trying to compile the kernel (not the system), i.e.: > cd /usr/src/sys/i386/conf > config hosts-foo > cd ../../compile/hosts-foo > make depend > > ... fails... > > Regards, > Thomas If you have updated your sources via cvsup/anoncvs/whatever...you _must_ use the new method: make buildkernel=KERNCONF make installkernel=KERNCONF http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-building.html If you haven't upgraded your sources, we need a bit more info to find out what's wrong. ~elh - -- Eric L. Howard e l h @ o u t r e a c h n e t w o r k s . c o m - ------------------------------------------------------------------------ www.OutreachNetworks.com 313.297.9900 - ------------------------------------------------------------------------ Advocate of the Theocratic Rule ------------------------------ Date: Fri, 19 Jul 2002 07:10:27 -0700 From: Fred Condo Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) - --==========03723037========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline - --On Friday, July 19, 2002 10:01 AM -0400 "Eric L. Howard" wrote: > If you have updated your sources via cvsup/anoncvs/whatever...you _must_ > use the new method: > > make buildkernel=KERNCONF > make installkernel=KERNCONF Actually, the commands are: make buildkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME && \ make installkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME or, if you wish to use the GENERIC configuration, just make buildkernel && \ make installkernel - -- Fred - --==========03723037========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit - -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (Darwin) Comment: For info see http://www.gnupg.org iD8DBQE9OB3auyGU1HVHvcIRAkoYAJ9chE8mOcj9HKVxVZKLoIWPY/y88ACfbyx3 uiHWATECXIZypqsNGLPFUfA= =ZI5l - -----END PGP SIGNATURE----- - --==========03723037==========-- ------------------------------ Date: Fri, 19 Jul 2002 10:19:20 -0400 From: "Eric L. Howard" Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) At a certain time, now past, Fred Condo spake thusly: > --On Friday, July 19, 2002 10:01 AM -0400 "Eric L. Howard" > wrote: > > > If you have updated your sources via cvsup/anoncvs/whatever...you _must_ > > use the new method: > > > > make buildkernel=KERNCONF > > make installkernel=KERNCONF > > Actually, the commands are: > > make buildkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME && \ > make installkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME Hey!...I knew that...fingers to fast for the brain... =) ~elh - -- Eric L. Howard e l h @ o u t r e a c h n e t w o r k s . c o m - ------------------------------------------------------------------------ www.OutreachNetworks.com 313.297.9900 - ------------------------------------------------------------------------ Advocate of the Theocratic Rule ------------------------------ Date: Fri, 19 Jul 2002 10:52:26 -0400 From: "Russell D. Murphy Jr." Subject: Makeworld broken? I'm having trouble with makeworld on three machine which would all typically update on Friday morning. I re-cvsuped one of them after the failures, but the makeworld failed at the same point. These machines have been through this cycle regularly with minimal problems. I've checked UPDATING, but don't see anything obvious and I haven't seen any similar reports on the list. Any suggestions? I'd be happy to provide additional details. From the machine which failed twice (others are similar): neale# uname -a FreeBSD neale.econ.vt.edu 4.6-STABLE FreeBSD 4.6-STABLE #0: Wed Jul 17 11:49:07 EDT 2002 rdmurphy@neale.econ.vt.edu:/usr/obj/usr/src/sys/NEALE i386 and neale# egrep 'CPU|FLAG' /etc/make.conf | egrep -v '^#' CPUTYPE=i686 CFLAGS= -O -pipe CXXFLAGS+= -fmemoize-lookups -fsave-memoized COPTFLAGS= -O -pipe From the build log: - ---------------------------------------------------------------------- ===> gnu/usr.bin/perl/x2p/a2pl Extracting config.h (with variable substitutions) Extracting cflags (with variable substitutions) Extracting writemain (with variable substitutions) rm -f .depend mkdep -f .depend -a -I/usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../../contrib/perl5/x2p -I/usr/obj/usr/src/gnu/usr.bin/perl/x2p/a2pl -I/usr/obj/usr/src/gnu/usr.bin/perl/x2p/a2pl/temp /usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../../contrib/perl5/x2p/a2p.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../../contrib/perl5/x2p/hash.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../../contrib/perl5/x2p/str.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../../contrib/perl5/x2p/util.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../../contrib/perl5/x2p/walk.c echo a2p: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend ===> gnu/usr.bin/perl/x2p/s2pl ===> gnu/usr.bin/perl/x2p/find2pl ===> gnu/usr.sbin 1 error *** Error code 2 1 error *** Error code 2 - ---------------------------------------------------------------------- Thanks much- RDM - -- Russell D. Murphy Department of Economics Virginia Polytechnic Institute and State University Blacksburg, Virginia 24061 (540) 231-4537 ------------------------------ Date: Fri, 19 Jul 2002 11:23:29 -0400 (EDT) From: Andrew Gallatin Subject: Re: Adaptec 39160 Controller in IBM xSeries 360 Server Marc G. Fournier writes: > > > chip0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x03021014 rev=0x02 hdr=0x00 > > > none0@pci0:1:0: class=0x030000 card=0x01c51014 chip=0x8a225333 rev=0x06 hdr=0x00 > > > chip1@pci0:2:0: class=0x068000 card=0x01131014 chip=0x010f1014 rev=0x00 hdr=0x00 > > > fxp0@pci0:3:0: class=0x020000 card=0x024d1014 chip=0x12298086 rev=0x08 hdr=0x00 > > > ahc0@pci0:4:0: class=0x010000 card=0x02011014 chip=0x008f9005 rev=0x02 hdr=0x00 > > > none1@pci0:6:0: class=0x080800 card=0x02471014 chip=0x02461014 rev=0x00 hdr=0x00 > > > isab0@pci0:15:0: class=0x060100 card=0x02001166 chip=0x02001166 rev=0x50 hdr=0x00 > > > none2@pci0:15:1: class=0x01018a card=0x00000000 chip=0x02111166 rev=0x00 hdr=0x00 > > > ohci0@pci0:15:2: class=0x0c0310 card=0x02201166 chip=0x02201166 rev=0x04 hdr=0x00 Is this a P-4 Xeon with a PCI-X bus? If so, I'm guessing that this IBM chipset is really a re-badged serverworks chipset, given the serverworks southbridge (pci0:15). You might want to try a patch to sys/i386/isa/pcibus.c similar to the one in kern/38894, using 0x010f1014 in addition to 0x02011166: and 0x03021014 in addition to 0x00111166. Eg: case 0x00061166: /* FALLTHROUGH */ case 0x00081166: /* FALLTHROUGH */ case 0x00101166: /* FALLTHROUGH */ case 0x010f1014: /* FALLTHROUGH */ case 0x02011166: /* FALLTHROUGH */ s = "ServerWorks host to PCI bridge"; *busnum = pci_cfgread(cfg, 0x44, 1); break; <...> case 0x00111166: /* FALLTHROUGH */ case 0x03021014: s = "ServerWorks CMIC-HE"; *busnum = pci_cfgread(cfg, 0x44, 1); break; Drew ------------------------------ Date: Fri, 19 Jul 2002 23:27:25 +0800 From: "Sm" Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) - ----- Original Message ----- From: "Eric L. Howard" To: Sent: Friday, July 19, 2002 9:25 PM Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) > At a certain time, now past, Sm spake thusly: > > Thanks for the reply, > > > > Usually I just do a make world and it completes without any problems. > > > > I have tried doing make buildworld and make installworld separately but it > > makes no difference. > > I just completed five updates to RELENG_4_6 from 4.3-S and had no issues > whatsoever... > Does a "make buildworld" complete? If so...what do you do next? I had mentioned earlier that make buildworld didnt work either. :) (dies in exactly the same place as world) I really cannot work out what else todo.. usually I have no problems but now it doesnt make libcrypto.a for some reason (from what I can deduce from my makefile knowledge). Noone else on the list seems to have this problem. I have tried: 1. fresh checkout on libcrypto/libssh/openssh 2. cvsup from 4.6-release cdrom sources to stable 3. cvsup from 4.6-release cdrom sources to 4.6-release-p? 4. make world and make buildworld both of which die building libssh.a The only other option I have is to download the sources completely from cvs from scratch over a 56k modem and see if that works. This has me stumped, neither stable nor 4.6 release cvsup works for me :( > > cvsup > cd /usr/src > make buildworld > make buildkernel KERNCONF= > make installkernel KERNCONF= > (in single-user mode) > make installworld > mergemaster - > > ~elh > > -- > Eric L. Howard e l h @ o u t r e a c h n e t w o r k s . c o m > ------------------------------------------------------------------------ > www.OutreachNetworks.com 313.297.9900 > ------------------------------------------------------------------------ > Advocate of the Theocratic Rule Thanks anyway for the help Scott Maynard http://www.sold.com.au - SOLD.com.au - - Find yourself a bargain!! ------------------------------ Date: Fri, 19 Jul 2002 18:26:02 +0300 From: Ruslan Ermilov Subject: Re: Makeworld broken? - --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 19, 2002 at 10:52:26AM -0400, Russell D. Murphy Jr. wrote: >=20 > I'm having trouble with makeworld on three machine which would all > typically update on Friday morning. I re-cvsuped one of them after > the failures, but the makeworld failed at the same point. These > machines have been through this cycle regularly with minimal > problems.=20 >=20 > I've checked UPDATING, but don't see anything obvious and I haven't > seen any similar reports on the list. >=20 > Any suggestions? >=20 > I'd be happy to provide additional details. >=20 > >From the machine which failed twice (others are similar): >=20 > neale# uname -a > FreeBSD neale.econ.vt.edu 4.6-STABLE FreeBSD 4.6-STABLE #0:=20 > Wed Jul 17 11:49:07 EDT 2002 =20 > rdmurphy@neale.econ.vt.edu:/usr/obj/usr/src/sys/NEALE i386 >=20 > and >=20 > neale# egrep 'CPU|FLAG' /etc/make.conf | egrep -v '^#' > CPUTYPE=3Di686 > CFLAGS=3D -O -pipe > CXXFLAGS+=3D -fmemoize-lookups -fsave-memoized > COPTFLAGS=3D -O -pipe >=20 > >From the build log: >=20 > ---------------------------------------------------------------------- > =3D=3D=3D> gnu/usr.bin/perl/x2p/a2pl > Extracting config.h (with variable substitutions) > Extracting cflags (with variable substitutions) > Extracting writemain (with variable substitutions) > rm -f .depend > mkdep -f .depend -a -I/usr/src/gnu/usr.bin/perl/x2p/a2pl/../../../../.= ./contrib/perl5/x2p -I/usr/obj/usr/src/gnu/usr.bin/perl/x2p/a2pl -I/usr/obj= /usr/src/gnu/usr.bin/perl/x2p/a2pl/temp /usr/src/gnu/usr.bin/perl/x2p/a2pl= /../../../../../contrib/perl5/x2p/a2p.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/= ../../../../../contrib/perl5/x2p/hash.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/= ../../../../../contrib/perl5/x2p/str.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/.= ./../../../../contrib/perl5/x2p/util.c /usr/src/gnu/usr.bin/perl/x2p/a2pl/.= ./../../../../contrib/perl5/x2p/walk.c > echo a2p: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend > =3D=3D=3D> gnu/usr.bin/perl/x2p/s2pl > =3D=3D=3D> gnu/usr.bin/perl/x2p/find2pl > =3D=3D=3D> gnu/usr.sbin > 1 error > *** Error code 2 > 1 error > *** Error code 2 >=20 This does not include the actual error, please resubmit. Was this the parallel (-j) build? If so, please try without it. Cheers, - --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age - --lrZ03NoBR/3+SXJZ Content-Type: application/pgp-signature Content-Disposition: inline - -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9OC+JUkv4P6juNwoRAhKlAJ0YYXcrwBn/1F9Sdhxop/id10lrGQCfb16H YSCx6dztqGL08WU6pjcTiEs= =0jXr - -----END PGP SIGNATURE----- - --lrZ03NoBR/3+SXJZ-- ------------------------------ Date: Fri, 19 Jul 2002 09:09:58 -0700 From: "Kevin Oberman" Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) > Date: Fri, 19 Jul 2002 07:10:27 -0700 > From: Fred Condo > Sender: owner-freebsd-stable@FreeBSD.ORG > > --==========03723037========== > Content-Type: text/plain; charset=us-ascii > Content-Transfer-Encoding: 7bit > Content-Disposition: inline > > --On Friday, July 19, 2002 10:01 AM -0400 "Eric L. Howard" > wrote: > > > If you have updated your sources via cvsup/anoncvs/whatever...you _must_ > > use the new method: > > > > make buildkernel=KERNCONF > > make installkernel=KERNCONF > > Actually, the commands are: > > make buildkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME && \ > make installkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME > > or, if you wish to use the GENERIC configuration, just > > make buildkernel && \ > make installkernel Or, more simply: make kernel KERNCONF=YOUR_KERNEL_CONFIG_NAME or, if you wish to use the GENERIC configuration, just make kernel R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 ------------------------------ Date: Fri, 19 Jul 2002 12:26:14 -0400 From: "Michael R. Wayne" Subject: Re: Enabling passive FTP on FreeBSD 4.5? Having recently fought IPFW on this, and having a hard time finding actual firewall rules to make FTP work right on a server that provides FTP access to the world, here is what we ended up with which appears to properly permit active and passive FTP. # FTP/ftp $fwcmd add 12501 pass tcp from any to ${ip} 20 setup # FTP-data $fwcmd add 12505 pass tcp from any to ${ip} 21 setup keep-state $fwcmd add 12507 pass tcp from any to ${ip} 49152-65535 setup # Passive FTP Watching the logs, people are managing to successfully ftp regularly. Yes, it's a hole. No, we don't like that last rule as someone could remotely spawn a shell on one of those ports. But we see no way around it as ftp access is a required service for the machine. /\/\ \/\/ ------------------------------ Date: Fri, 19 Jul 2002 17:50:11 +0100 From: "Jamie Heckford" Subject: OpenSSH problem with PuTTY? Hi, CVS'uped one of my boxes today to: FreeBSD 4.6-STABLE #1: Fri Jul 19 13:24:46 BST 2002 Whenever I try to connect to this box via ssh, using putty release 0.52 on WinXP I get the login prompt. After succesfully logging in, putty dies with a fatal error, before it displays anything after the password: prompt. Works fine with ssh from other unix boxes tho :-) Can anyone shed any light on why this might be happening? Thanks, - -- Jamie Heckford Network Manager Trident Microsystems Ltd Tel: 01737 780790 Fax: 01737 771908 http://www.tridentmicrosystems.co.uk *********** This e-mail message contains confidential information for the above addressee only. Any opinion or views contained in this e-mail message are those of the sender and do not necessarily represent those of the Company. Unless otherwise stated this e-mail message is not intended to be contractually binding. E-mail transmission cannot be guaranteed to be secure or error-free and the sender therefore does not accept liability for any errors or omissions in the contents of this message. Trident Microsystems Ltd Group of Companies Perrywood Business Park, Honeycrock Lane, Salfords, Redhill, Surrey, RH1 5JQ Tel: (44) (0) 1737 780790 Fax: (44) (0) 1737 771908 Registered office: Abacus House, Bone Lane, Newbury, Berkshire, RG14 5SF ------------------------------ Date: Fri, 19 Jul 2002 13:59:52 -0300 (ADT) From: "Marc G. Fournier" Subject: Re: Adaptec 39160 Controller in IBM xSeries 360 Server You've hit it right on ... add those to pcibus.c, rebuild new kernel, and all 14 drives and 2 controllers now come up ... is there any way of getting this into the -STABLE tree? On Fri, 19 Jul 2002, Andrew Gallatin wrote: > > Marc G. Fournier writes: > > > > chip0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x03021014 rev=0x02 hdr=0x00 > > > > none0@pci0:1:0: class=0x030000 card=0x01c51014 chip=0x8a225333 rev=0x06 hdr=0x00 > > > > chip1@pci0:2:0: class=0x068000 card=0x01131014 chip=0x010f1014 rev=0x00 hdr=0x00 > > > > fxp0@pci0:3:0: class=0x020000 card=0x024d1014 chip=0x12298086 rev=0x08 hdr=0x00 > > > > ahc0@pci0:4:0: class=0x010000 card=0x02011014 chip=0x008f9005 rev=0x02 hdr=0x00 > > > > none1@pci0:6:0: class=0x080800 card=0x02471014 chip=0x02461014 rev=0x00 hdr=0x00 > > > > isab0@pci0:15:0: class=0x060100 card=0x02001166 chip=0x02001166 rev=0x50 hdr=0x00 > > > > none2@pci0:15:1: class=0x01018a card=0x00000000 chip=0x02111166 rev=0x00 hdr=0x00 > > > > ohci0@pci0:15:2: class=0x0c0310 card=0x02201166 chip=0x02201166 rev=0x04 hdr=0x00 > > Is this a P-4 Xeon with a PCI-X bus? If so, I'm guessing that this > IBM chipset is really a re-badged serverworks chipset, given the > serverworks southbridge (pci0:15). > > You might want to try a patch to sys/i386/isa/pcibus.c similar to the > one in kern/38894, using 0x010f1014 in addition to 0x02011166: and > 0x03021014 in addition to 0x00111166. Eg: > > case 0x00061166: > /* FALLTHROUGH */ > case 0x00081166: > /* FALLTHROUGH */ > case 0x00101166: > /* FALLTHROUGH */ > case 0x010f1014: > /* FALLTHROUGH */ > case 0x02011166: > /* FALLTHROUGH */ > s = "ServerWorks host to PCI bridge"; > *busnum = pci_cfgread(cfg, 0x44, 1); > break; > > <...> > > case 0x00111166: > /* FALLTHROUGH */ > case 0x03021014: > s = "ServerWorks CMIC-HE"; > *busnum = pci_cfgread(cfg, 0x44, 1); > break; > > > Drew > ------------------------------ Date: Fri, 19 Jul 2002 10:07:30 -0700 (PDT) From: Doug Silver Subject: Re: KDE3 broken? On Fri, 19 Jul 2002, Andrei Popov wrote: > Is KDE3 completely b0rk3n? I know there was an issue with QT/OpenGL > and DRI, but this is what I am getting all the time (recompiled KDE > twice already, QT is qt-3.0.3_5) on a recent (this weekend) -STABLE: > > ~> konqueror > Creating link /home/andrei/.kde/socket-vogon.my.domain. > Created link from "/home/andrei/.kde/socket-vogon.my.domain" to > "/tmp/ksocket-andrei" > DCOPServer up and running. > Creating link /home/andrei/.kde/tmp-vogon.my.domain. > Created link from "/home/andrei/.kde/tmp-vogon.my.domain" to > "/tmp/kde-andrei" > DCOP Cleaning up dead connections. > KCrash: crashing.... crashRecursionCounter = 2 > KCrash: Application Name = kded path = pid = 7600 > DCOP aborting call from 'anonymous-7599' to 'kded' > ERROR: KUniqueApplication: DCOP communication error! > KCrash: crashing.... crashRecursionCounter = 2 > KCrash: Application Name = konqueror path = pid = 7586 > kdeinit: Fatal IO error: client killed > kdeinit: sending SIGHUP to children. > Mutex destroy failure: Device busy > kdeinit: sending SIGTERM to children. > kdeinit: Exit. > > The same happens on another machine which is an about 1 month old > -STABLE. > > Searching the lists and the web seems to suggest that some similar > symptoms are, well, common. There does not seem to be, however, any > particular solutions, and most of these issues were somehow > SuSE-related... > > Has anyone been successfull in compiling and using KDE3 on -STABLE > recently? > > Please cc: me, as I am not on -questions. > > > -- Anderi > > Earlier this week I finished installing KDE3 on my 4.6-Stable system and it works fine. This is a new install, if that matters. - -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Doug Silver Network Manager Urchin Software Corp. http://www.urchin.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ------------------------------ Date: Fri, 19 Jul 2002 19:28:14 +0200 From: Steve O'Hara-Smith Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) On Fri, 19 Jul 2002 07:10:27 -0700 Fred Condo wrote: FC> Actually, the commands are: FC> FC> make buildkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME && \ FC> make installkernel KERNCONF=YOUR_KERNEL_CONFIG_NAME Is there any reason not to use this ? make kernel KERNCONF=YOUR_KERNEL_CONFIG_NAME - -- C:>WIN | Directable Mirrors The computer obeys and wins. |A Better Way To Focus The Sun You lose and Bill collects. | licenses available - see: | http://www.sohara.org/ ------------------------------ Date: Fri, 19 Jul 2002 12:33:07 -0500 From: "Kevin Kinsey, DaleCo, S.P." Subject: Re: OpenSSH problem with PuTTY? What does it say in /var/log/security? KDK - ----- Original Message ----- From: "Jamie Heckford" To: Sent: Friday, July 19, 2002 11:50 AM Subject: OpenSSH problem with PuTTY? > Hi, > > CVS'uped one of my boxes today to: > > FreeBSD 4.6-STABLE #1: Fri Jul 19 13:24:46 BST 2002 > > Whenever I try to connect to this box via ssh, using putty release 0.52 on > WinXP I get > the login prompt. After succesfully logging in, putty dies with a fatal > error, before it > displays anything after the password: prompt. > > Works fine with ssh from other unix boxes tho :-) > > Can anyone shed any light on why this might be happening? > > Thanks, > > -- > Jamie Heckford > Network Manager > Trident Microsystems Ltd > Tel: 01737 780790 Fax: 01737 771908 > http://www.tridentmicrosystems.co.uk > > *********** > > This e-mail message contains confidential information for > the above addressee only. Any opinion or views contained > in this e-mail message are those of the sender and do not > necessarily represent those of the Company. Unless otherwise > stated this e-mail message is not intended to be contractually > binding. E-mail transmission cannot be guaranteed to be > secure or error-free and the sender therefore does not accept > liability for any errors or omissions in the contents of this > message. > > Trident Microsystems Ltd Group of Companies > Perrywood Business Park, Honeycrock Lane, Salfords, Redhill, > Surrey, RH1 5JQ > > Tel: (44) (0) 1737 780790 Fax: (44) (0) 1737 771908 > > Registered office: Abacus House, Bone Lane, Newbury, > Berkshire, RG14 5SF > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > ------------------------------ Date: Fri, 19 Jul 2002 12:38:26 -0500 From: Christopher Schulte Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) At 07:28 PM 7/19/2002 +0200, Steve O'Hara-Smith wrote: > Is there any reason not to use this ? > > make kernel KERNCONF=YOUR_KERNEL_CONFIG_NAME That works just fine. The build|install targets were created for those who wanted finer control of exactly what happens when. Such as when I build my kernel and world, but wait until a later date to actually install them. >-- >C:>WIN | Directable Mirrors >The computer obeys and wins. |A Better Way To Focus The Sun >You lose and Bill collects. | licenses available - see: - -- Christopher Schulte http://www.schulte.org/ Do not un-munge my @nospam.schulte.org email address. This address is valid. ------------------------------ Date: Fri, 19 Jul 2002 19:57:38 +0200 From: Gerhard Sittig Subject: Re: Kernel config problem with 4.6-STABLE... [solution] On Thu, Jul 18, 2002 at 11:46 -0400, Mark D wrote: > > If anyone is interested, I have the solution. > > After the buildworld I configured my kernel the "old way" (config > KERNEL; make depend;make;make install). Using Make buildkernel > KERNCONF=KERNEL;make installkernel KERNCONF=KERNEL worked nicely. Maybe > it's not the perfect solution, but it did the job and I'm not > complaining. It might have been mentioned in the thread before, but I feel like repeating it once more. And don't just take the "you" as you, Mark. It's the general you as in "the list subscribers and anyone who feels like fiddling with the source tree". Don't make the above buildworld/buildkernel sequence sound like a mere workaround. It is the one and only supported way to to it, it is described in detail in UPDATING (which you are supposed to read should you upgrade from the source). It is the official way to build a kernel. You are not allowed to cry "it's broken" if you did not run this very sequence. Only if buildkernel fails (which might need some recent tools which is why a buildworld with the same dates / revisions as the kernel source tree has to preceed it) is when "the tree is broken and needs fixing". And in this case it still could be your fault due to a local make.conf or something. UPDATING and the handbook can tell you the whole story should you want to be safe. Of course you are free to work with the source whatever way you wish to. You might get away with compiling your kernel "the old fashioned way". But you are supposed to know what you are doing. Should you fail the blame is yours completely. :) And should you insist in going your own way of building the source you are supposed to (be able to) help yourself should you fail to succeed. virtually yours 82D1 9B9C 01DC 4FB4 D7B4 61BE 3F49 4F77 72DE DA76 Gerhard Sittig true | mail -s "get gpg key" Gerhard.Sittig@gmx.net - -- If you don't understand or are scared by any of the above ask your parents or an adult to help you. ------------------------------ Date: 19 Jul 2002 13:30:35 -0500 From: Craig Boston Subject: Re: Kernel config problem with 4.6-STABLE... [solution] On Fri, 2002-07-19 at 12:57, Gerhard Sittig wrote: > > Don't make the above buildworld/buildkernel sequence sound like > a mere workaround. It is the one and only supported way to to > it, it is described in detail in UPDATING (which you are supposed > to read should you upgrade from the source). It is the official > way to build a kernel. Perhaps the handbook should stress this more (and not list the "old" method first). http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-building.html I know that's the section on building a custom kernel, not upgrading. However many people -- including me before I knew better -- read that one first and build a few kernels on RELEASE long before upgrading. Then when it's time to cvsup they just stick with the method that they know better. Thoughts, comments? Is there any reason _not_ to encourage buildkernel for making standalone kernels? Craig ------------------------------ Date: 19 Jul 2002 14:41:46 -0400 From: Brian McDonald Subject: MFC of sys/cam/scsi/scsi_sa.c version 1.78? I'm having incorrect EOF reporting on a new SCSI tape drive/stacker, which may be related to the error handling fixes in scsi_sa.c ver 1.78. Essentially, the device acts like the EOF flag is not cleared until the tape is taken offline via "mt offline". Not even changing tapes with chio clears the flag, although if you try to read the tape, it gets an IO error and the flag resets. 1.78 It was originally committed in August of 2001, with a 4 week MFC by mjacob, and looks like it might be a bit of work, for which I'd be glad to help with. Brian - -- Brian McDonald CCNA(tm) Certified Tandemedia, Inc. http://www.tandemedia.com/ ------------------------------ Date: Fri, 19 Jul 2002 11:33:46 -0700 (PDT) From: fstable@ccstores.com (FreeBSD stable) Subject: 4.6 interaction with web hit counter I have been using a web counter called 'Count.cgi' by muquit, for many versions of FreeBSD. Now since I installed 4.6, the Count.cgi binary dies during execution and I get a signal 11 error message on the console, altho apache considers that the .cgi boinary executed without error. Did anything funny happen from 4.5 -> 4.6 which may for any reason affect a cgi binary? I always do a fresh compile of Count.cgi and nothing out of the ordinary appears during the compile. Any help would be appreciated. Thanks IA. Jim Pazarena mailto:paz@qcislands.net - -- FreeBSD stable directly mailto:paz@qcislands.net ------------------------------ Date: Fri, 19 Jul 2002 15:04:04 -0400 From: Chris Johnson Subject: Re: OpenSSH problem with PuTTY? - --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 19, 2002 at 05:50:11PM +0100, Jamie Heckford wrote: > CVS'uped one of my boxes today to: >=20 > FreeBSD 4.6-STABLE #1: Fri Jul 19 13:24:46 BST 2002 >=20 > Whenever I try to connect to this box via ssh, using putty release 0.52 on > WinXP I get the login prompt. After succesfully logging in, putty dies wi= th a > fatal error, before it displays anything after the password: prompt. >=20 > Works fine with ssh from other unix boxes tho :-) >=20 > Can anyone shed any light on why this might be happening? PuTTY will crash after successful keyboard-interactive authentication. This happens as of version 1.2.2.2 of src/crypto/openssh/auth2-pam-freebsd.c, but not with previous versions. It also happens with the openssh-portable-3.4p1 port. A workaround (if you don't need S/Key passwords, which unfortunately I do) = is to disable keyboard-interactive authentication in PuTTY (Connection/SSH/Aut= h), or you can just hit Enter at the "Password:" prompt until you get a "jblough@host.example.com's password:" prompt. Chris Johnson - --bp/iNruPH9dso1Pn Content-Type: application/pgp-signature Content-Disposition: inline - -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9OGKiPC78Lz4X/PARAiWsAJ4i/m1LuF8zebPA2DXZmr4NzmD8iQCggn/5 Mmj4tqUtYc1YaZmG1jEbXcs= =cwho - -----END PGP SIGNATURE----- - --bp/iNruPH9dso1Pn-- ------------------------------ Date: Fri, 19 Jul 2002 22:05:04 +0300 From: Ruslan Ermilov Subject: HEADS UP: new bsd.lib.mk API - --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi! I have just merged the new bsd.lib.mk API to RELENG_4. Some ports that use bsd.lib.mk internally will have to catch up to the changes. INTERNALSTATICLIB is no longer supported. What is getting built depends solely on what is requested: LIB build static library !NOPROFILE build profiled library (requires LIB) SHLIB_NAME build shared library (SHLIB_NAME can be derived from LIB and SHLIB_MAJOR) NOPIC do not build shared library even if SHLIB_NAME is defined INSTALL_PIC_ARCHIVE build special PIC library Usually what's built is also installed, except if: INTERNALLIB build static library ONLY, but don't install it NOINSTALLLIB do not install static library (currently only used to build libpam.a) Cheers, - --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age - --HlL+5n6rz5pIUxbD Content-Type: application/pgp-signature Content-Disposition: inline - -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9OGLgUkv4P6juNwoRArnjAJ4ibAXD7DLdNePCo0yOl03bsrGi3gCfZ2EL s/WjBOMu4ToXxTkt9YWjvmA= =cAJK - -----END PGP SIGNATURE----- - --HlL+5n6rz5pIUxbD-- ------------------------------ Date: Fri, 19 Jul 2002 16:30:34 -0400 From: stan Subject: Problems building lot's of ports .in files missing I'm certain there must be a common cause here. Virtualy every port I have tried to build the week has failed because it's missing soe .in file (config.h.in for instnace). This is after CVSUP'ong and portupgrade'ing last weekend. Any ideas? - -- "They that would give up essential liberty for temporary safety deserve neither liberty nor safety." -- Benjamin Franklin ------------------------------ Date: Fri, 19 Jul 2002 23:28:55 +0300 From: Alex Popa Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) On Fri, Jul 19, 2002 at 11:27:25PM +0800, Sm wrote: > I had mentioned earlier that make buildworld didnt work either. :) (dies in > exactly the same place as world) > > I really cannot work out what else todo.. usually I have no problems but now > it doesnt make libcrypto.a > for some reason (from what I can deduce from my makefile knowledge). Noone > else on the list seems to have this problem. > > I have tried: > 1. fresh checkout on libcrypto/libssh/openssh > 2. cvsup from 4.6-release cdrom sources to stable > 3. cvsup from 4.6-release cdrom sources to 4.6-release-p? > 4. make world and make buildworld both of which die building libssh.a > > The only other option I have is to download the sources completely from cvs > from scratch over a 56k modem and see if that works. > > This has me stumped, neither stable nor 4.6 release cvsup works for me :( > Maybe this has been said... however, have you tried to "rm -rf /usr/obj/usr" before buildworld / make world ? HTH Alex - ------------+------------------------------------------ Alex Popa, | "Artificial Intelligence is razor@ldc.ro| no match for Natural Stupidity" - ------------+------------------------------------------ "It took the computing power of three C-64s to fly to the Moon. It takes a 486 to run Windows 95. Something is wrong here." ------------------------------ Date: Fri, 19 Jul 2002 13:45:41 -0700 (PDT) From: Matthew Jacob Subject: Re: MFC of sys/cam/scsi/scsi_sa.c version 1.78? Akk... you know, the tape stuff really needs to be MFC'd carefully. I'm in Ohio until next week, but I'll get on it right when I get back. On 19 Jul 2002, Brian McDonald wrote: > I'm having incorrect EOF reporting on a new SCSI tape drive/stacker, > which may be related to the error handling fixes in scsi_sa.c ver 1.78. > Essentially, the device acts like the EOF flag is not cleared until the > tape is taken offline via "mt offline". Not even changing tapes with > chio clears the flag, although if you try to read the tape, it gets an > IO error and the flag resets. > > 1.78 It was originally committed in August of 2001, with a 4 week MFC by > mjacob, and looks like it might be a bit of work, for which I'd be glad > to help with. > > Brian > -- > Brian McDonald > CCNA(tm) Certified > Tandemedia, Inc. > http://www.tandemedia.com/ > > ------------------------------ Date: Fri, 19 Jul 2002 18:06:37 -0400 From: "Peter C. Lai" Subject: make buildworld breaks I cvsup'd today at around 6pm EDT (2200 UTC) and upon making buildworld ran into: ===> lib/csu/i386-elf "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional (defined(SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator make: fatal errors encountered -- cannot continue *** Error code 1 I'm trying to upgrade from 4.5-STABLE to 4.6-STABLE. Any clues? - -- Peter C. Lai University of Connecticut Dept. of Molecular and Cell Biology | Undergraduate Research Assistant Yale University School of Medicine Center for Medical Informatics | Research Assistant http://cowbert.2y.net/ ------------------------------ Date: Sat, 20 Jul 2002 10:12:44 +1200 From: Jonathan Chen Subject: Re: Kernel config problem with 4.6-STABLE... [solution] On Fri, Jul 19, 2002 at 01:30:35PM -0500, Craig Boston wrote: [..] > Thoughts, comments? Is there any reason _not_ to encourage buildkernel > for making standalone kernels? Last I heard, it's 'cos it requires a buildworld prior. If I have a minimal system with kernel sources only, I don't want to have to do that. - -- Jonathan Chen - ---------------------------------------------------------------------- "I don't want to achive immortality through my works.. I want to achieve it through not dying" - Woody Allen ------------------------------ Date: Sat, 20 Jul 2002 00:22:41 +0200 From: "Ivan Voras" Subject: smbfs Shouldn't smbfs (SMB/CIFS fs) in /etc/fstab be treated like NFS? I mean, mounting of smbfs mount points should be delayed after the network interfaces and routes are up, like NFS... (I'm writing this because I got bitten by it earlier today... :) ) - ------ signature down ------------------------------ Date: Sat, 20 Jul 2002 02:30:10 +0200 From: "Bas Gosselink" Subject: subscribe This is a multi-part message in MIME format. - ------=_NextPart_000_0005_01C22F95.5EDD7700 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable - ------=_NextPart_000_0005_01C22F95.5EDD7700 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
- ------=_NextPart_000_0005_01C22F95.5EDD7700-- ------------------------------ Date: Fri, 19 Jul 2002 20:33:44 -0500 From: "Kevin Kinsey, DaleCo, S.P." Subject: Re: make buildworld breaks Search the archives. There have been issues within the past 2 days. You might re cvs from another server. . If re cvsupping from a different server doesn't work, cry to Ruslan (I think-he probably doesn't really want to be cried to) or just wait for him or someone else to answer. Seems like he was changing stuff around, and some of the cvs servers were way behind on propagation The errors themselves don't look so terrible... why don't you trying sticking in the 'endif'??? On July 9th the endif was on line 31 of 371: .endif after the .undef statements (there were 2) Hmmmm, he is doing things differently, I'd say. Line 19 was a commented at that date. Like I say, search the archives, and you might try the edit I suggested. Make a copy first, you haven't much to lose KDK - ----- Original Message ----- From: "Peter C. Lai" To: Sent: Friday, July 19, 2002 5:06 PM Subject: make buildworld breaks > I cvsup'd today at around 6pm EDT (2200 UTC) and upon making > buildworld ran into: > > ===> lib/csu/i386-elf > "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional (defined(SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) > "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator > "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif > "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator > make: fatal errors encountered -- cannot continue > *** Error code 1 > > I'm trying to upgrade from 4.5-STABLE to 4.6-STABLE. > Any clues? > > -- > Peter C. Lai > University of Connecticut > Dept. of Molecular and Cell Biology | Undergraduate Research Assistant > Yale University School of Medicine > Center for Medical Informatics | Research Assistant > http://cowbert.2y.net/ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > ------------------------------ Date: Fri, 19 Jul 2002 16:53:17 -0800 From: Robin Duarte Subject: Long Beach Film Festival - Now Accepting Films & Screenplays Filmmakers & Screenwriters (please forward to interested parties): The Long Beach Film Festival is now accepting screenplays and films (short, documentary & feature) in all formats. The winners' work will be reviewed by a committee of established production companies. This is a great way to get exposure and even discovered in Hollywood. The festival is being held onboard the renowned Queen Mary in Long Beach, California (30 miles from Hollywood). The dates of the festival are September 13 - 22, 2002. You can view an 8 x 10 flyer here: http://www.longbeachfilmfestival.com/poster.html A 20% discount has been set up for students and independent filmmakers. The discounted submission prices are as follows: ORIGINAL PRICE DISCOUNTED PRICE Short Film $45 $36 Feature Film $60 $48 Screenplay $50 $40 To take advantage of these discounted prices, simply include a printout of this email with the submission form and legibly write 'email discount' on the payment check. The submission forms can be found here: http://www.longbeachfilmfestival.com/entry.htm All submissions must be received by August 15th, 2002. We look forward to receiving your work. Robin Duarte http://www.longbeachfilmfestival.com ------------------------------ Date: Sat, 20 Jul 2002 00:45:52 -0400 From: "Eric L. Howard" Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) At a certain time, now past, Michael L. Squires spake thusly: > > cvsup > > cd /usr/src > > Don't you need "mergemaster -p" here? normally yes...but I added the smmsp and mailnull users by hand since I knew I would need them to successfully buildworld. ~elh - -- Eric L. Howard e l h @ o u t r e a c h n e t w o r k s . c o m - ------------------------------------------------------------------------ www.OutreachNetworks.com 313.297.9900 - ------------------------------------------------------------------------ Advocate of the Theocratic Rule ------------------------------ Date: Sat, 20 Jul 2002 01:35:59 -0400 From: Scott Lambert Subject: Re: Enabling passive FTP on FreeBSD 4.5? On Fri, Jul 19, 2002 at 12:26:14PM -0400, Michael R. Wayne wrote: > Having recently fought IPFW on this, and having a hard time finding > actual firewall rules to make FTP work right on a server that > provides FTP access to the world, here is what we ended up with > which appears to properly permit active and passive FTP. > > # FTP/ftp > $fwcmd add 12501 pass tcp from any to ${ip} 20 setup # FTP-data > $fwcmd add 12505 pass tcp from any to ${ip} 21 setup keep-state > $fwcmd add 12507 pass tcp from any to ${ip} 49152-65535 setup # Passive FTP > > Watching the logs, people are managing to successfully ftp regularly. > > Yes, it's a hole. No, we don't like that last rule as someone > could remotely spawn a shell on one of those ports. But we see no > way around it as ftp access is a required service for the machine. Doesn't ipf with ipnat have the ability to watch the FTP control channel and figure out when and what port to allow through for a passive FTP data channel? It's been a while since I looked at this so I could be smoking crack. - -- Scott Lambert KC5MLE Unix SysAdmin lambert@lambertfam.org ------------------------------ End of stable-digest V5 #594 **************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with unsubscribe freebsd-stable-digest 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 19 22:42:25 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9EBC37B400 for ; Fri, 19 Jul 2002 22:42:22 -0700 (PDT) Received: from mail.lambertfam.org (www.lambertfam.org [216.223.196.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70A6843E42 for ; Fri, 19 Jul 2002 22:42:22 -0700 (PDT) (envelope-from lambert@lambertfam.org) Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.inch.com (Postfix) with ESMTP id 87FBB35168 for ; Sat, 20 Jul 2002 01:39:29 -0400 (EDT) Received: from laptop.lambertfam.org (unknown [10.1.0.2]) by mail.lambertfam.org (Postfix) with ESMTP id C562135107 for ; Sat, 20 Jul 2002 01:39:26 -0400 (EDT) Received: by laptop.lambertfam.org (Postfix, from userid 1000) id C37A228B09; Sat, 20 Jul 2002 01:42:16 -0400 (EDT) Date: Sat, 20 Jul 2002 01:42:16 -0400 From: Scott Lambert To: freebsd-stable@FreeBSD.ORG Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Message-ID: <20020720054216.GB3487@laptop.lambertfam.org> Reply-To: freebsd-stable@FreeBSD.ORG Mail-Followup-To: freebsd-stable@FreeBSD.ORG References: <3705740.1027062627@[192.168.1.2]> <20020719092530.C13778@outreachnetworks.com> <20020719100109.E13778@outreachnetworks.com> <3705740.1027062627@[192.168.1.2]> <5.1.1.6.2.20020719123557.041657f8@pop3s.schulte.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5.1.1.6.2.20020719123557.041657f8@pop3s.schulte.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jul 19, 2002 at 12:38:26PM -0500, Christopher Schulte wrote: > At 07:28 PM 7/19/2002 +0200, Steve O'Hara-Smith wrote: > > Is there any reason not to use this ? > > > > make kernel KERNCONF=YOUR_KERNEL_CONFIG_NAME > > That works just fine. The build|install targets were created for those who > wanted finer control of exactly what happens when. Such as when I build my > kernel and world, but wait until a later date to actually install them. Or when you have a build server and several servers that install from NFS mounts of /usr/src and /usr/obj. -- Scott Lambert KC5MLE Unix SysAdmin lambert@lambertfam.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 20 1:43: 7 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7906737B400 for ; Sat, 20 Jul 2002 01:43:05 -0700 (PDT) Received: from smtp1.wanadoo.nl (smtp1.wanadoo.nl [194.134.35.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0623843E31 for ; Sat, 20 Jul 2002 01:43:05 -0700 (PDT) (envelope-from steve@sohara.org) Received: from ams-gw.sohara.org (i0592.vwr.wanadoo.nl [194.134.210.83]) by smtp1.wanadoo.nl (Postfix) with SMTP id A250C5B1A8; Sat, 20 Jul 2002 10:43:01 +0200 (MEST) Date: Sat, 20 Jul 2002 10:42:57 +0200 From: Steve O'Hara-Smith To: Jonathan Chen Cc: craig@meoqu.gank.org, freebsd-stable@FreeBSD.ORG Subject: Re: Kernel config problem with 4.6-STABLE... [solution] Message-Id: <20020720104257.0b1d8dde.steve@sohara.org> In-Reply-To: <20020719221244.GE17899@grimoire.chen.org.nz> References: <5.1.0.14.0.20020717152215.00a79df0@dns1.popstick.com> <000601c22e72$58b76a80$fb00000a@promethium> <20020719195738.Y1494@shell.gsinet.sittig.org> <1027103476.19808.21.camel@owen1492.it.oot> <20020719221244.GE17899@grimoire.chen.org.nz> X-Mailer: Sylpheed version 0.8.0 (GTK+ 1.2.10; i386-portbld-freebsd4.6) X-Face: %]+HVL}K`P8>+8ZcY-WGHP6j@&mxMo9JH6_WdgIgUGH)JX/usO0%jy7T~IVgqjumD^OBqX,Kv^-GM6mlw(fI^$"QRKyZ$?xx/ Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 20 Jul 2002 10:12:44 +1200 Jonathan Chen wrote: JC> Last I heard, it's 'cos it requires a buildworld prior. If I have a JC> minimal system with kernel sources only, I don't want to have to do JC> that. I have run make kernel on boxes where buildworld has not run in moments of absent mindedness - it has always worked perfectly, of course the sources *must* match the installed system in this case. Question - is this supposed to work ? -- C:>WIN | Directable Mirrors The computer obeys and wins. |A Better Way To Focus The Sun You lose and Bill collects. | licenses available - see: | http://www.sohara.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 20 1:48:46 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54AC237B400 for ; Sat, 20 Jul 2002 01:48:44 -0700 (PDT) Received: from smtp1.wanadoo.nl (smtp1.wanadoo.nl [194.134.35.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id D430443E67 for ; Sat, 20 Jul 2002 01:48:43 -0700 (PDT) (envelope-from steve@sohara.org) Received: from ams-gw.sohara.org (p2549.vwr.wanadoo.nl [194.134.217.254]) by smtp1.wanadoo.nl (Postfix) with SMTP id 73EFA5B080; Sat, 20 Jul 2002 10:48:41 +0200 (MEST) Date: Sat, 20 Jul 2002 10:48:37 +0200 From: Steve O'Hara-Smith To: freebsd-stable@FreeBSD.ORG Cc: lambert@lambertfam.org Subject: Re: Problems building world (RELENG_4 and RELENG_4_6) Message-Id: <20020720104837.3bbb6322.steve@sohara.org> In-Reply-To: <20020720054216.GB3487@laptop.lambertfam.org> References: <3705740.1027062627@[192.168.1.2]> <20020719092530.C13778@outreachnetworks.com> <20020719100109.E13778@outreachnetworks.com> <3705740.1027062627@[192.168.1.2]> <5.1.1.6.2.20020719123557.041657f8@pop3s.schulte.org> <20020720054216.GB3487@laptop.lambertfam.org> X-Mailer: Sylpheed version 0.8.0 (GTK+ 1.2.10; i386-portbld-freebsd4.6) X-Face: %]+HVL}K`P8>+8ZcY-WGHP6j@&mxMo9JH6_WdgIgUGH)JX/usO0%jy7T~IVgqjumD^OBqX,Kv^-GM6mlw(fI^$"QRKyZ$?xx/ Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 20 Jul 2002 01:42:16 -0400 Scott Lambert wrote: SL> Or when you have a build server and several servers that install from SL> NFS mounts of /usr/src and /usr/obj. I do that :) Just set KERNCONF=thisbox kern1 kern2 kern3 ... INSTALLKERNEL=thisbox in make.conf on the build machine and set KERNCONF appropriatly on the others. One make kernel builds the lot and installs the right one :) -- C:>WIN | Directable Mirrors The computer obeys and wins. |A Better Way To Focus The Sun You lose and Bill collects. | licenses available - see: | http://www.sohara.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 20 2: 2:16 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED2EF37B400 for ; Sat, 20 Jul 2002 02:02:08 -0700 (PDT) Received: from omskmail.ru (omskmail.ru [195.162.49.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED6B043E64 for ; Sat, 20 Jul 2002 02:02:05 -0700 (PDT) (envelope-from boris_2000@omskmail.ru) Received: from omskmail.ru ([195.162.49.224]) by omskmail.ru (8.11.1/8.11.1) with ESMTP id g6K920w87809 for ; Sat, 20 Jul 2002 13:02:00 +0400 (MSD) (envelope-from boris_2000@omskmail.ru) Message-ID: <3D39505D.1000106@omskmail.ru> Date: Sat, 20 Jul 2002 15:58:21 +0400 From: Boris Reply-To: boris_2000@omskmail.ru, boris_2000@omskmail.ru User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0rc3) Gecko/20020524 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD-stable@FreeBSD.ORG Subject: Probmlems with buildworld Content-Type: multipart/mixed; boundary="------------020302010609040306050209" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------020302010609040306050209 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Hi! I have just cvsupted to FreeBSD 4.6-STABLE. But when I`m trying to use make buildworld I see the next: --------------------------------------------------------------^M >>> stage 2: cleaning up the object tree^M --------------------------------------------------------------^M cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj MACHINE_ARCH=i386 MACHINE=i386 OBJFORMAT_PATH=/usr/obj/usr/src/i386/u ===> share/info^M ===> include^M rm -f osreldate.h version vers.c ^M ===> include/rpcsvc^M rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnusers.h rquota.h rstat.h rwall.h sm_inter.h ===> include/rpcsvc^M ===> include/rpcsvc^M rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnusers.h rquota.h rstat.h rwall.h sm_inter.h ===> lib^M ===> lib/csu/i386-elf^M "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional (defined(SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator^M "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif^M "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator^M make: fatal errors encountered -- cannot continue^M *** Error code 1^M ^M Stop in /usr/src/lib.^M *** Error code 1^M ^M Stop in /usr/src.^M *** Error code 1^M ^M Stop in /usr/src.^M *** Error code 1^M ^M Stop in /usr/src.^M Script done on Sat Jul 20 15:18:27 2002 And when I`m trying to use make -j4 buildworld I see the next: see atachment As you can see the 1-st problem was scipted, but the new began. What`s going on? P.S:Sorry for my English. --------------020302010609040306050209 Content-Type: text/plain; name="out.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="out.txt" -------------------------------------------------------------- >>> stage 2: cleaning up the object tree -------------------------------------------------------------- cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj MACHINE_ARCH=i386 MACHINE=i386 OBJFORMAT_PATH=/usr/obj/usr/src/i386/usr/libexec PERL5LIB=/usr/obj/usr/src/i386/usr/libdata/perl/5.00503 GROFF_BIN_PATH=/usr/obj/usr/src/i386/usr/bin GROFF_FONT_PATH=/usr/obj/usr/src/i386/usr/share/groff_font GROFF_TMAC_PATH=/usr/obj/usr/src/i386/usr/share/tmac DESTDIR=/usr/obj/usr/src/i386 INSTALL="sh /usr/src/tools/install.sh" PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin make -f Makefile.inc1 par-cleandir ===> share/info ===> include ===> lib ===> bin ===> lib/csu/i386-elf "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional (defined(SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator make: fatal errors encountered -- cannot continue ===> bin/cat *** Error code 1 1 error rm -f osreldate.h version vers.c *** Error code 2 ===> include/rpcsvc ===> include/rpcsvc rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnusers.h rquota.h rstat.h rwall.h sm_inter.h spray.h yppasswd.h yp.h ypxfrd.h ypupdate_prot.h nis.h nis_cache.h nis_callback.h bootparam_prot.h crypt.h rm -f cat cat.o cat.1.gz cat.1.cat.gz rm -f .depend /usr/src/bin/cat/GPATH /usr/src/bin/cat/GRTAGS /usr/src/bin/cat/GSYMS /usr/src/bin/cat/GTAGS ===> bin/chio ===> include/rpcsvc rm -f chio chio.o chio.1.gz chio.1.cat.gz rm -f .depend /usr/src/bin/chio/GPATH /usr/src/bin/chio/GRTAGS /usr/src/bin/chio/GSYMS /usr/src/bin/chio/GTAGS rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnusers.h rquota.h rstat.h rwall.h sm_inter.h spray.h yppasswd.h yp.h ypxfrd.h ypupdate_prot.h nis.h nis_cache.h nis_callback.h bootparam_prot.h crypt.h ===> bin/chmod rm -f chmod chmod.o chmod.1.gz chmod.1.cat.gz rm -f .depend /usr/src/bin/chmod/GPATH /usr/src/bin/chmod/GRTAGS /usr/src/bin/chmod/GSYMS /usr/src/bin/chmod/GTAGS ===> bin/cp rm -f cp cp.o utils.o cp.1.gz cp.1.cat.gz rm -f .depend /usr/src/bin/cp/GPATH /usr/src/bin/cp/GRTAGS /usr/src/bin/cp/GSYMS /usr/src/bin/cp/GTAGS ===> bin/date rm -f date date.o netdate.o vary.o date.1.gz date.1.cat.gz rm -f .depend /usr/src/bin/date/GPATH /usr/src/bin/date/GRTAGS /usr/src/bin/date/GSYMS /usr/src/bin/date/GTAGS ===> bin/dd rm -f dd args.o conv.o conv_tab.o dd.o misc.o position.o dd.1.gz dd.1.cat.gz rm -f .depend /usr/src/bin/dd/GPATH /usr/src/bin/dd/GRTAGS /usr/src/bin/dd/GSYMS /usr/src/bin/dd/GTAGS ===> bin/df rm -f df df.o vfslist.o df.1.gz df.1.cat.gz rm -f .depend /usr/src/bin/df/GPATH /usr/src/bin/df/GRTAGS /usr/src/bin/df/GSYMS /usr/src/bin/df/GTAGS ===> bin/domainname rm -f domainname domainname.o domainname.1.gz domainname.1.cat.gz rm -f .depend /usr/src/bin/domainname/GPATH /usr/src/bin/domainname/GRTAGS /usr/src/bin/domainname/GSYMS /usr/src/bin/domainname/GTAGS ===> bin/echo rm -f echo echo.o echo.1.gz echo.1.cat.gz rm -f .depend /usr/src/bin/echo/GPATH /usr/src/bin/echo/GRTAGS /usr/src/bin/echo/GSYMS /usr/src/bin/echo/GTAGS ===> bin/ed rm -f ed buf.o cbc.o glbl.o io.o main.o re.o sub.o undo.o ed.1.gz ed.1.cat.gz rm -f .depend /usr/src/bin/ed/GPATH /usr/src/bin/ed/GRTAGS /usr/src/bin/ed/GSYMS /usr/src/bin/ed/GTAGS ===> bin/expr rm -f expr expr.o expr.1.gz expr.1.cat.gz expr.c rm -f .depend /usr/src/bin/expr/GPATH /usr/src/bin/expr/GRTAGS /usr/src/bin/expr/GSYMS /usr/src/bin/expr/GTAGS ===> bin/hostname rm -f hostname hostname.o hostname.1.gz hostname.1.cat.gz rm -f .depend /usr/src/bin/hostname/GPATH /usr/src/bin/hostname/GRTAGS /usr/src/bin/hostname/GSYMS /usr/src/bin/hostname/GTAGS ===> bin/kill rm -f kill kill.o kill.1.gz kill.1.cat.gz rm -f .depend /usr/src/bin/kill/GPATH /usr/src/bin/kill/GRTAGS /usr/src/bin/kill/GSYMS /usr/src/bin/kill/GTAGS ===> bin/ln rm -f ln ln.o ln.1.gz symlink.7.gz ln.1.cat.gz symlink.7.cat.gz rm -f .depend /usr/src/bin/ln/GPATH /usr/src/bin/ln/GRTAGS /usr/src/bin/ln/GSYMS /usr/src/bin/ln/GTAGS ===> bin/ls rm -f ls cmp.o ls.o print.o util.o ls.1.gz ls.1.cat.gz rm -f .depend /usr/src/bin/ls/GPATH /usr/src/bin/ls/GRTAGS /usr/src/bin/ls/GSYMS /usr/src/bin/ls/GTAGS ===> bin/mkdir rm -f mkdir mkdir.o mkdir.1.gz mkdir.1.cat.gz rm -f .depend /usr/src/bin/mkdir/GPATH /usr/src/bin/mkdir/GRTAGS /usr/src/bin/mkdir/GSYMS /usr/src/bin/mkdir/GTAGS ===> bin/mv rm -f mv mv.o mv.1.gz mv.1.cat.gz rm -f .depend /usr/src/bin/mv/GPATH /usr/src/bin/mv/GRTAGS /usr/src/bin/mv/GSYMS /usr/src/bin/mv/GTAGS ===> bin/pax rm -f pax ar_io.o ar_subs.o buf_subs.o cache.o cpio.o file_subs.o ftree.o gen_subs.o getoldopt.o options.o pat_rep.o pax.o sel_subs.o tables.o tar.o tty_subs.o pax.1.gz pax.1.cat.gz rm -f .depend /usr/src/bin/pax/GPATH /usr/src/bin/pax/GRTAGS /usr/src/bin/pax/GSYMS /usr/src/bin/pax/GTAGS ===> bin/ps rm -f ps fmt.o keyword.o nlist.o print.o ps.o ps.1.gz ps.1.cat.gz rm -f .depend /usr/src/bin/ps/GPATH /usr/src/bin/ps/GRTAGS /usr/src/bin/ps/GSYMS /usr/src/bin/ps/GTAGS ===> bin/pwd rm -f pwd pwd.o pwd.1.gz realpath.1.gz pwd.1.cat.gz realpath.1.cat.gz rm -f .depend /usr/src/bin/pwd/GPATH /usr/src/bin/pwd/GRTAGS /usr/src/bin/pwd/GSYMS /usr/src/bin/pwd/GTAGS ===> bin/rcp rm -f rcp rcp.o util.o rcp.1.gz rcp.1.cat.gz rm -f .depend /usr/src/bin/rcp/GPATH /usr/src/bin/rcp/GRTAGS /usr/src/bin/rcp/GSYMS /usr/src/bin/rcp/GTAGS ===> bin/rm rm -f rm rm.o rm.1.gz rm.1.cat.gz rm -f .depend /usr/src/bin/rm/GPATH /usr/src/bin/rm/GRTAGS /usr/src/bin/rm/GSYMS /usr/src/bin/rm/GTAGS ===> bin/rmdir rm -f rmdir rmdir.o rmdir.1.gz rmdir.1.cat.gz rm -f .depend /usr/src/bin/rmdir/GPATH /usr/src/bin/rmdir/GRTAGS /usr/src/bin/rmdir/GSYMS /usr/src/bin/rmdir/GTAGS ===> bin/sh rm -f mkinit mkinit.o mknodes mknodes.o mksyntax mksyntax.o builtins.c init.c nodes.c syntax.c builtins.h nodes.h syntax.h token.h y.tab.h sh alias.o arith.o arith_lex.o cd.o echo.o error.o eval.o exec.o expand.o histedit.o input.o jobs.o mail.o main.o memalloc.o miscbltin.o mystring.o options.o output.o parser.o printf.o redir.o show.o test.o trap.o var.o builtins.o init.o nodes.o syntax.o sh.1.gz sh.1.cat.gz arith_lex.c arith.c y.tab.c y.tab.h rm -f .depend /usr/src/bin/sh/GPATH /usr/src/bin/sh/GRTAGS /usr/src/bin/sh/GSYMS /usr/src/bin/sh/GTAGS ===> bin/sleep rm -f sleep sleep.o sleep.1.gz sleep.1.cat.gz rm -f .depend /usr/src/bin/sleep/GPATH /usr/src/bin/sleep/GRTAGS /usr/src/bin/sleep/GSYMS /usr/src/bin/sleep/GTAGS ===> bin/stty rm -f stty cchar.o gfmt.o key.o modes.o print.o stty.o util.o stty.1.gz stty.1.cat.gz rm -f .depend /usr/src/bin/stty/GPATH /usr/src/bin/stty/GRTAGS /usr/src/bin/stty/GSYMS /usr/src/bin/stty/GTAGS ===> bin/sync rm -f sync sync.o sync.8.gz sync.8.cat.gz rm -f .depend /usr/src/bin/sync/GPATH /usr/src/bin/sync/GRTAGS /usr/src/bin/sync/GSYMS /usr/src/bin/sync/GTAGS ===> bin/test rm -f test test.o test.1.gz test.1.cat.gz rm -f .depend /usr/src/bin/test/GPATH /usr/src/bin/test/GRTAGS /usr/src/bin/test/GSYMS /usr/src/bin/test/GTAGS ===> bin/csh rm -f ed.defns.h sh.err.h tc.const.h tc.defs.c gethost csh.1 csh sh.o sh.dir.o sh.dol.o sh.err.o sh.exec.o sh.char.o sh.exp.o sh.file.o sh.func.o sh.glob.o sh.hist.o sh.init.o sh.lex.o sh.misc.o sh.parse.o sh.print.o sh.proc.o sh.sem.o sh.set.o sh.time.o glob.o mi.termios.o tw.help.o tw.init.o tw.parse.o tw.spell.o tw.comp.o tw.color.o ed.chared.o ed.defns.o ed.init.o ed.inputl.o ed.refresh.o ed.screen.o ed.xmap.o ed.term.o tc.alloc.o tc.bind.o tc.const.o tc.disc.o tc.func.o tc.os.o tc.printf.o tc.prompt.o tc.sched.o tc.sig.o tc.str.o tc.vers.o tc.who.o tc.defs.o csh.1.gz csh.1.cat.gz ===> bin/csh/nls rm -f .depend /usr/src/bin/csh/GPATH /usr/src/bin/csh/GRTAGS /usr/src/bin/csh/GSYMS /usr/src/bin/csh/GTAGS ===> bin/csh/nls ===> bin/csh/nls/finnish ===> bin/csh/nls/finnish rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/french ===> bin/csh/nls/german ===> bin/csh/nls/french ===> bin/csh/nls/greek rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/italian ===> bin/csh/nls/ja ===> bin/csh/nls/german ===> bin/csh/nls/russian rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/spanish ===> bin/csh/nls/ukrainian ===> bin/csh/nls/greek rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/italian rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/ja rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/russian rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/spanish rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/ukrainian rm -f tcsh.cat tcsh.msg ===> bin/csh/nls ===> bin/csh/nls/finnish rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/french rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/german rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/greek rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/italian rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/ja rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/russian rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/spanish rm -f tcsh.cat tcsh.msg ===> bin/csh/nls/ukrainian rm -f tcsh.cat tcsh.msg ===> bin/rmail rm -f sm_os.h rmail rmail.o rmail.8.gz rmail.8.cat.gz rm -f .depend /usr/src/bin/rmail/GPATH /usr/src/bin/rmail/GRTAGS /usr/src/bin/rmail/GSYMS /usr/src/bin/rmail/GTAGS 1 error *** Error code 2 1 error *** Error code 2 1 error # exit exit Script done on Sat Jul 20 15:38:09 2002 --------------020302010609040306050209-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 2:16:29 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EB4437B400 for ; Sat, 20 Jul 2002 02:16:08 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24A5A43E31 for ; Sat, 20 Jul 2002 02:16:02 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g6K9Fap05338; Sat, 20 Jul 2002 12:15:36 +0300 (EEST) (envelope-from ru) Date: Sat, 20 Jul 2002 12:15:36 +0300 From: Ruslan Ermilov To: peter.lai@uconn.edu, boris_2000@omskmail.ru Cc: freebsd-stable@FreeBSD.ORG Subject: Re: make buildworld breaks Message-ID: <20020720091536.GC2757@sunbay.com> References: <3D39505D.1000106@omskmail.ru> <20020719180637.A56061@cowbert.2y.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="m51xatjYGsM+13rf" Content-Disposition: inline In-Reply-To: <3D39505D.1000106@omskmail.ru> <20020719180637.A56061@cowbert.2y.net> User-Agent: Mutt/1.3.99i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --m51xatjYGsM+13rf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Strange enough. I tested all these changes with ``make release'' and it completed successfully. I will look into it RSN. On Fri, Jul 19, 2002 at 06:06:37PM -0400, Peter C. Lai wrote: > I cvsup'd today at around 6pm EDT (2200 UTC) and upon making > buildworld ran into:=20 >=20 > =3D=3D=3D> lib/csu/i386-elf > "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional (defined(S= HLIB_NAME) && ${SHLIB_NAME:M*.so.*}) > "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator > "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif > "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator > make: fatal errors encountered -- cannot continue > *** Error code 1 >=20 > I'm trying to upgrade from 4.5-STABLE to 4.6-STABLE. > Any clues? >=20 > --=20 > Peter C. Lai > University of Connecticut > Dept. of Molecular and Cell Biology | Undergraduate Research Assistant > Yale University School of Medicine > Center for Medical Informatics | Research Assistant > http://cowbert.2y.net/ >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message On Sat, Jul 20, 2002 at 03:58:21PM +0400, Boris wrote: > Hi! > I have just cvsupted to FreeBSD 4.6-STABLE. But when I`m trying to use= =20 > make buildworld I see the next: > --------------------------------------------------------------^M > >>> stage 2: cleaning up the object tree^M > --------------------------------------------------------------^M > cd /usr/src; MAKEOBJDIRPREFIX=3D/usr/obj MACHINE_ARCH=3Di386 MACHINE=3D= i386 =20 > OBJFORMAT_PATH=3D/usr/obj/usr/src/i386/u > =3D=3D=3D> share/info^M > =3D=3D=3D> include^M > rm -f osreldate.h version vers.c ^M > =3D=3D=3D> include/rpcsvc^M > rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h=20 > rnusers.h rquota.h rstat.h rwall.h sm_inter.h > =3D=3D=3D> include/rpcsvc^M > =3D=3D=3D> include/rpcsvc^M > rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h=20 > rnusers.h rquota.h rstat.h rwall.h sm_inter.h > =3D=3D=3D> lib^M > =3D=3D=3D> lib/csu/i386-elf^M > "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional=20 > (defined(SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) > "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator^M > "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif^M > "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator^M > make: fatal errors encountered -- cannot continue^M > *** Error code 1^M > ^M > Stop in /usr/src/lib.^M > *** Error code 1^M > ^M > Stop in /usr/src.^M > *** Error code 1^M > ^M > Stop in /usr/src.^M > *** Error code 1^M > ^M > Stop in /usr/src.^M >=20 > Script done on Sat Jul 20 15:18:27 2002 >=20 > And when I`m trying to use make -j4 buildworld I see the next: > see atachment >=20 > As you can see the 1-st problem was scipted, but the new began. > What`s going on? > P.S:Sorry for my English. >=20 >=20 > -------------------------------------------------------------- > >>> stage 2: cleaning up the object tree > -------------------------------------------------------------- > cd /usr/src; MAKEOBJDIRPREFIX=3D/usr/obj MACHINE_ARCH=3Di386 MACHINE=3D= i386 OBJFORMAT_PATH=3D/usr/obj/usr/src/i386/usr/libexec PERL5LIB=3D/usr/o= bj/usr/src/i386/usr/libdata/perl/5.00503 GROFF_BIN_PATH=3D/usr/obj/usr/src= /i386/usr/bin GROFF_FONT_PATH=3D/usr/obj/usr/src/i386/usr/share/groff_font= GROFF_TMAC_PATH=3D/usr/obj/usr/src/i386/usr/share/tmac DESTDIR=3D/usr/ob= j/usr/src/i386 INSTALL=3D"sh /usr/src/tools/install.sh" PATH=3D/usr/obj/u= sr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/us= r/games:/sbin:/bin:/usr/sbin:/usr/bin make -f Makefile.inc1 par-cleandir > =3D=3D=3D> share/info > =3D=3D=3D> include > =3D=3D=3D> lib > =3D=3D=3D> bin > =3D=3D=3D> lib/csu/i386-elf > "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional (defined(S= HLIB_NAME) && ${SHLIB_NAME:M*.so.*}) > "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator > "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif > "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator > make: fatal errors encountered -- cannot continue > =3D=3D=3D> bin/cat > *** Error code 1 > 1 error > rm -f osreldate.h version vers.c =20 > *** Error code 2 > =3D=3D=3D> include/rpcsvc > =3D=3D=3D> include/rpcsvc > rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnusers.h= rquota.h rstat.h rwall.h sm_inter.h spray.h yppasswd.h yp.h ypxfrd.h ypu= pdate_prot.h nis.h nis_cache.h nis_callback.h bootparam_prot.h crypt.h =20 > rm -f cat cat.o cat.1.gz cat.1.cat.gz > rm -f .depend /usr/src/bin/cat/GPATH /usr/src/bin/cat/GRTAGS /usr/src/bi= n/cat/GSYMS /usr/src/bin/cat/GTAGS > =3D=3D=3D> bin/chio > =3D=3D=3D> include/rpcsvc > rm -f chio chio.o chio.1.gz chio.1.cat.gz > rm -f .depend /usr/src/bin/chio/GPATH /usr/src/bin/chio/GRTAGS /usr/src/= bin/chio/GSYMS /usr/src/bin/chio/GTAGS > rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnusers.h= rquota.h rstat.h rwall.h sm_inter.h spray.h yppasswd.h yp.h ypxfrd.h ypu= pdate_prot.h nis.h nis_cache.h nis_callback.h bootparam_prot.h crypt.h =20 > =3D=3D=3D> bin/chmod > rm -f chmod chmod.o chmod.1.gz chmod.1.cat.gz > rm -f .depend /usr/src/bin/chmod/GPATH /usr/src/bin/chmod/GRTAGS /usr/sr= c/bin/chmod/GSYMS /usr/src/bin/chmod/GTAGS > =3D=3D=3D> bin/cp > rm -f cp cp.o utils.o cp.1.gz cp.1.cat.gz > rm -f .depend /usr/src/bin/cp/GPATH /usr/src/bin/cp/GRTAGS /usr/src/bin/= cp/GSYMS /usr/src/bin/cp/GTAGS > =3D=3D=3D> bin/date > rm -f date date.o netdate.o vary.o date.1.gz date.1.cat.gz > rm -f .depend /usr/src/bin/date/GPATH /usr/src/bin/date/GRTAGS /usr/src/= bin/date/GSYMS /usr/src/bin/date/GTAGS > =3D=3D=3D> bin/dd > rm -f dd args.o conv.o conv_tab.o dd.o misc.o position.o dd.1.gz dd.1.cat= .gz > rm -f .depend /usr/src/bin/dd/GPATH /usr/src/bin/dd/GRTAGS /usr/src/bin/= dd/GSYMS /usr/src/bin/dd/GTAGS > =3D=3D=3D> bin/df > rm -f df df.o vfslist.o df.1.gz df.1.cat.gz > rm -f .depend /usr/src/bin/df/GPATH /usr/src/bin/df/GRTAGS /usr/src/bin/= df/GSYMS /usr/src/bin/df/GTAGS > =3D=3D=3D> bin/domainname > rm -f domainname domainname.o domainname.1.gz domainname.1.cat.gz > rm -f .depend /usr/src/bin/domainname/GPATH /usr/src/bin/domainname/GRTAG= S /usr/src/bin/domainname/GSYMS /usr/src/bin/domainname/GTAGS > =3D=3D=3D> bin/echo > rm -f echo echo.o echo.1.gz echo.1.cat.gz > rm -f .depend /usr/src/bin/echo/GPATH /usr/src/bin/echo/GRTAGS /usr/src/= bin/echo/GSYMS /usr/src/bin/echo/GTAGS > =3D=3D=3D> bin/ed > rm -f ed buf.o cbc.o glbl.o io.o main.o re.o sub.o undo.o ed.1.gz ed.1.ca= t.gz > rm -f .depend /usr/src/bin/ed/GPATH /usr/src/bin/ed/GRTAGS /usr/src/bin/= ed/GSYMS /usr/src/bin/ed/GTAGS > =3D=3D=3D> bin/expr > rm -f expr expr.o expr.1.gz expr.1.cat.gz expr.c > rm -f .depend /usr/src/bin/expr/GPATH /usr/src/bin/expr/GRTAGS /usr/src/= bin/expr/GSYMS /usr/src/bin/expr/GTAGS > =3D=3D=3D> bin/hostname > rm -f hostname hostname.o hostname.1.gz hostname.1.cat.gz > rm -f .depend /usr/src/bin/hostname/GPATH /usr/src/bin/hostname/GRTAGS /= usr/src/bin/hostname/GSYMS /usr/src/bin/hostname/GTAGS > =3D=3D=3D> bin/kill > rm -f kill kill.o kill.1.gz kill.1.cat.gz > rm -f .depend /usr/src/bin/kill/GPATH /usr/src/bin/kill/GRTAGS /usr/src/= bin/kill/GSYMS /usr/src/bin/kill/GTAGS > =3D=3D=3D> bin/ln > rm -f ln ln.o ln.1.gz symlink.7.gz ln.1.cat.gz symlink.7.cat.gz > rm -f .depend /usr/src/bin/ln/GPATH /usr/src/bin/ln/GRTAGS /usr/src/bin/= ln/GSYMS /usr/src/bin/ln/GTAGS > =3D=3D=3D> bin/ls > rm -f ls cmp.o ls.o print.o util.o ls.1.gz ls.1.cat.gz > rm -f .depend /usr/src/bin/ls/GPATH /usr/src/bin/ls/GRTAGS /usr/src/bin/= ls/GSYMS /usr/src/bin/ls/GTAGS > =3D=3D=3D> bin/mkdir > rm -f mkdir mkdir.o mkdir.1.gz mkdir.1.cat.gz > rm -f .depend /usr/src/bin/mkdir/GPATH /usr/src/bin/mkdir/GRTAGS /usr/sr= c/bin/mkdir/GSYMS /usr/src/bin/mkdir/GTAGS > =3D=3D=3D> bin/mv > rm -f mv mv.o mv.1.gz mv.1.cat.gz > rm -f .depend /usr/src/bin/mv/GPATH /usr/src/bin/mv/GRTAGS /usr/src/bin/= mv/GSYMS /usr/src/bin/mv/GTAGS > =3D=3D=3D> bin/pax > rm -f pax ar_io.o ar_subs.o buf_subs.o cache.o cpio.o file_subs.o ftree.o= gen_subs.o getoldopt.o options.o pat_rep.o pax.o sel_subs.o tables.o tar.o= tty_subs.o pax.1.gz pax.1.cat.gz > rm -f .depend /usr/src/bin/pax/GPATH /usr/src/bin/pax/GRTAGS /usr/src/bi= n/pax/GSYMS /usr/src/bin/pax/GTAGS > =3D=3D=3D> bin/ps > rm -f ps fmt.o keyword.o nlist.o print.o ps.o ps.1.gz ps.1.cat.gz > rm -f .depend /usr/src/bin/ps/GPATH /usr/src/bin/ps/GRTAGS /usr/src/bin/= ps/GSYMS /usr/src/bin/ps/GTAGS > =3D=3D=3D> bin/pwd > rm -f pwd pwd.o pwd.1.gz realpath.1.gz pwd.1.cat.gz realpath.1.cat.gz > rm -f .depend /usr/src/bin/pwd/GPATH /usr/src/bin/pwd/GRTAGS /usr/src/bi= n/pwd/GSYMS /usr/src/bin/pwd/GTAGS > =3D=3D=3D> bin/rcp > rm -f rcp rcp.o util.o rcp.1.gz rcp.1.cat.gz > rm -f .depend /usr/src/bin/rcp/GPATH /usr/src/bin/rcp/GRTAGS /usr/src/bi= n/rcp/GSYMS /usr/src/bin/rcp/GTAGS > =3D=3D=3D> bin/rm > rm -f rm rm.o rm.1.gz rm.1.cat.gz > rm -f .depend /usr/src/bin/rm/GPATH /usr/src/bin/rm/GRTAGS /usr/src/bin/= rm/GSYMS /usr/src/bin/rm/GTAGS > =3D=3D=3D> bin/rmdir > rm -f rmdir rmdir.o rmdir.1.gz rmdir.1.cat.gz > rm -f .depend /usr/src/bin/rmdir/GPATH /usr/src/bin/rmdir/GRTAGS /usr/sr= c/bin/rmdir/GSYMS /usr/src/bin/rmdir/GTAGS > =3D=3D=3D> bin/sh > rm -f mkinit mkinit.o mknodes mknodes.o mksyntax mksyntax.o builtins.c i= nit.c nodes.c syntax.c builtins.h nodes.h syntax.h token.h y.tab.h sh alias= .o arith.o arith_lex.o cd.o echo.o error.o eval.o exec.o expand.o histedit.= o input.o jobs.o mail.o main.o memalloc.o miscbltin.o mystring.o options.o = output.o parser.o printf.o redir.o show.o test.o trap.o var.o builtins.o in= it.o nodes.o syntax.o sh.1.gz sh.1.cat.gz arith_lex.c arith.c y.tab.c y.tab= .h > rm -f .depend /usr/src/bin/sh/GPATH /usr/src/bin/sh/GRTAGS /usr/src/bin/= sh/GSYMS /usr/src/bin/sh/GTAGS > =3D=3D=3D> bin/sleep > rm -f sleep sleep.o sleep.1.gz sleep.1.cat.gz > rm -f .depend /usr/src/bin/sleep/GPATH /usr/src/bin/sleep/GRTAGS /usr/sr= c/bin/sleep/GSYMS /usr/src/bin/sleep/GTAGS > =3D=3D=3D> bin/stty > rm -f stty cchar.o gfmt.o key.o modes.o print.o stty.o util.o stty.1.gz s= tty.1.cat.gz > rm -f .depend /usr/src/bin/stty/GPATH /usr/src/bin/stty/GRTAGS /usr/src/= bin/stty/GSYMS /usr/src/bin/stty/GTAGS > =3D=3D=3D> bin/sync > rm -f sync sync.o sync.8.gz sync.8.cat.gz > rm -f .depend /usr/src/bin/sync/GPATH /usr/src/bin/sync/GRTAGS /usr/src/= bin/sync/GSYMS /usr/src/bin/sync/GTAGS > =3D=3D=3D> bin/test > rm -f test test.o test.1.gz test.1.cat.gz > rm -f .depend /usr/src/bin/test/GPATH /usr/src/bin/test/GRTAGS /usr/src/= bin/test/GSYMS /usr/src/bin/test/GTAGS > =3D=3D=3D> bin/csh > rm -f ed.defns.h sh.err.h tc.const.h tc.defs.c gethost csh.1 csh sh.o sh.= dir.o sh.dol.o sh.err.o sh.exec.o sh.char.o sh.exp.o sh.file.o sh.func.o sh= .glob.o sh.hist.o sh.init.o sh.lex.o sh.misc.o sh.parse.o sh.print.o sh.pro= c.o sh.sem.o sh.set.o sh.time.o glob.o mi.termios.o tw.help.o tw.init.o tw.= parse.o tw.spell.o tw.comp.o tw.color.o ed.chared.o ed.defns.o ed.init.o ed= .inputl.o ed.refresh.o ed.screen.o ed.xmap.o ed.term.o tc.alloc.o tc.bind.o= tc.const.o tc.disc.o tc.func.o tc.os.o tc.printf.o tc.prompt.o tc.sched.o = tc.sig.o tc.str.o tc.vers.o tc.who.o tc.defs.o csh.1.gz csh.1.cat.gz > =3D=3D=3D> bin/csh/nls > rm -f .depend /usr/src/bin/csh/GPATH /usr/src/bin/csh/GRTAGS /usr/src/bi= n/csh/GSYMS /usr/src/bin/csh/GTAGS > =3D=3D=3D> bin/csh/nls > =3D=3D=3D> bin/csh/nls/finnish > =3D=3D=3D> bin/csh/nls/finnish > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/french > =3D=3D=3D> bin/csh/nls/german > =3D=3D=3D> bin/csh/nls/french > =3D=3D=3D> bin/csh/nls/greek > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/italian > =3D=3D=3D> bin/csh/nls/ja > =3D=3D=3D> bin/csh/nls/german > =3D=3D=3D> bin/csh/nls/russian > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/spanish > =3D=3D=3D> bin/csh/nls/ukrainian > =3D=3D=3D> bin/csh/nls/greek > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/italian > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/ja > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/russian > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/spanish > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/ukrainian > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls > =3D=3D=3D> bin/csh/nls/finnish > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/french > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/german > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/greek > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/italian > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/ja > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/russian > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/spanish > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/csh/nls/ukrainian > rm -f tcsh.cat tcsh.msg =20 > =3D=3D=3D> bin/rmail > rm -f sm_os.h rmail rmail.o rmail.8.gz rmail.8.cat.gz > rm -f .depend /usr/src/bin/rmail/GPATH /usr/src/bin/rmail/GRTAGS /usr/sr= c/bin/rmail/GSYMS /usr/src/bin/rmail/GTAGS > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > # exit >=20 > exit >=20 > Script done on Sat Jul 20 15:38:09 2002 >=20 --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --m51xatjYGsM+13rf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9OSo4Ukv4P6juNwoRAsIDAKCGbxcaeYa00K1UNY8doBZ8X22LEwCffa1A N83YrY3hStupoMhh3E/GjYw= =nAlJ -----END PGP SIGNATURE----- --m51xatjYGsM+13rf-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 2:28:16 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FD9F37B400 for ; Sat, 20 Jul 2002 02:28:05 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABAC643E42 for ; Sat, 20 Jul 2002 02:27:59 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g6K9Rcw06498; Sat, 20 Jul 2002 12:27:38 +0300 (EEST) (envelope-from ru) Date: Sat, 20 Jul 2002 12:27:37 +0300 From: Ruslan Ermilov To: peter.lai@uconn.edu, boris_2000@omskmail.ru Cc: freebsd-stable@FreeBSD.ORG Subject: Re: make buildworld breaks Message-ID: <20020720092737.GA5996@sunbay.com> References: <3D39505D.1000106@omskmail.ru> <20020719180637.A56061@cowbert.2y.net> <20020720091536.GC2757@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mP3DRpeJDSE+ciuQ" Content-Disposition: inline In-Reply-To: <20020720091536.GC2757@sunbay.com> User-Agent: Mutt/1.3.99i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --mP3DRpeJDSE+ciuQ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jul 20, 2002 at 12:15:36PM +0300, Ruslan Ermilov wrote: > Strange enough. I tested all these changes with ``make release'' > and it completed successfully. I will look into it RSN. >=20 It turned out to be a problem with make(1). Recent versions of make(1) do not exhibit it. I will follow up shortly. > On Fri, Jul 19, 2002 at 06:06:37PM -0400, Peter C. Lai wrote: > > I cvsup'd today at around 6pm EDT (2200 UTC) and upon making > > buildworld ran into:=20 > >=20 > > =3D=3D=3D> lib/csu/i386-elf > > "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional (defined= (SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) > > "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator > > "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif > > "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator > > make: fatal errors encountered -- cannot continue > > *** Error code 1 > >=20 > > I'm trying to upgrade from 4.5-STABLE to 4.6-STABLE. > > Any clues? > >=20 > > --=20 > > Peter C. Lai > > University of Connecticut > > Dept. of Molecular and Cell Biology | Undergraduate Research Assistant > > Yale University School of Medicine > > Center for Medical Informatics | Research Assistant > > http://cowbert.2y.net/ > >=20 > >=20 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message >=20 > On Sat, Jul 20, 2002 at 03:58:21PM +0400, Boris wrote: > > Hi! > > I have just cvsupted to FreeBSD 4.6-STABLE. But when I`m trying to use= =20 > > make buildworld I see the next: > > --------------------------------------------------------------^M > > >>> stage 2: cleaning up the object tree^M > > --------------------------------------------------------------^M > > cd /usr/src; MAKEOBJDIRPREFIX=3D/usr/obj MACHINE_ARCH=3Di386 MACHINE= =3Di386 =20 > > OBJFORMAT_PATH=3D/usr/obj/usr/src/i386/u > > =3D=3D=3D> share/info^M > > =3D=3D=3D> include^M > > rm -f osreldate.h version vers.c ^M > > =3D=3D=3D> include/rpcsvc^M > > rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h=20 > > rnusers.h rquota.h rstat.h rwall.h sm_inter.h > > =3D=3D=3D> include/rpcsvc^M > > =3D=3D=3D> include/rpcsvc^M > > rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h=20 > > rnusers.h rquota.h rstat.h rwall.h sm_inter.h > > =3D=3D=3D> lib^M > > =3D=3D=3D> lib/csu/i386-elf^M > > "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional=20 > > (defined(SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) > > "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator^M > > "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif^M > > "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator^M > > make: fatal errors encountered -- cannot continue^M > > *** Error code 1^M > > ^M > > Stop in /usr/src/lib.^M > > *** Error code 1^M > > ^M > > Stop in /usr/src.^M > > *** Error code 1^M > > ^M > > Stop in /usr/src.^M > > *** Error code 1^M > > ^M > > Stop in /usr/src.^M > >=20 > > Script done on Sat Jul 20 15:18:27 2002 > >=20 > > And when I`m trying to use make -j4 buildworld I see the next: > > see atachment > >=20 > > As you can see the 1-st problem was scipted, but the new began. > > What`s going on? > > P.S:Sorry for my English. > >=20 >=20 > >=20 > > -------------------------------------------------------------- > > >>> stage 2: cleaning up the object tree > > -------------------------------------------------------------- > > cd /usr/src; MAKEOBJDIRPREFIX=3D/usr/obj MACHINE_ARCH=3Di386 MACHINE= =3Di386 OBJFORMAT_PATH=3D/usr/obj/usr/src/i386/usr/libexec PERL5LIB=3D/us= r/obj/usr/src/i386/usr/libdata/perl/5.00503 GROFF_BIN_PATH=3D/usr/obj/usr/= src/i386/usr/bin GROFF_FONT_PATH=3D/usr/obj/usr/src/i386/usr/share/groff_f= ont GROFF_TMAC_PATH=3D/usr/obj/usr/src/i386/usr/share/tmac DESTDIR=3D/usr= /obj/usr/src/i386 INSTALL=3D"sh /usr/src/tools/install.sh" PATH=3D/usr/ob= j/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386= /usr/games:/sbin:/bin:/usr/sbin:/usr/bin make -f Makefile.inc1 par-cleandir > > =3D=3D=3D> share/info > > =3D=3D=3D> include > > =3D=3D=3D> lib > > =3D=3D=3D> bin > > =3D=3D=3D> lib/csu/i386-elf > > "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional (defined= (SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) > > "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator > > "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif > > "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator > > make: fatal errors encountered -- cannot continue > > =3D=3D=3D> bin/cat > > *** Error code 1 > > 1 error > > rm -f osreldate.h version vers.c =20 > > *** Error code 2 > > =3D=3D=3D> include/rpcsvc > > =3D=3D=3D> include/rpcsvc > > rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnusers= .h rquota.h rstat.h rwall.h sm_inter.h spray.h yppasswd.h yp.h ypxfrd.h y= pupdate_prot.h nis.h nis_cache.h nis_callback.h bootparam_prot.h crypt.h = =20 > > rm -f cat cat.o cat.1.gz cat.1.cat.gz > > rm -f .depend /usr/src/bin/cat/GPATH /usr/src/bin/cat/GRTAGS /usr/src/= bin/cat/GSYMS /usr/src/bin/cat/GTAGS > > =3D=3D=3D> bin/chio > > =3D=3D=3D> include/rpcsvc > > rm -f chio chio.o chio.1.gz chio.1.cat.gz > > rm -f .depend /usr/src/bin/chio/GPATH /usr/src/bin/chio/GRTAGS /usr/sr= c/bin/chio/GSYMS /usr/src/bin/chio/GTAGS > > rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnusers= .h rquota.h rstat.h rwall.h sm_inter.h spray.h yppasswd.h yp.h ypxfrd.h y= pupdate_prot.h nis.h nis_cache.h nis_callback.h bootparam_prot.h crypt.h = =20 > > =3D=3D=3D> bin/chmod > > rm -f chmod chmod.o chmod.1.gz chmod.1.cat.gz > > rm -f .depend /usr/src/bin/chmod/GPATH /usr/src/bin/chmod/GRTAGS /usr/= src/bin/chmod/GSYMS /usr/src/bin/chmod/GTAGS > > =3D=3D=3D> bin/cp > > rm -f cp cp.o utils.o cp.1.gz cp.1.cat.gz > > rm -f .depend /usr/src/bin/cp/GPATH /usr/src/bin/cp/GRTAGS /usr/src/bi= n/cp/GSYMS /usr/src/bin/cp/GTAGS > > =3D=3D=3D> bin/date > > rm -f date date.o netdate.o vary.o date.1.gz date.1.cat.gz > > rm -f .depend /usr/src/bin/date/GPATH /usr/src/bin/date/GRTAGS /usr/sr= c/bin/date/GSYMS /usr/src/bin/date/GTAGS > > =3D=3D=3D> bin/dd > > rm -f dd args.o conv.o conv_tab.o dd.o misc.o position.o dd.1.gz dd.1.c= at.gz > > rm -f .depend /usr/src/bin/dd/GPATH /usr/src/bin/dd/GRTAGS /usr/src/bi= n/dd/GSYMS /usr/src/bin/dd/GTAGS > > =3D=3D=3D> bin/df > > rm -f df df.o vfslist.o df.1.gz df.1.cat.gz > > rm -f .depend /usr/src/bin/df/GPATH /usr/src/bin/df/GRTAGS /usr/src/bi= n/df/GSYMS /usr/src/bin/df/GTAGS > > =3D=3D=3D> bin/domainname > > rm -f domainname domainname.o domainname.1.gz domainname.1.cat.gz > > rm -f .depend /usr/src/bin/domainname/GPATH /usr/src/bin/domainname/GRT= AGS /usr/src/bin/domainname/GSYMS /usr/src/bin/domainname/GTAGS > > =3D=3D=3D> bin/echo > > rm -f echo echo.o echo.1.gz echo.1.cat.gz > > rm -f .depend /usr/src/bin/echo/GPATH /usr/src/bin/echo/GRTAGS /usr/sr= c/bin/echo/GSYMS /usr/src/bin/echo/GTAGS > > =3D=3D=3D> bin/ed > > rm -f ed buf.o cbc.o glbl.o io.o main.o re.o sub.o undo.o ed.1.gz ed.1.= cat.gz > > rm -f .depend /usr/src/bin/ed/GPATH /usr/src/bin/ed/GRTAGS /usr/src/bi= n/ed/GSYMS /usr/src/bin/ed/GTAGS > > =3D=3D=3D> bin/expr > > rm -f expr expr.o expr.1.gz expr.1.cat.gz expr.c > > rm -f .depend /usr/src/bin/expr/GPATH /usr/src/bin/expr/GRTAGS /usr/sr= c/bin/expr/GSYMS /usr/src/bin/expr/GTAGS > > =3D=3D=3D> bin/hostname > > rm -f hostname hostname.o hostname.1.gz hostname.1.cat.gz > > rm -f .depend /usr/src/bin/hostname/GPATH /usr/src/bin/hostname/GRTAGS = /usr/src/bin/hostname/GSYMS /usr/src/bin/hostname/GTAGS > > =3D=3D=3D> bin/kill > > rm -f kill kill.o kill.1.gz kill.1.cat.gz > > rm -f .depend /usr/src/bin/kill/GPATH /usr/src/bin/kill/GRTAGS /usr/sr= c/bin/kill/GSYMS /usr/src/bin/kill/GTAGS > > =3D=3D=3D> bin/ln > > rm -f ln ln.o ln.1.gz symlink.7.gz ln.1.cat.gz symlink.7.cat.gz > > rm -f .depend /usr/src/bin/ln/GPATH /usr/src/bin/ln/GRTAGS /usr/src/bi= n/ln/GSYMS /usr/src/bin/ln/GTAGS > > =3D=3D=3D> bin/ls > > rm -f ls cmp.o ls.o print.o util.o ls.1.gz ls.1.cat.gz > > rm -f .depend /usr/src/bin/ls/GPATH /usr/src/bin/ls/GRTAGS /usr/src/bi= n/ls/GSYMS /usr/src/bin/ls/GTAGS > > =3D=3D=3D> bin/mkdir > > rm -f mkdir mkdir.o mkdir.1.gz mkdir.1.cat.gz > > rm -f .depend /usr/src/bin/mkdir/GPATH /usr/src/bin/mkdir/GRTAGS /usr/= src/bin/mkdir/GSYMS /usr/src/bin/mkdir/GTAGS > > =3D=3D=3D> bin/mv > > rm -f mv mv.o mv.1.gz mv.1.cat.gz > > rm -f .depend /usr/src/bin/mv/GPATH /usr/src/bin/mv/GRTAGS /usr/src/bi= n/mv/GSYMS /usr/src/bin/mv/GTAGS > > =3D=3D=3D> bin/pax > > rm -f pax ar_io.o ar_subs.o buf_subs.o cache.o cpio.o file_subs.o ftree= .o gen_subs.o getoldopt.o options.o pat_rep.o pax.o sel_subs.o tables.o tar= .o tty_subs.o pax.1.gz pax.1.cat.gz > > rm -f .depend /usr/src/bin/pax/GPATH /usr/src/bin/pax/GRTAGS /usr/src/= bin/pax/GSYMS /usr/src/bin/pax/GTAGS > > =3D=3D=3D> bin/ps > > rm -f ps fmt.o keyword.o nlist.o print.o ps.o ps.1.gz ps.1.cat.gz > > rm -f .depend /usr/src/bin/ps/GPATH /usr/src/bin/ps/GRTAGS /usr/src/bi= n/ps/GSYMS /usr/src/bin/ps/GTAGS > > =3D=3D=3D> bin/pwd > > rm -f pwd pwd.o pwd.1.gz realpath.1.gz pwd.1.cat.gz realpath.1.cat.gz > > rm -f .depend /usr/src/bin/pwd/GPATH /usr/src/bin/pwd/GRTAGS /usr/src/= bin/pwd/GSYMS /usr/src/bin/pwd/GTAGS > > =3D=3D=3D> bin/rcp > > rm -f rcp rcp.o util.o rcp.1.gz rcp.1.cat.gz > > rm -f .depend /usr/src/bin/rcp/GPATH /usr/src/bin/rcp/GRTAGS /usr/src/= bin/rcp/GSYMS /usr/src/bin/rcp/GTAGS > > =3D=3D=3D> bin/rm > > rm -f rm rm.o rm.1.gz rm.1.cat.gz > > rm -f .depend /usr/src/bin/rm/GPATH /usr/src/bin/rm/GRTAGS /usr/src/bi= n/rm/GSYMS /usr/src/bin/rm/GTAGS > > =3D=3D=3D> bin/rmdir > > rm -f rmdir rmdir.o rmdir.1.gz rmdir.1.cat.gz > > rm -f .depend /usr/src/bin/rmdir/GPATH /usr/src/bin/rmdir/GRTAGS /usr/= src/bin/rmdir/GSYMS /usr/src/bin/rmdir/GTAGS > > =3D=3D=3D> bin/sh > > rm -f mkinit mkinit.o mknodes mknodes.o mksyntax mksyntax.o builtins.c= init.c nodes.c syntax.c builtins.h nodes.h syntax.h token.h y.tab.h sh ali= as.o arith.o arith_lex.o cd.o echo.o error.o eval.o exec.o expand.o histedi= t.o input.o jobs.o mail.o main.o memalloc.o miscbltin.o mystring.o options.= o output.o parser.o printf.o redir.o show.o test.o trap.o var.o builtins.o = init.o nodes.o syntax.o sh.1.gz sh.1.cat.gz arith_lex.c arith.c y.tab.c y.t= ab.h > > rm -f .depend /usr/src/bin/sh/GPATH /usr/src/bin/sh/GRTAGS /usr/src/bi= n/sh/GSYMS /usr/src/bin/sh/GTAGS > > =3D=3D=3D> bin/sleep > > rm -f sleep sleep.o sleep.1.gz sleep.1.cat.gz > > rm -f .depend /usr/src/bin/sleep/GPATH /usr/src/bin/sleep/GRTAGS /usr/= src/bin/sleep/GSYMS /usr/src/bin/sleep/GTAGS > > =3D=3D=3D> bin/stty > > rm -f stty cchar.o gfmt.o key.o modes.o print.o stty.o util.o stty.1.gz= stty.1.cat.gz > > rm -f .depend /usr/src/bin/stty/GPATH /usr/src/bin/stty/GRTAGS /usr/sr= c/bin/stty/GSYMS /usr/src/bin/stty/GTAGS > > =3D=3D=3D> bin/sync > > rm -f sync sync.o sync.8.gz sync.8.cat.gz > > rm -f .depend /usr/src/bin/sync/GPATH /usr/src/bin/sync/GRTAGS /usr/sr= c/bin/sync/GSYMS /usr/src/bin/sync/GTAGS > > =3D=3D=3D> bin/test > > rm -f test test.o test.1.gz test.1.cat.gz > > rm -f .depend /usr/src/bin/test/GPATH /usr/src/bin/test/GRTAGS /usr/sr= c/bin/test/GSYMS /usr/src/bin/test/GTAGS > > =3D=3D=3D> bin/csh > > rm -f ed.defns.h sh.err.h tc.const.h tc.defs.c gethost csh.1 csh sh.o s= h.dir.o sh.dol.o sh.err.o sh.exec.o sh.char.o sh.exp.o sh.file.o sh.func.o = sh.glob.o sh.hist.o sh.init.o sh.lex.o sh.misc.o sh.parse.o sh.print.o sh.p= roc.o sh.sem.o sh.set.o sh.time.o glob.o mi.termios.o tw.help.o tw.init.o t= w.parse.o tw.spell.o tw.comp.o tw.color.o ed.chared.o ed.defns.o ed.init.o = ed.inputl.o ed.refresh.o ed.screen.o ed.xmap.o ed.term.o tc.alloc.o tc.bind= .o tc.const.o tc.disc.o tc.func.o tc.os.o tc.printf.o tc.prompt.o tc.sched.= o tc.sig.o tc.str.o tc.vers.o tc.who.o tc.defs.o csh.1.gz csh.1.cat.gz > > =3D=3D=3D> bin/csh/nls > > rm -f .depend /usr/src/bin/csh/GPATH /usr/src/bin/csh/GRTAGS /usr/src/= bin/csh/GSYMS /usr/src/bin/csh/GTAGS > > =3D=3D=3D> bin/csh/nls > > =3D=3D=3D> bin/csh/nls/finnish > > =3D=3D=3D> bin/csh/nls/finnish > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/french > > =3D=3D=3D> bin/csh/nls/german > > =3D=3D=3D> bin/csh/nls/french > > =3D=3D=3D> bin/csh/nls/greek > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/italian > > =3D=3D=3D> bin/csh/nls/ja > > =3D=3D=3D> bin/csh/nls/german > > =3D=3D=3D> bin/csh/nls/russian > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/spanish > > =3D=3D=3D> bin/csh/nls/ukrainian > > =3D=3D=3D> bin/csh/nls/greek > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/italian > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/ja > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/russian > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/spanish > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/ukrainian > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls > > =3D=3D=3D> bin/csh/nls/finnish > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/french > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/german > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/greek > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/italian > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/ja > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/russian > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/spanish > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/csh/nls/ukrainian > > rm -f tcsh.cat tcsh.msg =20 > > =3D=3D=3D> bin/rmail > > rm -f sm_os.h rmail rmail.o rmail.8.gz rmail.8.cat.gz > > rm -f .depend /usr/src/bin/rmail/GPATH /usr/src/bin/rmail/GRTAGS /usr/= src/bin/rmail/GSYMS /usr/src/bin/rmail/GTAGS > > 1 error > > *** Error code 2 > > 1 error > > *** Error code 2 > > 1 error > > # exit > >=20 > > exit > >=20 > > Script done on Sat Jul 20 15:38:09 2002 > >=20 >=20 >=20 >=20 > --=20 > Ruslan Ermilov Sysadmin and DBA, > ru@sunbay.com Sunbay Software AG, > ru@FreeBSD.org FreeBSD committer, > +380.652.512.251 Simferopol, Ukraine >=20 > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --mP3DRpeJDSE+ciuQ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9OS0JUkv4P6juNwoRAgUTAJ941H2Q3OUGM882iDHSoaIxi6MOswCfTlur +A9wdenCcv558wFxhyz+DTQ= =ccjf -----END PGP SIGNATURE----- --mP3DRpeJDSE+ciuQ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 2:31:30 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 324C237B400 for ; Sat, 20 Jul 2002 02:31:29 -0700 (PDT) Received: from mail.qcislands.net (mail.qcislands.net [209.53.238.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDD3843E31 for ; Sat, 20 Jul 2002 02:31:28 -0700 (PDT) (envelope-from ccstore@qcislands.net) Received: from [209.53.238.9] (helo=autha.qcislands.net) by mail.qcislands.net with esmtp (Exim 4.05) id 17VqaJ-000Kyb-00 for freebsd-stable@freebsd.org; Sat, 20 Jul 2002 02:31:31 -0700 Received: from ccstore by autha.qcislands.net with local-rmail (Exim 4.05) id 17VqaJ-0004bu-00 for freebsd-stable@freebsd.org; Sat, 20 Jul 2002 02:31:31 -0700 Received: from fstable by dick.ccstores.com with local (Exim 4.04) id 17VqNX-0002VH-00 for freebsd-stable@freebsd.org; Sat, 20 Jul 2002 02:18:19 -0700 From: fstable@ccstores.com (FreeBSD stable) To: freebsd-stable@freebsd.org Subject: re:4.6 interaction with web hit counter X-Mailer: SCO Shell Date: Sat, 20 Jul 2002 2:18:19 -0700 (PDT) Message-Id: X-local_scan: locally submitted (9) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >Subject: 4.6 interaction with web hit counter >Date: Fri, 19 Jul 2002 11:33:46 -0700 (PDT) >From: fstable@ccstores.com (FreeBSD stable) >I have been using a web counter called 'Count.cgi' by muquit, for >many versions of FreeBSD. >Now since I installed 4.6, the Count.cgi binary dies during execution >and I get a signal 11 error message on the console, altho apache considers >that the .cgi binary executed without error. >Did anything funny happen from 4.5 -> 4.6 which may for any reason affect >a cgi binary? I always do a fresh compile of Count.cgi and nothing >out of the ordinary appears during the compile. To respond to my own question, I find that compiling the Counter with the "-static" flag eliminates the problem. Never needed it before V4.6 of FreeBSD. -- FreeBSD stable directly mailto:paz@qcislands.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 3: 7:37 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0FB237B400 for ; Sat, 20 Jul 2002 03:07:25 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE10D43E31 for ; Sat, 20 Jul 2002 03:07:19 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g6KA6v409302; Sat, 20 Jul 2002 13:06:57 +0300 (EEST) (envelope-from ru) Date: Sat, 20 Jul 2002 13:06:57 +0300 From: Ruslan Ermilov To: peter.lai@uconn.edu, boris_2000@omskmail.ru Cc: freebsd-stable@FreeBSD.ORG Subject: Re: make buildworld breaks Message-ID: <20020720100657.GB5996@sunbay.com> References: <3D39505D.1000106@omskmail.ru> <20020719180637.A56061@cowbert.2y.net> <20020720091536.GC2757@sunbay.com> <20020720092737.GA5996@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cvVnyQ+4j833TQvp" Content-Disposition: inline In-Reply-To: <20020720092737.GA5996@sunbay.com> User-Agent: Mutt/1.3.99i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --cvVnyQ+4j833TQvp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jul 20, 2002 at 12:27:37PM +0300, Ruslan Ermilov wrote: > On Sat, Jul 20, 2002 at 12:15:36PM +0300, Ruslan Ermilov wrote: > > Strange enough. I tested all these changes with ``make release'' > > and it completed successfully. I will look into it RSN. > >=20 > It turned out to be a problem with make(1). Recent versions of > make(1) do not exhibit it. I will follow up shortly. >=20 Yes. The real problem is with make(1) that was fixed in src/usr.bin/make/var.c,v 1.16.2.3. I have committed the fix in src/Makefile,v 1.234.2.15. > > On Fri, Jul 19, 2002 at 06:06:37PM -0400, Peter C. Lai wrote: > > > I cvsup'd today at around 6pm EDT (2200 UTC) and upon making > > > buildworld ran into:=20 > > >=20 > > > =3D=3D=3D> lib/csu/i386-elf > > > "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional (defin= ed(SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) > > > "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator > > > "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif > > > "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator > > > make: fatal errors encountered -- cannot continue > > > *** Error code 1 > > >=20 > > > I'm trying to upgrade from 4.5-STABLE to 4.6-STABLE. > > > Any clues? > > >=20 > > > --=20 > > > Peter C. Lai > > > University of Connecticut > > > Dept. of Molecular and Cell Biology | Undergraduate Research Assistant > > > Yale University School of Medicine > > > Center for Medical Informatics | Research Assistant > > > http://cowbert.2y.net/ > > >=20 > > >=20 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > >=20 > > On Sat, Jul 20, 2002 at 03:58:21PM +0400, Boris wrote: > > > Hi! > > > I have just cvsupted to FreeBSD 4.6-STABLE. But when I`m trying to u= se=20 > > > make buildworld I see the next: > > > --------------------------------------------------------------^M > > > >>> stage 2: cleaning up the object tree^M > > > --------------------------------------------------------------^M > > > cd /usr/src; MAKEOBJDIRPREFIX=3D/usr/obj MACHINE_ARCH=3Di386 MACHIN= E=3Di386 =20 > > > OBJFORMAT_PATH=3D/usr/obj/usr/src/i386/u > > > =3D=3D=3D> share/info^M > > > =3D=3D=3D> include^M > > > rm -f osreldate.h version vers.c ^M > > > =3D=3D=3D> include/rpcsvc^M > > > rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h=20 > > > rnusers.h rquota.h rstat.h rwall.h sm_inter.h > > > =3D=3D=3D> include/rpcsvc^M > > > =3D=3D=3D> include/rpcsvc^M > > > rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h=20 > > > rnusers.h rquota.h rstat.h rwall.h sm_inter.h > > > =3D=3D=3D> lib^M > > > =3D=3D=3D> lib/csu/i386-elf^M > > > "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional=20 > > > (defined(SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) > > > "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator^M > > > "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif^M > > > "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator^M > > > make: fatal errors encountered -- cannot continue^M > > > *** Error code 1^M > > > ^M > > > Stop in /usr/src/lib.^M > > > *** Error code 1^M > > > ^M > > > Stop in /usr/src.^M > > > *** Error code 1^M > > > ^M > > > Stop in /usr/src.^M > > > *** Error code 1^M > > > ^M > > > Stop in /usr/src.^M > > >=20 > > > Script done on Sat Jul 20 15:18:27 2002 > > >=20 > > > And when I`m trying to use make -j4 buildworld I see the next: > > > see atachment > > >=20 > > > As you can see the 1-st problem was scipted, but the new began. > > > What`s going on? > > > P.S:Sorry for my English. > > >=20 > >=20 > > >=20 > > > -------------------------------------------------------------- > > > >>> stage 2: cleaning up the object tree > > > -------------------------------------------------------------- > > > cd /usr/src; MAKEOBJDIRPREFIX=3D/usr/obj MACHINE_ARCH=3Di386 MACHIN= E=3Di386 OBJFORMAT_PATH=3D/usr/obj/usr/src/i386/usr/libexec PERL5LIB=3D/u= sr/obj/usr/src/i386/usr/libdata/perl/5.00503 GROFF_BIN_PATH=3D/usr/obj/usr= /src/i386/usr/bin GROFF_FONT_PATH=3D/usr/obj/usr/src/i386/usr/share/groff_= font GROFF_TMAC_PATH=3D/usr/obj/usr/src/i386/usr/share/tmac DESTDIR=3D/us= r/obj/usr/src/i386 INSTALL=3D"sh /usr/src/tools/install.sh" PATH=3D/usr/o= bj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i38= 6/usr/games:/sbin:/bin:/usr/sbin:/usr/bin make -f Makefile.inc1 par-cleandir > > > =3D=3D=3D> share/info > > > =3D=3D=3D> include > > > =3D=3D=3D> lib > > > =3D=3D=3D> bin > > > =3D=3D=3D> lib/csu/i386-elf > > > "/usr/src/share/mk/bsd.lib.mk", line 19: Malformed conditional (defin= ed(SHLIB_NAME) && ${SHLIB_NAME:M*.so.*}) > > > "/usr/src/share/mk/bsd.lib.mk", line 19: Missing dependency operator > > > "/usr/src/share/mk/bsd.lib.mk", line 28: if-less endif > > > "/usr/src/share/mk/bsd.lib.mk", line 28: Need an operator > > > make: fatal errors encountered -- cannot continue > > > =3D=3D=3D> bin/cat > > > *** Error code 1 > > > 1 error > > > rm -f osreldate.h version vers.c =20 > > > *** Error code 2 > > > =3D=3D=3D> include/rpcsvc > > > =3D=3D=3D> include/rpcsvc > > > rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnuse= rs.h rquota.h rstat.h rwall.h sm_inter.h spray.h yppasswd.h yp.h ypxfrd.h= ypupdate_prot.h nis.h nis_cache.h nis_callback.h bootparam_prot.h crypt.h= =20 > > > rm -f cat cat.o cat.1.gz cat.1.cat.gz > > > rm -f .depend /usr/src/bin/cat/GPATH /usr/src/bin/cat/GRTAGS /usr/sr= c/bin/cat/GSYMS /usr/src/bin/cat/GTAGS > > > =3D=3D=3D> bin/chio > > > =3D=3D=3D> include/rpcsvc > > > rm -f chio chio.o chio.1.gz chio.1.cat.gz > > > rm -f .depend /usr/src/bin/chio/GPATH /usr/src/bin/chio/GRTAGS /usr/= src/bin/chio/GSYMS /usr/src/bin/chio/GTAGS > > > rm -f key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnuse= rs.h rquota.h rstat.h rwall.h sm_inter.h spray.h yppasswd.h yp.h ypxfrd.h= ypupdate_prot.h nis.h nis_cache.h nis_callback.h bootparam_prot.h crypt.h= =20 > > > =3D=3D=3D> bin/chmod > > > rm -f chmod chmod.o chmod.1.gz chmod.1.cat.gz > > > rm -f .depend /usr/src/bin/chmod/GPATH /usr/src/bin/chmod/GRTAGS /us= r/src/bin/chmod/GSYMS /usr/src/bin/chmod/GTAGS > > > =3D=3D=3D> bin/cp > > > rm -f cp cp.o utils.o cp.1.gz cp.1.cat.gz > > > rm -f .depend /usr/src/bin/cp/GPATH /usr/src/bin/cp/GRTAGS /usr/src/= bin/cp/GSYMS /usr/src/bin/cp/GTAGS > > > =3D=3D=3D> bin/date > > > rm -f date date.o netdate.o vary.o date.1.gz date.1.cat.gz > > > rm -f .depend /usr/src/bin/date/GPATH /usr/src/bin/date/GRTAGS /usr/= src/bin/date/GSYMS /usr/src/bin/date/GTAGS > > > =3D=3D=3D> bin/dd > > > rm -f dd args.o conv.o conv_tab.o dd.o misc.o position.o dd.1.gz dd.1= .cat.gz > > > rm -f .depend /usr/src/bin/dd/GPATH /usr/src/bin/dd/GRTAGS /usr/src/= bin/dd/GSYMS /usr/src/bin/dd/GTAGS > > > =3D=3D=3D> bin/df > > > rm -f df df.o vfslist.o df.1.gz df.1.cat.gz > > > rm -f .depend /usr/src/bin/df/GPATH /usr/src/bin/df/GRTAGS /usr/src/= bin/df/GSYMS /usr/src/bin/df/GTAGS > > > =3D=3D=3D> bin/domainname > > > rm -f domainname domainname.o domainname.1.gz domainname.1.cat.gz > > > rm -f .depend /usr/src/bin/domainname/GPATH /usr/src/bin/domainname/G= RTAGS /usr/src/bin/domainname/GSYMS /usr/src/bin/domainname/GTAGS > > > =3D=3D=3D> bin/echo > > > rm -f echo echo.o echo.1.gz echo.1.cat.gz > > > rm -f .depend /usr/src/bin/echo/GPATH /usr/src/bin/echo/GRTAGS /usr/= src/bin/echo/GSYMS /usr/src/bin/echo/GTAGS > > > =3D=3D=3D> bin/ed > > > rm -f ed buf.o cbc.o glbl.o io.o main.o re.o sub.o undo.o ed.1.gz ed.= 1.cat.gz > > > rm -f .depend /usr/src/bin/ed/GPATH /usr/src/bin/ed/GRTAGS /usr/src/= bin/ed/GSYMS /usr/src/bin/ed/GTAGS > > > =3D=3D=3D> bin/expr > > > rm -f expr expr.o expr.1.gz expr.1.cat.gz expr.c > > > rm -f .depend /usr/src/bin/expr/GPATH /usr/src/bin/expr/GRTAGS /usr/= src/bin/expr/GSYMS /usr/src/bin/expr/GTAGS > > > =3D=3D=3D> bin/hostname > > > rm -f hostname hostname.o hostname.1.gz hostname.1.cat.gz > > > rm -f .depend /usr/src/bin/hostname/GPATH /usr/src/bin/hostname/GRTAG= S /usr/src/bin/hostname/GSYMS /usr/src/bin/hostname/GTAGS > > > =3D=3D=3D> bin/kill > > > rm -f kill kill.o kill.1.gz kill.1.cat.gz > > > rm -f .depend /usr/src/bin/kill/GPATH /usr/src/bin/kill/GRTAGS /usr/= src/bin/kill/GSYMS /usr/src/bin/kill/GTAGS > > > =3D=3D=3D> bin/ln > > > rm -f ln ln.o ln.1.gz symlink.7.gz ln.1.cat.gz symlink.7.cat.gz > > > rm -f .depend /usr/src/bin/ln/GPATH /usr/src/bin/ln/GRTAGS /usr/src/= bin/ln/GSYMS /usr/src/bin/ln/GTAGS > > > =3D=3D=3D> bin/ls > > > rm -f ls cmp.o ls.o print.o util.o ls.1.gz ls.1.cat.gz > > > rm -f .depend /usr/src/bin/ls/GPATH /usr/src/bin/ls/GRTAGS /usr/src/= bin/ls/GSYMS /usr/src/bin/ls/GTAGS > > > =3D=3D=3D> bin/mkdir > > > rm -f mkdir mkdir.o mkdir.1.gz mkdir.1.cat.gz > > > rm -f .depend /usr/src/bin/mkdir/GPATH /usr/src/bin/mkdir/GRTAGS /us= r/src/bin/mkdir/GSYMS /usr/src/bin/mkdir/GTAGS > > > =3D=3D=3D> bin/mv > > > rm -f mv mv.o mv.1.gz mv.1.cat.gz > > > rm -f .depend /usr/src/bin/mv/GPATH /usr/src/bin/mv/GRTAGS /usr/src/= bin/mv/GSYMS /usr/src/bin/mv/GTAGS > > > =3D=3D=3D> bin/pax > > > rm -f pax ar_io.o ar_subs.o buf_subs.o cache.o cpio.o file_subs.o ftr= ee.o gen_subs.o getoldopt.o options.o pat_rep.o pax.o sel_subs.o tables.o t= ar.o tty_subs.o pax.1.gz pax.1.cat.gz > > > rm -f .depend /usr/src/bin/pax/GPATH /usr/src/bin/pax/GRTAGS /usr/sr= c/bin/pax/GSYMS /usr/src/bin/pax/GTAGS > > > =3D=3D=3D> bin/ps > > > rm -f ps fmt.o keyword.o nlist.o print.o ps.o ps.1.gz ps.1.cat.gz > > > rm -f .depend /usr/src/bin/ps/GPATH /usr/src/bin/ps/GRTAGS /usr/src/= bin/ps/GSYMS /usr/src/bin/ps/GTAGS > > > =3D=3D=3D> bin/pwd > > > rm -f pwd pwd.o pwd.1.gz realpath.1.gz pwd.1.cat.gz realpath.1.cat.gz > > > rm -f .depend /usr/src/bin/pwd/GPATH /usr/src/bin/pwd/GRTAGS /usr/sr= c/bin/pwd/GSYMS /usr/src/bin/pwd/GTAGS > > > =3D=3D=3D> bin/rcp > > > rm -f rcp rcp.o util.o rcp.1.gz rcp.1.cat.gz > > > rm -f .depend /usr/src/bin/rcp/GPATH /usr/src/bin/rcp/GRTAGS /usr/sr= c/bin/rcp/GSYMS /usr/src/bin/rcp/GTAGS > > > =3D=3D=3D> bin/rm > > > rm -f rm rm.o rm.1.gz rm.1.cat.gz > > > rm -f .depend /usr/src/bin/rm/GPATH /usr/src/bin/rm/GRTAGS /usr/src/= bin/rm/GSYMS /usr/src/bin/rm/GTAGS > > > =3D=3D=3D> bin/rmdir > > > rm -f rmdir rmdir.o rmdir.1.gz rmdir.1.cat.gz > > > rm -f .depend /usr/src/bin/rmdir/GPATH /usr/src/bin/rmdir/GRTAGS /us= r/src/bin/rmdir/GSYMS /usr/src/bin/rmdir/GTAGS > > > =3D=3D=3D> bin/sh > > > rm -f mkinit mkinit.o mknodes mknodes.o mksyntax mksyntax.o builtins= .c init.c nodes.c syntax.c builtins.h nodes.h syntax.h token.h y.tab.h sh a= lias.o arith.o arith_lex.o cd.o echo.o error.o eval.o exec.o expand.o histe= dit.o input.o jobs.o mail.o main.o memalloc.o miscbltin.o mystring.o option= s.o output.o parser.o printf.o redir.o show.o test.o trap.o var.o builtins.= o init.o nodes.o syntax.o sh.1.gz sh.1.cat.gz arith_lex.c arith.c y.tab.c y= .tab.h > > > rm -f .depend /usr/src/bin/sh/GPATH /usr/src/bin/sh/GRTAGS /usr/src/= bin/sh/GSYMS /usr/src/bin/sh/GTAGS > > > =3D=3D=3D> bin/sleep > > > rm -f sleep sleep.o sleep.1.gz sleep.1.cat.gz > > > rm -f .depend /usr/src/bin/sleep/GPATH /usr/src/bin/sleep/GRTAGS /us= r/src/bin/sleep/GSYMS /usr/src/bin/sleep/GTAGS > > > =3D=3D=3D> bin/stty > > > rm -f stty cchar.o gfmt.o key.o modes.o print.o stty.o util.o stty.1.= gz stty.1.cat.gz > > > rm -f .depend /usr/src/bin/stty/GPATH /usr/src/bin/stty/GRTAGS /usr/= src/bin/stty/GSYMS /usr/src/bin/stty/GTAGS > > > =3D=3D=3D> bin/sync > > > rm -f sync sync.o sync.8.gz sync.8.cat.gz > > > rm -f .depend /usr/src/bin/sync/GPATH /usr/src/bin/sync/GRTAGS /usr/= src/bin/sync/GSYMS /usr/src/bin/sync/GTAGS > > > =3D=3D=3D> bin/test > > > rm -f test test.o test.1.gz test.1.cat.gz > > > rm -f .depend /usr/src/bin/test/GPATH /usr/src/bin/test/GRTAGS /usr/= src/bin/test/GSYMS /usr/src/bin/test/GTAGS > > > =3D=3D=3D> bin/csh > > > rm -f ed.defns.h sh.err.h tc.const.h tc.defs.c gethost csh.1 csh sh.o= sh.dir.o sh.dol.o sh.err.o sh.exec.o sh.char.o sh.exp.o sh.file.o sh.func.= o sh.glob.o sh.hist.o sh.init.o sh.lex.o sh.misc.o sh.parse.o sh.print.o sh= .proc.o sh.sem.o sh.set.o sh.time.o glob.o mi.termios.o tw.help.o tw.init.o= tw.parse.o tw.spell.o tw.comp.o tw.color.o ed.chared.o ed.defns.o ed.init.= o ed.inputl.o ed.refresh.o ed.screen.o ed.xmap.o ed.term.o tc.alloc.o tc.bi= nd.o tc.const.o tc.disc.o tc.func.o tc.os.o tc.printf.o tc.prompt.o tc.sche= d.o tc.sig.o tc.str.o tc.vers.o tc.who.o tc.defs.o csh.1.gz csh.1.cat.gz > > > =3D=3D=3D> bin/csh/nls > > > rm -f .depend /usr/src/bin/csh/GPATH /usr/src/bin/csh/GRTAGS /usr/sr= c/bin/csh/GSYMS /usr/src/bin/csh/GTAGS > > > =3D=3D=3D> bin/csh/nls > > > =3D=3D=3D> bin/csh/nls/finnish > > > =3D=3D=3D> bin/csh/nls/finnish > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/french > > > =3D=3D=3D> bin/csh/nls/german > > > =3D=3D=3D> bin/csh/nls/french > > > =3D=3D=3D> bin/csh/nls/greek > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/italian > > > =3D=3D=3D> bin/csh/nls/ja > > > =3D=3D=3D> bin/csh/nls/german > > > =3D=3D=3D> bin/csh/nls/russian > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/spanish > > > =3D=3D=3D> bin/csh/nls/ukrainian > > > =3D=3D=3D> bin/csh/nls/greek > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/italian > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/ja > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/russian > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/spanish > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/ukrainian > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls > > > =3D=3D=3D> bin/csh/nls/finnish > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/french > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/german > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/greek > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/italian > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/ja > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/russian > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/spanish > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/csh/nls/ukrainian > > > rm -f tcsh.cat tcsh.msg =20 > > > =3D=3D=3D> bin/rmail > > > rm -f sm_os.h rmail rmail.o rmail.8.gz rmail.8.cat.gz > > > rm -f .depend /usr/src/bin/rmail/GPATH /usr/src/bin/rmail/GRTAGS /us= r/src/bin/rmail/GSYMS /usr/src/bin/rmail/GTAGS > > > 1 error > > > *** Error code 2 > > > 1 error > > > *** Error code 2 > > > 1 error > > > # exit > > >=20 > > > exit > > >=20 > > > Script done on Sat Jul 20 15:38:09 2002 > > >=20 --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --cvVnyQ+4j833TQvp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9OTZBUkv4P6juNwoRAishAJ9fXoRPcdlbOoY7AW6QEGStTJG9zACggnMn 8/2uf3fgWj9taLsg0erPLWE= =n1kF -----END PGP SIGNATURE----- --cvVnyQ+4j833TQvp-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 3:37:29 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8A2337B405 for ; Sat, 20 Jul 2002 03:37:26 -0700 (PDT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B63743E42 for ; Sat, 20 Jul 2002 03:37:25 -0700 (PDT) (envelope-from marck@rinet.ru) Received: from localhost (marck@localhost) by woozle.rinet.ru (8.11.6/8.11.6) with ESMTP id g6KAb6650292; Sat, 20 Jul 2002 14:37:06 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Sat, 20 Jul 2002 14:37:06 +0400 (MSD) From: Dmitry Morozovsky To: Jonathan Chen Cc: Craig Boston , Subject: Re: Kernel config problem with 4.6-STABLE... [solution] In-Reply-To: <20020719221244.GE17899@grimoire.chen.org.nz> Message-ID: <20020720143641.P49174-100000@woozle.rinet.ru> X-NCC-RegID: ru.rinet MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 20 Jul 2002, Jonathan Chen wrote: JC> [..] JC> > Thoughts, comments? Is there any reason _not_ to encourage buildkernel JC> > for making standalone kernels? JC> JC> Last I heard, it's 'cos it requires a buildworld prior. If I have a JC> minimal system with kernel sources only, I don't want to have to do JC> that. Than, I think, it should be explicitly mentioned in the Handbook. Sincerely, D.Marck [DM5020, DM268-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 3:41: 2 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56B1A37B400 for ; Sat, 20 Jul 2002 03:40:59 -0700 (PDT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCC3A43E42 for ; Sat, 20 Jul 2002 03:40:57 -0700 (PDT) (envelope-from marck@rinet.ru) Received: from localhost (marck@localhost) by woozle.rinet.ru (8.11.6/8.11.6) with ESMTP id g6KAenp50398; Sat, 20 Jul 2002 14:40:49 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Sat, 20 Jul 2002 14:40:49 +0400 (MSD) From: Dmitry Morozovsky To: Jonathan Chen Cc: Craig Boston , Subject: Re: Kernel config problem with 4.6-STABLE... [solution] In-Reply-To: <20020719221244.GE17899@grimoire.chen.org.nz> Message-ID: <20020720143823.C49174-100000@woozle.rinet.ru> X-NCC-RegID: ru.rinet MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 20 Jul 2002, Jonathan Chen wrote: JC> [..] JC> > Thoughts, comments? Is there any reason _not_ to encourage buildkernel JC> > for making standalone kernels? JC> JC> Last I heard, it's 'cos it requires a buildworld prior. If I have a JC> minimal system with kernel sources only, I don't want to have to do JC> that. Actually, IIRC looking through Makefile.inc1, there is need only for bootstrap-tools to be built. Maybe we need to mention this target in TGTS= in Makefile, and then tell admins who needs to build only kernel to do something like cd /usr/src make bootstrap make kernel KERNCONF=mykernel Opinions? Sincerely, D.Marck [DM5020, DM268-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 7:33:53 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3F1737B400 for ; Sat, 20 Jul 2002 07:33:51 -0700 (PDT) Received: from fep3.cogeco.net (smtp.cogeco.net [216.221.81.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7807B43E42 for ; Sat, 20 Jul 2002 07:33:51 -0700 (PDT) (envelope-from pnmurphy@cogeco.ca) Received: from localhost (d141-18-230.home.cgocable.net [24.141.18.230]) by fep3.cogeco.net (Postfix) with SMTP id 53B83256B for ; Sat, 20 Jul 2002 10:33:50 -0400 (EDT) Date: Sat, 20 Jul 2002 10:33:43 -0400 From: Paul Murphy To: freebsd-stable@FreeBSD.ORG Subject: Buildkernel fails Message-Id: <20020720103343.68a34020.pnmurphy@cogeco.ca> X-Mailer: Sylpheed version 0.7.8claws (GTK+ 1.2.10; i386-portbld-freebsd4.6) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; boundary="=.0Nx2SQrU_Pj_s(" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=.0Nx2SQrU_Pj_s( Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit With source cvsuped Jul 20 07:40 [EDT] make buildkernel KERNCONF=GENERIC (as well as my custom kernel) fails with: /usr/src/sys/dev/usb/ohci.c: In function `ohci_intr1': /usr/src/sys/dev/usb/ohci.c:1079: structure has no member named `sc_intrxfer' /usr/src/sys/dev/usb/ohci.c: In function `ohci_root_intr_start': /usr/src/sys/dev/usb/ohci.c:2378: structure has no member named `sc_intrxfer' /usr/src/sys/dev/usb/ohci.c: In function `ohci_root_intr_close': /usr/src/sys/dev/usb/ohci.c:2409: structure has no member named `sc_intrxfer' *** Error code 1 Stop in /usr/obj/usr/src/sys/GENERIC. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. -- Cogeco ergo sum --=.0Nx2SQrU_Pj_s( Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9OXTOumQc9BC5jBMRAiAnAJ9uZlZUVUqmmSRMT+JEx0O81AEzHgCgosE+ 5iGRXaCe+t3NZMnDHbnxmzE= =fTe7 -----END PGP SIGNATURE----- --=.0Nx2SQrU_Pj_s(-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 8:28:35 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC2DD37B400; Sat, 20 Jul 2002 08:28:33 -0700 (PDT) Received: from mistral.imasy.or.jp (U059223.ppp.dion.ne.jp [218.222.59.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id D729543E3B; Sat, 20 Jul 2002 08:28:29 -0700 (PDT) (envelope-from mistral@imasy.or.jp) Received: from mistral.imasy.or.jp (localhost [IPv6:::1]) by mistral.imasy.or.jp (8.12.5/8.12.5/mistral) with ESMTP id g6KFSMTX000684 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sun, 21 Jul 2002 00:28:24 +0900 (JST) (envelope-from mistral@imasy.or.jp) Received: (from sarumaru@localhost) by mistral.imasy.or.jp (8.12.5/8.12.5/Submit) id g6KFSDGc000683; Sun, 21 Jul 2002 00:28:13 +0900 (JST) (envelope-from sarumaru) From: mistral@imasy.or.jp (Yoshihiko SARUMARU) To: des@FreeBSD.org Cc: stable@FreeBSD.org Subject: pam_ssh doesn't work with unremoved .ssh/agent-host Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.22PL5] 2001-02/07(Wed) Date: Sun, 21 Jul 2002 00:28:12 +0900 Message-ID: <020721002812.M0100678@mistral.imasy.or.jp> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi des, I have a trouble in pam_ssh (RELENG_4 of this week). That trouble is when my FreeBSD box crushed and .ssh/agent-host file remained, pam_ssh will read wrong information about agent program and could not start ssh-agent any more. This problem will be solved if I removed old .ssh/agent* before login (xdm or login I use) after every crush (I had many crush this week :| ). So I have a request for you. Could pam_ssh run another ssh-agent when connect to agent was failed, or do you have any other cool idea? Thanks in advance, -- Yoshihiko SARUMARU mail: mistral@imasy.or.jp web: http://www.imasy.or.jp/~mistral/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 9:51:32 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA81D37B400 for ; Sat, 20 Jul 2002 09:51:29 -0700 (PDT) Received: from smtp2.wanadoo.nl (smtp2.wanadoo.nl [194.134.35.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D6F943E58 for ; Sat, 20 Jul 2002 09:51:29 -0700 (PDT) (envelope-from steve@sohara.org) Received: from ams-gw.sohara.org (rot2-p3274.dial.wanadoo.nl [62.234.207.202]) by smtp2.wanadoo.nl (Postfix) with SMTP id F10511FFBE; Sat, 20 Jul 2002 18:51:24 +0200 (MEST) Date: Sat, 20 Jul 2002 18:51:21 +0200 From: Steve O'Hara-Smith To: Dmitry Morozovsky Cc: jonc@chen.org.nz, craig@meoqu.gank.org, freebsd-stable@FreeBSD.ORG Subject: Re: Kernel config problem with 4.6-STABLE... [solution] Message-Id: <20020720185121.6d99ae98.steve@sohara.org> In-Reply-To: <20020720143823.C49174-100000@woozle.rinet.ru> References: <20020719221244.GE17899@grimoire.chen.org.nz> <20020720143823.C49174-100000@woozle.rinet.ru> X-Mailer: Sylpheed version 0.8.0 (GTK+ 1.2.10; i386-portbld-freebsd4.6) X-Face: %]+HVL}K`P8>+8ZcY-WGHP6j@&mxMo9JH6_WdgIgUGH)JX/usO0%jy7T~IVgqjumD^OBqX,Kv^-GM6mlw(fI^$"QRKyZ$?xx/ Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 20 Jul 2002 14:40:49 +0400 (MSD) Dmitry Morozovsky wrote: DM> make bootstrap DM> make kernel KERNCONF=mykernel DM> DM> Opinions? Wouldn't it be more failsafe to make buildkernel depend on bootstrap ? -- C:>WIN | Directable Mirrors The computer obeys and wins. |A Better Way To Focus The Sun You lose and Bill collects. | licenses available - see: | http://www.sohara.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 20 11: 2:22 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A357A37B400 for ; Sat, 20 Jul 2002 11:02:18 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AF1143E4A for ; Sat, 20 Jul 2002 11:02:18 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id LAA11177; Sat, 20 Jul 2002 11:02:16 -0700 Message-ID: <3D39A5A6.3000106@owt.com> Date: Sat, 20 Jul 2002 11:02:14 -0700 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4.1) Gecko/20020314 Netscape6/6.2.2 X-Accept-Language: en-us, es-mx MIME-Version: 1.0 To: Paul Murphy Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Buildkernel fails References: <20020720103343.68a34020.pnmurphy@cogeco.ca> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Paul Murphy wrote: > With source cvsuped Jul 20 07:40 [EDT] make buildkernel KERNCONF=GENERIC > (as well as my custom kernel) fails with: > > /usr/src/sys/dev/usb/ohci.c: In function `ohci_intr1': > /usr/src/sys/dev/usb/ohci.c:1079: structure has no member named > `sc_intrxfer' > /usr/src/sys/dev/usb/ohci.c: In function `ohci_root_intr_start': > /usr/src/sys/dev/usb/ohci.c:2378: structure has no member named > `sc_intrxfer' > /usr/src/sys/dev/usb/ohci.c: In function `ohci_root_intr_close': > /usr/src/sys/dev/usb/ohci.c:2409: structure has no member named > `sc_intrxfer' > *** Error code 1 > > Stop in /usr/obj/usr/src/sys/GENERIC. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > > > I cvsuped src-all at 1700 GMT and had no problems doing a buildworld and buildkernel. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 11:13: 7 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCB7437B400 for ; Sat, 20 Jul 2002 11:13:04 -0700 (PDT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A98943E58 for ; Sat, 20 Jul 2002 11:13:03 -0700 (PDT) (envelope-from marck@rinet.ru) Received: from localhost (marck@localhost) by woozle.rinet.ru (8.11.6/8.11.6) with ESMTP id g6KICgE55915; Sat, 20 Jul 2002 22:12:47 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Sat, 20 Jul 2002 22:12:42 +0400 (MSD) From: Dmitry Morozovsky To: "Steve O'Hara-Smith" Cc: jonc@chen.org.nz, , Subject: Re: Kernel config problem with 4.6-STABLE... [solution] In-Reply-To: <20020720185121.6d99ae98.steve@sohara.org> Message-ID: <20020720220854.R49174-100000@woozle.rinet.ru> X-NCC-RegID: ru.rinet MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 20 Jul 2002, Steve O'Hara-Smith wrote: SO> DM> make bootstrap SO> DM> make kernel KERNCONF=mykernel SO> DM> SO> DM> Opinions? SO> SO> Wouldn't it be more failsafe to make buildkernel depend on bootstrap ? Totally agreed. Now the most complicated part: we need to get Ruslan's "Yeah, it's the way we need" ;-) BTW, there is at least one pitfall, already mentioned: having installed src-base + src-sys is not enough to make buidlkernel (at least now). And I don't know both safe and efficient way to mix old way (config+make) with the new. Maybe Ruslan have some thoughts on it... Sincerely, D.Marck [DM5020, DM268-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 14: 6:38 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45FCC37B400 for ; Sat, 20 Jul 2002 14:06:36 -0700 (PDT) Received: from mail.speakeasy.net (mail14.speakeasy.net [216.254.0.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id D198643E42 for ; Sat, 20 Jul 2002 14:06:35 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (qmail 13203 invoked from network); 20 Jul 2002 21:06:34 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail14.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 20 Jul 2002 21:06:34 -0000 Received: from john.baldwin.cx (john.baldwin.cx [192.168.0.2]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g6KL6X801770; Sat, 20 Jul 2002 17:06:33 -0400 (EDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.11.6/8.11.6) id g6KLU8R01358; Sat, 20 Jul 2002 14:30:08 -0700 (PDT) (envelope-from john) Message-Id: <200207202130.g6KLU8R01358@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Sat, 20 Jul 2002 14:30:01 -0700 (PDT) From: John Baldwin To: stable@FreeBSD.org Subject: world broken? Cc: ru@FreeBSD.org Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've been trying to update two machines running 4.5-stable to 4.6-stable and they have failed trying to install a new make early on because they think the installed make is too old: -------> Building the world -------------------------------------------------------------- Upgrading the installed make -------------------------------------------------------------- ... install -c -s -o root -g wheel -m 555 make /usr/bin install: /usr/bin/make: Text file busy *** Error code 71 Stop in /usr/src/usr.bin/make. *** Error code 1 -- John Baldwin -- http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 15: 1:38 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C35C737B400 for ; Sat, 20 Jul 2002 15:01:35 -0700 (PDT) Received: from volcano.planet.it (volcano.planet.it [212.110.160.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A5D543E58 for ; Sat, 20 Jul 2002 15:01:35 -0700 (PDT) (envelope-from olgeni@uli.it) Received: from olgeni.olgeni (ppp-123.dial6.ctonet.it [212.110.181.123]) by volcano.planet.it (Postfix) with ESMTP id 016F411F7E9 for ; Sun, 21 Jul 2002 00:01:32 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by olgeni.olgeni (8.12.5/8.12.5) with ESMTP id g6KM1Rmt051700 for ; Sun, 21 Jul 2002 00:01:28 +0200 (CEST) (envelope-from olgeni@uli.it) Date: Sun, 21 Jul 2002 00:01:27 +0200 (CEST) From: Jimmy Olgeni X-X-Sender: olgeni@olgeni.olgeni To: freebsd-stable@FreeBSD.org Subject: make install in /etc/mail broken? Message-ID: <20020720235817.D51666-100000@olgeni.olgeni> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi! Problem in /etc/mail: # make install install -m /etc/mail/olgeni.cf /etc/mail/sendmail.cf install: invalid file mode: /etc/mail/olgeni.cf *** Error code 64 Stop in /etc/mail. Looks like SHAREMODE is no longer defined. Tested on 3 boxes (very recent -stable). -- jimmy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 15:47:21 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00A0937B400 for ; Sat, 20 Jul 2002 15:47:18 -0700 (PDT) Received: from slimy.rodal.no (ti121210a080-0108.bb.online.no [80.212.0.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12D2D43E31 for ; Sat, 20 Jul 2002 15:47:16 -0700 (PDT) (envelope-from morten@rodal.no) Received: from slurp.rodal.no (slurp.rodal.no [192.168.20.69]) by slimy.rodal.no (8.12.3/8.12.3) with ESMTP id g6KMlEEA026194 for ; Sun, 21 Jul 2002 00:47:14 +0200 (CEST) (envelope-from morten@slurp.rodal.no) Received: (from morten@localhost) by slurp.rodal.no (8.12.5/8.12.5/Submit) id g6KMlEBx015417 for freebsd-stable@FreeBSD.ORG; Sun, 21 Jul 2002 00:47:14 +0200 (CEST) (envelope-from morten) Date: Sun, 21 Jul 2002 00:47:14 +0200 From: Morten Rodal To: freebsd-stable@FreeBSD.ORG Subject: Re: make install in /etc/mail broken? Message-ID: <20020720224713.GB14597@slurp.rodal.no> References: <20020720235817.D51666-100000@olgeni.olgeni> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PmA2V3Z32TCmWXqI" Content-Disposition: inline In-Reply-To: <20020720235817.D51666-100000@olgeni.olgeni> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --PmA2V3Z32TCmWXqI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jul 21, 2002 at 12:01:27AM +0200, Jimmy Olgeni wrote: > Hi! >=20 > Problem in /etc/mail: >=20 > # make install > install -m /etc/mail/olgeni.cf /etc/mail/sendmail.cf > install: invalid file mode: /etc/mail/olgeni.cf > *** Error code 64 >=20 > Stop in /etc/mail. >=20 > Looks like SHAREMODE is no longer defined. > Tested on 3 boxes (very recent -stable). >=20 > --=20 > jimmy >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message This has already been fixed. Try to cvsup again. --=20 Morten Rodal // // PGP ID 2D75595B // 22DE D67A 1AEA EF94 872A 9384 6D67 B50B 2D75 595B // --PmA2V3Z32TCmWXqI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9OehxbWe1Cy11WVsRAlDTAKCgAXtidEi5ZCgXkwccl1XXrGIQcQCeLDDA IaO619ONLMuT03xLQqiYyf0= =wGZ7 -----END PGP SIGNATURE----- --PmA2V3Z32TCmWXqI-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 16:52:51 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 375BC37B400 for ; Sat, 20 Jul 2002 16:52:48 -0700 (PDT) Received: from wall.polstra.com (wall-gw.polstra.com [206.213.73.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id C626243E3B for ; Sat, 20 Jul 2002 16:52:43 -0700 (PDT) (envelope-from jdp@polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.11.3/8.11.3) with ESMTP id g6KNpeD86152; Sat, 20 Jul 2002 16:51:40 -0700 (PDT) (envelope-from jdp@vashon.polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.12.4/8.12.4/Submit) id g6KNpZOh026018; Sat, 20 Jul 2002 16:51:35 -0700 (PDT) (envelope-from jdp) Date: Sat, 20 Jul 2002 16:51:35 -0700 (PDT) Message-Id: <200207202351.g6KNpZOh026018@vashon.polstra.com> To: stable@freebsd.org From: John Polstra Cc: mvh@ix.netcom.com Subject: Re: another high hz issue In-Reply-To: <20020714171430.06EDF13109@netcom1.netcom.com> References: <20020714171430.06EDF13109@netcom1.netcom.com> Organization: Polstra & Co., Seattle, WA Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In article <20020714171430.06EDF13109@netcom1.netcom.com>, Mike Harding wrote: > > just noticed this after bumping HZ to 1000: > > $sysctl -a > ... > net.inet.tcp.keepidle: -1389934 I just committed a fix for this to -current. The fix is in sys/netinet/tcp_timer.c revision 1.53. I'll MFC it in 3 days or so. John -- John Polstra John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 21:44:49 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B065637B400 for ; Sat, 20 Jul 2002 21:44:46 -0700 (PDT) Received: from pony-express.cs.rit.edu (pony-express.cs.rit.edu [129.21.30.24]) by mx1.FreeBSD.org (Postfix) with SMTP id 476AE43E4A for ; Sat, 20 Jul 2002 21:44:31 -0700 (PDT) (envelope-from jah4007@cs.rit.edu) Received: (qmail 3004 invoked from network); 21 Jul 2002 04:44:21 -0000 Received: from holly.cs.rit.edu (129.21.30.35) by pony-express.cs.rit.edu with SMTP; 21 Jul 2002 04:44:21 -0000 Received: (from jah4007@localhost) by holly.cs.rit.edu (8.9.3/8.9.3) id AAA04747 for freebsd-stable@freebsd.org; Sun, 21 Jul 2002 00:44:20 -0400 (EDT) Date: Sun, 21 Jul 2002 00:44:20 -0400 From: "James A Halstead ;001;icsg3;" To: freebsd-stable@freebsd.org Subject: hmm, is this a feature? Message-ID: <20020721044420.GA4585@holly.cs.rit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.25i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Have a relatives laptop getting a re-install of winxp (eew!) and I figured I would test out with FreeBSD before re-polluting it. It is a Compaq presario 700. 5.0 DP-1 gave me a trap 9 general protection fault before getting too far in the boot process ( I can give the fault message to somebody if they want it, but as this is -stable not posting it, probably not too useful any way) To the point: After the failed attempt at booting dp1, I threw in a boot floppy for 4.6.1-rc2. Booted fine, got the install going and after bin was done installing I took a look at dmesg. Low and behold, after scrolling back to the top of dmesg output on fixit shell, the fatal trap 9 message was still in the buffer! Is this some undocumented feature, or one I just missed ^_^? The machine was rebooted by pressing a key on console, so that may be part of it. On another note, during the extraction process, it just stopped twice and had the ftp server selection screen up. No error message saying timeout or anything, I select same site again and it picked up where it left off.. not sure what was going on there. Seemed like it was moving along at a good speed. Done rambling now, -James To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 23:27: 6 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42D1E37B400 for ; Sat, 20 Jul 2002 23:26:53 -0700 (PDT) Received: from omskmail.ru (omskmail.ru [195.162.49.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD2D243E42 for ; Sat, 20 Jul 2002 23:26:37 -0700 (PDT) (envelope-from boris_2000@omskmail.ru) Received: from omskmail.ru ([195.162.49.249]) by omskmail.ru (8.11.1/8.11.1) with ESMTP id g6L6Q7w00908 for ; Sun, 21 Jul 2002 10:26:08 +0400 (MSD) (envelope-from boris_2000@omskmail.ru) Message-ID: <3D3A7D52.70805@omskmail.ru> Date: Sun, 21 Jul 2002 13:22:26 +0400 From: Boris Reply-To: boris_2000@omskmail.ru, boris_2000@omskmail.ru User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0rc3) Gecko/20020524 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD-stable Subject: Problem with GENERIC Content-Type: multipart/mixed; boundary="------------050807060102050201040102" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------050807060102050201040102 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Hi! I have cvsupted to 4,6-STABLE. Everything OK, but whem I`m trying to add "device pcm0" in my GENERIC, I see the such errors after typing "make": What` going on? --------------050807060102050201040102 Content-Type: text/plain; name="generic" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="generic" Script started on Sun Jul 21 13:00:44 2002 # loginee /etc/passwd[7@master.pgroupxit # startxrebootstartxexite /etc/groupmaster.passwdploginmake cd ../../modules ; env MAKEOBJDIRPREFIX=/usr/src/sys/compile/GENERIC/modules MACHINE=i386 make obj ; env MAKEOBJDIRPREFIX=/usr/src/sys/compile/GENERIC/modules MACHINE=i386 make all ===> accf_data ===> accf_http ===> agp ===> aha ===> amr ===> an ===> aue ===> bge ===> bridge ===> ccd ===> cd9660 ===> coda ===> cue ===> dc ===> dummynet ===> fdesc ===> fxp ===> gx ===> if_disc ===> if_ef ===> if_faith ===> if_gif ===> if_ppp ===> if_sl ===> if_stf ===> if_tap ===> if_tun ===> if_vlan ===> iir ===> ip6fw ===> ipfilter ===> ipfw ===> ispfw ===> joy ===> kernfs ===> kue ===> lge ===> libiconv ===> libmchain ===> linux ===> md ===> mfs ===> mii ===> mlx ===> msdos ===> ncp ===> pcn ===> netgraph ===> netgraph/async ===> netgraph/bpf ===> netgraph/bridge ===> netgraph/cisco ===> netgraph/echo ===> netgraph/ether ===> netgraph/etf ===> netgraph/frame_relay ===> netgraph/hole ===> netgraph/iface ===> netgraph/ksocket ===> netgraph/lmi ===> netgraph/netgraph ===> netgraph/one2many ===> netgraph/ppp ===> netgraph/pppoe ===> netgraph/pptpgre ===> netgraph/rfc1490 ===> netgraph/socket ===> netgraph/sync_ar ===> netgraph/sync_sr ===> netgraph/tee ===> netgraph/tty ===> netgraph/UI ===> netgraph/vjc ===> netgraph/mppc ===> nfs ===> nge ===> nmdm ===> ntfs ===> nullfs ===> nwfs ===> portal ===> procfs ===> rl ===> rp ===> sf ===> sis ===> sk ===> snp ===> sound ===> sound/pcm ===> sound/driver ===> sound/driver/ad1816 ===> sound/driver/als4000 ===> sound/driver/cmi ===> sound/driver/cs4281 ===> sound/driver/csa ===> sound/driver/ds1 ===> sound/driver/emu10k1 ===> sound/driver/es137x ===> sound/driver/ess ===> sound/driver/fm801 ===> sound/driver/ich ===> sound/driver/maestro ===> sound/driver/maestro3 ===> sound/driver/mss ===> sound/driver/neomagic ===> sound/driver/sb16 ===> sound/driver/sb8 ===> sound/driver/sbc ===> sound/driver/solo ===> sound/driver/t4dwave ===> sound/driver/via82c686 ===> sound/driver/vibes ===> sound/snd ===> ste ===> syscons ===> syscons/blank ===> syscons/daemon ===> syscons/fade ===> syscons/fire ===> syscons/green ===> syscons/logo ===> syscons/rain ===> syscons/snake ===> syscons/star ===> syscons/warp ===> syscons/apm ===> ti ===> tl ===> twe ===> txp ===> ufm ===> ugen ===> uhid ===> ukbd ===> ulpt ===> umapfs ===> umass ===> umodem ===> ums ===> union ===> usb ===> uscanner ===> vinum ===> vn ===> vpo ===> vr ===> wb ===> wx ===> xl ===> aac ===> ar ===> asr ===> bktr ===> bktr/bktr ===> bktr/bktr_mem ===> ciss ===> coff ===> em ===> fpu ===> gnufpu ===> ibcs2 ===> linprocfs ===> mly ===> ncv ===> nsp ===> ray ===> sbni ===> scsi_low ===> smbfs ===> splash ===> splash/bmp ===> splash/pcx ===> sppp ===> sr ===> stg ===> streams ===> svr4 ===> vesa ===> wi ===> xe ===> accf_data ===> accf_http ===> agp ===> aha ===> amr ===> an ===> aue ===> bge ===> bridge ===> ccd ===> cd9660 ===> coda ===> cue ===> dc ===> dummynet ===> fdesc ===> fxp ===> gx ===> if_disc ===> if_ef ===> if_faith ===> if_gif ===> if_ppp ===> if_sl ===> if_stf ===> if_tap ===> if_tun ===> if_vlan ===> iir ===> ip6fw ===> ipfilter ===> ipfw ===> ispfw ===> joy ===> kernfs ===> kue ===> lge ===> libiconv ===> libmchain ===> linux cc -O -pipe -D_KERNEL -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -DKLD_MODULE -nostdinc -I- -I. -I@ -I@/../include -mpreferred-stack-boundary=2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -c linux_sysent.c In file included from linux_sysent.c:14: linux_proto.h:57: syntax error before `linux_time_t' linux_proto.h:57: `linux_time_t' undeclared here (not in a function) linux_proto.h:57: syntax error before `)' linux_proto.h:57: `linux_time_t' undeclared here (not in a function) linux_proto.h:57: syntax error before `)' linux_proto.h:156: syntax error before `linux_handler_t' linux_proto.h:156: `linux_handler_t' undeclared here (not in a function) linux_proto.h:156: `linux_handler_t' undeclared here (not in a function) linux_proto.h:184: syntax error before `linux_dev_t' linux_proto.h:184: `linux_dev_t' undeclared here (not in a function) linux_proto.h:184: `linux_dev_t' undeclared here (not in a function) linux_proto.h:189: syntax error before `linux_osigaction_t' linux_proto.h:189: `linux_osigaction_t' undeclared here (not in a function) linux_proto.h:189: syntax error before `)' linux_proto.h:189: `linux_osigaction_t' undeclared here (not in a function) linux_proto.h:189: syntax error before `)' linux_proto.h:190: syntax error before `linux_osigaction_t' linux_proto.h:190: `linux_osigaction_t' undeclared here (not in a function) linux_proto.h:190: syntax error before `)' linux_proto.h:190: `linux_osigaction_t' undeclared here (not in a function) linux_proto.h:190: syntax error before `)' linux_proto.h:196: syntax error before `linux_osigset_t' linux_proto.h:196: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:196: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:200: syntax error before `linux_osigset_t' linux_proto.h:200: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:200: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:201: syntax error before `linux_osigset_t' linux_proto.h:201: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:201: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:204: syntax error before `linux_osigset_t' linux_proto.h:204: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:204: syntax error before `)' linux_proto.h:204: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:204: syntax error before `)' linux_proto.h:216: syntax error before `linux_gid_t' linux_proto.h:216: `linux_gid_t' undeclared here (not in a function) linux_proto.h:216: syntax error before `)' linux_proto.h:216: `linux_gid_t' undeclared here (not in a function) linux_proto.h:216: syntax error before `)' linux_proto.h:220: syntax error before `linux_gid_t' linux_proto.h:220: `linux_gid_t' undeclared here (not in a function) linux_proto.h:220: syntax error before `)' linux_proto.h:220: `linux_gid_t' undeclared here (not in a function) linux_proto.h:220: syntax error before `)' linux_proto.h:344: syntax error before `linux_osigset_t' linux_proto.h:344: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:344: syntax error before `)' linux_proto.h:344: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:344: syntax error before `)' linux_proto.h:345: syntax error before `linux_osigset_t' linux_proto.h:345: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:345: syntax error before `)' linux_proto.h:345: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:345: syntax error before `)' linux_proto.h:380: syntax error before `linux_uid_t' linux_proto.h:380: `linux_uid_t' undeclared here (not in a function) linux_proto.h:380: `linux_uid_t' undeclared here (not in a function) linux_proto.h:383: syntax error before `linux_gid_t' linux_proto.h:383: `linux_gid_t' undeclared here (not in a function) linux_proto.h:383: `linux_gid_t' undeclared here (not in a function) linux_proto.h:410: syntax error before `linux_pid_t' linux_proto.h:410: `linux_pid_t' undeclared here (not in a function) linux_proto.h:410: `linux_pid_t' undeclared here (not in a function) linux_proto.h:439: syntax error before `linux_uid_t' linux_proto.h:439: `linux_uid_t' undeclared here (not in a function) linux_proto.h:439: syntax error before `)' linux_proto.h:439: `linux_uid_t' undeclared here (not in a function) linux_proto.h:439: syntax error before `)' linux_proto.h:440: syntax error before `linux_uid_t' linux_proto.h:440: `linux_uid_t' undeclared here (not in a function) linux_proto.h:440: syntax error before `)' linux_proto.h:440: `linux_uid_t' undeclared here (not in a function) linux_proto.h:440: syntax error before `)' linux_proto.h:441: syntax error before `linux_uid_t' linux_proto.h:441: `linux_uid_t' undeclared here (not in a function) linux_proto.h:441: syntax error before `)' linux_proto.h:441: `linux_uid_t' undeclared here (not in a function) linux_proto.h:441: syntax error before `)' linux_proto.h:453: syntax error before `linux_gid_t' linux_proto.h:453: `linux_gid_t' undeclared here (not in a function) linux_proto.h:453: syntax error before `)' linux_proto.h:453: `linux_gid_t' undeclared here (not in a function) linux_proto.h:453: syntax error before `)' linux_proto.h:454: syntax error before `linux_gid_t' linux_proto.h:454: `linux_gid_t' undeclared here (not in a function) linux_proto.h:454: syntax error before `)' linux_proto.h:454: `linux_gid_t' undeclared here (not in a function) linux_proto.h:454: syntax error before `)' linux_proto.h:455: syntax error before `linux_gid_t' linux_proto.h:455: `linux_gid_t' undeclared here (not in a function) linux_proto.h:455: syntax error before `)' linux_proto.h:455: `linux_gid_t' undeclared here (not in a function) linux_proto.h:455: syntax error before `)' linux_proto.h:465: syntax error before `linux_sigaction_t' linux_proto.h:465: `linux_sigaction_t' undeclared here (not in a function) linux_proto.h:465: syntax error before `)' linux_proto.h:465: `linux_sigaction_t' undeclared here (not in a function) linux_proto.h:465: syntax error before `)' linux_proto.h:466: syntax error before `linux_sigaction_t' linux_proto.h:466: `linux_sigaction_t' undeclared here (not in a function) linux_proto.h:466: syntax error before `)' linux_proto.h:466: `linux_sigaction_t' undeclared here (not in a function) linux_proto.h:466: syntax error before `)' linux_proto.h:471: syntax error before `linux_sigset_t' linux_proto.h:471: `linux_sigset_t' undeclared here (not in a function) linux_proto.h:471: syntax error before `)' linux_proto.h:471: `linux_sigset_t' undeclared here (not in a function) linux_proto.h:471: syntax error before `)' linux_proto.h:472: syntax error before `linux_sigset_t' linux_proto.h:472: `linux_sigset_t' undeclared here (not in a function) linux_proto.h:472: syntax error before `)' linux_proto.h:472: `linux_sigset_t' undeclared here (not in a function) linux_proto.h:472: syntax error before `)' linux_proto.h:485: syntax error before `linux_sigset_t' linux_proto.h:485: `linux_sigset_t' undeclared here (not in a function) linux_proto.h:485: syntax error before `)' linux_proto.h:485: `linux_sigset_t' undeclared here (not in a function) linux_proto.h:485: syntax error before `)' linux_proto.h:516: syntax error before `*' linux_proto.h:516: syntax error before `linux_stack_t' linux_proto.h:516: syntax error before `linux_stack_t' linux_proto.h:517: syntax error before `linux_stack_t' linux_proto.h:517: `linux_stack_t' undeclared here (not in a function) linux_proto.h:517: syntax error before `)' linux_proto.h:517: `linux_stack_t' undeclared here (not in a function) linux_proto.h:517: syntax error before `)' linux_sysent.c:21: sizeof applied to an incomplete type linux_sysent.c:21: warning: built-in function `exit' used without declaration linux_sysent.c:21: warning: cast discards qualifiers from pointer target type *** Error code 1 Stop in /usr/src/sys/modules/linux. *** Error code 1 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/src/sys/compile/GENERIC. # exit exit Script done on Sun Jul 21 13:01:06 2002 --------------050807060102050201040102-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Jul 20 23:46:47 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B286537B400 for ; Sat, 20 Jul 2002 23:46:43 -0700 (PDT) Received: from omen.e-lated.org (omen.e-lated.org [63.231.29.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D54043E58 for ; Sat, 20 Jul 2002 23:46:43 -0700 (PDT) (envelope-from danger@e-lated.org) Received: from omen.e-lated.org (danger@localhost [127.0.0.1]) by omen.e-lated.org (8.12.5/8.12.5) with ESMTP id g6L6kb2k038412; Sat, 20 Jul 2002 23:46:37 -0700 (PDT) (envelope-from danger@e-lated.org) Received: from localhost (danger@localhost) by omen.e-lated.org (8.12.5/8.12.5/Submit) with ESMTP id g6L6kbgJ038409; Sat, 20 Jul 2002 23:46:37 -0700 (PDT) X-Authentication-Warning: omen.e-lated.org: danger owned process doing -bs Date: Sat, 20 Jul 2002 23:46:37 -0700 (PDT) From: Jeff Seeman To: boris_2000@omskmail.ru Cc: FreeBSD-stable Subject: Re: Problem with GENERIC In-Reply-To: <3D3A7D52.70805@omskmail.ru> Message-ID: <20020720234527.B38347-100000@omen.e-lated.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG try adding device pcm notice the absence of the '0' On Sun, 21 Jul 2002, Boris wrote: > Hi! > I have cvsupted to 4,6-STABLE. Everything OK, but whem I`m trying to add > "device pcm0" in my GENERIC, I see the such errors after typing "make": > What` going on? > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message