From owner-freebsd-stable Sun Feb 23 2:17:16 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F38137B401; Sun, 23 Feb 2003 02:17:15 -0800 (PST) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55AF243F93; Sun, 23 Feb 2003 02:17:14 -0800 (PST) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.7/8.12.7) with ESMTP id h1NAHAgL021650; Sun, 23 Feb 2003 11:17:10 +0100 (CET) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.7/8.12.7/Submit) id h1NAH9O1021649; Sun, 23 Feb 2003 11:17:09 +0100 (CET) Date: Sun, 23 Feb 2003 11:17:09 +0100 From: Wilko Bulte To: "M. Warner Losh" Cc: freebsd-stable@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG Subject: Re: Compaq WL200 wireless card trouble Message-ID: <20030223111709.C21585@freebie.xs4all.nl> References: <20030221212435.A6642@freebie.xs4all.nl> <20030222.144836.71835717.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030222.144836.71835717.imp@bsdimp.com>; from imp@bsdimp.com on Sat, Feb 22, 2003 at 02:48:36PM -0700 X-OS: FreeBSD 4.7-STABLE X-PGP: finger wilko@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 On Sat, Feb 22, 2003 at 02:48:36PM -0700, M. Warner Losh wrote: > In message: <20030221212435.A6642@freebie.xs4all.nl> > Wilko Bulte writes: > : pcic0: port 0xcc00-0xcc03 irq > > This doesn't work before 4.7-stable (and maybe I haven't MFC'd all the > changes form current to make it work). Ah, so I understand it is the PCI-PCMCIA bridge that is most likely the source of the watchdog timeouts? The BP6 machine is at 4.7-stable as of 2 days back or so. I tried 5.0 on another machine (!!) and there the whole machine locks up as soon as it sees the wi. I.e. when it displays the wi0 probe message. To be fair, 4.7R does the same there. Wilko -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 3:44:21 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EE2737B405; Sun, 23 Feb 2003 03:44:17 -0800 (PST) Received: from foem.leiden.webweaving.org (fia224-72.dsl.hccnet.nl [62.251.72.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E70D43FD7; Sun, 23 Feb 2003 03:44:15 -0800 (PST) (envelope-from dirkx@webweaving.org) Received: from foem (foem [10.11.0.2]) by foem.leiden.webweaving.org (8.12.6/8.12.6) with ESMTP id h1NBi2tO066773; Sun, 23 Feb 2003 12:44:02 +0100 (CET) (envelope-from dirkx@webweaving.org) Date: Sun, 23 Feb 2003 12:43:57 +0100 (CET) From: Dirk-Willem van Gulik X-X-Sender: dirkx@foem.leiden.webweaving.org To: Wilko Bulte Cc: "M. Warner Losh" , , Subject: Re: Compaq WL200 wireless card trouble In-Reply-To: <20030223111709.C21585@freebie.xs4all.nl> Message-ID: <20030223123946.W2680-100000@foem.leiden.webweaving.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 Sun, 23 Feb 2003, Wilko Bulte wrote: > Ah, so I understand it is the PCI-PCMCIA bridge that is most likely > the source of the watchdog timeouts? The BP6 machine is at 4.7-stable > as of 2 days back or so. .. > I tried 5.0 on another machine (!!) and there the whole machine locks up > as soon as it sees the wi. I.e. when it displays the wi0 probe message. > To be fair, 4.7R does the same there. The commit you need is: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/pccard/pcic_pci.c.diff?r1=1.122&r2=1.123 the two lines after ' Tell the chip to do its routing thing'. static void -pcic_pci_pd67xx_init(device_t dev) +pcic_pci_pd6729_init(device_t dev) { struct pcic_softc *sc = device_get_softc(dev); - if (sc->csc_route == pcic_iw_pci || sc->func_route == pcic_iw_pci) - device_printf(dev, "PD67xx maybe broken for PCI routing.\n"); + /* + * Tell the chip to do its routing thing. + */ + pcic_pci_pd6729_func(&sc->slots[0], sc->func_route); + pcic_pci_pd6729_csc(&sc->slots[0], sc->csc_route); } Dw. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 6: 2:27 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D17F937B401 for ; Sun, 23 Feb 2003 06:02:26 -0800 (PST) Received: from mta.webmatic.de (mta.webmatic.de [212.78.99.126]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75C6743FAF for ; Sun, 23 Feb 2003 06:02:25 -0800 (PST) (envelope-from freebsd-stable@chef-ingenieur.de) Received: (qmail 18722 invoked from network); 23 Feb 2003 14:02:20 -0000 Received: from unknown (HELO chef-ingenieur.de) (freebsd-stable@chef-ingenieur.de@217.186.19.247) by mta.webmatic.de with RC4-MD5 encrypted SMTP; 23 Feb 2003 14:02:20 -0000 Message-ID: <3E58D4A3.7050708@chef-ingenieur.de> Date: Sun, 23 Feb 2003 15:03:15 +0100 From: Thomas Krause -CI- User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de-AT; rv:1.2.1) Gecko/20021130 X-Accept-Language: de-at, de, en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Unable to intall 4.7 on Acer Acros 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 Hi, I'm unable to intall 4.7-REL on an Acer Acros (Pentium 75, Intel FX-Chipset, 32MB RAM). http://www.uktsupport.co.uk/acer/mb/acv30-1.htm The loader detects 1GB RAM and the setup routine hangs. Any ideas? Regards, Thomas. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 8: 2: 2 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CE4E37B401 for ; Sun, 23 Feb 2003 08:02:01 -0800 (PST) Received: from ns1.rwwa.com (ns1.rwwa.com [66.92.67.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82ED043F3F for ; Sun, 23 Feb 2003 08:02:00 -0800 (PST) (envelope-from witr@rwwa.com) Received: from rwwa.com (harvey.rwwa.com [192.124.97.11]) by ns1.rwwa.com (Postfix) with ESMTP id 6DEC432A6 for ; Sun, 23 Feb 2003 11:01:59 -0500 (EST) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: freebsd-stable@FreeBSD.ORG Subject: Re: Mozilla window won't open after upgrade In-Reply-To: Your message of "Thu, 20 Feb 2003 17:45:51 CST." <3E5568AF.1050100@labs.mot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 23 Feb 2003 11:01:59 -0500 From: Robert Withrow Message-Id: <20030223160159.6DEC432A6@ns1.rwwa.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 For quite some time now, *linux* Mozilla segfaults for me on 4.7R. <~>$ linux-mozilla -v Mozilla/5.0 (X11; U; Linux i386; en-US; rv:1.1) Gecko/20020826, build 2002082612 None of the suggestions in this thread seem to help. Anyone else have this problem? Anyone have a solution? Thanks! --------------------------------------------------------------------- Robert Withrow, R.W. Withrow Associates, Swampscott MA, witr@rwwa.COM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 8:16:34 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A28D37B406 for ; Sun, 23 Feb 2003 08:16:33 -0800 (PST) Received: from hal-4.inet.it (hal-4.inet.it [213.92.5.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C5D343FD7 for ; Sun, 23 Feb 2003 08:16:32 -0800 (PST) (envelope-from curious.corn@katamail.com) Received: from [::ffff:62.211.202.246] by hal-4.inet.it via I-SMTP-4.3.6-430 id ::ffff:62.211.202.246+EYnP2Lffk2; Sun, 23 Feb 2003 17:16:30 +0100 Date: Sun, 23 Feb 2003 17:16:38 +0100 Mime-Version: 1.0 (Apple Message framework v551) Content-Type: text/plain Subject: subscribe From: Edoardo Causarano To: freebsd-stable@FreeBSD.org Content-Transfer-Encoding: 7bit Message-Id: <2FB3AB3F-474A-11D7-B63B-000A956789F6@katamail.com> X-Mailer: Apple Mail (2.551) Sender: owner-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 Sun Feb 23 8:21:21 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D82C37B401; Sun, 23 Feb 2003 08:21:20 -0800 (PST) Received: from grosbein.pp.ru (www2.svzserv.kemerovo.su [213.184.65.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0628443F85; Sun, 23 Feb 2003 08:21:16 -0800 (PST) (envelope-from eugen@grosbein.pp.ru) Received: from grosbein.pp.ru (smmsp@localhost [127.0.0.1]) by grosbein.pp.ru (8.12.7/8.12.7) with ESMTP id h1NGK5Zw001952; Sun, 23 Feb 2003 23:20:05 +0700 (KRAT) (envelope-from eugen@grosbein.pp.ru) Received: (from eugen@localhost) by grosbein.pp.ru (8.12.7/8.12.7/Submit) id h1NGGp9H001675; Sun, 23 Feb 2003 23:16:51 +0700 (KRAT) Date: Sun, 23 Feb 2003 23:16:51 +0700 From: Eugene Grosbein To: stable@freebsd.org Cc: emulation@freebsd.org Subject: vmware2 & parallel port Message-ID: <20030223231651.A1427@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 have dual-boot 4.8-PRERELEASE/Win98SE machine and installed vmware2 from ports. It works basically OK. Now I'm trying to access parallel printer from vmware but it complains at startup that cannot control printer. Meantime, kernel writes to console: linux: 'ioctl' fd=25, cmd=0x60b (' ',11) not implemented Is is fatal? Eugene Grosbein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 9:41:52 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B47137B401 for ; Sun, 23 Feb 2003 09:41:51 -0800 (PST) Received: from nimitz.osl.fast.no (mailoslo.fast.no [217.144.235.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F48A43FAF for ; Sun, 23 Feb 2003 09:41:50 -0800 (PST) (envelope-from Raymond.Wiker@fast.no) Received: from raw.grenland.fast.no.fast.no (raw.grenland.fast.no [192.168.48.104]) by nimitz.osl.fast.no (8.12.3/8.12.3) with ESMTP id h1NHff76008115; Sun, 23 Feb 2003 18:41:41 +0100 (MET) (envelope-from Raymond.Wiker@fast.no) X-Authentication-Warning: nimitz.osl.fast.no: Host raw.grenland.fast.no [192.168.48.104] claimed to be raw.grenland.fast.no.fast.no From: Raymond Wiker MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15961.2003.461479.956760@raw.grenland.fast.no> Date: Sun, 23 Feb 2003 18:41:39 +0100 To: freebsd-stable@freebsd.org Subject: dhclient problem in stable X-Mailer: VM 7.07 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 This problem has actually existed for a while, but I never got round to reporting it. I'm using a Cisco 770 ISDN router to connect to my employer's network. This router is set up with DHCP, so I can connect my various machines to the router, tell them to get their network config from DHCP, and all is dandy. Well, no quite. It seems the router is set up to return 2^32 - 1 as the lease time, which the dhclient code interprets as -1. This crashes at line 792 in /usr/src/contrib/isc-dhcp/client/dhclient.c, at an expression that involves the modulo (%) operator. The reason for the crash is that the rhs of the modulo operation is zero. I can "fix" this by changing the code at line 787 (see patch below). I'm not sure that this is the right solution, though: it may be appropriate to make client->new->renewal an unsigned int instead of a signed one. It is also possible that the config of the Cisco router is out of spec :-) --- /usr/src/contrib/isc-dhcp/client/dhclient.c.org Thu Apr 11 12:16:45 2002 +++ /usr/src/contrib/isc-dhcp/client/dhclient.c Sun Feb 23 18:35:44 2003 @@ -784,7 +784,7 @@ client -> new -> renewal = 0; /* If it wasn't specified by the server, calculate it. */ - if (!client -> new -> renewal) + if (client -> new -> renewal <= 0) client -> new -> renewal = client -> new -> expiry / 2; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 9:47: 8 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70F2537B401 for ; Sun, 23 Feb 2003 09:47:06 -0800 (PST) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBF2643FBD for ; Sun, 23 Feb 2003 09:47:05 -0800 (PST) (envelope-from sam@errno.com) Received: from melange (melange.errno.com [66.127.85.82]) (authenticated bits=0) by ebb.errno.com (8.12.5/8.12.1) with ESMTP id h1NHl5nN064127 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO) for ; Sun, 23 Feb 2003 09:47:05 -0800 (PST)?g (envelope-from sam@errno.com)œ X-Authentication-Warning: ebb.errno.com: Host melange.errno.com [66.127.85.82] claimed to be melange Message-ID: <1a5401c2db63$945db690$52557f42@errno.com> From: "Sam Leffler" To: Subject: iHEADS UP: ipsec packet filtering change Date: Sun, 23 Feb 2003 09:47:05 -0800 Organization: Errno Consulting MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-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 may affect your ipfw/ipf rules. If you are happy with the current behaviour then add IPSEC_FILTERGIF to your kernel config file. Sam ----- Original Message ----- From: "Sam Leffler" To: ; ; Sent: Sunday, February 23, 2003 9:45 AM Subject: cvs commit: src/sys/conf options src/sys/netinet ip_input.c src/sys/i386/conf LINT > sam 2003/02/23 09:45:29 PST > > Modified files: (Branch: RELENG_4) > sys/conf options > sys/netinet ip_input.c > sys/i386/conf LINT > Log: > MFC: IPSEC_FILTERGIF config option > > Add a new config option IPSEC_FILTERGIF to control whether or not > packets coming out of a GIF tunnel are re-processed by ipfw, et. al. > By default they are not reprocessed. With the option they are. > > This reverts 1.214. Prior to that change packets were not re-processed. > After they were which caused problems because packets do not have > distinguishing characteristics (like a special network if) that allows > them to be filtered specially. > > PR: 48159 > Reviewed by: Guido van Rooij > Approved by: re (jhb, murray) > > Revision Changes Path > 1.191.2.47 +1 -0 src/sys/conf/options > http://cvsweb.FreeBSD.org/src/sys/conf/options.diff?r1=1.191.2.46&r2=1.191.2 .47 > 1.749.2.136 +11 -0 src/sys/i386/conf/LINT > http://cvsweb.FreeBSD.org/src/sys/i386/conf/LINT.diff?r1=1.749.2.135&r2=1.74 9.2.136 > 1.130.2.48 +7 -0 src/sys/netinet/ip_input.c > http://cvsweb.FreeBSD.org/src/sys/netinet/ip_input.c.diff?r1=1.130.2.47&r2=1 .130.2.48 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 10:29:53 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 980A537B401 for ; Sun, 23 Feb 2003 10:29:51 -0800 (PST) Received: from fsp1.physik.ruhr-uni-bochum.de (fsp1.physik.ruhr-uni-bochum.de [134.147.168.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8226C43F3F for ; Sun, 23 Feb 2003 10:29:50 -0800 (PST) (envelope-from strattbo@fsp1.physik.ruhr-uni-bochum.de) Received: (from strattbo@localhost) by fsp1.physik.ruhr-uni-bochum.de (8.11.6/8.11.6/SuSE Linux 0.5) id h1NITrl15445 for stable@freebsd.org; Sun, 23 Feb 2003 19:29:53 +0100 Date: Sun, 23 Feb 2003 19:29:53 +0100 From: Thomas Stratmann To: stable@freebsd.org Subject: Build of texinfo/makeinfo and others broken? Message-ID: <20030223192953.A15351@fsp1.physik.ruhr-uni-bochum.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.22.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, make buildworld stops on makeinfo as shown below. The same strange things happen for other tools in gnu/ , just makeinfo is the first of them to be hit by buildworld. That line 543 probably should expand to '"/usr/share/locale";' which should be a legal C NOP. Maybe quoting is wrong on the way to the cc commandline so the '"' are dropped or something. I searched the archives but found nothing related, so I seem to be the only one to have this problem. It's not unlikely that some config files are broken (had severe fs damage after hardware related crashes; fsck did its best). Sources are -stable from a few days ago. Any ideas? Cheers Thomas Stratmann ===> gnu/usr.bin/texinfo/makeinfo cc -O -pipe -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I/usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo -I/usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/lib -D__FBSDID=__RCSID -c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/makeinfo.c /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/makeinfo.c: In function `main': /usr/src/gnu/usr.bin/texinfo/makeinfo/../../../../contrib/texinfo/makeinfo/makeinfo.c:543: syntax error before `/' *** Error code 1 Stop in /usr/src/gnu/usr.bin/texinfo/makeinfo. *** Error code 1 Stop in /usr/src/gnu/usr.bin/texinfo. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 11:52:37 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A753E37B401; Sun, 23 Feb 2003 11:52:35 -0800 (PST) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23BCF43F93; Sun, 23 Feb 2003 11:52:34 -0800 (PST) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.7/8.12.7) with ESMTP id h1NJqUgL024290; Sun, 23 Feb 2003 20:52:30 +0100 (CET) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.7/8.12.7/Submit) id h1NJqU2i024289; Sun, 23 Feb 2003 20:52:30 +0100 (CET) Date: Sun, 23 Feb 2003 20:52:30 +0100 From: Wilko Bulte To: Dirk-Willem van Gulik Cc: "M. Warner Losh" , freebsd-stable@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG Subject: Re: Compaq WL200 wireless card trouble Message-ID: <20030223205229.C24205@freebie.xs4all.nl> References: <20030223111709.C21585@freebie.xs4all.nl> <20030223123946.W2680-100000@foem.leiden.webweaving.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030223123946.W2680-100000@foem.leiden.webweaving.org>; from dirkx@webweaving.org on Sun, Feb 23, 2003 at 12:43:57PM +0100 X-OS: FreeBSD 4.7-STABLE X-PGP: finger wilko@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 On Sun, Feb 23, 2003 at 12:43:57PM +0100, Dirk-Willem van Gulik wrote: > > On Sun, 23 Feb 2003, Wilko Bulte wrote: > > > Ah, so I understand it is the PCI-PCMCIA bridge that is most likely > > the source of the watchdog timeouts? The BP6 machine is at 4.7-stable > > as of 2 days back or so. > .. > > I tried 5.0 on another machine (!!) and there the whole machine locks up > > as soon as it sees the wi. I.e. when it displays the wi0 probe message. > > To be fair, 4.7R does the same there. > > The commit you need is: > > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/pccard/pcic_pci.c.diff?r1=1.122&r2=1.123 > > the two lines after ' Tell the chip to do its routing thing'. > > static void > -pcic_pci_pd67xx_init(device_t dev) > +pcic_pci_pd6729_init(device_t dev) > { > struct pcic_softc *sc = device_get_softc(dev); > > - if (sc->csc_route == pcic_iw_pci || sc->func_route == pcic_iw_pci) > - device_printf(dev, "PD67xx maybe broken for PCI routing.\n"); > + /* > + * Tell the chip to do its routing thing. > + */ > + pcic_pci_pd6729_func(&sc->slots[0], sc->func_route); > + pcic_pci_pd6729_csc(&sc->slots[0], sc->csc_route); It seems I'm getting watchdog timeouts after putting this patch in 4.7-stable. One needs to s/pd6729/pd67xx/ to use it on -stable by the way. Other ideas? -- | / o / /_ _ wilko@tcja.nl - stichting TCJA, Arnhem |/|/ / / /( (_) Bulte To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 12:13: 6 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BF1137B401; Sun, 23 Feb 2003 12:13:02 -0800 (PST) Received: from mta08bw.bigpond.com (mta08bw.bigpond.com [144.135.24.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DDCD43FD7; Sun, 23 Feb 2003 12:13:00 -0800 (PST) (envelope-from sigemt@yahoo.com.au) Received: from zhadum.dnsalias.net ([144.135.24.78]) by mta08bw.bigpond.com (Netscape Messaging Server 4.15 mta08bw Jul 16 2002 22:47:55) with SMTP id HAS2TM00.1AP; Mon, 24 Feb 2003 06:12:58 +1000 Received: from CPE-144-137-123-80.nsw.bigpond.net.au ([144.137.123.80]) by bwmam04.mailsvc.email.bigpond.com(MailRouter V3.0n 35/5803856); 24 Feb 2003 06:13:00 Received: from psi.starfleet.org.au (psi.starfleet.org.au [172.16.0.3]) by arthur.starfleet.org.au (Postfix) with ESMTP id 18C339459; Mon, 24 Feb 2003 07:12:59 +1100 Received: by psi.starfleet.org.au (Postfix, from userid 1000) id 1D9BD454; Mon, 24 Feb 2003 07:12:30 +1100 Date: Mon, 24 Feb 2003 07:12:30 +1100 From: Rudolph Pereira To: stable@freebsd.org, net@freebsd.org Subject: wi card problem on 440lx motherboard Message-ID: <20030223201230.GB350@starfleet.org.au> 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 am trying to get a wireless PCI card working on an old PC with an intel 440lx chipset and it appears that the card is only intermittently working. First, the specs: motherboard: msi-6111 (440lx chipset) wi pci card: sparklan wl-360f; pciconf output is: wi0@pci0:16:0: class=0x028000 card=0x38731260 chip=0x38731260 rev=0x01 hdr=0x00 vendor = 'Intersil Americas Inc (Was: Harris Semiconductor)' device = 'PRISM 2.5 802.11b 11Mbps Wireless Controller' class = network I'm testing by pinging between this machine and a wi in my laptop (which stays constant throughout my tests), the cards are in ad-hoc mode, 11Mbps, and about 2 metres from each other with no obvious sources of interference. results: - if I put the card into another (newer, completely different configuration) machine running 4-stable, everything works fine - if I ping with a freebsd 4-stable or 5-current configuration on the problem machine, I get ~20% packet loss (this is just a straight ping), with the dropped packets being corrupted as described below - if I run the same ping test under netbsd (1.6), there's at most 3% packet loss, but usually none The corruption looks random. I've only seen it in packet headers (e.g checksums, protocols etc), but I can't say it's only happening there. Examples: (laptop == 192.168.0.2, faulty card == 192.168.0.1); I've listed the tcpdump output from the src first 1. 06:19:14.698259 192.168.0.2 > 192.168.0.1: icmp: echo request (ttl 64, id 51178, len 84) 4500 0054 c7ea 0000 4001 316b c0a8 0002 c0a8 0001 0800 04f0 0e09 0500 b21e 593e dfa6 0a00 0809 0a0b 0c0d 0e0f 1011 1213 1415 1617 1819 1a1b 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 2c2d 2e2f 3031 3233 3435 06:19:13.419329 truncated-ip - 51094 bytes missing! 192.168.0.2 > 192.168.0.1: icmp: echo request (ttl 64, id 51178, len 51178, bad cksum 316b!) 4500 c7ea c7ea 0000 4001 316b c0a8 0002 c0a8 0001 0800 04f0 0e09 0500 b21e 593e dfa6 0a00 0809 0a0b 0c0d 0e0f 1011 1213 1415 1617 1819 1a1b 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 2c2d 2e2f 3031 3233 3435 2. 06:31:56.804103 192.168.0.2 > 192.168.0.1: icmp: echo request (ttl 64, id 53536, len 84) 4500 0054 d120 0000 4001 2835 c0a8 0002 c0a8 0001 0800 7f4c 230c 0500 ac21 593e 5444 0c00 0809 0a0b 0c0d 0e0f 1011 1213 1415 1617 1819 1a1b 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 2c2d 2e2f 3031 3233 3435 06:31:56.471654 192.168.0.2 > 192.168.0.1: (frag 53536:64@8) (ttl 64, len 84, bad cksum 2835!) 4500 0054 d120 4001 4001 2835 c0a8 0002 c0a8 0001 0800 7f4c 230c 0500 ac21 593e 5444 0c00 0809 0a0b 0c0d 0e0f 1011 1213 1415 1617 1819 1a1b 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 2c2d 2e2f 3031 3233 3435 3. 06:41:05.800243 bad-hlen 0 0054 0054 d7de 0000 4001 2177 c0a8 0002 c0a8 0001 0000 7b6f 3d01 0300 d123 593e 232a 0c00 0809 0a0b 0c0d 0e0f 1011 1213 1415 1617 1819 1a1b 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 2c2d 2e2f 3031 3233 3435 06:41:06.119715 192.168.0.2 > 192.168.0.1: icmp: echo reply (ttl 64, id 55262, len 84) 4500 0054 d7de 0000 4001 2177 c0a8 0002 c0a8 0001 0000 7b6f 3d01 0300 d123 593e 232a 0c00 0809 0a0b 0c0d 0e0f 1011 1213 1415 1617 1819 1a1b 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 2c2d 2e2f 3031 3233 3435 4. 06:43:32.892415 192.168.0.2 > 192.168.0.1: gre gre-proto-0xAA06 (ttl 32, id 55590, len 84, bad cksum 202f!) 4500 0054 d926 0000 202f 202f c0a8 0002 c0a8 0001 0000 aa06 3e01 0100 6424 593e 6192 0d00 0809 0a0b 0c0d 0e0f 1011 1213 1415 1617 1819 1a1b 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 2c2d 2e2f 3031 3233 3435 06:43:33.208366 192.168.0.2 > 192.168.0.1: icmp: echo reply (ttl 64, id 55590, len 84) 4500 0054 d926 0000 4001 202f c0a8 0002 c0a8 0001 0000 aa06 3e01 0100 6424 593e 6192 0d00 0809 0a0b 0c0d 0e0f 1011 1213 1415 1617 1819 1a1b 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 2c2d 2e2f 3031 3233 3435 Lastly, the message "wi0: oversized packet received ...." is occasionally displayed on the problematic machine's console. So, does anyone have any ideas about this? I've tried putting some printfs in the wi driver and it _seems_ like the corruption/duplication is happening before it gets to the driver, but I'm not a kernel hacker and could've got it wrong (then again, corruption there would be obvious to other wi users I would think). Any suggestions on how I can debug this? Thanks in advance. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 12:15: 2 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D796537B401; Sun, 23 Feb 2003 12:15:00 -0800 (PST) Received: from foem.leiden.webweaving.org (fia224-72.dsl.hccnet.nl [62.251.72.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD7CF43FAF; Sun, 23 Feb 2003 12:14:58 -0800 (PST) (envelope-from dirkx@webweaving.org) Received: from foem (foem [10.11.0.2]) by foem.leiden.webweaving.org (8.12.6/8.12.6) with ESMTP id h1NKEntO086568; Sun, 23 Feb 2003 21:14:49 +0100 (CET) (envelope-from dirkx@webweaving.org) Date: Sun, 23 Feb 2003 21:14:44 +0100 (CET) From: Dirk-Willem van Gulik X-X-Sender: dirkx@foem.leiden.webweaving.org To: Wilko Bulte Cc: "M. Warner Losh" , , Subject: Re: Compaq WL200 wireless card trouble In-Reply-To: <20030223205229.C24205@freebie.xs4all.nl> Message-ID: <20030223211317.R2680-100000@foem.leiden.webweaving.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 > It seems I'm getting watchdog timeouts after putting this patch in > 4.7-stable. One needs to s/pd6729/pd67xx/ to use it on -stable by the way. That s/// would be me being careless with my cut and paste. But -with- that patch we've been using it on a fairly large scale reliably. So I'd look at motherboard/bios issues at this stage. Given that you're dutch; www.wirelessleiden.nl -> WiKi has most info. Dw To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 14: 3:51 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A675737B401; Sun, 23 Feb 2003 14:03:49 -0800 (PST) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A2AF43FB1; Sun, 23 Feb 2003 14:03:48 -0800 (PST) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.7/8.12.7) with ESMTP id h1NM3jgL025348; Sun, 23 Feb 2003 23:03:45 +0100 (CET) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.7/8.12.7/Submit) id h1NM3jVH025347; Sun, 23 Feb 2003 23:03:45 +0100 (CET) Date: Sun, 23 Feb 2003 23:03:45 +0100 From: Wilko Bulte To: Dirk-Willem van Gulik Cc: "M. Warner Losh" , freebsd-stable@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG Subject: Re: Compaq WL200 wireless card trouble Message-ID: <20030223230345.D25190@freebie.xs4all.nl> References: <20030223205229.C24205@freebie.xs4all.nl> <20030223211317.R2680-100000@foem.leiden.webweaving.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030223211317.R2680-100000@foem.leiden.webweaving.org>; from dirkx@webweaving.org on Sun, Feb 23, 2003 at 09:14:44PM +0100 X-OS: FreeBSD 4.7-STABLE X-PGP: finger wilko@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 On Sun, Feb 23, 2003 at 09:14:44PM +0100, Dirk-Willem van Gulik wrote: > > > It seems I'm getting watchdog timeouts after putting this patch in > > 4.7-stable. One needs to s/pd6729/pd67xx/ to use it on -stable by the way. > > That s/// would be me being careless with my cut and paste. > > But -with- that patch we've been using it on a fairly large scale > reliably. So I'd look at motherboard/bios issues at this stage. Given that > you're dutch; www.wirelessleiden.nl -> WiKi has most info. Digging thru that. Did already before to be honest. Do you per chance know what firmware W-Leiden has loaded on their WL200? -- | / o / /_ _ |/|/ / / /( (_) Bulte To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 15:35: 7 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 754AB37B401; Sun, 23 Feb 2003 15:35:04 -0800 (PST) Received: from ms-smtp-02.texas.rr.com (ms-smtp-02.texas.rr.com [24.93.36.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7081343FA3; Sun, 23 Feb 2003 15:35:03 -0800 (PST) (envelope-from incomingforward@cs.com) Received: from mail.satx.rr.com (mcis-12.texas.rr.com [24.93.36.42]) by ms-smtp-02.texas.rr.com (8.12.5/8.12.2) with ESMTP id h1J5HTTu010269; Wed, 19 Feb 2003 00:20:16 -0500 (EST) Received: from smtp0351.mail.yahoo.com ([200.33.156.37]) by mail.satx.rr.com with Microsoft SMTPSVC(5.5.1877.757.75); Tue, 18 Feb 2003 22:55:50 -0600 Date: Wed, 19 Feb 2003 04:54:38 GMT From: incomingforward@cs.com X-Priority: 3 To: freebsd-hackers@freebsd.org Subject: freebsd-hackers, LIVE FROM WALL STREET: VICC Test Results Are In... Mime-Version: 1.0 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <011815055041323MCIS-12@mail.satx.rr.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 freebsd-hackers@freebsd.org

If you bought into our last recommendation (CIMG) early enough you had an excellent opportunity to make substantial gains (from .90 to 1.65 in just the first day). Now is your chance to do the same with our newest pick: VICC. To find out more go to Live From the Street.

If you no longer want to receive information from us just go to tallrhe@cs.com.

  To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 15:48:57 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D373637B401 for ; Sun, 23 Feb 2003 15:48:55 -0800 (PST) Received: from tumnus.narnia.pp.se (as2-6-8.has.s.bonet.se [194.237.241.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D0F843F93 for ; Sun, 23 Feb 2003 15:48:54 -0800 (PST) (envelope-from Bernt.Nilsson@abc.se) Received: from napoleon.cats.narnia.pp.se (napoleon.cats.narnia.pp.se [172.17.17.55]) by toulouse.cats.narnia.pp.se (8.12.6/8.12.5) with ESMTP id h1JLcOMl005895 for ; Wed, 19 Feb 2003 22:38:24 +0100 (CET) (envelope-from Bernt.Nilsson@abc.se) Content-Type: text/plain; charset="iso-8859-1" From: Bernt Nilsson To: freebsd-stable@freebsd.org Subject: Lost FireWire-support Date: Wed, 19 Feb 2003 22:34:01 +0100 User-Agent: KMail/1.4.3 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200302182320.53865.bernt@narnia.pp.se> Sender: owner-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 been using 5.0-CURRENT for maybe a month by now. About two weeks=20 ago I had a working FireWire connection with my LaCie PocketDrive, but=20 this was lost when I updated a week ago. What can I do to get my=20 FireWire working again? Do I wait for 5.1? Another matter is support for the ASUS A7N8X Deluxe motherboard I have.=20 There are several "entries" in my dmesg for which there is no support=20 now: bash-2.05b$ grep driver /var/run/dmesg.boot pci0: at device 0.1 (no driver attached) pci0: at device 0.2 (no driver attached) pci0: at device 0.3 (no driver attached) pci0: at device 0.4 (no driver attached) pci0: at device 0.5 (no driver attached) pci0: at device 1.1 (no driver attached) pci0: at device 2.2 (no driver attached) pci0: at device 4.0 (no driver attached) pci0: at device 5.0 (no driver attached) pci3: at device 0.0 (no driver attached) I think I know about most of these, but not "memory, RAM". Is that for=20 the dual-DDR memory controller on the A7N8X? Does anyone here know if=20 this will be supported in the near future? Thanks, Bernt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sun Feb 23 16:48:23 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF0B437B446 for ; Sun, 23 Feb 2003 16:48:16 -0800 (PST) Received: from sccrmhc01.attbi.com (sccrmhc01.attbi.com [204.127.202.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB7EB43FB1 for ; Sun, 23 Feb 2003 16:48:15 -0800 (PST) (envelope-from jrm@crackpot.org) Received: from kenny.wirgl.net (c-24-118-184-251.mn.client2.attbi.com[24.118.184.251]) by sccrmhc01.attbi.com (sccrmhc01) with ESMTP id <2003022400481400100r6ldue>; Mon, 24 Feb 2003 00:48:14 +0000 Received: from benny.wirgl.net (benny.wirgl.net [192.168.130.131]) by kenny.wirgl.net (8.12.6/8.12.6) with ESMTP id h1O0mDrY024133 for ; Sun, 23 Feb 2003 18:48:13 -0600 (CST) (envelope-from jrm@crackpot.org) Received: from benny.wirgl.net (localhost [127.0.0.1]) by benny.wirgl.net (8.12.7/8.12.6) with ESMTP id h1O0mDoT017935 for ; Sun, 23 Feb 2003 18:48:13 -0600 (CST) (envelope-from jrm@crackpot.org) Received: (from jrm@localhost) by benny.wirgl.net (8.12.7/8.12.7/Submit) id h1O0mCtG017934 for freebsd-stable@freebsd.org; Sun, 23 Feb 2003 18:48:12 -0600 (CST) X-Authentication-Warning: benny.wirgl.net: jrm set sender to jrm@crackpot.org using -f Subject: burncd problem with NEC NR-7500A CD burner in DAO mode From: "John R. Makosky" To: freebsd-stable@freebsd.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Organization: Message-Id: <1046047691.17201.19.camel@benny.wirgl.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 23 Feb 2003 18:48:12 -0600 Sender: owner-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, When attempting to burn audio tracks to CD-R in DAO mode with an NEC NR-7500A CD burner, I get errors, regardless of media used, and burning speed. The same hardware works fine under Linux, using cdrecord. I am able to burn both data and audio in non-DAO mode with no problems. burncd output: ------------- # burncd -f /dev/acd0c -s 8 -v -d audio *.raw fixate adding type 0x00 file audio_01.raw size 149859 KB 65245 blocks adding type 0x00 file audio_02.raw size 97353 KB 42385 blocks adding type 0x00 file audio_03.raw size 43445 KB 18915 blocks adding type 0x00 file audio_04.raw size 57518 KB 25042 blocks adding type 0x00 file audio_05.raw size 50584 KB 22023 blocks adding type 0x00 file audio_06.raw size 97180 KB 42310 blocks adding type 0x00 file audio_07.raw size 51684 KB 22502 blocks adding type 0x00 file audio_08.raw size 80500 KB 35048 blocks adding type 0x00 file audio_09.raw size 96278 KB 41917 blocks adding type 0x00 file audio_10.raw size 81883 KB 35650 blocks next writeable LBA 0 CUE sheet: 01 00 00 01 00 00 02 00 01 01 01 00 00 00 04 00 01 02 00 00 00 0e 21 46 01 02 01 00 00 0e 23 46 01 03 00 00 00 17 3b 05 01 03 01 00 00 18 01 05 01 04 00 00 00 1c 0b 14 01 04 01 00 00 1c 0d 14 01 05 00 00 00 21 2d 0c 01 05 01 00 00 21 2f 0c 01 06 00 00 00 26 26 3c 01 06 01 00 00 26 28 3c 01 07 00 00 00 30 02 46 01 07 01 00 00 30 04 46 01 08 00 00 00 35 02 48 01 08 01 00 00 35 04 48 01 09 00 00 00 3c 32 14 01 09 01 00 00 3c 34 14 01 0a 00 00 00 46 09 0c 01 0a 01 00 00 46 0b 0c 01 aa 01 01 00 4e 04 25 addr = 150 size = 153456240 blocks = 65245 writing from file audio_01.raw size 149859 KB only wrote -1 of 37632 bytes err=5 addr = 65395 size = 99689520 blocks = 42385 writing from file audio_02.raw size 97353 KB only wrote -1 of 37632 bytes err=5 addr = 107780 size = 44488080 blocks = 18915 writing from file audio_03.raw size 43445 KB only wrote -1 of 37632 bytes err=5 addr = 126695 size = 58898784 blocks = 25042 writing from file audio_04.raw size 57518 KB only wrote -1 of 37632 bytes err=5 addr = 151737 size = 51798096 blocks = 22023 writing from file audio_05.raw size 50584 KB only wrote -1 of 37632 bytes err=5 addr = 173760 size = 99513120 blocks = 42310 writing from file audio_06.raw size 97180 KB only wrote -1 of 37632 bytes err=5 addr = 216070 size = 52924704 blocks = 22502 writing from file audio_07.raw size 51684 KB only wrote -1 of 37632 bytes err=5 addr = 238572 size = 82432896 blocks = 35048 writing from file audio_08.raw size 80500 KB only wrote -1 of 37632 bytes err=5 addr = 273620 size = 98588784 blocks = 41917 writing from file audio_09.raw size 96278 KB only wrote -1 of 37632 bytes err=5 addr = 315537 size = 83848800 blocks = 35650 writing from file audio_10.raw size 81883 KB only wrote -1 of 37632 bytes err=5 ------------------------------------------------------------------------------- dmesg output: ------------ Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.7-STABLE #1: Tue Feb 18 23:04:36 CST 2003 root@benny:/usr/obj/usr/src/sys/BENNY Timecounter "i8254" frequency 1193182 Hz CPU: AMD-K6(tm) 3D+ Processor (451.03-MHz 586-class CPU) Origin = "AuthenticAMD" Id = 0x591 Stepping = 1 Features=0x8021bf AMD Features=0x80000800 real memory = 268369920 (262080K bytes) avail memory = 257167360 (251140K bytes) Preloaded elf kernel "kernel" at 0xc03e7000. K6-family MTRR support enabled (2 registers) md0: Malloc disk Using $PIR table, 7 entries at 0xc00fdde0 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 agp0: mem 0xd8000000-0xdbffffff at device 0.0 on pci0 pcib2: at device 1.0 on pci0 pci1: on pcib2 pci1: at 0.0 irq 11 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xe000-0xe00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xe400-0xe41f irq 10 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: (vendor=0x1106, dev=0x3050) at 7.3 sis0: port 0xe800-0xe8ff mem 0xe3000000-0xe3000fff irq 5 at device 18.0 on pci0 sis0: Ethernet address: 00:02:e3:05:47:5d miibus0: on sis0 ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pcm0: port 0xec00-0xec3f irq 9 at device 19.0 on pci0 pcm0: pcib1: on motherboard pci2: on pcib1 orm0:

                óåòôéæéëáãéñ âåú ðòïâìåí

òÕËÏ×ÏÄÉÔÅÌÑÍ ÐÒÅÄÐÒÉÑÔÉÊ

ëÏÎÓÕÌØÔÁÃÉÏÎÎÙÊ ÃÅÎÔÒ “áòâ - óÅÒÔÉÆÉËÁÔ” ÐÒÅÄÌÁÇÁÅÔ ÐÏÌÎÙÊ ËÏÍÐÌÅËÓ ÕÓÌÕÇ ÐÏ ÓÅÒÔÉÆÉËÁÃÉÉ, ÎÁÞÉÎÁÑ Ó ÓÏÇÌÁÓÏ×ÁÎÉÑ ÎÅÏÂÈÏÄÉÍÙÈ ÄÏËÕÍÅÎÔÏ× × ÒÁÚÌÉÞÎÙÈ ÉÎÓÔÁÎÃÉÑÈ É ÚÁËÁÎÞÉ×ÁÑ ÐÏÌÕÞÅÎÉÅÍ ×ÓÅÈ ÎÅÏÂÈÏÄÉÍÙÈ ÓÅÒÔÉÆÉËÁÔÏ×, ÌÉÃÅÎÚÉÊ, ÇÉÇÉÅÎÉÞÅÓËÉÈ ÚÁËÌÀÞÅÎÉÊ É Ô.Ä. ÐÏÚ×ÏÌÑÀÝÉÈ ÏÒÇÁÎÉÚÁÃÉÑÍ ÂÅÓÐÒÅÐÑÔÓÔ×ÅÎÎÏ ÒÅÁÌÉÚÏ×Ù×ÁÔØ Ó×ÏÊ ÔÏ×ÁÒ ÉÌÉ ÕÓÌÕÇÕ.  íÙ ÃÅÎÉÍ ÷ÁÛÅ ×ÒÅÍÑ. ÷Ù ÍÏÖÅÔÅ ÐÏÌÕÞÉÔØ ×ÓÅ ÎÅÏÂÈÏÄÉÍÙÅ ÓÅÒÔÉÆÉËÁÔÙ, ÇÉÇÉÅÎÉÞÅÓËÉÅ ÚÁËÌÀÞÅÎÉÑ É ÄÒÕÇÉÅ ÄÏËÕÍÅÎÔÙ ÎÅ ×ÙÈÏÄÑ ÉÚ ÏÆÉÓÁ. ëÒÏÍÅ ×ÙÛÅÐÅÒÅÞÉÓÌÅÎÎÏÇÏ, ÏÒÇÁÎÉÚÁÃÉÉ, ÏÂÒÁÔÉ×ÛÉÅÓÑ × ÎÁÛÕ ÏÒÇÁÎÉÚÁÃÉÀ, ×ÓÅÇÄÁ ÐÏÌÕÞÁÔ ×ÓÅ ÎÅÏÂÈÏÄÉÍÙÅ ËÏÎÓÕÌØÔÁÃÉÉ É ÒÅËÏÍÅÎÄÁÃÉÉ × ÏÂÌÁÓÔÉ ÓÅÒÔÉÆÉËÁÃÉÉ. îÁÛÁ ÏÒÇÁÎÉÚÁÃÉÑ ÐÒÅÄÌÁÇÁÅÔ ÷ÁÍ ×ÏÓÐÏÌØÚÏ×ÁÔØÓÑ ËÏÍÐÌÅËÓÏÍ ÕÓÌÕÇ × ÓÌÅÄÕÀÝÉÈ ÏÂÌÁÓÔÑÈ:

ïÆÏÒÍÌÅÎÉÅ ÔÁÍÏÖÅÎÎÙÈ ÓÅÒÔÉÆÉËÁÔÏ×.
ïÆÏÒÍÌÅÎÉÅ ÓÁÎÉÔÁÒÎÏ-ÜÐÉÄÅÍÉÏÌÏÇÉÞÅÓËÉÈ ÚÁËÌÀÞÅÎÉÊ ÎÁ ÐÒÏÄÕËÃÉÀ
óÅÒÔÉÆÉËÁÃÉÑ ÉÍÐÏÒÔÎÏÊ ÐÒÏÄÕËÃÉÉ.
óÅÒÔÉÆÉËÁÃÉÑ ÐÒÏÍÙÛÌÅÎÎÙÈ ÔÏ×ÁÒÏ× É ÉÚÄÅÌÉÊ.
óÅÒÔÉÆÉËÁÃÉÑ ÜÌÅËÔÒÏÏÂÏÒÕÄÏ×ÁÎÉÑ É ÐÒÉÂÏÒÏ×.
óÅÒÔÉÆÉËÁÃÉÑ ÓÒÅÄÓÔ× ÂÙÔÏ×ÏÊ ÈÉÍÉÉ.
óÅÒÔÉÆÉËÁÃÉÑ ËÏÓÍÅÔÉÞÅÓËÏÊ ÐÒÏÄÕËÃÉÉ.
óÅÒÔÉÆÉËÁÃÉÑ ÓÒÅÄÓÔ× ÌÉÞÎÏÊ ÇÉÇÉÅÎÙ.
óÅÒÔÉÆÉËÁÃÉÑ ÕÓÌÕÇ ÏÂÝÅÓÔ×ÅÎÎÏÇÏ ÐÉÔÁÎÉÑ.
óÅÒÔÉÆÉËÁÃÉÑ ÐÒÏÉÚ×ÏÄÓÔ×Á ÐÒÏÄÕËÔÏ× ÐÉÔÁÎÉÑ.
óÅÒÔÉÆÉËÁÃÉÑ ÕÓÌÕÇ ÒÏÚÎÉÞÎÏÊ ÔÏÒÇÏ×ÌÉ.
óÅÒÔÉÆÉËÁÃÉÑ ÕÓÌÕÇ ÐÁÒÉËÍÁÈÅÒÓËÉÈ É ËÏÓÍÅÔÉÞÅÓËÉÈ ÓÁÌÏÎÏ×.
óÅÒÔÉÆÉËÁÃÉÑ ÐÒÏÉÚ×ÏÄÓÔ×Á ËÏÓÍÅÔÉÞÅÓËÏÊ ÐÒÏÄÕËÃÉÉ, ÓÒÅÄÓÔ× ÂÙÔÏ×ÏÊ ÈÉÍÉÉ, ÓÒÅÄÓÔ× ÌÉÞÎÏÊ ÇÉÇÉÅÎÙ.
óÅÒÔÉÆÉËÁÃÉÑ ÐÒÏÉÚ×ÏÄÓÔ×Á ÐÒÏÍÙÛÌÅÎÎÙÈ ÔÏ×ÁÒÏ×.

× íÏÓË×Å:(095) 505-09-71;

(095) 243-95-82

e-mail testh@mail.ru

× óÁÎËÔ-ðÅÔÅÒÂÕÒÇÅ:

 (812) 322-55-59,  

(812) 272-22-67 www.certificate.sp.ru                                            e-mail : certificate@mail.ru ; certificate@sp.ru

 

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 24 15:12:20 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B705937B401 for ; Mon, 24 Feb 2003 15:12:18 -0800 (PST) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id E959543F93 for ; Mon, 24 Feb 2003 15:12:15 -0800 (PST) (envelope-from doconnor@gsoft.com.au) Received: from [127.0.0.1] (localhost [127.0.0.1]) by cain.gsoft.com.au (8.12.4/8.12.6) with ESMTP id h1ONC4js075838; Tue, 25 Feb 2003 09:42:06 +1030 (CST) (envelope-from doconnor@gsoft.com.au) X-Authentication-Warning: cain.gsoft.com.au: Host localhost [127.0.0.1] claimed to be [127.0.0.1] Subject: Re: Maxtor Firewire Drives From: "Daniel O'Connor" To: Wes Peters Cc: Tenebrae , Charles Sprickman , FreeBSD Stable List In-Reply-To: <200302240959.03513.wes@softweyr.com> References: <20030222163739.C16106-100000@steeltoe.niceboots.com> <1046049424.26736.1.camel@chowder.gsoft.com.au> <200302240959.03513.wes@softweyr.com> Content-Type: text/plain Organization: Message-Id: <1046128322.30627.5.camel@chowder.gsoft.com.au> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 25 Feb 2003 09:42:02 +1030 Content-Transfer-Encoding: 7bit X-Spam-Score: -0.2 () CARRIAGE_RETURNS,IN_REP_TO,REFERENCES,SPAM_PHRASE_00_01 X-Scanned-By: MIMEDefang 2.16 (www . roaringpenguin . com / 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 Tue, 2003-02-25 at 04:29, Wes Peters wrote: > Please post information on your known good source. A known good provider of > PCI firewire cards might be helpful for those whose motherboard features > faulty or NO support for firewire, if anyone can recommend one or more of > those... OK, well I am using an Epox 8K9AI, which has a VIA North and South Bridge (KT400 chipset). The firewire card box has 'SOHO1394' and '1394 PCI Host Card' written on it. The card has 'HF-1394Li Ver: 1.0'. It's a 4 port card (3 external, 1 internal). The chip on it is labelled -> Agere FW323-05 1394A LINK/PHY 0244S 3970525 I believe the manufacturer is http://www.hei-sei.com.tw/hf1394l.html (Looks identical :) The enclosure is made by Mapower, it is a MAP-63C. -- 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 Mon Feb 24 15:12:37 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CCFD37B401 for ; Mon, 24 Feb 2003 15:12:33 -0800 (PST) Received: from sherryl.salk.edu (sherryl.snl.salk.edu [198.202.70.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC08E43FA3 for ; Mon, 24 Feb 2003 15:12:32 -0800 (PST) (envelope-from jorge@salk.edu) Received: from merckx.snl.salk.edu (merckx.snl.salk.edu [198.202.70.90]) by sherryl.salk.edu (8.12.1/8.12.1) with ESMTP id h1ONCV6n015563 for ; Mon, 24 Feb 2003 15:12:31 -0800 (PST) Date: Mon, 24 Feb 2003 15:12:30 -0800 (PST) From: Jorge Aldana X-X-Sender: jorge@merckx.snl.salk.edu To: freebsd-stable@freebsd.org Subject: Re: Matlab 6.5 R13 installation notes (fwd) Message-ID: <20030224151114.H13770-100000@merckx.snl.salk.edu> 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 No reply from the Emualtion group so I ask here now. Jorge ---------- Forwarded message ---------- Date: Thu, 13 Feb 2003 18:10:39 -0800 (PST) From: Jorge Aldana To: freebsd-emulation@FreeBSD.ORG Cc: mat@cnd.mcgill.ca Subject: Re: Matlab 6.5 R13 installation notes Has there been a decision on this code segement? Jorge ---------- Forwarded message ---------- Date: Thu, 7 Nov 2002 13:39:00 -0500 From: Mathew Kanner To: freebsd-emulation@FreeBSD.ORG Cc: Mathew Kanner Subject: Matlab 6.5 R13 installation notes Hello, The following is what I had to do to install and run Matlab with linux-base-7. Could someone please follow-up on http://www.FreeBSD.org/cgi/query-pr.cgi?pr=kern/45023 (patch #1) and http://www.FreeBSD.org/cgi/query-pr.cgi?pr=kern/42457 (patch #2). Notes: Two kernel patches are required and the default java doesn't work. Java jre1.3.1 dies with a thread problem and jre1.1.8 hangs on exit without patch #2. FlexLM doesn't run without patch #1. Matlab no-longer requires the /dev/ptmx and the unix command works. Installation (assumes kernel patches are done) % xhost + localhost % su % mount Unix installation CD #1 % /compat/linux/bin/bash % run install found on cd -Install to /usr/local/matlab6.13 -Cancel the license editor, cp your license to /usr/local/matlab6.13/etc/license.dat click ok (or yes), and your license should show up with the right SERVER and VENDOR lines. I choose to create the links in /usr/local/bin Complete the install. % (Optional) If you want additional toolboxes, eject the cd, mount the 2nd Unix CD, re-run the installation and specify the same path as before. % pw useradd -u 81 -n flexlm -s /bin/sh -d / (Creates a user for flexlm) % sed -i.bak -e's,^#\!.*/bin/sh$,#! /compat/linux/bin/bash,' /usr/local/matlab6.13/etc/lm* /usr/local/matlab6.13/bin/matlab /usr/local/matlab6.13/bin/mex (Set linux emulation, or you could hack the arch.sh, or manually specify the arch) % rm /usr/local/matlab6.13/sys/java/jre/glnx86 % ln -s /usr/local/matlab6.13/sys/java/jre/glnx86/jre1.1.8/ /usr/local/matlab6.13/sys/java/jre/glnx86/jre (Changes the default java to one that works) % /usr/local/matlab6.13/etc/lmstart -u flexlm (Start FlexLM) % as regular user, run matlab to test. Attached is two patches anda start-up script I use in /usr/local/etc/rc.d to automatically start flexlm. --Mat PS, please CC as I'm not on the list -- Captain Capacitor: Shiver me templates! (ReBoot) --- /usr/src/sys/compat/linux/linux_file.c Mon Nov 5 14:08:22 2001 +++ /usr/src/sys/compat/linux/linux_file.c.new Thu Nov 7 02:16:51 2002 @@ -766,8 +766,8 @@ } bsd_flock->l_whence = linux_flock->l_whence; bsd_flock->l_start = (off_t)linux_flock->l_start; - bsd_flock->l_len = (off_t)linux_flock->l_len; - bsd_flock->l_pid = (pid_t)linux_flock->l_pid; + bsd_flock->l_pid = 0; + bsd_flock->l_len = 0; } static void @@ -818,8 +818,8 @@ } bsd_flock->l_whence = linux_flock->l_whence; bsd_flock->l_start = (off_t)linux_flock->l_start; - bsd_flock->l_len = (off_t)linux_flock->l_len; - bsd_flock->l_pid = (pid_t)linux_flock->l_pid; + bsd_flock->l_pid = 0; + bsd_flock->l_len = 0; } static void --- /usr/src/sys/kern/kern_exit.c.old Thu Nov 7 12:59:18 2002 +++ /usr/src/sys/kern/kern_exit.c Thu Nov 7 13:00:06 2002 @@ -342,7 +342,8 @@ if (p->p_sigparent && p->p_pptr != initproc) { psignal(p->p_pptr, p->p_sigparent); } else { - psignal(p->p_pptr, SIGCHLD); + if (p->p_sigparent != 0) + psignal(p->p_pptr, SIGCHLD); } wakeup((caddr_t)p->p_pptr); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 24 15:13:51 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C3D137B401 for ; Mon, 24 Feb 2003 15:13:50 -0800 (PST) Received: from util.inch.com (ns.inch.com [216.223.192.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8852A43FDD for ; Mon, 24 Feb 2003 15:13:46 -0800 (PST) (envelope-from spork@inch.com) Received: from shell.inch.com (inch.com [216.223.192.20]) by util.inch.com (8.12.6/8.12.6/UTIL-INCH-3.0.10) with ESMTP id h1ONDjSX097727; Mon, 24 Feb 2003 18:13:45 -0500 (EST) (envelope-from spork@inch.com) Received: from shell.inch.com (localhost [127.0.0.1]) by shell.inch.com (8.12.6/8.12.6) with ESMTP id h1ONDiOh044491; Mon, 24 Feb 2003 18:13:44 -0500 (EST) (envelope-from spork@inch.com) Received: from localhost (spork@localhost) by shell.inch.com (8.12.6/8.12.6/Submit) with ESMTP id h1ONDipf044486; Mon, 24 Feb 2003 18:13:44 -0500 (EST) X-Authentication-Warning: shell.inch.com: spork owned process doing -bs Date: Mon, 24 Feb 2003 18:13:43 -0500 (EST) From: Charles Sprickman To: Andrew J Caines Cc: FreeBSD Stable List Subject: Re: Maxtor Firewire Drives In-Reply-To: <20030224205811.GD85610@hal9000.halplant.com> Message-ID: <20030224181249.B29646@shell.inch.com> References: <200302240959.03513.wes@softweyr.com> <20030224103601.L22218-100000@steeltoe.niceboots.com> <20030224205811.GD85610@hal9000.halplant.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, 24 Feb 2003, Andrew J Caines wrote: > Tenebrae, > > > I have about 70GB of stuff to back up and I don't want to spend over > > $500US. > > At the rate ATA drives are going up in size and down in price, tape seems > to be less and less of a cost-effective solution, both for drives and > media. Now if there was a way to get amanda to see groups of disk arrays as tapes in a tape set, this would be a no-brainer... C > On a recent visit to a well-know large vendor, I saw Maxtor 120GB drives > for $90 - well under the magic $1/GB. A few of those, a bit of RAID > (controller or vinum) and you've got a cheap redundant backup store. > > > -Andrew- > -- > _______________________________________________________________________ > | -Andrew J. Caines- Unix Systems Engineer A.J.Caines@halplant.com | > | "They that can give up essential liberty to obtain a little temporary | > | safety deserve neither liberty nor safety" - Benjamin Franklin, 1759 | > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 24 15:19:49 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFB6037B401 for ; Mon, 24 Feb 2003 15:19:47 -0800 (PST) Received: from netbsd.xinetd.com (sc-66-75-77-250.socal.rr.com [66.75.77.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 081F343FA3 for ; Mon, 24 Feb 2003 15:19:47 -0800 (PST) (envelope-from gross@xinetd.com) Received: from xinetd.com (gospel.xinetd.com [192.168.2.177]) by netbsd.xinetd.com (8.12.6/8.9.1) with ESMTP id h1OJHQNL000354; Mon, 24 Feb 2003 11:17:32 -0800 (PST) Message-ID: <3E5A6FBC.7040402@xinetd.com> Date: Mon, 24 Feb 2003 11:17:16 -0800 From: "Glendon M. Gross" Reply-To: gross@xinetd.ath.cx Organization: Xinetd Communications User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.2.1) Gecko/20021130 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kris Kennaway Cc: stable@freebsd.org Subject: Re: Latest Buildworld error (after cvs co -P src) References: <20030220191825.GH6189@rot13.obsecurity.org> In-Reply-To: <20030220191825.GH6189@rot13.obsecurity.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 I'm not sure how this happened... here is my supfile. I'm interested to hear what's wrong with it. Thanks! gross@bsd:~ > cd /usr/cvsup gross@bsd:/usr/cvsup > cat supfile.cvs # $Id: supfile.cvs,v 1.2 1997/01/17 05:11:44 jdp Exp $ *default host=cvsup6.freebsd.org compress *default release=cvs *default base=/usr/cvsup *default prefix=/home/ncvs *default delete use-rel-suffix *default tag=RELENG_4 src-all src-eBones src-secure src-crypto gross@bsd:/usr/cvsup > Kris Kennaway wrote: > On Thu, Feb 20, 2003 at 04:50:28AM -0800, Glendon Gross wrote: > > >>>What does 'ident /usr/src/lib/libc/net/name6.c' show you? > > >>Script started on Thu Feb 20 04:35:06 2003 >>gross@bsd:~ > ident /usr/src/lib/libc./  /net/name6.c >>/usr/src/lib/libc/net/name6.c: >> $KAME: name6.c,v 1.25 2000/06/26 16:44:40 itojun Exp $ >> $FreeBSD: src/lib/libc/net/name6.c,v 1.23 2002/06/26 08:18:05 imp Exp $ >>gross@bsd:~ > exit > > > You have managed to partially update your system to an extremely old > version of FreeBSD 5.0-CURRENT. Revision 1.23 was in -current 7 > months ago. > > If you can't figure out how this happened, please post your cvsupfile > so I can check it. > > Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 24 15:21: 9 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF86537B401 for ; Mon, 24 Feb 2003 15:21:07 -0800 (PST) Received: from util.inch.com (ns.inch.com [216.223.192.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF04543FE1 for ; Mon, 24 Feb 2003 15:21:04 -0800 (PST) (envelope-from spork@inch.com) Received: from shell.inch.com (inch.com [216.223.192.20]) by util.inch.com (8.12.6/8.12.6/UTIL-INCH-3.0.10) with ESMTP id h1ONL4SX001178 for ; Mon, 24 Feb 2003 18:21:04 -0500 (EST) (envelope-from spork@inch.com) Received: from shell.inch.com (localhost [127.0.0.1]) by shell.inch.com (8.12.6/8.12.6) with ESMTP id h1ONL4Oh044767 for ; Mon, 24 Feb 2003 18:21:04 -0500 (EST) (envelope-from spork@inch.com) Received: from localhost (spork@localhost) by shell.inch.com (8.12.6/8.12.6/Submit) with ESMTP id h1ONL4YQ044764 for ; Mon, 24 Feb 2003 18:21:04 -0500 (EST) X-Authentication-Warning: shell.inch.com: spork owned process doing -bs Date: Mon, 24 Feb 2003 18:21:04 -0500 (EST) From: Charles Sprickman To: freebsd-stable@freebsd.org Subject: LAST_ACK timeout Message-ID: <20030224181605.T29646@shell.inch.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 Hello, I recently ran into a situation on a large mail server where MSN.com had what looks to be problems with their load balancers. The end result of this was that we had almost 4,000 connections in "LAST_ACK" state which led to the box no longer being able to establish outgoing connections. It wasn't clear exactly what resource was being exhausted (wasn't mbufs, and nothing at all in the logs). I've looked at tcp(4), which lists most of the sysctl variables and boot loader variables, but I'm not seeing a place to set the timeout on this. Ideally I'd like to whack this down to no more than 15 minutes; I'd rather not tie up resources on broken/evil mxers. Under -stable is there a setting somewhere for this? As a quick solution, we've enabled ipf on this box and it tracks state on outgoing connections. IPF seems to be able to age these entries out, but that's just a temporary fix. Thanks, Charles -- Charles Sprickman spork@inch.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 24 15:22:19 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91FBF37B401 for ; Mon, 24 Feb 2003 15:22:18 -0800 (PST) Received: from ns1.itga.com.au (ns1.itga.com.au [202.53.40.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E5A143FDD for ; Mon, 24 Feb 2003 15:22:16 -0800 (PST) (envelope-from gnb@itga.com.au) Received: from lightning.itga.com.au (lightning.itga.com.au [192.168.71.20]) by ns1.itga.com.au (8.12.6/8.12.6) with ESMTP id h1ONMCSc018871; Tue, 25 Feb 2003 10:22:12 +1100 (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 KAA10621; Tue, 25 Feb 2003 10:22:12 +1100 (EST) Message-Id: <200302242322.KAA10621@lightning.itga.com.au> X-Mailer: exmh version 2.4 05/15/2001 with nmh-1.0.4 From: Gregory Bond To: John Hay Cc: stable@FreeBSD.ORG Subject: Re: ntp broadcast mode In-reply-to: Your message of Mon, 24 Feb 2003 09:49:10 +0200. Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 25 Feb 2003 10:22:12 +1100 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhay@icomtek.csir.co.za said: > Do you have ntpd setup for crypto? That's the answer, thanks. I've run the clients with "-A" (this is an internal net!) and it seems to be working fine. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 24 19:17:33 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF34637B401 for ; Mon, 24 Feb 2003 19:17:31 -0800 (PST) Received: from mail.flugsvamp.com (ts46-01-qdr3643.mdfrd.or.charter.com [68.118.36.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19D7643FB1 for ; Mon, 24 Feb 2003 19:17:31 -0800 (PST) (envelope-from jlemon@flugsvamp.com) Received: (from jlemon@localhost) by mail.flugsvamp.com (8.12.6/8.12.6) id h1P3HTtJ056208; Mon, 24 Feb 2003 21:17:29 -0600 (CST) (envelope-from jlemon) Date: Mon, 24 Feb 2003 21:17:29 -0600 (CST) From: Jonathan Lemon Message-Id: <200302250317.h1P3HTtJ056208@mail.flugsvamp.com> To: spork@inch.com, stable@freebsd.org Subject: Re: LAST_ACK timeout X-Newsgroups: local.mail.freebsd-stable In-Reply-To: Organization: Cc: Sender: owner-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 you write: >Hello, > >I recently ran into a situation on a large mail server where MSN.com had >what looks to be problems with their load balancers. The end result of >this was that we had almost 4,000 connections in "LAST_ACK" state which >led to the box no longer being able to establish outgoing connections. It >wasn't clear exactly what resource was being exhausted (wasn't mbufs, and >nothing at all in the logs). In LAST_ACK state, the machine should keep retransmitting the FIN until it gets an ACK from the peer, or the connection times out, which should take roughly 8 minutes. If the connections stay around forever, then something is broken. ISTR someone mentioning that things were working as expected in the latest -stable, which version are you using? -- Jonathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 24 20:33:47 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72A9137B401 for ; Mon, 24 Feb 2003 20:33:46 -0800 (PST) Received: from eden.barryp.org (host-150-32-220-24.midco.net [24.220.32.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5CFD43F93 for ; Mon, 24 Feb 2003 20:33:45 -0800 (PST) (envelope-from bp@barryp.org) Received: from [10.66.0.248] (helo=barryp.org) by eden.barryp.org with esmtp (Exim 4.10) id 18nWmk-0007Ix-00; Mon, 24 Feb 2003 22:33:42 -0600 Message-ID: <3E5AF226.6050305@barryp.org> Date: Mon, 24 Feb 2003 22:33:42 -0600 From: Barry Pederson User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.2) Gecko/20021126 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Matthew Dillon Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Mozilla window won't open after upgrade - FIXED References: <3E5568AF.1050100@labs.mot.com> <20030221084955.GC12058@kierun.org> <20030221090930.GA55832@HAL9000.homeunix.com> <200302210838.34252.bts@babbleon.org> <3E56705C.4010206@labs.mot.com> <200302241940.h1OJeY94046350@apollo.backplane.com> In-Reply-To: <200302241940.h1OJeY94046350@apollo.backplane.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SpamTrack: NO 93 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Matthew Dillon wrote: > :I did the same with fontconfig and now it works for me as well! > : > :Thanks, > : > :Aron > > I had similar problems but reinstalling fontconfig did not do the trick. > I also attempted to recompile and reinstall libXft, which didn't work, > then recompiled mozilla from scratch... and that didn't work either. I had some problems recently with mozilla refusing to start too, and got it working again by having mozilla create a new profile (by renaming ~/.mozilla to something else, and then starting mozilla). This was before this thread started, so I didn't see the info about how to see the debug info - so I'm not sure how my problem compared to anyone else's. But it's something that can be easily tried. Barry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 24 20:55:27 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92B5937B401 for ; Mon, 24 Feb 2003 20:55:26 -0800 (PST) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7935243FBD for ; Mon, 24 Feb 2003 20:55:25 -0800 (PST) (envelope-from jrm@crackpot.org) Received: from kenny.wirgl.net (c-24-118-184-251.mn.client2.attbi.com[24.118.184.251]) by sccrmhc02.attbi.com (sccrmhc02) with ESMTP id <2003022504552400200qh518e>; Tue, 25 Feb 2003 04:55:24 +0000 Received: from benny.wirgl.net (benny.wirgl.net [192.168.130.131]) by kenny.wirgl.net (8.12.6/8.12.6) with ESMTP id h1P4tNrY025694; Mon, 24 Feb 2003 22:55:23 -0600 (CST) (envelope-from jrm@crackpot.org) Received: from benny.wirgl.net (localhost [127.0.0.1]) by benny.wirgl.net (8.12.7/8.12.6) with ESMTP id h1P4tMbY002023; Mon, 24 Feb 2003 22:55:22 -0600 (CST) (envelope-from jrm@crackpot.org) Received: (from jrm@localhost) by benny.wirgl.net (8.12.7/8.12.7/Submit) id h1P4tKTH002022; Mon, 24 Feb 2003 22:55:20 -0600 (CST) X-Authentication-Warning: benny.wirgl.net: jrm set sender to jrm@crackpot.org using -f Subject: Re: burncd problem with NEC NR-7500A CD burner in DAO mode From: "John R. Makosky" To: Willie Viljoen Cc: freebsd-stable@freebsd.org In-Reply-To: <200302240832.10551.will@unfoldings.net> References: <1046047691.17201.19.camel@benny.wirgl.net> <200302240832.10551.will@unfoldings.net> Content-Type: text/plain Content-Transfer-Encoding: 7bit Organization: Message-Id: <1046148920.350.21.camel@benny.wirgl.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 24 Feb 2003 22:55:20 -0600 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thank you for the help. Your advice was right on, and my burner burns swimmingly. Now... how does one go about getting such advice into the handbook? Submit a PR? Or bug the folks on freebsd-docs? john On Mon, 2003-02-24 at 00:32, Willie Viljoen wrote: > The best thing to do would be to make sure you have a reasonably new > 4-STABLE FreeBSD system (check the Handbook for upgrading instructions) and > compile your kernel with atapicam support. This will cause FreeBSD to To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 24 21: 1:24 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94FC537B401 for ; Mon, 24 Feb 2003 21:01:23 -0800 (PST) Received: from ns1.itga.com.au (ns1.itga.com.au [202.53.40.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23EFF43FCB for ; Mon, 24 Feb 2003 21:01:22 -0800 (PST) (envelope-from gnb@itga.com.au) Received: from lightning.itga.com.au (lightning.itga.com.au [192.168.71.20]) by ns1.itga.com.au (8.12.6/8.12.6) with ESMTP id h1P515Sc020502; Tue, 25 Feb 2003 16:01:05 +1100 (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 QAA03316; Tue, 25 Feb 2003 16:01:04 +1100 (EST) Message-Id: <200302250501.QAA03316@lightning.itga.com.au> X-Mailer: exmh version 2.4 05/15/2001 with nmh-1.0.4 From: Gregory Bond To: John Hay Cc: stable@FreeBSD.ORG, John Subject: Re: ntp broadcast mode In-reply-to: Your message of Mon, 24 Feb 2003 09:49:10 +0200. Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 25 Feb 2003 16:01:04 +1100 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Do you have ntpd setup for crypto? I've now got it working using symmetric keys. For the record (it's taken a bit of fiddling to get this right): - FreeBSD doesn't support DES crypto in ntpd - so you must use type "M" keys in the ntp.keys file. (This is also true and works for Solaris, despite the confusing ntp.conf man page) - and you must specify the filename with a "keys /etc/ntp.keys" directive - there is no default value, despite what the manual seems to imply. Given that, broadcast mode is working fine for me now, even with Solaris clients. Greg. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 24 21:30:26 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D7B537B401 for ; Mon, 24 Feb 2003 21:30:24 -0800 (PST) Received: from zibbi.icomtek.csir.co.za (zibbi.icomtek.csir.co.za [146.64.24.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C12243F85 for ; Mon, 24 Feb 2003 21:30:22 -0800 (PST) (envelope-from jhay@zibbi.icomtek.csir.co.za) Received: from zibbi.icomtek.csir.co.za (localhost [IPv6:::1]) by zibbi.icomtek.csir.co.za (8.12.6/8.12.6) with ESMTP id h1P5U8bw036740; Tue, 25 Feb 2003 07:30:08 +0200 (SAST) (envelope-from jhay@zibbi.icomtek.csir.co.za) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.12.6/8.12.6/Submit) id h1P5U6xu036733; Tue, 25 Feb 2003 07:30:07 +0200 (SAST) Date: Tue, 25 Feb 2003 07:30:06 +0200 From: John Hay To: Gregory Bond Cc: John Hay , stable@FreeBSD.ORG, John Subject: Re: ntp broadcast mode Message-ID: <20030225053006.GA36308@zibbi.icomtek.csir.co.za> References: <200302250501.QAA03316@lightning.itga.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302250501.QAA03316@lightning.itga.com.au> 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 Great! I haven't used symmetric keys in years, I use public keys with the autokey keyword, but I'm also using the development version of ntp. John On Tue, Feb 25, 2003 at 04:01:04PM +1100, Gregory Bond wrote: > > Do you have ntpd setup for crypto? > > I've now got it working using symmetric keys. > > For the record (it's taken a bit of fiddling to get this right): > > - FreeBSD doesn't support DES crypto in ntpd > > - so you must use type "M" keys in the ntp.keys file. (This is also true > and works for Solaris, despite the confusing ntp.conf man page) > > - and you must specify the filename with a "keys /etc/ntp.keys" directive - > there is no default value, despite what the manual seems to imply. > > Given that, broadcast mode is working fine for me now, even with Solaris > clients. > > Greg. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Mon Feb 24 22:59:40 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60DEE37B401 for ; Mon, 24 Feb 2003 22:59:38 -0800 (PST) Received: from apollo.laserfence.net (apollo.laserfence.net [196.44.69.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59F7543F3F for ; Mon, 24 Feb 2003 22:59:36 -0800 (PST) (envelope-from will@unfoldings.net) Received: from localhost ([127.0.0.1]) by apollo.laserfence.net with esmtp (Exim 4.10) id 18nYej-000H7U-00; Tue, 25 Feb 2003 08:33:33 +0200 Received: from prometheus-p0.datel.laserfence.net ([192.168.255.1] helo=prometheus.home.laserfence.net) by apollo.laserfence.net with esmtp (Exim 4.10) id 18nYeU-000H7H-00; Tue, 25 Feb 2003 08:33:20 +0200 Received: from phoenix.home.laserfence.net ([192.168.0.2]) by prometheus.home.laserfence.net with esmtp (Exim 4.10) id 18nYeQ-0000WJ-00; Tue, 25 Feb 2003 08:33:15 +0200 Received: from will by phoenix.home.laserfence.net with local (Exim 4.10) id 18nYeP-0003Gd-00; Tue, 25 Feb 2003 08:33:13 +0200 From: Willie Viljoen To: "John R. Makosky" Subject: Re: burncd problem with NEC NR-7500A CD burner in DAO mode Date: Tue, 25 Feb 2003 08:33:13 +0200 User-Agent: KMail/1.5 Cc: freebsd-stable@freebsd.org References: <1046047691.17201.19.camel@benny.wirgl.net> <200302240832.10551.will@unfoldings.net> <1046148920.350.21.camel@benny.wirgl.net> In-Reply-To: <1046148920.350.21.camel@benny.wirgl.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200302250833.13666.will@unfoldings.net> X-Spam-Score: (/) X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *18nYeU-000H7H-00*/PtVlIl6X3Y* X-Virus-Scanned: by AMaViS snapshot-20020422 Sender: owner-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 Tuesday 25 February 2003 6:55, someone, possibly John R. Makosky, typed: > Thank you for the help. Your advice was right on, and my burner burns > swimmingly. > > Now... how does one go about getting such advice into the handbook? > Submit a PR? Or bug the folks on freebsd-docs? > John, The best thing to do would be to submit a PR first. If it is ignored for atleast a month, you can should try some direct e-mail to the -doc folks :) Will -- Willie Viljoen Freelance IT Consultant 214 Paul Kruger Avenue, Universitas Bloemfontein 9321 South Africa +27 51 522 15 60 +27 51 522 44 36 (after hours) +27 82 404 03 27 (mobile) will@unfoldings.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 0:27:23 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E1A737B401 for ; Tue, 25 Feb 2003 00:27:17 -0800 (PST) Received: from asimov.isr.uc.pt (asimov.isr.uc.pt [193.136.230.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C1B743F3F for ; Tue, 25 Feb 2003 00:27:16 -0800 (PST) (envelope-from pm@asimov.isr.uc.pt) Received: from asimov.isr.uc.pt (localhost [127.0.0.1]) by asimov.isr.uc.pt (8.12.6/8.12.6) with ESMTP id h1P8YP6Q001189; Tue, 25 Feb 2003 08:34:25 GMT (envelope-from pm@asimov.isr.uc.pt) Received: from localhost (pm@localhost) by asimov.isr.uc.pt (8.12.6/8.12.6/Submit) with ESMTP id h1P8YOML001186; Tue, 25 Feb 2003 08:34:24 GMT Date: Tue, 25 Feb 2003 08:34:23 +0000 (WET) From: Paulo Menezes To: Scott Mitchell Cc: Kevin Oberman , "" Subject: Re: Xircom combo ethernet+modem In-Reply-To: <20030224212318.GA561@tuatara.fishballoon.org> Message-ID: <20030225082700.J1175@asimov.isr.uc.pt> References: <20030224183334.4BAE65D04@ptavv.es.net> <20030224184613.E99977@asimov.isr.uc.pt> <20030224212318.GA561@tuatara.fishballoon.org> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-1950697142-1046162063=:1175" Sender: owner-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-1950697142-1046162063=:1175 Content-Type: TEXT/PLAIN; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE On Mon, 24 Feb 2003, Scott Mitchell wrote: > > Hi Paulo, > > I think you're doing everything right but running into some longstanding > bugs in the driver. There's pretty clearly something going wrong with th= e > probe routine -- that MAC address is obviously wrong :-( > > I'm actually working on some updates to the xe driver right now, fixing t= he > known bugs with the CE3/REM56 cards first, then I plan to have a look at > the probe/initialisation problems with the CE2-based cards like yours. I > finally got hold of a few older cards, so I'm reasonably hopeful of getti= ng > it working this time... > > I don't suppose you could post the output of 'pccardc dumpcis' for your > card, in case there's something unusual about it? Are there any other > messages from the driver after the ones you've shown us already? > Fortunately I could borrow a second card that works quite well, and so here goes the dumpcis and dmesg output. Of course these will reflect both cards. Although I can use the other card, I got some king of re-probing messages and these are reflected in the last two lines of dmesg. The messages on the screen were #tail /var/log/messages Feb 25 09:=B98:02 sb=E3helkhir =FEcc=E3r=F0=F0[=B9=B35=B3]: =FEcc=E3r=F0=F0= st=E3rte=F0 Feb 25 09:=B98:56 sb=E3helkhir =FEcc=E3r=F0=F0[=B9=B36=B9]: =A9=E3r=F0 =A8X= irc=F8m=A8(=A8=A9re=F0it=A9=E3r=F0 =CBthernet+M=F8=F0 em 28.8=A8) [=A9=CBM28] [=B3.00] m=E3tche=F0 =A8Xirc=F8m=A8 (=A8=A9re=F0it= =A9=E3r=F0 =CBthernet+M=F8=F0em 28.8=A8) [(n ull)] [(null)] Feb 25 09:=B99:0=B9 sb=E3helkhir /kernel: =FEcc=E3r=F00: =A9=E3n n=F8t =E3t= t=E3ch m=F8re th=E3n =F8ne chil=F0. Feb 25 09:=B99:0=B9 sb=E3helkhir =FEcc=E3r=F0=F0[=B9=B36=B9]: =F0river =E3l= l=F8c=E3ti=F8n f=E3ile=F0 f=F8r Xirc=F8m(=A9r e=F0it=A9=E3r=F0 =CBthernet+M=F8=F0em 28.8): =CFn=FEut/=F8ut=FEut err=F8r Feb 25 09:=B99:06 sb=E3helkhir =FEcc=E3r=F0=F0[=B9=B36=B9]: =A9=E3r=F0 =A8= =E0u=E3l S=FEee=F0=A8(=A8=B90/=B900 =DE=A9 =A9=E3r=F0=A8) [=B9 =2E0] [ ] m=E3tche=F0 =A8=E0u=E3l S=FEee=F0=A8 (=A8/=B90/=B900( =DE=F8rt = =C3tt=E3che=F0)? =DE=A9 =A9=E3r=F0/=A8) [(null)] [(nu ll)] Feb 25 09:=B99:=B9=B9 sb=E3helkhir /kernel: =FEcc=E3r=F0=B9: =A9=E3n n=F8t = =E3tt=E3ch m=F8re th=E3n =F8ne chil=F0. Feb 25 09:=B99:=B9=B9 sb=E3helkhir =FEcc=E3r=F0=F0[=B9=B36=B9]: =F0river = =E3ll=F8c=E3ti=F8n f=E3ile=F0 f=F8r =E0u=E3l S=FEee =F0(/=B90/=B900( =DE=F8rt =C3tt=E3che=F0)? =DE=A9 =A9=E3r=F0/): =CFn=FEut/= =F8ut=FEut err=F8r Feb 25 09:=B99:=B9=B9 sb=E3helkhir =FEcc=E3r=F0=F0[=B9=B36=B9]: =FEcc=E3r= =F0=F0 st=E3rte=F0 sb=E3helkhir# Thank you again, Paulo --0-1950697142-1046162063=:1175 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=pccard Content-Transfer-Encoding: BASE64 Content-ID: <20030225083423.F1175@asimov.isr.uc.pt> Content-Description: Content-Disposition: attachment; filename=pccard Q29weXJpZ2h0IChjKSAxOTkyLTIwMDMgVGhlIEZyZWVCU0QgUHJvamVjdC4N CkNvcHlyaWdodCAoYykgMTk3OSwgMTk4MCwgMTk4MywgMTk4NiwgMTk4OCwg MTk4OSwgMTk5MSwgMTk5MiwgMTk5MywgMTk5NA0KCVRoZSBSZWdlbnRzIG9m IHRoZSBVbml2ZXJzaXR5IG9mIENhbGlmb3JuaWEuIEFsbCByaWdodHMgcmVz ZXJ2ZWQuDQpGcmVlQlNEIDQuOC1QUkVSRUxFQVNFICMwOiBNb24gRmViIDI0 IDE3OjMwOjQ0IENFVCAyMDAzDQogICAgcm9vdEBzYmFoZWxraGlyLmNhc2E6 L3Vzci9zcmMvc3lzL2NvbXBpbGUvR0VORVJJQw0KVGltZWNvdW50ZXIgImk4 MjU0IiAgZnJlcXVlbmN5IDExOTMxODIgSHoNCkNQVTogUGVudGl1bS9QNTRD ICgxMzMuNjQtTUh6IDU4Ni1jbGFzcyBDUFUpDQogIE9yaWdpbiA9ICJHZW51 aW5lSW50ZWwiICBJZCA9IDB4NTJjICBTdGVwcGluZyA9IDEyDQogIEZlYXR1 cmVzPTB4MWJmPEZQVSxWTUUsREUsUFNFLFRTQyxNU1IsTUNFLENYOD4NCnJl YWwgbWVtb3J5ICA9IDMzNTU0NDMyICgzMjc2OEsgYnl0ZXMpDQpjb25maWc+ IGVuYWJsZSBhcG0NCmNvbmZpZz4gcXVpdA0KYXZhaWwgbWVtb3J5ID0gMjY5 MDI1MjggKDI2MjcySyBieXRlcykNClByZWxvYWRlZCBlbGYga2VybmVsICJr ZXJuZWwiIGF0IDB4YzA1YmQwMDAuDQpQcmVsb2FkZWQgdXNlcmNvbmZpZ19z Y3JpcHQgIi9ib290L2tlcm5lbC5jb25mIiBhdCAweGMwNWJkMDljLg0KUHJl bG9hZGVkIGVsZiBtb2R1bGUgInZlc2Eua28iIGF0IDB4YzA1YmQwZWMuDQpQ cmVsb2FkZWQgc3BsYXNoX2ltYWdlX2RhdGEgIi9ib290L3NwbGFzaC5ibXAi IGF0IDB4YzA1YmQxODguDQpQcmVsb2FkZWQgZWxmIG1vZHVsZSAic25kX2Vz cy5rbyIgYXQgMHhjMDViZDFkOC4NClByZWxvYWRlZCBlbGYgbW9kdWxlICJz bmRfc2JjLmtvIiBhdCAweGMwNWJkMjc4Lg0KUHJlbG9hZGVkIGVsZiBtb2R1 bGUgInNuZF9wY20ua28iIGF0IDB4YzA1YmQzMTguDQpJbnRlbCBQZW50aXVt IGRldGVjdGVkLCBpbnN0YWxsaW5nIHdvcmthcm91bmQgZm9yIEYwMEYgYnVn DQpWRVNBOiB2Mi4wLCAyMDQ4ayBtZW1vcnksIGZsYWdzOjB4MCwgbW9kZSB0 YWJsZToweGMwNTIwMmEwICgxMDAwMDQwKQ0KVkVTQTogQ0hJUFMgNjU1NTAg U3VwZXIgVkdBDQptZDA6IE1hbGxvYyBkaXNrDQpVc2luZyAkUElSIHRhYmxl LCA0IGVudHJpZXMgYXQgMHhjMDBmNjk0MA0KYXBtMDogPEFQTSBCSU9TPiBv biBtb3RoZXJib2FyZA0KYXBtMDogZm91bmQgQVBNIEJJT1MgdjEuMiwgY29u bmVjdGVkIGF0IHYxLjINCm5weDA6IDxtYXRoIHByb2Nlc3Nvcj4gb24gbW90 aGVyYm9hcmQNCm5weDA6IElOVCAxNiBpbnRlcmZhY2UNCnBjaWIwOiA8SG9z dCB0byBQQ0kgYnJpZGdlPiBvbiBtb3RoZXJib2FyZA0KcGNpMDogPFBDSSBi dXM+IG9uIHBjaWIwDQppc2FiMDogPFBDSSB0byBJU0EgYnJpZGdlICh2ZW5k b3I9MTBiOSBkZXZpY2U9MTUyMyk+IGF0IGRldmljZSAyLjAgb24gcGNpMA0K aXNhMDogPElTQSBidXM+IG9uIGlzYWIwDQpwY2lfY2ZnaW50cl9saW5rZWQ6 IGxpbmtlZCAoMSkgdG8gaGFyZC1yb3V0ZWQgaXJxIDEwDQpwY2lfY2ZnaW50 cjogMDo0IElOVEEgcm91dGVkIHRvIGlycSAxMA0KcGNpYzA6IDxUSSBQQ0kt MTEzMCBQQ0ktQ2FyZEJ1cyBCcmlkZ2U+IG1lbSAweDg4MDAwMDAwLTB4ODgw MDBmZmYgaXJxIDEwIGF0IGRldmljZSA0LjAgb24gcGNpMA0KcGNpYzA6IFRJ MTEzWCBQQ0kgQ29uZmlnIFJlZzogW0NTQyBwYXJhbGxlbCBpc2EgaXJxXQ0K cGNjYXJkMDogPFBDIENhcmQgMTYtYml0IGJ1cyAoY2xhc3NpYyk+IG9uIHBj aWMwDQpwY2lfY2ZnaW50cl9saW5rZWQ6IGxpbmtlZCAoNCkgdG8gaGFyZC1y b3V0ZWQgaXJxIDEwDQpwY2lfY2ZnaW50cjogMDo0IElOVEIgcm91dGVkIHRv IGlycSAxMA0KcGNpYzE6IDxUSSBQQ0ktMTEzMCBQQ0ktQ2FyZEJ1cyBCcmlk Z2U+IG1lbSAweDg4MDAxMDAwLTB4ODgwMDFmZmYgaXJxIDEwIGF0IGRldmlj ZSA0LjEgb24gcGNpMA0KcGNpYzE6IFRJMTEzWCBQQ0kgQ29uZmlnIFJlZzog W0NTQyBwYXJhbGxlbCBpc2EgaXJxXQ0KcGNjYXJkMTogPFBDIENhcmQgMTYt Yml0IGJ1cyAoY2xhc3NpYyk+IG9uIHBjaWMxDQpwY2kwOiA8Q2hpcHMgJiBU ZWNobm9sb2dpZXMgNjU1NTAgU1ZHQSBjb250cm9sbGVyPiBhdCA2LjANCmF0 YXBjaTA6IDxHZW5lcmljIFBDSSBBVEEgY29udHJvbGxlcj4gcG9ydCAweGZj ZjAtMHhmY2ZmLDB4Mzc0LTB4Mzc3LDB4MTcwLTB4MTc3LDB4M2Y0LTB4M2Y3 LDB4MWYwLTB4MWZmIGlycSAxNCBhdCBkZXZpY2UgNy4wIG9uIHBjaTANCmF0 YTA6IGF0IDB4MWYwIGlycSAxNCBvbiBhdGFwY2kwDQphdGExOiBhdCAweDE3 MCBpcnEgMTUgb24gYXRhcGNpMA0Kb3JtMDogPE9wdGlvbiBST00+IGF0IGlv bWVtIDB4YzAwMDAtMHhjYWZmZiBvbiBpc2EwDQpmZGMwOiA8TkVDIDcyMDY1 QiBvciBjbG9uZT4gYXQgcG9ydCAweDNmMC0weDNmNSwweDNmNyBpcnEgNiBk cnEgMiBvbiBpc2EwDQpmZGMwOiBGSUZPIGVuYWJsZWQsIDggYnl0ZXMgdGhy ZXNob2xkDQpmZDA6IDwxNDQwLUtCIDMuNSIgZHJpdmU+IG9uIGZkYzAgZHJp dmUgMA0KYXRrYmRjMDogPEtleWJvYXJkIGNvbnRyb2xsZXIgKGk4MDQyKT4g YXQgcG9ydCAweDYwLDB4NjQgb24gaXNhMA0KYXRrYmQwOiA8QVQgS2V5Ym9h cmQ+IGZsYWdzIDB4MSBpcnEgMSBvbiBhdGtiZGMwDQprYmQwIGF0IGF0a2Jk MA0KcHNtMDogPFBTLzIgTW91c2U+IGlycSAxMiBvbiBhdGtiZGMwDQpwc20w OiBtb2RlbCBHZW5lcmljIFBTLzIgbW91c2UsIGRldmljZSBJRCAwDQp2Z2Ew OiA8R2VuZXJpYyBJU0EgVkdBPiBhdCBwb3J0IDB4M2MwLTB4M2RmIGlvbWVt IDB4YTAwMDAtMHhiZmZmZiBvbiBpc2EwDQpzYzA6IDxTeXN0ZW0gY29uc29s ZT4gYXQgZmxhZ3MgMHgxMDAgb24gaXNhMA0Kc2MwOiBWR0EgPDE2IHZpcnR1 YWwgY29uc29sZXMsIGZsYWdzPTB4MzAwPg0Kc2lvMCBhdCBwb3J0IDB4M2Y4 LTB4M2ZmIGlycSA0IGZsYWdzIDB4MTAgb24gaXNhMA0Kc2lvMDogdHlwZSAx NjU1MEENCnNpbzEgYXQgcG9ydCAweDJmOC0weDJmZiBpcnEgMyBvbiBpc2Ew DQpzaW8xOiB0eXBlIDE2NTUwQQ0KcHBjMDogPFBhcmFsbGVsIHBvcnQ+IGF0 IHBvcnQgMHgzNzgtMHgzN2YgaXJxIDcgb24gaXNhMA0KcHBjMDogR2VuZXJp YyBjaGlwc2V0IChFQ1AvUFMyL05JQkJMRSkgaW4gQ09NUEFUSUJMRSBtb2Rl DQpwcGMwOiBGSUZPIHdpdGggMTYvMTYvOCBieXRlcyB0aHJlc2hvbGQNCnBs aXAwOiA8UExJUCBuZXR3b3JrIGludGVyZmFjZT4gb24gcHBidXMwDQpscHQw OiA8UHJpbnRlcj4gb24gcHBidXMwDQpscHQwOiBJbnRlcnJ1cHQtZHJpdmVu IHBvcnQNCnBwaTA6IDxQYXJhbGxlbCBJL08+IG9uIHBwYnVzMA0Kc2JjMDog PEVTUyBFUzE4Nzg+IGF0IHBvcnQgMHgyMjAtMHgyMmYsMHgzODgtMHgzOGIs MHgzMzAtMHgzMzEgaXJxIDUgZHJxIDEsMCBvbiBpc2EwDQpwY20wOiA8RVNT IDE4eHggRFNQPiBvbiBzYmMwDQphZDA6IDQxMjZNQiA8SElUQUNISV9ESzIz OEEtNDM+IFs4OTQ0LzE1LzYzXSBhdCBhdGEwLW1hc3RlciBXRE1BMg0KTW91 bnRpbmcgcm9vdCBmcm9tIHVmczovZGV2L2FkMHMxYQ0KcGNjYXJkOiBjYXJk IGluc2VydGVkLCBzbG90IDANCnNpbzQgYXQgcG9ydCAweDJlOC0weDJlZiBp b21lbSAweGQ0MDAwLTB4ZDVmZmYgaXJxIDEwIGZsYWdzIDB4NDAwMDAgc2xv dCAwIG9uIHBjY2FyZDANCnNpbzQ6IHR5cGUgMTY0NTANCnNpbzQ6IHVuYWJs ZSB0byBhY3RpdmF0ZSBpbnRlcnJ1cHQgaW4gZmFzdCBtb2RlIC0gdXNpbmcg bm9ybWFsIG1vZGUNCnNpbzQ6IHVubG9hZGVkDQpzaW80OiBkZXRhY2hlZA0K cGNjYXJkOiBjYXJkIHJlbW92ZWQsIHNsb3QgMA0KcGNjYXJkOiBjYXJkIGlu c2VydGVkLCBzbG90IDANCnhlMCBhdCBwb3J0IDB4MmU4LTB4MmVmIGlvbWVt IDB4ZDEwMDAtMHhkMWZmZiBpcnEgMTAgc2xvdCAwIG9uIHBjY2FyZDANCnhl MDogWGlyY29tIENFTTMsIGJvbmRpbmcgdmVyc2lvbiAweDEwLCB3aXRoIG1v ZGVtDQp4ZTA6IENFMiB2ZXJzaW9uID0gMA0KeGUwOiBFdGhlcm5ldCBhZGRy ZXNzIDAwOjAwOjAwOjAwOjAwOjAwDQptb2R1bGVfcmVnaXN0ZXI6IG1vZHVs ZSBwY2NhcmQveGUgYWxyZWFkeSBleGlzdHMhDQpsaW5rZXJfZmlsZV9zeXNp bml0ICJpZl94ZS5rbyIgZmFpbGVkIHRvIHJlZ2lzdGVyISAxNw0KeGUwOiBk ZXRhY2hlZA0KcGNjYXJkOiBjYXJkIHJlbW92ZWQsIHNsb3QgMA0KcGNjYXJk OiBjYXJkIGluc2VydGVkLCBzbG90IDENCnhlMCBhdCBwb3J0IDB4MmU4LTB4 MmVmIGlvbWVtIDB4ZDEwMDAtMHhkMWZmZiBpcnEgMTAgc2xvdCAxIG9uIHBj Y2FyZDENCnhlMDogWGlyY29tIENFTTMsIGJvbmRpbmcgdmVyc2lvbiAwLCB3 aXRoIG1vZGVtDQp4ZTA6IENFMiB2ZXJzaW9uID0gMA0KeGUwOiBFdGhlcm5l dCBhZGRyZXNzIDAwOjAwOjAwOjAwOjAwOjAwDQp4ZTA6IGRldGFjaGVkDQpw Y2NhcmQ6IGNhcmQgcmVtb3ZlZCwgc2xvdCAxDQpwY2NhcmQ6IGNhcmQgaW5z ZXJ0ZWQsIHNsb3QgMQ0KeGUwIGF0IHBvcnQgMHgyZTgtMHgyZWYgaW9tZW0g MHhkMTAwMC0weGQxZmZmIGlycSAxMCBzbG90IDEgb24gcGNjYXJkMQ0KeGUw OiBYaXJjb20gQ0VNMywgYm9uZGluZyB2ZXJzaW9uIDAsIHdpdGggbW9kZW0N CnhlMDogQ0UyIHZlcnNpb24gPSAwDQp4ZTA6IEV0aGVybmV0IGFkZHJlc3Mg MDA6MDA6MDA6MDA6MDA6MDANCnhlMDogZGV0YWNoZWQNCnBjY2FyZDogY2Fy ZCByZW1vdmVkLCBzbG90IDENCnBjY2FyZDogY2FyZCBpbnNlcnRlZCwgc2xv dCAxDQplZDEgYXQgcG9ydCAweDMwMC0weDMxZiBpb21lbSAweGQ0MDAwLTB4 ZDVmZmYgaXJxIDEwIGZsYWdzIDB4ODAwMDAgc2xvdCAxIG9uIHBjY2FyZDEN CmVkMTogYWRkcmVzcyAwMDplMDo5ODozNDowZjo2MSwgdHlwZSBMaW5rc3lz ICgxNiBiaXQpIA0KdWtwaHkwOiA8R2VuZXJpYyBJRUVFIDgwMi4zdSBtZWRp YSBpbnRlcmZhY2U+IG9uIG1paWJ1czANCnVrcGh5MDogIDEwYmFzZVQsIDEw YmFzZVQtRkRYLCAxMDBiYXNlVFgsIDEwMGJhc2VUWC1GRFgsIGF1dG8NCnBj Y2FyZDogY2FyZCBpbnNlcnRlZCwgc2xvdCAwDQp4ZTAgYXQgcG9ydCAweDJl OC0weDJlZiBpb21lbSAweGQxMDAwLTB4ZDFmZmYgaXJxIDEwIHNsb3QgMCBv biBwY2NhcmQwDQp4ZTA6IFhpcmNvbSBDRU0zLCBib25kaW5nIHZlcnNpb24g MHgxMCwgd2l0aCBtb2RlbQ0KeGUwOiBDRTIgdmVyc2lvbiA9IDANCnhlMDog RXRoZXJuZXQgYWRkcmVzcyAwMDowMDowMDowMDowMDowMA0KcGNjYXJkMDog Q2FuIG5vdCBhdHRhY2ggbW9yZSB0aGFuIG9uZSBjaGlsZC4NCnBjY2FyZDE6 IENhbiBub3QgYXR0YWNoIG1vcmUgdGhhbiBvbmUgY2hpbGQuDQo= --0-1950697142-1046162063=:1175-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 1:11: 9 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B16637B401 for ; Tue, 25 Feb 2003 01:11:08 -0800 (PST) Received: from ldc.ro (ldc-gw.rdsnet.ro [213.157.163.8]) by mx1.FreeBSD.org (Postfix) with SMTP id 09FE043F3F for ; Tue, 25 Feb 2003 01:11:07 -0800 (PST) (envelope-from razor@ldc.ro) Received: (qmail 40054 invoked by uid 666); 25 Feb 2003 09:11:05 -0000 Date: Tue, 25 Feb 2003 11:11:05 +0200 From: Alex Popa To: freebsd-stable@freebsd.org Subject: IPFW2 and "prob" keyword problems Message-ID: <20030225091105.GA39847@ldc.ro> 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 I recently switched a -stable system to ipfw2, and I added my usual rule for detecting bandwidth hogs (works great with a mrtg graph...): ipfw add 1 prob 0.0003 count log ip from any to any in via ed0 As I understand it (and it used to work on ipfw1), this rule should log about 3 packets in 10k that enter ed0. However, the behaviour seems a bit different, meaning that it logs each end every packet packet (ignores prob). System is cvsupped and compiled on February 19th Am I doing anything wrong? Alex (PS: I tested this with a simple ping -c 5, and it logged five out of five pings... I was expecting at least one to be missed, if not all) ------------+------------------------------------------------------- Alex Popa, | "Computer science is no more about computers than razor@ldc.ro| astronomy is about telescopes" -- E. W. Dijkstra ------------+------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 5:32:51 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBFF137B401 for ; Tue, 25 Feb 2003 05:32:49 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F91443FA3 for ; Tue, 25 Feb 2003 05:32:49 -0800 (PST) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id BA3EE54; Tue, 25 Feb 2003 07:32:48 -0600 (CST) Received: by madman.celabo.org (Postfix, from userid 1001) id A43DA78C3E; Tue, 25 Feb 2003 07:32:48 -0600 (CST) Date: Tue, 25 Feb 2003 07:32:48 -0600 From: "Jacques A. Vidrine" To: Mike Tancsa Cc: freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: OpenSSL 0.9.7 in -STABLE Message-ID: <20030225133248.GC95282@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Mike Tancsa , freebsd-stable@FreeBSD.ORG References: <20030214223844.GA96059@madman.celabo.org> <5.2.0.9.0.20030224145408.05edb800@marble.sentex.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5.2.0.9.0.20030224145408.05edb800@marble.sentex.ca> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.3i-ja.1 Sender: owner-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, Feb 24, 2003 at 03:12:33PM -0500, Mike Tancsa wrote: > I have > # ls -l /dev/crypto > crw-rw-rw- 1 root operator 70, 0 Feb 24 11:16 /dev/crypto > > and I have > device crypto > device hifn > in the kernel. I believe you also need `device cryptodev', else when your application tries to open /dev/crypto it will get ENXIO (use truss or ktrace to see if this is what is happening). Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 5:36:53 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 959D237B401 for ; Tue, 25 Feb 2003 05:36:51 -0800 (PST) Received: from lurza.secnetix.de (lurza.secnetix.de [212.66.1.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 470B443FBD for ; Tue, 25 Feb 2003 05:36:50 -0800 (PST) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (localhost [IPv6:::1]) by lurza.secnetix.de (8.12.6/8.12.5) with ESMTP id h1PDamdK063877; Tue, 25 Feb 2003 14:36:48 +0100 (CET) (envelope-from oliver.fromme@secnetix.de) Received: (from olli@localhost) by lurza.secnetix.de (8.12.6/8.12.5/Submit) id h1PDalqn063876; Tue, 25 Feb 2003 14:36:47 +0100 (CET) Date: Tue, 25 Feb 2003 14:36:47 +0100 (CET) Message-Id: <200302251336.h1PDalqn063876@lurza.secnetix.de> From: Oliver Fromme To: freebsd-stable@FreeBSD.ORG, Andrew J Caines Reply-To: freebsd-stable@FreeBSD.ORG, Andrew J Caines Subject: Re: Maxtor Firewire Drives In-Reply-To: <20030224212042.GE85610@hal9000.halplant.com> X-Newsgroups: list.freebsd-stable User-Agent: tin/1.5.4-20000523 ("1959") (UNIX) (FreeBSD/4.7-RELEASE (i386)) 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 Andrew J Caines wrote: > > > > At the rate ATA drives are going up in size and down in price, tape seems > > > to be less and less of a cost-effective solution, both for drives and > > > media. That's what I do, too -- Backup up on a bunch of 80Gbyte UDMA133 disks. Any tape solution would be considerably more expensive (and slower). > The off-site issue is a tricky one with disks, but some DIY HSM can work > in suitable cases. I've bought a 5.25" mounting frame for 3.5" IDE HDDs which supports hot-plug ("ViPower" brand); it works fine with atacontrol detach and attach under FreeBSD 4-stable. The removable disk enclosures for that frame are only 8 Euro per disk. I think it is really a perfect solution for backing up large amounts of data. I have also some files for which I maintain an archive history of several years, but those don't make a large volume, so I can put them on some DDS2 tapes and MO disks. Regards Oliver -- Oliver Fromme, secnetix GmbH & Co KG, Oettingenstr. 2, 80538 München Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "All that we see or seem is just a dream within a dream" (E. A. Poe) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 6: 8:18 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3436137B401 for ; Tue, 25 Feb 2003 06:08:17 -0800 (PST) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8365843F75 for ; Tue, 25 Feb 2003 06:08:16 -0800 (PST) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 553DF3F4E for ; Tue, 25 Feb 2003 09:08:26 -0500 (EST) From: "Dan Langille" To: freebsd-stable@freebsd.org Date: Tue, 25 Feb 2003 09:11:29 -0500 MIME-Version: 1.0 Subject: /usr/share/openssl/ needs to exist during install Message-ID: <3E5B3341.31705.323106F8@localhost> X-mailer: Pegasus Mail for Windows (v4.02a) 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 During the install phase of an upgrade to -STABLE from 4.7-RELEASE, I countered this error: install -o root -g wheel -m 444 ASN1_OBJECT_new.3.gz /usr/share/openssl/man/man 3 install: /usr/share/openssl/man/man3: No such file or directory *** Error code 71 Stop in /usr/src/secure/lib/libcrypto. *** Error code 1 Stop in /usr/src/secure/lib. *** Error code 1 Stop in /usr/src/secure. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. It appears that /usr/share/openssl/ must exist. It doesn't. Hence the failure. I'll keep this box sitting around in this state for a while in case it helps the diagnostics. $ uname -a FreeBSD konz.example.org 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #0: Mon Feb 24 13:30:56 EST 2003 dan@xeon.example.org:/usr/obj/usr/src/sys/GENERIC i386 -- Dan Langille : http://www.langille.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 6:24:58 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67B0937B401; Tue, 25 Feb 2003 06:24:56 -0800 (PST) Received: from bingo.ru (bingo.ru [80.237.91.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 848D543F85; Tue, 25 Feb 2003 06:24:55 -0800 (PST) (envelope-from raven@bingo.ru) Received: from bingo.chel.ru (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id D71CBD91A; Tue, 25 Feb 2003 19:24:50 +0500 (YEKT) Received: by bingo.ru (Postfix, from userid 1666) id 3220ED918; Tue, 25 Feb 2003 19:24:50 +0500 (YEKT) To: FreeBSD-gnats-submit@freebsd.org Subject: FreeBSD hangs From: Dmitry Sukhodoev Reply-To: Dmitry Sukhodoev Cc: stable@freebsd.org X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20030225142450.3220ED918@bingo.ru> Date: Tue, 25 Feb 2003 19:24:50 +0500 (YEKT) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >Submitter-Id: current-users >Originator: Dmitry Sukhodoev >Organization: Bingo GC >Confidential: no >Synopsis: FreeBSD hangs >Severity: critical >Priority: high >Category: >Class: sw-bug >Release: FreeBSD 4.7-STABLE i386 >Environment: System: FreeBSD bingo.ru 4.7-STABLE FreeBSD 4.7-STABLE #1: Tue Feb 25 16:24:18 YEKT 2003 root@bingo.ru:/usr/obj/usr/src/sys/bingo i386 >Description: i have a server machine: p3-733 on cusl2c, 512m ram, two hdd (40g - system and users homes, seagate and 120g - hive of files, ibm), four ethernet adapters 3com-905c. system was: FreeBSD 4.7-RELEASE-p3, now updated to 4.7-STABLE, Tue Feb 18 20:04:38 YEKT 2003. and regular this system hangs. just stops and system have no reaction on the network activity (ping), no reaction by monitor on the keyboard. on the monitor same picture as was last time and no reaction. num/scroll/caps lock keys on the keyboard also does not turn on/off the indicators. i'm in panic now, cause i'm updated the system from 4.7-R-p3 to 4.7-S, has change the power block on the this pc to new 350w, has change all of memory to new fresh modules, has change all ethernet adapters to new realtek 8139 i has check my hard disks by "dd if=/dev/ad0 of=/dev/null bs=65536" (no errors was founded) and it still regular hangs. unchanged remain only motherboard and central processor. i cannot determine reason of this hang. all software installed from ports and it rather standard: samba, courier, named, inetd (for tftp), sshd, httpd, trafd, postfix+kavdaemon, isc dhcpd 2, proftpd, ipacctd, squid, mysql. how i can find reason of this hang? why hangs? please help me! there is no kernel panics, just stops and nothing :-( >How-To-Repeat: i don't know :-( >Fix: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 6:25:38 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2077737B401 for ; Tue, 25 Feb 2003 06:25:36 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8D1943F85 for ; Tue, 25 Feb 2003 06:25:31 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1PEPS3x028717 for ; Tue, 25 Feb 2003 16:25:28 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1PEPNHR028691 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 25 Feb 2003 16:25:27 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1PEPEUN028666; Tue, 25 Feb 2003 16:25:14 +0200 (EET) Date: Tue, 25 Feb 2003 16:25:14 +0200 From: Ruslan Ermilov To: Dan Langille Cc: "Jacques A. Vidrine" , freebsd-stable@freebsd.org Subject: Re: /usr/share/openssl/ needs to exist during install Message-ID: <20030225142514.GA27891@sunbay.com> References: <3E5B3341.31705.323106F8@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vtzGhvizbBRQ85DL" Content-Disposition: inline In-Reply-To: <3E5B3341.31705.323106F8@localhost> 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 --vtzGhvizbBRQ85DL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 25, 2003 at 09:11:29AM -0500, Dan Langille wrote: > During the install phase of an upgrade to -STABLE from 4.7-RELEASE, I=20 > countered this error: >=20 > install -o root -g wheel -m 444 ASN1_OBJECT_new.3.gz =20 > /usr/share/openssl/man/man > 3 > install: /usr/share/openssl/man/man3: No such file or directory > *** Error code 71 >=20 > Stop in /usr/src/secure/lib/libcrypto. > *** Error code 1 >=20 > Stop in /usr/src/secure/lib. > *** Error code 1 >=20 > Stop in /usr/src/secure. > *** Error code 1 >=20 > Stop in /usr/src. > *** Error code 1 >=20 > Stop in /usr/src. >=20 > It appears that /usr/share/openssl/ must exist. It doesn't. Hence=20 > the failure. >=20 > I'll keep this box sitting around in this state for a while in case=20 > it helps the diagnostics. >=20 > $ uname -a > FreeBSD konz.example.org 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #0:=20 > Mon Feb 24 13:30:56 EST 2003 =20 > dan@xeon.example.org:/usr/obj/usr/src/sys/GENERIC i386 >=20 Strange. They were supposed to be created by this change, which (I'm sure) was extensively tested: $FreeBSD: src/etc/mtree/BSD.usr.dist,v 1.188.2.40 2003/02/14 22:38:14 necta= r Exp $ 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 --vtzGhvizbBRQ85DL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+W3zKUkv4P6juNwoRAqOtAKCCVxOy/ixvpzKZCOudnHVJtwCEygCghajQ yIIZgZUy/1U9gO1p6xZObfk= =fxMJ -----END PGP SIGNATURE----- --vtzGhvizbBRQ85DL-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 6:29:24 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 185CF37B401; Tue, 25 Feb 2003 06:29:22 -0800 (PST) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id AABB543FA3; Tue, 25 Feb 2003 06:29:20 -0800 (PST) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 2D70B3F4E; Tue, 25 Feb 2003 09:29:30 -0500 (EST) From: "Dan Langille" To: Ruslan Ermilov Date: Tue, 25 Feb 2003 09:32:32 -0500 MIME-Version: 1.0 Subject: Re: /usr/share/openssl/ needs to exist during install Cc: "Jacques A. Vidrine" , freebsd-stable@FreeBSD.org Message-ID: <3E5B3830.14720.32444E12@localhost> In-reply-to: <20030225142514.GA27891@sunbay.com> References: <3E5B3341.31705.323106F8@localhost> X-mailer: Pegasus Mail for Windows (v4.02a) 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 25 Feb 2003 at 16:25, Ruslan Ermilov wrote: > On Tue, Feb 25, 2003 at 09:11:29AM -0500, Dan Langille wrote: > > During the install phase of an upgrade to -STABLE from 4.7-RELEASE, I > > countered this error: > > > > install -o root -g wheel -m 444 ASN1_OBJECT_new.3.gz > > /usr/share/openssl/man/man > > 3 > > install: /usr/share/openssl/man/man3: No such file or directory > > *** Error code 71 > > > > Stop in /usr/src/secure/lib/libcrypto. > > *** Error code 1 > > > > Stop in /usr/src/secure/lib. > > *** Error code 1 > > > > Stop in /usr/src/secure. > > *** Error code 1 > > > > Stop in /usr/src. > > *** Error code 1 > > > > Stop in /usr/src. > > > > It appears that /usr/share/openssl/ must exist. It doesn't. Hence > > the failure. > > > > I'll keep this box sitting around in this state for a while in case > > it helps the diagnostics. > > > > $ uname -a > > FreeBSD konz.example.org 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #0: > > Mon Feb 24 13:30:56 EST 2003 > > dan@xeon.example.org:/usr/obj/usr/src/sys/GENERIC i386 > > > Strange. They were supposed to be created by this change, which > (I'm sure) was extensively tested: > > $FreeBSD: src/etc/mtree/BSD.usr.dist,v 1.188.2.40 2003/02/14 22:38:14 nectar Exp $ And that's what I have here: $FreeBSD: src/etc/mtree/BSD.usr.dist,v 1.188.2.40 2003/02/14 22:38:14 nectar Exp $ NOTE: I'm doing this with two boxes. The build was done on a XEON, the install is being done on a 486 using an NFS mount. -- Dan Langille : http://www.langille.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 6:31:44 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEB2437B401; Tue, 25 Feb 2003 06:31:42 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64DCE43F93; Tue, 25 Feb 2003 06:31:41 -0800 (PST) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id E65538F; Tue, 25 Feb 2003 08:31:40 -0600 (CST) Received: by madman.celabo.org (Postfix, from userid 1001) id CE1F978C3E; Tue, 25 Feb 2003 08:31:40 -0600 (CST) Date: Tue, 25 Feb 2003 08:31:40 -0600 From: "Jacques A. Vidrine" To: Ruslan Ermilov Cc: Dan Langille , freebsd-stable@freebsd.org Subject: Re: /usr/share/openssl/ needs to exist during install Message-ID: <20030225143140.GD95475@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Ruslan Ermilov , Dan Langille , freebsd-stable@freebsd.org References: <3E5B3341.31705.323106F8@localhost> <20030225142514.GA27891@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030225142514.GA27891@sunbay.com> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.3i-ja.1 Sender: owner-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, Feb 25, 2003 at 04:25:14PM +0200, Ruslan Ermilov wrote: > > It appears that /usr/share/openssl/ must exist. It doesn't. Hence > > the failure. > Strange. They were supposed to be created by this change, which > (I'm sure) was extensively tested: > > $FreeBSD: src/etc/mtree/BSD.usr.dist,v 1.188.2.40 2003/02/14 22:38:14 nectar Exp $ Indeed. Dan, are you doing `make installworld' ? That runs mtree. Perhaps you can look at the full output to see why it is not being run for you. Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 6:35:49 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A48E437B401; Tue, 25 Feb 2003 06:35:47 -0800 (PST) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7229F43FAF; Tue, 25 Feb 2003 06:35:46 -0800 (PST) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 8C2913F4E; Tue, 25 Feb 2003 09:35:55 -0500 (EST) From: "Dan Langille" To: "Jacques A. Vidrine" Date: Tue, 25 Feb 2003 09:38:58 -0500 MIME-Version: 1.0 Subject: Re: /usr/share/openssl/ needs to exist during install Cc: freebsd-stable@freebsd.org Message-ID: <3E5B39B2.10082.324A316F@localhost> In-reply-to: <20030225143140.GD95475@madman.celabo.org> References: <20030225142514.GA27891@sunbay.com> X-mailer: Pegasus Mail for Windows (v4.02a) 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 25 Feb 2003 at 8:31, Jacques A. Vidrine wrote: > On Tue, Feb 25, 2003 at 04:25:14PM +0200, Ruslan Ermilov wrote: > > > It appears that /usr/share/openssl/ must exist. It doesn't. Hence > > > the failure. > > Strange. They were supposed to be created by this change, which > > (I'm sure) was extensively tested: > > > > $FreeBSD: src/etc/mtree/BSD.usr.dist,v 1.188.2.40 2003/02/14 22:38:14 nectar Exp $ > > > Indeed. Dan, are you doing `make installworld' ? That runs mtree. > Perhaps you can look at the full output to see why it is not being run > for you. That may be the key. I don't have logs from this issue. looking at my notes, I suspect I did a "make install" instead. I will try again and log it properly. See also my notes regarding the NFS mount (which I now think is not relevant to the problem). Thank you. -- Dan Langille : http://www.langille.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 6:46:35 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9508037B43F for ; Tue, 25 Feb 2003 06:46:32 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D8DF43FBD for ; Tue, 25 Feb 2003 06:46:23 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1PEk2bQ032486 for ; Tue, 25 Feb 2003 16:46:02 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1PEk1HR032464 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 25 Feb 2003 16:46:01 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1PEk1gU032459; Tue, 25 Feb 2003 16:46:01 +0200 (EET) Date: Tue, 25 Feb 2003 16:46:01 +0200 From: Ruslan Ermilov To: Dan Langille Cc: "Jacques A. Vidrine" , freebsd-stable@freebsd.org Subject: Re: /usr/share/openssl/ needs to exist during install Message-ID: <20030225144601.GA32052@sunbay.com> References: <3E5B3341.31705.323106F8@localhost> <3E5B3830.14720.32444E12@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="FCuugMFkClbJLl1L" Content-Disposition: inline In-Reply-To: <3E5B3830.14720.32444E12@localhost> 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 --FCuugMFkClbJLl1L Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 25, 2003 at 09:32:32AM -0500, Dan Langille wrote: > On 25 Feb 2003 at 16:25, Ruslan Ermilov wrote: >=20 > > On Tue, Feb 25, 2003 at 09:11:29AM -0500, Dan Langille wrote: > > > During the install phase of an upgrade to -STABLE from 4.7-RELEASE, I= =20 > > > countered this error: > > >=20 > > > install -o root -g wheel -m 444 ASN1_OBJECT_new.3.gz =20 > > > /usr/share/openssl/man/man > > > 3 > > > install: /usr/share/openssl/man/man3: No such file or directory > > > *** Error code 71 > > >=20 > > > Stop in /usr/src/secure/lib/libcrypto. > > > *** Error code 1 > > >=20 > > > Stop in /usr/src/secure/lib. > > > *** Error code 1 > > >=20 > > > Stop in /usr/src/secure. > > > *** Error code 1 > > >=20 > > > Stop in /usr/src. > > > *** Error code 1 > > >=20 > > > Stop in /usr/src. > > >=20 > > > It appears that /usr/share/openssl/ must exist. It doesn't. Hence=20 > > > the failure. > > >=20 > > > I'll keep this box sitting around in this state for a while in case= =20 > > > it helps the diagnostics. > > >=20 > > > $ uname -a > > > FreeBSD konz.example.org 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #0:=20 > > > Mon Feb 24 13:30:56 EST 2003 =20 > > > dan@xeon.example.org:/usr/obj/usr/src/sys/GENERIC i386 > > >=20 > > Strange. They were supposed to be created by this change, which > > (I'm sure) was extensively tested: > >=20 > > $FreeBSD: src/etc/mtree/BSD.usr.dist,v 1.188.2.40 2003/02/14 22:38:14 n= ectar Exp $ >=20 > And that's what I have here: >=20 > $FreeBSD: src/etc/mtree/BSD.usr.dist,v 1.188.2.40 2003/02/14 22:38:14=20 > nectar Exp $ >=20 > NOTE: I'm doing this with two boxes. The build was done on a XEON,=20 > the install is being done on a 486 using an NFS mount. >=20 Perhaps you then mistakenly ran ``make install'' instead of doing a ``make installworld'' then? That's the only reason I can think of. 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 --FCuugMFkClbJLl1L Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+W4GpUkv4P6juNwoRAvA5AKCLjN/xngteq4u1l+3EOMWRkqOzQQCbBrmI 2tmzvbjQfGB54Gs9BjMqz+o= =xppt -----END PGP SIGNATURE----- --FCuugMFkClbJLl1L-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 7:26:17 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 589E337B401; Tue, 25 Feb 2003 07:26:16 -0800 (PST) Received: from lava.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2B2543F3F; Tue, 25 Feb 2003 07:26:14 -0800 (PST) (envelope-from mike@sentex.net) Received: from simian.sentex.net (simeon.sentex.ca [192.168.43.27]) by lava.sentex.ca (8.12.7/8.12.7) with ESMTP id h1PFQ5pG043678; Tue, 25 Feb 2003 10:26:05 -0500 (EST) (envelope-from mike@sentex.net) Message-Id: <5.2.0.9.0.20030225102526.05852540@marble.sentex.ca> X-Sender: mdtpop@marble.sentex.ca (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Tue, 25 Feb 2003 10:30:54 -0500 To: "Jacques A. Vidrine" From: Mike Tancsa Subject: Re: HEADS UP: OpenSSL 0.9.7 in -STABLE Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: <20030225133248.GC95282@madman.celabo.org> References: <5.2.0.9.0.20030224145408.05edb800@marble.sentex.ca> <20030214223844.GA96059@madman.celabo.org> <5.2.0.9.0.20030224145408.05edb800@marble.sentex.ca> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: By Sentex Communications (lava/20020517) Sender: owner-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:32 AM 25/02/2003 -0600, Jacques A. Vidrine wrote: >On Mon, Feb 24, 2003 at 03:12:33PM -0500, Mike Tancsa wrote: > > and I have > > device crypto > > device hifn > > in the kernel. > >I believe you also need `device cryptodev', else when your application >tries to open /dev/crypto it will get ENXIO (use truss or ktrace to >see if this is what is happening). That was it, Thanks! There is now a VERY noticeable difference in the amount of CPU that sshd takes. The backup server is a PIII800. When doing a dump from a fast client, with 3des I was looking at close to 40%-50% of CPU going to sshd on the server. Now I see about 3%-5%. The stats are increasing now as well. # sysctl -A -x | grep -i cryp kern.usercrypto: 1 kern.userasymcrypto: 1 kern.cryptodevallowsoft: 0 kern.crypto_stats: Format:S,cryptostats Length:144 Dump:0x74e90900000000000000000000000000000000004ae70900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 cryptodesc: 64, 0, 0, 128, 649588 cryptop: 64, 0, 0, 128, 649588 ---Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 7:39:10 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E17837B401 for ; Tue, 25 Feb 2003 07:39:09 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id D675043F3F for ; Tue, 25 Feb 2003 07:39:07 -0800 (PST) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id 4CBEE54; Tue, 25 Feb 2003 09:39:07 -0600 (CST) Received: by madman.celabo.org (Postfix, from userid 1001) id 3CE4278C3E; Tue, 25 Feb 2003 09:39:07 -0600 (CST) Date: Tue, 25 Feb 2003 09:39:07 -0600 From: "Jacques A. Vidrine" To: Mike Tancsa Cc: freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: OpenSSL 0.9.7 in -STABLE Message-ID: <20030225153907.GC96816@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Mike Tancsa , freebsd-stable@FreeBSD.ORG References: <5.2.0.9.0.20030224145408.05edb800@marble.sentex.ca> <20030214223844.GA96059@madman.celabo.org> <5.2.0.9.0.20030224145408.05edb800@marble.sentex.ca> <5.2.0.9.0.20030225102526.05852540@marble.sentex.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5.2.0.9.0.20030225102526.05852540@marble.sentex.ca> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.3i-ja.1 Sender: owner-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, Feb 25, 2003 at 10:30:54AM -0500, Mike Tancsa wrote: > At 07:32 AM 25/02/2003 -0600, Jacques A. Vidrine wrote: > >I believe you also need `device cryptodev', else when your application > >tries to open /dev/crypto it will get ENXIO (use truss or ktrace to > >see if this is what is happening). > > That was it, Thanks! Great! > There is now a VERY noticeable difference in the amount of CPU that sshd > takes. The backup server is a PIII800. When doing a dump from a fast > client, with 3des I was looking at close to 40%-50% of CPU going to sshd on > the server. Now I see about 3%-5%. So how is the total throughput? Is it a win or a lose with the 7951? Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 7:44:26 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C86037B401; Tue, 25 Feb 2003 07:44:25 -0800 (PST) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3CCF43F75; Tue, 25 Feb 2003 07:44:23 -0800 (PST) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id A12B63D29; Tue, 25 Feb 2003 10:44:33 -0500 (EST) From: "Dan Langille" To: "Jacques A. Vidrine" Date: Tue, 25 Feb 2003 10:47:36 -0500 MIME-Version: 1.0 Subject: Re: /usr/share/openssl/ needs to exist during install Cc: Ruslan Ermilov , freebsd-stable@freebsd.org Message-ID: <3E5B49C8.2056.328906CA@localhost> In-reply-to: <20030225143140.GD95475@madman.celabo.org> References: <20030225142514.GA27891@sunbay.com> X-mailer: Pegasus Mail for Windows (v4.02a) 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 25 Feb 2003 at 8:31, Jacques A. Vidrine wrote: > On Tue, Feb 25, 2003 at 04:25:14PM +0200, Ruslan Ermilov wrote: > > > It appears that /usr/share/openssl/ must exist. It doesn't. Hence > > > the failure. > > Strange. They were supposed to be created by this change, which > > (I'm sure) was extensively tested: > > > > $FreeBSD: src/etc/mtree/BSD.usr.dist,v 1.188.2.40 2003/02/14 22:38:14 nectar Exp $ > > > Indeed. Dan, are you doing `make installworld' ? That runs mtree. > Perhaps you can look at the full output to see why it is not being run > for you. Yes, I must have done "make install" because "make installworld" just suceeded. Thanks folks. I appreciate the help. -- Dan Langille : http://www.langille.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 7:46:53 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 256F837B401; Tue, 25 Feb 2003 07:46:52 -0800 (PST) Received: from lava.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4461043FB1; Tue, 25 Feb 2003 07:46:51 -0800 (PST) (envelope-from mike@sentex.net) Received: from simian.sentex.net (simeon.sentex.ca [192.168.43.27]) by lava.sentex.ca (8.12.7/8.12.7) with ESMTP id h1PFknpG043816; Tue, 25 Feb 2003 10:46:50 -0500 (EST) (envelope-from mike@sentex.net) Message-Id: <5.2.0.9.0.20030225104931.050a8d60@marble.sentex.ca> X-Sender: mdtpop@marble.sentex.ca (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Tue, 25 Feb 2003 10:51:37 -0500 To: "Jacques A. Vidrine" From: Mike Tancsa Subject: Re: HEADS UP: OpenSSL 0.9.7 in -STABLE Cc: freebsd-stable@FreeBSD.org In-Reply-To: <20030225153907.GC96816@madman.celabo.org> References: <5.2.0.9.0.20030225102526.05852540@marble.sentex.ca> <5.2.0.9.0.20030224145408.05edb800@marble.sentex.ca> <20030214223844.GA96059@madman.celabo.org> <5.2.0.9.0.20030224145408.05edb800@marble.sentex.ca> <5.2.0.9.0.20030225102526.05852540@marble.sentex.ca> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: By Sentex Communications (lava/20020517) Sender: owner-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:39 AM 25/02/2003 -0600, Jacques A. Vidrine wrote: >So how is the total throughput? Is it a win or a lose with the 7951? Hard to tell as the boxes in question are all on 10BaseT full-duplex. I could saturate them before and still can now. But the load average on the server is far lower than before so I should be able to handle more clients at night when the backups run from the various machines. ---Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 8: 5:19 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD7FF37B401 for ; Tue, 25 Feb 2003 08:05:17 -0800 (PST) Received: from msgbas1x.cos.agilent.com (msgbas1x.cos.agilent.com [192.25.240.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B04443F3F for ; Tue, 25 Feb 2003 08:05:17 -0800 (PST) (envelope-from darrylo@soco.agilent.com) Received: from relcos1.cos.agilent.com (relcos1.cos.agilent.com [130.29.152.239]) by msgbas1x.cos.agilent.com (Postfix) with ESMTP id 93BE9172DC; Tue, 25 Feb 2003 09:05:16 -0700 (MST) Received: from mina.soco.agilent.com (mina.soco.agilent.com [141.121.54.157]) by relcos1.cos.agilent.com (Postfix) with ESMTP id A42DD5CB; Tue, 25 Feb 2003 09:05:15 -0700 (MST) Received: from mina.soco.agilent.com (darrylo@localhost [127.0.0.1]) by mina.soco.agilent.com (8.9.3 (PHNE_25184)/8.9.3 SMKit7.1.1_Agilent) with ESMTP id IAA21324; Tue, 25 Feb 2003 08:05:14 -0800 (PST) Message-Id: <200302251605.IAA21324@mina.soco.agilent.com> To: Dmitry Sukhodoev Cc: stable@FreeBSD.ORG Subject: Re: FreeBSD hangs Reply-To: Darryl Okahata In-Reply-To: Your message of "Tue, 25 Feb 2003 19:24:50 +0500." <20030225142450.3220ED918@bingo.ru> Mime-Version: 1.0 (generated by tm-edit 1.7) Content-Type: text/plain; charset=US-ASCII Date: Tue, 25 Feb 2003 08:05:13 -0800 From: Darryl Okahata Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dmitry Sukhodoev wrote: > how i can find reason of this hang? why hangs? please help me! > > there is no kernel panics, just stops and nothing :-( This may not be your problem, but you should check for leaking electrolytic capacitors on the motherboard. Lots of "faulty" capacitors were apparently produced around 2000-2001 (???), and many electronics (like motherboards) have been failing (since 2001, apparently). We had a motherboard with these bad capacitors, and FreeBSD would "just hang" on it. Eventually, the hangs got worse and worse until the hangs occurred during the BIOS bootup. Look for small amounts of light brown/wheat colored "mud/dirt" on/around the capacitors. See the pictures in this article: http://www.spectrum.ieee.org/WEBONLY/resource/feb03/ncap.html Specifically: http://www.spectrum.ieee.org/WEBONLY/resource/feb03/ncapf1.html (It's a bit hard to see, unfortunately.) [ Personally, I'd be paranoid about any electronics bought between 2000-2002. ] -- Darryl Okahata darrylo@soco.agilent.com DISCLAIMER: this message is the author's personal opinion and does not constitute the support, opinion, or policy of Agilent Technologies, or of the little green men that have been following him all day. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 8:12:24 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0464B37B401 for ; Tue, 25 Feb 2003 08:12:24 -0800 (PST) Received: from cedu.com (mail.cedu.com [65.171.153.202]) by mx1.FreeBSD.org (Postfix) with SMTP id 89AF643FAF for ; Tue, 25 Feb 2003 08:12:21 -0800 (PST) (envelope-from cblanchard@cedu.com) Received: from ESG_DOM-Message_Server by cedu.com with Novell_GroupWise; Tue, 25 Feb 2003 08:10:55 -0800 Message-Id: X-Mailer: Novell GroupWise Internet Agent 5.5.3.1 Date: Tue, 25 Feb 2003 08:10:50 -0800 From: "Christopher Blanchard" To: Subject: suscribe Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG suscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 8:23: 8 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5E5337B401 for ; Tue, 25 Feb 2003 08:23:07 -0800 (PST) Received: from laptop.tenebras.com (laptop.tenebras.com [66.92.188.18]) by mx1.FreeBSD.org (Postfix) with SMTP id 142F843F3F for ; Tue, 25 Feb 2003 08:23:04 -0800 (PST) (envelope-from kudzu@tenebras.com) Received: (qmail 14857 invoked from network); 25 Feb 2003 16:23:01 -0000 Received: from sapphire.tenebras.com (HELO tenebras.com) (192.168.188.241) by 0 with SMTP; 25 Feb 2003 16:23:01 -0000 Message-ID: <3E5B9864.2000900@tenebras.com> Date: Tue, 25 Feb 2003 08:23:00 -0800 From: Michael Sierchio User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:1.3a) Gecko/20021212 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Stacy Millions Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Maxtor Firewire Drives References: <200302240959.03513.wes@softweyr.com> <20030224103601.L22218-100000@steeltoe.niceboots.com> <20030224205811.GD85610@hal9000.halplant.com> <20030224210152.GC26172@pir.net> <3E5A8C67.7070805@mitre.org> <3E5A91D2.70403@millions.ca> In-Reply-To: <3E5A91D2.70403@millions.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 Stacy Millions wrote: > In a previous life, I worked at a place were they expected to be able to > restore files after 25 years. We had quite a collection of tape drives. Yes, the medium in most cases will be (theoretically) readable long after there are no devices capable of reading it. That's the real problem with some archival materials. Paper tape (acid-free paper) looks pretty good... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 9: 0: 3 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0B5A37B401 for ; Tue, 25 Feb 2003 09:00:00 -0800 (PST) Received: from smtp803.mail.sc5.yahoo.com (smtp803.mail.sc5.yahoo.com [66.163.168.182]) by mx1.FreeBSD.org (Postfix) with SMTP id D364943FB1 for ; Tue, 25 Feb 2003 08:59:59 -0800 (PST) (envelope-from drakcap@pacbell.net) Received: from sta-m5-21.wvi.com (HELO desk) (drakcap@pacbell.net@204.119.61.220 with login) by smtp-sbc-v1.mail.vip.sc5.yahoo.com with SMTP; 25 Feb 2003 16:59:58 -0000 Message-ID: <000501c2dcef$2111bbe0$0701a8c0@desk> From: "Robert English" To: "Dmitry Sukhodoev" , Cc: References: <20030225142450.3220ED918@bingo.ru> Subject: Re: FreeBSD hangs Date: Tue, 25 Feb 2003 08:58:30 -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 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-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 did not say if the hang occurs while in normal terminal, or when a graphic desktop is loaded when the hang occurs. I had that same problem you describe, mildly with 4.6 but worse with 4.7, but only when the graphic desktop was loaded - turned out my video card was only partially supported; the chipset (Savage4) was recognized and supported, but the card itself (Revolution9 SR9) was not. Replacing that with an ATI Rage128 AGP (fully supported card) solved the problem completely - no more freezes anywhere. Please let us know if this is the case with you or not. ----- Original Message ----- From: "Dmitry Sukhodoev" To: Cc: Sent: Tuesday, February 25, 2003 6:24 AM Subject: FreeBSD hangs > >Submitter-Id: current-users > >Originator: Dmitry Sukhodoev > >Organization: Bingo GC > >Confidential: no > >Synopsis: FreeBSD hangs > >Severity: critical > >Priority: high > >Category: > >Class: sw-bug > >Release: FreeBSD 4.7-STABLE i386 > >Environment: > System: FreeBSD bingo.ru 4.7-STABLE FreeBSD 4.7-STABLE #1: Tue Feb 25 16:24:18 YEKT 2003 root@bingo.ru:/usr/obj/usr/src/sys/bingo i386 > > >Description: > > i have a server machine: p3-733 on cusl2c, 512m ram, two hdd (40g - system and > users homes, seagate and 120g - hive of files, ibm), four ethernet adapters > 3com-905c. system was: FreeBSD 4.7-RELEASE-p3, now updated to 4.7-STABLE, Tue > Feb 18 20:04:38 YEKT 2003. > > and regular this system hangs. just stops and system have no reaction on the > network activity (ping), no reaction by monitor on the keyboard. on the monitor > same picture as was last time and no reaction. num/scroll/caps lock keys on the > keyboard also does not turn on/off the indicators. > > i'm in panic now, cause i'm updated the system from 4.7-R-p3 to 4.7-S, has > change the power block on the this pc to new 350w, has change all of memory to > new fresh modules, has change all ethernet adapters to new realtek 8139 i has > check my hard disks by "dd if=/dev/ad0 of=/dev/null bs=65536" (no errors was > founded) and it still regular hangs. unchanged remain only motherboard and > central processor. i cannot determine reason of this hang. > > all software installed from ports and it rather standard: samba, courier, > named, inetd (for tftp), sshd, httpd, trafd, postfix+kavdaemon, isc dhcpd 2, > proftpd, ipacctd, squid, mysql. > > how i can find reason of this hang? why hangs? please help me! > > there is no kernel panics, just stops and nothing :-( > > >How-To-Repeat: > > i don't know :-( > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 9: 5:12 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3744A37B401 for ; Tue, 25 Feb 2003 09:05:11 -0800 (PST) Received: from hub.org (hub.org [64.49.215.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBFF643F75 for ; Tue, 25 Feb 2003 09:05:10 -0800 (PST) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [64.49.215.141]) by hub.org (Postfix) with ESMTP id C88208C839A for ; Tue, 25 Feb 2003 13:05:02 -0400 (AST) Date: Tue, 25 Feb 2003 13:05:02 -0400 (AST) From: "Marc G. Fournier" To: freebsd-stable@freebsd.org Subject: 4.8-PRERELEASE 'hangs' nightly like clockwork ... Message-ID: <20030225125414.P90059@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 For the past few nights, since I "fixed" the KVA_PAGES issue, the server seems to be hanging almost like clockwork ... plus or minus a bit, but is around 23hrs or so since the last hang (or, around 9pm CST, not sure which one is the 'trigger') ... top, from last nights, shows: last pid: 44187; load averages: 0.29, 11.36, 19.195 up 1+00:11:55 22:04:00 3173 processes:1 running, 3150 sleeping, 22 zombie CPU states: 0.0% user, 0.0% nice, 8.6% system, 0.6% interrupt, 90.8% idle Mem: 2335M Active, 426M Inact, 595M Wired, 205M Cache, 199M Buf, 5860K Free Swap: 2048M Total, 495M Used, 1553M Free, 24% Inuse now, I got the folks down at Rackspace to do a ctl-alt-esc and 'panic', and it dumps core, if that helps any ... a gdb on the core file just tells me that a panic was issued from the key board ... the top session above continued to run up until they issued the ctl-alt-sec, as does a ping to the server, so it looks like those processes resident in memory do continu to run ... I'm using netdump to dump core to a second machine, since I don't have sufficient swap space to dump to the local machine ... So, I'm kind of at a loss as to what to look at next, and/or report ... is there something I can look for in the core? Or is it a hardware issue (I know that that is always the easiest blame, and hardest to debug)? Or ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 9:24:24 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0761937B401 for ; Tue, 25 Feb 2003 09:24:24 -0800 (PST) Received: from dns1.vizion2000.net (dns1.vizion2000.net [64.58.171.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E73043FB1 for ; Tue, 25 Feb 2003 09:24:22 -0800 (PST) (envelope-from vizion@ixpres.com) Received: from vizion (vizion.vizion2000.net [64.58.171.92]) by dns1.vizion2000.net (8.11.6/8.11.6) with SMTP id h1PHlik10876 for ; Tue, 25 Feb 2003 09:47:45 -0800 (PST) (envelope-from vizion@ixpres.com) Message-ID: <034901c2dcf0$f5c4eaa0$15b55042@vizion2000.net> From: "vizion communication" To: "FreeBSD Stable" References: <3E5568AF.1050100@labs.mot.com> <20030221084955.GC12058@kierun.org> <20030221090930.GA55832@HAL9000.homeunix.com> <200302210838.34252.bts@babbleon.org> <3E56705C.4010206@labs.mot.com> <200302241940.h1OJeY94046350@apollo.backplane.com> <3E5AF226.6050305@barryp.org> Subject: BayNetworks Centillion Date: Tue, 25 Feb 2003 09:11:14 -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 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-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 Could anyone please tell me if there is any software for managing a BayNets Centillion 100 for FreeBSD? David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 11:16:48 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89B5B37B405; Tue, 25 Feb 2003 11:16:47 -0800 (PST) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1ED243F93; Tue, 25 Feb 2003 11:16:45 -0800 (PST) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.7/8.12.7) with ESMTP id h1PJGf9n006928; Tue, 25 Feb 2003 20:16:41 +0100 (CET) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.7/8.12.7/Submit) id h1PJGZnj006926; Tue, 25 Feb 2003 20:16:35 +0100 (CET) Date: Tue, 25 Feb 2003 20:16:35 +0100 From: Wilko Bulte To: "M. Warner Losh" Cc: freebsd-stable@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG Subject: Re: Compaq WL200 wireless card trouble Message-ID: <20030225201635.A6911@freebie.xs4all.nl> References: <20030221212435.A6642@freebie.xs4all.nl> <20030222.144836.71835717.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030222.144836.71835717.imp@bsdimp.com>; from imp@bsdimp.com on Sat, Feb 22, 2003 at 02:48:36PM -0700 X-OS: FreeBSD 4.7-STABLE X-PGP: finger wilko@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 On Sat, Feb 22, 2003 at 02:48:36PM -0700, M. Warner Losh wrote: > In message: <20030221212435.A6642@freebie.xs4all.nl> > Wilko Bulte writes: > : pcic0: port 0xcc00-0xcc03 irq > > This doesn't work before 4.7-stable (and maybe I haven't MFC'd all the > changes form current to make it work). Will 5.0R work as well? -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 13: 9:21 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC42C37B401 for ; Tue, 25 Feb 2003 13:09:19 -0800 (PST) Received: from codeblau.de (codeblau.walledcity.de [212.84.209.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id A982943F93 for ; Tue, 25 Feb 2003 13:09:13 -0800 (PST) (envelope-from stephan-freebsd-stable@eckner.org) Received: (qmail 6814 invoked by uid 103); 25 Feb 2003 21:09:32 -0000 Date: Tue, 25 Feb 2003 22:09:32 +0100 From: Stephan Eckner To: freebsd-stable@freebsd.org Subject: problem with 21143-based dual port NIC Message-ID: <20030225210932.GA6448@knuth.codeblau.de> Mail-Followup-To: freebsd-stable@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.27i Sender: owner-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, recently we ordered a low-profile dual-port NIC from AEI (P230TX, www.aei-it.com). The card has two 21143TD and an intel PCI-to-PCI Bridge (S21152BB) on it. Unfortunately dc-driver (4.0 Stable from 21.2.2003) only manages to initialise one of the two ports: pcib5: at device 3.0 on pci1 pci2: on pcib5 dc0: port 0x5000-0x507f mem 0xed8ffc00-0xed8fffff irq 3 at device 4.0 on pci2 dc0: Ethernet address: 00:50:c2:11:30:89 miibus0: on dc0 ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto dc1: irq 191 at device 7.0 on pci2 dc1: couldn't map ports/memory device_probe_and_attach: dc1 attach returned 6 The irq 191 seems a bit disproportionate to me :) If anybody wants more debug output I'd be happy to provide some, just tell me what information you need. Thanks in advance, Stephan -- Stephan Eckner http://www.eckner.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 13:10:28 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEDB237B401 for ; Tue, 25 Feb 2003 13:10:25 -0800 (PST) Received: from elisha.daleco.biz (cdm-66-92-15-cart.cox-internet.com [66.76.92.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id B563243FB1 for ; Tue, 25 Feb 2003 13:10:24 -0800 (PST) (envelope-from kdk@daleco.biz) Received: from DaleCoportable ([192.168.0.250]) by elisha.daleco.biz (8.12.6/8.12.6) with SMTP id h1PLANmd013951 for ; Tue, 25 Feb 2003 15:10:23 -0600 (CST) (envelope-from kdk@daleco.biz) Message-ID: <003601c2dd12$1af83860$fa00a8c0@DaleCoportable> From: "Kevin D. Kinsey, DaleCo, S.P." To: Subject: Borked kernel? Top is screwy... Date: Tue, 25 Feb 2003 15:08:54 -0600 Organization: DaleCo, S.P. - "The Solutions People" 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.2720.3000 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 Anyone ever seen anything like this? Got me a little worried, since the location of this box closes in two hours.... I'm hoping to get down there and boot a different kernel; I'm also thinking of packing some RAM. Kevin Kinsey DaleCo, S.P. --------------------------------------------------------------------- ---------------------------- #top last pid: 178; load averages: 0.03, 0.04, 0.01 up 0+00:05:45 15:04:07 16 processes: 1 starting, 2 running CPU states: 0.4% user, 0.0% nice, 0.0% system, 0.0% interrupt, 99.6% idle Mem: 16M Active, 14M Inact, 20M Wired, 4028K Cache, 16M Buf, 193M Free Swap: 1024M Total, 1024M Free PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND 1 ))(*--./* -2 -52 0K 1126G ? -128 0:00 6.54% 6.54% <> 178 root 28 0 1908K 1216K RUN 0:00 7.94% 1.76% top 67 root -22 972 0K 0K START ??? 0.05% 0.05% 67260 root -22 -52 389M 0K ? -83 ??? 0.00% 0.05% <> -869370168 root -22 -52 0K 56715M ? -96 ??? 0.00% 0.00% <> 0 root -22 21 0K 0K ? 74 ??? 0.00% 0.00% <> 3 /0,'''00/* -18 49239 0K 0K ? -124 5748.1 0.00% 0.00% <> 0 root -22 -52 0K 0K ? -1 158.4H 0.00% 0.00% <> -1049220864 root -22 21 256K 7572K ? -48 0:00 0.00% 0.00% <> 1953460082 /0*'-*/0+* -22 -52 0K ,K RUN ??? 1231177800.68% 171685568.75% <> 1 root -22 53583 0K 0K ? 122 ??? 0.00% 167267593.75% -1049230144 (*'-)0+'. -22 -52 0K 39340M ? -64 0:00 0.00% 167266509.38% <> -1069097344 root -22 -52 0K 1126G ? -128 0:00 167265690.43% 167265690.43% <> 29795 1819374457 -22 49108 0K 0K ? 115 0:00 167265647.27% 167265647.27% -869356032 daemon -22 -52 3068M 108K ? 114 ??? 159481945.82% 158466000.00% <> 0 29285 -22 -52 3353M 0K ? 99 ??? 158448331.25% 158448331.25% To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 13:22:18 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0496337B401 for ; Tue, 25 Feb 2003 13:22:17 -0800 (PST) Received: from radix.cryptio.net (radix.cryptio.net [199.181.107.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2C414401E for ; Tue, 25 Feb 2003 13:21:59 -0800 (PST) (envelope-from emechler@radix.cryptio.net) Received: from radix.cryptio.net (localhost [127.0.0.1]) by radix.cryptio.net (8.12.6/8.12.6) with ESMTP id h1PLLhBd067502 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 25 Feb 2003 13:21:43 -0800 (PST) (envelope-from emechler@radix.cryptio.net) Received: (from emechler@localhost) by radix.cryptio.net (8.12.6/8.12.6/Submit) id h1PLLhxd067501; Tue, 25 Feb 2003 13:21:43 -0800 (PST) Date: Tue, 25 Feb 2003 13:21:43 -0800 From: Erick Mechler To: "Kevin D. Kinsey, DaleCo, S.P." Cc: stable@FreeBSD.ORG Subject: Re: Borked kernel? Top is screwy... Message-ID: <20030225212143.GV30248@techometer.net> References: <003601c2dd12$1af83860$fa00a8c0@DaleCoportable> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <003601c2dd12$1af83860$fa00a8c0@DaleCoportable> 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 :: Anyone ever seen anything like this? :: :: Got me a little worried, since the location of this box closes in two :: hours.... I'm hoping to get down there and boot a different kernel; I'm :: also thinking of packing some RAM. Looks like your kernel and your world are out-of-sync. Did this happen after an upgrade or just out of the blue? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 13:25:34 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 314DD37B401; Tue, 25 Feb 2003 13:25:33 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19FF343FAF; Tue, 25 Feb 2003 13:25:32 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.6/8.12.3) with ESMTP id h1PLPR3Y098851; Tue, 25 Feb 2003 14:25:28 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Tue, 25 Feb 2003 14:24:59 -0700 (MST) Message-Id: <20030225.142459.14204068.imp@bsdimp.com> To: wkb@freebie.xs4all.nl Cc: freebsd-stable@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG Subject: Re: Compaq WL200 wireless card trouble From: "M. Warner Losh" In-Reply-To: <20030225201635.A6911@freebie.xs4all.nl> References: <20030221212435.A6642@freebie.xs4all.nl> <20030222.144836.71835717.imp@bsdimp.com> <20030225201635.A6911@freebie.xs4all.nl> X-Mailer: Mew version 2.1 on Emacs 21.2 / 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: <20030225201635.A6911@freebie.xs4all.nl> Wilko Bulte writes: : On Sat, Feb 22, 2003 at 02:48:36PM -0700, M. Warner Losh wrote: : > In message: <20030221212435.A6642@freebie.xs4all.nl> : > Wilko Bulte writes: : > : pcic0: port 0xcc00-0xcc03 irq : > : > This doesn't work before 4.7-stable (and maybe I haven't MFC'd all the : > changes form current to make it work). : : Will 5.0R work as well? I'm guessing yes. I say guessing because I haven't put my WL200 card into a -current box in a few months. It worked then, iirc. You must use OLDCARD, however, as NEWCARD has no chance of working with the 6729 that's on this PCI card. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 13:57:15 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DD5C37B401 for ; Tue, 25 Feb 2003 13:57:14 -0800 (PST) Received: from elisha.daleco.biz (cdm-66-92-15-cart.cox-internet.com [66.76.92.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7150143FBF for ; Tue, 25 Feb 2003 13:57:13 -0800 (PST) (envelope-from kdk@daleco.biz) Received: from DaleCoportable ([192.168.0.250]) by elisha.daleco.biz (8.12.6/8.12.6) with SMTP id h1PLvBmd014045; Tue, 25 Feb 2003 15:57:12 -0600 (CST) (envelope-from kdk@daleco.biz) Message-ID: <011c01c2dd18$98dd9fd0$fa00a8c0@DaleCoportable> From: "Kevin D. Kinsey, DaleCo, S.P." To: "Erick Mechler" Cc: References: <003601c2dd12$1af83860$fa00a8c0@DaleCoportable> <20030225212143.GV30248@techometer.net> Subject: Re: Borked kernel? Top is screwy... Date: Tue, 25 Feb 2003 15:55:22 -0600 Organization: DaleCo, S.P. - "The Solutions People" 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.2720.3000 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: "Erick Mechler" To: "Kevin D. Kinsey, DaleCo, S.P." Cc: Sent: Tuesday, February 25, 2003 3:21 PM Subject: Re: Borked kernel? Top is screwy... > :: Anyone ever seen anything like this? > :: > :: Got me a little worried, since the location of this box closes in two > :: hours.... I'm hoping to get down there and boot a different kernel; I'm > :: also thinking of packing some RAM. > > Looks like your kernel and your world are out-of-sync. Did this happen > after an upgrade or just out of the blue? > Hmm, thanks. Actually, I've been fighting a bad world install today, but I'd never seen that before.... KDK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 14: 2: 7 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75D0137B401; Tue, 25 Feb 2003 14:02:05 -0800 (PST) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id B497E43FA3; Tue, 25 Feb 2003 14:02:03 -0800 (PST) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.7/8.12.7) with ESMTP id h1PM206n000517; Tue, 25 Feb 2003 23:02:00 +0100 (CET) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.7/8.12.7/Submit) id h1PM20qe000516; Tue, 25 Feb 2003 23:02:00 +0100 (CET) Date: Tue, 25 Feb 2003 23:02:00 +0100 From: Wilko Bulte To: "M. Warner Losh" Cc: freebsd-stable@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG Subject: Re: Compaq WL200 wireless card trouble Message-ID: <20030225230159.A481@freebie.xs4all.nl> References: <20030221212435.A6642@freebie.xs4all.nl> <20030222.144836.71835717.imp@bsdimp.com> <20030225201635.A6911@freebie.xs4all.nl> <20030225.142459.14204068.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030225.142459.14204068.imp@bsdimp.com>; from imp@bsdimp.com on Tue, Feb 25, 2003 at 02:24:59PM -0700 X-OS: FreeBSD 4.8-PRERELEASE X-PGP: finger wilko@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 On Tue, Feb 25, 2003 at 02:24:59PM -0700, M. Warner Losh wrote: > In message: <20030225201635.A6911@freebie.xs4all.nl> > Wilko Bulte writes: > : On Sat, Feb 22, 2003 at 02:48:36PM -0700, M. Warner Losh wrote: > : > In message: <20030221212435.A6642@freebie.xs4all.nl> > : > Wilko Bulte writes: > : > : pcic0: port 0xcc00-0xcc03 irq > : > > : > This doesn't work before 4.7-stable (and maybe I haven't MFC'd all the > : > changes form current to make it work). > : > : Will 5.0R work as well? > > I'm guessing yes. I say guessing because I haven't put my WL200 card > into a -current box in a few months. It worked then, iirc. You must > use OLDCARD, however, as NEWCARD has no chance of working with the > 6729 that's on this PCI card. OK, I discovered that as well :) Is this the weirdest PCMCIA-PCI bridge chip west of the Great Wall of China? In other words: is NEWCARD doomed forever for this bridge? At least the experience I have right now is that it works a lot better with OLDCARD and 5.0 than with 4.7-stable. No watchdog timeouts anymore, just tx failed, retry etc. Next step is to see if hostap can be made to work. -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 15:44:44 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7374737B401; Tue, 25 Feb 2003 15:44:43 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED71E43F75; Tue, 25 Feb 2003 15:44:42 -0800 (PST) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.3/8.12.3) with ESMTP id h1PNig8J070040; Tue, 25 Feb 2003 15:44:42 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200302252344.h1PNig8J070040@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 From: Orion Hodson To: freebsd-stable@freebsd.org, freebsd-hardware@freebsd.org Subject: VIA8233A audio: call for testers Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 25 Feb 2003 15:44:42 -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 This is a call for testers for a revised VIA8233/8235 audio driver on FreeBSD. Reports are in that it works on the VIA8233C and the 8235, but the 8233A has a slightly different register set. If you own a VIA8233A and are running -stable or 4.6/4.7, could you check sound still works for you with the revised driver. Reports have come in that it works on the 8233C and 8235, but the 8233A requires some slightly different handling and the new driver potentially offers S/PDIF as an added feature. The requisite info is available at: http://people.freebsd.org/~orion/via8233/2003-02-24/ Alternatively, if you are running -CURRENT, just building a kernel today will have this code in. Only the register set selection is specific to the 8233A. The code is safe with regard to not crashing your box, ie the same code paths are run with the other chipsets and do not cause a problem. Thanks - Orion To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 16:30:52 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 473A837B401 for ; Tue, 25 Feb 2003 16:30:50 -0800 (PST) Received: from mail.sandvine.com (sandvine.com [199.243.201.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44C7443FAF for ; Tue, 25 Feb 2003 16:30:49 -0800 (PST) (envelope-from don@sandvine.com) Received: by mail.sandvine.com with Internet Mail Service (5.5.2653.19) id ; Tue, 25 Feb 2003 19:30:48 -0500 Message-ID: From: Don Bowman To: "'freebsd-stable@freebsd.org'" Subject: panic with fork? Date: Tue, 25 Feb 2003 19:30:41 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-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 find that if I run the below: $ while true; do daemon -f bash -c exit; done on 4.7 release, that the machine will panic shortly after 64K forks. This is on a SMP machine. Not sure if the 64K number is a coincidence or not (its fairly repeatable, usually its about ~66000). Does anybody have any suggestions for recent fixes which might address this before I dive in and look? The backtrace is as below: #0 dumpsys () at /d2/don/src/sys/kern/kern_shutdown.c:493 #1 0xc01b3bb8 in boot (howto=256) at /d2/don/src/sys/kern/kern_shutdown.c:322 #2 0xc01b40e1 in panic (fmt=0xc031d419 "%s") at /d2/don/src/sys/kern/kern_shutdown.c:608 #3 0xc02c9f2e in trap_fatal (frame=0xe8bbbe38, eva=3217031168) at /d2/don/src/sys/i386/i386/trap.c:974 #4 0xc02c9b5d in trap_pfault (frame=0xe8bbbe38, usermode=0, eva=3217031168) at /d2/don/src/sys/i386/i386/trap.c:867 #5 0xc02c95ff in trap (frame={tf_fs = -1071120360, tf_es = 16, tf_ds = 16, tf_edi = -8585856, tf_esi = -8585748, tf_ebp = -390349192, tf_isp = -390349212, tf_ebx = -1059302024, tf_edx = 405549059, tf_ecx = 0, tf_eax = 0, tf_trapno = 12, tf_err = 2, tf_eip = -1070838665, tf_cs = 8, tf_eflags = 66054, tf_esp = -390349168, tf_ss = -1070836504}) at /d2/don/src/sys/i386/i386/trap.c:466 #6 0xc02c4c77 in pmap_kenter (va=0, pa=405549056) at /d2/don/src/sys/i386/i386/pmap.c:723 #7 0xc02c54e8 in pmap_pinit (pmap=0xff7cfdec) at /d2/don/src/sys/i386/i386/pmap.c:1153 #8 0xc027d2cd in vmspace_alloc (min=0, max=3217031168) at /d2/don/src/sys/vm/vm_map.c:177 #9 0xc027f7b7 in vmspace_fork (vm1=0xe8b72b40) at /d2/don/src/sys/vm/vm_map.c:2196 #10 0xc027c49b in vm_fork (p1=0xe3aadf20, p2=0xe9d295a0, flags=20) at /d2/don/src/sys/vm/vm_glue.c:232 #11 0xc01aba00 in fork1 (p1=0xe3aadf20, flags=20, procp=0xe8bbbf2c) at /d2/don/src/sys/kern/kern_fork.c:488 #12 0xc01ab166 in fork (p=0xe3aadf20, uap=0xe8bbbf80) at /d2/don/src/sys/kern/kern_fork.c:100 #13 0xc02ca29d in syscall2 (frame={tf_fs = 65583, tf_es = -1078001617, tf_ds = -1078001617, tf_edi = 0, tf_esi = -1077937668, tf_ebp = -1077937652, tf_isp = -390348844, tf_ebx = -1077937684, tf_edx = -1077937684, tf_ecx = 1, tf_eax = 2, tf_trapno = 12, tf_err = 2, tf_eip = 134890124, tf_cs = 31, tf_eflags = 582, tf_esp = -1077937712, tf_ss = 47}) at /d2/don/src/sys/i386/i386/trap.c:1175 #14 0xc02b476b in Xint0x80_syscall () #15 0x805610c in ?? () #16 0x80557cb in ?? () #17 0x8052d70 in ?? () #18 0x8052817 in ?? () #19 0x8054b69 in ?? () #20 0x8054abf in ?? () #21 0x8052ee9 in ?? () #22 0x8052817 in ?? () #23 0x804a191 in ?? () #24 0x8048885 in ?? () #25 0x8048135 in ?? () To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 16:33: 1 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50AF937B401 for ; Tue, 25 Feb 2003 16:33:00 -0800 (PST) Received: from linux.nu (md469257c.utfors.se [212.105.37.124]) by mx1.FreeBSD.org (Postfix) with SMTP id 842B143FBD for ; Tue, 25 Feb 2003 16:32:57 -0800 (PST) (envelope-from tysken@post.utfors.se) Received: (qmail 66101 invoked by uid 1023); 26 Feb 2003 01:31:34 -0000 Date: Wed, 26 Feb 2003 01:31:34 +0000 From: User Tysken To: freebsd-stable@freebsd.org Subject: XDM on multiple virutal X screens ( ALT-F9,ALT-F10...) Message-ID: <20030226013134.GA66065@dasboot.birch.se> Mime-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: 8bit 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 have searched some on google and on xfree86.org but I can't find any usefull information about this mater. Honestly I haven't searched that mutch but I haven't found something usefull yet. I want to be able to have multitiple xdm loginscreens on the same workstation using only one monitor and so on. I wounder if this is the right file to edit in: /usr/X11R6/lib/X11/xdm/Xservers The only line that is in there is ":0 local /usr/X11R6/bin/X" I have tried to add ":1 local /usr/X11R6/bin/X" but xdm does not seem to like it. It wound "behave" that I want it to. First i started xdm and then i just crashed after a few seconds. And then I tryed to start It again and the it started but I did not get multitple xdm login screens on ALT-F9... ALT-F10. And I didn't even get a login prompt if you understand what I mean only a the standar gray and black backgrund with a login screen. Perhaps I haven't searched thurly enought but perhaps someone can point me in the right direction of do this. One thing that I perhaps should mention is that im using a Geforce 3 Ti 200 with the nvidia drv and it seems to be quite unstable on my system. So sometimes the computer crashes and I have to reboot it to get it working. Sometimes I can just ssh from an other box and kill and restart xdm. And some times I can't even ping my workstation and are forced to do a hard reboot. That is however out of subject and I should write it in a new mail. It might perhaps be so that I have to do some config changes in /usr/X11R6/lib/X11/XF86Config but I don't think thats necessery or am I wrong? Anyway thanks for reading and perhaps replying to this mail :) Mvh Mattias Björk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 16:35:41 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B67CC37B401 for ; Tue, 25 Feb 2003 16:35:39 -0800 (PST) Received: from tomts5-srv.bellnexxia.net (tomts5.bellnexxia.net [209.226.175.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72D6E43FB1 for ; Tue, 25 Feb 2003 16:35:38 -0800 (PST) (envelope-from dmagda@magda.ca) Received: from number6.magda.ca ([64.229.228.194]) by tomts5-srv.bellnexxia.net (InterMail vM.5.01.04.19 201-253-122-122-119-20020516) with ESMTP id <20030226003537.BVGT25099.tomts5-srv.bellnexxia.net@number6.magda.ca>; Tue, 25 Feb 2003 19:35:37 -0500 Received: from number6.magda.ca (localhost.magda.ca [127.0.0.1]) by number6.magda.ca (8.12.7/8.12.7) with ESMTP id h1Q0Zaa1001913 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 25 Feb 2003 19:35:36 -0500 (EST) (envelope-from dmagda@magda.ca) Received: (from dmagda@localhost) by number6.magda.ca (8.12.7/8.12.7/Submit) id h1Q0ZZHE001910; Tue, 25 Feb 2003 19:35:35 -0500 (EST) (envelope-from dmagda@number6.magda.ca) To: Gregory Bond Cc: stable@FreeBSD.ORG Subject: Re: ntp broadcast mode References: <200302240128.MAA29457@lightning.itga.com.au> Reply-To: dmagda@ee.ryerson.ca From: David Magda Date: 25 Feb 2003 19:35:35 -0500 In-Reply-To: <200302240128.MAA29457@lightning.itga.com.au> Message-ID: <868yw3q3oo.fsf@number6.magda.ca> Lines: 31 User-Agent: Gnus/5.09 (Gnus v5.9.0) 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 Gregory Bond writes: [...] > I run ntp with "ntp -dddd -n -b -p -f " (with > no ntp.conf file) and I see in the ntp debug that it is reading the > broadcast NTP packet. [...] Assuming you meant "ntpd..." as there is no 'ntp' command. > "What we have here is a failure to associate!" > > [Both machines are recent 4-Stable, sometime after 4.7R, tho I also > fail to associate with a Solaris client.] > > Any clues? How long do you wait for it to associate? I have ntpd(8) setup to syncronize to about five Stratum 2 servers, and association takes about 3-4 minutes. Then it takes a little longer to actually start getting good convergence on the "correct" time. You may also want to ask in comp.protocols.time.ntp -- the authors of the NTP hang out there. -- David Magda Because the innovator has for enemies all those who have done well under the old conditions, and lukewarm defenders in those who may do well under the new. -- Niccolo Machiavelli, _The Prince_, Chapter VI To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 18:46:41 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8AC237B401 for ; Tue, 25 Feb 2003 18:46:39 -0800 (PST) Received: from mail.digitalbastards.net (wsip68-98-223-24.ph.ph.cox.net [68.98.223.24]) by mx1.FreeBSD.org (Postfix) with SMTP id 5C65643F75 for ; Tue, 25 Feb 2003 18:46:36 -0800 (PST) (envelope-from magusbaal@digitalbastards.net) Received: (qmail 28451 invoked by uid 64014); 26 Feb 2003 02:46:35 -0000 Received: from magusbaal@digitalbastards.net by solinari by uid 64011 with qmail-scanner-1.16 (clamscan: 0.54. spamassassin: 2.20. Clear:. Processed in 0.922647 secs); 26 Feb 2003 02:46:35 -0000 X-Qmail-Scanner-Mail-From: magusbaal@digitalbastards.net via solinari X-Qmail-Scanner: 1.16 (Clear:. Processed in 0.922647 secs) Received: from unknown (HELO morgion) (192.168.2.56) by 10.0.2.11 with SMTP; 26 Feb 2003 02:46:33 -0000 From: "Steven" To: Subject: Problem in rc4.c while compiling kernel Date: Tue, 25 Feb 2003 19:46:33 -0700 Message-ID: <001e01c2dd41$45fd5c00$3802a8c0@internal.digitalbastards.net> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 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'm running into a problem compiling a new kernel. The error I get is: make: don't know how to make /usr/src/sys/crypto/rc4/rc4.c. Stop *** Error code 2=20 Stop in /usr/src.=20 *** Error code 1 I have already removed everything in /usr/src and re-cvsup'd everything. = I have made sure to nuke everything in /usr/obj. I've tried google, can't = find any hints on what is causing this problem. I usually rebuild the box = every couple of weeks for grins, it's been rebuilding great until a few days = ago. Anyone have an idea what I can try next. Thanks! Steven "exitus acta probat" "fide, sed cui vide" =20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 19: 9:20 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85A0C37B401 for ; Tue, 25 Feb 2003 19:09:19 -0800 (PST) Received: from mail.sandvine.com (sandvine.com [199.243.201.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE5A243F85 for ; Tue, 25 Feb 2003 19:09:18 -0800 (PST) (envelope-from don@sandvine.com) Received: by mail.sandvine.com with Internet Mail Service (5.5.2653.19) id ; Tue, 25 Feb 2003 22:09:18 -0500 Message-ID: From: Don Bowman To: Don Bowman , "''freebsd-stable@freebsd.org' '" Subject: RE: panic with fork? Date: Tue, 25 Feb 2003 22:09:12 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: Don Bowman >I find that if I run the below: >$ while true; do daemon -f bash -c exit; done ... So the problem is in pmap_pinit(). It calls kmem_alloc_pageable() to obtain a page directory table. In this case, kmem_alloc_pageable() returns NULL, and the code doesn't check it. Now, pmap_pinit() clearly doesn't expect to be able to fail, there's no provision for returning error. Does anyone have a suggestion for a fix? --don To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 21: 3:51 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1166C37B401 for ; Tue, 25 Feb 2003 21:03:50 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E70D43FA3 for ; Tue, 25 Feb 2003 21:03:49 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id D59EC67C8C; Tue, 25 Feb 2003 21:03:48 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id B4C4A1245; Tue, 25 Feb 2003 21:03:48 -0800 (PST) Date: Tue, 25 Feb 2003 21:03:48 -0800 From: Kris Kennaway To: Steven Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Problem in rc4.c while compiling kernel Message-ID: <20030226050348.GA82254@rot13.obsecurity.org> References: <001e01c2dd41$45fd5c00$3802a8c0@internal.digitalbastards.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <001e01c2dd41$45fd5c00$3802a8c0@internal.digitalbastards.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 Tue, Feb 25, 2003 at 07:46:33PM -0700, Steven wrote: > I'm running into a problem compiling a new kernel. The error I get is: > > > make: don't know how to make /usr/src/sys/crypto/rc4/rc4.c. Stop > *** Error code 2 > > Stop in /usr/src. > *** Error code 1 > > > I have already removed everything in /usr/src and re-cvsup'd everything. I > have made sure to nuke everything in /usr/obj. I've tried google, can't find > any hints on what is causing this problem. I usually rebuild the box every > couple of weeks for grins, it's been rebuilding great until a few days ago. > Anyone have an idea what I can try next. FAQ..you forgot to cvsup the src-sys-crypto collection To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 22: 8:57 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D05337B401 for ; Tue, 25 Feb 2003 22:08:56 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90F8C43F93 for ; Tue, 25 Feb 2003 22:08:55 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h1Q68s8Y006740; Tue, 25 Feb 2003 22:08:54 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h1Q68sGf006739; Tue, 25 Feb 2003 22:08:54 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Tue, 25 Feb 2003 22:08:54 -0800 From: David Schultz To: "Marc G. Fournier" Cc: freebsd-stable@FreeBSD.ORG Subject: Re: 4.8-PRERELEASE 'hangs' nightly like clockwork ... Message-ID: <20030226060854.GA6637@HAL9000.homeunix.com> Mail-Followup-To: "Marc G. Fournier" , freebsd-stable@FreeBSD.ORG References: <20030225125414.P90059@hub.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030225125414.P90059@hub.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 Marc G. Fournier : > For the past few nights, since I "fixed" the KVA_PAGES issue, the server > seems to be hanging almost like clockwork ... plus or minus a bit, but is > around 23hrs or so since the last hang (or, around 9pm CST, not sure which > one is the 'trigger') ... > > top, from last nights, shows: > > last pid: 44187; load averages: 0.29, 11.36, 19.195 up 1+00:11:55 22:04:00 > 3173 processes:1 running, 3150 sleeping, 22 zombie > CPU states: 0.0% user, 0.0% nice, 8.6% system, 0.6% interrupt, 90.8% idle > Mem: 2335M Active, 426M Inact, 595M Wired, 205M Cache, 199M Buf, 5860K Free > Swap: 2048M Total, 495M Used, 1553M Free, 24% Inuse > > now, I got the folks down at Rackspace to do a ctl-alt-esc and 'panic', > and it dumps core, if that helps any ... a gdb on the core file just tells > me that a panic was issued from the key board ... the top session above > continued to run up until they issued the ctl-alt-sec, as does a ping to > the server, so it looks like those processes resident in memory do continu > to run ... It sounds like processes are blocking forever on I/O. Once you have a crash dump, you can run ps(1) on the image to see what state processes were in when the dump was taken. I think you want something like ps -alxww -M/path/to/core -N/path/to/kernel If you notice a bunch of them stuck in a suspicious state, load the dump into kgdb and type proc N where N is the number of one of the stuck processes. Then type bt as usual and you'll get a backtrace of that process's stack. If any vnodes are involved, it might be useful to display those. My fu is probably too weak to debug your problem, but I've had two experiences trying to debug other problems. Where the filesystem has been concerned, Kirk has been VERY adept at finding and fixing the problem right away. Matt has also been extremely helpful. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 23:37:49 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6330437B401 for ; Tue, 25 Feb 2003 23:37:47 -0800 (PST) Received: from rebecca.tiscali.nl (rebecca.tiscali.nl [195.241.76.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92B5A43FCB for ; Tue, 25 Feb 2003 23:37:46 -0800 (PST) (envelope-from eric@monkey-online.net) Received: from eric.monkey-online.net (195-241-113-9-mx.xdsl.tiscali.nl [195.241.113.9]) by rebecca.tiscali.nl (Postfix) with ESMTP id 9459043EF0E for ; Wed, 26 Feb 2003 08:37:42 +0100 (MET) Message-Id: <5.2.0.9.0.20030226083346.03b4bb58@mail.monkey-online.net> X-Sender: eric@mail.monkey-online.net (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Wed, 26 Feb 2003 08:38:56 +0100 To: freebsd-stable@freebsd.org From: Eric Veraart Subject: Problem building 4.7-p6 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've installed two boxes with 4.7-release, and CVSUPed them to 4.7-p6. When I try to compile them I get some errors. The first one had something to do with lc missing. I threw away my entire /usr/obj and /usr/src and CVSUPed again from a different server. Now I get this message: cc -o make_keys -O -pipe -I. -I/usr/src/lib/libncurses -I/usr/src/lib/libncurses/../../contrib/ncurses/ncurses -I/usr/src/lib/libncurses/../../contrib/ncurses/include -Wall -DFREEBSD_NATIVE -DNDEBUG -DHAVE_CONFIG_H -DTERMIOS /usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/make_keys.c *** Error code 1 Stop in /usr/src/lib/libncurses. *** 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've tried to update my entire source, just ncursus, tried different CVSUP servers, on different dates, did make clean and make cleandir numerous times, and nothing helps! I've heard complaints from more people that the source at a lot of servers wouldn't build. Does anyone have a big ass tarball with the source of 4.7-p6 for me so at least I can install the boxes properly?! Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Tue Feb 25 23:50:18 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 513FF37B401 for ; Tue, 25 Feb 2003 23:50:16 -0800 (PST) Received: from mail.digitalbastards.net (wsip68-98-223-24.ph.ph.cox.net [68.98.223.24]) by mx1.FreeBSD.org (Postfix) with SMTP id 75AA443F85 for ; Tue, 25 Feb 2003 23:50:15 -0800 (PST) (envelope-from magusbaal@digitalbastards.net) Received: (qmail 6617 invoked by uid 64014); 26 Feb 2003 07:50:14 -0000 Received: from magusbaal@digitalbastards.net by solinari by uid 64011 with qmail-scanner-1.16 (clamscan: 0.54. spamassassin: 2.20. Clear:. Processed in 1.944318 secs); 26 Feb 2003 07:50:14 -0000 X-Qmail-Scanner-Mail-From: magusbaal@digitalbastards.net via solinari X-Qmail-Scanner: 1.16 (Clear:. Processed in 1.944318 secs) Received: from unknown (HELO morgion) (192.168.2.56) by 10.0.2.11 with SMTP; 26 Feb 2003 07:50:10 -0000 From: "Steven" To: Subject: RE: Problem in rc4.c while compiling kernel Date: Wed, 26 Feb 2003 00:50:09 -0700 Message-ID: <000001c2dd6b$afb32e70$3802a8c0@internal.digitalbastards.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 In-Reply-To: <20030226050348.GA82254@rot13.obsecurity.org> 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 Ah hah! I knew I'd missed something!=20 I was missing my dose of caffeine when I set this up. I was specifying = the src-foo individually and missed a couple. I am now using the stable-cvsupfile example which uses src-* and that appears to have fixed = my problem.=20 Thanks for pointing out my id10t error :) Steven "exitus acta probat" "fide, sed cui vide" =20 -----Original Message----- From: owner-freebsd-stable@FreeBSD.ORG [mailto:owner-freebsd-stable@FreeBSD.ORG] On Behalf Of Kris Kennaway Sent: Tuesday, February 25, 2003 10:04 PM To: Steven Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Problem in rc4.c while compiling kernel On Tue, Feb 25, 2003 at 07:46:33PM -0700, Steven wrote: > I'm running into a problem compiling a new kernel. The error I get is: >=20 > > make: don't know how to make /usr/src/sys/crypto/rc4/rc4.c. Stop > *** Error code 2=20 >=20 > Stop in /usr/src.=20 > *** Error code 1 > >=20 > I have already removed everything in /usr/src and re-cvsup'd = everything. I > have made sure to nuke everything in /usr/obj. I've tried google, = can't find > any hints on what is causing this problem. I usually rebuild the box = every > couple of weeks for grins, it's been rebuilding great until a few days ago. > Anyone have an idea what I can try next. FAQ..you forgot to cvsup the src-sys-crypto 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 Tue Feb 25 23:56:40 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C6F437B405 for ; Tue, 25 Feb 2003 23:56:39 -0800 (PST) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id B231E43FBF for ; Tue, 25 Feb 2003 23:56:37 -0800 (PST) (envelope-from adam@blacktabby.org) Received: from emmenthaler.blacktabby.org (12-240-109-159.client.attbi.com[12.240.109.159]) by sccrmhc02.attbi.com (sccrmhc02) with ESMTP id <2003022607563600200hjpige>; Wed, 26 Feb 2003 07:56:36 +0000 Received: from cheshire.blacktabby.org (cheshire.blacktabby.org [192.168.1.198]) by emmenthaler.blacktabby.org (Postfix) with SMTP id 3CDE33A90 for ; Tue, 25 Feb 2003 23:56:35 -0800 (PST) Date: Tue, 25 Feb 2003 23:56:25 -0800 From: Adam Kranzel To: freebsd-stable@freebsd.org Subject: Thanks to the FreeBSD developers and release engineering team. Message-Id: <20030225235625.6f95788e.adam@blacktabby.org> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd5.0) 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 Hi... I just wanted to thank everyone who has contributed to FreeBSD for making such an amazingly stable and reliable OS. I just upgraded my mail server from 4.7-stable to 4.8-prerelease without a single hiccup. I updated with make world/make kernel/mergemaster, rebuilt postfix and courier-imap (because of the OpenSSL upgrade), and rebooted. Absolutely everything worked, without any hassle at all. There wasn't even any trouble with the config files for the new versions of postfix and courier-imap (though I checked for changes before I rebooted). Every time I do something like this, I'm reminded exactly why I run FreeBSD. It just *works*, without me having to re-wire my brain due to major changes, or reboot twenty thousand million times. thanks again -Adam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 0:43:48 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A1BD37B401 for ; Wed, 26 Feb 2003 00:43:46 -0800 (PST) Received: from util.inch.com (ns.inch.com [216.223.192.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 327B343FCB for ; Wed, 26 Feb 2003 00:43:45 -0800 (PST) (envelope-from spork@inch.com) Received: from shell.inch.com (inch.com [216.223.192.20]) by util.inch.com (8.12.6/8.12.6/UTIL-INCH-3.0.10) with ESMTP id h1Q8hfgg085664; Wed, 26 Feb 2003 03:43:41 -0500 (EST) (envelope-from spork@inch.com) Received: from shell.inch.com (localhost [127.0.0.1]) by shell.inch.com (8.12.6/8.12.6) with ESMTP id h1Q8hfOh098687; Wed, 26 Feb 2003 03:43:41 -0500 (EST) (envelope-from spork@inch.com) Received: from localhost (spork@localhost) by shell.inch.com (8.12.6/8.12.6/Submit) with ESMTP id h1Q8he1b098684; Wed, 26 Feb 2003 03:43:41 -0500 (EST) X-Authentication-Warning: shell.inch.com: spork owned process doing -bs Date: Wed, 26 Feb 2003 03:43:40 -0500 (EST) From: Charles Sprickman To: Jonathan Lemon Cc: stable@FreeBSD.ORG Subject: Re: LAST_ACK timeout In-Reply-To: <200302250317.h1P3HTtJ056208@mail.flugsvamp.com> Message-ID: <20030226033845.V98344@shell.inch.com> References: <200302250317.h1P3HTtJ056208@mail.flugsvamp.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, 24 Feb 2003, Jonathan Lemon wrote: > In LAST_ACK state, the machine should keep retransmitting the FIN > until it gets an ACK from the peer, or the connection times out, > which should take roughly 8 minutes. If the connections stay around > forever, then something is broken. The one thing all connections had in common was that they were outbound to MSN.com. I believe that to scale their junk software up, everything is behind load-balancers, which can make things interesting if the LB doesn't do things "correctly". > ISTR someone mentioning that things were working as expected in the > latest -stable, which version are you using? This particular box is 4.6.2-p2. Since rebooting with IPFilter in place, I'm not seeing it anymore. So either MSN fixed something or IPFilter is masking the problem (or both). Somewhere in my Google-ing, I found people claiming that LAST_ACK can sit around for days if the other end doesn't respond. If this were less of a harried situation, I would have tcpdumped some traffic to see if we were actually retransmitting the FIN. Got a PR or anything referencing the possible problem? Thanks, Charles > -- > Jonathan > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 0:49:22 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4375B37B401 for ; Wed, 26 Feb 2003 00:49:21 -0800 (PST) Received: from sccrmhc01.attbi.com (sccrmhc01.attbi.com [204.127.202.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B7E143FCB for ; Wed, 26 Feb 2003 00:49:20 -0800 (PST) (envelope-from DougB@freebsd.org) Received: from master.gorean.org (12-234-22-23.client.attbi.com[12.234.22.23]) by sccrmhc01.attbi.com (sccrmhc01) with SMTP id <2003022608491900100a2lqqe>; Wed, 26 Feb 2003 08:49:19 +0000 Date: Wed, 26 Feb 2003 00:49:18 -0800 (PST) From: Doug Barton To: Charles Sprickman Cc: Jonathan Lemon , stable@FreeBSD.ORG Subject: Re: LAST_ACK timeout In-Reply-To: <20030226033845.V98344@shell.inch.com> Message-ID: <20030226004737.N903@znfgre.tberna.bet> References: <200302250317.h1P3HTtJ056208@mail.flugsvamp.com> <20030226033845.V98344@shell.inch.com> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! 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, 26 Feb 2003, Charles Sprickman wrote: > > On Mon, 24 Feb 2003, Jonathan Lemon wrote: > > > In LAST_ACK state, the machine should keep retransmitting the FIN > > until it gets an ACK from the peer, or the connection times out, > > which should take roughly 8 minutes. If the connections stay around > > forever, then something is broken. > > The one thing all connections had in common was that they were outbound to > MSN.com. I believe that to scale their junk software up, everything is > behind load-balancers, which can make things interesting if the LB doesn't > do things "correctly". I agree on the need for LB's to do things right, but they aren't just for helping MS software. :) > > ISTR someone mentioning that things were working as expected in the > > latest -stable, which version are you using? > > This particular box is 4.6.2-p2. Since rebooting with IPFilter in place, > I'm not seeing it anymore. So either MSN fixed something or IPFilter is > masking the problem (or both). Somewhere in my Google-ing, I found people > claiming that LAST_ACK can sit around for days if the other end doesn't > respond. If this were less of a harried situation, I would have tcpdumped > some traffic to see if we were actually retransmitting the FIN. > > Got a PR or anything referencing the possible problem? I'm curious about whether keepalives help this situation. What does net.inet.tcp.always_keepalive say? Doug -- "The last time France wanted more evidence, it rolled right through Paris with a German flag." - David Letterman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 1: 3:49 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D833837B401; Wed, 26 Feb 2003 01:03:47 -0800 (PST) Received: from util.inch.com (ns.inch.com [216.223.192.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1326843FB1; Wed, 26 Feb 2003 01:03:47 -0800 (PST) (envelope-from spork@inch.com) Received: from shell.inch.com (inch.com [216.223.192.20]) by util.inch.com (8.12.6/8.12.6/UTIL-INCH-3.0.10) with ESMTP id h1Q93j1i090907; Wed, 26 Feb 2003 04:03:45 -0500 (EST) (envelope-from spork@inch.com) Received: from shell.inch.com (localhost [127.0.0.1]) by shell.inch.com (8.12.6/8.12.6) with ESMTP id h1Q93jOh098994; Wed, 26 Feb 2003 04:03:45 -0500 (EST) (envelope-from spork@inch.com) Received: from localhost (spork@localhost) by shell.inch.com (8.12.6/8.12.6/Submit) with ESMTP id h1Q93iV4098991; Wed, 26 Feb 2003 04:03:45 -0500 (EST) X-Authentication-Warning: shell.inch.com: spork owned process doing -bs Date: Wed, 26 Feb 2003 04:03:44 -0500 (EST) From: Charles Sprickman To: Doug Barton Cc: Jonathan Lemon , "" Subject: Re: LAST_ACK timeout In-Reply-To: <20030226004737.N903@znfgre.tberna.bet> Message-ID: <20030226040045.O98344@shell.inch.com> References: <200302250317.h1P3HTtJ056208@mail.flugsvamp.com> <20030226033845.V98344@shell.inch.com> <20030226004737.N903@znfgre.tberna.bet> 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, 26 Feb 2003, Doug Barton wrote: > I agree on the need for LB's to do things right, but they aren't just for > helping MS software. :) I understand, but I would bet there's been at least a quadrupling of machines backing hotmail/msn since they moved to windows... :) > I'm curious about whether keepalives help this situation. What does > net.inet.tcp.always_keepalive say? It's on now, and was previously: net.inet.tcp.always_keepalive: 1 The tunables related to it are defaults: net.inet.tcp.keepidle: 7200000 net.inet.tcp.keepintvl: 75000 Thanks, Charles > Doug > > -- > > "The last time France wanted more evidence, it rolled right > through Paris with a German flag." - David Letterman > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 2:29:20 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9C8337B401 for ; Wed, 26 Feb 2003 02:29:17 -0800 (PST) Received: from mailg.telia.com (mailg.telia.com [194.22.194.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50F2D43F93 for ; Wed, 26 Feb 2003 02:29:14 -0800 (PST) (envelope-from david@realityrift.com) Received: from d1o836.telia.com (d1o836.telia.com [213.65.240.241]) by mailg.telia.com (8.12.5/8.12.5) with ESMTP id h1QATDNL027856 for ; Wed, 26 Feb 2003 11:29:13 +0100 (CET) X-Original-Recipient: Received: from rift.ath.cx (h88n2fls32o836.telia.com [217.208.105.88]) by d1o836.telia.com (8.10.2/8.10.1) with SMTP id h1QATD601446 for ; Wed, 26 Feb 2003 11:29:13 +0100 (CET) Date: Wed, 26 Feb 2003 11:28:21 +0100 From: David Holm To: stable@FreeBSD.ORG Subject: serious perl issue Message-Id: <20030226112821.47bb339c.david@realityrift.com> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd4.7) 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 Hi, I installed FreeBSD 4.7 on my SMP machine (2xP3) a couple of weeks ago. The problem I'm having is that something is spawning alot of perl processes that never die. After having the machine running for 10 hours almost all of my ram and about 50% of the swap is filled with perl processes that never seem to die. After about two days the machine is totally useless and my vnc session dies as soon as I log in to it (I'm assuming it's because there is no ram and the swap is full). I have upgraded to the latest world and kernel from RELENG_4 and all installed applications are up to date. I have tried using both perl 5.6 from ports and the one that comes with 4.7 and I still have the same problem. I'm totally stuck here as I have no idea what is causing this, I never had this problem on my newer P3 with 4.7 on. This is what top looks like after 9hours (sorted by reserved mem size): last pid: 45833; load averages: 0.51, 0.51, 0.42 up 6+01:05:36 11:27:00 146 processes: 1 running, 144 sleeping, 1 stopped CPU states: 7.4% user, 0.0% nice, 11.7% system, 1.9% interrupt, 79.0% idle Mem: 108M Active, 18M Inact, 53M Wired, 6888K Cache, 29M Buf, 572K Free Swap: 368M Total, 161M Used, 208M Free, 43% Inuse, 8K In PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU CPU COMMAND 55649 avatar 2 0 26468K 14228K select 1 369:36 12.79% 12.79% Xvnc 45444 avatar 2 0 32700K 13296K poll 1 0:14 0.00% 0.00% konqueror 45460 avatar 2 0 19392K 7368K poll 0 0:27 2.00% 2.00% kdeinit 45458 avatar 2 0 17768K 6512K poll 0 0:00 0.00% 0.00% kdeinit 45464 avatar 2 0 17300K 6344K poll 0 0:00 0.00% 0.00% kdeinit 55821 avatar 2 0 13568K 6344K poll 0 6:58 0.00% 0.00% sylpheed-cla 55724 avatar 2 0 20492K 6028K poll 1 18:57 0.00% 0.00% sim 45454 avatar 2 0 17268K 5920K poll 0 0:00 0.00% 0.00% kdeinit 45451 avatar 2 0 17140K 5904K poll 0 0:00 0.00% 0.00% kdeinit 45801 root 10 0 4096K 3540K nanslp 0 0:00 0.00% 0.00% perl 45568 root 10 0 4096K 3436K nanslp 0 0:00 0.00% 0.00% perl 55702 avatar 2 0 6048K 1944K poll 1 7:13 0.00% 0.00% irssi 45332 root 10 0 4096K 1884K nanslp 1 0:00 0.00% 0.00% perl 55664 avatar 2 0 15840K 1840K poll 1 301:59 6.45% 6.45% gkrellm 39600 root 10 0 4096K 1732K nanslp 1 0:03 0.00% 0.00% perl 39708 root 10 0 4096K 1732K nanslp 0 0:03 0.00% 0.00% perl 39810 root 10 0 4096K 1732K nanslp 0 0:03 0.00% 0.00% perl 40015 root 10 0 4096K 1732K nanslp 0 0:03 0.00% 0.00% perl 40114 root 10 0 4096K 1732K nanslp 0 0:02 0.00% 0.00% perl 38641 root 10 0 4096K 1728K nanslp 0 0:04 0.00% 0.00% perl 38695 root 10 0 4096K 1728K nanslp 1 0:04 0.00% 0.00% perl 38874 root 10 0 4096K 1728K nanslp 1 0:03 0.00% 0.00% perl 38941 root 10 0 4096K 1728K nanslp 0 0:03 0.00% 0.00% perl 39013 root 10 0 4096K 1728K nanslp 1 0:03 0.00% 0.00% perl 41659 root 10 0 4096K 1728K nanslp 0 0:02 0.00% 0.00% perl 41815 root 10 0 4096K 1728K nanslp 1 0:02 0.00% 0.00% perl 42493 root 10 0 4096K 1728K nanslp 0 0:01 0.00% 0.00% perl 43237 root 10 0 4096K 1728K nanslp 1 0:01 0.00% 0.00% perl 43428 root 10 0 4096K 1728K nanslp 1 0:01 0.00% 0.00% perl 44062 root 10 0 4096K 1728K nanslp 0 0:01 0.00% 0.00% perl 44265 root 10 0 4096K 1728K nanslp 0 0:01 0.00% 0.00% perl 44663 root 10 0 4096K 1728K nanslp 1 0:00 0.00% 0.00% perl 44893 root 10 0 4096K 1728K nanslp 0 0:00 0.00% 0.00% perl 45118 root 10 0 4096K 1728K nanslp 1 0:00 0.00% 0.00% perl 54613 root 10 0 4096K 1724K nanslp 0 0:04 0.00% 0.00% perl 39246 root 10 0 4096K 1724K nanslp 1 0:03 0.00% 0.00% perl //David Holm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 3:33:52 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C768237B401 for ; Wed, 26 Feb 2003 03:33:50 -0800 (PST) Received: from bingo.ru (bingo.ru [80.237.91.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A9C843FB1 for ; Wed, 26 Feb 2003 03:33:50 -0800 (PST) (envelope-from raven@bingo.ru) Received: from bingo.chel.ru (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id B9730D91B; Wed, 26 Feb 2003 16:33:44 +0500 (YEKT) Received: from bear.bingo.local (bear.bingo.local [192.168.2.22]) (using TLSv1 with cipher DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by bingo.ru (Postfix) with ESMTP id 3493AD918; Wed, 26 Feb 2003 16:33:44 +0500 (YEKT) Date: Wed, 26 Feb 2003 16:33:41 +0500 From: Dmitry Sukhodoev X-Looser: The Bat! (v1.60c) Organization: Bingo Game Centre X-Priority: 3 (Normal) Message-ID: <154569689.20030226163341@bingo.ru> To: "Robert English" Cc: stable@freebsd.org Subject: Re[2]: FreeBSD hangs In-Reply-To: <000501c2dcef$2111bbe0$0701a8c0@desk> References: <20030225142450.3220ED918@bingo.ru> <000501c2dcef$2111bbe0$0701a8c0@desk> 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 hello, Robert. you wrote 25 ôåâðàëÿ 2003 ã., 21:58:30: RE> You did not say if the hang occurs while in normal terminal, or when a RE> graphic desktop is loaded when the hang occurs. RE> I had that same problem you describe, mildly with 4.6 but worse with 4.7, RE> but only when the graphic desktop was loaded - turned out my video card was RE> only partially supported; the chipset (Savage4) was recognized and RE> supported, but the card itself (Revolution9 SR9) was not. Replacing that RE> with an ATI Rage128 AGP (fully supported card) solved the problem RE> completely - no more freezes anywhere. RE> Please let us know if this is the case with you or not. no, i have no graphical desktop, no kde, and no like it. only black terminal and daemons. -- Dmitry Sukhodoev, network administrator of bingo.ru, icq#550315 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 3:38: 9 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B912337B401 for ; Wed, 26 Feb 2003 03:38:08 -0800 (PST) Received: from wedgev.com (cm57-70.liwest.at [212.33.57.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6ADD43FDD for ; Wed, 26 Feb 2003 03:38:06 -0800 (PST) (envelope-from bernhard.valenti@gmx.net) Received: from cipher (cipher.home [10.0.0.2]) by wedgev.com (8.12.7/8.12.7) with SMTP id h1QBc42v022765 for ; Wed, 26 Feb 2003 12:38:04 +0100 (CET) (envelope-from bernhard.valenti@gmx.net) Message-ID: <002501c2dd8b$7e234af0$0200000a@cipher> From: "Bernhard Valenti" To: Subject: error with buildworld Date: Wed, 26 Feb 2003 12:37:50 +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.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-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, tried to buildworld with releng_4 sources as of yesterday and today, i keep getting errors about des.h missing: In file included from /usr/src/secure/lib/libtelnet/../../../crypto/telnet/libtelnet/misc.c:53: /usr/src/secure/lib/libtelnet/../../../crypto/telnet/libtelnet/encrypt.h:64: openssl/des.h: No such file or directory bernhard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 3:56:14 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E0ED37B401 for ; Wed, 26 Feb 2003 03:56:13 -0800 (PST) Received: from wedgev.com (cm57-70.liwest.at [212.33.57.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7F2643FDF for ; Wed, 26 Feb 2003 03:56:11 -0800 (PST) (envelope-from bernhard.valenti@gmx.net) Received: from cipher (cipher.home [10.0.0.2]) by wedgev.com (8.12.7/8.12.7) with SMTP id h1QBte2v023029; Wed, 26 Feb 2003 12:55:40 +0100 (CET) (envelope-from bernhard.valenti@gmx.net) Message-ID: <001a01c2dd8d$f33be070$0200000a@cipher> From: "Bernhard Valenti" To: "Pascal Groenen" Cc: References: <002501c2dd8b$7e234af0$0200000a@cipher> <009b01c2dd8b$fd1687a0$1303050a@mcnet.azn.nl> Subject: Re: error with buildworld Date: Wed, 26 Feb 2003 12:55:25 +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.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-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 everyone, i forgot i set it to true... sorry :) bernhard ----- Original Message ----- From: "Pascal Groenen" To: "Bernhard Valenti" Sent: Wednesday, February 26, 2003 12:41 PM Subject: Re: error with buildworld > I've had that same problem: > 1. Are you sure you have those sources? > 2. See in your make.conf and make sure is commented out NO_OPENSSL=true (you > may have disabled it when setting NO_OPENSSH=true) > > Good luck > > Pascal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 4:23:40 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E7F837B401 for ; Wed, 26 Feb 2003 04:23:37 -0800 (PST) Received: from host185.dolanmedia.com (host185.dolanmedia.com [209.98.197.185]) by mx1.FreeBSD.org (Postfix) with SMTP id 7F45643F3F for ; Wed, 26 Feb 2003 04:23:36 -0800 (PST) (envelope-from greg.panula@dolaninformation.com) Received: (qmail 30143 invoked by uid 0); 26 Feb 2003 12:23:35 -0000 Received: from greg.panula@dolaninformation.com by proxy by uid 82 with qmail-scanner-1.15 ( Clear:. Processed in 1.172045 secs); 26 Feb 2003 12:23:35 -0000 X-Qmail-Scanner-Mail-From: greg.panula@dolaninformation.com via proxy X-Qmail-Scanner-Rcpt-To: david@realityrift.com,stable@FreeBSD.ORG X-Qmail-Scanner: 1.15 (Clear:. Processed in 1.172045 secs) Received: from unknown (HELO mail.dolanmedia.com) (10.1.1.23) by host185.dolanmedia.com with SMTP; 26 Feb 2003 12:23:33 -0000 Received: from dolaninformation.com (10.1.1.135) by mail.dolanmedia.com (Worldmail 1.3.167); 26 Feb 2003 06:23:33 -0600 Message-ID: <3E5CB1C5.4971BD40@dolaninformation.com> Date: Wed, 26 Feb 2003 06:23:33 -0600 From: Greg Panula Reply-To: greg.panula@dolaninformation.com Organization: Dolan Information Center Inc X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: David Holm Cc: stable@FreeBSD.ORG Subject: Re: serious perl issue References: <20030226112821.47bb339c.david@realityrift.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 David Holm wrote: > > Hi, > I installed FreeBSD 4.7 on my SMP machine (2xP3) a couple of weeks ago. > The problem I'm having is that something is spawning alot of perl processes that never die. > After having the machine running for 10 hours almost all of my ram and about 50% of the swap is > filled with perl processes that never seem to die. After about two days the machine is totally > useless and my vnc session dies as soon as I log in to it (I'm assuming it's because there is no > ram and the swap is full). > I have upgraded to the latest world and kernel from RELENG_4 and all installed applications are > up to date. I have tried using both perl 5.6 from ports and the one that comes with 4.7 and I > still have the same problem. > I'm totally stuck here as I have no idea what is causing this, I never had this problem on my > newer P3 with 4.7 on. > This is what top looks like after 9hours (sorted by reserved mem size): > > last pid: 45833; load averages: 0.51, 0.51, 0.42 up 6+01:05:36 11:27:00 > 146 processes: 1 running, 144 sleeping, 1 stopped > CPU states: 7.4% user, 0.0% nice, 11.7% system, 1.9% interrupt, 79.0% idle > Mem: 108M Active, 18M Inact, 53M Wired, 6888K Cache, 29M Buf, 572K Free > Swap: 368M Total, 161M Used, 208M Free, 43% Inuse, 8K In > > PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU CPU COMMAND > 55649 avatar 2 0 26468K 14228K select 1 369:36 12.79% 12.79% Xvnc > 45444 avatar 2 0 32700K 13296K poll 1 0:14 0.00% 0.00% konqueror > 45460 avatar 2 0 19392K 7368K poll 0 0:27 2.00% 2.00% kdeinit > 45458 avatar 2 0 17768K 6512K poll 0 0:00 0.00% 0.00% kdeinit > 45464 avatar 2 0 17300K 6344K poll 0 0:00 0.00% 0.00% kdeinit > 55821 avatar 2 0 13568K 6344K poll 0 6:58 0.00% 0.00% sylpheed-cla > 55724 avatar 2 0 20492K 6028K poll 1 18:57 0.00% 0.00% sim > 45454 avatar 2 0 17268K 5920K poll 0 0:00 0.00% 0.00% kdeinit > 45451 avatar 2 0 17140K 5904K poll 0 0:00 0.00% 0.00% kdeinit > 45801 root 10 0 4096K 3540K nanslp 0 0:00 0.00% 0.00% perl > 45568 root 10 0 4096K 3436K nanslp 0 0:00 0.00% 0.00% perl > 55702 avatar 2 0 6048K 1944K poll 1 7:13 0.00% 0.00% irssi > 45332 root 10 0 4096K 1884K nanslp 1 0:00 0.00% 0.00% perl > 55664 avatar 2 0 15840K 1840K poll 1 301:59 6.45% 6.45% gkrellm > 39600 root 10 0 4096K 1732K nanslp 1 0:03 0.00% 0.00% perl > 39708 root 10 0 4096K 1732K nanslp 0 0:03 0.00% 0.00% perl > 39810 root 10 0 4096K 1732K nanslp 0 0:03 0.00% 0.00% perl > 40015 root 10 0 4096K 1732K nanslp 0 0:03 0.00% 0.00% perl > 40114 root 10 0 4096K 1732K nanslp 0 0:02 0.00% 0.00% perl > 38641 root 10 0 4096K 1728K nanslp 0 0:04 0.00% 0.00% perl > 38695 root 10 0 4096K 1728K nanslp 1 0:04 0.00% 0.00% perl > 38874 root 10 0 4096K 1728K nanslp 1 0:03 0.00% 0.00% perl > 38941 root 10 0 4096K 1728K nanslp 0 0:03 0.00% 0.00% perl > 39013 root 10 0 4096K 1728K nanslp 1 0:03 0.00% 0.00% perl > 41659 root 10 0 4096K 1728K nanslp 0 0:02 0.00% 0.00% perl > 41815 root 10 0 4096K 1728K nanslp 1 0:02 0.00% 0.00% perl > 42493 root 10 0 4096K 1728K nanslp 0 0:01 0.00% 0.00% perl > 43237 root 10 0 4096K 1728K nanslp 1 0:01 0.00% 0.00% perl > 43428 root 10 0 4096K 1728K nanslp 1 0:01 0.00% 0.00% perl > 44062 root 10 0 4096K 1728K nanslp 0 0:01 0.00% 0.00% perl > 44265 root 10 0 4096K 1728K nanslp 0 0:01 0.00% 0.00% perl > 44663 root 10 0 4096K 1728K nanslp 1 0:00 0.00% 0.00% perl > 44893 root 10 0 4096K 1728K nanslp 0 0:00 0.00% 0.00% perl > 45118 root 10 0 4096K 1728K nanslp 1 0:00 0.00% 0.00% perl > 54613 root 10 0 4096K 1724K nanslp 0 0:04 0.00% 0.00% perl > 39246 root 10 0 4096K 1724K nanslp 1 0:03 0.00% 0.00% perl > > //David Holm You need determine what is the spawning the perl processes and then either figure out why the process won't finish cleanly or keep them from spawning in the first place. After a few perl processes have been spawned try the following commands: ps awwx This should give you the complete command line of all running processes. fstat This should give a list of the various open files, what opened it and such. See the man page for more info. Good luck, greg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 4:42:22 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFA8E37B401; Wed, 26 Feb 2003 04:42:20 -0800 (PST) Received: from dire.bris.ac.uk (dire.bris.ac.uk [137.222.10.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBE5B43F93; Wed, 26 Feb 2003 04:42:19 -0800 (PST) (envelope-from Jan.Grant@bristol.ac.uk) Received: from mail.ilrt.bris.ac.uk by dire.bris.ac.uk with SMTP-PRIV with ESMTP; Wed, 26 Feb 2003 12:42:08 +0000 Received: from cmjg (helo=localhost) by mail.ilrt.bris.ac.uk with local-esmtp (Exim 3.16 #1) id 18o0rV-0001Dp-00; Wed, 26 Feb 2003 12:40:37 +0000 Date: Wed, 26 Feb 2003 12:40:37 +0000 (GMT) From: Jan Grant X-X-Sender: cmjg@mail.ilrt.bris.ac.uk To: "Jacques A. Vidrine" Cc: Mike Tancsa , freebsd-stable Subject: Re: HEADS UP: OpenSSL 0.9.7 in -STABLE In-Reply-To: <20030225153907.GC96816@madman.celabo.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 On Tue, 25 Feb 2003, Jacques A. Vidrine wrote: > On Tue, Feb 25, 2003 at 10:30:54AM -0500, Mike Tancsa wrote: > > At 07:32 AM 25/02/2003 -0600, Jacques A. Vidrine wrote: > > > >I believe you also need `device cryptodev', else when your application > > >tries to open /dev/crypto it will get ENXIO (use truss or ktrace to > > >see if this is what is happening). > > > > That was it, Thanks! > > Great! > > > There is now a VERY noticeable difference in the amount of CPU that sshd > > takes. The backup server is a PIII800. When doing a dump from a fast > > client, with 3des I was looking at close to 40%-50% of CPU going to sshd on > > the server. Now I see about 3%-5%. > > So how is the total throughput? Is it a win or a lose with the 7951? Excuse my curiosity: would measuring the throughput of a loopback ssh link give a good estimate of this? -- jan grant, ILRT, University of Bristol. http://www.ilrt.bris.ac.uk/ Tel +44(0)117 9287088 Fax +44 (0)117 9287112 http://ioctl.org/jan/ Theory and practice _are_ the same thing. In theory. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 4:48:15 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC4B237B401 for ; Wed, 26 Feb 2003 04:48:12 -0800 (PST) Received: from maild.telia.com (maild.telia.com [194.22.190.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DBFD43FDD for ; Wed, 26 Feb 2003 04:48:11 -0800 (PST) (envelope-from david@realityrift.com) Received: from d1o836.telia.com (d1o836.telia.com [213.65.240.241]) by maild.telia.com (8.12.5/8.12.5) with ESMTP id h1QCm9YJ013799 for ; Wed, 26 Feb 2003 13:48:09 +0100 (CET) X-Original-Recipient: Received: from rift.ath.cx (h88n2fls32o836.telia.com [217.208.105.88]) by d1o836.telia.com (8.10.2/8.10.1) with SMTP id h1QCm7610914 for ; Wed, 26 Feb 2003 13:48:09 +0100 (CET) Date: Wed, 26 Feb 2003 13:47:16 +0100 From: David Holm Cc: stable@FreeBSD.ORG Subject: Re: serious perl issue Message-Id: <20030226134716.2ffef49a.david@realityrift.com> In-Reply-To: <3E5CB1C5.4971BD40@dolaninformation.com> References: <20030226112821.47bb339c.david@realityrift.com> <3E5CB1C5.4971BD40@dolaninformation.com> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd4.7) 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 Thank you. I found that it was an application that I ran from dhclient-enter-hooks that did not exit cleanly. //David On Wed, 26 Feb 2003 06:23:33 -0600 Greg Panula wrote: > David Holm wrote: > > > > Hi, > > I installed FreeBSD 4.7 on my SMP machine (2xP3) a couple of weeks ago. > > The problem I'm having is that something is spawning alot of perl processes that never die. > > After having the machine running for 10 hours almost all of my ram and about 50% of the swap > > is filled with perl processes that never seem to die. After about two days the machine is > > totally useless and my vnc session dies as soon as I log in to it (I'm assuming it's because > > there is no ram and the swap is full). > > I have upgraded to the latest world and kernel from RELENG_4 and all installed applications > > are up to date. I have tried using both perl 5.6 from ports and the one that comes with 4.7 > > and I still have the same problem. > > I'm totally stuck here as I have no idea what is causing this, I never had this problem on > > my newer P3 with 4.7 on. > > This is what top looks like after 9hours (sorted by reserved mem size): > > > > last pid: 45833; load averages: 0.51, 0.51, 0.42 up 6+01:05:36 11:27:00 > > 146 processes: 1 running, 144 sleeping, 1 stopped > > CPU states: 7.4% user, 0.0% nice, 11.7% system, 1.9% interrupt, 79.0% idle > > Mem: 108M Active, 18M Inact, 53M Wired, 6888K Cache, 29M Buf, 572K Free > > Swap: 368M Total, 161M Used, 208M Free, 43% Inuse, 8K In > > > > PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU CPU COMMAND > > 55649 avatar 2 0 26468K 14228K select 1 369:36 12.79% 12.79% Xvnc > > 45444 avatar 2 0 32700K 13296K poll 1 0:14 0.00% 0.00% konqueror > > 45460 avatar 2 0 19392K 7368K poll 0 0:27 2.00% 2.00% kdeinit > > 45458 avatar 2 0 17768K 6512K poll 0 0:00 0.00% 0.00% kdeinit > > 45464 avatar 2 0 17300K 6344K poll 0 0:00 0.00% 0.00% kdeinit > > 55821 avatar 2 0 13568K 6344K poll 0 6:58 0.00% 0.00% sylpheed-cla > > 55724 avatar 2 0 20492K 6028K poll 1 18:57 0.00% 0.00% sim > > 45454 avatar 2 0 17268K 5920K poll 0 0:00 0.00% 0.00% kdeinit > > 45451 avatar 2 0 17140K 5904K poll 0 0:00 0.00% 0.00% kdeinit > > 45801 root 10 0 4096K 3540K nanslp 0 0:00 0.00% 0.00% perl > > 45568 root 10 0 4096K 3436K nanslp 0 0:00 0.00% 0.00% perl > > 55702 avatar 2 0 6048K 1944K poll 1 7:13 0.00% 0.00% irssi > > 45332 root 10 0 4096K 1884K nanslp 1 0:00 0.00% 0.00% perl > > 55664 avatar 2 0 15840K 1840K poll 1 301:59 6.45% 6.45% gkrellm > > 39600 root 10 0 4096K 1732K nanslp 1 0:03 0.00% 0.00% perl > > 39708 root 10 0 4096K 1732K nanslp 0 0:03 0.00% 0.00% perl > > 39810 root 10 0 4096K 1732K nanslp 0 0:03 0.00% 0.00% perl > > 40015 root 10 0 4096K 1732K nanslp 0 0:03 0.00% 0.00% perl > > 40114 root 10 0 4096K 1732K nanslp 0 0:02 0.00% 0.00% perl > > 38641 root 10 0 4096K 1728K nanslp 0 0:04 0.00% 0.00% perl > > 38695 root 10 0 4096K 1728K nanslp 1 0:04 0.00% 0.00% perl > > 38874 root 10 0 4096K 1728K nanslp 1 0:03 0.00% 0.00% perl > > 38941 root 10 0 4096K 1728K nanslp 0 0:03 0.00% 0.00% perl > > 39013 root 10 0 4096K 1728K nanslp 1 0:03 0.00% 0.00% perl > > 41659 root 10 0 4096K 1728K nanslp 0 0:02 0.00% 0.00% perl > > 41815 root 10 0 4096K 1728K nanslp 1 0:02 0.00% 0.00% perl > > 42493 root 10 0 4096K 1728K nanslp 0 0:01 0.00% 0.00% perl > > 43237 root 10 0 4096K 1728K nanslp 1 0:01 0.00% 0.00% perl > > 43428 root 10 0 4096K 1728K nanslp 1 0:01 0.00% 0.00% perl > > 44062 root 10 0 4096K 1728K nanslp 0 0:01 0.00% 0.00% perl > > 44265 root 10 0 4096K 1728K nanslp 0 0:01 0.00% 0.00% perl > > 44663 root 10 0 4096K 1728K nanslp 1 0:00 0.00% 0.00% perl > > 44893 root 10 0 4096K 1728K nanslp 0 0:00 0.00% 0.00% perl > > 45118 root 10 0 4096K 1728K nanslp 1 0:00 0.00% 0.00% perl > > 54613 root 10 0 4096K 1724K nanslp 0 0:04 0.00% 0.00% perl > > 39246 root 10 0 4096K 1724K nanslp 1 0:03 0.00% 0.00% perl > > > > //David Holm > > You need determine what is the spawning the perl processes and then > either figure out why the process won't finish cleanly or keep them from > spawning in the first place. > > After a few perl processes have been spawned try the following commands: > ps awwx > This should give you the complete command line of all running processes. > > fstat > This should give a list of the various open files, what opened it and > such. See the man page for more info. > > Good luck, > greg > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 6: 3:58 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86C3D37B401; Wed, 26 Feb 2003 06:03:55 -0800 (PST) Received: from famine.e-raist.com (famine.e-raist.com [65.100.40.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 800C143F85; Wed, 26 Feb 2003 06:03:54 -0800 (PST) (envelope-from aburke@nullplusone.com) Received: from thebe (evrtwa1-ar10-4-40-153-150.evrtwa1.dsl-verizon.net [4.40.153.150]) (authenticated bits=0) by famine.e-raist.com (8.12.2/8.12.2) with ESMTP id h1QE3nau083636; Wed, 26 Feb 2003 06:03:53 -0800 (PST) From: "Aaron Burke" To: , "FreeBSD-Stable@freebsd.org" , "User Tysken" Subject: RE: XDM on multiple virutal X screens ( ALT-F9,ALT-F10...) Date: Wed, 26 Feb 2003 06:03:50 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <20030226013134.GA66065@dasboot.birch.se> 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 > -----Original Message----- > From: owner-freebsd-stable@FreeBSD.ORG > [mailto:owner-freebsd-stable@FreeBSD.ORG]On Behalf Of User Tysken > Sent: Tuesday, February 25, 2003 5:32 PM > To: freebsd-stable@FreeBSD.ORG > Subject: XDM on multiple virutal X screens ( ALT-F9,ALT-F10...) > > > Hi, > > I have searched some on google and on xfree86.org but I can't > find any usefull information about this mater. > > Honestly I haven't searched that mutch but I haven't found > something usefull yet. > > I want to be able to have multitiple xdm loginscreens on the same > workstation using only one monitor and so on. > > I wounder if this is the right file to edit in: > > /usr/X11R6/lib/X11/xdm/Xservers This is the only file that you have to modify, however you need to make two seperate mods. The default file just says :0 local /usr/X11R6/bin/X Just change it to say the following. :0 local /usr/X11R6/bin/X :0 :1 local /usr/X11R6/bin/X :1 > > The only line that is in there is ":0 local /usr/X11R6/bin/X" > > I have tried to add ":1 local /usr/X11R6/bin/X" but xdm does not > seem to like it. It wound "behave" that I want it to. First i > started xdm and then i just crashed after a few seconds. And then > I tryed to start It again and the it started but I did not get > multitple xdm login screens on ALT-F9... ALT-F10. There are two mods to one file that need to be made. (explained above) After you make them you will have X consoles on F9 and F10. > And I didn't even get a login prompt if you understand what I > mean only a the standar gray and black backgrund with a login screen. (see post above) > > Perhaps I haven't searched thurly enought but perhaps someone can > point me in the right direction of do this. You have searched well enough. I remember playing with this for about a week in the past. (when I first got it working). Its amazing how easy the change is to make though. > > One thing that I perhaps should mention is that im using a > Geforce 3 Ti 200 with the nvidia drv and it seems to be quite > unstable on my system. So sometimes the computer crashes and I > have to reboot it to get it working. This is an unrelated problem. Feel free to ask about it on -questions though. > > Sometimes I can just ssh from an other box and kill and restart > xdm. And some times I can't even ping my workstation and are > forced to do a hard reboot. You should always be able to ssh into your box (provided your running the server, and you are). > It might perhaps be so that I have to do some config changes in > /usr/X11R6/lib/X11/XF86Config but I don't think thats necessery > or am I wrong? Nothing to do there. > > Anyway thanks for reading and perhaps replying to this mail :) Thats what some of us are here for. > > Mvh Mattias Björk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 6:46:19 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E5DD37B401 for ; Wed, 26 Feb 2003 06:46:18 -0800 (PST) Received: from mail.sandvine.com (sandvine.com [199.243.201.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BEC343F85 for ; Wed, 26 Feb 2003 06:46:17 -0800 (PST) (envelope-from don@sandvine.com) Received: by mail.sandvine.com with Internet Mail Service (5.5.2653.19) id ; Wed, 26 Feb 2003 09:46:16 -0500 Message-ID: From: Don Bowman To: "''freebsd-stable@freebsd.org' '" Subject: RE: panic with fork? Date: Wed, 26 Feb 2003 09:46:15 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: Don Bowman >I find that if I run the below: >$ while true; do daemon -f bash -c exit; done ... So the problem is in pmap_pinit(). It calls kmem_alloc_pageable() to obtain a page directory table. In this case, kmem_alloc_pageable() returns NULL, and the code doesn't check it. Now, pmap_pinit() clearly doesn't expect to be able to fail, there's no provision for returning error. Does anyone have a suggestion for a fix? --don To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 6:59:37 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE9FE37B401 for ; Wed, 26 Feb 2003 06:59:35 -0800 (PST) Received: from pandora.tiscali.nl (pandora.tiscali.nl [195.241.76.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DF1243F93 for ; Wed, 26 Feb 2003 06:59:34 -0800 (PST) (envelope-from eric@monkey-online.net) Received: from eric.monkey-online.net (195-241-113-9-mx.xdsl.tiscali.nl [195.241.113.9]) by pandora.tiscali.nl (Postfix) with ESMTP id 7CC533908F for ; Wed, 26 Feb 2003 15:59:32 +0100 (MET) Message-Id: <5.2.0.9.0.20030226155921.03b9f6c8@mail.monkey-online.net> X-Sender: eric@mail.monkey-online.net (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Wed, 26 Feb 2003 16:00:49 +0100 To: freebsd-stable@freebsd.org From: Eric Veraart Subject: Re: Problem building 4.7-p6 In-Reply-To: <5.2.0.9.0.20030226083346.03b4bb58@mail.monkey-online.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've fixed the problem. I did the following things: -Downloaded the sources from ftp.freebsd.org -CVSUPed from cvsup2.freebsd.org -Set my date (which lagged behind more than a week) I don't know which one solved the problem, but now it works :) At 08:38 AM 26/2/2003 +0100, you wrote: >I've installed two boxes with 4.7-release, and CVSUPed them to 4.7-p6. >When I try to compile them I get some errors. The first one had something >to do with lc missing. I threw away my entire /usr/obj and /usr/src and >CVSUPed again from a different server. Now I get this message: > >cc -o make_keys -O -pipe -I. -I/usr/src/lib/libncurses >-I/usr/src/lib/libncurses/../../contrib/ncurses/ncurses >-I/usr/src/lib/libncurses/../../contrib/ncurses/include -Wall >-DFREEBSD_NATIVE -DNDEBUG -DHAVE_CONFIG_H -DTERMIOS >/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/make_keys.c >*** Error code 1 > >Stop in /usr/src/lib/libncurses. >*** 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've tried to update my entire source, just ncursus, tried different CVSUP >servers, on different dates, did make clean and make cleandir numerous >times, and nothing helps! I've heard complaints from more people that the >source at a lot of servers wouldn't build. >Does anyone have a big ass tarball with the source of 4.7-p6 for me so at >least I can install the boxes properly?! > >Thanks. > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 7:16:14 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 462A837B401 for ; Wed, 26 Feb 2003 07:16:12 -0800 (PST) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DFC043F3F for ; Wed, 26 Feb 2003 07:16:11 -0800 (PST) (envelope-from kstewart@owt.com) Received: from topaz-out (owt-207-41-94-233.owt.com [207.41.94.233]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id HAA14922; Wed, 26 Feb 2003 07:16:07 -0800 From: Kent Stewart To: Eric Veraart , freebsd-stable@FreeBSD.ORG Subject: Re: Problem building 4.7-p6 Date: Wed, 26 Feb 2003 07:16:06 -0800 User-Agent: KMail/1.5 References: <5.2.0.9.0.20030226155921.03b9f6c8@mail.monkey-online.net> In-Reply-To: <5.2.0.9.0.20030226155921.03b9f6c8@mail.monkey-online.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200302260716.06879.kstewart@owt.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 Wednesday 26 February 2003 07:00 am, Eric Veraart wrote: > I've fixed the problem. I did the following things: > -Downloaded the sources from ftp.freebsd.org > -CVSUPed from cvsup2.freebsd.org > -Set my date (which lagged behind more than a week) > I would suspect your last change. The date lagging causes all sorts of problems. For example, make will create a file that is older than the source cvsup downloaded. Make will try to recreate the file because it is out of date and eventually gives up. If your system date is running fast, then you can end up using an old file because it is more recent than the code downloaded by cvsup. A proper date is really part of using cvsup and maintaining your system. This also one of the side effects of setting the bios to local time. You have to run "adjkerntz -i" to set the timezone before you do your installworld in single user mode. Kent > I don't know which one solved the problem, but now it works :) > > At 08:38 AM 26/2/2003 +0100, you wrote: > >I've installed two boxes with 4.7-release, and CVSUPed them to > > 4.7-p6. When I try to compile them I get some errors. The first one > > had something to do with lc missing. I threw away my entire > > /usr/obj and /usr/src and CVSUPed again from a different server. > > Now I get this message: > > > >cc -o make_keys -O -pipe -I. -I/usr/src/lib/libncurses > >-I/usr/src/lib/libncurses/../../contrib/ncurses/ncurses > >-I/usr/src/lib/libncurses/../../contrib/ncurses/include -Wall > >-DFREEBSD_NATIVE -DNDEBUG -DHAVE_CONFIG_H -DTERMIOS > >/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/make_key > >s.c *** Error code 1 > > > >Stop in /usr/src/lib/libncurses. > >*** 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've tried to update my entire source, just ncursus, tried different > > CVSUP servers, on different dates, did make clean and make cleandir > > numerous times, and nothing helps! I've heard complaints from more > > people that the source at a lot of servers wouldn't build. > >Does anyone have a big ass tarball with the source of 4.7-p6 for me > > so at least I can install the boxes properly?! > > > >Thanks. > > > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-stable" in the body of the message > > 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 Wed Feb 26 8:25:12 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FAE937B401 for ; Wed, 26 Feb 2003 08:25:10 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42F7E43FA3 for ; Wed, 26 Feb 2003 08:24:48 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1QGOKfV023386 for ; Wed, 26 Feb 2003 18:24:20 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1QGMtHR023237 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 26 Feb 2003 18:24:20 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1QGMonl023228; Wed, 26 Feb 2003 18:22:50 +0200 (EET) Date: Wed, 26 Feb 2003 18:22:50 +0200 From: Ruslan Ermilov To: Chuck Swiger Cc: freebsd-stable@freebsd.org Subject: Re: OpenSSL build failure identified... Message-ID: <20030226162250.GA99519@sunbay.com> References: <3E5A4591.4070503@mac.com> <20030224163228.GA92511@madman.celabo.org> <20030224173131.GB89139@sunbay.com> <3E5A5AAF.4030209@mac.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline In-Reply-To: <3E5A5AAF.4030209@mac.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 --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Feb 24, 2003 at 12:47:27PM -0500, Chuck Swiger wrote: > Ruslan Ermilov wrote: > [ ... ] > >src/Makefile sets PATH=3D/sbin:/bin:/usr/sbin:/usr/bin before passing > >buildworld further to src/Makefile.inc1, so I don't see how that > >could be a problem. >=20 > Hmm. OK. :-) >=20 You've dropped me from To:/Cc: while I didn't ask for, hence the reply is delayed. > >Similarly for zsh(1): make(1) uses sh(1) internally, and to make it > >use another shell, one needs to recompile make(1) with a different > >DEFSHELL. In any case, this feature isn't even in RELENG_4. >=20 > To be more specific as to what I did; I enabled and "su - toor" in order= =20 > to pick up a clean /bin/sh environment. The build failure was=20 > completely reproducable after deleting /usr/src, /usr/obj, and=20 > /etc/make.conf...then re-cvsup'ing. More than once. >=20 Trust me: make(1) always uses /bin/sh, regardless of what your current shell is. > After doing a "pkg_delete openssl-mumble", I was able to move my=20 > /etc/make.conf back in place and complete buildworld under zsh again.=20 > Assuming I'm able to reproduce this problem again-- I'm going to have to= =20 > revert my /usr/ports, probably-- what information would be of value? >=20 If you can reproduce it, just tell me what to do to reproduce it. Also show me some more meaningful context of the failure from buildworld. You may also want to run buildworld with "make -dl". The symbols shown do exist in libcrypto library here, so you may also want to check under /usr/obj/usr/src/i386/usr/lib/libcrypto.* if they exist here too. 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 --2oS5YaxWCcQjTEyO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+XOnaUkv4P6juNwoRAoweAJ4uU210Vc3h9R8fOCAbGT5YwTZVdQCfZbVM 4hVmVZWorz686bKLGnxIkfA= =caeM -----END PGP SIGNATURE----- --2oS5YaxWCcQjTEyO-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 9: 2:51 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61DEB37B401; Wed, 26 Feb 2003 09:02:49 -0800 (PST) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BCC643F93; Wed, 26 Feb 2003 09:02:48 -0800 (PST) (envelope-from sam@errno.com) Received: from melange (melange.errno.com [66.127.85.82]) (authenticated bits=0) by ebb.errno.com (8.12.5/8.12.1) with ESMTP id h1QH2enN090864 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Wed, 26 Feb 2003 09:02:42 -0800 (PST)?g (envelope-from sam@errno.com)œ X-Authentication-Warning: ebb.errno.com: Host melange.errno.com [66.127.85.82] claimed to be melange Message-ID: <284e01c2ddb8$e00685c0$52557f42@errno.com> From: "Sam Leffler" To: "Jan Grant" , "Jacques A. Vidrine" Cc: "Mike Tancsa" , "freebsd-stable" References: Subject: Re: HEADS UP: OpenSSL 0.9.7 in -STABLE Date: Wed, 26 Feb 2003 09:02:40 -0800 Organization: Errno Consulting 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.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-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, 25 Feb 2003, Jacques A. Vidrine wrote: > > > On Tue, Feb 25, 2003 at 10:30:54AM -0500, Mike Tancsa wrote: > > > At 07:32 AM 25/02/2003 -0600, Jacques A. Vidrine wrote: > > > > > >I believe you also need `device cryptodev', else when your application > > > >tries to open /dev/crypto it will get ENXIO (use truss or ktrace to > > > >see if this is what is happening). > > > > > > That was it, Thanks! > > > > Great! > > > > > There is now a VERY noticeable difference in the amount of CPU that sshd > > > takes. The backup server is a PIII800. When doing a dump from a fast > > > client, with 3des I was looking at close to 40%-50% of CPU going to sshd on > > > the server. Now I see about 3%-5%. > > > > So how is the total throughput? Is it a win or a lose with the 7951? > > Excuse my curiosity: would measuring the throughput of a loopback ssh > link give a good estimate of this? Throughput is almost certainly going to be limited by the crypto h/w and to measure how fast that is you can use openssl speed -elapsed -evp des3 or run the cryptotest program (I just MFC'd it). Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 9: 7:45 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBBC337B401 for ; Wed, 26 Feb 2003 09:07:44 -0800 (PST) Received: from mx01.uunet.co.za (mx01.ops.uunet.co.za [196.31.48.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11AF043F85 for ; Wed, 26 Feb 2003 09:07:43 -0800 (PST) (envelope-from gareth@za.uu.net) Received: from pixproxy.so.cpt1.za.uu.net ([196.30.72.11]) by mx01.uunet.co.za with esmtp (Exim 3.36 #1) id 18o51x-000GBB-00 for freebsd-stable@freebsd.org; Wed, 26 Feb 2003 19:07:41 +0200 Received: from gabba.so.cpt1.za.uu.net (gabba.so.cpt1.za.uu.net [196.30.72.25]) by pixproxy.so.cpt1.za.uu.net (Postfix) with ESMTP id C4DD01B5EB for ; Wed, 26 Feb 2003 19:07:33 +0200 (SAST) Received: from localhost (localhost [127.0.0.1]) by gabba.so.cpt1.za.uu.net (8.11.6/8.11.6) with ESMTP id h1QH7Vr05373 for ; Wed, 26 Feb 2003 19:07:32 +0200 (SAST) (envelope-from gareth@za.uu.net) Date: Wed, 26 Feb 2003 19:07:31 +0200 (SAST) From: Gareth Hopkins X-X-Sender: ghopkins@gabba.so.cpt1.za.uu.net To: freebsd-stable@freebsd.org Subject: 4.8-Stable Message-ID: <20030226190637.Q5071-100000@gabba.so.cpt1.za.uu.net> X-Cell: +27 82 929 6668 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 Howdie, Is there a release date for 4.8 Stable? --- Gareth Hopkins Server Operations UUNET South Africa (o) +27.21.658.8700 (f) +27.21.658.8552 (m) +27.82.929.6668 http://www.uunet.co.za 08600 UUNET (08600 88638) "The contents of this e-mail and any accompanying documentation is confidential and any use thereof, in whatever form, by anyone other than the addressee for whom it is intended, is strictly prohibited." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 9: 9:10 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38C5D37B401 for ; Wed, 26 Feb 2003 09:09:09 -0800 (PST) Received: from freebsd.org.ru (www.freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5588243FAF for ; Wed, 26 Feb 2003 09:09:08 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 2F1A581; Wed, 26 Feb 2003 20:09:06 +0300 (MSK) Date: Wed, 26 Feb 2003 20:09:06 +0300 From: "Sergey A. Osokin" To: Gareth Hopkins Cc: freebsd-stable@freebsd.org Subject: Re: 4.8-Stable Message-ID: <20030226170906.GI424@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: <20030226190637.Q5071-100000@gabba.so.cpt1.za.uu.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030226190637.Q5071-100000@gabba.so.cpt1.za.uu.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 Wed, Feb 26, 2003 at 07:07:31PM +0200, Gareth Hopkins wrote: > Howdie, > > Is there a release date for 4.8 Stable? When it be ready :-) Check http://www.freebsd.org/releases/4.8R/schedule.html -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 9: 9:38 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19A8037B401 for ; Wed, 26 Feb 2003 09:09:37 -0800 (PST) Received: from pan.gwi.net (pan.gwi.net [207.5.128.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0016543F3F for ; Wed, 26 Feb 2003 09:09:35 -0800 (PST) (envelope-from jamin@gwi.net) Received: from dargo.gwi (dargo.gwi.net [207.5.142.21]) by pan.gwi.net (8.11.6/8.11.6) with ESMTP id h1QH9Zx82330 for ; Wed, 26 Feb 2003 12:09:35 -0500 (EST) (envelope-from jamin@gwi.net) Date: Wed, 26 Feb 2003 12:09:35 -0500 (EST) From: "Jamin A. Brown" To: freebsd-stable@FreeBSD.ORG Subject: RELENG_4_5 no longer updated? 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 Not sure if this is the best forum to ask, but... Anyone know why RELENG_4_5 wasn't updated with the latest patches, and if there is some for of official announcement that goes out before a branch is no longer updated? Thanks. Jamin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 9:10:22 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2149E37B401 for ; Wed, 26 Feb 2003 09:10:21 -0800 (PST) Received: from mx01.uunet.co.za (mx01.ops.uunet.co.za [196.31.48.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1EE743FD7 for ; Wed, 26 Feb 2003 09:10:19 -0800 (PST) (envelope-from gareth@za.uu.net) Received: from pixproxy.so.cpt1.za.uu.net ([196.30.72.11]) by mx01.uunet.co.za with esmtp (Exim 3.36 #1) id 18o54T-000GD0-00; Wed, 26 Feb 2003 19:10:18 +0200 Received: from gabba.so.cpt1.za.uu.net (gabba.so.cpt1.za.uu.net [196.30.72.25]) by pixproxy.so.cpt1.za.uu.net (Postfix) with ESMTP id BE3F01B5EB; Wed, 26 Feb 2003 19:10:15 +0200 (SAST) Received: from localhost (localhost [127.0.0.1]) by gabba.so.cpt1.za.uu.net (8.11.6/8.11.6) with ESMTP id h1QHAFr05405; Wed, 26 Feb 2003 19:10:15 +0200 (SAST) (envelope-from gareth@za.uu.net) Date: Wed, 26 Feb 2003 19:10:15 +0200 (SAST) From: Gareth Hopkins X-X-Sender: ghopkins@gabba.so.cpt1.za.uu.net To: "Sergey A. Osokin" Cc: freebsd-stable@freebsd.org Subject: Re: 4.8-Stable In-Reply-To: <20030226170906.GI424@freebsd.org.ru> Message-ID: <20030226191004.J5071-100000@gabba.so.cpt1.za.uu.net> X-Cell: +27 82 929 6668 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, 26 Feb 2003, Sergey A. Osokin wrote: SAO>When it be ready :-) SAO>Check http://www.freebsd.org/releases/4.8R/schedule.html Ah excellent thanks :) --- Gareth Hopkins Server Operations UUNET South Africa (o) +27.21.658.8700 (f) +27.21.658.8552 (m) +27.82.929.6668 http://www.uunet.co.za 08600 UUNET (08600 88638) "The contents of this e-mail and any accompanying documentation is confidential and any use thereof, in whatever form, by anyone other than the addressee for whom it is intended, is strictly prohibited." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 9:10:34 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 186CD37B401 for ; Wed, 26 Feb 2003 09:10:33 -0800 (PST) Received: from rhea.tiscali.nl (rhea.tiscali.nl [195.241.76.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A91D43F85 for ; Wed, 26 Feb 2003 09:10:30 -0800 (PST) (envelope-from eric@monkey-online.net) Received: from eric.monkey-online.net (195-241-113-9-mx.xdsl.tiscali.nl [195.241.113.9]) by rhea.tiscali.nl (Postfix) with ESMTP id 50D123998F; Wed, 26 Feb 2003 18:10:28 +0100 (MET) Message-Id: <5.2.0.9.0.20030226181130.0476fe38@mail.monkey-online.net> X-Sender: eric@mail.monkey-online.net (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Wed, 26 Feb 2003 18:11:43 +0100 To: osa@freebsd.org.ru, Gareth Hopkins From: Eric Veraart Subject: Re: 4.8-Stable Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: <20030226170906.GI424@freebsd.org.ru> References: <20030226190637.Q5071-100000@gabba.so.cpt1.za.uu.net> <20030226190637.Q5071-100000@gabba.so.cpt1.za.uu.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 http://www.freebsd.org/releng/index.html March 17, 2003 : <../releases/4.8R/schedule.htm>FreeBSD 4.8 At 08:09 PM 26/2/2003 +0300, Sergey A. Osokin wrote: >On Wed, Feb 26, 2003 at 07:07:31PM +0200, Gareth Hopkins wrote: > > Howdie, > > > > Is there a release date for 4.8 Stable? > >When it be ready :-) >Check http://www.freebsd.org/releases/4.8R/schedule.html > >-- > >Rgdz, /"\ ASCII RIBBON CAMPAIGN >Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL >http://ozz.pp.ru/ X AND NEWS > / \ > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 9:12:17 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEB5C37B401 for ; Wed, 26 Feb 2003 09:12:16 -0800 (PST) Received: from freebsd.org.ru (sweet.etrust.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31DE343F93 for ; Wed, 26 Feb 2003 09:12:16 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id F1A1A94; Wed, 26 Feb 2003 20:12:14 +0300 (MSK) Date: Wed, 26 Feb 2003 20:12:14 +0300 From: "Sergey A. Osokin" To: "Jamin A. Brown" Cc: freebsd-stable@FreeBSD.ORG Subject: Re: RELENG_4_5 no longer updated? Message-ID: <20030226171214.GJ424@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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, Feb 26, 2003 at 12:09:35PM -0500, Jamin A. Brown wrote: > Not sure if this is the best forum to ask, but... > > Anyone know why RELENG_4_5 wasn't updated with the latest patches, and if > there is some for of official announcement that goes out before a branch > is no longer updated? Yes, look at http://www.freebsd.org/releng/ Quote: FreeBSD 4.5 security fix branch (not officially supported). -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 9:16:23 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9250137B401 for ; Wed, 26 Feb 2003 09:16:21 -0800 (PST) Received: from aphrodite.gwi.net (aphrodite.gwi.net [207.5.128.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCC0143FDD for ; Wed, 26 Feb 2003 09:16:20 -0800 (PST) (envelope-from jamin@gwi.net) Received: from dargo.gwi (dargo.gwi.net [207.5.142.21]) by aphrodite.gwi.net (8.11.6/8.11.6) with ESMTP id h1QHGH161943; Wed, 26 Feb 2003 12:16:17 -0500 (EST) (envelope-from jamin@gwi.net) Date: Wed, 26 Feb 2003 12:16:17 -0500 (EST) From: "Jamin A. Brown" To: "Sergey A. Osokin" Cc: freebsd-stable@FreeBSD.ORG Subject: Re: RELENG_4_5 no longer updated? In-Reply-To: <20030226171214.GJ424@freebsd.org.ru> Message-ID: References: <20030226171214.GJ424@freebsd.org.ru> 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 My thanks, Would it be possible to request that when a security branch is changed to "not officially supported" that there is a warning about this before it happens to the freebsd-announce list? Or is such an announcement made somewhere already and I just missed it? It would be great to know about this in advance so that those systems could be brought up to date before occasions like the recent patches. Jamin On Wed, 26 Feb 2003, Sergey A. Osokin wrote: > On Wed, Feb 26, 2003 at 12:09:35PM -0500, Jamin A. Brown wrote: > > Not sure if this is the best forum to ask, but... > > > > Anyone know why RELENG_4_5 wasn't updated with the latest patches, and if > > there is some for of official announcement that goes out before a branch > > is no longer updated? > > Yes, look at > http://www.freebsd.org/releng/ > Quote: FreeBSD 4.5 security fix branch (not officially supported). > > ----------------------------------------------------------------- Jamin A. Brown Systems Operations Supervisor operations@gwi.net * Great Works Internet * 207.286.8686 x142 RSA 1024 PGP Key: http://home.gwi.net/~jamin/pgp/jamin.asc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 9:21:33 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F3B237B401 for ; Wed, 26 Feb 2003 09:21:32 -0800 (PST) Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC89C43F3F for ; Wed, 26 Feb 2003 09:21:30 -0800 (PST) (envelope-from colin.percival@wadham.ox.ac.uk) Received: from piii600.wadham.ox.ac.uk ([81.103.196.4]) by mta05-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20030226172126.YAYW2341.mta05-svc.ntlworld.com@piii600.wadham.ox.ac.uk>; Wed, 26 Feb 2003 17:21:26 +0000 Message-Id: <5.0.2.1.1.20030226171421.01c3a980@popserver.sfu.ca> X-Sender: cperciva@popserver.sfu.ca X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Wed, 26 Feb 2003 17:21:19 +0000 To: "Jamin A. Brown" , freebsd-stable@FreeBSD.ORG From: Colin Percival Subject: Re: RELENG_4_5 no longer updated? In-Reply-To: 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 At 12:09 26/02/2003 -0500, Jamin A. Brown wrote: >Not sure if this is the best forum to ask, but... > >Anyone know why RELENG_4_5 wasn't updated with the latest patches, From http://www.freebsd.org/security/ : "Each branch is supported by the Security Officer for a limited time only, typically through 12 months after the release." In particular, RELENG_4_6 will (almost certainly) be supported until the end of May 2003, and RELENG_4_7 will (almost certainly) be supported until the end of September 2003. >and if >there is some for of official announcement that goes out before a branch >is no longer updated? I'm not aware of any; but I'd agree that it would be a Good Idea if a security notice was sent out at the appropriate time. Colin Percival To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 9:25: 2 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 980B137B401 for ; Wed, 26 Feb 2003 09:25:00 -0800 (PST) Received: from freebsd.org.ru (www.freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id D335043FCB for ; Wed, 26 Feb 2003 09:24:59 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 9AAF58D; Wed, 26 Feb 2003 20:24:58 +0300 (MSK) Date: Wed, 26 Feb 2003 20:24:58 +0300 From: "Sergey A. Osokin" To: "Jamin A. Brown" Cc: freebsd-stable@FreeBSD.ORG Subject: Re: RELENG_4_5 no longer updated? Message-ID: <20030226172458.GL424@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: <20030226171214.GJ424@freebsd.org.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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, Feb 26, 2003 at 12:16:17PM -0500, Jamin A. Brown wrote: > Would it be possible to request that when a security branch is changed to > "not officially supported" that there is a warning about this before it > happens to the freebsd-announce list? Or is such an announcement made > somewhere already and I just missed it? > > It would be great to know about this in advance so that those systems > could be brought up to date before occasions like the recent patches. AFAIK, when a new version of FreeBSD released (or new tag like RELENG_4_X_RELEASE committed into the CVS-tree) preprevious branch make unsupported. If you subscribed to freebsd-announce maillist - you notified that new version (FreeBSD 4.7) released. Its automagicaly means that RELENG_4_5 is unsuppoted. > On Wed, 26 Feb 2003, Sergey A. Osokin wrote: > > On Wed, Feb 26, 2003 at 12:09:35PM -0500, Jamin A. Brown wrote: > > > Not sure if this is the best forum to ask, but... > > > > > > Anyone know why RELENG_4_5 wasn't updated with the latest patches, and if > > > there is some for of official announcement that goes out before a branch > > > is no longer updated? > > > > Yes, look at > > http://www.freebsd.org/releng/ > > Quote: FreeBSD 4.5 security fix branch (not officially supported). -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 9:36:18 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 479CE37B401 for ; Wed, 26 Feb 2003 09:36:17 -0800 (PST) Received: from possum.cryptohill.net (cambist.cryptohill.net [24.244.145.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91FB443F93 for ; Wed, 26 Feb 2003 09:36:16 -0800 (PST) (envelope-from jeroen@vangelderen.org) Received: from vangelderen.org (grolsch.cryptohill.net [24.244.145.13]) by possum.cryptohill.net (Postfix) with ESMTP id 0CB71AE29D for ; Wed, 26 Feb 2003 12:40:46 -0500 (EST) Date: Wed, 26 Feb 2003 12:36:13 -0500 Mime-Version: 1.0 (Apple Message framework v551) Content-Type: text/plain; delsp=yes; charset=US-ASCII; format=flowed Subject: link_elf: symbol ip6_gif_hlim undefined From: "Jeroen C. van Gelderen" To: freebsd-stable@freebsd.org Content-Transfer-Encoding: 7bit Message-Id: X-Mailer: Apple Mail (2.551) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Upgrading a 4.7-STABLE (FreeBSD 4.7-STABLE #1: Mon Dec 16 22:57:16 AST 2002) machine to: FreeBSD bob.cryptohill.net 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #2: Mon Feb 24 16:20:05 AST 2003 root@hazlitt.cryptohill.net:/build/freebsd4/obj/build/freebsd4/src/sys/ BOB i386 I get the following warning on reboot and my IPv6 setup no longer works (obviously): Feb 26 12:28:04 bob /kernel: link_elf: symbol ip6_gif_hlim undefined Kernel and modules are in sync. Is something really broken in this department or should I start looking for pilot error? Anybody else see this? Thanks! -J To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 9:53:53 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7A9337B401 for ; Wed, 26 Feb 2003 09:53:51 -0800 (PST) Received: from possum.cryptohill.net (cambist.cryptohill.net [24.244.145.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5597643FA3 for ; Wed, 26 Feb 2003 09:53:51 -0800 (PST) (envelope-from jeroen@vangelderen.org) Received: from vangelderen.org (grolsch.cryptohill.net [24.244.145.13]) by possum.cryptohill.net (Postfix) with ESMTP id 9E8CFAE29D; Wed, 26 Feb 2003 12:58:19 -0500 (EST) Date: Wed, 26 Feb 2003 12:53:46 -0500 Subject: Re: link_elf: symbol ip6_gif_hlim undefined Content-Type: text/plain; delsp=yes; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v551) Cc: freebsd-stable@freebsd.org To: "Jeroen C. van Gelderen" From: "Jeroen C. van Gelderen" In-Reply-To: Message-Id: <40ECEB9A-49B3-11D7-9C07-000393754B1C@vangelderen.org> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.551) Sender: owner-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 Wednesday, Feb 26, 2003, at 12:36 US/Eastern, Jeroen C. van Gelderen wrote: > > Upgrading a 4.7-STABLE (FreeBSD 4.7-STABLE #1: Mon Dec 16 22:57:16 AST > 2002) machine to: > > FreeBSD bob.cryptohill.net 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #2: > Mon Feb 24 16:20:05 AST 2003 > > root@hazlitt.cryptohill.net:/build/freebsd4/obj/build/freebsd4/src/ > sys/BOB > i386 > > I get the following warning on reboot and my IPv6 setup no longer > works (obviously): > > Feb 26 12:28:04 bob /kernel: link_elf: symbol ip6_gif_hlim undefined > > Kernel and modules are in sync. Is something really broken in this > department or should I start looking for pilot error? Anybody else see > this? Could this be for lack of an INET6 option in one's kernel...? -J To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 12:11:18 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5190A37B401; Wed, 26 Feb 2003 12:11:17 -0800 (PST) Received: from famine.e-raist.com (famine.e-raist.com [65.100.40.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68E7543FBD; Wed, 26 Feb 2003 12:11:15 -0800 (PST) (envelope-from aburke@nullplusone.com) Received: from thebe (evrtwa1-ar10-4-40-153-150.evrtwa1.dsl-verizon.net [4.40.153.150]) (authenticated bits=0) by famine.e-raist.com (8.12.2/8.12.2) with ESMTP id h1QKBCb0085110; Wed, 26 Feb 2003 12:11:14 -0800 (PST) From: "Aaron Burke" To: , "FreeBSD-Stable@freebsd.org" Subject: Networking Drivers for Intel Silicon Date: Wed, 26 Feb 2003 12:11:11 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE 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 Forwarded to these lists on behalf of William F Hunt. > > > Where can I find networking drivers for Intel silicon? > > There are a few available. Which card(s) do you need to > > support? > > http://developer.intel.com/design/network/drivers/index.htm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 15: 1:38 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A026637B401 for ; Wed, 26 Feb 2003 15:01:37 -0800 (PST) Received: from datagate.summitoh.net (cable-29-84.sssnet.com [24.140.29.84]) by mx1.FreeBSD.org (Postfix) with SMTP id 981BB43FD7 for ; Wed, 26 Feb 2003 15:01:34 -0800 (PST) (envelope-from watsonr@gulliver.summitoh.net) Received: (qmail 27507 invoked by uid 5002); 26 Feb 2003 23:01:31 -0000 Received: from rwwin.summitoh.net (HELO rwwin) (172.16.36.5) by datagate.summitoh.net with SMTP; 26 Feb 2003 23:01:31 -0000 Message-ID: <00a801c2ddea$d4d882c0$052410ac@rwwin> From: "Ryan Watson" To: Subject: Hello... Date: Wed, 26 Feb 2003 18:00:18 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-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 a very happy user of FreeBSD, and have a Linksys WMP11 v2.7 wireless card. I would like to know what the status is of this card? It sounds like a stupid question, but it's not supported by 4.7-RELEASE, and I wondered what work on it there was, and if it's not available yet, I'd love to help with it. Ryan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 16:55:17 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E61537B401 for ; Wed, 26 Feb 2003 16:55:16 -0800 (PST) Received: from screech.weirdnoise.com (adsl-64-164-8-121.dsl.snfc21.pacbell.net [64.164.8.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBD1A43F85 for ; Wed, 26 Feb 2003 16:55:15 -0800 (PST) (envelope-from edhall@screech.weirdnoise.com) Received: from screech.weirdnoise.com (localhost [127.0.0.1]) by screech.weirdnoise.com (8.12.4/8.12.4) with ESMTP id h1R0tRBT045104; Wed, 26 Feb 2003 16:55:27 -0800 (PST) (envelope-from edhall@screech.weirdnoise.com) Message-Id: <200302270055.h1R0tRBT045104@screech.weirdnoise.com> X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: "Ryan Watson" Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Hello... In-Reply-To: Message from "Ryan Watson" of "Wed, 26 Feb 2003 18:00:18 EST." <00a801c2ddea$d4d882c0$052410ac@rwwin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 26 Feb 2003 16:55:27 -0800 From: Ed Hall Sender: owner-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, 26 Feb 2003 18:00:18 -0500, "Ryan Watson" wrote: > I'm a very happy user of FreeBSD, and have a Linksys WMP11 v2.7 wireless > card. I would like to know what the status is of this card? It sounds like > a stupid question, but it's not supported by 4.7-RELEASE, and I wondered > what work on it there was, and if it's not available yet, I'd love to help > with it. You're more likely to find assistance on the freebsd-mobile list. Checking the archives there, this particular card has been well-supported in the past, but there was a recent report that Linksys has changed their hardware and the new card no longer works. -Ed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 18:24: 0 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DFF337B401 for ; Wed, 26 Feb 2003 18:23:58 -0800 (PST) Received: from mail.selfstyled.dyndns.org (245.97.174.204.adsl.island.net [204.174.97.245]) by mx1.FreeBSD.org (Postfix) with SMTP id 3F6B143FA3 for ; Wed, 26 Feb 2003 18:23:55 -0800 (PST) (envelope-from gjbroom@alumni.uwaterloo.ca) Received: (qmail 58953 invoked from network); 27 Feb 2003 02:23:54 -0000 Received: from localhost (HELO selfstyled.dyndns.org) (127.0.0.1) by localhost with SMTP; 27 Feb 2003 02:23:54 -0000 X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 From: Gordon Broom To: ajs@labs.mot.com Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Mozilla window won't open after upgrade - FIXED In-Reply-To: Your message of "Mon, 24 Feb 2003 15:46:24 CST." <3E5A92B0.8010406@labs.mot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 26 Feb 2003 18:23:54 -0800 Message-ID: <58951.1046312634@selfstyled.dyndns.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 Aron Silverton wrote: > > > Matthew Dillon wrote: > > I had similar problems but reinstalling fontconfig did not do the trick. > > I also attempted to recompile and reinstall libXft, which didn't work, > > then recompiled mozilla from scratch... and that didn't work either. > > [...] > > Our ports system really sucks when it comes to managing very large > > ports like mozilla. > > > > -Matt > > Matthew Dillon > > > > I had done a portupgrade -fR previously which is what really bothered > me. I probably wasted just as much time as you on getting this to work. > Perhaps in my situation Xft and the rest got build by the massive > upgrade, but fontconfig didn't. Fortunately it all seems to be working > for the time being. > > Aron > I wish I had your luck, Aron. I've rebuilt mozilla (using portupgrade -fR) at least 3 times (at ~3 hours a pop). I've rebuilt Xft and fontconfig themselves, in the middle of all this, just in case there was some dependency that wasn't updated properly. Yesterday I did a complete cvsup and installworld just in case there was some reliance on the underlying system, then rebuilt mozilla again. Still no luck. Both mozilla and mozilla-devel will just display "No matching window found" when I attempt to start them. This all came around by attempting an upgrade of galeon from 1.2.7 to 1.2.8 after a recent cvsup of the ports tree. Of course, galeon itself failed because there's a C++ error in the source code! Now the galeon that's still installed (because the portupgrade failed) claims that it was built against a different mozilla than what is there (which is true, because the mozilla updated, it just doesn't work), and promptly blows core whenever I try to do anything. I'm now forced to surf the web using lynx on an xterm because nothing else works. Netscape7 is verboten, linux-mozilla doesn't install because the version of linux-base I have is too new (presumably something else needed a newer one, who knows). What a house of cards. I'm frustrated and out of ideas. Gord. -- Gordon Broom email: home tel: +1.250.384.6452 mobile: +1.250.884.6938 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 18:45:21 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94C1537B401 for ; Wed, 26 Feb 2003 18:45:18 -0800 (PST) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BC0543F75 for ; Wed, 26 Feb 2003 18:45:17 -0800 (PST) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.12.7/8.12.7) with ESMTP id h1R2ibZX022623; Wed, 26 Feb 2003 21:44:37 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: Mozilla window won't open after upgrade - FIXED From: Joe Marcus Clarke To: Gordon Broom Cc: ajs@labs.mot.com, freebsd-stable@FreeBSD.ORG In-Reply-To: <58951.1046312634@selfstyled.dyndns.org> References: <58951.1046312634@selfstyled.dyndns.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-4/YsXMbBYKEYKlmN5/Dd" Organization: MarcusCom, Inc. Message-Id: <1046313910.36796.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 26 Feb 2003 21:45:10 -0500 X-Spam-Status: No, hits=-33.0 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,QUOTE_TWICE_1,REFERENCES, REPLY_WITH_QUOTES autolearn=ham version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-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/YsXMbBYKEYKlmN5/Dd Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-02-26 at 21:23, Gordon Broom wrote: > Aron Silverton wrote: > >=20 > >=20 > > Matthew Dillon wrote: > > > I had similar problems but reinstalling fontconfig did not do the= trick. > > > I also attempted to recompile and reinstall libXft, which didn't = work, > > > then recompiled mozilla from scratch... and that didn't work eith= er. > > > [...] > > > Our ports system really sucks when it comes to managing very larg= e=20 > > > ports like mozilla. > > >=20 > > > -Matt > > > Matthew Dillon=20 > > > > >=20 > > I had done a portupgrade -fR previously which is what really bothered=20 > > me. I probably wasted just as much time as you on getting this to work= .=20 > > Perhaps in my situation Xft and the rest got build by the massive=20 > > upgrade, but fontconfig didn't. Fortunately it all seems to be working= =20 > > for the time being. > >=20 > > Aron > >=20 >=20 > I wish I had your luck, Aron. I've rebuilt mozilla (using portupgrade -f= R) at least 3 times (at ~3 hours a pop). I've rebuilt Xft and fontconfig t= hemselves, in the middle of all this, just in case there was some dependenc= y that wasn't updated properly. Yesterday I did a complete cvsup and insta= llworld just in case there was some reliance on the underlying system, then= rebuilt mozilla again. Still no luck. Both mozilla and mozilla-devel wil= l just display "No matching window found" when I attempt to start them. >=20 > This all came around by attempting an upgrade of galeon from 1.2.7 to 1.2= .8 after a recent cvsup of the ports tree. Of course, galeon itself failed= because there's a C++ error in the source code! Now the galeon that's stil= l installed (because the portupgrade failed) claims that it was built again= st a different mozilla than what is there (which is true, because the mozil= la updated, it just doesn't work), and promptly blows core whenever I try t= o do anything. >=20 > I'm now forced to surf the web using lynx on an xterm because nothing els= e works. Netscape7 is verboten, linux-mozilla doesn't install because the = version of linux-base I have is too new (presumably something else needed a= newer one, who knows). =20 >=20 > What a house of cards. I'm frustrated and out of ideas. Did you ever rebuild Mozilla with -DWITHOUT_XFT specified? Joe >=20 > Gord. --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-4/YsXMbBYKEYKlmN5/Dd Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+XXu2b2iPiv4Uz4cRAp6YAJ9oydmqonjnCODxThno6X5fgbQ4KgCaAodr 1W4936gqqXvcZMuxWNcS0aY= =3bwL -----END PGP SIGNATURE----- --=-4/YsXMbBYKEYKlmN5/Dd-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 19:30: 6 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5709937B401 for ; Wed, 26 Feb 2003 19:30:05 -0800 (PST) Received: from datagate.summitoh.net (cable-29-84.sssnet.com [24.140.29.84]) by mx1.FreeBSD.org (Postfix) with SMTP id AD53943FAF for ; Wed, 26 Feb 2003 19:30:04 -0800 (PST) (envelope-from watsonr@gulliver.summitoh.net) Received: (qmail 1286 invoked by uid 5002); 27 Feb 2003 03:30:01 -0000 Received: from rwwin.summitoh.net (HELO rwwin) (172.16.36.5) by datagate.summitoh.net with SMTP; 27 Feb 2003 03:30:01 -0000 Message-ID: <004d01c2de10$5797bbc0$052410ac@rwwin> From: "Ryan Watson" To: Subject: RE: Hello... Date: Wed, 26 Feb 2003 22:28:48 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG My Linksys is a PCI card. I will redirect my question to freebsd-hardware, thank you. Ryan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 19:47:51 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9AFB37B401 for ; Wed, 26 Feb 2003 19:47:50 -0800 (PST) Received: from www.svzserv.kemerovo.su (www.svzserv.kemerovo.su [213.184.65.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DA6C43FDD for ; Wed, 26 Feb 2003 19:47:49 -0800 (PST) (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.7/8.12.7) with ESMTP id h1R3ljjB096771; Thu, 27 Feb 2003 10:47:45 +0700 (KRAT) (envelope-from eugen@www.svzserv.kemerovo.su) Received: (from eugen@localhost) by www.svzserv.kemerovo.su (8.12.7/8.12.7/Submit) id h1R3lhtb096769; Thu, 27 Feb 2003 10:47:43 +0700 (KRAT) Date: Thu, 27 Feb 2003 10:47:43 +0700 From: Eugene Grosbein To: Ed Hall Cc: Ryan Watson , freebsd-stable@FreeBSD.ORG Subject: Re: Hello... Message-ID: <20030227034743.GA93599@svzserv.kemerovo.su> References: <00a801c2ddea$d4d882c0$052410ac@rwwin> <200302270055.h1R0tRBT045104@screech.weirdnoise.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302270055.h1R0tRBT045104@screech.weirdnoise.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 Wed, Feb 26, 2003 at 04:55:27PM -0800, Ed Hall wrote: > > I'm a very happy user of FreeBSD, and have a Linksys WMP11 v2.7 wireless > > card. I would like to know what the status is of this card? It sounds like > > a stupid question, but it's not supported by 4.7-RELEASE, and I wondered > > what work on it there was, and if it's not available yet, I'd love to help > > with it. > You're more likely to find assistance on the freebsd-mobile list. Checking > the archives there, this particular card has been well-supported in the > past, but there was a recent report that Linksys has changed their hardware > and the new card no longer works. It seems Linksys WMP11 v2.7 uses Broadcom chipset now. Eugene Grosbein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 20:47:49 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5455137B401 for ; Wed, 26 Feb 2003 20:47:48 -0800 (PST) Received: from mail.selfstyled.dyndns.org (245.97.174.204.adsl.island.net [204.174.97.245]) by mx1.FreeBSD.org (Postfix) with SMTP id 708B843F75 for ; Wed, 26 Feb 2003 20:47:47 -0800 (PST) (envelope-from gjbroom@alumni.uwaterloo.ca) Received: (qmail 39334 invoked from network); 27 Feb 2003 04:47:45 -0000 Received: from localhost (HELO selfstyled.dyndns.org) (127.0.0.1) by localhost with SMTP; 27 Feb 2003 04:47:45 -0000 X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 From: Gordon Broom To: Joe Marcus Clarke Cc: ajs@labs.mot.com, freebsd-stable@FreeBSD.ORG Subject: Re: Mozilla window won't open after upgrade - FIXED In-Reply-To: Your message of "26 Feb 2003 21:45:10 EST." <1046313910.36796.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 26 Feb 2003 20:47:45 -0800 Message-ID: <39332.1046321265@selfstyled.dyndns.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 > > Did you ever rebuild Mozilla with -DWITHOUT_XFT specified? > That did the trick, thanks! Whatever XFT is, apparently I can live without it :-) -- Gordon Broom email: home tel: +1.250.384.6452 mobile: +1.250.884.6938 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 21:21:45 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A41637B401 for ; Wed, 26 Feb 2003 21:21:43 -0800 (PST) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5546C43F3F for ; Wed, 26 Feb 2003 21:21:42 -0800 (PST) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.12.7/8.12.7) with ESMTP id h1R5L1ZX023445; Thu, 27 Feb 2003 00:21:01 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: Mozilla window won't open after upgrade - FIXED From: Joe Marcus Clarke To: Gordon Broom Cc: ajs@labs.mot.com, freebsd-stable@FreeBSD.ORG In-Reply-To: <39332.1046321265@selfstyled.dyndns.org> References: <39332.1046321265@selfstyled.dyndns.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-B4KLJvzD/IJhhUQ80JkF" Organization: MarcusCom, Inc. Message-Id: <1046323294.36796.4.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 27 Feb 2003 00:21:35 -0500 X-Spam-Status: No, hits=-32.4 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES autolearn=ham version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-B4KLJvzD/IJhhUQ80JkF Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-02-26 at 23:47, Gordon Broom wrote: > >=20 > > Did you ever rebuild Mozilla with -DWITHOUT_XFT specified? > >=20 >=20 > That did the trick, thanks! =20 >=20 > Whatever XFT is, apparently I can live without it :-) It adds anti-aliased font support to Mozilla. If this fixed your problem, you either have a bad font, a bad fontconfig cache, or a bad freetype2 installation (or a combination of all three). Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-B4KLJvzD/IJhhUQ80JkF Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+XaBeb2iPiv4Uz4cRAgjSAJ9XL/ogwzdCrlC+89OUgnyU6qmJRwCfWHwn kx+bTNKOnZTqmmr1mFUtjSs= =TPxO -----END PGP SIGNATURE----- --=-B4KLJvzD/IJhhUQ80JkF-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 21:44:35 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5647637B401 for ; Wed, 26 Feb 2003 21:44:34 -0800 (PST) Received: from mail.redlinenetworks.com (mail.redlinenetworks.com [216.136.145.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id B626143FD7 for ; Wed, 26 Feb 2003 21:44:33 -0800 (PST) (envelope-from sewall@ix.netcom.com) Received: from ix.netcom.com (melkor.redlinenetworks.com [192.168.0.8]) by mail.redlinenetworks.com (8.11.6/8.11.1) with ESMTP id h1R5iXw69921; Wed, 26 Feb 2003 21:44:33 -0800 (PST) (envelope-from sewall@ix.netcom.com) Message-ID: <3E5DA956.2090508@ix.netcom.com> Date: Wed, 26 Feb 2003 21:59:50 -0800 From: Scott Sewall User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4.1) Gecko/20020508 Netscape6/6.2.3 X-Accept-Language: en-us MIME-Version: 1.0 To: freebsd-stable@FreeBSD.org Cc: sewall@ix.netcom.com Subject: VM issues in -stable? 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 FreeBSD July - August 2002 Status Report mentions some VM issues in -stable related to vm_map corruption on large-memory systems under heavy loads. The report indicates there is ongoing work to MFC the bug fixes. Has the work to MFC the bug fixes to -stable been completed? I have a 4.6.2 system with 2GB of memory that's getting a page fault while in kernel mode. The failure occurs when "periodic daily" is run. The active process is always find. I suspect this system may be experiencing the problem described by the report. Any help is greatly appreciated. Thanks! -- Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 21:47:35 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F4AC37B401 for ; Wed, 26 Feb 2003 21:47:33 -0800 (PST) Received: from maild.telia.com (maild.telia.com [194.22.190.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BD9D43FAF for ; Wed, 26 Feb 2003 21:47:32 -0800 (PST) (envelope-from home@jukkis.net) Received: from d1o989.telia.com (d1o989.telia.com [213.65.228.241]) by maild.telia.com (8.12.5/8.12.5) with ESMTP id h1R5lQPZ019167 for ; Thu, 27 Feb 2003 06:47:31 +0100 (CET) X-Original-Recipient: Received: from sjukebox.js.serverbox.org (h80n2fls32o989.telia.com [217.208.125.80]) by d1o989.telia.com (8.10.2/8.10.1) with ESMTP id h1R5lPB23014 for ; Thu, 27 Feb 2003 06:47:25 +0100 (CET) Subject: Re: burncd problem with NEC NR-7500A CD burner in DAO mode From: Jukka Simila To: freebsd-stable@FreeBSD.ORG In-Reply-To: <200302240832.10551.will@unfoldings.net> References: <1046047691.17201.19.camel@benny.wirgl.net> <200302240832.10551.will@unfoldings.net> Content-Type: text/plain Organization: Message-Id: <1046324895.578.5.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.0 Date: 27 Feb 2003 06:48:15 +0100 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 Mon, 2003-02-24 at 07:32, Willie Viljoen wrote: > To get atapicam, you will need all of these (atleast) in your kernel > configuration file: > > device ata > device atapicd > device atapicam > > device scbus > device pass > device cd Somewhat related problem here: I've got LiteOn ATAPI Cd burner, and I'm using atapicam+xcdroast, which works quite well, but occasionally the pc reboots when starting to write disc. As far as I've understood, atapicam doesn't work well with atapicd, so I should have only device 'cd0' instead of 'cd0' and 'acd0'. The problem is, there seems to be no way of playing audio discs with atapicam devices - so I'm stuck with keeping acd0 and having occasional reboots. Does someone have a workaround, how could I play my audio discs without atapicd? -- --------------------------------------- -- Jukka Simila - www.jukkis.net -- They always tell me "Apples, oranges".. Who cares? I don't eat fruits anyway. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 22:27:31 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF94837B401 for ; Wed, 26 Feb 2003 22:27:29 -0800 (PST) Received: from apollo.laserfence.net (apollo.laserfence.net [196.44.69.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D8E943F85 for ; Wed, 26 Feb 2003 22:27:28 -0800 (PST) (envelope-from will@unfoldings.net) Received: from localhost ([127.0.0.1]) by apollo.laserfence.net with esmtp (Exim 4.10) id 18oHVf-000703-00; Thu, 27 Feb 2003 08:27:11 +0200 Received: from prometheus-p0.datel.laserfence.net ([192.168.255.1] helo=prometheus.home.laserfence.net) by apollo.laserfence.net with esmtp (Exim 4.10) id 18oHVR-0006zg-00; Thu, 27 Feb 2003 08:26:58 +0200 Received: from phoenix.home.laserfence.net ([192.168.0.2]) by prometheus.home.laserfence.net with esmtp (Exim 4.10) id 18oHVN-0009XC-00; Thu, 27 Feb 2003 08:26:53 +0200 Received: from will by phoenix.home.laserfence.net with local (Exim 4.10) id 18oHVL-00068r-00; Thu, 27 Feb 2003 08:26:51 +0200 From: Willie Viljoen To: Jukka Simila , freebsd-stable@FreeBSD.ORG Subject: Re: burncd problem with NEC NR-7500A CD burner in DAO mode Date: Thu, 27 Feb 2003 08:26:51 +0200 User-Agent: KMail/1.5 References: <1046047691.17201.19.camel@benny.wirgl.net> <200302240832.10551.will@unfoldings.net> <1046324895.578.5.camel@localhost> In-Reply-To: <1046324895.578.5.camel@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200302270826.51709.will@unfoldings.net> X-Spam-Score: (/) X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *18oHVR-0006zg-00*eMHDpzNVsF.* X-Virus-Scanned: by AMaViS snapshot-20020422 Sender: owner-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 Thursday 27 February 2003 7:48, someone, possibly Jukka Simila, typed: > Somewhat related problem here: > I've got LiteOn ATAPI Cd burner, and I'm using atapicam+xcdroast, which > works quite well, but occasionally the pc reboots when starting to write > disc. As far as I've understood, atapicam doesn't work well with > atapicd, so I should have only device 'cd0' instead of 'cd0' and 'acd0'. Well, you actually *NEED* atapicd to have atapicam :) The problem is that once you have installed atapicam, you should not be using the /dev/acd* devices anymore, and only the cd* devices. > The problem is, there seems to be no way of playing audio discs with > atapicam devices - so I'm stuck with keeping acd0 and having occasional > reboots. > > Does someone have a workaround, how could I play my audio discs without > atapicd? Have you tried playing through the cd0a device? I might be completely off here though, but as far as I remember, cd0a would mean "audio" and cd0c would be for a file system. On a side note, if you need direct CD playback that much, you could just use the regular atapicd interface. LiteON's CD-R/RW drives are for the most part very well behaved as far as standards go, and apart from a few confusing errors you might get -- like an empty drive telling you it is busy, and halting the process, when it should be telling you it's empty, and halting the process -- the LiteON works perfectly with burncd(8). Hope this helps Will -- Willie Viljoen Freelance IT Consultant 214 Paul Kruger Avenue, Universitas Bloemfontein 9321 South Africa +27 51 522 15 60 +27 51 522 44 36 (after hours) +27 82 404 03 27 (mobile) will@unfoldings.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Wed Feb 26 22:43: 7 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77FA637B401 for ; Wed, 26 Feb 2003 22:43:06 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id D041B43FAF for ; Wed, 26 Feb 2003 22:43:05 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h1R6h48Y012228; Wed, 26 Feb 2003 22:43:04 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h1R6h4QS012227; Wed, 26 Feb 2003 22:43:04 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Wed, 26 Feb 2003 22:43:04 -0800 From: David Schultz To: Scott Sewall Cc: freebsd-stable@FreeBSD.ORG Subject: Re: VM issues in -stable? Message-ID: <20030227064304.GA12201@HAL9000.homeunix.com> Mail-Followup-To: Scott Sewall , freebsd-stable@FreeBSD.org References: <3E5DA956.2090508@ix.netcom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E5DA956.2090508@ix.netcom.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 Scott Sewall : > > The FreeBSD July - August 2002 Status Report mentions some VM issues in > -stable related to vm_map corruption > on large-memory systems under heavy loads. The report indicates there is > ongoing work to MFC the bug fixes. > > Has the work to MFC the bug fixes to -stable been completed? > > I have a 4.6.2 system with 2GB of memory that's getting a page fault > while in kernel mode. The failure occurs > when "periodic daily" is run. The active process is always find. I > suspect this system may be experiencing the > problem described by the report. If you post the panic message and a backtrace, people might be able to tell you more about the particular bug you're running into. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 0:58:14 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51DD937B401 for ; Thu, 27 Feb 2003 00:58:12 -0800 (PST) Received: from dart.sr.se (dart.SR.SE [134.25.0.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06E9343FF3 for ; Thu, 27 Feb 2003 00:57:56 -0800 (PST) (envelope-from gunnar@oldie.sr.se) Received: from honken.sr.se (honken.sr.se [134.25.128.27]) by dart.sr.se (8.12.6/8.12.6) with ESMTP id h1R8vp1k047625; Thu, 27 Feb 2003 09:57:51 +0100 (CET) (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 h1R8vp1j033753; Thu, 27 Feb 2003 09:57:51 +0100 (CET) (envelope-from gunnar@oldie.sr.se) Received: from oldie.sr.se (localhost [127.0.0.1]) by oldie.sr.se (8.12.6/8.12.5) with ESMTP id h1R8vpiG022871; Thu, 27 Feb 2003 09:57:51 +0100 (CET) (envelope-from gunnar@oldie.sr.se) Received: (from gunnar@localhost) by oldie.sr.se (8.12.6/8.12.6/Submit) id h1R8vnHB022865; Thu, 27 Feb 2003 09:57:49 +0100 (CET) Date: Thu, 27 Feb 2003 09:57:49 +0100 From: Gunnar Flygt To: Joe Marcus Clarke Cc: Gordon Broom , ajs@labs.mot.com, freebsd-stable@FreeBSD.ORG Subject: Re: Mozilla window won't open after upgrade - FIXED Message-ID: <20030227085749.GC2315@sr.se> Reply-To: Gunnar Flygt Mail-Followup-To: Gunnar Flygt , Joe Marcus Clarke , Gordon Broom , ajs@labs.mot.com, freebsd-stable@FreeBSD.ORG References: <39332.1046321265@selfstyled.dyndns.org> <1046323294.36796.4.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1046323294.36796.4.camel@shumai.marcuscom.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 Thu, Feb 27, 2003 at 12:21:35AM -0500, Joe Marcus Clarke wrote: > On Wed, 2003-02-26 at 23:47, Gordon Broom wrote: > > > > > > Did you ever rebuild Mozilla with -DWITHOUT_XFT specified? > > > > > > > That did the trick, thanks! > > > > Whatever XFT is, apparently I can live without it :-) > > It adds anti-aliased font support to Mozilla. If this fixed your > problem, you either have a bad font, a bad fontconfig cache, or a bad > freetype2 installation (or a combination of all three). Since I have had the same problem, I continue the asking :) How do I clean up the fontconfig cache then? Or how do I find out how or why the freetype2 installation is broken. X is not complaining. The same goes for KDE and Gnome. > > Joe > > -- > PGP Key : http://www.marcuscom.com/pgp.asc -- 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 Feb 27 1:33:40 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C4B737B401 for ; Thu, 27 Feb 2003 01:33:39 -0800 (PST) Received: from murmeldjur.it.su.se (murmeldjur.it.su.se [130.237.95.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7B0D43F75 for ; Thu, 27 Feb 2003 01:33:37 -0800 (PST) (envelope-from rnyberg@murmeldjur.it.su.se) Received: from murmeldjur.it.su.se (localhost [127.0.0.1]) by murmeldjur.it.su.se (8.12.6/8.12.6) with ESMTP id h1R9XYqN020138; Thu, 27 Feb 2003 10:33:34 +0100 (CET) (envelope-from rnyberg@murmeldjur.it.su.se) Received: (from rnyberg@localhost) by murmeldjur.it.su.se (8.12.6/8.12.6/Submit) id h1R9XWIP020137; Thu, 27 Feb 2003 10:33:32 +0100 (CET) Date: Thu, 27 Feb 2003 10:33:32 +0100 From: Richard Nyberg To: Gunnar Flygt Cc: Joe Marcus Clarke , Gordon Broom , ajs@labs.mot.com, freebsd-stable@FreeBSD.ORG Subject: Re: Mozilla window won't open after upgrade - FIXED Message-ID: <20030227093331.GA19977@murmeldjur.it.su.se> Mail-Followup-To: Richard Nyberg , Gunnar Flygt , Joe Marcus Clarke , Gordon Broom , ajs@labs.mot.com, freebsd-stable@FreeBSD.ORG References: <39332.1046321265@selfstyled.dyndns.org> <1046323294.36796.4.camel@shumai.marcuscom.com> <20030227085749.GC2315@sr.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030227085749.GC2315@sr.se> 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, Feb 27, 2003 at 09:57:49AM +0100, Gunnar Flygt wrote: > On Thu, Feb 27, 2003 at 12:21:35AM -0500, Joe Marcus Clarke wrote: > > > > It adds anti-aliased font support to Mozilla. If this fixed your > > problem, you either have a bad font, a bad fontconfig cache, or a bad > > freetype2 installation (or a combination of all three). > > Since I have had the same problem, I continue the asking :) > How do I clean up the fontconfig cache then? Run "fc-cache -f -v". That helped me. -Richard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 2: 7:53 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5640537B401 for ; Thu, 27 Feb 2003 02:07:52 -0800 (PST) Received: from dart.sr.se (dart.SR.SE [134.25.0.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE54543FBD for ; Thu, 27 Feb 2003 02:07:50 -0800 (PST) (envelope-from gunnar@oldie.sr.se) Received: from honken.sr.se (honken.sr.se [134.25.128.27]) by dart.sr.se (8.12.6/8.12.6) with ESMTP id h1RA7n1k053526; Thu, 27 Feb 2003 11:07:49 +0100 (CET) (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 h1RA7l1j039225; Thu, 27 Feb 2003 11:07:47 +0100 (CET) (envelope-from gunnar@oldie.sr.se) Received: from oldie.sr.se (localhost [127.0.0.1]) by oldie.sr.se (8.12.6/8.12.5) with ESMTP id h1RA7liG039416; Thu, 27 Feb 2003 11:07:47 +0100 (CET) (envelope-from gunnar@oldie.sr.se) Received: (from gunnar@localhost) by oldie.sr.se (8.12.6/8.12.6/Submit) id h1RA7kMr039415; Thu, 27 Feb 2003 11:07:46 +0100 (CET) Date: Thu, 27 Feb 2003 11:07:46 +0100 From: Gunnar Flygt To: Richard Nyberg , Joe Marcus Clarke , Gordon Broom , ajs@labs.mot.com, freebsd-stable@FreeBSD.ORG Subject: Re: Mozilla window won't open after upgrade - FIXED Message-ID: <20030227100746.GB38464@sr.se> Mail-Followup-To: Gunnar Flygt , Richard Nyberg , Joe Marcus Clarke , Gordon Broom , ajs@labs.mot.com, freebsd-stable@FreeBSD.ORG References: <39332.1046321265@selfstyled.dyndns.org> <1046323294.36796.4.camel@shumai.marcuscom.com> <20030227085749.GC2315@sr.se> <20030227093331.GA19977@murmeldjur.it.su.se> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20030227093331.GA19977@murmeldjur.it.su.se> 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, Feb 27, 2003 at 10:33:32AM +0100, Richard Nyberg wrote: > On Thu, Feb 27, 2003 at 09:57:49AM +0100, Gunnar Flygt wrote: > > On Thu, Feb 27, 2003 at 12:21:35AM -0500, Joe Marcus Clarke wrote: > > > > > > It adds anti-aliased font support to Mozilla. If this fixed your > > > problem, you either have a bad font, a bad fontconfig cache, or a bad > > > freetype2 installation (or a combination of all three). > > > > Since I have had the same problem, I continue the asking :) > > How do I clean up the fontconfig cache then? > > Run "fc-cache -f -v". That helped me. Didn-t help me at all, so Iäll go for the tip installing mozilla without Xft 2. > > -Richard -- 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 Feb 27 3:38:34 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E2BA37B401 for ; Thu, 27 Feb 2003 03:38:33 -0800 (PST) Received: from gicco.homeip.net (115.251.202.62.dial.bluewin.ch [62.202.251.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0FF643F3F for ; Thu, 27 Feb 2003 03:38:31 -0800 (PST) (envelope-from hampi@rootshell.be) Received: (from hampi@localhost) by gicco.homeip.net (8.11.6/8.11.6) id h1RBZID00662 for freebsd-stable@freebsd.org; Thu, 27 Feb 2003 12:35:18 +0100 (CET) (envelope-from hampi@rootshell.be) Date: Thu, 27 Feb 2003 12:35:18 +0100 From: Hanspeter Roth To: freebsd-stable@freebsd.org Subject: blank_sever doesn't reset from stanby Message-ID: <20030227113518.GA610@gicco.homeip.net> Reply-To: freebsd-stable@freebsd.org Mail-Followup-To: freebsd-stable@freebsd.org 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, for the text consoles I have setup blank_saver but for X DPMS. The X DPMS values are as follows: DPMS (Energy Star): Standby: 4444 Suspend: 0 Off: 0 DPMS is Enabled Sometimes when I return to the station after X has switched to standby mode I can wake X and start a new session. But when I switch to a text console it is like in standby mode and can't be woken up again even though I have only blank_saver running. Thereafter I can switch back to the X session on console 9 but the screen stays in suspend mode. I can also switch to text console 2, login and start X on console 10. But still the screen stays in suspend mode. Then I can issue a reboot. After the system starts up the screen reverts to normal display mode. On the console 9 there is gdm running. Sometimes I have a secondary X session on console 10 launched by startx. The X sessions will be terminated by xautolock. The console sessions have autologout activated. Has anybody an idea why the text consoles can lock in standby mode? -Hanspeter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 4:33:53 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6768437B401 for ; Thu, 27 Feb 2003 04:33:52 -0800 (PST) Received: from murmeldjur.it.su.se (murmeldjur.it.su.se [130.237.95.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB6C843FDD for ; Thu, 27 Feb 2003 04:33:50 -0800 (PST) (envelope-from rnyberg@murmeldjur.it.su.se) Received: from murmeldjur.it.su.se (localhost [127.0.0.1]) by murmeldjur.it.su.se (8.12.6/8.12.6) with ESMTP id h1RCXaqN020706; Thu, 27 Feb 2003 13:33:36 +0100 (CET) (envelope-from rnyberg@murmeldjur.it.su.se) Received: (from rnyberg@localhost) by murmeldjur.it.su.se (8.12.6/8.12.6/Submit) id h1RCXXd3020705; Thu, 27 Feb 2003 13:33:33 +0100 (CET) Date: Thu, 27 Feb 2003 13:33:33 +0100 From: Richard Nyberg To: Maxim Maximov Cc: Gunnar Flygt , Joe Marcus Clarke , Gordon Broom , ajs@labs.mot.com, freebsd-stable@FreeBSD.ORG Subject: Re: Mozilla window won't open after upgrade - FIXED Message-ID: <20030227123333.GD19977@murmeldjur.it.su.se> Mail-Followup-To: Richard Nyberg , Maxim Maximov , Gunnar Flygt , Joe Marcus Clarke , Gordon Broom , ajs@labs.mot.com, freebsd-stable@FreeBSD.ORG References: <39332.1046321265@selfstyled.dyndns.org> <1046323294.36796.4.camel@shumai.marcuscom.com> <20030227085749.GC2315@sr.se> <20030227093331.GA19977@murmeldjur.it.su.se> <3E5DE2C8.1030008@agava.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E5DE2C8.1030008@agava.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 Thu, Feb 27, 2003 at 01:04:56PM +0300, Maxim Maximov wrote: > Richard Nyberg wrote: > >Run "fc-cache -f -v". That helped me. > > Maybe you know why fc-cache doesn't cache some fonts? I'm especially > interested in fonts/cyrillic directories. And probably this is why I do > not see cyrillic symbols when mozilla built with Xft. > No. I'm not even sure exactly what it is supposed to accomplish. I had read the advice on freebsd-ports, iirc, and it worked for me. I don't use cyrillic fonts though. -Richard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 4:39:32 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38FB837B401; Thu, 27 Feb 2003 04:39:29 -0800 (PST) Received: from rebecca.tiscali.nl (rebecca.tiscali.nl [195.241.76.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EE7543FD7; Thu, 27 Feb 2003 04:39:28 -0800 (PST) (envelope-from eric@monkey-online.net) Received: from eric.monkey-online.net (195-241-113-9-mx.xdsl.tiscali.nl [195.241.113.9]) by rebecca.tiscali.nl (Postfix) with ESMTP id 342D243EE22; Thu, 27 Feb 2003 13:39:26 +0100 (MET) Message-Id: <5.2.0.9.0.20030227133549.047684c0@mail.monkey-online.net> X-Sender: eric@mail.monkey-online.net (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Thu, 27 Feb 2003 13:40:53 +0100 To: freebsd-stable@freebsd.org;, freebsd-isp@freebsd.org From: Eric Veraart Subject: Buildworld on RLX Serverblade 1000t takes ages 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, I've got two RLX Serverblades T1000 here with the same specs and the same problem. I installed 4.7-Release on the blades, CVSUPed and am now running a buildworld. This is taking ages. Yesterday I did one of the blades, and it took approximitly 5 hours to complete the build. Now I'm running buildworld on the second blade and it's taking about 2 hours now, and it's still not finished. Here's the output of dmesg -a : Copyright (c) 1992-2002 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.7-RELEASE #0: Wed Oct 9 15:08:34 GMT 2002 root@builder.freebsdmall.com:/usr/obj/usr/src/sys/GENERIC Timecounter "i8254" frequency 1193182 Hz CPU: Transmeta(tm) Crusoe(tm) Processor TM5800 (1000.04-MHz 586-class CPU) Origin = "GenuineTMx86" Id = 0x543 real memory = 1199505408 (1171392K bytes) avail memory = 1160642560 (1133440K bytes) Preloaded elf kernel "kernel" at 0xc050f000. md0: Malloc disk Using $PIR table, 6 entries at 0xc00fdf60 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: (vendor=0x1279, dev=0x0396) at 0.1 pci0: (vendor=0x1279, dev=0x0397) at 0.2 isab0: at device 7.0 on pci0 isa0: on isab0 fxp0: port 0x1000-0x103f mem 0xfeb00000-0xfebfffff,0xfe900000-0xfe900fff irq 11 at device 9 .0 on pci0 fxp0: Ethernet address 00:42:52:00:90:63 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp1: port 0x1040-0x107f mem 0xfec00000-0xfecfffff,0xfe901000-0xfe901fff irq 10 at device 1 0.0 on pci0 fxp1: Ethernet address 00:42:52:00:90:64 inphy1: on miibus1 inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp2: port 0x1080-0x10bf mem 0xfed00000-0xfedfffff,0xfe902000-0xfe902fff irq 7 at device 11 .0 on pci0 fxp2: Ethernet address 00:42:52:00:90:65 inphy2: on miibus2 inphy2: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto atapci0: port 0x10c0-0x10cf,0x374-0x377,0x170-0x17f,0x3f4-0x3f7,0x1f0-0x1ff irq 14 at dev ice 15.0 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 chip1: at device 17.0 on pci0 orm0: Untitled Document

Ìîñêâà ÎÎÎ "Ïàñòîðàëü" Òåë/ôàêñ. (095) - 182-16-24, 995-57-31


Òåëåôîííûå ïðèñòàâêè îò ïðîèçâîäèòåëÿ.


Óæå 12 ëåò ìû ïðîèçâîäèì òåëåôîííûå ïðèñòàâêè äëÿ óëó÷øåíèÿ ðàáîòû Âàøèõ òåëåôîíîâ.

Ãëàâíàÿ íàøà öåëü - ýòî ïðîèçâîäñòâî êà÷åñòâåííûõ èçäåëèé, êîòîðûå ðàáîòàëè áû äîëãî è íàä¸æíî.

Äëÿ ðàñøèðåíèÿ ñáûòà íàøåé ïðîäóêöèè ìû èùåì ðåãèîíàëüíûõ ïîñðåäíèêîâ.

 

Íàèìåíîâàíèå
Öåíà ïðè êîë-âå 50 øò.
Àäàïòåðû (óñèëèòåëè âûçûâíîãî ñèãíàëà) äëÿ ñïàðåííûõ òåëåôîííûõ ëèíèé
îò 50 ðóá
Àäàïòåð äëÿ êâàçèýëåêòðîííûõ ÀÒÑ òèïà "Êâàíò"

îò 60 ðóá

Àäàïòåðû ÀÂÓ
îò 75 ðóá
Áëîêèðàòîðû ìåæäóãîðîäíîãî òåëåôîííîãî êîäà
îò 85 ðóá
Óíèâåðñàëüíûå çàùèòíûå óñòðîéñòâà äëÿ òåëåôîíà (ðàäèîòåëåôîíà)
îò 160 ðóá
Áëîêèðàòîðû ïàðàëëåëüíîãî òåëåôîíà
îò 50 ðóá
Ñîâðåìåííûå áëîêèðàòîðû ñïàðåííîé òåëåôîííîé ëèíèè
îò 60 ðóá

Öåíû ïðèâåäåíû îïòîâûå. Òåëåôîííûå ïðèñòàâêè íàøåé ôèðìîé â ðîçíèöó íå ïðîäàþòñÿ.

 

Èçó÷èòü èíîñòðàííûé ÿçûê çà 2-3 ìåñÿöà - ýòî ðåàëüíî!

Äëÿ Âàñ ïðåäëàãàþòñÿ ëèöåíçèîííûå ïðîãðàììû íà CD ïî óñêîðåííîìó èçó÷åíèþ èíîñòðàííûõ ÿçûêîâ "Áûñòðûé Ó÷èòåëü", ðàçðàáîòàííûå ïðåäïðèÿòèåì "Êâàíò", ïîçâîëÿþùèå ãàðàíòèðîâàííî îñâîèòü èíîñòðàííûé ÿçûê "ñ íóëÿ".
Òàêæå ýôôåêòèâíàÿ ïðîãðàììà äëÿ ïîâûøåíèÿ ñêîðîñòè ÷òåíèÿ (600 ñòðàíèö çà ÷àñ).

Âûïóñêíèêè ÂÓÇîâ èíîñòðàííûõ ÿçûêîâ çíàþò ïðèìåðíî 10000 ñëîâ. Äëÿ õîðîøåãî îáùåíèÿ íà êàêîì-ëèáî ÿçûêå äîñòàòî÷íî çíàòü 4000 ñëîâ (íî íå ìåíåå 1500), ïîýòîìó îáó÷àþùèå ïðîãðàììû äåëÿòñÿ íà "ïðîôè" è "ñòàíäàðò", ñîîòâåòñòâåííî 10000 è 4000 ñëîâ. Âû ìîæåòå êà÷åñòâåííî îñâîèòü íå òîëüêî àíãëèéñêèé, íî è íåìåöêèé, ôðàíöóçñêèé, èòàëüÿíñêèé, èñïàíñêèé, ôèíñêèé è äàæå ÿïîíñêèé. Ýòî ìîæíî ñäåëàòü ñàìîñòîÿòåëüíî, èìåÿ êîìïüþòåð è ïðîãðàììó. Åñëè Âû õîòèòå êà÷åñòâåííî èçó÷èòü ÿçûê è ïðè ýòîì çàòðàòèòü ìèíèìóì âðåìåíè, òî ýòîò ìåòîä äëÿ Âàñ. 2000 ñëîâ çà 60 ÷àñîâ - ãàðàíòèðîâàííàÿ ñêîðîñòü îñâîåíèÿ ñëîâ.

Ïðîãðàììà "Áûñòðûé Ó÷èòåëü" ïîçâîëÿåò íå òîëüêî îñâîèòü ëåêñèêó, íî è ñàìîìó íàó÷èòüñÿ ñîñòàâëÿòü ôðàçû, ïîíèìàòü ñî ñëóõà ðàçãîâîðíóþ ðå÷ü, èçó÷èòü ôîíåòèêó, ãðàììàòèêó ÿçûêà, ïîçâîëèò îòðàáîòàòü Âàøå ïðîèçíîøåíèå è ïðàâîïèñàíèå. Âûñîêàÿ ñêîðîñòü èçó÷åíèÿ (2000 ñëîâ çà 60 ÷àñîâ) äîñòèãàåòñÿ çà ñ÷¸ò ãèáêîãî äîáàâëåíèÿ â îáû÷íûé ìåòîä îáó÷åíèÿ ìåòîäèêè "25 êàäðà". Ýòè ïðîãðàììû ïðîøëè èñïûòàíèå âðåìåíåì è äîêàçàëè ñâîþ ñîñòîÿòåëüíîñòü. Óæå áîëåå 10 ëåò ñ èõ ïîìîùüþ ëþäè èçó÷àþò èíîñòðàííûå ÿçûêè è ñîâåðøåíñòâóþò ñâîè çíàíèÿ.

Ïðåäëàãàþòñÿ ïðîãðàììû èçó÷åíèÿ àíãëèéñêîãî, àìåðèêàíñêîãî àíãëèéñêîãî, íåìåöêîãî, ôðàíöóçñêîãî, èòàëüÿíñêîãî, èñïàíñêîãî, ôèíñêîãî, ÿïîíñêîãî ÿçûêîâ, è ðóññêîãî ÿçûêà äëÿ àíãëîãîâîðÿùèõ ãðàæäàí.
Àíãëèéñêèé òåõíè÷åñêèé, àíãëèéñêèé äëÿ áèçíåñìåíîâ, àíãëèéñêèé ïðîôè è äð.

Ñòîèìîñòü ïðîãðàììû "Áûñòðûé Ó÷èòåëü"
- ñòàíäàðò 4000 ñëîâ - 980 ðóá.
- ïðîôè 10000 ñëîâ - 1500 ðóá.
(ïðîôè - àíãëèéñêèé, íåìåöêèé, àìåðèêàíñêèé)

Ïðîãðàììà-òðåíàæ¸ð áûñòðîãî ÷òåíèÿ - 980 ðóá.

Òåë/ôàêñ. (095) - 182-16-24, 995-57-31

Êîìïàíèÿ "Ïàñòîðàëü" - ã. Ìîñêâà



Ïðèíîñèì ãëóáî÷àéøèå èçâèíåíèÿ, åñëè ýòî ïèñüìî Âàì íåèíòåðåñíî. Ðàç è íàâñåãäà îòêàçàòüñÿ îò íàøåé ðåêëàìû ìîæíî ïðîñòî íàæàâ íà êíîïêó DELETE.

 

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 14:29:30 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E94037B401 for ; Thu, 27 Feb 2003 14:29:28 -0800 (PST) Received: from motgate.mot.com (motgate.mot.com [129.188.136.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B0DA44005 for ; Thu, 27 Feb 2003 14:28:58 -0800 (PST) (envelope-from ajs@labs.mot.com) Received: from pobox3.mot.com (pobox3.mot.com [10.64.251.242]) by motgate.mot.com (Motorola/Motgate) with ESMTP id h1RMSuFP029817 for ; Thu, 27 Feb 2003 15:28:56 -0700 (MST) Received: [from il06exr01.mot.com (il06exr01.mot.com [129.188.137.131]) by pobox3.mot.com (MOT-pobox3 2.0) with ESMTP id PAA03629 for ; Thu, 27 Feb 2003 15:27:12 -0700 (MST)] Received: from pobox.cstl.labs.mot.com (pobox.cstl.labs.mot.com [173.23.1.1]) by il06exr01.mot.com (8.11.6/il06exr01) with ESMTP id h1RMSqp24680 for ; Thu, 27 Feb 2003 16:28:52 -0600 Received: from labs.mot.com ([173.23.93.76]) by pobox.cstl.labs.mot.com (Netscape Messaging Server 4.15) with ESMTP id HAZNS700.2OW; Thu, 27 Feb 2003 16:28:55 -0600 Message-ID: <3E5E9126.5050204@labs.mot.com> Date: Thu, 27 Feb 2003 16:28:54 -0600 From: "Aron Silverton" Reply-To: ajs@labs.mot.com User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.1) Gecko/20020918 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Marcus Clarke Cc: Gordon Broom , Subject: Re: Really fixed it this time? was Re: Mozilla window won't open after upgrade - FIXED References: <39332.1046321265@selfstyled.dyndns.org> <3E5E8AA9.8050308@labs.mot.com> <1046384576.315.16.camel@gyros> 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 Joe Marcus Clarke wrote: > On Thu, 2003-02-27 at 17:01, Aron Silverton wrote: > >>Gordon Broom wrote: >> >>>>Did you ever rebuild Mozilla with -DWITHOUT_XFT specified? >>>> >>> >>> >>>That did the trick, thanks! >>> >>>Whatever XFT is, apparently I can live without it :-) >> >>I realized that I didn't have a XftConfig file. I followed the stuff in >>the FreeBSD Handbook on using fonts with XFree86 to see what, if >>anything I was missing. I created the Xftconfig file and now mozilla >>seems to work with Xft reliably. (I hope that it's not too soon to say >>that.) > > > XftConfig is no longer used by anything in FreeBSD. This has been > replaced with /usr/X11R6/etc/fonts/fonts.conf and ~/.fonts.conf. > > Joe > > >>Aron > Then I have absolutely no idea what is going on. I just know that it works. The only other things that I did was install TrueType fonts and put freetype, URW, type1, and I think, Speedo load statements in my XF86Config modules section. I won't get too upset about the XftConfig stuff being in the Handbook as I don't have any intention of cleaning up the documentation. ;-) Aron -- Aron J. Silverton Senior Staff Research Engineer Motorola Laboratories, Networks and Infrastructure Research Motorola, Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 14:32:19 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5803837B401 for ; Thu, 27 Feb 2003 14:32:13 -0800 (PST) Received: from oneplusone.ch (oneplusone.ch [212.55.208.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74BB143F75 for ; Thu, 27 Feb 2003 14:32:10 -0800 (PST) (envelope-from ast@marabu.ch) Received: from oneplusone.ch (localhost [127.0.0.1]) by oneplusone.ch (8.12.6/8.12.3) with ESMTP id h1RMW3ew002796; Thu, 27 Feb 2003 23:32:03 +0100 (MET) (envelope-from ast@marabu.ch) Received: (from uucp@localhost) by oneplusone.ch (8.12.6/8.12.3/Submit) with UUCP id h1RMW2JS002795; Thu, 27 Feb 2003 23:32:02 +0100 (MET) Received: from marabu.marabu.ch (marabu.marabu.ch [192.168.21.3]) by marabu.ch (8.11.6/8.11.6) with ESMTP id h1RMR8F34275; Thu, 27 Feb 2003 23:27:08 +0100 (MET) (envelope-from ast@marabu.ch) Received: by marabu.marabu.ch (8.7.5/20001028-ast-8.3) id XAA01208; Thu, 27 Feb 2003 23:27:05 +0100 (CET) Message-Id: <200302272227.XAA01208@marabu.marabu.ch> MIME-Version: 1.0 (NeXT Mail 3.3 v124.8483.6) Content-Type: text/plain In-Reply-To: <036f01c2de84$82a70b30$52557f42@errno.com> X-Nextstep-Mailer: Mail 3.3 (Enhance 2.0b6) Received: by NeXT.Mailer (1.124.8483.6) From: Adrian Steinmann Date: Thu, 27 Feb 2003 23:27:03 +0100 To: "Sam Leffler" Subject: Re: Is OpenSSL 0.9.7a really using cryptodev hardware? Cc: References: <200302271357.OAA00975@marabu.marabu.ch> <036f01c2de84$82a70b30$52557f42@errno.com> X-Organization: Webgroup Consulting AG, Apollostrasse 21, 8032 Zurich X-Phone-Numbers: Switzerland, Tel +41 1 380 30 83 Fax +41 1 380 30 85 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Using the lthe -p option on larger samples, this is what I get: # cryptotest -p 1024 4096 2.833 sec, 2048 3des crypts, 4096 bytes, 2961324 byte/sec, 22.6 Mb/sec dispatch->invoke: avg 8174 ns : min 5280 ns : max 93839 ns [2048 samps] invoke->done: avg 667909 ns : min 630956 ns : max 791275 ns [2048 samps] done->cb: avg 59435 ns : min 42720 ns : max 453957 ns [2048 samps] cb->finis: avg 11255 ns : min 8519 ns : max 78119 ns [2048 samps] this looks much better. I was using the cryptotest -z without a parameter, and that was just 2 samples so the numbers were indeed "wumpus". I was actually not questioning cryptotest which indeed exercises the hifn and shows how it can be accessed via /dev/crypto. My problem is that I cannot reproduce those same speeds with openssl, even if I specify the engine cryptodev (the only one actually available on my soekris) As expected, cryptodev disappears from the list when I invoke openssl engine -vvv -c -t after /dev/crypto is gone, yet the speeds are identical in before and after (and enginetest doesn't report any engines in both cases). OpenSSL 0.9.7a Feb 19 2003 with /dev/crypto: $ openssl speed des type 8 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes des cbc 572.92k 605.14k 614.04k 616.71k 608.82k des ede3 165.00k 171.29k 171.84k 174.22k 172.88k (same numbers after rm -f /dev/crypto) The speeds look slightly worse than OpenSSL 0.9.6g which doesn't support cryptodev: OpenSSL 0.9.6g 9 Aug 2002 (without cryptodev support, and no /dev/crypto): des cbc 1236.05k 1343.45k 1356.76k 1364.72k 1327.12k des ede3 450.66k 465.74k 463.10k 466.68k 466.32k I suspect engine overhead is in 0.9.7, but then "at the last minute" openssl doesn't go through the hardware (which would explain the lack of ioctl to /dev/crypto when ktracing openssl). When I run cryptostats before and after, say, $ openvpn --test-crypto --secret /tmp/s I see no access to the hifn either, which could be an indication that the problem is in the common shared library libcrypto.so.3 => /usr/lib/libcrypto.so.3 (0x280df000) Adrian _______________________________________________ Adrian Steinmann Apollostrasse 21 8032 Zurich Tel +41 1 380 30 83 Mailto:ast@marabu.ch I originally wrote: > I'm running RELENG_4 cvsup-ed 2003/02/25UTC > > $ openssl version > OpenSSL 0.9.7a Feb 19 2003 > $ ldd /usr/bin/openssl: > libssl.so.3 => /usr/lib/libssl.so.3 (0x280b0000) > libcrypto.so.3 => /usr/lib/libcrypto.so.3 (0x280df000) > libc.so.4 => /usr/lib/libc.so.4 (0x281d6000) > > On my Soekris net4501 I have: > > device crypto > device cryptodev > device hifn > > configured in the kernel and running: > hifn0 mem 0xa0001000-0xa0001fff,0xa0000000-0xa0000fff irq 10 at device 16.0 on pci0 > hifn0: Hifn 7951, rev 0, 128KB sram, 193 sessions > > and /dev/crypto exists as well, openssl reports it as available: > > $ openssl engine -vvv -c -t > (cryptodev) BSD cryptodev engine > [RSA, DSA, DH, DES-CBC, DES-EDE3-CBC] > [ available ] > ... (the other are not available) > > When I run cryptotest -z (from /usr/src/tools/tools/crypto) > I get these speeds: > # sysctl -w debug.crypto_timing=1 > $ cryptotest -z|grep 8192 > 0.474 sec, 2 des crypts, 8192 bytes, 34600 byte/sec, 0.3 Mb/sec > 0.471 sec, 2 3des crypts, 8192 bytes, 34753 byte/sec, 0.3 Mb/sec > FWIW you can also use cryptotest -zp to turn on+off profiling over the time of the run. Also, w/ no additional argument you're doing only 1 run of each block size so your results are unrealistic (but still they look wrong too). > and cryptostats reports these: > $ cryptostats > 1171 symmetric crypto ops (0 errors, 0 times driver blocked) > 0 key ops (0 errors, 0 times driver blocked) > 0 crypto dispatch thread activations > 1171 crypto return thread activations > This last line indicates you're slightly out of date in that I made a recent MFC to eliminate the "thread activations" required for processing operations going through /dev/crypto. > dispatch->invoke: avg 7764 ns : min 0 ns : max 102959 ns [823 samps] > invoke->done: avg 224321569 ns : min 0 ns : max 226578803 ns [823 samps] > done->cb: avg 8647603 ns : min 0 ns : max 13619770 ns [823 samps] > cb->finis: avg 27031 ns : min 0 ns : max 120359 ns [823 samps] > These numbers are kinda wumpus because you manually turned profling on+off. cryptotest -p does the right thing to reinitialize the profiling counters so that min+max are correct. But your numbers, even with 823 samples, are still very slow: dispatch->invoke 7.8us invoke->done 224ms done->cb 8.6ms cb->finis 27us I'm not sure what size data blocks you're passing here (probably an assortment) but 224ms is basically the time spent in the driver (and h/w) doing the actual crypto operation. Everything else is essentially the overhead of using /dev/crypto. If you do a fixed size run then you can use this to calculate the effect performance of the 7951; e.g. cryptotest -p 1024 4096 will run only 4K data blocks through and then you can use the invoke->done time to calculate out the raw performance available (assuming nothing else of note is running on the machine). > However, when I do the same test with openssl the numbers look > identical with and without /dev/crypto: > > $ openssl speed -engine cryptodev des > engine "cryptodev" set. > ... > The 'numbers' are in 1000s of bytes per second processed. > type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes > des cbc 576.97k 612.60k 610.02k 617.09k 609.10k > des ede3 174.44k 181.80k 185.19k 183.17k 183.55k I'm not sure if cryptodev is the engine name (it was changed at one point). If you don't specify engine you should get the h/w device if it is available. > # rm -f /dev/crypto > $ openssl speed -engine cryptodev des > reports an invalid engine "cryptodev" and then continues with same numbers > > cryptostats doesn't report any addironal hifn processing, and when > > # sysctl -w debug.hifn=1 > > is set, no debugging is seen on console during openssl speed either. > > Furthermore, > > /usr/src/crypto/openssl/crypto/engine/enginetest.c > > reports no available engines: > > $ ./enginetest > > enginetest beginning > > listing available engine types > end of list > ... > Is this before or after you removed /dev/crypto? I'm not sure if the list will include the h/w crypto engine unless it can open /dev/crypto. > This all leads me to suspect that the -stable openssl 0.9.7a doesn't > have the complete cryptodev engine compiled in. Is openssl failing > to put cryptodev into the engine list when it does speed? I've also > tried encryption runs but they all don't seem to use the hifn for > encryption. > > (I've compared ktraces for both cryptotest and openssl, openssl > does three ioctl() on /dev/crypto during speed, whereas cryptotest > keeps on doing the ioctl() for the encryption). I'm using it w/o any issues and it seems to do the right thing. But I haven't tried things on a soekris box in a long time; not that it should matter. I didn't see results for just openssl w/o -engine cryptodev; did you try that? Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 15: 6:10 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 133DF37B401; Thu, 27 Feb 2003 15:06:09 -0800 (PST) Received: from dns.hitechcreations.com (dns.hitechcreations.com [216.91.192.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 395BE43FA3; Thu, 27 Feb 2003 15:06:08 -0800 (PST) (envelope-from htsupp@hitechcreations.com) Received: from Skuzzy (htcnt.hitechcreations.com [216.91.192.62]) by dns.hitechcreations.com (8.12.3/8.12.3) with SMTP id h1RN62x9015744; Thu, 27 Feb 2003 17:06:02 -0600 Message-ID: <004f01c2deb4$e97406d0$050000c0@Skuzzy> Reply-To: "HiTech Creations Support" From: "HiTech Creations Support" To: Cc: Subject: Buildworld problem Date: Thu, 27 Feb 2003 17:06:51 -0600 Organization: HiTech Creations 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.4920.2300 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4920.2300 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG We have been working with Martin concerning a problem we are having with MySQL. He had us install source from RELENG_4 and then patch the kernel. The patches to the kernel are fine and we can build the kernel, however we cannot do a "make buildworld" due to errors in openssh. Here are the particulars: We started with STABLE4.6 and I did a CVSup using the following supfile. *default host=cvsup10.FreeBSD.org *default base=/usr *default prefix=/usr *default release=cvs tag=RELENG_4 *default delete use-rel-suffix src-all src-crypto src-eBones src-secure I did a build and install of /usr/src/include and /usr/src/share/mk During the 'make buildworld' the following errors occurred: mkdep -f epend -a -I/usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:61: openssl/dsa.h: No such file or directory. /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:62: openssl/evp.h: No such file or directory In file included from /usr/src/lib/libpam/moduels/pam_ssh/pam_ssh.c:64: /usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh/key.h:29: openssl/rsa.h: No such file or directory /usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh/key.h:30: openssl/dsa.h: No such file or directory I am in a pretty desparate situation as we need to get this server back online as it is a production server. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 15:19: 3 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75FE237B401 for ; Thu, 27 Feb 2003 15:19:02 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id E55D843FBD for ; Thu, 27 Feb 2003 15:19:01 -0800 (PST) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id 74A812C; Thu, 27 Feb 2003 17:19:01 -0600 (CST) Received: by madman.celabo.org (Postfix, from userid 1001) id 639E478C3E; Thu, 27 Feb 2003 17:19:01 -0600 (CST) Date: Thu, 27 Feb 2003 17:19:01 -0600 From: "Jacques A. Vidrine" To: HiTech Creations Support Cc: freebsd-stable@freebsd.org Subject: Re: Buildworld problem Message-ID: <20030227231901.GD78035@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , HiTech Creations Support , freebsd-stable@freebsd.org References: <004f01c2deb4$e97406d0$050000c0@Skuzzy> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <004f01c2deb4$e97406d0$050000c0@Skuzzy> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.3i-ja.1 Sender: owner-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, Feb 27, 2003 at 05:06:51PM -0600, HiTech Creations Support wrote: > /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:61: openssl/dsa.h: No such > file or directory. Take NO_OPENSSL out of your /etc/make.conf ? Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 15:22:22 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 384DB37B401 for ; Thu, 27 Feb 2003 15:22:20 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9268D43FA3 for ; Thu, 27 Feb 2003 15:22:10 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1RNLnbJ046195 for ; Fri, 28 Feb 2003 01:21:49 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1RNLkHR046182 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 28 Feb 2003 01:21:49 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1RNLk1f046177; Fri, 28 Feb 2003 01:21:46 +0200 (EET) Date: Fri, 28 Feb 2003 01:21:46 +0200 From: Ruslan Ermilov To: HiTech Creations Support Cc: freebsd-stable@freebsd.org, nectar@freebsd.org Subject: Re: Buildworld problem Message-ID: <20030227232146.GB45208@sunbay.com> References: <004f01c2deb4$e97406d0$050000c0@Skuzzy> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="aM3YZ0Iwxop3KEKx" Content-Disposition: inline In-Reply-To: <004f01c2deb4$e97406d0$050000c0@Skuzzy> 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 --aM3YZ0Iwxop3KEKx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Do you by chance have the NOSECURE set in /etc/make.conf? On Thu, Feb 27, 2003 at 05:06:51PM -0600, HiTech Creations Support wrote: > We have been working with Martin concerning a problem we are having with > MySQL. He had us install source from RELENG_4 and then patch the kernel. >=20 > The patches to the kernel are fine and we can build the kernel, however we > cannot do a "make buildworld" due to errors in openssh. >=20 > Here are the particulars: > We started with STABLE4.6 and I did a CVSup using the following supfile. > *default host=3Dcvsup10.FreeBSD.org > *default base=3D/usr > *default prefix=3D/usr > *default release=3Dcvs tag=3DRELENG_4 > *default delete use-rel-suffix > src-all > src-crypto > src-eBones > src-secure >=20 > I did a build and install of /usr/src/include and /usr/src/share/mk >=20 > During the 'make buildworld' the following errors occurred: > mkdep -f > epend -a -I/usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/opens= sh > /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c > /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:61: openssl/dsa.h: No such > file or directory. > /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:62: openssl/evp.h: No such > file or directory > In file included from /usr/src/lib/libpam/moduels/pam_ssh/pam_ssh.c:64: > /usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh/key.h:29: > openssl/rsa.h: No such file or directory > /usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh/key.h:30: > openssl/dsa.h: No such file or directory >=20 > I am in a pretty desparate situation as we need to get this server back > online as it is a production server. >=20 >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message --=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 --aM3YZ0Iwxop3KEKx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+Xp2KUkv4P6juNwoRAudqAJoCSNfswshUDeVcU6jwc9Ty93MboACgi/Jj 6FZmgCWOzrcp1s924EObhMI= =Mmlp -----END PGP SIGNATURE----- --aM3YZ0Iwxop3KEKx-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 15:23:42 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54AD837B401 for ; Thu, 27 Feb 2003 15:23:40 -0800 (PST) Received: from mail.natsoft.com.au (natsoft.com.au [203.39.138.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2510F43FAF for ; Thu, 27 Feb 2003 15:23:38 -0800 (PST) (envelope-from craig@natsoft.com.au) Received: from craig (craig.natsoft.com.au [203.39.138.118]) by mail.natsoft.com.au (8.12.3/8.12.3) with SMTP id h1RNOmqv038845; Fri, 28 Feb 2003 10:24:49 +1100 (EST) (envelope-from craig@natsoft.com.au) Message-ID: <00a401c2deb8$23cd48c0$768a27cb@natsoft.com.au> From: "Craig Wilson" To: "Bjarne Wichmann Petersen" , "regis rampnoux" , References: <200302271914.00077.freebsd.nospam@mekanix.dk> Subject: Re: USB floppy drive Date: Fri, 28 Feb 2003 10:29:56 +1100 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.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-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 got a Sony USB Floppy working by editing the file: /usr/src/sys/cam/scsi/scsi_da.c and placing a quirk entry for the device. Search for 'USB floppy' and then place similar lines in the file that describes your floppy, rebuild the kernel and all should be ok. The quirk entries disable the 6 byte commands, and Synchronize cache. Regards Craig Wilson ----- Original Message ----- From: "Bjarne Wichmann Petersen" To: "regis rampnoux" ; Sent: Friday, February 28, 2003 5:14 AM Subject: Re: USB floppy drive > On Sunday 09 February 2003 11:50, regis rampnoux wrote: > > > I want to use my TEAC USB Floppy with FreeBSD 4.7-STABLE (CVS 31 jan > > 2003) but I can't. > > Who knowns that is wrong? > > > > da1 at umass-sim0 bus 0 target 1 lun 0 > > da1: Removable Direct Access SCSI-0 device > > da1: 20KB/s transfers > > I tried the mtools and mount_msdos to deal with it but I obtain only > > the error: > > Can't open /dev/da1: Input/output error > > > > (I tried the others /dev/da1* devices too with the same result). > > > > umass1: Unsupported UFI command 0x08, 6 byte command should have been > > converted > > da1: reading primary partition table: error reading fsbn 0 > > umass1: Unsupported UFI command 0x35 > > (da1:umass-sim0:0:1:0): Synchronize cache failed, status == 0x6, scsi > > status == 0x0 > > Did you ever get a solution to your problem? I have had this problem for more > than a year (also with a TEAC USB-floppy). Back in april last year when I > asked this question I someone pointed me to a patch that by now ought have > been commited to -STABLE, but I'm still having problems. > > Anyway, try to read > > and install the patch. It worked for me in april. > > Bjarne > -- > Homepage: http://www.mekanix.dk > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 15:35:30 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9986E37B401 for ; Thu, 27 Feb 2003 15:35:28 -0800 (PST) Received: from smtp0.adl1.internode.on.net (smtp0.adl1.internode.on.net [203.16.214.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C45043FBF for ; Thu, 27 Feb 2003 15:35:27 -0800 (PST) (envelope-from Malcolm.Kay@internode.on.net) Received: from beta.home (ppp1909.sa.padsl.internode.on.net [150.101.26.116]) by smtp0.adl1.internode.on.net (8.12.4/8.12.4) with ESMTP id h1RNZNPG025862; Fri, 28 Feb 2003 10:05:24 +1030 (CST) Content-Type: text/plain; charset="iso-8859-1" From: Malcolm Kay Organization: At home To: "Aaron Burke" , , "User Tysken" Subject: Re: XDM on multiple virutal X screens ( ALT-F9,ALT-F10...) Date: Fri, 28 Feb 2003 10:09:24 +1030 User-Agent: KMail/1.4.3 References: In-Reply-To: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200302281009.24579.Malcolm.Kay@internode.on.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 Thursday 27 February 2003 00:33, Aaron Burke wrote: > > -----Original Message----- > > From: owner-freebsd-stable@FreeBSD.ORG =2E.. > > I want to be able to have multitiple xdm loginscreens on the same > > workstation using only one monitor and so on. > > > > I wounder if this is the right file to edit in: > > > > /usr/X11R6/lib/X11/xdm/Xservers > > This is the only file that you have to modify, however you need > to make two seperate mods. > > The default file just says > > :0 local /usr/X11R6/bin/X > > Just change it to say the following. > > :0 local /usr/X11R6/bin/X :0 > :1 local /usr/X11R6/bin/X :1 =2E.. Noticed this, out of curiosity decided to try it. OK. Then forgot second X display was installed and next time the machine was started did not enter ALT-F10. Then on:=20 $ shutdown -h now the machine hung with some complaint from fetchmail which I have running as a daemon. Only response was from the=20 power switch. On rebooting and waiting for fsck the sam sequence of events recurred. Disabled second X display and problem disappeared. Coincidence? Seems unlikely! Had nothing to do with fetchmail? Possible. The system is: FreeBSD beta.home 4.7-STABLE FreeBSD 4.7-STABLE #0: Sun Feb 23 xdm is activated via /etc/ttys Malcolm Kay To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 15:37:41 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24FCE37B405 for ; Thu, 27 Feb 2003 15:37:39 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30F9543F3F for ; Thu, 27 Feb 2003 15:37:35 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1RNbV5j048248 for ; Fri, 28 Feb 2003 01:37:31 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1RNbSHR048235 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 28 Feb 2003 01:37:31 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1RNbSRi048230; Fri, 28 Feb 2003 01:37:28 +0200 (EET) Date: Fri, 28 Feb 2003 01:37:28 +0200 From: Ruslan Ermilov To: "Jacques A. Vidrine" Cc: HiTech Creations Support , freebsd-stable@freebsd.org Subject: Re: Buildworld problem Message-ID: <20030227233728.GA47221@sunbay.com> References: <004f01c2deb4$e97406d0$050000c0@Skuzzy> <20030227231901.GD78035@madman.celabo.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="n8g4imXOkfNTN/H1" Content-Disposition: inline In-Reply-To: <20030227231901.GD78035@madman.celabo.org> 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 --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Feb 27, 2003 at 05:19:01PM -0600, Jacques A. Vidrine wrote: > On Thu, Feb 27, 2003 at 05:06:51PM -0600, HiTech Creations Support wrote: > > /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:61: openssl/dsa.h: No such > > file or directory. >=20 > Take NO_OPENSSL out of your /etc/make.conf ? >=20 No, NO_OPENSSL would exclude pam_ssh from the src/lib/libpam/modules SUBDIR list. Most likely the reason is NOSECURE (-CURRENT is unaffected by this bug, as its src/lib/libpam/module/modules.inc properly checks for !defined(NOSECURE)). Some nearby bugs. Both pam_kerberosIV and pam_krb5 depend on libcrypto which isn't built in the NOSECURE case, so the modules.inc in -CURRENT (and Makefile in -STABLE) should check for !defined(NOSECURE) too. 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 --n8g4imXOkfNTN/H1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+XqE4Ukv4P6juNwoRAtjsAJ9OPlgp0ssFoHECrPBZ+TpopehciACdEjZE LfoXsx3PPfkxhx64nZV8Oys= =uZyw -----END PGP SIGNATURE----- --n8g4imXOkfNTN/H1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 16: 7:24 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFEDF37B401 for ; Thu, 27 Feb 2003 16:07:21 -0800 (PST) Received: from util.inch.com (ns.inch.com [216.223.192.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44B2743F75 for ; Thu, 27 Feb 2003 16:07:18 -0800 (PST) (envelope-from spork@inch.com) Received: from shell.inch.com (inch.com [216.223.192.20]) by util.inch.com (8.12.6/8.12.6/UTIL-INCH-3.0.10) with ESMTP id h1S07Ffw014557; Thu, 27 Feb 2003 19:07:15 -0500 (EST) (envelope-from spork@inch.com) Received: from shell.inch.com (localhost [127.0.0.1]) by shell.inch.com (8.12.6/8.12.6) with ESMTP id h1S07FOh070403; Thu, 27 Feb 2003 19:07:15 -0500 (EST) (envelope-from spork@inch.com) Received: from localhost (spork@localhost) by shell.inch.com (8.12.6/8.12.6/Submit) with ESMTP id h1S06w5a070394; Thu, 27 Feb 2003 19:06:59 -0500 (EST) X-Authentication-Warning: shell.inch.com: spork owned process doing -bs Date: Thu, 27 Feb 2003 19:06:58 -0500 (EST) From: Charles Sprickman To: Craig Wilson Cc: Bjarne Wichmann Petersen , regis rampnoux , "" Subject: Re: USB floppy drive In-Reply-To: <00a401c2deb8$23cd48c0$768a27cb@natsoft.com.au> Message-ID: <20030227190610.X98344@shell.inch.com> References: <200302271914.00077.freebsd.nospam@mekanix.dk> <00a401c2deb8$23cd48c0$768a27cb@natsoft.com.au> 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 Fri, 28 Feb 2003, Craig Wilson wrote: > I got a Sony USB Floppy working by editing the file: > /usr/src/sys/cam/scsi/scsi_da.c > and placing a quirk entry for the device. How about using "send-pr" to file a bug report/solution so that the responsible party can integrate this? C > Search for 'USB floppy' and then place similar lines in the file that > describes your floppy, rebuild the kernel and all should be ok. The > quirk entries disable the 6 byte commands, and Synchronize cache. > > Regards Craig Wilson > > > ----- Original Message ----- > From: "Bjarne Wichmann Petersen" > To: "regis rampnoux" ; > Sent: Friday, February 28, 2003 5:14 AM > Subject: Re: USB floppy drive > > > > On Sunday 09 February 2003 11:50, regis rampnoux wrote: > > > > > I want to use my TEAC USB Floppy with FreeBSD 4.7-STABLE (CVS 31 jan > > > 2003) but I can't. > > > Who knowns that is wrong? > > > > > > da1 at umass-sim0 bus 0 target 1 lun 0 > > > da1: Removable Direct Access SCSI-0 device > > > da1: 20KB/s transfers > > > I tried the mtools and mount_msdos to deal with it but I obtain only > > > the error: > > > Can't open /dev/da1: Input/output error > > > > > > (I tried the others /dev/da1* devices too with the same result). > > > > > > umass1: Unsupported UFI command 0x08, 6 byte command should have been > > > converted > > > da1: reading primary partition table: error reading fsbn 0 > > > umass1: Unsupported UFI command 0x35 > > > (da1:umass-sim0:0:1:0): Synchronize cache failed, status == 0x6, scsi > > > status == 0x0 > > > > Did you ever get a solution to your problem? I have had this problem for > more > > than a year (also with a TEAC USB-floppy). Back in april last year when I > > asked this question I someone pointed me to a patch that by now ought have > > been commited to -STABLE, but I'm still having problems. > > > > Anyway, try to read > > > obile/20020414.freebsd-mobile> > > and install the patch. It worked for me in april. > > > > Bjarne > > -- > > Homepage: http://www.mekanix.dk > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 16:19:41 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E02D37B405 for ; Thu, 27 Feb 2003 16:19:38 -0800 (PST) Received: from mail.natsoft.com.au (natsoft.com.au [203.39.138.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1086643FA3 for ; Thu, 27 Feb 2003 16:19:36 -0800 (PST) (envelope-from craig@natsoft.com.au) Received: from craig (craig.natsoft.com.au [203.39.138.118]) by mail.natsoft.com.au (8.12.3/8.12.3) with SMTP id h1S0Kmqv041204; Fri, 28 Feb 2003 11:20:48 +1100 (EST) (envelope-from craig@natsoft.com.au) Message-ID: <00e201c2debf$f5d6a580$768a27cb@natsoft.com.au> From: "Craig Wilson" To: "Charles Sprickman" Cc: "Bjarne Wichmann Petersen" , "regis rampnoux" , References: <200302271914.00077.freebsd.nospam@mekanix.dk> <00a401c2deb8$23cd48c0$768a27cb@natsoft.com.au> <20030227190610.X98344@shell.inch.com> Subject: Re: USB floppy drive Date: Fri, 28 Feb 2003 11:25:56 +1100 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.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Not sure how this can be done as you need an entry for each floppy drive manufacturer/model. ----- Original Message ----- From: "Charles Sprickman" To: "Craig Wilson" Cc: "Bjarne Wichmann Petersen" ; "regis rampnoux" ; Sent: Friday, February 28, 2003 11:06 AM Subject: Re: USB floppy drive > On Fri, 28 Feb 2003, Craig Wilson wrote: > > > I got a Sony USB Floppy working by editing the file: > > /usr/src/sys/cam/scsi/scsi_da.c > > and placing a quirk entry for the device. > > How about using "send-pr" to file a bug report/solution so that the > responsible party can integrate this? > > C > > > Search for 'USB floppy' and then place similar lines in the file that > > describes your floppy, rebuild the kernel and all should be ok. The > > quirk entries disable the 6 byte commands, and Synchronize cache. > > > > Regards Craig Wilson > > > > > > ----- Original Message ----- > > From: "Bjarne Wichmann Petersen" > > To: "regis rampnoux" ; > > Sent: Friday, February 28, 2003 5:14 AM > > Subject: Re: USB floppy drive > > > > > > > On Sunday 09 February 2003 11:50, regis rampnoux wrote: > > > > > > > I want to use my TEAC USB Floppy with FreeBSD 4.7-STABLE (CVS 31 jan > > > > 2003) but I can't. > > > > Who knowns that is wrong? > > > > > > > > da1 at umass-sim0 bus 0 target 1 lun 0 > > > > da1: Removable Direct Access SCSI-0 device > > > > da1: 20KB/s transfers > > > > I tried the mtools and mount_msdos to deal with it but I obtain only > > > > the error: > > > > Can't open /dev/da1: Input/output error > > > > > > > > (I tried the others /dev/da1* devices too with the same result). > > > > > > > > umass1: Unsupported UFI command 0x08, 6 byte command should have been > > > > converted > > > > da1: reading primary partition table: error reading fsbn 0 > > > > umass1: Unsupported UFI command 0x35 > > > > (da1:umass-sim0:0:1:0): Synchronize cache failed, status == 0x6, scsi > > > > status == 0x0 > > > > > > Did you ever get a solution to your problem? I have had this problem for > > more > > > than a year (also with a TEAC USB-floppy). Back in april last year when I > > > asked this question I someone pointed me to a patch that by now ought have > > > been commited to -STABLE, but I'm still having problems. > > > > > > Anyway, try to read > > > > > > obile/20020414.freebsd-mobile> > > > and install the patch. It worked for me in april. > > > > > > Bjarne > > > -- > > > Homepage: http://www.mekanix.dk > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-stable" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 16:44:26 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3832B37B401 for ; Thu, 27 Feb 2003 16:44:25 -0800 (PST) Received: from midway.uchicago.edu (midway.uchicago.edu [128.135.12.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A9DB43F85 for ; Thu, 27 Feb 2003 16:44:24 -0800 (PST) (envelope-from dsyphers@uchicago.edu) Received: from adsl-68-20-32-143.dsl.chcgil.ameritech.net (adsl-68-20-32-143.dsl.chcgil.ameritech.net [68.20.32.143]) by midway.uchicago.edu (8.12.5/8.12.5) with ESMTP id h1S0iNrp003093; Thu, 27 Feb 2003 18:44:23 -0600 (CST) From: David Syphers To: Joe Marcus Clarke Subject: Re: Really fixed it this time? was Re: Mozilla window won't open after upgrade - FIXED Date: Thu, 27 Feb 2003 18:44:23 -0600 User-Agent: KMail/1.5 Cc: freebsd-stable@FreeBSD.ORG References: <39332.1046321265@selfstyled.dyndns.org> <3E5E8AA9.8050308@labs.mot.com> <1046384576.315.16.camel@gyros> In-Reply-To: <1046384576.315.16.camel@gyros> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200302271844.13553.dsyphers@uchicago.edu> Content-Type: text/plain; charset="iso-8859-1" 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 Thursday 27 February 2003 04:22 pm, Joe Marcus Clarke wrote: > XftConfig is no longer used by anything in FreeBSD. This has been > replaced with /usr/X11R6/etc/fonts/fonts.conf and ~/.fonts.conf. When did this happen? My system certainly uses it... A couple weeks ago I had my fonts "disappear" because my XftConfig went AWOL. This is on -current, upgraded from a clean 5.0-R install. -David -- http://www.seektruth.org 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 Thu Feb 27 18: 1:29 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F020237B401 for ; Thu, 27 Feb 2003 18:01:27 -0800 (PST) Received: from mail.selfstyled.dyndns.org (245.97.174.204.adsl.island.net [204.174.97.245]) by mx1.FreeBSD.org (Postfix) with SMTP id D30AA43FDD for ; Thu, 27 Feb 2003 18:01:26 -0800 (PST) (envelope-from gord@selfstyled.dyndns.org) Received: (qmail 4071 invoked from network); 28 Feb 2003 02:01:26 -0000 Received: from localhost (HELO selfstyled.dyndns.org) (127.0.0.1) by localhost with SMTP; 28 Feb 2003 02:01:26 -0000 X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Kenneth W Cochran Cc: Richard Nyberg , marcus@marcuscom.com, freebsd-stable@freebsd.org Subject: Re: Mozilla window won't open after upgrade - FIXED In-Reply-To: Message from Kenneth W Cochran of "Thu, 27 Feb 2003 16:40:15 EST." <200302272140.QAA2545736@shell.TheWorld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 27 Feb 2003 18:01:26 -0800 Message-ID: <4069.1046397686@selfstyled.dyndns.org> From: Gord Broom Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > >Run "fc-cache -f -v". That helped me. > > > > -Richard > > Just what does that do? There appears to be no manpage > or other documentation for fc-cache. > Under what circumstances might I want to run it? > Apparantly this did not run during installation of Xft and/or fontconfig. > Should it? > I'm about to start playing with fc-cache as well, to see if I can diagnose what's wrong with my system (I reinstalled Moz -DWITHOUT_XFT, and can surf again, but there's obviously something else afoot). I too was annoyed at the lack of manpage. But I found it. If you run "make extract patch" in /usr/ports/x11-fonts/fontconfig, then look in work/fcpackage.2_1/fontconfig/fc-cache, you'll see a "fc-cache.man" that isn't installed by the port. Grrr arrgh! Hopefully this manpage was just overlooked. What possible logic would there be for not installing it? Saving 2040 bytes of storage ?!? I hope not. Gord. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 18: 5:40 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F62737B401; Thu, 27 Feb 2003 18:05:39 -0800 (PST) Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA90243F85; Thu, 27 Feb 2003 18:05:38 -0800 (PST) (envelope-from DougB@freebsd.org) Received: from master.gorean.org (12-234-22-23.client.attbi.com[12.234.22.23]) by rwcrmhc53.attbi.com (rwcrmhc53) with SMTP id <20030228020537053001tk10e>; Fri, 28 Feb 2003 02:05:37 +0000 Date: Thu, 27 Feb 2003 18:05:36 -0800 (PST) From: Doug Barton To: Gord Broom Cc: Kenneth W Cochran , Richard Nyberg , marcus@marcuscom.com, anholt@freebsd.org, freebsd-stable@freebsd.org Subject: Re: Mozilla window won't open after upgrade - FIXED In-Reply-To: <4069.1046397686@selfstyled.dyndns.org> Message-ID: <20030227180446.M8428@znfgre.tberna.bet> References: <4069.1046397686@selfstyled.dyndns.org> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! 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, 27 Feb 2003, Gord Broom wrote: > I'm about to start playing with fc-cache as well, to see if I can > diagnose what's wrong with my system (I reinstalled Moz -DWITHOUT_XFT, > and can surf again, but there's obviously something else afoot). I too > was annoyed at the lack of manpage. But I found it. If you run "make > extract patch" in /usr/ports/x11-fonts/fontconfig, then look in > work/fcpackage.2_1/fontconfig/fc-cache, you'll see a "fc-cache.man" that > isn't installed by the port. Grrr arrgh! > > Hopefully this manpage was just overlooked. The polite thing to do is to let the port maintainer know. I've cc'ed him. Doug -- This .signature sanitized for your protection To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 18:23:25 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A135637B401 for ; Thu, 27 Feb 2003 18:23:23 -0800 (PST) Received: from snoop.burghcom.com (snoop.burghcom.com [209.166.167.200]) by mx1.FreeBSD.org (Postfix) with SMTP id B3C0543FA3 for ; Thu, 27 Feb 2003 18:23:22 -0800 (PST) (envelope-from jl@burghcom.com) Received: (qmail 1341 invoked by uid 1010); 28 Feb 2003 02:23:21 -0000 Message-ID: <20030228022321.1340.qmail@snoop.burghcom.com> From: "Jeff Love" To: freebsd-stable@freebsd.org Subject: Re: failure notice Date: Thu, 27 Feb 2003 21:23:21 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1" 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 MAILER-DAEMON@snoop.burghcom.com writes: > Hi. This is the qmail-send program at snoop.burghcom.com. > I'm afraid I wasn't able to deliver your message to the following addresses. > This is a permanent error; I've given up. Sorry it didn't work out. > > : > 216.136.204.125 does not like recipient. > Remote host said: 554 Service unavailable; [209.166.166.21] blocked using relays.osirusoft.com, reason: [1] infowks, see http://spews.org/ask.cgi?S945 > Giving up on 216.136.204.125. > > --- Below this line is a copy of the message. > > Return-Path: > Received: (qmail 54883 invoked by uid 1010); 28 Feb 2003 01:05:00 -0000 > Message-ID: <20030228010500.54882.qmail@snoop.burghcom.com> > From: "Jeff Love" > To: freebsd-stable@freebsd.org > Subject: test > Date: Thu, 27 Feb 2003 20:05:00 -0500 > Mime-Version: 1.0 > Content-Type: text/plain; format=flowed; charset="iso-8859-1" > Content-Transfer-Encoding: 7bit > > This is a test to see if your !@#$%^& mail blacklist still is still > wrongfully blocking email from my mail server. > > < > < Jeff Love > < Burgh-Com Gaming // www.burghcom.com > < MIG #1646 > < < < Jeff Love < Burgh-Com Gaming // www.burghcom.com < MIG #1646 < To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 18:55:37 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60FBE37B401 for ; Thu, 27 Feb 2003 18:55:36 -0800 (PST) Received: from pobox.windwireless.net (mail.ipeg.com [207.170.202.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB58943FBF for ; Thu, 27 Feb 2003 18:55:34 -0800 (PST) (envelope-from crsntlvs@ipeg.com) Received: from ipeg.com (206-169-237-123.windwireless.net [206.169.237.123]) by pobox.windwireless.net (8.12.5/8.12.5) with ESMTP id h1S2tWgd004414 for ; Thu, 27 Feb 2003 18:55:33 -0800 Message-ID: <3E5ECF8C.1000902@ipeg.com> Date: Thu, 27 Feb 2003 18:55:08 -0800 From: Corey Holcomb-Hockin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.1) Gecko/20021019 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Is XFree86 4.3.0 going to be in 4.8? -nt- X-Enigmail-Version: 0.65.2.0 X-Enigmail-Supports: pgp-inline, pgp-mime 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 18:59: 9 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBEB637B401 for ; Thu, 27 Feb 2003 18:59:07 -0800 (PST) Received: from figg.securenet.com.au (ns2.isecure.com.au [202.125.4.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FE9F43F85 for ; Thu, 27 Feb 2003 18:59:03 -0800 (PST) (envelope-from carl@xena.IPAustralia.gov.au) Received: from iron.securenet.com.au (iron.isecure.com.au [202.125.4.94] (may be forged)) by figg.securenet.com.au (8.12.3/8.12.3/Debian -4) with ESMTP id h1S1ohOs026005; Fri, 28 Feb 2003 12:50:43 +1100 Received: (from uucp@localhost) by iron.securenet.com.au (8.12.6/8.12.6) id h1S2x0ZL028042; Fri, 28 Feb 2003 13:59:00 +1100 (EST) X-Authentication-Warning: iron.securenet.com.au: uucp set sender to using -f Received: from nodnsquery(10.11.3.10) by iron.securenet.com.au via csmap (V6.0) id srcAAAxzaiX2; Fri, 28 Feb 03 13:59:00 +1100 Received: from vmail.aipo.gov.au (localhost [127.0.0.1]) by gibbons.securenet.com.au (8.12.3/8.12.3/Debian -4) with ESMTP id h1S2x0t9014596; Fri, 28 Feb 2003 13:59:00 +1100 Received: from xena.aipo.gov.au (xena.aipo.gov.au [10.0.100.52]) by vmail.aipo.gov.au (8.11.6/8.11.6) with ESMTP id h1S2wxv53456; Fri, 28 Feb 2003 13:58:59 +1100 (EST) (envelope-from carl@xena.IPAustralia.gov.au) Received: from newton.aipo.gov.au (newton.aipo.gov.au [10.0.100.18]) by xena.aipo.gov.au (8.11.1/8.11.2) with ESMTP id h1S2wxW84431; Fri, 28 Feb 2003 13:58:59 +1100 (EST) (envelope-from carl@xena.ipaustralia.gov.au) Received: from newton.aipo.gov.au (localhost [127.0.0.1]) by newton.aipo.gov.au (8.12.6/8.12.6) with ESMTP id h1S2wwnX004166; Fri, 28 Feb 2003 13:58:58 +1100 (EST) (envelope-from carl@xena.ipaustralia.gov.au) Received: (from carl@localhost) by newton.aipo.gov.au (8.12.6/8.12.6/Submit) id h1S2wvmj004165; Fri, 28 Feb 2003 13:58:57 +1100 (EST) X-Authentication-Warning: newton.aipo.gov.au: carl set sender to carl@xena.ipaustralia.gov.au using -f Subject: Re: Mozilla window won't open after upgrade - FIXED From: Carl Makin To: Gord Broom Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: <4069.1046397686@selfstyled.dyndns.org> References: <4069.1046397686@selfstyled.dyndns.org> Content-Type: text/plain Content-Transfer-Encoding: 7bit Organization: Message-Id: <1046401136.89601.12.camel@newton.aipo.gov.au> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 28 Feb 2003 13:58:57 +1100 Sender: owner-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, 2003-02-28 at 13:01, Gord Broom wrote: > I'm about to start playing with fc-cache as well, to see if I can > diagnose what's wrong with my system (I reinstalled Moz -DWITHOUT_XFT, > and can surf again, but there's obviously something else afoot). I I had a problem that sounded almost exactly the same as this. Phoenix and Mozilla as of 0.5 and 1.2 would only run if compiled without Xft. When Mozilla crashed it died in Xftlockface(). I found in my case some leftover freetype2 files in the /usr/X11R6 directorys (specifically check and delete if present /usr/X11R6/include/freetype2). Freetype2 now installs into /usr/local, but must have installed into /usr/X11R6 at some time in the past. I deleted those files, rebuilt Freetype2, Xft2 and Mozilla and now it works well. Carl. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 20: 0:43 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DF8237B401; Thu, 27 Feb 2003 20:00:42 -0800 (PST) Received: from smtp-relay.omnis.com (smtp-relay.omnis.com [216.239.128.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4373E43F75; Thu, 27 Feb 2003 20:00:41 -0800 (PST) (envelope-from wes@softweyr.com) Received: from 204.68.178.4 (66-75-151-22.san.rr.com [66.75.151.22]) by smtp-relay.omnis.com (Postfix) with ESMTP id 7916242D8C; Thu, 27 Feb 2003 20:00:39 -0800 (PST) From: Wes Peters Organization: Softweyr LLC To: Colin Percival , "Jamin A. Brown" , freebsd-stable@FreeBSD.ORG Subject: Re: RELENG_4_5 no longer updated? Date: Thu, 27 Feb 2003 20:09:33 -0800 User-Agent: KMail/1.5 References: <5.0.2.1.1.20030226171421.01c3a980@popserver.sfu.ca> In-Reply-To: <5.0.2.1.1.20030226171421.01c3a980@popserver.sfu.ca> Cc: so@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200302272009.33666.wes@softweyr.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 Wednesday 26 February 2003 09:21 am, Colin Percival wrote: > At 12:09 26/02/2003 -0500, Jamin A. Brown wrote: > >Not sure if this is the best forum to ask, but... > > > >Anyone know why RELENG_4_5 wasn't updated with the latest patches, > > From http://www.freebsd.org/security/ : "Each branch is supported > by the Security Officer for a limited time only, typically through 12 > months after the release." > In particular, RELENG_4_6 will (almost certainly) be supported > until the end of May 2003, and RELENG_4_7 will (almost certainly) be > supported until the end of September 2003. > > >and if > >there is some for of official announcement that goes out before a > > branch is no longer updated? > > I'm not aware of any; but I'd agree that it would be a Good Idea > if a security notice was sent out at the appropriate time. > > Colin Percival OK, so which one of you guys is going to step up to write them and send them? Don't all beat the door down at once. Please submit your proposals (and small bribes in the forms of bits of computer hardware ;^) to so@freebsd.org. -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 20:45:19 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05E9037B401 for ; Thu, 27 Feb 2003 20:45:18 -0800 (PST) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id B514143F85 for ; Thu, 27 Feb 2003 20:45:14 -0800 (PST) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.12.7/8.12.7) with ESMTP id h1S4iPZX037528; Thu, 27 Feb 2003 23:44:25 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: Really fixed it this time? was Re: Mozilla window won't open after upgrade - FIXED From: Joe Marcus Clarke To: David Syphers Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: <200302271844.13553.dsyphers@uchicago.edu> References: <39332.1046321265@selfstyled.dyndns.org> <3E5E8AA9.8050308@labs.mot.com> <1046384576.315.16.camel@gyros> <200302271844.13553.dsyphers@uchicago.edu> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-hcnMTlJ6N11ZfNzwdUuD" Organization: MarcusCom, Inc. Message-Id: <1046407504.44133.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 27 Feb 2003 23:45:04 -0500 X-Spam-Status: No, hits=-33.0 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,QUOTE_TWICE_1,REFERENCES, REPLY_WITH_QUOTES autolearn=ham version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-hcnMTlJ6N11ZfNzwdUuD Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-02-27 at 19:44, David Syphers wrote: > On Thursday 27 February 2003 04:22 pm, Joe Marcus Clarke wrote: > > XftConfig is no longer used by anything in FreeBSD. This has been > > replaced with /usr/X11R6/etc/fonts/fonts.conf and ~/.fonts.conf. >=20 > When did this happen? My system certainly uses it... A couple weeks ago I= had=20 > my fonts "disappear" because my XftConfig went AWOL. This is on -current,= =20 > upgraded from a clean 5.0-R install. This happened when Xft was removed from XFree86-libraries, and Xft2 became the default Xft installation. I don't remember the exact date, but it was in the past two weeks. Joe >=20 > -David --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-hcnMTlJ6N11ZfNzwdUuD Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+XulQb2iPiv4Uz4cRAv1VAJ9oK6JsI1MNQUseDjRqHQvlcK3B5wCfUiBS Koy7CT6CjB18hwGGHjvT4uk= =lIZU -----END PGP SIGNATURE----- --=-hcnMTlJ6N11ZfNzwdUuD-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 20:46:33 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E11A37B401; Thu, 27 Feb 2003 20:46:31 -0800 (PST) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43B4D43FB1; Thu, 27 Feb 2003 20:46:30 -0800 (PST) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.12.7/8.12.7) with ESMTP id h1S4jiZX037548; Thu, 27 Feb 2003 23:45:44 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: Mozilla window won't open after upgrade - FIXED From: Joe Marcus Clarke To: Doug Barton Cc: Gord Broom , Kenneth W Cochran , Richard Nyberg , anholt@freebsd.org, freebsd-stable@freebsd.org In-Reply-To: <20030227180446.M8428@znfgre.tberna.bet> References: <4069.1046397686@selfstyled.dyndns.org> <20030227180446.M8428@znfgre.tberna.bet> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-5ZGoPQT9f8PHFPJqusZo" Organization: MarcusCom, Inc. Message-Id: <1046407583.44133.4.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 27 Feb 2003 23:46:24 -0500 X-Spam-Status: No, hits=-33.0 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,QUOTE_TWICE_1,REFERENCES, REPLY_WITH_QUOTES autolearn=ham version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-5ZGoPQT9f8PHFPJqusZo Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-02-27 at 21:05, Doug Barton wrote: > On Thu, 27 Feb 2003, Gord Broom wrote: >=20 > > I'm about to start playing with fc-cache as well, to see if I can > > diagnose what's wrong with my system (I reinstalled Moz -DWITHOUT_XFT, > > and can surf again, but there's obviously something else afoot). I too > > was annoyed at the lack of manpage. But I found it. If you run "make > > extract patch" in /usr/ports/x11-fonts/fontconfig, then look in > > work/fcpackage.2_1/fontconfig/fc-cache, you'll see a "fc-cache.man" tha= t > > isn't installed by the port. Grrr arrgh! > > > > Hopefully this manpage was just overlooked. >=20 > The polite thing to do is to let the port maintainer know. I've cc'ed him= . The problem is the manpage is not installed as part of the port's default install target. This is a deficiency in the underlying application itself, but can easily be rectified in port-install. Joe >=20 > Doug --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-5ZGoPQT9f8PHFPJqusZo Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+Xumfb2iPiv4Uz4cRAmjKAJ9Sk9OvGl2V64jzdA3e5SG2kIVCiwCdGLph oFitWTn/O1aMKjM5UeTdDTY= =k5Df -----END PGP SIGNATURE----- --=-5ZGoPQT9f8PHFPJqusZo-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 21: 3: 3 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22D9037B401 for ; Thu, 27 Feb 2003 21:03:02 -0800 (PST) Received: from mail.selfstyled.dyndns.org (245.97.174.204.adsl.island.net [204.174.97.245]) by mx1.FreeBSD.org (Postfix) with SMTP id D364E43FCB for ; Thu, 27 Feb 2003 21:03:00 -0800 (PST) (envelope-from gjbroom@alumni.uwaterloo.ca) Received: (qmail 29014 invoked from network); 28 Feb 2003 05:03:00 -0000 Received: from localhost (HELO selfstyled.dyndns.org) (127.0.0.1) by localhost with SMTP; 28 Feb 2003 05:03:00 -0000 X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 From: Gordon Broom To: Carl Makin Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Mozilla window won't open after upgrade - FIXED In-Reply-To: Your message of "28 Feb 2003 13:58:57 +1100." <1046401136.89601.12.camel@newton.aipo.gov.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 27 Feb 2003 21:03:00 -0800 Message-ID: <29012.1046408580@selfstyled.dyndns.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 > On Fri, 2003-02-28 at 13:01, Gord Broom wrote: > > > I'm about to start playing with fc-cache as well, to see if I can > > diagnose what's wrong with my system (I reinstalled Moz -DWITHOUT_XFT, > > and can surf again, but there's obviously something else afoot). I > > I had a problem that sounded almost exactly the same as this. Phoenix > and Mozilla as of 0.5 and 1.2 would only run if compiled without Xft. > > When Mozilla crashed it died in Xftlockface(). > > I found in my case some leftover freetype2 files in the /usr/X11R6 > directorys (specifically check and delete if present > /usr/X11R6/include/freetype2). Freetype2 now installs into /usr/local, > but must have installed into /usr/X11R6 at some time in the past. I found only (empty) directories under /usr/X11R6/include/freetype2, and deleted them. I wonder if any of the autoconf macros check for the existence of a directory instead of a file. Hmm.... > > I deleted those files, rebuilt Freetype2, Xft2 and Mozilla and now it > works well. I rebuilt freetype2 before I deleted these directories, I will now rebuild Xft (I don't have an Xft2 package) and mozilla. If mozilla continues to crash, I will add the "user_pref("fonts.xft.enabled",false)" line to my prefs.js file as Tom Lislegaard suggested in <20030227114532.V385-100000@tom .internal.proact.no>. Hopefully I'm getting closer. It still feels like voodoo debugging though :-) > > > Carl. > Gord. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 22: 2:40 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF1F837B401; Thu, 27 Feb 2003 22:02:38 -0800 (PST) Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4769B43F3F; Thu, 27 Feb 2003 22:02:38 -0800 (PST) (envelope-from DougB@freebsd.org) Received: from master.gorean.org (12-234-22-23.client.attbi.com[12.234.22.23]) by rwcrmhc51.attbi.com (rwcrmhc51) with SMTP id <2003022806023705100ip89me>; Fri, 28 Feb 2003 06:02:37 +0000 Date: Thu, 27 Feb 2003 22:02:36 -0800 (PST) From: Doug Barton To: Joe Marcus Clarke Cc: Gord Broom , Kenneth W Cochran , Richard Nyberg , anholt@freebsd.org, freebsd-stable@freebsd.org Subject: Re: Mozilla window won't open after upgrade - FIXED In-Reply-To: <1046407583.44133.4.camel@shumai.marcuscom.com> Message-ID: <20030227220127.K811@znfgre.tberna.bet> References: <4069.1046397686@selfstyled.dyndns.org> <20030227180446.M8428@znfgre.tberna.bet> <1046407583.44133.4.camel@shumai.marcuscom.com> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! 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, 27 Feb 2003, Joe Marcus Clarke wrote: > On Thu, 2003-02-27 at 21:05, Doug Barton wrote: > > On Thu, 27 Feb 2003, Gord Broom wrote: > > > > > I'm about to start playing with fc-cache as well, to see if I can > > > diagnose what's wrong with my system (I reinstalled Moz -DWITHOUT_XFT, > > > and can surf again, but there's obviously something else afoot). I too > > > was annoyed at the lack of manpage. But I found it. If you run "make > > > extract patch" in /usr/ports/x11-fonts/fontconfig, then look in > > > work/fcpackage.2_1/fontconfig/fc-cache, you'll see a "fc-cache.man" that > > > isn't installed by the port. Grrr arrgh! > > > > > > Hopefully this manpage was just overlooked. > > > > The polite thing to do is to let the port maintainer know. I've cc'ed him. > > The problem is the manpage is not installed as part of the port's > default install target. This is a deficiency in the underlying > application itself, but can easily be rectified in port-install. Oh, I wasn't implying it was anholt's fault, just that he should be made aware. I have some poorly behaving ports in this regard as well, and there is a LOT more to keep track of with the X distro. Doug -- This .signature sanitized for your protection To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 22:10:10 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4792F37B401; Thu, 27 Feb 2003 22:10:08 -0800 (PST) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A44E43F85; Thu, 27 Feb 2003 22:10:06 -0800 (PST) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.12.7/8.12.7) with ESMTP id h1S69KZX041262; Fri, 28 Feb 2003 01:09:20 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: Mozilla window won't open after upgrade - FIXED From: Joe Marcus Clarke To: Doug Barton Cc: Gord Broom , Kenneth W Cochran , Richard Nyberg , anholt@freebsd.org, freebsd-stable@freebsd.org In-Reply-To: <20030227220127.K811@znfgre.tberna.bet> References: <4069.1046397686@selfstyled.dyndns.org> <20030227180446.M8428@znfgre.tberna.bet> <1046407583.44133.4.camel@shumai.marcuscom.com> <20030227220127.K811@znfgre.tberna.bet> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-DyuXBskUosoX/F7AKWGO" Organization: MarcusCom, Inc. Message-Id: <1046412599.44133.14.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 28 Feb 2003 01:09:59 -0500 X-Spam-Status: No, hits=-33.0 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,QUOTE_TWICE_1,REFERENCES, REPLY_WITH_QUOTES autolearn=ham version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-DyuXBskUosoX/F7AKWGO Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2003-02-28 at 01:02, Doug Barton wrote: > On Thu, 27 Feb 2003, Joe Marcus Clarke wrote: >=20 > > On Thu, 2003-02-27 at 21:05, Doug Barton wrote: > > > On Thu, 27 Feb 2003, Gord Broom wrote: > > > > > > > I'm about to start playing with fc-cache as well, to see if I can > > > > diagnose what's wrong with my system (I reinstalled Moz -DWITHOUT_X= FT, > > > > and can surf again, but there's obviously something else afoot). I= too > > > > was annoyed at the lack of manpage. But I found it. If you run "m= ake > > > > extract patch" in /usr/ports/x11-fonts/fontconfig, then look in > > > > work/fcpackage.2_1/fontconfig/fc-cache, you'll see a "fc-cache.man"= that > > > > isn't installed by the port. Grrr arrgh! > > > > > > > > Hopefully this manpage was just overlooked. > > > > > > The polite thing to do is to let the port maintainer know. I've cc'ed= him. > > > > The problem is the manpage is not installed as part of the port's > > default install target. This is a deficiency in the underlying > > application itself, but can easily be rectified in port-install. >=20 > Oh, I wasn't implying it was anholt's fault, just that he should be made > aware. I have some poorly behaving ports in this regard as well, and ther= e > is a LOT more to keep track of with the X distro. Actually, gnome@ is the fontconfig maintainer. I was standing up for myself. Joe >=20 > Doug --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-DyuXBskUosoX/F7AKWGO Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+Xv03b2iPiv4Uz4cRAq8uAJwPbFif5WG8gwzPSLZZW5MA04pndACcDuzF euHh3q+O2DK9h9uEqJI4ChE= =RLt+ -----END PGP SIGNATURE----- --=-DyuXBskUosoX/F7AKWGO-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 22:16:40 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1388337B401; Thu, 27 Feb 2003 22:16:39 -0800 (PST) Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89B2643FAF; Thu, 27 Feb 2003 22:16:38 -0800 (PST) (envelope-from DougB@freebsd.org) Received: from master.gorean.org (12-234-22-23.client.attbi.com[12.234.22.23]) by rwcrmhc52.attbi.com (rwcrmhc52) with SMTP id <2003022806163705200pr88ke>; Fri, 28 Feb 2003 06:16:38 +0000 Date: Thu, 27 Feb 2003 22:16:37 -0800 (PST) From: Doug Barton To: Joe Marcus Clarke Cc: Gord Broom , Kenneth W Cochran , Richard Nyberg , anholt@freebsd.org, freebsd-stable@freebsd.org Subject: Re: Mozilla window won't open after upgrade - FIXED In-Reply-To: <1046412599.44133.14.camel@shumai.marcuscom.com> Message-ID: <20030227221605.U811@znfgre.tberna.bet> References: <4069.1046397686@selfstyled.dyndns.org> <20030227180446.M8428@znfgre.tberna.bet> <1046407583.44133.4.camel@shumai.marcuscom.com> <20030227220127.K811@znfgre.tberna.bet> <1046412599.44133.14.camel@shumai.marcuscom.com> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! 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, 28 Feb 2003, Joe Marcus Clarke wrote: > Actually, gnome@ is the fontconfig maintainer. I was standing up for > myself. Heh... ok. In any case, I wasn't casting aspersions. Sorry if I wasn't clear. Doug -- This .signature sanitized for your protection To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 22:20:19 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3172F37B401; Thu, 27 Feb 2003 22:20:17 -0800 (PST) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id E07DC43FBD; Thu, 27 Feb 2003 22:20:14 -0800 (PST) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.12.7/8.12.7) with ESMTP id h1S6JPZX041335; Fri, 28 Feb 2003 01:19:25 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: Mozilla window won't open after upgrade - FIXED From: Joe Marcus Clarke To: Doug Barton Cc: Gord Broom , Kenneth W Cochran , Richard Nyberg , anholt@freebsd.org, freebsd-stable@freebsd.org In-Reply-To: <20030227221605.U811@znfgre.tberna.bet> References: <4069.1046397686@selfstyled.dyndns.org> <20030227180446.M8428@znfgre.tberna.bet> <1046407583.44133.4.camel@shumai.marcuscom.com> <20030227220127.K811@znfgre.tberna.bet> <1046412599.44133.14.camel@shumai.marcuscom.com> <20030227221605.U811@znfgre.tberna.bet> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-HEHnDdr3aAMSCaHPcmCQ" Organization: MarcusCom, Inc. Message-Id: <1046413205.44133.18.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 28 Feb 2003 01:20:05 -0500 X-Spam-Status: No, hits=-33.0 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,QUOTE_TWICE_1,REFERENCES, REPLY_WITH_QUOTES autolearn=ham version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-HEHnDdr3aAMSCaHPcmCQ Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2003-02-28 at 01:16, Doug Barton wrote: > On Thu, 28 Feb 2003, Joe Marcus Clarke wrote: >=20 > > Actually, gnome@ is the fontconfig maintainer. I was standing up for > > myself. >=20 > Heh... ok. In any case, I wasn't casting aspersions. Sorry if I wasn't > clear. I'm just responding in piecemeal since I'm tired. What I should also have said is... My response was meant for Gord who asked the question on why the manpages weren't included in the installation. You just got caught in the middle. Sorry. I appreciate you trying to get the maintainer involved. Oh, and the manpages for fc-cache and fc-list are now installed. Though you'd get more help from fc-cache -h and fc-list -h :-}. Joe >=20 > Doug --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-HEHnDdr3aAMSCaHPcmCQ Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+Xv+Vb2iPiv4Uz4cRAn0QAJ9/ubIoVx6DGnGPmgxfpxJd9+oe1wCfeWCV UsGdvomK5jgQojgBdhXtKTQ= =Lx/z -----END PGP SIGNATURE----- --=-HEHnDdr3aAMSCaHPcmCQ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 22:56:53 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D55737B401 for ; Thu, 27 Feb 2003 22:56:52 -0800 (PST) Received: from smtp.sw.oz.au (ext.aurema.com [203.31.96.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id B12CD43F85 for ; Thu, 27 Feb 2003 22:56:50 -0800 (PST) (envelope-from vance@aurema.com) Received: (from vance@localhost) by smtp.sw.oz.au (8.8.8+Sun/8.8.8) id RAA24099; Fri, 28 Feb 2003 17:56:33 +1100 (EST) Date: Fri, 28 Feb 2003 17:56:32 +1100 From: Christopher Vance To: Joe Marcus Clarke Cc: David Syphers , freebsd-stable@FreeBSD.ORG Subject: Re: Really fixed it this time? was Re: Mozilla window won't open after upgrade - FIXED Message-ID: <20030228175632.J7557@aurema.com> References: <39332.1046321265@selfstyled.dyndns.org> <3E5E8AA9.8050308@labs.mot.com> <1046384576.315.16.camel@gyros> <200302271844.13553.dsyphers@uchicago.edu> <1046407504.44133.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <1046407504.44133.2.camel@shumai.marcuscom.com>; from marcus@marcuscom.com on Thu, Feb 27, 2003 at 11:45:04PM -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, Feb 27, 2003 at 11:45:04PM -0500, Joe Marcus Clarke wrote: : This happened when Xft was removed from XFree86-libraries, and Xft2 : became the default Xft installation. I don't remember the exact date, : but it was in the past two weeks. Freshly deleted and cvsup'ped Xft, vte, and metatheme2 ports disagree with each other. The Xft port builds libXft.so.2, while the other two want -lXft2. -- Christopher Vance To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 22:59:54 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D78937B401 for ; Thu, 27 Feb 2003 22:59:52 -0800 (PST) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50C7C43FBF for ; Thu, 27 Feb 2003 22:59:51 -0800 (PST) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.12.7/8.12.7) with ESMTP id h1S6wsZX041618; Fri, 28 Feb 2003 01:58:54 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: Really fixed it this time? was Re: Mozilla window won't open after upgrade - FIXED From: Joe Marcus Clarke To: Christopher Vance Cc: David Syphers , freebsd-stable@FreeBSD.ORG In-Reply-To: <20030228175632.J7557@aurema.com> References: <39332.1046321265@selfstyled.dyndns.org> <3E5E8AA9.8050308@labs.mot.com> <1046384576.315.16.camel@gyros> <200302271844.13553.dsyphers@uchicago.edu> <1046407504.44133.2.camel@shumai.marcuscom.com> <20030228175632.J7557@aurema.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-EitMzt6TBo7xifyjE7DS" Organization: MarcusCom, Inc. Message-Id: <1046415573.44133.45.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 28 Feb 2003 01:59:34 -0500 X-Spam-Status: No, hits=-32.4 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES autolearn=ham version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-EitMzt6TBo7xifyjE7DS Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2003-02-28 at 01:56, Christopher Vance wrote: > On Thu, Feb 27, 2003 at 11:45:04PM -0500, Joe Marcus Clarke wrote: > : This happened when Xft was removed from XFree86-libraries, and Xft2 > : became the default Xft installation. I don't remember the exact date, > : but it was in the past two weeks. >=20 > Freshly deleted and cvsup'ped Xft, vte, and metatheme2 ports disagree > with each other. >=20 > The Xft port builds libXft.so.2, while the other two want -lXft2. metatheme is all but dead. However, if you rebuild pango, then force a rebuild of vte, you should be okay. Really, you should do a portupgrade -rf Xft to get all the ports that depend on Xft. Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-EitMzt6TBo7xifyjE7DS Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+XwjVb2iPiv4Uz4cRAprNAKCnRQqdMXCI+s5QTMwvUVlm6Lx47wCeOcOT INofkBUoTQpsxW6ThLWnT8w= =9X0Z -----END PGP SIGNATURE----- --=-EitMzt6TBo7xifyjE7DS-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Thu Feb 27 23: 8: 8 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C30A237B401 for ; Thu, 27 Feb 2003 23:08:07 -0800 (PST) Received: from smtp.sw.oz.au (ext.aurema.com [203.31.96.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59B3E43FB1 for ; Thu, 27 Feb 2003 23:08:06 -0800 (PST) (envelope-from vance@aurema.com) Received: (from vance@localhost) by smtp.sw.oz.au (8.8.8+Sun/8.8.8) id SAA27106; Fri, 28 Feb 2003 18:07:55 +1100 (EST) Date: Fri, 28 Feb 2003 18:07:55 +1100 From: Christopher Vance To: Joe Marcus Clarke Cc: David Syphers , freebsd-stable@FreeBSD.ORG Subject: Re: Really fixed it this time? was Re: Mozilla window won't open after upgrade - FIXED Message-ID: <20030228180755.M7557@aurema.com> References: <39332.1046321265@selfstyled.dyndns.org> <3E5E8AA9.8050308@labs.mot.com> <1046384576.315.16.camel@gyros> <200302271844.13553.dsyphers@uchicago.edu> <1046407504.44133.2.camel@shumai.marcuscom.com> <20030228175632.J7557@aurema.com> <1046415573.44133.45.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <1046415573.44133.45.camel@shumai.marcuscom.com>; from marcus@marcuscom.com on Fri, Feb 28, 2003 at 01:59:34AM -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 Fri, Feb 28, 2003 at 01:59:34AM -0500, Joe Marcus Clarke wrote: : metatheme is all but dead. However, if you rebuild pango, then force a : rebuild of vte, you should be okay. Really, you should do a portupgrade Will do, ta muchly. : -rf Xft to get all the ports that depend on Xft. I tried that but somebody rebooted the machine a few hours in ... -- Christopher Vance To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 1:30:53 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 707B537B401 for ; Fri, 28 Feb 2003 01:30:52 -0800 (PST) Received: from linux.nu (md4691119.utfors.se [212.105.17.25]) by mx1.FreeBSD.org (Postfix) with SMTP id 112FF43F75 for ; Fri, 28 Feb 2003 01:30:51 -0800 (PST) (envelope-from tysken@post.utfors.se) Received: (qmail 13830 invoked by uid 1023); 28 Feb 2003 09:30:49 -0000 Date: Fri, 28 Feb 2003 09:30:49 +0000 From: User Tysken To: freebsd-stable@freebsd.org Subject: Problems with sound in standalone flashplayer Message-ID: <20030228093049.GA13814@dasboot.birch.se> Mime-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: 8bit 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 have problems with sound in my flashplayer... I can't hear anything when I play a flash with the standalone flashplayer. Anybody have any clue what can be wrong or have the same problem? I have checked with fstat and there is nothing that is accessing dsp0/dsp so I can't understand why I should not hear anything. Any other sound source sutch as mplayer/xmms/mpg321 works fine. Thanks in advance. Mvh Mattias Björk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 2:51: 3 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 950FE37B401 for ; Fri, 28 Feb 2003 02:51:01 -0800 (PST) Received: from mail.rotfl.com.au (eth1779.sa.adsl.internode.on.net [150.101.235.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51F4A43FAF for ; Fri, 28 Feb 2003 02:51:00 -0800 (PST) (envelope-from Phil@Kernick.org) Message-ID: <3E5F3F11.2010909@Kernick.org> Date: Fri, 28 Feb 2003 21:20:57 +1030 From: Phil Kernick User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.2.1) Gecko/20021130 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Santos , freebsd-stable@freebsd.org Subject: Re: Console size References: <3E41109E.5040602@Kernick.org> <3E4EFF3F.4000007@myrealbox.com> In-Reply-To: <3E4EFF3F.4000007@myrealbox.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 I now have the ability to create a > 80x25 console, but I still have one problem I can't resolve. If I set the size of ttyv0 to 90x30, and then switch to an X session, and then switch back to ttyv0, I'm back in 80x25, but the console width is still 90. This leads to an unusable console. Interestingly, when the screen saver on the console cuts in, it seems to restore the vidcontrol setting. So, my question is, how do I get the vidcontrol setting automatically restored when a Ctrl-Alt-F1 from an X session back to ttyv0? Thanks, Phil. Santos wrote: > Phil Kernick wrote: > >> I'm sure it's possible, but exactly which knobs do I have to turn, and >> which settings do I have to tweak, to get my console to be bigger than >> the standard 80x25? >> >> I've looking in LINT, and there are some VGA_* options that look >> possible, but I can't find any documentation on the correct procedure. >> >> >> Thanks, >> Phil. >> > Just to add to what other have said. Add "options VGA_WIDTH90" to you > kernel config, without it you can't have more than 80 vertical lines. > And then, man vidcontrol. > > > Santos > -- _-_|\ Phil Kernick E-Mail: Phil@Kernick.org / \ ROTFL Enterprises Mobile: 041 61 ROTFL \_.-*_/ v Humourist, satirist, and probably a few more 'ists to boot! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 3:10:10 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8FE137B401 for ; Fri, 28 Feb 2003 03:10:08 -0800 (PST) Received: from cadillac.meteo.fr (cadillac.meteo.fr [137.129.1.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98A7543F75 for ; Fri, 28 Feb 2003 03:10:07 -0800 (PST) (envelope-from igor.pokrovsky@cnrm.meteo.fr) Received: from cti825.cnrm.meteo.fr (localhost.meteo.fr [127.0.0.1]) by cadillac.meteo.fr (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id LAA24560 for ; Fri, 28 Feb 2003 11:10:05 GMT Received: from xdata.cnrm.meteo.fr (xdata.cnrm.meteo.fr [137.129.150.2]) by cti825.cnrm.meteo.fr (8.9.3 (PHNE_18546)/8.9.3) with ESMTP id MAA24274 for ; Fri, 28 Feb 2003 12:10:03 +0100 (MET) Received: from cnrm.meteo.fr (exmatis1.cnrm.meteo.fr [137.129.157.46]) by xdata.cnrm.meteo.fr with ESMTP (8.9.3 (PHNE_18546)/8.7.1) id MAA02371 for ; Fri, 28 Feb 2003 12:10:03 +0100 (MET) Message-ID: <3E5F42DA.A98E9FBB@cnrm.meteo.fr> Date: Fri, 28 Feb 2003 12:07:06 +0100 From: Igor Pokrovsky X-Mailer: Mozilla 4.8 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: problems with getting through firewall using CVSup References: <3E5F41DE.B6156DCE@cnrm.meteo.fr> <3E5F427E.214A4970@cnrm.meteo.fr> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-AntiVirus: scanned for viruses by AMaViS 0.2.1 (cti825/CNRM) Organization: METEO FRANCE(CNRM) Sender: owner-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 in despair. I cannot get past firewall to update my sources and ports of FreeBSD. At least it seems to me that this is a firewall problem. I tried to use all options with -P. Nothing happends, every time cvsup writes after quite a long pause, that connection to server refused. It is interesting, that about a week ago I used the same cvsup on the same system (FreeBSD-stable) successfully. Some day something happend (perhaps somebody reconfigured firewall) and nothing is working now. Here is my cvsup file: *default host=cvsup.FreeBSD.org *default prefix=/usr/home/src/CVS/FreeBSD *default base=/usr/home/src/CVS *default release=cvs *default delete compress use-rel-suffix ## Main Source Tree src-all # Other stuff ports-all www doc-all I tried to use different mirrors, nothing helps. Version of cvsup is SNAP_16_1f. -- Igor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 3:25:23 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65CDA37B401 for ; Fri, 28 Feb 2003 03:25:21 -0800 (PST) Received: from freebsd.org.ru (www.freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id B72FA43FB1 for ; Fri, 28 Feb 2003 03:25:20 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 217FC195; Fri, 28 Feb 2003 14:25:19 +0300 (MSK) Date: Fri, 28 Feb 2003 14:25:19 +0300 From: "Sergey A. Osokin" To: Igor Pokrovsky Cc: freebsd-stable@freebsd.org Subject: Re: problems with getting through firewall using CVSup Message-ID: <20030228112518.GY424@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: <3E5F41DE.B6156DCE@cnrm.meteo.fr> <3E5F427E.214A4970@cnrm.meteo.fr> <3E5F42DA.A98E9FBB@cnrm.meteo.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E5F42DA.A98E9FBB@cnrm.meteo.fr> 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, Feb 28, 2003 at 12:07:06PM +0100, Igor Pokrovsky wrote: > Hello, > > I'm in despair. I cannot get past firewall to update > my sources and ports of FreeBSD. At least it seems > to me that this is a firewall problem. > I tried to use all options with -P. Nothing happends, > every time cvsup writes after quite a long pause, that > connection to server refused. It is interesting, that > about a week ago I used the same cvsup on the same system > (FreeBSD-stable) > successfully. Some day something happend (perhaps somebody > reconfigured firewall) and nothing is working now. > > Here is my cvsup file: > *default host=cvsup.FreeBSD.org > *default prefix=/usr/home/src/CVS/FreeBSD > *default base=/usr/home/src/CVS > *default release=cvs missing tag=RELENG_4 ? > *default delete compress use-rel-suffix > > ## Main Source Tree > src-all missing tag=. ? > # Other stuff > ports-all > www > doc-all > > I tried to use different mirrors, nothing helps. > > Version of cvsup is SNAP_16_1f. Also about fireall stuff - look at CVSup FAQ at http://www.cvsup.org/faq.html#fwtk or Russian translation CVSup FAQ at http://ozz.pp.ru/cvsup.html#fwtk. -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 3:56:48 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 128CF37B401 for ; Fri, 28 Feb 2003 03:56:47 -0800 (PST) Received: from mx1.zsea.zp.ua (zsea.zp.ua [212.8.40.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83F5243FDD for ; Fri, 28 Feb 2003 03:56:43 -0800 (PST) (envelope-from laa@Eagle.zgia.zp.ua) Received: from Eagle.zgia.zp.ua (localhost [127.0.0.1]) by mx1.zsea.zp.ua with ESMTPœ id h1SBuItA006041; Fri, 28 Feb 2003 13:56:18 +0200 (EET) (envelope-from laa@Eagle.zgia.zp.ua)œ Received: (from laa@localhost) by Eagle.zgia.zp.ua id h1SBuIaX006040; Fri, 28 Feb 2003 13:56:18 +0200 (EET) Date: Fri, 28 Feb 2003 13:56:18 +0200 From: Alexandr Listopad To: Igor Pokrovsky Cc: freebsd-stable@FreeBSD.ORG Subject: Re: problems with getting through firewall using CVSup Message-ID: <20030228115618.GC882@zgia.zp.ua> Mail-Followup-To: Igor Pokrovsky , freebsd-stable@FreeBSD.ORG References: <3E5F41DE.B6156DCE@cnrm.meteo.fr> <3E5F427E.214A4970@cnrm.meteo.fr> <3E5F42DA.A98E9FBB@cnrm.meteo.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <3E5F42DA.A98E9FBB@cnrm.meteo.fr> X-Mailer: Mutt X-PGP-Key: http://wwwkeys.pgp.net:11371/pks/lookup?op=get&search=0xF3FFC401 Sender: owner-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, Igor Pokrovsky! > I'm in despair. I cannot get past firewall to update > my sources and ports of FreeBSD. At least it seems > to me that this is a firewall problem. > I tried to use all options with -P. Nothing happends, > every time cvsup writes after quite a long pause, that > connection to server refused. It is interesting, that > about a week ago I used the same cvsup on the same system > (FreeBSD-stable) > successfully. Some day something happend (perhaps somebody > reconfigured firewall) and nothing is working now. > > Here is my cvsup file: > *default host=cvsup.FreeBSD.org You should use some of cvsup mirrors, see: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html And put ``tag='' into cvsup-file. > *default prefix=/usr/home/src/CVS/FreeBSD > *default base=/usr/home/src/CVS > *default release=cvs > *default delete compress use-rel-suffix > > ## Main Source Tree > src-all > > # Other stuff > ports-all > www > doc-all > > I tried to use different mirrors, nothing helps. > > Version of cvsup is SNAP_16_1f. -- Laa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 4:51:38 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D719737B401 for ; Fri, 28 Feb 2003 04:51:36 -0800 (PST) Received: from mail.rotfl.com.au (eth1779.sa.adsl.internode.on.net [150.101.235.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2158843F93 for ; Fri, 28 Feb 2003 04:51:36 -0800 (PST) (envelope-from Phil@Kernick.org) Message-ID: <3E5F5B57.1000200@Kernick.org> Date: Fri, 28 Feb 2003 23:21:35 +1030 From: Phil Kernick User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.2.1) Gecko/20021130 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable Subject: syscons does not restore vidcontrol settings 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 Demonstration of the problem: # vidcontrol VGA_90x30 < /dev/ttyv0 Alt-F9 to switch to XFree86 Alt-F1 to switch back The screen is now in 80x25 mode, but it thinks it's in 90x30, meaning that each line is offset by 10 characters. However, after the screen saver has activated and then been deactivated, the vidcontrol settings are restored. Looking at the XFree86 source, when switching away it does this: ioctl(xf86Info.consoleFd, VT_ACTIVATE, key - KEY_F1 + 1); Looking in src/sys/dev/syscons/syscons.c for this ioctl, we have: return sc_switch_scr(sc, i); sc_switch_scr doesn't ever seem to call scrn_update which restores the screen. Can someone who is a syscons expert have a look at this? I've submitted it as a bug with id kern/48777. Thanks, Phil. -- _-_|\ Phil Kernick E-Mail: Phil@Kernick.org / \ ROTFL Enterprises Mobile: 041 61 ROTFL \_.-*_/ v Humourist, satirist, and probably a few more 'ists to boot! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 5: 6:42 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8C5F37B401 for ; Fri, 28 Feb 2003 05:06:40 -0800 (PST) Received: from vivaldi.meteo.fr (vivaldi.meteo.fr [137.129.28.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F82443FBF for ; Fri, 28 Feb 2003 05:06:39 -0800 (PST) (envelope-from igor.pokrovsky@cnrm.meteo.fr) Received: from cti825.cnrm.meteo.fr (localhost.meteo.fr [127.0.0.1]) by vivaldi.meteo.fr (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id NAA20068 for ; Fri, 28 Feb 2003 13:06:35 GMT Received: from xdata.cnrm.meteo.fr (xdata.cnrm.meteo.fr [137.129.150.2]) by cti825.cnrm.meteo.fr (8.9.3 (PHNE_18546)/8.9.3) with ESMTP id OAA12406; Fri, 28 Feb 2003 14:06:33 +0100 (MET) Received: from cnrm.meteo.fr (mai3.cnrm.meteo.fr [137.129.157.34]) by xdata.cnrm.meteo.fr with ESMTP (8.9.3 (PHNE_18546)/8.7.1) id OAA11634; Fri, 28 Feb 2003 14:06:32 +0100 (MET) Message-ID: <3E5F5ED7.DBF29005@cnrm.meteo.fr> Date: Fri, 28 Feb 2003 14:06:31 +0100 From: Igor Pokrovsky X-Mailer: Mozilla 4.06 [en] (X11; I; HP-UX B.10.20 9000/780) MIME-Version: 1.0 To: osa@freebsd.org.ru Cc: stable@freebsd.org Subject: Re: problems with getting through firewall using CVSup References: <3E5F41DE.B6156DCE@cnrm.meteo.fr> <3E5F427E.214A4970@cnrm.meteo.fr> <3E5F42DA.A98E9FBB@cnrm.meteo.fr> <20030228112518.GY424@freebsd.org.ru> <3E5F48A0.F7CCD066@cnrm.meteo.fr> <20030228114236.GZ424@freebsd.org.ru> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-AntiVirus: scanned for viruses by AMaViS 0.2.1 (cti825/CNRM) Organization: METEO FRANCE(CNRM) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sergey A. Osokin wrote: > Looks like problems with your firewall... > When CVSup tryid to grab the sources - try use netstat command > for see state of connection, maybe it helps you. "netstat -n" produces during attempt to cvsup the following: tcp4 0 0 137.129.157.46.1027 198.104.69.57.5999 SYN_SENT What does mean state SYN_SENT? -- Igor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 5:13:12 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7657437B401 for ; Fri, 28 Feb 2003 05:13:11 -0800 (PST) Received: from hugo10.ka.punkt.de (kagate.punkt.de [217.29.33.131]) by mx1.FreeBSD.org (Postfix) with SMTP id 3E62643FBF for ; Fri, 28 Feb 2003 05:13:09 -0800 (PST) (envelope-from hausen@punkt.de) Received: from hugo10.ka.punkt.de (localhost [127.0.0.1]) by hugo10.ka.punkt.de (8.12.3/8.12.3) with ESMTP id h1SDCVXR040251; Fri, 28 Feb 2003 14:12:31 +0100 (CET) (envelope-from ry93@hugo10.ka.punkt.de) Received: (from ry93@localhost) by hugo10.ka.punkt.de (8.12.3/8.12.3/Submit) id h1SDCVUE040250; Fri, 28 Feb 2003 14:12:31 +0100 (CET) From: "Patrick M. Hausen" Message-Id: <200302281312.h1SDCVUE040250@hugo10.ka.punkt.de> Subject: Re: problems with getting through firewall using CVSup In-Reply-To: <3E5F5ED7.DBF29005@cnrm.meteo.fr> To: Igor Pokrovsky Date: Fri, 28 Feb 2003 14:12:31 +0100 (CET) Cc: osa@freebsd.org.ru, stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL92 (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 Hi! > Sergey A. Osokin wrote: > > > Looks like problems with your firewall... > > When CVSup tryid to grab the sources - try use netstat command > > for see state of connection, maybe it helps you. > > "netstat -n" produces during attempt to cvsup the following: > > tcp4 0 0 137.129.157.46.1027 198.104.69.57.5999 SYN_SENT > > What does mean state SYN_SENT? See: http://www.ssfnet.org/Exchange/tcp/tcpTutorialNotes.html#ST Your system is trying to connect to the server but hasn't received an answer packet yet. HTH, Patrick M. Hausen Technical Director -- punkt.de GmbH Internet - Dienstleistungen - Beratung Scheffelstr. 17 a Tel. 0721 9109 -0 Fax: -100 76135 Karlsruhe http://punkt.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 5:36:21 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8266937B401 for ; Fri, 28 Feb 2003 05:36:19 -0800 (PST) Received: from cadillac.meteo.fr (cadillac.meteo.fr [137.129.1.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D60B43F93 for ; Fri, 28 Feb 2003 05:36:18 -0800 (PST) (envelope-from igor.pokrovsky@cnrm.meteo.fr) Received: from cti825.cnrm.meteo.fr (localhost.meteo.fr [127.0.0.1]) by cadillac.meteo.fr (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id NAA02804 for ; Fri, 28 Feb 2003 13:36:15 GMT Received: from xdata.cnrm.meteo.fr (xdata.cnrm.meteo.fr [137.129.150.2]) by cti825.cnrm.meteo.fr (8.9.3 (PHNE_18546)/8.9.3) with ESMTP id OAA17979; Fri, 28 Feb 2003 14:36:14 +0100 (MET) Received: from cnrm.meteo.fr (mai3.cnrm.meteo.fr [137.129.157.34]) by xdata.cnrm.meteo.fr with ESMTP (8.9.3 (PHNE_18546)/8.7.1) id OAA13784; Fri, 28 Feb 2003 14:36:14 +0100 (MET) Message-ID: <3E5F65CC.281723D0@cnrm.meteo.fr> Date: Fri, 28 Feb 2003 14:36:12 +0100 From: Igor Pokrovsky X-Mailer: Mozilla 4.06 [en] (X11; I; HP-UX B.10.20 9000/780) MIME-Version: 1.0 To: "Patrick M. Hausen" Cc: stable@freebsd.org Subject: Re: problems with getting through firewall using CVSup References: <200302281312.h1SDCVUE040250@hugo10.ka.punkt.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-AntiVirus: scanned for viruses by AMaViS 0.2.1 (cti825/CNRM) Organization: METEO FRANCE(CNRM) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Patrick M. Hausen wrote: > > > Looks like problems with your firewall... > > > When CVSup tryid to grab the sources - try use netstat command > > > for see state of connection, maybe it helps you. > > > > "netstat -n" produces during attempt to cvsup the following: > > > > tcp4 0 0 137.129.157.46.1027 198.104.69.57.5999 SYN_SENT > > > > What does mean state SYN_SENT? > > See: > > http://www.ssfnet.org/Exchange/tcp/tcpTutorialNotes.html#ST > > Your system is trying to connect to the server but hasn't received > an answer packet yet. May firewall prevent me from initiating connection to 5999 port? It seems to me, that it handles not only incoming connecting. I tried to telnet to cvsup.fr.freebsd.org to 21 and 5999 ports. The first one works fine, but the last one produces only timeout. -- Igor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 5:58:44 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E07237B401 for ; Fri, 28 Feb 2003 05:58:43 -0800 (PST) Received: from freebsd.org.ru (www.freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51E6443FD7 for ; Fri, 28 Feb 2003 05:58:42 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 54387235; Fri, 28 Feb 2003 16:58:40 +0300 (MSK) Date: Fri, 28 Feb 2003 16:58:40 +0300 From: "Sergey A. Osokin" To: Igor Pokrovsky Cc: "Patrick M. Hausen" , stable@freebsd.org Subject: Re: problems with getting through firewall using CVSup Message-ID: <20030228135840.GA424@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: <200302281312.h1SDCVUE040250@hugo10.ka.punkt.de> <3E5F65CC.281723D0@cnrm.meteo.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E5F65CC.281723D0@cnrm.meteo.fr> 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, Feb 28, 2003 at 02:36:12PM +0100, Igor Pokrovsky wrote: > Patrick M. Hausen wrote: > > > > > Looks like problems with your firewall... > > > > When CVSup tryid to grab the sources - try use netstat command > > > > for see state of connection, maybe it helps you. > > > > > > "netstat -n" produces during attempt to cvsup the following: > > > tcp4 0 0 137.129.157.46.1027 198.104.69.57.5999 SYN_SENT > > > What does mean state SYN_SENT? > > > > See: > > http://www.ssfnet.org/Exchange/tcp/tcpTutorialNotes.html#ST > > > > Your system is trying to connect to the server but hasn't received > > an answer packet yet. > > May firewall prevent me from initiating connection to 5999 port? > It seems to me, that it handles not only incoming connecting. > > I tried to telnet to cvsup.fr.freebsd.org to 21 and 5999 ports. > The first one works fine, but the last one produces only timeout. Hm, do you use cvsup with `-P m' flags in command line? -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 6: 2:34 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E106237B401 for ; Fri, 28 Feb 2003 06:02:32 -0800 (PST) Received: from cadillac.meteo.fr (cadillac.meteo.fr [137.129.1.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2272843FA3 for ; Fri, 28 Feb 2003 06:02:31 -0800 (PST) (envelope-from igor.pokrovsky@cnrm.meteo.fr) Received: from cti825.cnrm.meteo.fr (localhost.meteo.fr [127.0.0.1]) by cadillac.meteo.fr (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id OAA04794 for ; Fri, 28 Feb 2003 14:02:20 GMT Received: from xdata.cnrm.meteo.fr (xdata.cnrm.meteo.fr [137.129.150.2]) by cti825.cnrm.meteo.fr (8.9.3 (PHNE_18546)/8.9.3) with ESMTP id PAA24584; Fri, 28 Feb 2003 15:02:17 +0100 (MET) Received: from cnrm.meteo.fr (mai3.cnrm.meteo.fr [137.129.157.34]) by xdata.cnrm.meteo.fr with ESMTP (8.9.3 (PHNE_18546)/8.7.1) id PAA15855; Fri, 28 Feb 2003 15:02:17 +0100 (MET) Message-ID: <3E5F6BE7.823D8A4C@cnrm.meteo.fr> Date: Fri, 28 Feb 2003 15:02:15 +0100 From: Igor Pokrovsky X-Mailer: Mozilla 4.06 [en] (X11; I; HP-UX B.10.20 9000/780) MIME-Version: 1.0 To: osa@freebsd.org.ru Cc: stable@freebsd.org Subject: Re: problems with getting through firewall using CVSup References: <200302281312.h1SDCVUE040250@hugo10.ka.punkt.de> <3E5F65CC.281723D0@cnrm.meteo.fr> <20030228135840.GA424@freebsd.org.ru> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-AntiVirus: scanned for viruses by AMaViS 0.2.1 (cti825/CNRM) Organization: METEO FRANCE(CNRM) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sergey A. Osokin wrote: > > On Fri, Feb 28, 2003 at 02:36:12PM +0100, Igor Pokrovsky wrote: > > Patrick M. Hausen wrote: > > > > > > > Looks like problems with your firewall... > > > > > When CVSup tryid to grab the sources - try use netstat command > > > > > for see state of connection, maybe it helps you. > > > > > > > > "netstat -n" produces during attempt to cvsup the following: > > > > tcp4 0 0 137.129.157.46.1027 198.104.69.57.5999 SYN_SENT > > > > What does mean state SYN_SENT? > > > > > > See: > > > http://www.ssfnet.org/Exchange/tcp/tcpTutorialNotes.html#ST > > > > > > Your system is trying to connect to the server but hasn't received > > > an answer packet yet. > > > > May firewall prevent me from initiating connection to 5999 port? > > It seems to me, that it handles not only incoming connecting. > > > > I tried to telnet to cvsup.fr.freebsd.org to 21 and 5999 ports. > > The first one works fine, but the last one produces only timeout. > > Hm, do you use cvsup with `-P m' flags in command line? Yes. And also with "-P -" and "-P a". The same result. :-( -- Igor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 6:10: 5 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C20D37B401 for ; Fri, 28 Feb 2003 06:10:04 -0800 (PST) Received: from hugo10.ka.punkt.de (kagate.punkt.de [217.29.33.131]) by mx1.FreeBSD.org (Postfix) with SMTP id EBDFF43FCB for ; Fri, 28 Feb 2003 06:10:02 -0800 (PST) (envelope-from hausen@punkt.de) Received: from hugo10.ka.punkt.de (localhost [127.0.0.1]) by hugo10.ka.punkt.de (8.12.3/8.12.3) with ESMTP id h1SE9UXR041667; Fri, 28 Feb 2003 15:09:30 +0100 (CET) (envelope-from ry93@hugo10.ka.punkt.de) Received: (from ry93@localhost) by hugo10.ka.punkt.de (8.12.3/8.12.3/Submit) id h1SE9SCg041665; Fri, 28 Feb 2003 15:09:28 +0100 (CET) From: "Patrick M. Hausen" Message-Id: <200302281409.h1SE9SCg041665@hugo10.ka.punkt.de> Subject: Re: problems with getting through firewall using CVSup In-Reply-To: <3E5F6BE7.823D8A4C@cnrm.meteo.fr> To: Igor Pokrovsky Date: Fri, 28 Feb 2003 15:09:28 +0100 (CET) Cc: osa@freebsd.org.ru, stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL92 (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 Hi! > > > May firewall prevent me from initiating connection to 5999 port? This seems to be the case because of: > > > > > "netstat -n" produces during attempt to cvsup the following: > > > > > tcp4 0 0 137.129.157.46.1027 198.104.69.57.5999 SYN_SENT I.e. the client sends a SYN packet out, but never receives SYN/ACK from the server. And: > > > I tried to telnet to cvsup.fr.freebsd.org to 21 and 5999 ports. > > > The first one works fine, but the last one produces only timeout. Which proves that your firewall blocks connections to port 5999. Talk to your firewall admin. If using CVSup is in accordance with your security policy, have the firewall setup fixed. If it isn't, you can't use CVSup. Simple as that. HTH, Patrick M. Hausen Technical Director -- punkt.de GmbH Internet - Dienstleistungen - Beratung Scheffelstr. 17 a Tel. 0721 9109 -0 Fax: -100 76135 Karlsruhe http://punkt.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 6:10:35 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B4DF37B406 for ; Fri, 28 Feb 2003 06:10:33 -0800 (PST) Received: from freebsd.org.ru (freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A2A643FBF for ; Fri, 28 Feb 2003 06:10:32 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id D951A249; Fri, 28 Feb 2003 17:10:30 +0300 (MSK) Date: Fri, 28 Feb 2003 17:10:30 +0300 From: "Sergey A. Osokin" To: Igor Pokrovsky Cc: stable@freebsd.org Subject: Re: problems with getting through firewall using CVSup Message-ID: <20030228141030.GB424@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: <200302281312.h1SDCVUE040250@hugo10.ka.punkt.de> <3E5F65CC.281723D0@cnrm.meteo.fr> <20030228135840.GA424@freebsd.org.ru> <3E5F6BE7.823D8A4C@cnrm.meteo.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E5F6BE7.823D8A4C@cnrm.meteo.fr> 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, Feb 28, 2003 at 03:02:15PM +0100, Igor Pokrovsky wrote: > Sergey A. Osokin wrote: > > On Fri, Feb 28, 2003 at 02:36:12PM +0100, Igor Pokrovsky wrote: > > > Patrick M. Hausen wrote: > > > > > > > > > Looks like problems with your firewall... > > > > > > When CVSup tryid to grab the sources - try use netstat command > > > > > > for see state of connection, maybe it helps you. > > > > > > > > > > "netstat -n" produces during attempt to cvsup the following: > > > > > tcp4 0 0 137.129.157.46.1027 198.104.69.57.5999 SYN_SENT > > > > > What does mean state SYN_SENT? > > > > > > > > See: > > > > http://www.ssfnet.org/Exchange/tcp/tcpTutorialNotes.html#ST > > > > > > > > Your system is trying to connect to the server but hasn't received > > > > an answer packet yet. > > > > > > May firewall prevent me from initiating connection to 5999 port? > > > It seems to me, that it handles not only incoming connecting. > > > > > > I tried to telnet to cvsup.fr.freebsd.org to 21 and 5999 ports. > > > The first one works fine, but the last one produces only timeout. > > > > Hm, do you use cvsup with `-P m' flags in command line? > > Yes. And also with "-P -" and "-P a". The same result. :-( OK. Check one more time rules on your firewall. Use tcpdump on in/out interface and see whats wrong. -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 6:31: 5 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DD2537B401 for ; Fri, 28 Feb 2003 06:31:03 -0800 (PST) Received: from freebsd.org.ru (www.freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id C83AF43FD7 for ; Fri, 28 Feb 2003 06:31:01 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 9F745165; Fri, 28 Feb 2003 17:31:00 +0300 (MSK) Date: Fri, 28 Feb 2003 17:31:00 +0300 From: "Sergey A. Osokin" To: Igor Pokrovsky Cc: stable@FreeBSD.org Subject: Re: problems with getting through firewall using CVSup Message-ID: <20030228143100.GC424@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: <200302281312.h1SDCVUE040250@hugo10.ka.punkt.de> <3E5F65CC.281723D0@cnrm.meteo.fr> <20030228135840.GA424@freebsd.org.ru> <3E5F6BE7.823D8A4C@cnrm.meteo.fr> <20030228141030.GB424@freebsd.org.ru> <3E5F7079.AB60D224@cnrm.meteo.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E5F7079.AB60D224@cnrm.meteo.fr> 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, Feb 28, 2003 at 03:21:45PM +0100, Igor Pokrovsky wrote: > Sergey A. Osokin wrote: > > On Fri, Feb 28, 2003 at 03:02:15PM +0100, Igor Pokrovsky wrote: > > > Sergey A. Osokin wrote: > > > > On Fri, Feb 28, 2003 at 02:36:12PM +0100, Igor Pokrovsky wrote: > > > > > Patrick M. Hausen wrote: > > > > > > > > > > > > > Looks like problems with your firewall... > > > > > > > > When CVSup tryid to grab the sources - try use netstat command > > > > > > > > for see state of connection, maybe it helps you. > > > > > > > > > > > > > > "netstat -n" produces during attempt to cvsup the following: > > > > > > > tcp4 0 0 137.129.157.46.1027 198.104.69.57.5999 SYN_SENT > > > > > > > What does mean state SYN_SENT? > > > > > > > > > > > > See: > > > > > > http://www.ssfnet.org/Exchange/tcp/tcpTutorialNotes.html#ST > > > > > > > > > > > > Your system is trying to connect to the server but hasn't received > > > > > > an answer packet yet. > > > > > > > > > > May firewall prevent me from initiating connection to 5999 port? > > > > > It seems to me, that it handles not only incoming connecting. > > > > > > > > > > I tried to telnet to cvsup.fr.freebsd.org to 21 and 5999 ports. > > > > > The first one works fine, but the last one produces only timeout. > > > > > > > > Hm, do you use cvsup with `-P m' flags in command line? > > > > > > Yes. And also with "-P -" and "-P a". The same result. :-( > > > > OK. Check one more time rules on your firewall. Use tcpdump > > on in/out interface and see whats wrong. > > No. Firewall is not on my machine. It is located somewhere upper > on network. Talk with your friendly system administrator. Describe him your problem. > Unfortunatly it seems to me that it prevents me to > connect to 5999 port because of local security reasons. Look at http://www.cvsup.org/faq.html#fwtk with your system administrator. > Is there any way to make it work? > To fool firewall? Yes, looks like a bad/fool/stupid firewall administriva. -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 6:36:31 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B39537B401 for ; Fri, 28 Feb 2003 06:36:30 -0800 (PST) Received: from eirene.ncsa.uiuc.edu (eirene.ncsa.uiuc.edu [141.142.96.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id A69FC43FB1 for ; Fri, 28 Feb 2003 06:36:29 -0800 (PST) (envelope-from koziol@eirene.ncsa.uiuc.edu) Received: (from koziol@localhost) by eirene.ncsa.uiuc.edu (8.11.6/8.11.6) id h1SEaRL07162 for stable@freebsd.org; Fri, 28 Feb 2003 08:36:27 -0600 From: Quincey Koziol Message-Id: <200302281436.h1SEaRL07162@eirene.ncsa.uiuc.edu> Subject: Problem with telnet To: stable@freebsd.org Date: Fri, 28 Feb 2003 08:36:27 -0600 (CST) X-Mailer: ELM [version 2.5 PL5] 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 Hi all, I updated my machine to the latest stable source yesterday (2/27/03) and I'm now getting this message when [attempting to] telneting into it: Trying 141.142.xx.xx... Connected to sleipnir.ncsa.uiuc.edu (141.142.xx.xx). Escape character is '^]'. [ Kerberos V5 accepts you as ``koziol@NCSA.EDU'' ] [ Kerberos V5 accepted forwarded credentials ] *** Connection not encrypted! Communication may be eavesdropped. *** /usr/libexec/ld-elf.so.1: /usr/lib/libkrb.so.3: Undefined symbol "_ossl_old_des_set_key" Connection closed by foreign host. I've got "MAKE_KERBEROS4= yes" in my /etc/make.conf, but not "MAKE_KERBEROS5= yes" (since I've installed the heimdal port). Could this be related to the problem? Quincey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 6:42:36 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACF3F37B401 for ; Fri, 28 Feb 2003 06:42:34 -0800 (PST) Received: from hugo10.ka.punkt.de (kagate.punkt.de [217.29.33.131]) by mx1.FreeBSD.org (Postfix) with SMTP id 3C0F043FB1 for ; Fri, 28 Feb 2003 06:42:33 -0800 (PST) (envelope-from hausen@punkt.de) Received: from hugo10.ka.punkt.de (localhost [127.0.0.1]) by hugo10.ka.punkt.de (8.12.3/8.12.3) with ESMTP id h1SEg0XR042492; Fri, 28 Feb 2003 15:42:01 +0100 (CET) (envelope-from ry93@hugo10.ka.punkt.de) Received: (from ry93@localhost) by hugo10.ka.punkt.de (8.12.3/8.12.3/Submit) id h1SEg0RV042490; Fri, 28 Feb 2003 15:42:00 +0100 (CET) From: "Patrick M. Hausen" Message-Id: <200302281442.h1SEg0RV042490@hugo10.ka.punkt.de> Subject: Re: problems with getting through firewall using CVSup In-Reply-To: <20030228143100.GC424@freebsd.org.ru> To: osa@freebsd.org.ru Date: Fri, 28 Feb 2003 15:42:00 +0100 (CET) Cc: Igor Pokrovsky , stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL92 (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 Hi! Sergey Osokin wrote: > > Is there any way to make it work? > > To fool firewall? > > Yes, looks like a bad/fool/stupid firewall administriva. No. This looks exactly like the correct way to implement a firewall. Everything which is not on the "explicitly permitted" list is denied by default. So users tring new and "interesting" protocols and services have to check if what they are trying to do is in accordance with the security policy first. I know, there are lots of companies that permit any inside initiated TCP connection. I'd call this stupid if not explicitly decided upon and documented. And last - maybe they are running a strict application level gateway like Gauntlet or Sidewinder? If this is the case the admin must define a custom TCP proxy for CVSup, first. Regards, Patrick M. Hausen Technical Director -- punkt.de GmbH Internet - Dienstleistungen - Beratung Scheffelstr. 17 a Tel. 0721 9109 -0 Fax: -100 76135 Karlsruhe http://punkt.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 6:49:22 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F39EF37B401 for ; Fri, 28 Feb 2003 06:49:20 -0800 (PST) Received: from freebsd.org.ru (sweet.etrust.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D7F743FAF for ; Fri, 28 Feb 2003 06:49:20 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id B8F76235; Fri, 28 Feb 2003 17:49:18 +0300 (MSK) Date: Fri, 28 Feb 2003 17:49:18 +0300 From: "Sergey A. Osokin" To: "Patrick M. Hausen" Cc: Igor Pokrovsky , stable@FreeBSD.ORG Subject: Re: problems with getting through firewall using CVSup Message-ID: <20030228144918.GD424@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: <20030228143100.GC424@freebsd.org.ru> <200302281442.h1SEg0RV042490@hugo10.ka.punkt.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302281442.h1SEg0RV042490@hugo10.ka.punkt.de> 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, Feb 28, 2003 at 03:42:00PM +0100, Patrick M. Hausen wrote: > Sergey Osokin wrote: > > > > Is there any way to make it work? > > > To fool firewall? > > > > Yes, looks like a bad/fool/stupid firewall administriva. > > And last - maybe they are running a strict application level > gateway like Gauntlet or Sidewinder? If this is the case the > admin must define a custom TCP proxy for CVSup, first. So, if you want more information about how to CVSup work - just ask John D. Polstra. -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 6:52:46 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6797837B401 for ; Fri, 28 Feb 2003 06:52:44 -0800 (PST) Received: from vivaldi.meteo.fr (vivaldi.meteo.fr [137.129.28.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0C8C43FCB for ; Fri, 28 Feb 2003 06:52:42 -0800 (PST) (envelope-from igor.pokrovsky@cnrm.meteo.fr) Received: from cti825.cnrm.meteo.fr (localhost.meteo.fr [127.0.0.1]) by vivaldi.meteo.fr (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id OAA26748 for ; Fri, 28 Feb 2003 14:52:39 GMT Received: from xdata.cnrm.meteo.fr (xdata.cnrm.meteo.fr [137.129.150.2]) by cti825.cnrm.meteo.fr (8.9.3 (PHNE_18546)/8.9.3) with ESMTP id PAA23681; Fri, 28 Feb 2003 15:52:37 +0100 (MET) Received: from cnrm.meteo.fr (mai3.cnrm.meteo.fr [137.129.157.34]) by xdata.cnrm.meteo.fr with ESMTP (8.9.3 (PHNE_18546)/8.7.1) id PAA21245; Fri, 28 Feb 2003 15:52:37 +0100 (MET) Message-ID: <3E5F77B4.4392E9FD@cnrm.meteo.fr> Date: Fri, 28 Feb 2003 15:52:36 +0100 From: Igor Pokrovsky X-Mailer: Mozilla 4.06 [en] (X11; I; HP-UX B.10.20 9000/780) MIME-Version: 1.0 To: "Patrick M. Hausen" Cc: stable@freebsd.org Subject: Re: problems with getting through firewall using CVSup References: <200302281442.h1SEg0RV042490@hugo10.ka.punkt.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-AntiVirus: scanned for viruses by AMaViS 0.2.1 (cti825/CNRM) Organization: METEO FRANCE(CNRM) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Patrick M. Hausen wrote: > > Hi! > Sergey Osokin wrote: > > > > Is there any way to make it work? > > > To fool firewall? > > > > Yes, looks like a bad/fool/stupid firewall administriva. > > No. This looks exactly like the correct way to implement > a firewall. > > Everything which is not on the "explicitly permitted" list > is denied by default. > > So users tring new and "interesting" protocols and services > have to check if what they are trying to do is in accordance > with the security policy first. > > I know, there are lots of companies that permit any inside > initiated TCP connection. I'd call this stupid if not > explicitly decided upon and documented. Yes. I agree, maybe this is a good policy. And moreover I think that they closed port 5999 on firewall because of my activities :-) Perhaps they thought that I'm trying do something, which will break their security. Maybe because port number is not very popular :-) > And last - maybe they are running a strict application level > gateway like Gauntlet or Sidewinder? If this is the case the > admin must define a custom TCP proxy for CVSup, first. No. Fortunatly. But is there any way to do anything without asking firewall admin to open 5999 port? -- Igor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 6:59:47 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE79937B401 for ; Fri, 28 Feb 2003 06:59:45 -0800 (PST) Received: from hugo10.ka.punkt.de (kagate.punkt.de [217.29.33.131]) by mx1.FreeBSD.org (Postfix) with SMTP id 9426043F85 for ; Fri, 28 Feb 2003 06:59:44 -0800 (PST) (envelope-from hausen@punkt.de) Received: from hugo10.ka.punkt.de (localhost [127.0.0.1]) by hugo10.ka.punkt.de (8.12.3/8.12.3) with ESMTP id h1SExCXR042942; Fri, 28 Feb 2003 15:59:12 +0100 (CET) (envelope-from ry93@hugo10.ka.punkt.de) Received: (from ry93@localhost) by hugo10.ka.punkt.de (8.12.3/8.12.3/Submit) id h1SExCGf042941; Fri, 28 Feb 2003 15:59:12 +0100 (CET) From: "Patrick M. Hausen" Message-Id: <200302281459.h1SExCGf042941@hugo10.ka.punkt.de> Subject: Re: problems with getting through firewall using CVSup In-Reply-To: <3E5F77B4.4392E9FD@cnrm.meteo.fr> To: Igor Pokrovsky Date: Fri, 28 Feb 2003 15:59:12 +0100 (CET) Cc: "Patrick M. Hausen" , stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL92 (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 Hi! > But is there any way to do anything without asking firewall > admin to open 5999 port? No, there is not. Well, there is, sort of ... Please, people! If Port 5999 is blocked, the responsible person doesn't want you to use CVSup. You will have to clear that issue. Of course with the help of someone outside of your company or a system sitting at your home which is connected to the Internet you could use an SSL tunnel or an SSH tunnel or ... ... provided that ports 443 or 22 are permitted, that is. But how happy do you think your admin will be if he ever finds out? HTH, Patrick M. Hausen Technical Director -- punkt.de GmbH Internet - Dienstleistungen - Beratung Scheffelstr. 17 a Tel. 0721 9109 -0 Fax: -100 76135 Karlsruhe http://punkt.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 7:10: 1 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D35EA37B401 for ; Fri, 28 Feb 2003 07:09:59 -0800 (PST) Received: from cadillac.meteo.fr (cadillac.meteo.fr [137.129.1.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A31F43F3F for ; Fri, 28 Feb 2003 07:09:58 -0800 (PST) (envelope-from igor.pokrovsky@cnrm.meteo.fr) Received: from cti825.cnrm.meteo.fr (localhost.meteo.fr [127.0.0.1]) by cadillac.meteo.fr (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id PAA11285 for ; Fri, 28 Feb 2003 15:09:55 GMT Received: from xdata.cnrm.meteo.fr (xdata.cnrm.meteo.fr [137.129.150.2]) by cti825.cnrm.meteo.fr (8.9.3 (PHNE_18546)/8.9.3) with ESMTP id QAA13877; Fri, 28 Feb 2003 16:09:53 +0100 (MET) Received: from cnrm.meteo.fr (mai3.cnrm.meteo.fr [137.129.157.34]) by xdata.cnrm.meteo.fr with ESMTP (8.9.3 (PHNE_18546)/8.7.1) id QAA23889; Fri, 28 Feb 2003 16:09:54 +0100 (MET) Message-ID: <3E5F7BC0.6C9935DD@cnrm.meteo.fr> Date: Fri, 28 Feb 2003 16:09:52 +0100 From: Igor Pokrovsky X-Mailer: Mozilla 4.06 [en] (X11; I; HP-UX B.10.20 9000/780) MIME-Version: 1.0 To: "Patrick M. Hausen" Cc: stable@freebsd.org Subject: Re: problems with getting through firewall using CVSup References: <200302281459.h1SExCGf042941@hugo10.ka.punkt.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-AntiVirus: scanned for viruses by AMaViS 0.2.1 (cti825/CNRM) Organization: METEO FRANCE(CNRM) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Patrick M. Hausen wrote: > > Hi! > > > But is there any way to do anything without asking firewall > > admin to open 5999 port? > > No, there is not. Well, there is, sort of ... > > Please, people! If Port 5999 is blocked, the responsible person > doesn't want you to use CVSup. You will have to clear that issue. > > Of course with the help of someone outside of your company > or a system sitting at your home which is connected to the > Internet you could use an SSL tunnel or an SSH tunnel or ... > ... provided that ports 443 or 22 are permitted, that is. Unfortunatly I don't have access to inet from home. > But how happy do you think your admin will be if he ever finds out? He even doesn't know, that I'm connected to inet :-) It is forbidden here to be connected to local company network, and to inet as well, via machine, on which one has root rights. But I have root rights on my machine, that's why my machine has not been configured to use network. So I did that. And now everything is fine except 5999 port. -- Igor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 7:10:39 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67AFE37B401 for ; Fri, 28 Feb 2003 07:10:37 -0800 (PST) Received: from freebsd.org.ru (www.freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1354843FA3 for ; Fri, 28 Feb 2003 07:10:36 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id A0B5823A; Fri, 28 Feb 2003 18:10:33 +0300 (MSK) Date: Fri, 28 Feb 2003 18:10:33 +0300 From: "Sergey A. Osokin" To: Igor Pokrovsky Cc: stable@freebsd.org Subject: Re: problems with getting through firewall using CVSup Message-ID: <20030228151033.GE424@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: <200302281442.h1SEg0RV042490@hugo10.ka.punkt.de> <3E5F77B4.4392E9FD@cnrm.meteo.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E5F77B4.4392E9FD@cnrm.meteo.fr> 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, Feb 28, 2003 at 03:52:36PM +0100, Igor Pokrovsky wrote: > Patrick M. Hausen wrote: > > Sergey Osokin wrote: > > > > > > Is there any way to make it work? > > > > To fool firewall? > > > > > > Yes, looks like a bad/fool/stupid firewall administriva. > > > > I know, there are lots of companies that permit any inside > > initiated TCP connection. I'd call this stupid if not > > explicitly decided upon and documented. > Yes. I agree, maybe this is a good policy. And moreover > I think that they closed port 5999 on firewall because > of my activities :-) Perhaps they thought that I'm trying > do something, which will break their security. Maybe because > port number is not very popular :-) > > > And last - maybe they are running a strict application level > > gateway like Gauntlet or Sidewinder? If this is the case the > > admin must define a custom TCP proxy for CVSup, first. > No. Fortunatly. Last idea is use CTM. AFAIK your system administrator think that 25 port is much more popular for you and other users :-) -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 7:13:57 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43B4837B401 for ; Fri, 28 Feb 2003 07:13:56 -0800 (PST) Received: from vivaldi.meteo.fr (vivaldi.meteo.fr [137.129.28.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB2E343FAF for ; Fri, 28 Feb 2003 07:13:54 -0800 (PST) (envelope-from igor.pokrovsky@cnrm.meteo.fr) Received: from cti825.cnrm.meteo.fr (localhost.meteo.fr [127.0.0.1]) by vivaldi.meteo.fr (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id PAA04353 for ; Fri, 28 Feb 2003 15:13:35 GMT Received: from xdata.cnrm.meteo.fr (xdata.cnrm.meteo.fr [137.129.150.2]) by cti825.cnrm.meteo.fr (8.9.3 (PHNE_18546)/8.9.3) with ESMTP id QAA16077; Fri, 28 Feb 2003 16:13:08 +0100 (MET) Received: from cnrm.meteo.fr (mai3.cnrm.meteo.fr [137.129.157.34]) by xdata.cnrm.meteo.fr with ESMTP (8.9.3 (PHNE_18546)/8.7.1) id QAA24233; Fri, 28 Feb 2003 16:13:08 +0100 (MET) Message-ID: <3E5F7C82.9A9EA6CD@cnrm.meteo.fr> Date: Fri, 28 Feb 2003 16:13:06 +0100 From: Igor Pokrovsky X-Mailer: Mozilla 4.06 [en] (X11; I; HP-UX B.10.20 9000/780) MIME-Version: 1.0 To: osa@freebsd.org.ru Cc: stable@freebsd.org Subject: Re: problems with getting through firewall using CVSup References: <200302281442.h1SEg0RV042490@hugo10.ka.punkt.de> <3E5F77B4.4392E9FD@cnrm.meteo.fr> <20030228151033.GE424@freebsd.org.ru> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-AntiVirus: scanned for viruses by AMaViS 0.2.1 (cti825/CNRM) Organization: METEO FRANCE(CNRM) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sergey A. Osokin wrote: > > On Fri, Feb 28, 2003 at 03:52:36PM +0100, Igor Pokrovsky wrote: > > Patrick M. Hausen wrote: > > > Sergey Osokin wrote: > > > > > > > > Is there any way to make it work? > > > > > To fool firewall? > > > > > > > > Yes, looks like a bad/fool/stupid firewall administriva. > > > > > > I know, there are lots of companies that permit any inside > > > initiated TCP connection. I'd call this stupid if not > > > explicitly decided upon and documented. > > Yes. I agree, maybe this is a good policy. And moreover > > I think that they closed port 5999 on firewall because > > of my activities :-) Perhaps they thought that I'm trying > > do something, which will break their security. Maybe because > > port number is not very popular :-) > > > > > And last - maybe they are running a strict application level > > > gateway like Gauntlet or Sidewinder? If this is the case the > > > admin must define a custom TCP proxy for CVSup, first. > > No. Fortunatly. > > Last idea is use CTM. AFAIK your system administrator think > that 25 port is much more popular for you and other users :-) It seems to me that yes. But can I get whole repository with CTM, as I did with cvsup? -- Igor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 7:18:23 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9750B37B401 for ; Fri, 28 Feb 2003 07:18:21 -0800 (PST) Received: from freebsd.org.ru (freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id E392B43FE1 for ; Fri, 28 Feb 2003 07:18:20 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id F05FD249; Fri, 28 Feb 2003 18:18:19 +0300 (MSK) Date: Fri, 28 Feb 2003 18:18:19 +0300 From: "Sergey A. Osokin" To: Igor Pokrovsky Cc: stable@freebsd.org Subject: Re: problems with getting through firewall using CVSup Message-ID: <20030228151819.GF424@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: <200302281442.h1SEg0RV042490@hugo10.ka.punkt.de> <3E5F77B4.4392E9FD@cnrm.meteo.fr> <20030228151033.GE424@freebsd.org.ru> <3E5F7C82.9A9EA6CD@cnrm.meteo.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E5F7C82.9A9EA6CD@cnrm.meteo.fr> 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, Feb 28, 2003 at 04:13:06PM +0100, Igor Pokrovsky wrote: > Sergey A. Osokin wrote: > > On Fri, Feb 28, 2003 at 03:52:36PM +0100, Igor Pokrovsky wrote: > > > Patrick M. Hausen wrote: > > > > Sergey Osokin wrote: > > > > > > > > > > Is there any way to make it work? > > > > > > To fool firewall? > > > > > > > > > > Yes, looks like a bad/fool/stupid firewall administriva. > > > > > > > > I know, there are lots of companies that permit any inside > > > > initiated TCP connection. I'd call this stupid if not > > > > explicitly decided upon and documented. > > > Yes. I agree, maybe this is a good policy. And moreover > > > I think that they closed port 5999 on firewall because > > > of my activities :-) Perhaps they thought that I'm trying > > > do something, which will break their security. Maybe because > > > port number is not very popular :-) > > > > > > > And last - maybe they are running a strict application level > > > > gateway like Gauntlet or Sidewinder? If this is the case the > > > > admin must define a custom TCP proxy for CVSup, first. > > > No. Fortunatly. > > > > Last idea is use CTM. AFAIK your system administrator think > > that 25 port is much more popular for you and other users :-) > > It seems to me that yes. But can I get whole repository with CTM, > as I did with cvsup? Just look at ctm(1) and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ctm.html -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 7:35:38 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7454537B401 for ; Fri, 28 Feb 2003 07:35:37 -0800 (PST) Received: from tensor.xs4all.nl (tensor.xs4all.nl [194.109.160.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id B115443F75 for ; Fri, 28 Feb 2003 07:35:36 -0800 (PST) (envelope-from dim@xs4all.nl) Received: from kilgore.dim (kilgore.dim [192.168.0.3]) (using TLSv1 with cipher DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by tensor.xs4all.nl (Postfix) with ESMTP id A80CF555A; Fri, 28 Feb 2003 16:35:34 +0100 (CET) Date: Fri, 28 Feb 2003 16:35:26 +0100 From: Dimitry Andric X-Mailer: The Bat! (v1.63 Beta/7) Business X-Priority: 3 (Normal) Message-ID: <6217745446.20030228163526@xs4all.nl> To: Quincey Koziol Cc: stable@FreeBSD.ORG Subject: Re: Problem with telnet In-Reply-To: <200302281436.h1SEaRL07162@eirene.ncsa.uiuc.edu> References: <200302281436.h1SEaRL07162@eirene.ncsa.uiuc.edu> 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 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2003-02-28 at 15:36:27 Quincey Koziol wrote: QK> I updated my machine to the latest stable source yesterday (2/27/03) and ===snip=== QK> /usr/libexec/ld-elf.so.1: /usr/lib/libkrb.so.3: Undefined symbol "_ossl_old_des_set_key" You probably need to recompile your heimdal port. OpenSSL has been updated in the base system (as you can read in /usr/src/UPDATING :). Cheers, - -- Dimitry Andric PGP Key: http://www.xs4all.nl/~dim/dim.asc Fingerprint: 7AB462D2CE35FC6D42394FCDB05EA30A2E2096A3 Lbh whfg ivbyngrq gur QZPN naq jvyy or cebfrphgrq -----BEGIN PGP SIGNATURE----- Version: 6.5.8ckt http://www.ipgpp.com/ Comment: http://duncan.gn.apc.org/stoa_cover.htm iQA/AwUBPl9zs7BeowouIJajEQKvwQCfXtVWUt6gqLjHVU58FCOI7IyjpToAn1YA oxsYimB1zDUdYUnl+U8i36V6 =v17g -----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 Fri Feb 28 7:43:42 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB7D437B401 for ; Fri, 28 Feb 2003 07:43:40 -0800 (PST) Received: from smtpproxy2.mitre.org (smtpproxy2.mitre.org [192.80.55.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id A61EF43F75 for ; Fri, 28 Feb 2003 07:43:36 -0800 (PST) (envelope-from jandrese@mitre.org) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy2.mitre.org (8.11.3/8.11.3) with ESMTP id h1SFhAc12462; Fri, 28 Feb 2003 10:43:10 -0500 (EST) Received: from MAILHUB1 (mailhub1.mitre.org [129.83.20.31]) by smtpsrv1.mitre.org (8.11.3/8.11.3) with ESMTP id h1SFh9i17302; Fri, 28 Feb 2003 10:43:09 -0500 (EST) Received: from unity-18-93.mitre.org (129.83.18.93) by mailhub1.mitre.org with SMTP id 1328304; Fri, 28 Feb 2003 10:43:06 -0500 Message-ID: <3E5F8387.7000906@mitre.org> Date: Fri, 28 Feb 2003 10:43:03 -0500 From: Jason Andresen User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3b) Gecko/20030210 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Patrick M. Hausen" Cc: Igor Pokrovsky , stable@freebsd.org Subject: Re: problems with getting through firewall using CVSup References: <200302281459.h1SExCGf042941@hugo10.ka.punkt.de> In-Reply-To: <200302281459.h1SExCGf042941@hugo10.ka.punkt.de> 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 Patrick M. Hausen wrote: > > Please, people! If Port 5999 is blocked, the responsible person > doesn't want you to use CVSup. You will have to clear that issue. If port 5999 is blocked, chances are your firewall admin doesn't even know what CVSup is. If you send him an email he'll probably open it for you. Make it clear that opening port 5999 allows you to more easily keep your boxes up to date and more quickly respond to security vulnerabilities on your systems. Your firewall admin knows that security comes in layers and shouldn't be adverse to you keeping your systems secure. -- \ |_ _|__ __|_ \ __| Jason Andresen jandrese@mitre.org |\/ | | | / _| Network and Distributed Systems Engineer _| _|___| _| _|_\___| Office: 703-883-7755 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 7:45: 0 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0B5737B401 for ; Fri, 28 Feb 2003 07:44:57 -0800 (PST) Received: from amgraf.com (ns1.amgraf.com [216.62.94.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A24A43F93 for ; Fri, 28 Feb 2003 07:44:56 -0800 (PST) (envelope-from huver@amgraf.com) Received: by amgraf.com id JAA02094 for freebsd-stable@freebsd.org; Fri, 28 Feb 2003 09:42:48 -0600 (CST) Date: Fri, 28 Feb 2003 09:42:48 -0600 (CST) From: huver@amgraf.com (Huver) Reply-To: huver@amgraf.com Message-Id: <200302281542.JAA02094@amgraf.com> To: freebsd-stable@freebsd.org Subject: 4.8 PreRelease 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 I suppose this list is "the right place"? 4.8 pre-release problems: A. The new "__stdinp, __stdoutp, __stderrp" in is causing major problems for 3.x binaries. E.g. such a binary uses compat/libc.so.3, but also libm.so.2 -- the latter includes but has no compat version. All /usr/lib/lib*.so that have no compat version, but include the new , cause this problem. B. The change to "UPACKED" structs in causes existing binaries that do ioctl() -- the only way to obtain any USB dev info -- to fail. Those structures have never been declared packed before, and now suddenly changed size and/or memer alignment. BTW, I made the mistake of cvsup'ing to RELENG_4 from a 4.6.2, thinking I was updating to 4.7, now I'll have to back down to 4.7+post-patches. I'm entering a reqeust now: in the future, "pre-release" be made a new, short- lived branch (delete it after the release is cut), but OFF the stable branch. -huver huver@amgraf.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 7:48:34 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0A8C37B401 for ; Fri, 28 Feb 2003 07:48:32 -0800 (PST) Received: from mserver2.gmu.edu (mail02.gmu.edu [129.174.0.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B48C43F85 for ; Fri, 28 Feb 2003 07:48:31 -0800 (PST) (envelope-from sbernard@gmu.edu) Received: from gmu.edu ([141.156.239.170]) by mserver2.gmu.edu (Netscape Messaging Server 4.15) with ESMTP id HB0ZWT00.3UV for ; Fri, 28 Feb 2003 10:48:29 -0500 Message-ID: <3E5F852D.1080301@gmu.edu> Date: Fri, 28 Feb 2003 10:50:05 -0500 From: "Steve Bernard" Organization: George Mason University User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.2.1) Gecko/20021130 X-Accept-Language: en-us, en MIME-Version: 1.0 To: stable@FreeBSD.ORG Subject: Re: problems with getting through firewall using CVSup References: <200302281442.h1SEg0RV042490@hugo10.ka.punkt.de> <3E5F77B4.4392E9FD@cnrm.meteo.fr> In-Reply-To: <3E5F77B4.4392E9FD@cnrm.meteo.fr> 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 could funnel your CVS traffic through an open port like 80 or 22 or tunnel it inside of HTTP or SSH, but this will require a gateway on the outside, or someone running a CVS repository on one of those ports. If you think that the fw admins watch their logs and traffic patterns then you're likely to get caught either way. If you've been going to long lengths to circumvent their security then they're more likely to take issue with you. If it's an ISP, try talking to them and explaining the neccessity of what you want to do. If you're at work, do the same but make a business case for it. This way, if the fw admins are unreasonable maybe a manager will be more willing to listen. If it's a bandwidth utilization issue, try throttling your bandwidth using something like AltQ, or schedule your CVS updates for off-hours. If you make the fw admins mad you may experience "unexplainable" network outages or packet loss ;) Steve Igor Pokrovsky wrote: > Patrick M. Hausen wrote: > >>Hi! >>Sergey Osokin wrote: >> >> >>>>Is there any way to make it work? >>>>To fool firewall? >>> >>>Yes, looks like a bad/fool/stupid firewall administriva. >> >>No. This looks exactly like the correct way to implement >>a firewall. >> >>Everything which is not on the "explicitly permitted" list >>is denied by default. >> >>So users tring new and "interesting" protocols and services >>have to check if what they are trying to do is in accordance >>with the security policy first. >> >>I know, there are lots of companies that permit any inside >>initiated TCP connection. I'd call this stupid if not >>explicitly decided upon and documented. > > Yes. I agree, maybe this is a good policy. And moreover > I think that they closed port 5999 on firewall because > of my activities :-) Perhaps they thought that I'm trying > do something, which will break their security. Maybe because > port number is not very popular :-) > > >>And last - maybe they are running a strict application level >>gateway like Gauntlet or Sidewinder? If this is the case the >>admin must define a custom TCP proxy for CVSup, first. > > No. Fortunatly. > > But is there any way to do anything without asking firewall > admin to open 5999 port? > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 7:54:52 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4199537B401 for ; Fri, 28 Feb 2003 07:54:50 -0800 (PST) Received: from kanga.honeypot.net (kanga.honeypot.net [208.162.254.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C70F43F85 for ; Fri, 28 Feb 2003 07:54:49 -0800 (PST) (envelope-from kirk@strauser.com) Received: from pooh.strauser.com (kirk@pooh.honeypot.net [10.0.5.128]) by kanga.honeypot.net (8.12.7/8.12.7) with ESMTP id h1SFslxc081677 for ; Fri, 28 Feb 2003 09:54:47 -0600 (CST) (envelope-from kirk@strauser.com) To: freebsd-stable@freebsd.org Subject: Re: Problem with telnet From: Kirk Strauser Date: Fri, 28 Feb 2003 09:54:43 -0600 In-Reply-To: <200302281436.h1SEaRL07162@eirene.ncsa.uiuc.edu> (Quincey Koziol's message of "Fri, 28 Feb 2003 08:36:27 -0600 (CST)") Message-ID: <87n0kge6yk.fsf@strauser.com> Lines: 13 X-Mailer: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <200302281436.h1SEaRL07162@eirene.ncsa.uiuc.edu> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-=-= Content-Transfer-Encoding: quoted-printable At 2003-02-28T14:36:27Z, Quincey Koziol writes: > I updated my machine to the latest stable source yesterday (2/27/03) and > I'm now getting this message when [attempting to] telneting into it: On a side note, if you're interested enough in security to deal with Kerberos, you should permanently lose telnet. Seriously. SSH does everything telnet will and doesn't have the gaping security hole of transferring plaintext data across a network. =2D-=20 Kirk Strauser In Googlis non est, ergo non est. --=-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQA+X4ZH5sRg+Y0CpvERAlTEAJ9l3EJfoo/bFmZzCJ2thlEQ80Y05QCfTZx4 xgiVeEyd7VsOnCkzabjiE7I= =tcJW -----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 Fri Feb 28 7:59:54 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ACCD37B401 for ; Fri, 28 Feb 2003 07:59:53 -0800 (PST) Received: from hugo10.ka.punkt.de (kagate.punkt.de [217.29.33.131]) by mx1.FreeBSD.org (Postfix) with SMTP id CF9B243F93 for ; Fri, 28 Feb 2003 07:59:51 -0800 (PST) (envelope-from hausen@punkt.de) Received: from hugo10.ka.punkt.de (localhost [127.0.0.1]) by hugo10.ka.punkt.de (8.12.3/8.12.3) with ESMTP id h1SFxnXR044387; Fri, 28 Feb 2003 16:59:50 +0100 (CET) (envelope-from ry93@hugo10.ka.punkt.de) Received: (from ry93@localhost) by hugo10.ka.punkt.de (8.12.3/8.12.3/Submit) id h1SFxn6k044386; Fri, 28 Feb 2003 16:59:49 +0100 (CET) From: "Patrick M. Hausen" Message-Id: <200302281559.h1SFxn6k044386@hugo10.ka.punkt.de> Subject: Re: Problem with telnet In-Reply-To: <87n0kge6yk.fsf@strauser.com> To: Kirk Strauser Date: Fri, 28 Feb 2003 16:59:49 +0100 (CET) Cc: freebsd-stable@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL92 (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 Hello! Kirk Strauser wrote: > > I updated my machine to the latest stable source yesterday (2/27/03) and > > I'm now getting this message when [attempting to] telneting into it: > > On a side note, if you're interested enough in security to deal with > Kerberos, you should permanently lose telnet. Seriously. SSH does > everything telnet will and doesn't have the gaping security hole of > transferring plaintext data across a network. I can think of a setup where the possibility of bugs in the much more complex sshd application outweighs the remote chance of someone sniffing by quite a margin. Think of ISP infrastructure, a switched network completely under your control. OpenSSH has had its share of security holes and while I generally agree with you that it's a good idea to use ssh where appropriate, I don't share the general "telnet is bad because it's plain text hysteria" ;-) Just my $.02 Patrick M. Hausen Technical Director -- punkt.de GmbH Internet - Dienstleistungen - Beratung Scheffelstr. 17 a Tel. 0721 9109 -0 Fax: -100 76135 Karlsruhe http://punkt.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 8:26:24 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04AEB37B405 for ; Fri, 28 Feb 2003 08:26:23 -0800 (PST) Received: from mailb.telia.com (mailb.telia.com [194.22.194.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEF0843F3F for ; Fri, 28 Feb 2003 08:26:21 -0800 (PST) (envelope-from home@jukkis.net) Received: from d1o989.telia.com (d1o989.telia.com [213.65.228.241]) by mailb.telia.com (8.12.5/8.12.5) with ESMTP id h1SGQK2X008888 for ; Fri, 28 Feb 2003 17:26:20 +0100 (CET) X-Original-Recipient: Received: from sjukebox.js.serverbox.org (h80n2fls32o989.telia.com [217.208.125.80]) by d1o989.telia.com (8.10.2/8.10.1) with ESMTP id h1SGQJB02165 for ; Fri, 28 Feb 2003 17:26:20 +0100 (CET) Subject: Re: problems with getting through firewall using CVSup From: Jukka Simila To: stable@FreeBSD.ORG Content-Type: text/plain Organization: Message-Id: <1046449628.596.15.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.0 Date: 28 Feb 2003 17:27:08 +0100 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, 2003-02-28 at 15:59, Patrick M. Hausen wrote: > Hi! > > > But is there any way to do anything without asking firewall > > admin to open 5999 port? > > No, there is not. Well, there is, sort of ... > > Please, people! If Port 5999 is blocked, the responsible person > doesn't want you to use CVSup. You will have to clear that issue. Or, the responsible people dont know how to configure a firewall, so they block everything except 80 and 443, like they do where I work. (well, I haven't gone through every port but it seems this is close to truth) No problem for me, I've got ssh listening on port 443 at home and I'm running basically everything through a tunnel, including an X session :) > Of course with the help of someone outside of your company > or a system sitting at your home which is connected to the > Internet you could use an SSL tunnel or an SSH tunnel or ... > ... provided that ports 443 or 22 are permitted, that is. > > But how happy do you think your admin will be if he ever finds out? The guys who installed Win2000 as a proxy server since they couldn't figure out how to use the Linux proxy that someone had installed there? (There was nothing wrong with the proxy, they just didn't know if it was working or not..) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 8:35:20 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A24F237B401 for ; Fri, 28 Feb 2003 08:35:18 -0800 (PST) Received: from falcon.midgard.homeip.net (h76n3fls20o913.telia.com [213.67.148.76]) by mx1.FreeBSD.org (Postfix) with SMTP id 68C5A43F75 for ; Fri, 28 Feb 2003 08:35:16 -0800 (PST) (envelope-from ertr1013@student.uu.se) Received: (qmail 6736 invoked by uid 1001); 28 Feb 2003 16:35:14 -0000 Date: Fri, 28 Feb 2003 17:35:14 +0100 From: Erik Trulsson To: Huver Cc: freebsd-stable@freebsd.org Subject: Re: 4.8 PreRelease problems Message-ID: <20030228163514.GA6679@falcon.midgard.homeip.net> Mail-Followup-To: Huver , freebsd-stable@freebsd.org References: <200302281542.JAA02094@amgraf.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302281542.JAA02094@amgraf.com> User-Agent: Mutt/1.5.3i Sender: owner-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, Feb 28, 2003 at 09:42:48AM -0600, Huver wrote: > BTW, I made the mistake of cvsup'ing to RELENG_4 from a 4.6.2, thinking I > was updating to 4.7, now I'll have to back down to 4.7+post-patches. I'm > entering a reqeust now: in the future, "pre-release" be made a new, short- > lived branch (delete it after the release is cut), but OFF the stable branch. Why? The only difference between 4.7-stable and 4.8-prerelease is the name. I.e. a system running 4.7-stable and one running 4.8-prerelease are both just running snapshots of RELENG_4 from somwehere in time between 4.7-RELEASE and and 4.8-RELEASE. After 4.8 is released the name of the RELENG_4 branch will be changed to 4.8-STABLE, but the name change itself does not denote any changes in the code. One could of course imagine not changing the name that is reported by uname -a, but that the only thing that would accomplish is to avoid questions from people that are surprised when they get 4.8-prerelease when they expected 4.7-stable. This is just a problem with faulty expectations and not with the naming scheme itself. If it is really 4.7-release you wanted, then RELENG_4 is the wrong branch, and RELENG_4_7 is probably what you want (4.7-release + critical patches.) -- 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 Fri Feb 28 8:42:59 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6431937B401 for ; Fri, 28 Feb 2003 08:42:58 -0800 (PST) Received: from maile.telia.com (maile.telia.com [194.22.190.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E02543FAF for ; Fri, 28 Feb 2003 08:42:57 -0800 (PST) (envelope-from home@jukkis.net) Received: from d1o989.telia.com (d1o989.telia.com [213.65.228.241]) by maile.telia.com (8.12.5/8.12.5) with ESMTP id h1SGgsGc021632; Fri, 28 Feb 2003 17:42:54 +0100 (CET) X-Original-Recipient: freebsd-stable@FreeBSD.ORG Received: from sjukebox.js.serverbox.org (h80n2fls32o989.telia.com [217.208.125.80]) by d1o989.telia.com (8.10.2/8.10.1) with ESMTP id h1SGgrB08154; Fri, 28 Feb 2003 17:42:53 +0100 (CET) Subject: Re: 4.8 PreRelease problems From: Jukka Simila To: huver@amgraf.com Cc: freebsd-stable@FreeBSD.ORG In-Reply-To: <200302281542.JAA02094@amgraf.com> References: <200302281542.JAA02094@amgraf.com> Content-Type: text/plain Organization: Message-Id: <1046450622.596.32.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.0 Date: 28 Feb 2003 17:43:42 +0100 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, 2003-02-28 at 16:42, Huver wrote: > BTW, I made the mistake of cvsup'ing to RELENG_4 from a 4.6.2, thinking I > was updating to 4.7, now I'll have to back down to 4.7+post-patches. I'm > entering a reqeust now: in the future, "pre-release" be made a new, short- > lived branch (delete it after the release is cut), but OFF the stable branch. mmm.. I think you have mistaken about the branching thingie badly.. (which is such a complicated thing that I'm not going to explain it, I'd just make too many mistakes. I'll leave that to the experts :) Afaik, you have never been able to get 4.7 by cvsupping RELENG_4, except for a very short period around the date of 4.7-release. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 9:15:42 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA13137B401; Fri, 28 Feb 2003 09:15:39 -0800 (PST) Received: from netbsd.xinetd.com (sc-66-75-77-250.socal.rr.com [66.75.77.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F2EF43FBD; Fri, 28 Feb 2003 09:15:39 -0800 (PST) (envelope-from gross@xinetd.com) Received: from xinetd.com (gospel.xinetd.com [192.168.2.177]) by netbsd.xinetd.com (8.12.6/8.9.1) with ESMTP id h1SHFZNL010882; Fri, 28 Feb 2003 09:15:35 -0800 (PST) Message-ID: <3E5F9938.5060609@xinetd.com> Date: Fri, 28 Feb 2003 09:15:36 -0800 From: "Glendon M. Gross" Reply-To: gross@xinetd.ath.cx Organization: Xinetd Communications User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.2.1) Gecko/20021130 X-Accept-Language: en-us, en MIME-Version: 1.0 To: HiTech Creations Support Cc: freebsd-stable@FreeBSD.ORG, nectar@FreeBSD.ORG Subject: Re: Buildworld problem References: <004f01c2deb4$e97406d0$050000c0@Skuzzy> In-Reply-To: <004f01c2deb4$e97406d0$050000c0@Skuzzy> 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 I could be mistaken, but my impression is that crypto code seems to often screw up the build process. I'm not sure if this is because the crypto code is restricted due to a need for the environment variable USA_RESIDENT to be set to "YES", or because crypto sources and crypto licensing seems to have a history of instability. Somtimes I feel like going back to FreeBSD 3.x because when I ran it I didn't have to worry about OpenSSL, OpenSSH, /dev/random, PAM, etc. and whether they were going to break the build process. The whole system seemed cleaner and contained less extraneous garbage. Regards, Glendon Gross HiTech Creations Support wrote: > We have been working with Martin concerning a problem we are having with > MySQL. He had us install source from RELENG_4 and then patch the kernel. > > The patches to the kernel are fine and we can build the kernel, however we > cannot do a "make buildworld" due to errors in openssh. > > Here are the particulars: > We started with STABLE4.6 and I did a CVSup using the following supfile. > *default host=cvsup10.FreeBSD.org > *default base=/usr > *default prefix=/usr > *default release=cvs tag=RELENG_4 > *default delete use-rel-suffix > src-all > src-crypto > src-eBones > src-secure > > I did a build and install of /usr/src/include and /usr/src/share/mk > > During the 'make buildworld' the following errors occurred: > mkdep -f > epend -a -I/usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh > /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c > /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:61: openssl/dsa.h: No such > file or directory. > /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:62: openssl/evp.h: No such > file or directory > In file included from /usr/src/lib/libpam/moduels/pam_ssh/pam_ssh.c:64: > /usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh/key.h:29: > openssl/rsa.h: No such file or directory > /usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh/key.h:30: > openssl/dsa.h: No such file or directory > > I am in a pretty desparate situation as we need to get this server back > online as it is a production server. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 9:30:14 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C29737B401 for ; Fri, 28 Feb 2003 09:30:12 -0800 (PST) Received: from mail.nsu.ru (mx.nsu.ru [193.124.215.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CE0C43FBD for ; Fri, 28 Feb 2003 09:30:11 -0800 (PST) (envelope-from fjoe@iclub.nsu.ru) Received: from drweb by mail.nsu.ru with drweb-scanned (Exim 3.20 #1) id 18ooKk-0004zj-00; Fri, 28 Feb 2003 23:30:06 +0600 Received: from iclub.nsu.ru ([193.124.215.97] ident=root) by mail.nsu.ru with esmtp (Exim 3.20 #1) id 18ooKj-0004z7-00; Fri, 28 Feb 2003 23:30:05 +0600 Received: from iclub.nsu.ru (fjoe@localhost [127.0.0.1]) by iclub.nsu.ru (8.12.6/8.12.6) with ESMTP id h1SHTmRV005116; Fri, 28 Feb 2003 23:29:48 +0600 (NS) (envelope-from fjoe@iclub.nsu.ru) Received: (from fjoe@localhost) by iclub.nsu.ru (8.12.6/8.12.6/Submit) id h1SHTlpC005115; Fri, 28 Feb 2003 23:29:47 +0600 (NS) Date: Fri, 28 Feb 2003 23:29:47 +0600 From: Max Khon To: Huver Cc: freebsd-stable@freebsd.org Subject: Re: 4.8 PreRelease problems Message-ID: <20030228232946.A4987@iclub.nsu.ru> References: <200302281542.JAA02094@amgraf.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200302281542.JAA02094@amgraf.com>; from huver@amgraf.com on Fri, Feb 28, 2003 at 09:42:48AM -0600 X-Spam-Status: No, hits=-3.6 required=5.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_01_02, TO_LOCALPART_EQ_REAL,USER_AGENT,USER_AGENT_MUTT version=2.43 X-Envelope-To: huver@amgraf.com, freebsd-stable@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 hi, there! > I suppose this list is "the right place"? > > 4.8 pre-release problems: > > A. The new "__stdinp, __stdoutp, __stderrp" in is causing major > problems for 3.x binaries. E.g. such a binary uses compat/libc.so.3, > but also libm.so.2 -- the latter includes but has no compat > version. All /usr/lib/lib*.so that have no compat version, but include > the new , cause this problem. you need to set COMPAT3X= yes in /etc/make.conf /fjoe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:16:10 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 301F637B40F for ; Fri, 28 Feb 2003 11:15:47 -0800 (PST) Received: from noao.edu (email.tuc.noao.edu [140.252.1.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AEF144412 for ; Fri, 28 Feb 2003 11:11:58 -0800 (PST) (envelope-from grandi@noao.edu) Received: from rigel.tuc.noao.edu ([140.252.1.16] verified) by noao.edu (CommuniGate Pro SMTP 4.0.3) with ESMTP-TLS id 6636355 for freebsd-stable@freebsd.org; Fri, 28 Feb 2003 12:11:58 -0700 Date: Fri, 28 Feb 2003 12:11:57 -0700 (US Mountain Standard Time) From: Steve Grandi To: freebsd-stable@freebsd.org Subject: hyperthreading in STABLE: should machdep.cpu_idle_hlt be on? Message-ID: X-X-Sender: grandi@email.noao.edu 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've brought up STABLE on a Supermicro X5DPR-8G2+ motherboard which has two 2.4GHz Xeons. In the BIOS setup, I disabled hyperthreading. The BIOS even prints out a nice message during the POST that hyperthreading is disabled. The BIOS setting notwithstanding, STABLE fires up hyperthreading and presents me with 4 cpus! OK, I will go with the flow: but what is the current wisdom about machdep.cpu_idle_hlt? Should I set it to 1 to avoid a loss of performance and to avoid frying the box? -- Steve Grandi National Optical Astronomy Observatory/AURA Inc., Tucson AZ USA Internet: grandi@noao.edu Voice: +1 520 318-8228 FAX: +1 520 318-8360 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:16:19 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB41137B4F3 for ; Fri, 28 Feb 2003 11:15:48 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEBD24426A for ; Fri, 28 Feb 2003 10:36:28 -0800 (PST) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id 6BE6244; Fri, 28 Feb 2003 12:36:28 -0600 (CST) Received: by madman.celabo.org (Postfix, from userid 1001) id 5526E78C3E; Fri, 28 Feb 2003 12:36:28 -0600 (CST) Date: Fri, 28 Feb 2003 12:36:28 -0600 From: "Jacques A. Vidrine" To: Dimitry Andric Cc: Quincey Koziol , stable@FreeBSD.ORG Subject: Re: Problem with telnet Message-ID: <20030228183628.GA64724@madman.celabo.org> References: <200302281436.h1SEaRL07162@eirene.ncsa.uiuc.edu> <6217745446.20030228163526@xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6217745446.20030228163526@xs4all.nl> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.3i-ja.1 Sender: owner-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, Feb 28, 2003 at 04:35:26PM +0100, Dimitry Andric wrote: > QK> /usr/libexec/ld-elf.so.1: /usr/lib/libkrb.so.3: Undefined symbol "_ossl_old_des_set_key" > > You probably need to recompile your heimdal port. OpenSSL has been > updated in the base system (as you can read in /usr/src/UPDATING :). It not to do with Heimdal ... that is /usr/lib/lib _krb_ .so.3, a part of Kerberos IV. Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:16:34 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23A2537B4EB; Fri, 28 Feb 2003 11:15:48 -0800 (PST) Received: from gilliam.users.flyingcroc.net (gilliam.users.flyingcroc.net [207.246.128.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id E37554436F; Fri, 28 Feb 2003 11:01:13 -0800 (PST) (envelope-from joek@mail.flyingcroc.net) Received: from mail.flyingcroc.net (zircon.staff.flyingcroc.net [207.246.150.92]) by gilliam.users.flyingcroc.net (8.9.3/8.9.3) with ESMTP id LAA37335; Fri, 28 Feb 2003 11:01:13 -0800 (PST) Message-ID: <3E5FB1F8.4050405@mail.flyingcroc.net> Date: Fri, 28 Feb 2003 11:01:12 -0800 From: Joe Kelsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2.1) Gecko/20030219 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD GNOME , freebsd-stable , freebsd-ports Subject: WARNING: portupgrade considered harmful 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 Some time ago, the maintainers of the pkgtools slipped a new ability into portupgrade: the ability to silently move "obsolete" shared libraries into /usr/local/lib/compat/pkg. This so-called "feature" has caused me no end of trouble in the last few days. The problem is that the "feature" interacts very badly with the fundamental purpose of portupgrade, which is to detect out-of-date packages and aid in automatically upgrading them. Unfortunately, the presence of all of the obsolete libraries accumulating in the compat/pkg directory only serves to prevent protupgrade from fulfilling its mission because ld will silently use old, obsolete libraries instead of the new libraries! I have carefully followed recommendations for upgrading various components on my system, only to discover that the upgrade process has been foiled by this "feature". For instalce, Xft used to be available in two versions, Xft and Xft2. Joe Marcus Clarke was careful to warn everyone when Xft2 replaced Xft to do "portupgrade -fr Xft" to force reinstallation of Xft, replacing the now obsolete Xft2 with a newversion of the Xft library and forcing all applications to relink. Well, due to the fact that portupgrade silently placed Xft2 in the compat/pkg directory, this did not happen! I was left with references to the obsoloet Xft2 *along side* the correct reference to Xft in binaries! The only way to rid myself of this was to delete the compat/pkg directory and them start all over with the entire portupgrade sequence. Now, I am left with having to do the whole thing all over due to bad references to libintl.so.2 instead of libintl.so.4. The portupgrade maintainers have perpetrated a disaster in the making on a lot of unsuspecting people. I recommend that everyone edit their /usr/local/etc/pkgtools.conf files and add -u to the default portupgrade switches to prevent this from happening. You may also need to audit all of your binaries for stale library references. This could be a cause of the problems that many seem to have with the Xft-enabled Mozilla. /Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:16:35 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4D3F37B61A for ; Fri, 28 Feb 2003 11:15:51 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1785D4426D for ; Fri, 28 Feb 2003 10:37:38 -0800 (PST) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id A9D0844; Fri, 28 Feb 2003 12:37:37 -0600 (CST) Received: by madman.celabo.org (Postfix, from userid 1001) id A376E78C3E; Fri, 28 Feb 2003 12:37:37 -0600 (CST) Date: Fri, 28 Feb 2003 12:37:37 -0600 From: "Jacques A. Vidrine" To: Quincey Koziol Cc: stable@freebsd.org Subject: Re: Problem with telnet Message-ID: <20030228183737.GB64724@madman.celabo.org> References: <200302281436.h1SEaRL07162@eirene.ncsa.uiuc.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302281436.h1SEaRL07162@eirene.ncsa.uiuc.edu> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.3i-ja.1 Sender: owner-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, Feb 28, 2003 at 08:36:27AM -0600, Quincey Koziol wrote: > Hi all, > I updated my machine to the latest stable source yesterday (2/27/03) and > I'm now getting this message when [attempting to] telneting into it: > > Trying 141.142.xx.xx... > Connected to sleipnir.ncsa.uiuc.edu (141.142.xx.xx). > Escape character is '^]'. > [ Kerberos V5 accepts you as ``koziol@NCSA.EDU'' ] > [ Kerberos V5 accepted forwarded credentials ] > > *** Connection not encrypted! Communication may be eavesdropped. *** > /usr/libexec/ld-elf.so.1: /usr/lib/libkrb.so.3: Undefined symbol "_ossl_old_des_set_key" > Connection closed by foreign host. > > I've got "MAKE_KERBEROS4= yes" in my /etc/make.conf, but not > "MAKE_KERBEROS5= yes" (since I've installed the heimdal port). Could this be > related to the problem? Depends on what telnet and what telnetd you are using. Please try to provide as much information as you can. Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:22:35 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 361B537B401; Fri, 28 Feb 2003 11:22:34 -0800 (PST) Received: from mail.karamazov.org (h162-040-089-010.adsl.navix.net [162.40.89.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACA9843F85; Fri, 28 Feb 2003 11:22:32 -0800 (PST) (envelope-from smoberly@karamazov.org) Received: from mail.karamazov.org (mail.karamazov.org [10.0.0.11]) by mail.karamazov.org (8.12.6/8.12.6) with ESMTP id h1SJMVVV064912; Fri, 28 Feb 2003 13:22:31 -0600 (CST) (envelope-from smoberly@mail.karamazov.org) Received: (from smoberly@localhost) by mail.karamazov.org (8.12.6/8.12.6/Submit) id h1SJMVbS064911; Fri, 28 Feb 2003 13:22:31 -0600 (CST) (envelope-from smoberly) Date: Fri, 28 Feb 2003 13:22:31 -0600 From: "Scott A. Moberly" To: freebsd-stable@freebsd.org Cc: freebsd-ports@freebsd.org Subject: Strange make spawning Message-ID: <20030228192231.GA64386@mail.karamazov.org> 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 I did a cvsup today and have some very strange things happening: First make(1) is spawning off a slew of processes: $ps -ax | grep make | wc -l 694 Second, this is causing the following: Cannot fork: Resource temporarily unavailable Cannot fork: Resource temporarily unavailable Cannot fork: Resource temporarily unavailable Cannot fork: Resource temporarily unavailable Cannot fork: Resource temporarily unavailable Cannot fork: Resource temporarily unavailable This is during the rebuild of various ports (all actually). I did make one other change: USE_GCC=3.2 # in make.conf But I can't really see how that would cause make to go hay-wire. -- Scott A. Moberly smoberly@karamazov.org Microsoft is not the Answer - Microsoft is the question and the Answer is no ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:25: 6 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8089037B401 for ; Fri, 28 Feb 2003 11:25:05 -0800 (PST) Received: from mail.sandvine.com (sandvine.com [199.243.201.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1635D43FE5 for ; Fri, 28 Feb 2003 11:25:01 -0800 (PST) (envelope-from don@sandvine.com) Received: by mail.sandvine.com with Internet Mail Service (5.5.2653.19) id ; Fri, 28 Feb 2003 14:25:00 -0500 Message-ID: From: Don Bowman To: 'Steve Grandi' , freebsd-stable@freebsd.org Subject: RE: hyperthreading in STABLE: should machdep.cpu_idle_hlt be on? Date: Fri, 28 Feb 2003 14:24:50 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > From: Steve Grandi [mailto:grandi@noao.edu] > I've brought up STABLE on a Supermicro X5DPR-8G2+ motherboard > which has > two 2.4GHz Xeons. In the BIOS setup, I disabled > hyperthreading. The BIOS > even prints out a nice message during the POST that hyperthreading is > disabled. > > The BIOS setting notwithstanding, STABLE fires up hyperthreading and > presents me with 4 cpus! > > OK, I will go with the flow: but what is the current wisdom about > machdep.cpu_idle_hlt? Should I set it to 1 to avoid a loss > of performance > and to avoid frying the box? On that motherboard, with our application, we've found that enabling hlt=1 will drop 0.1A of power on the inlet, or about ~12W (going from 2.15A to 2.05A). Our performance increased approx 7% for the same network-centric application, YMMV. We use hyperthreading enabled in the BIOS, and an SMP kernel, it has proven to increase performance in our application. --don To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:33:22 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A66E37B406; Fri, 28 Feb 2003 11:33:19 -0800 (PST) Received: from tinker.exit.com (tinker.exit.com [206.223.0.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4476143FDF; Fri, 28 Feb 2003 11:33:16 -0800 (PST) (envelope-from frank@exit.com) Received: from realtime.exit.com (realtime [206.223.0.5]) by tinker.exit.com (8.12.6/8.12.6) with ESMTP id h1SJXCvW031455; Fri, 28 Feb 2003 11:33:12 -0800 (PST) (envelope-from frank@exit.com) Received: from realtime.exit.com (localhost [127.0.0.1]) by realtime.exit.com (8.12.6/8.12.6) with ESMTP id h1SJXCQu093416; Fri, 28 Feb 2003 11:33:12 -0800 (PST) (envelope-from frank@realtime.exit.com) Received: (from frank@localhost) by realtime.exit.com (8.12.6/8.12.6/Submit) id h1SJXCKX093415; Fri, 28 Feb 2003 11:33:12 -0800 (PST) From: Frank Mayhar Message-Id: <200302281933.h1SJXCKX093415@realtime.exit.com> Subject: Re: WARNING: portupgrade considered harmful In-Reply-To: <3E5FB1F8.4050405@mail.flyingcroc.net> To: Joe Kelsey Date: Fri, 28 Feb 2003 11:33:12 -0800 (PST) Cc: FreeBSD GNOME , freebsd-stable , freebsd-ports Reply-To: frank@exit.com X-Copyright0: Copyright 2003 Frank Mayhar. All Rights Reserved. X-Copyright1: Permission granted for electronic reproduction as Usenet News or email only. X-Mailer: ELM [version 2.4ME+ PL99b (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 Joe Kelsey wrote: > Some time ago, the maintainers of the pkgtools slipped a new ability > into portupgrade: the ability to silently move "obsolete" shared > libraries into /usr/local/lib/compat/pkg. This so-called "feature" has > caused me no end of trouble in the last few days. > [trimmed] This is just a quick "me too" with respect to this new, um, feature. I ran into it a couple of weeks ago, but I just pounded on things until I fixed it (which involved deleting some stuff out of .../compat/pkg and rebuilding a bunch of ports). Definitely violates POLA, in a big way. Well, _I_ was astonished, anyway. -- Frank Mayhar frank@exit.com http://www.exit.com/ Exit Consulting http://www.gpsclock.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:33:44 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E6B737B401 for ; Fri, 28 Feb 2003 11:33:43 -0800 (PST) Received: from web80103.mail.yahoo.com (web80103.mail.yahoo.com [66.163.169.76]) by mx1.FreeBSD.org (Postfix) with SMTP id 94DFE43FCB for ; Fri, 28 Feb 2003 11:33:42 -0800 (PST) (envelope-from drakcap@pacbell.net) Message-ID: <20030228193342.76676.qmail@web80103.mail.yahoo.com> Received: from [204.119.61.106] by web80103.mail.yahoo.com via HTTP; Fri, 28 Feb 2003 11:33:42 PST Date: Fri, 28 Feb 2003 11:33:42 -0800 (PST) From: Robert English Subject: Runaway Galeon - further info To: freebsd-stable@FreeBSD.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 After deinstalling and reinstalling both Mozilla and Galeon, and also performing the suggested "fc-cache -fv" operation, here's what I found: Logged in as a mortal user, both Mozilla and Galeon operate perfectly well on the KDE desktop. Interestingly enough, the "no open window found" message still appears, but it seems to be benign and have no association with the Mozilla window actually appearing and my being able to surf the Web with it. Opening and closing each more than once does not have any effect on stability. When logged in to KDE as root, however, the "fun" starts. I can start Mozilla only once. It behaves fine the first time, and closes acceptably. I can also run Galeon once and it behaves. But if I try to open Mozilla a second time it spins for a while and appears to die. Memory keeps filling up behind the scenes, however, and the only thing that will stop that is to log out of KDE while I still have enough memory to process that command. Galeon will spontaneously open infinite windows of itself the second time I try to use it. That effectively ruins both apps for the normal user as well, and reinstalling both will cure the problem - until I try to use them while logged in as root again. I did do some portupgrades in the past while logged in as normal user, using the "su root -c" command, which could explain what started this strange process. It was a sloppy practice, I now know, but I didn't know that then. Current "fix", if you can call it that, is to only use Galeon and/or Mozilla while logged in as mortal user. That is until I can figure out what happened and reverse the damage. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:34: 3 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB76837B401; Fri, 28 Feb 2003 11:34:01 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AFC343F75; Fri, 28 Feb 2003 11:34:01 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id CBAB2679DA; Fri, 28 Feb 2003 11:34:00 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id B0DD71109; Fri, 28 Feb 2003 11:34:00 -0800 (PST) Date: Fri, 28 Feb 2003 11:34:00 -0800 From: Kris Kennaway To: "Scott A. Moberly" Cc: freebsd-stable@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Strange make spawning Message-ID: <20030228193400.GD86620@rot13.obsecurity.org> References: <20030228192231.GA64386@mail.karamazov.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="fXStkuK2IQBfcDe+" Content-Disposition: inline In-Reply-To: <20030228192231.GA64386@mail.karamazov.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 --fXStkuK2IQBfcDe+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 28, 2003 at 01:22:31PM -0600, Scott A. Moberly wrote: > I did make one other change: >=20 > USE_GCC=3D3.2 # in make.conf This is illegal: USE_* are variables that may only be set in leaf port makefiles that need the port in question. Set CC and CXX to use your preferred compiler. > But I can't really see how that would cause make to go hay-wire. Because it adds a dependency of every port on the gcc32 port, including gcc32 itself. Kris --fXStkuK2IQBfcDe+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+X7moWry0BWjoQKURAtq2AKDkl93Gqj3nPNabmyU9jciJ5bnHTACglvWf D7OAlaPpcs5r100XSCZcZ9k= =PNtb -----END PGP SIGNATURE----- --fXStkuK2IQBfcDe+-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:35:21 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90A9C37B401 for ; Fri, 28 Feb 2003 11:35:19 -0800 (PST) Received: from ratbert.oucs.ox.ac.uk (ratbert.oucs.ox.ac.uk [163.1.14.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9488843F93 for ; Fri, 28 Feb 2003 11:35:14 -0800 (PST) (envelope-from neil.long@computing-services.oxford.ac.uk) Received: from neil by ratbert.oucs.ox.ac.uk with local (Exim 4.10) id 18oqHo-0003rh-00 for freebsd-stable@freebsd.org; Fri, 28 Feb 2003 19:35:13 +0000 From: "Neil Long" Message-Id: <1030228193513.ZM14859@ratbert.oucs.ox.ac.uk> Date: Fri, 28 Feb 2003 19:35:12 +0000 X-Mailer: Z-Mail (5.0.0 30July97) To: freebsd-stable@freebsd.org Subject: IPFW2 MAC restrictions and packet forwarding 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 4.7-Release from CD, kernel rebuilt with IPFIREWALL, IPFW2, IPFILTER (ipfw and libalias built with IPFW2=TRUE) Does anyone have any example ipfw command sets to show how to limit access on one interface to specific incoming MACs i.e. I want to allow IPs incoming on ed0 to exit ed1 nated as the IP on ed1 (ipnat is easy bit). (ipnat is running and I set sysctl net.inet.ip.forwarding=1 net.link.ether.ipfw=1) It works with an open-type ipfw list but I haven't been able to figure out all the MAC based rules that are needed as soon as I apply a default deny on ed0. ?net.link.ether.bridge_ipfw=1 and bridge.ko needed? I think the problem is my complete lack of understanding as to the layer2 rules (and even MAC any any layer2 type invocations are not scoring any hits.) I guess I would just like to hear from someone that such a scenario does work on 4.7 :-) thanks Neil -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Dr Neil J Long, Computing Services, University of Oxford 13 Banbury Road, Oxford, OX2 6NN, UK Tel:+44 1865 273232 Fax:+44 1865 273275 EMail: Neil.Long@computing-services.oxford.ac.uk PGP: ID 0xE88EF71F OxCERT: oxcert@ox.ac.uk PGP: ID 0x9FF898D5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:37: 2 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4574A37B401; Fri, 28 Feb 2003 11:37:00 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 875F343F3F; Fri, 28 Feb 2003 11:36:59 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 2F8E7679DA; Fri, 28 Feb 2003 11:36:59 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 0A96A1249; Fri, 28 Feb 2003 11:36:59 -0800 (PST) Date: Fri, 28 Feb 2003 11:36:59 -0800 From: Kris Kennaway To: Huver Cc: freebsd-stable@freebsd.org, joe@FreeBSD.org Subject: Re: 4.8 PreRelease problems Message-ID: <20030228193658.GF86620@rot13.obsecurity.org> References: <200302281542.JAA02094@amgraf.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="R6sEYoIZpp9JErk7" Content-Disposition: inline In-Reply-To: <200302281542.JAA02094@amgraf.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 --R6sEYoIZpp9JErk7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 28, 2003 at 09:42:48AM -0600, Huver wrote: > I suppose this list is "the right place"? >=20 > 4.8 pre-release problems: >=20 > A. The new "__stdinp, __stdoutp, __stderrp" in is causing major > problems for 3.x binaries. E.g. such a binary uses compat/libc.so.3, > but also libm.so.2 -- the latter includes but has no compat > version. All /usr/lib/lib*.so that have no compat version, but include > the new , cause this problem. Read /usr/src/UPDATING. > B. The change to "UPACKED" structs in causes existing binaries > that do ioctl() -- the only way to obtain any USB dev info -- to fail. > Those structures have never been declared packed before, and now sudde= nly > changed size and/or memer alignment. I don't know about this one, I've CC'ed the USB maintainer. > BTW, I made the mistake of cvsup'ing to RELENG_4 from a 4.6.2, thinking I > was updating to 4.7, now I'll have to back down to 4.7+post-patches. I'm > entering a reqeust now: in the future, "pre-release" be made a new, short- > lived branch (delete it after the release is cut), but OFF the stable bra= nch. No, that would be silly. There's no real difference between "pre-release" and "post-release" (the items you mentioned above were merged into RELENG_4 some time ago). Kris --R6sEYoIZpp9JErk7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+X7paWry0BWjoQKURAp6oAKDKmUksfV7KTtfmR4F3dndL0ohkrwCfT7Nl LdjKJeLqBv0svWnN2qEqD4w= =6xQh -----END PGP SIGNATURE----- --R6sEYoIZpp9JErk7-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:40:55 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA52C37B405; Fri, 28 Feb 2003 11:40:53 -0800 (PST) Received: from mail.ncsa.uiuc.edu (mail.ncsa.uiuc.edu [141.142.2.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72A7E43FE1; Fri, 28 Feb 2003 11:40:50 -0800 (PST) (envelope-from koziol@ncsa.uiuc.edu) X-Envelope-From: koziol@ncsa.uiuc.edu X-Envelope-To: stable@FreeBSD.org Received: from sleipnir.ncsa.uiuc.edu (sleipnir.ncsa.uiuc.edu [141.142.96.70]) by mail.ncsa.uiuc.edu (8.11.6/8.11.6) with ESMTP id h1SJeol07366; Fri, 28 Feb 2003 13:40:50 -0600 Received: from sleipnir.ncsa.uiuc.edu (localhost [127.0.0.1]) by sleipnir.ncsa.uiuc.edu (8.12.7/8.12.7) with ESMTP id h1SJen6r097071; Fri, 28 Feb 2003 13:40:49 -0600 (CST) (envelope-from koziol@sleipnir.ncsa.uiuc.edu) Received: (from koziol@localhost) by sleipnir.ncsa.uiuc.edu (8.12.7/8.12.7/Submit) id h1SJenDl097070; Fri, 28 Feb 2003 13:40:49 -0600 (CST) From: Quincey Koziol Message-Id: <200302281940.h1SJenDl097070@sleipnir.ncsa.uiuc.edu> Subject: Re: Problem with telnet In-Reply-To: <20030228183737.GB64724@madman.celabo.org> To: "Jacques A. Vidrine" Date: Fri, 28 Feb 2003 13:40:49 -0600 (CST) Cc: stable@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL99b (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 > On Fri, Feb 28, 2003 at 08:36:27AM -0600, Quincey Koziol wrote: > > Hi all, > > I updated my machine to the latest stable source yesterday (2/27/03) and > > I'm now getting this message when [attempting to] telneting into it: > > > > Trying 141.142.xx.xx... > > Connected to sleipnir.ncsa.uiuc.edu (141.142.xx.xx). > > Escape character is '^]'. > > [ Kerberos V5 accepts you as ``koziol@NCSA.EDU'' ] > > [ Kerberos V5 accepted forwarded credentials ] > > > > *** Connection not encrypted! Communication may be eavesdropped. *** > > /usr/libexec/ld-elf.so.1: /usr/lib/libkrb.so.3: Undefined symbol "_ossl_old_des_set_key" > > Connection closed by foreign host. > > > > I've got "MAKE_KERBEROS4= yes" in my /etc/make.conf, but not > > "MAKE_KERBEROS5= yes" (since I've installed the heimdal port). Could this be > > related to the problem? > > Depends on what telnet and what telnetd you are using. Please try to > provide as much information as you can. This happens with any telnet client, but it does appear to be related to heimdal because I have /usr/local/libexec/telnetd (which is from heimdal) in my /etc/inetd.conf. Unfortunately, rebuilding heimdal fails with this error: cc -DHAVE_CONFIG_H -I. -I. -I../../include -I../../include -I../../lib/roken -I../../lib/roken -I../com_err -I./../com_err -Wall -Wmissing-prototypes -Wpointer-arith -Wbad-function-cast -Wmissing-declarations -Wnested-externs -DINET6 -O2 -pipe -UINET6 -UIPSEC -march=k6 -c crypto.c -fPIC -DPIC -o .libs/crypto.lo crypto.c: In function `krb5_DES_schedule': crypto.c:156: warning: passing arg 2 of `DES_set_key' from incompatible pointer type crypto.c: In function `DES_string_to_key_int': crypto.c:186: incompatible type for argument 1 of `memset' crypto.c: In function `RSA_MD4_DES_checksum': crypto.c:933: warning: passing arg 4 of `DES_cbc_encrypt' from incompatible pointer type crypto.c: In function `RSA_MD4_DES_verify': crypto.c:956: warning: passing arg 4 of `DES_cbc_encrypt' from incompatible pointer type crypto.c: In function `RSA_MD5_DES_checksum': crypto.c:1008: warning: passing arg 4 of `DES_cbc_encrypt' from incompatible pointer type *** Error code 1 Stop in /usr/ports/security/heimdal/work/heimdal-0.5.1/lib/krb5. *** Error code 1 Stop in /usr/ports/security/heimdal/work/heimdal-0.5.1/lib. *** Error code 1 Stop in /usr/ports/security/heimdal/work/heimdal-0.5.1. *** Error code 1 I have "CFLAGS=-O2 -pipe -UINET6 -UIPSEC -march=k6" in my /etc/make.conf, could this be causing the heimdal problem? Does heimdal rely on INET6 or IPSEC? Quincey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 11:43:30 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56A6037B401; Fri, 28 Feb 2003 11:43:29 -0800 (PST) Received: from procyon.firepipe.net (procyon.firepipe.net [198.78.66.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id A69F24405D; Fri, 28 Feb 2003 11:42:39 -0800 (PST) (envelope-from will@csociety.org) Received: by procyon.firepipe.net (Postfix, from userid 1000) id E75C221B9A; Fri, 28 Feb 2003 11:42:38 -0800 (PST) Date: Fri, 28 Feb 2003 11:42:38 -0800 From: Will Andrews To: Joe Kelsey Cc: FreeBSD GNOME , freebsd-stable , freebsd-ports Subject: Re: WARNING: portupgrade considered harmful Message-ID: <20030228194238.GL37397@procyon.firepipe.net> Mail-Followup-To: Joe Kelsey , FreeBSD GNOME , freebsd-stable , freebsd-ports References: <3E5FB1F8.4050405@mail.flyingcroc.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E5FB1F8.4050405@mail.flyingcroc.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 Fri, Feb 28, 2003 at 11:01:12AM -0800, Joe Kelsey wrote: > Some time ago, the maintainers of the pkgtools slipped a new ability > into portupgrade: the ability to silently move "obsolete" shared > libraries into /usr/local/lib/compat/pkg. This so-called "feature" has > caused me no end of trouble in the last few days. I have been asking knu why -u isn't a default option for quite a long time. I always use -u and rarely have problems. Regards, -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 12:13:59 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 635F537B401 for ; Fri, 28 Feb 2003 12:13:57 -0800 (PST) Received: from kanga.honeypot.net (kanga.honeypot.net [208.162.254.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD6DE43F85 for ; Fri, 28 Feb 2003 12:13:52 -0800 (PST) (envelope-from kirk@strauser.com) Received: from pooh.strauser.com (kirk@pooh.honeypot.net [10.0.5.128]) by kanga.honeypot.net (8.12.7/8.12.7) with ESMTP id h1SKDjxc090281 for ; Fri, 28 Feb 2003 14:13:45 -0600 (CST) (envelope-from kirk@strauser.com) To: freebsd-stable@freebsd.org Subject: Re: Problem with telnet From: Kirk Strauser Date: Fri, 28 Feb 2003 14:13:41 -0600 In-Reply-To: <200302281559.h1SFxn6k044386@hugo10.ka.punkt.de> ("Patrick M. Hausen"'s message of "Fri, 28 Feb 2003 16:59:49 +0100 (CET)") Message-ID: <874r6oduyy.fsf@strauser.com> Lines: 25 X-Mailer: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <200302281559.h1SFxn6k044386@hugo10.ka.punkt.de> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-=-= Content-Transfer-Encoding: quoted-printable At 2003-02-28T15:59:49Z, "Patrick M. Hausen" writes: > I can think of a setup where the possibility of bugs in the much more > complex sshd application outweighs the remote chance of someone sniffing > by quite a margin. Honestly, I can't think of such a situation, but to each his own. > Think of ISP infrastructure, a switched network completely under your > control. Think of a cracker who breaks into a workstation and starts exploring... > OpenSSH has had its share of security holes and while I generally agree > with you that it's a good idea to use ssh where appropriate, I don't share > the general "telnet is bad because it's plain text hysteria" ;-) Once again, to each his own. Then again, I'm not as hardcore as my mentor, who insisted that any password that was accidentally sent in plaintext even once had to immediately be changed. Not that I'm arguing with his logic or think it was overkill. =2D-=20 Kirk Strauser In Googlis non est, ergo non est. --=-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD4DBQA+X8L55sRg+Y0CpvERAvUxAJ9ljM4mekaM7uETMiDs3ZeZ8UFlhQCTBltG PKNI/FYhpj7HbFE/8etHRw== =PWz7 -----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 Fri Feb 28 12:17:41 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3163C37B401 for ; Fri, 28 Feb 2003 12:17:40 -0800 (PST) Received: from lurza.secnetix.de (lurza.secnetix.de [212.66.1.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECE1843FAF for ; Fri, 28 Feb 2003 12:17:38 -0800 (PST) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (localhost [IPv6:::1]) by lurza.secnetix.de (8.12.6/8.12.5) with ESMTP id h1SKHadK039705 for ; Fri, 28 Feb 2003 21:17:37 +0100 (CET) (envelope-from oliver.fromme@secnetix.de) Received: (from olli@localhost) by lurza.secnetix.de (8.12.6/8.12.5/Submit) id h1SKHasE039704; Fri, 28 Feb 2003 21:17:36 +0100 (CET) Date: Fri, 28 Feb 2003 21:17:36 +0100 (CET) Message-Id: <200302282017.h1SKHasE039704@lurza.secnetix.de> From: Oliver Fromme To: freebsd-stable@FreeBSD.ORG Reply-To: freebsd-stable@FreeBSD.ORG Subject: Re: burncd problem with NEC NR-7500A CD burner in DAO mode In-Reply-To: <1046324895.578.5.camel@localhost> X-Newsgroups: list.freebsd-stable User-Agent: tin/1.5.4-20000523 ("1959") (UNIX) (FreeBSD/4.7-RELEASE (i386)) 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 Jukka Simila wrote: > The problem is, there seems to be no way of playing audio discs with > atapicam devices - so I'm stuck with keeping acd0 and having occasional > reboots. This one should work (tosha is in the ports): tosha -o - | pcmplay - Regards Oliver -- Oliver Fromme, secnetix GmbH & Co KG, Oettingenstr. 2, 80538 München Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. I worry about my child and the Internet all the time, even though she's too young to have logged on yet. Here's what I worry about. I worry that 10 or 15 years from now, she will come to me and say "Daddy, where were you when they took freedom of the press away from the Internet?" -- Mike Godwin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 14: 6:56 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77FF737B401 for ; Fri, 28 Feb 2003 14:06:54 -0800 (PST) Received: from mailrtr03.ntelos.net (mailrtr03.ntelos.net [216.12.0.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9860C43F93 for ; Fri, 28 Feb 2003 14:06:53 -0800 (PST) (envelope-from wer@cstone.net) Received: from cstone.net (cpe-66-207-84-166.bearden-hsw.ntelos.net [66.207.84.166]) by mailrtr03.ntelos.net (8.11.4/8.11.4) with ESMTP id h1SM6qj05353 for ; Fri, 28 Feb 2003 17:06:52 -0500 Message-ID: <3E5F96F2.4030607@cstone.net> Date: Fri, 28 Feb 2003 17:05:54 +0000 From: William Reid User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.1) Gecko/20030222 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: rebooting Problem 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 I am running 4.8-PRERELEASE #19: Wed Feb 26 00:55:01 GMT 2003. I cannot reproduce my rebooting problem but it seems to happen while using my ATEN usb2serial talking to my gps. It takes about 5 minutes and then I just reboot. I have a sis630 chipset. I don't know if the following errors are directly related or if I am rebooting for some other reason. It looks like the clist panic below is realated to cblock_alloc in kern/tty_subr.c. Feb 28 15:08:51 laptop /kernel: Fatal trap 12: page fault while in kernel mode Feb 28 15:08:51 laptop /kernel: fault virtual address = 0x14 Feb 28 15:08:51 laptop /kernel: fault code = supervisor read, page not present Feb 28 15:08:51 laptop /kernel: instruction pointer = 0x8:0xc024c5ca Feb 28 15:08:51 laptop /kernel: stack pointer = 0x10:0xd3d34d30 Feb 28 15:08:51 laptop /kernel: frame pointer = 0x10:0xd3d34d60 Feb 28 15:08:51 laptop /kernel: code segment = base 0x0, limit 0xfffff, type 0x1b Feb 28 15:08:51 laptop /kernel: = DPL 0, pres 1, def32 1, gran 1 Feb 28 15:08:51 laptop /kernel: processor eflags = interrupt enabled, resume, IOPL = 0 Feb 28 15:08:51 laptop /kernel: current process = 216 (xterm) Feb 28 15:08:51 laptop /kernel: interrupt mask = tty Feb 28 15:08:51 laptop /kernel: trap number = 12 Feb 28 15:08:51 laptop /kernel: panic: page fault Feb 28 15:08:51 laptop /kernel: Feb 28 15:08:51 laptop /kernel: syncing disks... 14 8 2 Copyright (c) 1992-2003 The FreeBSD Project. Feb 28 16:14:46 laptop gpsd[225]: Gpsd started (Version 1.06b) Feb 28 16:14:46 laptop gpsd[225]: Gpsd listening on port 2947 Feb 28 16:14:49 laptop gpsd[225]: Opened gps Feb 28 16:16:42 laptop sudo: wer : TTY=ttyp1 ; PWD=/usr/home/wer/working/fifi/src2 ; USER=root ; COMMAND=./bill_cap2 0 Feb 28 16:16:43 laptop /kernel: wi0: promiscuous mode enabled Feb 28 16:24:31 laptop /kernel: panic: clist reservation botch Sorry I can't be of more help. -=Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 14:15: 0 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76D8B37B401; Fri, 28 Feb 2003 14:14:57 -0800 (PST) Received: from drugs.dv.isc.org (drugs.dv.isc.org [130.155.191.236]) by mx1.FreeBSD.org (Postfix) with SMTP id ECE8443F3F; Fri, 28 Feb 2003 14:14:54 -0800 (PST) (envelope-from marka@isc.org) Received: from drugs.dv.isc.org (localhost [127.0.0.1]) by drugs.dv.isc.org (8.12.6/8.12.6) with ESMTP id h1SMEk4U081635; Sat, 1 Mar 2003 09:14:47 +1100 (EST) (envelope-from marka@drugs.dv.isc.org) Message-Id: <200302282214.h1SMEk4U081635@drugs.dv.isc.org> To: Joe Kelsey Cc: FreeBSD GNOME , freebsd-stable , freebsd-ports From: Mark.Andrews@isc.org Subject: Re: WARNING: portupgrade considered harmful In-reply-to: Your message of "Fri, 28 Feb 2003 11:01:12 -0800." <3E5FB1F8.4050405@mail.flyingcroc.net> Date: Sat, 01 Mar 2003 09:14:46 +1100 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Some time ago, the maintainers of the pkgtools slipped a new ability > into portupgrade: the ability to silently move "obsolete" shared > libraries into /usr/local/lib/compat/pkg. This so-called "feature" has > caused me no end of trouble in the last few days. > > The problem is that the "feature" interacts very badly with the > fundamental purpose of portupgrade, which is to detect out-of-date > packages and aid in automatically upgrading them. Unfortunately, the > presence of all of the obsolete libraries accumulating in the compat/pkg > directory only serves to prevent protupgrade from fulfilling its mission > because ld will silently use old, obsolete libraries instead of the new > libraries! > > I have carefully followed recommendations for upgrading various > components on my system, only to discover that the upgrade process has > been foiled by this "feature". For instalce, Xft used to be available > in two versions, Xft and Xft2. Joe Marcus Clarke was careful to warn > everyone when Xft2 replaced Xft to do "portupgrade -fr Xft" to force > reinstallation of Xft, replacing the now obsolete Xft2 with a newversion > of the Xft library and forcing all applications to relink. > > Well, due to the fact that portupgrade silently placed Xft2 in the > compat/pkg directory, this did not happen! I was left with references > to the obsoloet Xft2 *along side* the correct reference to Xft in > binaries! The only way to rid myself of this was to delete the > compat/pkg directory and them start all over with the entire portupgrade > sequence. > > Now, I am left with having to do the whole thing all over due to bad > references to libintl.so.2 instead of libintl.so.4. > > The portupgrade maintainers have perpetrated a disaster in the making on > a lot of unsuspecting people. I recommend that everyone edit their > /usr/local/etc/pkgtools.conf files and add -u to the default portupgrade > switches to prevent this from happening. You may also need to audit all > of your binaries for stale library references. > > This could be a cause of the problems that many seem to have with the > Xft-enabled Mozilla. > > /Joe > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message This seems more to be a problem with how the shared library version numbers were maintained than anything else. You should NEVER have to remove a old shared library if versioning is done correctly. -- 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 Fri Feb 28 14:47:23 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7117537B405 for ; Fri, 28 Feb 2003 14:47:19 -0800 (PST) Received: from kanga.honeypot.net (kanga.honeypot.net [208.162.254.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A9B443FB1 for ; Fri, 28 Feb 2003 14:47:18 -0800 (PST) (envelope-from kirk@strauser.com) Received: from pooh.strauser.com (kirk@pooh.honeypot.net [10.0.5.128]) by kanga.honeypot.net (8.12.7/8.12.7) with ESMTP id h1SMlGxc095047 for ; Fri, 28 Feb 2003 16:47:16 -0600 (CST) (envelope-from kirk@strauser.com) To: freebsd-stable@freebsd.org Subject: Re: WARNING: portupgrade considered harmful From: Kirk Strauser Date: Fri, 28 Feb 2003 16:47:13 -0600 In-Reply-To: <3E5FB1F8.4050405@mail.flyingcroc.net> (Joe Kelsey's message of "Fri, 28 Feb 2003 11:01:12 -0800") Message-ID: <87vfz4c9am.fsf@strauser.com> Lines: 19 X-Mailer: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <3E5FB1F8.4050405@mail.flyingcroc.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-=-= Content-Transfer-Encoding: quoted-printable At 2003-02-28T19:01:12Z, Joe Kelsey writes: > Some time ago, the maintainers of the pkgtools slipped a new ability into > portupgrade: the ability to silently move "obsolete" shared libraries into > /usr/local/lib/compat/pkg. This so-called "feature" has caused me no end > of trouble in the last few days. That `so-called "feature"' is documented in the portupgrade man page. > ...because ld will silently use old, obsolete libraries instead of the new > libraries! Wouldn't ld use the version of libraries that the program is requesting? Put another way, why would a program ever get the old version of a library by accident? =2D-=20 Kirk Strauser In Googlis non est, ergo non est. --=-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQA+X+b05sRg+Y0CpvERAjDcAKCQIoWdsv6bwaRY/Ui3Jef8+g/WXwCgk3vQ xwRFi3Megv53wwU24byNbbQ= =nraK -----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 Fri Feb 28 14:52:12 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F29237B401 for ; Fri, 28 Feb 2003 14:52:10 -0800 (PST) Received: from mail1.zer0.org (klapaucius.zer0.org [204.152.186.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id BED4743F85 for ; Fri, 28 Feb 2003 14:52:09 -0800 (PST) (envelope-from gsutter@zer0.org) Received: by mail1.zer0.org (Postfix, from userid 1001) id 9519F239A01; Fri, 28 Feb 2003 14:52:09 -0800 (PST) Date: Fri, 28 Feb 2003 14:52:09 -0800 From: Gregory Sutter To: Kenneth W Cochran Cc: freebsd-stable@freebsd.org Subject: Re: Mozilla window won't open after upgrade - FIXED Message-ID: <20030228225209.GB45826@klapaucius.zer0.org> References: <39332.1046321265@selfstyled.dyndns.org> <1046323294.36796.4.camel@shumai.marcuscom.com> <20030227085749.GC2315@sr.se> <200302272140.QAA2545736@shell.TheWorld.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GPJrCs/72TxItFYR" Content-Disposition: inline In-Reply-To: <200302272140.QAA2545736@shell.TheWorld.com> Organization: Zer0 X-Purpose: For great justice! Mail-Copies-To: poster X-Message-Flag: Ditch this virus-ridden Outlook crap and get a real mailer! X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . User-Agent: Mutt/1.5.3i Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --GPJrCs/72TxItFYR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2003-02-27 16:40 -0500, Kenneth W Cochran wrote: >=20 > Mozilla has looked awful here ever since going past > 1.1.-something, i.e. with addition of Xft. Disabling Xft > in the (newer) Mozilla build/install hasn't help much. If you have the mozilla-fonts package installed, then remove it. Ironically, the newer mozillas don't get along with mozilla-fonts. Go figure. Greg --=20 Gregory S. Sutter I discriminate. mailto:gsutter@zer0.org=20 http://www.zer0.org/~gsutter/=20 hkp://wwwkeys.pgp.net/0x845DFEDD --GPJrCs/72TxItFYR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQE+X+gZIBUx1YRd/t0RAlHaAJ99kcLX2VXEqEWK7oXpwxPT1aN6CQCeNrI/ ZxPyvXFiXF1Hvl0sKNrDk0c= =gjsN -----END PGP SIGNATURE----- --GPJrCs/72TxItFYR-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 15: 4:48 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61D0937B401 for ; Fri, 28 Feb 2003 15:04:45 -0800 (PST) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9E2D43F75 for ; Fri, 28 Feb 2003 15:04:44 -0800 (PST) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.6/8.12.6) id h1SN4hUK063804 for freebsd-stable@freebsd.org; Fri, 28 Feb 2003 17:04:43 -0600 (CST) (envelope-from dan) Date: Fri, 28 Feb 2003 17:04:43 -0600 From: Dan Nelson To: freebsd-stable@freebsd.org Subject: quota-related NFS panic Message-ID: <20030228230443.GA72112@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.3i Sender: owner-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 getting these panics once a month or so on a server exporting homedirs for people; it was running 4.5 but I recently upgraded to -STABLE (Feb 6 checkout). I thought the panics were gone, but it just went down this afternoon. Here's the stack trace: I am saving the vmcore in case anyone needs more info. -- Dan Nelson dnelson@allantgroup.com SMP 2 cpus IdlePTD 3923968 initial pcb at 323bc0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode mp_lock = 00000002; cpuid = 0; lapic.id = 01000000 fault virtual address = 0x0 fault code = supervisor write, page not present instruction pointer = 0x8:0xc0241a0e stack pointer = 0x10:0xd58dab34 frame pointer = 0x10:0xd58dab8c 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 = 129 (nfsd) interrupt mask = none <- SMP: XXX trap number = 12 panic: page fault mp_lock = 00000002; cpuid = 0; lapic.id = 01000000 boot() called on cpu#0 syncing disks... 18 3 done Uptime: 12d6h9m5s dumping to dev #da/0x30001, offset 10832 dump 511 ... 0 --- #0 dumpsys () at ../../kern/kern_shutdown.c:487 487 if (dumping++) { (kgdb) where #0 dumpsys () at ../../kern/kern_shutdown.c:487 #1 0xc018c5de in boot (howto=256) at ../../kern/kern_shutdown.c:316 #2 0xc018ca61 in panic (fmt=0xc02cc2f9 "%s") at ../../kern/kern_shutdown.c:595 #3 0xc0283be2 in trap_fatal (frame=0xd58daaf4, eva=0) at ../../i386/i386/trap.c:974 #4 0xc028383d in trap_pfault (frame=0xd58daaf4, usermode=0, eva=0) at ../../i386/i386/trap.c:867 #5 0xc028337f in trap (frame={tf_fs = 16777240, tf_es = 16842768, tf_ds = -712179696, tf_edi = -1041954752, tf_esi = 1008, tf_ebp = -712135796, tf_isp = -712135904, tf_ebx = -1043591848, tf_edx = 0, tf_ecx = -712022528, tf_eax = 0, tf_trapno = 12, tf_err = 2, tf_eip = -1071375858, tf_cs = 8, tf_eflags = 66118, tf_esp = -1021413376, tf_ss = -702756608}) at ../../i386/i386/trap.c:466 #6 0xc0241a0e in dqget (vp=0xd61cc900, id=1008, ump=0xc1c32600, type=1, dqp=0xc31e7848) at ../../ufs/ufs/ufs_quota.c:763 #7 0xc0240d19 in getinoquota (ip=0xc31e7800) at ../../ufs/ufs/ufs_quota.c:104 #8 0xc0242465 in ufs_access (ap=0xd58dac00) at ../../ufs/ufs/ufs_vnops.c:335 #9 0xc0244f29 in ufs_vnoperate (ap=0xd58dac00) at ../../ufs/ufs/ufs_vnops.c:2376 #10 0xc0208c3e in nfsrv_access (vp=0xd61cc900, flags=128, cred=0xc2890884, rdonly=0, p=0xd385fdc0, override=0) at vnode_if.h:247 #11 0xc01f3d0a in nfsrv3_access (nfsd=0xc2890800, slp=0xc1ddff00, procp=0xd385fdc0, mrq=0xd58daddc) at ../../nfs/nfs_serv.c:218 #12 0xc021090d in nfssvc_nfsd (nsd=0xd58dae44, argp=0x8074380
, p=0xd385fdc0) at ../../nfs/nfs_syscalls.c:602 #13 0xc0210289 in nfssvc (p=0xd385fdc0, uap=0xd58daf80) at ../../nfs/nfs_syscalls.c:306 #14 0xc0283f1e in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = 1, tf_esi = 6, tf_ebp = -1077936780, tf_isp = -712134700, tf_ebx = 6, tf_edx = -1077936533, tf_ecx = 1297041408, tf_eax = 155, tf_trapno = 12, tf_err = 2, tf_eip = 134518432, tf_cs = 31, tf_eflags = 663, tf_esp = -1077937240, tf_ss = 47}) at ../../i386/i386/trap.c:1175 #15 0xc026dfdb in Xint0x80_syscall () Cannot access memory at address 0xbfbffd74. (kgdb) -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 15:34: 4 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DE2337B401 for ; Fri, 28 Feb 2003 15:34:03 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8889D43FBD for ; Fri, 28 Feb 2003 15:34:02 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h1SNXt8Y011721; Fri, 28 Feb 2003 15:33:55 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h1SNXsV7011720; Fri, 28 Feb 2003 15:33:54 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Fri, 28 Feb 2003 15:33:54 -0800 From: David Schultz To: Dan Nelson Cc: freebsd-stable@FreeBSD.ORG Subject: Re: quota-related NFS panic Message-ID: <20030228233354.GA11500@HAL9000.homeunix.com> Mail-Followup-To: Dan Nelson , freebsd-stable@FreeBSD.ORG References: <20030228230443.GA72112@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030228230443.GA72112@dan.emsphone.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 Dan Nelson : > I've been getting these panics once a month or so on a server exporting > homedirs for people; it was running 4.5 but I recently upgraded to > -STABLE (Feb 6 checkout). I thought the panics were gone, but it just > went down this afternoon. Here's the stack trace: I am saving the > vmcore in case anyone needs more info. The latest RELENG_4 version of src/sys/ufs/ufs/quota.h should fix this problem for you. There is no need to rebuild world or upgrade the rest of your sources. > #5 0xc028337f in trap (frame={tf_fs = 16777240, tf_es = 16842768, > tf_ds = -712179696, tf_edi = -1041954752, tf_esi = 1008, > tf_ebp = -712135796, tf_isp = -712135904, tf_ebx = -1043591848, > tf_edx = 0, tf_ecx = -712022528, tf_eax = 0, tf_trapno = 12, tf_err = 2, > tf_eip = -1071375858, tf_cs = 8, tf_eflags = 66118, > tf_esp = -1021413376, tf_ss = -702756608}) at ../../i386/i386/trap.c:466 > #6 0xc0241a0e in dqget (vp=0xd61cc900, id=1008, ump=0xc1c32600, type=1, > dqp=0xc31e7848) at ../../ufs/ufs/ufs_quota.c:763 > #7 0xc0240d19 in getinoquota (ip=0xc31e7800) at ../../ufs/ufs/ufs_quota.c:104 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 15:38:36 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B685537B401 for ; Fri, 28 Feb 2003 15:38:35 -0800 (PST) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D52743F93 for ; Fri, 28 Feb 2003 15:38:35 -0800 (PST) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.6/8.12.6) id h1SNcYkR011982 for freebsd-stable@FreeBSD.ORG; Fri, 28 Feb 2003 17:38:34 -0600 (CST) (envelope-from dan) Date: Fri, 28 Feb 2003 17:38:34 -0600 From: Dan Nelson To: freebsd-stable@FreeBSD.ORG Subject: Re: quota-related NFS panic Message-ID: <20030228233834.GC72112@dan.emsphone.com> References: <20030228230443.GA72112@dan.emsphone.com> <20030228233354.GA11500@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030228233354.GA11500@HAL9000.homeunix.com> X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.3i Sender: owner-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 the last episode (Feb 28), David Schultz said: > Thus spake Dan Nelson : > > I've been getting these panics once a month or so on a server > > exporting homedirs for people; it was running 4.5 but I recently > > upgraded to -STABLE (Feb 6 checkout). I thought the panics were > > gone, but it just went down this afternoon. Here's the stack > > trace: I am saving the vmcore in case anyone needs more info. > > The latest RELENG_4 version of src/sys/ufs/ufs/quota.h should fix > this problem for you. There is no need to rebuild world or upgrade > the rest of your sources. I'll install the updated kernel this weekend. Thanks for the quick response! -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 15:52:36 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34E7237B401 for ; Fri, 28 Feb 2003 15:52:35 -0800 (PST) Received: from grummit.biaix.org (213-97-212-86.uc.nombres.ttd.es [213.97.212.86]) by mx1.FreeBSD.org (Postfix) with SMTP id 5BC4843FA3 for ; Fri, 28 Feb 2003 15:52:33 -0800 (PST) (envelope-from joan@grummit.biaix.org) Received: (qmail 5301 invoked by uid 1000); 28 Feb 2003 23:50:31 -0000 Date: Sat, 1 Mar 2003 00:50:31 +0100 From: Joan Picanyol i Puig To: freebsd-stable@freebsd.org Subject: (da0:ahc0:0:0:0): Unexpected busfree in Data-in phase and other weirdness Message-ID: <20030228235031.GE5033@grummit.biaix.org> Mail-Followup-To: freebsd-stable@freebsd.org 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 [reposted from -scsi@, maybe that's not the right place] Hi, On an Adaptec 2940 I have an IBM DNES-309170W and a SEAGATE ST318438LW, soft-raided with vinum. Lately it seems that the Seagate disc has become 'unstable', and I don't know how to diagnose any further. I've checked the cabling and I've tried the SeaTools floppy disk from Seagate but it hangs on my system :( Please have a look at the excerpt of kernel logs at http://biaix.org/pk/debug/. messages.1.kernel shows what happened (look for Feb 4) while recording a cd with my SCSI cd-writer. The system appeared to hang for anything between 3 and 20 minutes while I was getting those. messages.0.kernel shows what happened today (Feb 27) for no apparent reason. Problems persisted across reboots, even though some of them were not logged (could not fsck). For further reference, please look at this thread from two months ago: http://www.FreeBSD.org/cgi/getmsg.cgi?fetch=2329637+0+/usr/local/www/db/text/2002/freebsd-questions/20021222.freebsd-questions I'm really stumped so I'd appreciate any help in the lines of: 1.- What's causing these problems? 2.- How can I solve them? tks -- pica To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 18:20:50 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1104737B401 for ; Fri, 28 Feb 2003 18:20:48 -0800 (PST) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id B65CD43FBD for ; Fri, 28 Feb 2003 18:20:41 -0800 (PST) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id C294D51A3E; Sat, 1 Mar 2003 12:50:28 +1030 (CST) Date: Sat, 1 Mar 2003 12:50:28 +1030 From: Greg 'groggy' Lehey To: Phil Kernick Cc: Santos , freebsd-stable@freebsd.org Subject: Re: Console size Message-ID: <20030301022028.GB41962@wantadilla.lemis.com> References: <3E41109E.5040602@Kernick.org> <3E4EFF3F.4000007@myrealbox.com> <3E5F3F11.2010909@Kernick.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bCsyhTFzCvuiizWE" Content-Disposition: inline In-Reply-To: <3E5F3F11.2010909@Kernick.org> User-Agent: Mutt/1.4i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --bCsyhTFzCvuiizWE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Friday, 28 February 2003 at 21:20:57 +1030, Phil Kernick wrote: > Santos wrote: >> Phil Kernick wrote: >> >>> I'm sure it's possible, but exactly which knobs do I have to turn, and >>> which settings do I have to tweak, to get my console to be bigger than >>> the standard 80x25? >>> >>> I've looking in LINT, and there are some VGA_* options that look >>> possible, but I can't find any documentation on the correct procedure. >> >> Just to add to what other have said. Add "options VGA_WIDTH90" to you >> kernel config, without it you can't have more than 80 vertical lines. >> And then, man vidcontrol. > > I now have the ability to create a > 80x25 console, but I still have one > problem I can't resolve. > > If I set the size of ttyv0 to 90x30, and then switch to an X session, and > then switch back to ttyv0, I'm back in 80x25, but the console width is > still 90. This leads to an unusable console. > > Interestingly, when the screen saver on the console cuts in, it seems to > restore the vidcontrol setting. > > So, my question is, how do I get the vidcontrol setting automatically > restored when a Ctrl-Alt-F1 from an X session back to ttyv0? I'd guess that this is a bug. What happens when you run vidcontrol again after switching back? Greg -- See complete headers for address and phone numbers Please note: we block mail from major spammers, notably yahoo.com. See http://www.lemis.com/yahoospam.html for further details. --bCsyhTFzCvuiizWE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQE+YBjsIubykFB6QiMRAqynAJ0QEtaTCSPEx4JOATCKyo9BKoN7rwCaApqD pqba7k2CrlprzSXzt3KM0S4= =gpas -----END PGP SIGNATURE----- --bCsyhTFzCvuiizWE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 22:36:36 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE33937B401 for ; Fri, 28 Feb 2003 22:36:34 -0800 (PST) Received: from grosbein.pp.ru (www2.svzserv.kemerovo.su [213.184.65.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC06343FB1 for ; Fri, 28 Feb 2003 22:36:25 -0800 (PST) (envelope-from eugen@grosbein.pp.ru) Received: from grosbein.pp.ru (smmsp@localhost [127.0.0.1]) by grosbein.pp.ru (8.12.7/8.12.7) with ESMTP id h216aDBi003677 for ; Sat, 1 Mar 2003 13:36:13 +0700 (KRAT) (envelope-from eugen@grosbein.pp.ru) Received: (from eugen@localhost) by grosbein.pp.ru (8.12.7/8.12.7/Submit) id h216RBTH003413 for stable@freebsd.org; Sat, 1 Mar 2003 13:27:11 +0700 (KRAT) Date: Sat, 1 Mar 2003 13:27:11 +0700 From: Eugene Grosbein To: stable@freebsd.org Subject: APC BackUPS CS BK500EI USB Message-ID: <20030301132711.A3371@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've bought APC BackUPS CS BK500EI USB recently, it is detected by 4.8-PRERELEASE as uhid0: American Power Conversion Back-UPS 500 FW: 6.5.I USB FW: c1 , rev 1.10/1.00, addr 3, iclass 3/0 Now I'm looking for a way to get information from it. I'd like to see battery status, for example. It it possible using usbhidctl? If not, I'd try to port nut-1.2.1's USB support to FreeBSD, just want to know if this or similar job had already been done. And if there is work-in-progress, I'd be happy to do tests here. Eugene Grosbein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 22:41:58 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C1F337B405 for ; Fri, 28 Feb 2003 22:41:54 -0800 (PST) Received: from maildex.com (dup-200-65-22-216.prodigy.net.mx [200.65.22.216]) by mx1.FreeBSD.org (Postfix) with SMTP id D274843FE1 for ; Fri, 28 Feb 2003 22:41:47 -0800 (PST) (envelope-from karen@telecomm.com) From: "Karen Dever R." To: stable Subject: The best Cigar ever made, you must read this Reply-To: youmustenter@telecomm.com 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 Organization: Tabacalera Lavin y Carranza. Mime-Version: 1.0 Content-Type: text/plain; charset="Windows-1251" Date: Sat, 1 Mar 2003 00:41:51 -0600 Message-Id: <20030301064147.D274843FE1@mx1.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 Y O U S M O K E C I G A R S ? THEN, YOU MUST READ THIS NOW: Introducing the best Cigar ever Made in the world, San Teodoro Cigar is the most awarded Cigar around the world, it has been qualified by the Tobbaconists as well as the worldwide press as the best Puro ever made. "San Teodoro is by excelence The best cigar in the world." (New York Post, November 2002) "I have never tried something like this, ...you wont belive the flavor!.." (USA today, January 2003) www.lavinycarranza.com The "artesanal" process for making a San Teodoro Cigar its unique. We aged our products more than five years in the best Spanish cedar wood cabinets, just imagine smoking the finest Cigar on the world in a cold night, in the living room near a fire or simply on the outside watching the sky and feeling its flavor. San Teodoro Cigar is made from the finest elements; its “añejamiento” and a magnificent clear cover give this Cigar its unique exquisite flavor elements, with touches of wood, caramel and coffee, this will be the last cigar you smoke in your life, we guarantied that every time you smoke it you will be experiencing the greatest moments of your life as a somker. When you open it you can feel its complex flavor coming out from the crystal tube, during the aging process San Teodoro is rested in Spanish cedar cabinets, this near virgin vanilla leaves, coffee grains and other spices that gives them its characteristically and exquisite flavor, all our cigars come individually in a crystal tube in order to maintain its humidity and flavor, also they come wrapped in a fine cedar wood inside the tube to continue with the aging process no matter where you got them. The crop for this year (1997-2003) comes only on Churchill size. Now and for a limited offer, you can buy this exquisite cigar with more than 5 years of aging delivered to your home. Click below to buy your San Teodoro´s at the lower prices ever, delivered directly to your home in less than 3 days. *S&H free inside USA and Canada http://www.lavinycarranza.com You are receiving this email because you opted-in to receive special offers from CIAT Central through one of our marketing partners. If you feel you have received this email in error or do not wish to receive additional special offers, please go to our website and then to (unsubscribe) * Only Available on Continental USA, Canada and México. Local tobacco taxes may apply . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 22:45:34 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7588F37B401; Fri, 28 Feb 2003 22:45:28 -0800 (PST) Received: from mta6.snfc21.pbi.net (mta6.snfc21.pbi.net [206.13.28.240]) by mx1.FreeBSD.org (Postfix) with ESMTP id D32B24407A; Fri, 28 Feb 2003 22:44:55 -0800 (PST) (envelope-from sewall@ix.netcom.com) Received: from ix.netcom.com ([63.198.181.47]) by mta6.snfc21.pbi.net (iPlanet Messaging Server 5.1 HotFix 1.6 (built Oct 18 2002)) with ESMTP id <0HB2006145EUWN@mta6.snfc21.pbi.net>; Fri, 28 Feb 2003 22:44:55 -0800 (PST) Date: Fri, 28 Feb 2003 22:58:45 -0800 From: "Scott R. Sewall" Subject: Re: VM issues in -stable? To: David Schultz Cc: freebsd-stable@FreeBSD.ORG Message-id: <3E605A25.4A6984E5@ix.netcom.com> Organization: Rosetta software MIME-version: 1.0 X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT X-Accept-Language: en,pdf References: <3E5DA956.2090508@ix.netcom.com> <20030227064304.GA12201@HAL9000.homeunix.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 David Schultz wrote: > Thus spake Scott Sewall : > > > > The FreeBSD July - August 2002 Status Report mentions some VM issues in > > -stable related to vm_map corruption > > on large-memory systems under heavy loads. The report indicates there is > > ongoing work to MFC the bug fixes. > > > > Has the work to MFC the bug fixes to -stable been completed? > > > > I have a 4.6.2 system with 2GB of memory that's getting a page fault > > while in kernel mode. The failure occurs > > when "periodic daily" is run. The active process is always find. I > > suspect this system may be experiencing the > > problem described by the report. > > If you post the panic message and a backtrace, people might be > able to tell you more about the particular bug you're running > into. Here's the panic message, the gdb backtrace and dmesg boot ouput. -- Scott Fatal trap 12: page fault while in kernel mode fault virtual address = 0x0 fault code = supervisor write, page not present instruction pointer = 0x8:0xc02d4f53 stack pointer = 0x10:0xff605c70 frame pointer = 0x10:0xff605ca4 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 = 275 (find) interrupt mask = bio panic: from debugger panic: from debugger (kgdb) where #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 #1 0xc017b68b in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:316 #2 0xc017bac9 in panic (fmt=0xc02f17c4 "from debugger") at /usr/src/sys/kern/kern_shutdown.c:595 #3 0xc0138d05 in db_panic (addr=-1070772397, have_addr=0, count=1, modif=0xff60aadc "") at /usr/src/sys/ddb/db_command.c:435 #4 0xc0138ca5 in db_command (last_cmdp=0xc03339e4, cmd_table=0xc0333824, aux_cmd_tablep=0xc038d518) at /usr/src/sys/ddb/db_command.c:333 #5 0xc0138d6a in db_command_loop () at /usr/src/sys/ddb/db_command.c:457 #6 0xc013aea7 in db_trap (type=12, code=0) at /usr/src/sys/ddb/db_trap.c:71 #7 0xc02c6ad2 in kdb_trap (type=12, code=0, regs=0xff60ac30) at /usr/src/sys/i386/i386/db_interface.c:158 #8 0xc02d68a8 in trap_fatal (frame=0xff60ac30, eva=0) at /usr/src/sys/i386/i386/trap.c:961 #9 0xc02d6581 in trap_pfault (frame=0xff60ac30, usermode=0, eva=0) at /usr/src/sys/i386/i386/trap.c:859 #10 0xc02d60fb in trap (frame={tf_fs = 16, tf_es = -758185968, tf_ds = -235470832, tf_edi = 0, tf_esi = -742251776, tf_ebp = -10441564, tf_isp = -10441636, tf_ebx = 0, tf_edx = 0, tf_ecx = 42, tf_eax = 0, tf_trapno = 12, tf_err = 2, tf_eip = -1070772397, tf_cs = 8, tf_eflags = 66050, tf_esp = -235433920, tf_ss = -1072005194}) at /usr/src/sys/i386/i386/trap.c:458 #11 0xc02d4f53 in generic_bzero () #12 0xc0277db3 in ffs_vget (mp=0xd30a2200, ino=3428874, vpp=0xff60ad4c) at /usr/src/sys/ufs/ffs/ffs_vfsops.c:1109 #13 0xc027b4e9 in ufs_lookup (ap=0xff60adac) at /usr/src/sys/ufs/ufs/ufs_lookup.c:611 #14 0xc027fe29 in ufs_vnoperate (ap=0xff60adac) at /usr/src/sys/ufs/ufs/ufs_vnops.c:2422 #15 0xc01a4376 in vfs_cache_lookup (ap=0xff60ae04) at vnode_if.h:77 #16 0xc027fe29 in ufs_vnoperate (ap=0xff60ae04) at /usr/src/sys/ufs/ufs/ufs_vnops.c:2422 #17 0xc01a7289 in lookup (ndp=0xff60ae80) at vnode_if.h:52 #18 0xc01a6d84 in namei (ndp=0xff60ae80) at /usr/src/sys/kern/vfs_lookup.c:153 #19 0xc01aca89 in lstat (p=0xf1f79040, uap=0xff60af80) at /usr/src/sys/kern/vfs_syscalls.c:1823 #20 0xc02d6b89 in syscall2 (frame={tf_fs = 134545455, tf_es = 134545455, tf_ds = -1078001617, tf_edi = 134606848, tf_esi = 134606924, tf_ebp = -1077937876, tf_isp = -10440748, tf_ebx = 2022641220, tf_edx = 134557696, tf_ecx = 0, tf_eax = 190, tf_trapno = 7, tf_err = 2, tf_eip = 2022326700, tf_cs = 31, tf_eflags = 647, tf_esp = -1077938016, tf_ss = 47}) at /usr/src/sys/i386/i386/trap.c:1167 #21 0xc02c79a5 in Xint0x80_syscall () #22 0x788a097d in ?? () #23 0x788a021e in ?? () #24 0x80496d6 in ?? () #25 0x804b50c in ?? () #26 0x8049395 in ?? () (kgdb) Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.6.2-RELEASE-p4 #5: Mon Feb 24 00:03:30 PST 2003 scott@blitz12.redlinenetworks.com:/usr/obj/usr/src/sys/BLITZ Timecounter "i8254" frequency 1193182 Hz CPU: Pentium 4 (1999.94-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf24 Stepping = 4 Features=0x3febfbff,ACC> real memory = 2145648640 (2095360K bytes) config> di sn0 No such device: sn0 Invalid command or syntax. Type `?' for help. config> di lnc0 No such device: lnc0 Invalid command or syntax. Type `?' for help. config> di ie0 No such device: ie0 Invalid command or syntax. Type `?' for help. config> di fe0 No such device: fe0 Invalid command or syntax. Type `?' for help. config> di ed0 No such device: ed0 Invalid command or syntax. Type `?' for help. config> di cs0 No such device: cs0 Invalid command or syntax. Type `?' for help. config> di bt0 No such device: bt0 Invalid command or syntax. Type `?' for help. config> di aic0 No such device: aic0 Invalid command or syntax. Type `?' for help. config> di aha0 No such device: aha0 Invalid command or syntax. Type `?' for help. config> di adv0 No such device: adv0 Invalid command or syntax. Type `?' for help. config> q avail memory = 2085097472 (2036228K bytes) Preloaded elf kernel "kernel" at 0xc042c000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc042c09c. Preloaded elf module "if_em.ko" at 0xc042c0ec. md0: Malloc disk Using $PIR table, 11 entries at 0xc00f4680 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 2.0 irq 11 uhci0: port 0xe800-0xe81f irq 11 at device 29.0 on pci0 uhci0: (New UHCI DeviceId=0x24c28086) usb0: on uhci0 usb0: USB revision 1.0 uhub0: (0x24c28086) UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0xe880-0xe89f irq 5 at device 29.1 o n pci0 uhci1: (New UHCI DeviceId=0x24c48086) usb1: on uhci1 usb1: USB revision 1.0 uhub1: (0x24c48086) UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0xec00-0xec1f irq 9 at device 29.2 o n pci0 uhci2: (New UHCI DeviceId=0x24c78086) usb2: on uhci2 usb2: USB revision 1.0 uhub2: (0x24c78086) UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered pci0: at 29.7 irq 10 pcib1: at device 30.0 on pci0 pci1: on pcib1 em0: port 0xdc00-0xdc1f mem 0xff8c0000-0xff8dffff,0xff8e0000-0xff8fffff irq 11 at device 1.0 on pci1 em0: Speed:N/A Duplex:N/A fxp0: port 0xd880-0xd8bf mem 0xff89f000-0xff89ffff irq 11 at device 8.0 on pci1 fxp0: Ethernet address 00:03:47:fc:c1:f4 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf,0-0x3,0-0x7,0-0x3,0-0x7 at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: (vendor=0x8086, dev=0x24c3) at 31.3 irq 3 pci0: (vendor=0x8086, dev=0x24c5) at 31.5 irq 3 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0: configured irq 4 not in bitmap of probed irqs 0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 IP packet filtering initialized, divert disabled, rule-based forwarding disabled , default to accept, logging disabled DUMMYNET initialized (011031) ad0: 76345MB [155114/16/63] at ata0-master BIOSDMA ad2: DMA limited to UDMA33, non-ATA66 cable or device ad2: 19092MB [38792/16/63] at ata1-master BIOSDMA Mounting root from ufs:/dev/ad0s1a To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Fri Feb 28 23:37: 6 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BDF037B401; Fri, 28 Feb 2003 23:37:05 -0800 (PST) Received: from mail.rotfl.com.au (eth1779.sa.adsl.internode.on.net [150.101.235.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE21943FBD; Fri, 28 Feb 2003 23:37:04 -0800 (PST) (envelope-from philk@rotfl.com.au) Subject: Re: Console size In-Reply-To: <20030301022028.GB41962@wantadilla.lemis.com> To: "Greg 'groggy' Lehey" Date: Sat, 1 Mar 2003 18:07:03 +1030 (CST) Cc: Phil Kernick , Santos , freebsd-stable@freebsd.org X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20030301073703.51096158@mail.rotfl.com.au> From: philk@rotfl.com.au (Phil Kernick) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Interestingly, when the screen saver on the console cuts in, it seems to > > restore the vidcontrol setting. > > > > So, my question is, how do I get the vidcontrol setting automatically > > restored when a Ctrl-Alt-F1 from an X session back to ttyv0? > > I'd guess that this is a bug. What happens when you run vidcontrol > again after switching back? It gets reapplied and the virtual consoles work again. Phil. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Mar 1 1:36:29 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 194EE37B401 for ; Sat, 1 Mar 2003 01:36:28 -0800 (PST) Received: from moya.lambermont.dyndns.org (e165253.upc-e.chello.nl [213.93.165.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id EECCC43FD7 for ; Sat, 1 Mar 2003 01:36:26 -0800 (PST) (envelope-from hans@lambermont.dyndns.org) Received: from localhost (localhost [127.0.0.1]) by moya.lambermont.dyndns.org (Postfix) with ESMTP id 6CC2836402 for ; Sat, 1 Mar 2003 10:36:25 +0100 (CET) Received: by moya.lambermont.dyndns.org (Postfix, from userid 1001) id E477936401; Sat, 1 Mar 2003 10:36:21 +0100 (CET) Date: Sat, 1 Mar 2003 10:36:21 +0100 To: stable@freebsd.org Subject: Re: APC BackUPS CS BK500EI USB Message-ID: <20030301093621.GB64261@moya.lambermont.dyndns.org> References: <20030301132711.A3371@grosbein.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030301132711.A3371@grosbein.pp.ru> User-Agent: Mutt/1.4i From: hans@lambermont.dyndns.org (Hans Lambermont) 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 Eugene Grosbein wrote: > I've bought APC BackUPS CS BK500EI USB recently, it is detected > by 4.8-PRERELEASE as > uhid0: American Power Conversion Back-UPS 500 FW: 6.5.I USB FW: c1 , rev 1.10/1.00, addr 3, iclass 3/0 > Now I'm looking for a way to get information from it. Maybe /usr/ports/sysutils/apcupsd/ (see also http://www.apcupsd.com/ ) has USB support ? Hans ps. Your question should have been sent to freebsd-questions -- http://lambermont.webhop.org/ () ascii ribbon campaign - against HTML mail, /\ vCards and proprietary formats To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Mar 1 1:49:56 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CBFE37B401 for ; Sat, 1 Mar 2003 01:49:50 -0800 (PST) Received: from mail.tiscali.it (mail-2.tiscali.it [195.130.225.148]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83C7643F93 for ; Sat, 1 Mar 2003 01:49:49 -0800 (PST) (envelope-from fcasadei@inwind.it) Received: from goku.kasby (217.133.208.227) by mail.tiscali.it (6.5.032) id 3E5CA6F20019FA58 for freebsd-stable@freebsd.org; Sat, 1 Mar 2003 10:49:47 +0100 Received: (qmail 657 invoked by uid 1000); 1 Mar 2003 09:49:34 -0000 Date: Sat, 1 Mar 2003 10:49:34 +0100 From: Francesco Casadei To: Joan Picanyol i Puig Cc: freebsd-stable@freebsd.org Subject: Re: (da0:ahc0:0:0:0): Unexpected busfree in Data-in phase and other weirdness Message-ID: <20030301094934.GA547@goku.kasby> Mail-Followup-To: Joan Picanyol i Puig , freebsd-stable@freebsd.org References: <20030228235031.GE5033@grummit.biaix.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline In-Reply-To: <20030228235031.GE5033@grummit.biaix.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Mar 01, 2003 at 12:50:31AM +0100, Joan Picanyol i Puig wrote: > [reposted from -scsi@, maybe that's not the right place] >=20 > Hi, >=20 > On an Adaptec 2940 I have an IBM DNES-309170W and a SEAGATE ST318438LW, > soft-raided with vinum. Lately it seems that the Seagate disc has become > 'unstable', and I don't know how to diagnose any further. I've checked > the cabling and I've tried the SeaTools floppy disk from Seagate but it > hangs on my system :(=20 >=20 > Please have a look at the excerpt of kernel logs at > http://biaix.org/pk/debug/. messages.1.kernel shows what happened (look > for Feb 4) while recording a cd with my SCSI cd-writer. The system > appeared to hang for anything between 3 and 20 minutes while I was > getting those. messages.0.kernel shows what happened today (Feb 27) for > no apparent reason. Problems persisted across reboots, even though some > of them were not logged (could not fsck). >=20 > For further reference, please look at this thread from two months ago: > http://www.FreeBSD.org/cgi/getmsg.cgi?fetch=3D2329637+0+/usr/local/www/db= /text/2002/freebsd-questions/20021222.freebsd-questions >=20 > I'm really stumped so I'd appreciate any help in the lines of: >=20 > 1.- What's causing these problems? > 2.- How can I solve them? >=20 > tks > --=20 > pica >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message >=20 > end of the original message I'm having this problem too. When this happens the SCSI bus is reset. Here's the error message (not wrapped): Jan 24 12:10:27 goku /kernel: (da1:ahc0:0:1:0): SCB 0x8 - timed out Jan 24 12:10:27 goku /kernel: ahc0: Dumping Card State while idle, at SEQAD= DR 0x8 Jan 24 12:10:27 goku /kernel: ACCUM =3D 0xc0, SINDEX =3D 0x11, DINDEX =3D 0= x8c, ARG_2 =3D 0x0 Jan 24 12:10:27 goku /kernel: HCNT =3D 0x0 SCBPTR =3D 0x0 Jan 24 12:10:27 goku /kernel: SCSISEQ =3D 0x12, SBLKCTL =3D 0x2 Jan 24 12:10:27 goku /kernel: DFCNTRL =3D 0x0, DFSTATUS =3D 0x29 Jan 24 12:10:27 goku /kernel: LASTPHASE =3D 0x1, SCSISIGI =3D 0x0, SXFRCTL0= =3D 0x80 Jan 24 12:10:27 goku /kernel: SSTAT0 =3D 0x5, SSTAT1 =3D 0xa Jan 24 12:10:27 goku /kernel: STACK =3D=3D 0x3, 0xec, 0x147, 0x0 Jan 24 12:10:27 goku /kernel: SCB count =3D 80 Jan 24 12:10:27 goku /kernel: Kernel NEXTQSCB =3D 30 Jan 24 12:10:27 goku /kernel: Card NEXTQSCB =3D 30 Jan 24 12:10:27 goku /kernel: QINFIFO entries:=20 Jan 24 12:10:27 goku /kernel: Waiting Queue entries:=20 Jan 24 12:10:27 goku /kernel: Disconnected Queue entries: 12:13 9:46 8:35 1= 5:3 10:8=20 Jan 24 12:10:27 goku /kernel: QOUTFIFO entries:=20 Jan 24 12:10:27 goku /kernel: Sequencer Free SCB List: 0 13 7 4 3 14 11 5 1= 2 6=20 Jan 24 12:10:27 goku /kernel: Sequencer SCB Info: 0(c 0x68, s 0x17, l 0, t = 0xff) 1(c 0x68, s 0x17, l 0, t 0xff) 2(c 0x68, s 0x17, l 0, t 0xff ) 3(c 0x68, s 0x17, l 0, t 0xff) 4(c 0x68, s 0x17, l 0, t 0xff) 5(c 0x68, s= 0x17, l 0, t 0xff) 6(c 0x68, s 0x17, l 0, t 0xff) 7(c 0x68, s 0x1 7, l 0, t 0xff) 8(c 0x6c, s 0x17, l 0, t 0x23) 9(c 0x6c, s 0x17, l 0, t 0x2= e) 10(c 0x6c, s 0x17, l 0, t 0x8) 11(c 0x68, s 0x17, l 0, t 0xff)=20 12(c 0x6c, s 0x17, l 0, t 0xd) 13(c 0x68, s 0x17, l 0, t 0xff) 14(c 0x68, s= 0x17, l 0, t 0xff) 15(c 0x6c, s 0x17, l 0, t 0x3)=20 Jan 24 12:10:27 goku /kernel: Pending list: 32(c 0x6c, s 0x17, l 0), 5(c 0x= 6c, s 0x17, l 0), 20(c 0x6c, s 0x17, l 0), 59(c 0x6c, s 0x17, l 0) , 4(c 0x6c, s 0x17, l 0), 49(c 0x6c, s 0x17, l 0), 58(c 0x6c, s 0x17, l 0),= 25(c 0x6c, s 0x17, l 0), 13(c 0x68, s 0x17, l 0), 46(c 0x68, s 0x 17, l 0), 35(c 0x68, s 0x17, l 0), 3(c 0x68, s 0x17, l 0), 8(c 0x68, s 0x17= , l 0) Jan 24 12:10:27 goku /kernel: Kernel Free SCB list: 17 26 23 52 12 7 53 44 = 47 34 22 27 54 41 6 43 14 51 69 38 57 10 40 2 62 55 71 36 42 24 18 0 15 39 48 19 67 37 31 45 29 1 28 68 16 33 11 21 56 50 9 66 72 73 74 75 76= 77 78 79 60 61 64 63 65 70=20 Jan 24 12:10:27 goku /kernel: sg[0] - Addr 0x7aa8000 : Length 4096 Jan 24 12:10:27 goku /kernel: sg[1] - Addr 0x7b69000 : Length 4096 Jan 24 12:10:27 goku /kernel: (da1:ahc0:0:1:0): Queuing a BDR SCB Jan 24 12:10:27 goku /kernel: (da1:ahc0:0:1:0): Bus Device Reset Message Se= nt Jan 24 12:10:27 goku /kernel: (da1:ahc0:0:1:0): no longer in timeout, statu= s =3D 34b Jan 24 12:10:27 goku /kernel: ahc0: Bus Device Reset on A:1. 13 SCBs aborted Jan 24 15:19:46 goku login: ROOT LOGIN (root) ON ttyv0 Jan 24 18:22:36 goku /kernel: (da1:ahc0:0:1:0): Unexpected busfree in Data-= in phase Jan 24 18:22:36 goku /kernel: SEQADDR =3D=3D 0x6d Jan 24 18:22:43 goku /kernel: (da1:ahc0:0:1:0): Unexpected busfree in Data-= in phase Jan 24 18:22:43 goku /kernel: SEQADDR =3D=3D 0x6d Jan 24 18:22:50 goku /kernel: (da1:ahc0:0:1:0): Unexpected busfree in Data-= in phase Jan 24 18:22:51 goku /kernel: SEQADDR =3D=3D 0x6c Jan 24 18:22:51 goku /kernel: (da1:ahc0:0:1:0): Invalidating pack Jan 24 18:23:43 goku /kernel: (da1:ahc0:0:1:0): SCB 0xe - timed out Jan 24 18:23:43 goku /kernel: ahc0: Dumping Card State while idle, at SEQAD= DR 0x8 Jan 24 18:23:43 goku /kernel: ACCUM =3D 0x29, SINDEX =3D 0x38, DINDEX =3D 0= x8c, ARG_2 =3D 0x0 Jan 24 18:23:43 goku /kernel: HCNT =3D 0x0 SCBPTR =3D 0x0 Jan 24 18:23:43 goku /kernel: SCSISEQ =3D 0x12, SBLKCTL =3D 0x2 Jan 24 18:23:43 goku /kernel: DFCNTRL =3D 0x0, DFSTATUS =3D 0x29 Jan 24 18:23:43 goku /kernel: LASTPHASE =3D 0x1, SCSISIGI =3D 0x0, SXFRCTL0= =3D 0x80 Jan 24 18:23:43 goku /kernel: SSTAT0 =3D 0x5, SSTAT1 =3D 0xa Jan 24 18:23:43 goku /kernel: STACK =3D=3D 0x3, 0xec, 0x147, 0xcb Jan 24 18:23:43 goku /kernel: SCB count =3D 80 Jan 24 18:23:43 goku /kernel: Kernel NEXTQSCB =3D 78 Jan 24 18:23:43 goku /kernel: Card NEXTQSCB =3D 78 Jan 24 18:23:43 goku /kernel: QINFIFO entries:=20 Jan 24 18:23:43 goku /kernel: Waiting Queue entries:=20 Jan 24 18:23:43 goku /kernel: Disconnected Queue entries: 13:12 6:40 5:41 7= :48 10:14=20 Jan 24 18:23:43 goku /kernel: QOUTFIFO entries:=20 Jan 24 18:23:43 goku /kernel: Sequencer Free SCB List: 0 1 8 15 11 2 12 3 1= 4 4 9=20 Jan 24 18:23:43 goku /kernel: Sequencer SCB Info: 0(c 0x68, s 0x7, l 0, t 0= xff) 1(c 0x68, s 0x7, l 0, t 0xff) 2(c 0x68, s 0x7, l 0, t 0xff) 3 (c 0x68, s 0x7, l 0, t 0xff) 4(c 0x68, s 0x7, l 0, t 0xff) 5(c 0x6c, s 0x17= , l 0, t 0x29) 6(c 0x6c, s 0x17, l 0, t 0x28) 7(c 0x6c, s 0x17, l=20 0, t 0x30) 8(c 0x68, s 0x7, l 0, t 0xff) 9(c 0x68, s 0x7, l 0, t 0xff) 10(c= 0x6c, s 0x17, l 0, t 0xe) 11(c 0x68, s 0x7, l 0, t 0xff) 12(c 0x6 8, s 0x7, l 0, t 0xff) 13(c 0x6c, s 0x17, l 0, t 0xc) 14(c 0x68, s 0x7, l 0= , t 0xff) 15(c 0x68, s 0x7, l 0, t 0xff)=20 Jan 24 18:23:43 goku /kernel: Pending list: 12(c 0x68, s 0x17, l 0), 40(c 0= x68, s 0x17, l 0), 41(c 0x68, s 0x17, l 0), 48(c 0x68, s 0x17, l 0 ), 14(c 0x68, s 0x17, l 0) Jan 24 18:23:43 goku /kernel: Kernel Free SCB list: 56 49 4 20 31 76 52 51 = 8 13 57 77 55 26 53 18 19 16 68 36 42 10 5 47 2 79 34 44 6 1 74 72 33 73 3 25 45 67 23 30 35 59 38 62 50 75 9 7 29 71 46 32 27 21 39 58 0 69 = 22 54 11 15 66 37 43 28 17 24 60 61 64 63 65 70=20 Jan 24 18:23:43 goku /kernel: sg[0] - Addr 0x73e5000 : Length 4096 Jan 24 18:23:43 goku /kernel: sg[1] - Addr 0x3586000 : Length 4096 Jan 24 18:23:43 goku /kernel: sg[2] - Addr 0x4b27000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[3] - Addr 0x1e08000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[4] - Addr 0x2709000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[5] - Addr 0x128a000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[6] - Addr 0x358b000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[7] - Addr 0x472c000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[8] - Addr 0x2a4d000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[9] - Addr 0x68ce000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[10] - Addr 0x340f000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[11] - Addr 0x6f0000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[12] - Addr 0x44b1000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[13] - Addr 0x5452000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[14] - Addr 0xa93000 : Length 4096 Jan 24 18:23:44 goku /kernel: sg[15] - Addr 0x3514000 : Length 4096 Jan 24 18:23:44 goku /kernel: (da1:ahc0:0:1:0): Queuing a BDR SCB Jan 24 18:23:44 goku /kernel: (da1:ahc0:0:1:0): Bus Device Reset Message Se= nt Jan 24 18:23:44 goku /kernel: (da1:ahc0:0:1:0): no longer in timeout, statu= s =3D 34b Jan 24 18:23:44 goku /kernel: ahc0: Bus Device Reset on A:1. 5 SCBs aborted Here's the system configuration: # camcontrol devlist at scbus0 target 0 lun 0 (pass0,da0) at scbus0 target 1 lun 0 (pass1,da1) at scbus0 target 2 lun 0 (pass2,cd0) at scbus0 target 3 lun 0 (pass3,cd1) # dmesg | grep ahc0: ahc0: port 0xd400-0xd4ff mem 0xde000000-0= xde000fff irq 10 at device 11.0 on pci0 # uname -a FreeBSD goku.kasby 4.7-STABLE FreeBSD 4.7-STABLE #1: Thu Dec 26 12:47:59 CE= T 2002 root@goku.kasby:/usr/obj/usr/src/sys/GOKU i386 Francesco Casadei --=20 You can download my public key from http://digilander.libero.it/fcasadei/ or retrieve it from a keyserver (pgpkeys.mit.edu, wwwkeys.pgp.net, ...) Key fingerprint is: 1671 9A23 ACB4 520A E7EE 00B0 7EC3 375F 164E B17B --EeQfGwPcQSOJBaQU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+YIItfsM3XxZOsXsRAvlLAJ4r6A0bkQcyg1EcGgJy5pJ7iOb4EwCglaq9 K5lsU3Aew4vSq2zvpzCdjUY= =OJMp -----END PGP SIGNATURE----- --EeQfGwPcQSOJBaQU-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Mar 1 1:52:23 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C498837B401 for ; Sat, 1 Mar 2003 01:52:21 -0800 (PST) Received: from smtp.inode.at (goliath.inode.at [195.58.161.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id C60EF43FAF for ; Sat, 1 Mar 2003 01:52:20 -0800 (PST) (envelope-from mranner@inode.at) Received: from line88.adsl-dynamic.inode.at ([213.229.7.88]) by smtp.inode.at with esmtp (Exim 3.34 #1) id 18p3fF-0003EW-00 for freebsd-stable@freebsd.org; Sat, 01 Mar 2003 10:52:18 +0100 From: Michael Ranner To: freebsd-stable@freebsd.org Subject: Re: APC BackUPS CS BK500EI USB Date: Sat, 1 Mar 2003 10:51:52 +0100 User-Agent: KMail/1.5 References: <20030301132711.A3371@grosbein.pp.ru> In-Reply-To: <20030301132711.A3371@grosbein.pp.ru> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200303011047.46539.mranner@inode.at> 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 Am Samstag, 1. März 2003 07:27 schrieb Eugene Grosbein: > Hi! > > I've bought APC BackUPS CS BK500EI USB recently, it is detected > by 4.8-PRERELEASE as > > uhid0: American Power Conversion Back-UPS 500 FW: 6.5.I USB FW: c1 , rev > 1.10/1.00, addr 3, iclass 3/0 > > Now I'm looking for a way to get information from it. > I'd like to see battery status, for example. > It it possible using usbhidctl? > > If not, I'd try to port nut-1.2.1's USB support to FreeBSD, > just want to know if this or similar job had already been done. > And if there is work-in-progress, I'd be happy to do tests here. > Hi! Check out my bkcsupsd on http://www.ranner.jawa.at/freebsd.php#bkcsupsd but I got a report today, that there may be oddities with the 500EI. It is reported, that the UPS does not alway send the expected codes. It would be nice, if we could track down that problem and to get the 500EI supported. Bkcsupsd works fine with my older BackUPS, but I dont have the exact version in my head at the moment. Regards, -- /\/\ichael Ranner mranner@jawa.at - mranner@bitonline.cc - webmaster@mariazell.at ---------------------------------------------------------------------- JAWA Management Software GmbH - http://www.jawa.at/ Liebenauer Hauptstrasse 2oo - A-8041 Graz Tel +43 316 403274 21 - Fax +43 316 403274 10 ---------------------------------------------------------------------- Mariazell Online - http://www.mariazell.at/ ---------------------------------------------------------------------- -----BEGIN GEEK CODE BLOCK----- GIT/CS/AT dx(-) s+:(++:) a- C++ UBLVS++++$ P++>+++$ L-(+)$ E--- W+++$ N+(++) o-- K- w--()$ O-(--) M@ V-(--) PS+>++ PE(-) Y+ PGP(-) t+ 5+ X+++(++++) R* tv++ b+(++) DI++ D-(--) G- e h--(*) r++ y? ------END GEEK CODE BLOCK------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Mar 1 3:44:31 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0D2037B401 for ; Sat, 1 Mar 2003 03:44:30 -0800 (PST) Received: from grosbein.pp.ru (www2.svzserv.kemerovo.su [213.184.65.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48D9343FA3 for ; Sat, 1 Mar 2003 03:44:26 -0800 (PST) (envelope-from eugen@grosbein.pp.ru) Received: from grosbein.pp.ru (smmsp@localhost [127.0.0.1]) by grosbein.pp.ru (8.12.7/8.12.7) with ESMTP id h21BiB9o054524 for ; Sat, 1 Mar 2003 18:44:11 +0700 (KRAT) (envelope-from eugen@grosbein.pp.ru) Received: (from eugen@localhost) by grosbein.pp.ru (8.12.7/8.12.7/Submit) id h21BL2Z4054098; Sat, 1 Mar 2003 18:21:02 +0700 (KRAT) Date: Sat, 1 Mar 2003 18:21:02 +0700 From: Eugene Grosbein To: Michael Ranner Cc: freebsd-stable@FreeBSD.ORG Subject: Re: APC BackUPS CS BK500EI USB Message-ID: <20030301182102.A53219@grosbein.pp.ru> References: <20030301132711.A3371@grosbein.pp.ru> <200303011047.46539.mranner@inode.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200303011047.46539.mranner@inode.at>; from mranner@inode.at on Sat, Mar 01, 2003 at 10:51:52AM +0100 Sender: owner-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 output of usbhidctl: # usbhidctl -f 0 -a usbhidctl: device does not support immediate mode, only changes reported. 0xff84:0x0024.0xff85:0x0044=0 0xff84:0x0024.0xff85:0x0045=0 0xff84:0x0024.0xff86:0x0060=0 0xff84:0x0024.0xff85:0x0066=0 0xff84:0x0024.0xff85:0x0068=0 0xff84:0x0024.0xff85:0x00d0=0 0xff84:0x0024.0xff85:0x0042=0 0xff84:0x0024.0xff84:0x0069=0 Eugene To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Mar 1 4:50:59 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECC6637B401 for ; Sat, 1 Mar 2003 04:50:57 -0800 (PST) Received: from gs166.sp.cs.cmu.edu (GS166.SP.CS.CMU.EDU [128.2.205.169]) by mx1.FreeBSD.org (Postfix) with SMTP id 678BA43F75 for ; Sat, 1 Mar 2003 04:50:57 -0800 (PST) (envelope-from dpelleg@gs166.sp.cs.cmu.edu) To: freebsd-stable@FreeBSD.ORG Subject: SanDisk SDDR-75 Compact flash card reader From: Dan Pelleg Date: 01 Mar 2003 07:50:17 -0500 Message-ID: Lines: 30 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 I'm trying to get an ImageMate SDDR-75 (dual CF/SM reader) to work. umass(4) says it is supported. However what I get is: /kernel: umass0: SanDisk Corporation ImageMate CF-SM, rev 1.10/1.00, addr 2 /kernel: da0 at umass-sim0 bus 0 target 0 lun 0 /kernel: da0: Removable Direct Access SCSI-0 device /kernel: da0: 650KB/s transfers /kernel: da0: Attempt to query device size failed: NOT READY, Medium not present And all attempts to mount the disk give me an I/O error after logging: /kernel: umass0: BBB reset failed, TIMEOUT /kernel: umass0: BBB bulk-in clear stall failed, TIMEOUT /kernel: umass0: BBB bulk-out clear stall failed, TIMEOUT a few times. camcontrol rescan all; camcontrol devlist shows: at scbus0 target 0 lun 0 (da0,pass0) The USB port is ok, and so is the reader and the media - I was able to mount them on the same machine under Win2K with the default drivers. Running 4.8-PRERELEASE (as of Feb 26). -- Dan Pelleg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Mar 1 16:28:31 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2F4337B401 for ; Sat, 1 Mar 2003 16:28:29 -0800 (PST) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2550743FB1 for ; Sat, 1 Mar 2003 16:28:28 -0800 (PST) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 6406A51A57; Sun, 2 Mar 2003 10:58:47 +1030 (CST) Date: Sun, 2 Mar 2003 10:58:47 +1030 From: Greg 'groggy' Lehey To: Phil Kernick Cc: Phil Kernick , Santos , freebsd-stable@freebsd.org Subject: Re: Console size Message-ID: <20030302002847.GM41962@wantadilla.lemis.com> References: <20030301022028.GB41962@wantadilla.lemis.com> <20030301073703.51096158@mail.rotfl.com.au> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XlS4q8O07AKt4+K1" Content-Disposition: inline In-Reply-To: <20030301073703.51096158@mail.rotfl.com.au> User-Agent: Mutt/1.4i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --XlS4q8O07AKt4+K1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Saturday, 1 March 2003 at 18:07:03 +1030, Phil Kernick wrote: >>> Interestingly, when the screen saver on the console cuts in, it seems to >>> restore the vidcontrol setting. >>> >>> So, my question is, how do I get the vidcontrol setting automatically >>> restored when a Ctrl-Alt-F1 from an X session back to ttyv0? >> >> I'd guess that this is a bug. What happens when you run vidcontrol >> again after switching back? > > It gets reapplied and the virtual consoles work again. Sounds like you have material for a PR. Greg -- See complete headers for address and phone numbers Please note: we block mail from major spammers, notably yahoo.com. See http://www.lemis.com/yahoospam.html for further details. --XlS4q8O07AKt4+K1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQE+YVA/IubykFB6QiMRAlVeAJ9J/AWoMHyxHK1n8+yeNmcQ/OD/+gCffc2J b5H5ks5EJgeh00fedklm9uQ= =UHSF -----END PGP SIGNATURE----- --XlS4q8O07AKt4+K1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message From owner-freebsd-stable Sat Mar 1 17: 1: 7 2003 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F58937B401; Sat, 1 Mar 2003 17:01:06 -0800 (PST) Received: from mail.rotfl.com.au (eth1779.sa.adsl.internode.on.net [150.101.235.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3D0543F93; Sat, 1 Mar 2003 17:01:04 -0800 (PST) (envelope-from philk@rotfl.com.au) Message-ID: <3E6157CE.8050607@rotfl.com.au> Date: Sun, 02 Mar 2003 11:31:02 +1030 From: Phil Kernick User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2.1) Gecko/20030129 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Greg 'groggy' Lehey Cc: Phil Kernick , Santos , freebsd-stable@freebsd.org Subject: Re: Console size References: <20030301022028.GB41962@wantadilla.lemis.com> <20030301073703.51096158@mail.rotfl.com.au> <20030302002847.GM41962@wantadilla.lemis.com> In-Reply-To: <20030302002847.GM41962@wantadilla.lemis.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 Already filed a PR - kern/48777. Greg 'groggy' Lehey wrote: > On Saturday, 1 March 2003 at 18:07:03 +1030, Phil Kernick wrote: > >>>>Interestingly, when the screen saver on the console cuts in, it seems to >>>>restore the vidcontrol setting. >>>> >>>>So, my question is, how do I get the vidcontrol setting automatically >>>>restored when a Ctrl-Alt-F1 from an X session back to ttyv0? >>> >>>I'd guess that this is a bug. What happens when you run vidcontrol >>>again after switching back? >> >>It gets reapplied and the virtual consoles work again. > > > Sounds like you have material for a PR. > > Greg > -- > See complete headers for address and phone numbers > Please note: we block mail from major spammers, notably yahoo.com. > See http://www.lemis.com/yahoospam.html for further details. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message