From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 00:02:37 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD80A106564A for ; Sun, 23 Nov 2008 00:02:37 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (ns1.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id 976F28FC08 for ; Sun, 23 Nov 2008 00:02:37 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id mAN031dj078580; Sat, 22 Nov 2008 16:03:02 -0800 (PST) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Sat, 22 Nov 2008 16:02:33 -0800 (PST) Date: Sat, 22 Nov 2008 16:02:32 -0800 From: Gary Kline To: Robert Huff Message-ID: <20081123000232.GA62032@thought.org> References: <20081122231556.GA60364@thought.org> <18728.37850.357625.984982@jerusalem.litteratus.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <18728.37850.357625.984982@jerusalem.litteratus.org> User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22 years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: FreeBSD Mailing List Subject: Re: trying to catch the triple '\0342', '\0200', '\0220' but cannot. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 00:02:37 -0000 On Sat, Nov 22, 2008 at 06:20:58PM -0500, Robert Huff wrote: > > Gary Kline writes: > > > can somebody help me catch the OOo "'" (aposhtrophe)? It's a triplet > > of the hex chars, xe2, x80, x90, which should be seeable by getchar() > > [[or *not*?]]. The octal are 0342, 0200, and 0220. > > > > The first is, is a-circumflex. Why doesn't > > > > if ((ch1 = getchar()) == '\0342') or, more simply, > > if ((ch1 = getchar()) == '\342') > > catch the first? Is getchar limited to only 7 bytes?? > > Perhaps you want getwc()? Are all these really 16-bit characters? I'll try getwc, tx. > > > Robert Huff > -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 00:04:56 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5FB21065675 for ; Sun, 23 Nov 2008 00:04:56 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from mx.utwente.nl (mx1.utsp.utwente.nl [130.89.2.12]) by mx1.freebsd.org (Postfix) with ESMTP id 512FD8FC0A for ; Sun, 23 Nov 2008 00:04:55 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from lux.student.utwente.nl (lux.student.utwente.nl [130.89.170.81]) by mx.utwente.nl (8.12.10/SuSE Linux 0.7) with ESMTP id mAN04pij025555; Sun, 23 Nov 2008 01:04:52 +0100 From: Pieter de Goeje To: freebsd-questions@freebsd.org Date: Sun, 23 Nov 2008 01:04:51 +0100 User-Agent: KMail/1.9.10 References: <20621867.post@talk.nabble.com> In-Reply-To: <20621867.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811230104.51537.pieter@degoeje.nl> X-UTwente-MailScanner-Information: Scanned by MailScanner. Contact servicedesk@icts.utwente.nl for more information. X-UTwente-MailScanner: Found to be clean X-UTwente-MailScanner-From: pieter@degoeje.nl X-Spam-Status: No Cc: hamtilla Subject: Re: RTL8168/8111 Not Being Assigned to Interface X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 00:04:56 -0000 On Friday 21 November 2008, hamtilla wrote: > I'm running 7.0-RELEASE-i386 on Jetway's NC92-N230 mainboard. The board has > one integrated RTL8168/8111 gigabit NIC as well as an expansion board with > three RTL8168/8111 NICs. > > none2@pci0:1:0:0: class=0x020000 card=0x816810ec chip=0x816810ec > rev=0x02 hdr=0x00 > vendor = 'Realtek Semiconductor' > device = 'RTL8168/8111 PCI-E Gigabit Ethernet NIC' > class = network > subclass = ethernet This NIC requires FreeBSD 7-STABLE or -CURRENT. You can probably copy the if_re driver from -STABLE to your source tree and recompile the kernel, or simply update to 7-STABLE. Hope this helps, Pieter de Goeje From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 00:10:07 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F9CC1065674 for ; Sun, 23 Nov 2008 00:10:07 +0000 (UTC) (envelope-from dan@nyi.unixathome.org) Received: from nyi.unixathome.org (nyi.unixathome.org [64.147.113.42]) by mx1.freebsd.org (Postfix) with ESMTP id 110278FC08 for ; Sun, 23 Nov 2008 00:10:06 +0000 (UTC) (envelope-from dan@nyi.unixathome.org) Received: from localhost (localhost [127.0.0.1]) by nyi.unixathome.org (Postfix) with ESMTP id 235AF50A48 for ; Sun, 23 Nov 2008 00:10:06 +0000 (GMT) X-Virus-Scanned: amavisd-new at unixathome.org Received: from nyi.unixathome.org ([127.0.0.1]) by localhost (nyi.unixathome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aAWhtdS6h70s for ; Sun, 23 Nov 2008 00:10:02 +0000 (GMT) Received: by nyi.unixathome.org (Postfix, from userid 1001) id 50EF450A4B; Sun, 23 Nov 2008 00:10:01 +0000 (GMT) From: Dan Langille To: freebsd-questions@freebsd.org Message-Id: <20081123001002.50EF450A4B@nyi.unixathome.org> Date: Sun, 23 Nov 2008 00:10:01 +0000 (GMT) Subject: The FreeBSD Diary: 2008-11-02 - 2008-11-22 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 00:10:07 -0000 The FreeBSD Diary contains a large number of practical examples and how-to guides. This message is posted weekly to freebsd-questions@freebsd.org with the aim of letting people know what's available on the website. Before you post a question here it might be a good idea to first search the mailing list archives and/or The FreeBSD Diary . -- Dan Langille BSDCan - http://www.BSDCan.org/ - BSD Conference From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 00:37:14 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DFF8106564A for ; Sun, 23 Nov 2008 00:37:14 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (aristotle.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id 0894F8FC08 for ; Sun, 23 Nov 2008 00:37:13 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id mAN0bbe3078763; Sat, 22 Nov 2008 16:37:38 -0800 (PST) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Sat, 22 Nov 2008 16:37:09 -0800 (PST) Date: Sat, 22 Nov 2008 16:37:08 -0800 From: Gary Kline To: Robert Huff Message-ID: <20081123003708.GA63125@thought.org> References: <20081122231556.GA60364@thought.org> <18728.37850.357625.984982@jerusalem.litteratus.org> <20081123000232.GA62032@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081123000232.GA62032@thought.org> User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22 years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: FreeBSD Mailing List Subject: Re: trying to catch the triple '\0342', '\0200', '\0220' but cannot. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 00:37:14 -0000 On Sat, Nov 22, 2008 at 04:02:32PM -0800, Gary Kline wrote: > On Sat, Nov 22, 2008 at 06:20:58PM -0500, Robert Huff wrote: > > > > Gary Kline writes: > > > > > can somebody help me catch the OOo "'" (aposhtrophe)? It's a triplet > > > of the hex chars, xe2, x80, x90, which should be seeable by getchar() > > > [[or *not*?]]. The octal are 0342, 0200, and 0220. > > > > > > The first is, is a-circumflex. Why doesn't > > > > > > if ((ch1 = getchar()) == '\0342') or, more simply, > > > if ((ch1 = getchar()) == '\342') > > > catch the first? Is getchar limited to only 7 bytes?? > > > > Perhaps you want getwc()? > > > Are all these really 16-bit characters? I'll try getwc, tx. well, the getwchar()/getwc(stdin) code following fails: I get the 1st ch and it is echoed correctly with printf, but if ( ch == '\0342') doesn't catch the bytes I'm looking for? Ideas? gary > > > > > > > > Robert Huff > > > > -- > Gary Kline kline@thought.org http://www.thought.org Public Service Unix > http://jottings.thought.org http://transfinite.thought.org > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 00:52:39 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51A63106567B for ; Sun, 23 Nov 2008 00:52:39 +0000 (UTC) (envelope-from bsdnub@comcast.net) Received: from QMTA04.westchester.pa.mail.comcast.net (qmta04.westchester.pa.mail.comcast.net [76.96.62.40]) by mx1.freebsd.org (Postfix) with ESMTP id EAA478FC1D for ; Sun, 23 Nov 2008 00:52:35 +0000 (UTC) (envelope-from bsdnub@comcast.net) Received: from OMTA11.westchester.pa.mail.comcast.net ([76.96.62.36]) by QMTA04.westchester.pa.mail.comcast.net with comcast id iPzv1a00D0mv7h054QiXBJ; Sun, 23 Nov 2008 00:42:31 +0000 Received: from sz0027.wc.mail.comcast.net ([76.96.58.75]) by OMTA11.westchester.pa.mail.comcast.net with comcast id iQiX1a0011dP82L3XQiXbM; Sun, 23 Nov 2008 00:42:31 +0000 X-Authority-Analysis: v=1.0 c=1 a=UgZZheZrYUIA:10 a=uKg9i0BMLCIx_A757ckA:9 a=oW-D5UyJ3vIrX1zrpc_bg8xFH2kA:4 a=gi0PWCVxevcA:10 Date: Sun, 23 Nov 2008 00:42:31 +0000 (UTC) From: bsdnub@comcast.net To: freebsd-questions@freebsd.org Message-ID: <1841889499.1306851227400951103.JavaMail.root@sz0027a.westchester.pa.mail.comcast.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [24.126.250.90] X-Mailer: Zimbra 5.0.9_GA_2533.RHEL5_64 (ZimbraWebClient - IE7 (Win)/5.0.9_GA_2533.RHEL5_64) X-Mailman-Approved-At: Sun, 23 Nov 2008 01:38:29 +0000 Subject: Dual Boot FreeBSD/Windows 2003 Server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 00:52:39 -0000 I am trying to setup a test server that will be able to boot either FreeBSD to Windows Server 2003 R2. I have tried to use the BSD Boot manager and the Windows Boot manager. In either case I have run into problems. When using the BSD boot manager, it will cause the Windows server to crash at boot. Windows manager will not boot to the BSD partition. I have googled it and have not found much other than 3rd party boot manager. Is there a best practices I could follow on this? Has anyone got this combination to work? Thanks for your help. From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 01:50:52 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 654C91065673 for ; Sun, 23 Nov 2008 01:50:52 +0000 (UTC) (envelope-from freebsd@alive.net.ua) Received: from mail.canaltelecom.net (mail.canaltelecom.net [195.93.172.86]) by mx1.freebsd.org (Postfix) with ESMTP id 1E9A58FC0A for ; Sun, 23 Nov 2008 01:50:51 +0000 (UTC) (envelope-from freebsd@alive.net.ua) Received: from c.112.166.a418.sta.adsl.cyfra.net ([62.80.166.112] helo=[127.0.0.1]) by mail.canaltelecom.net with esmtpa (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L43ln-0005fh-Qk for freebsd-questions@freebsd.org; Sun, 23 Nov 2008 03:28:15 +0200 Message-ID: <4928B1A9.2000401@alive.net.ua> Date: Sun, 23 Nov 2008 03:28:09 +0200 From: andrey artemyev User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: problem with IPCS on (FreeBSD 7.0-RELEASE-p5) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 01:50:52 -0000 FreeBSD 7.0-RELEASE-p5 amd64 Programming C/C++. The down Queues (msgid = msgget ....) after message reception (msgrcv) # ipcs Message Queues: T ID KEY MODE OWNER GROUP q 327680 1174 --rw-rw-rw- root wheel ..... Example: msgserv.c ------------------- #include #include #include #include #include #include #include #include "msgtypes.h" int main(int argc, char * argv[]) { struct msg_t message; int msgid; char * response = "Ok!"; msgid = msgget(KEY, 0666 | IPC_CREAT); msgrcv(msgid, &message, sizeof(message), 2, 0); /* ATTENTION!!! After "msgrcv(msgid, &message, sizeof(message), 2, 0);" - Queues(msgid) DOWN Helps only to create anew "msgid = msgget(KEY, 0666 | IPC_CREAT);" */ printf("Client (pid = %i) sent: %s", message.snd_pid, message.body); message.mtype = 1; message.snd_pid = getpid(); strcpy(message.body, response); msgsnd(msgid, &message, sizeof(message), 0); // errno = 22 (bad msgid) msgrcv(msgid, &message, sizeof(message), 2, 0); msgctl(msgid, IPC_RMID, 0); return EXIT_SUCCESS; } ------------------- msgtypes.h ------------------- #ifndef MSG_TYPES #define MSG_TYPES #define KEY 1174 #define MAXLEN 512 struct msg_t { long mtype; int snd_pid; char body[MAXLEN]; }; #endif ------------------- msgcli.c ------------------- #include #include #include #include #include #include #include "msgtypes.h" int main(int argc, char * argv[]) { int msgid; int i; struct msg_t message; char buf[MAXLEN]; msgid = msgget(KEY, 0666); if (msgid == -1) { printf("Server is not running!\n", msgid); return EXIT_FAILURE; } i = 0; while ( (i < (MAXLEN - 1)) && ((message.body[i++] = getchar()) != '\n') ); message.body[i] = '\0'; message.mtype = 2; message.snd_pid = getpid (); msgsnd(msgid, &message, sizeof(message), 0); msgrcv(msgid, &message, sizeof(message), 1, 0); printf("Server (pid= %i) responded: %s\n", message.snd_pid, message.body); message.mtype = 2; msgsnd(msgid, &message, sizeof(message), 0); return EXIT_SUCCESS; } ------------------- Tested on FreeBSD 6.2 i386 - All has passed remarkably, errors were not From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 01:52:19 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F3CF7106564A for ; Sun, 23 Nov 2008 01:52:18 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.191]) by mx1.freebsd.org (Postfix) with ESMTP id 82CE48FC0A for ; Sun, 23 Nov 2008 01:52:18 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by mu-out-0910.google.com with SMTP id i2so1614158mue.3 for ; Sat, 22 Nov 2008 17:52:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=iqYT0N3An8paK+cQbYvserFhHPWvbAqDOYcsC3jqQJo=; b=EjxJHNE+C62juF1UEtKtiyWqR+RT1FTy7Q4eTSKoFEeFoAM45NqmbJ4CsFECQPqZII DzHz0XaXOr6LrdAg3Wf0xSo3yV/rJUPSuRzQP9vVhkCPTKJmNwyIxb6R/lrGn3bvfNJ8 CKEfH2fqQxX+/eynqc16Jk6ZszqldO7TpoZnk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=Z5Siy7ERs2GyLvNi60BB7+gHwXFZ7loa5v9fgIWs2mTo31qQvYHyHwgpd5LYFFfTD+ b5oyoC1ccwvPPd/kqvnDkmGbURHV4xHfvFfBeQaSlKLRIc1f4+YCRVJ54bXPw9WF/xGR hnwm4EMHBbwZJl6Ltus9WPfA3sezhfkjdCGRQ= Received: by 10.103.248.1 with SMTP id a1mr625562mus.40.1227405137284; Sat, 22 Nov 2008 17:52:17 -0800 (PST) Received: by 10.103.169.16 with HTTP; Sat, 22 Nov 2008 17:52:17 -0800 (PST) Message-ID: <4ad871310811221752t280d492eie15f02d15cc509ea@mail.gmail.com> Date: Sat, 22 Nov 2008 20:52:17 -0500 From: "Glen Barber" To: bsdnub@comcast.net In-Reply-To: <1841889499.1306851227400951103.JavaMail.root@sz0027a.westchester.pa.mail.comcast.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1841889499.1306851227400951103.JavaMail.root@sz0027a.westchester.pa.mail.comcast.net> Cc: freebsd-questions@freebsd.org Subject: Re: Dual Boot FreeBSD/Windows 2003 Server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 01:52:19 -0000 On Sat, Nov 22, 2008 at 7:42 PM, wrote: > I am trying to setup a test server that will be able to boot either FreeBSD to Windows Server 2003 R2. I have tried to use the BSD Boot manager and the Windows Boot manager. In either case I have run into problems. When using the BSD boot manager, it will cause the Windows server to crash at boot. Windows manager will not boot to the BSD partition. > > I have googled it and have not found much other than 3rd party boot manager. Is there a best practices I could follow on this? Has anyone got this combination to work? > > Thanks for your help. I am not aware of any bootloader changes between XP and Server 2003, but ideally, you should install Server 2K3 first, and FreeBSD second, using the FreeBSD Boot Manager at the boot manager selection. I haven't tested this dual boot, but as I said, to my knowledge the bootloader has not changed. Could you provide us with specific details on the errors (preferably from both instances). -- Glen Barber "If you have any trouble sounding condescending, find a Unix user to show you how it's done." --Scott Adams From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 02:08:14 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6189106564A for ; Sun, 23 Nov 2008 02:08:14 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id 7699A8FC12 for ; Sun, 23 Nov 2008 02:08:14 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr08.lnh.mail.rcn.net ([207.172.157.28]) by smtp02.lnh.mail.rcn.net with ESMTP; 22 Nov 2008 21:08:13 -0500 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr08.lnh.mail.rcn.net (MOS 3.10.3-GA) with ESMTP id KLU24103; Sat, 22 Nov 2008 21:08:12 -0500 (EST) Received: from unknown (HELO jerusalem.litteratus.org.litteratus.org) ([209.6.22.188]) by smtp01.lnh.mail.rcn.net with ESMTP; 22 Nov 2008 21:08:13 -0500 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18728.47884.313943.733447@jerusalem.litteratus.org> Date: Sat, 22 Nov 2008 21:08:12 -0500 To: questions@freebsd.org X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr08.lnh.mail.rcn.net) Cc: Subject: meaning/import of WARNINGs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 02:08:14 -0000 Looking over logs recently, I noticed two messages I don't remember seeing before: WARNING: Expected rawoffest 0, found 63 and WARING: use of network_interfaces other than "AUTO" is deprecated A little research suggests the first is (mostly) harmless. Can anyone confirm or deny? As for the second ... I know where this is from; has there been discussion anywhere as to why this is happening? (Don't remember anything coming across current@ or hackers@.) Respectfully, Robert Huff From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 02:53:12 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BF201065672 for ; Sun, 23 Nov 2008 02:53:12 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (gizmo.acns.msu.edu [35.8.1.43]) by mx1.freebsd.org (Postfix) with ESMTP id D0DF58FC1C for ; Sun, 23 Nov 2008 02:53:11 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (localhost [127.0.0.1]) by gizmo.acns.msu.edu (8.13.6/8.13.6) with ESMTP id mAN2mjCk049138; Sat, 22 Nov 2008 21:48:45 -0500 (EST) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: (from jerrymc@localhost) by gizmo.acns.msu.edu (8.13.6/8.13.6/Submit) id mAN2mie7049137; Sat, 22 Nov 2008 21:48:44 -0500 (EST) (envelope-from jerrymc) Date: Sat, 22 Nov 2008 21:48:44 -0500 From: Jerry McAllister To: bsdnub@comcast.net Message-ID: <20081123024844.GA49102@gizmo.acns.msu.edu> References: <1841889499.1306851227400951103.JavaMail.root@sz0027a.westchester.pa.mail.comcast.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1841889499.1306851227400951103.JavaMail.root@sz0027a.westchester.pa.mail.comcast.net> User-Agent: Mutt/1.4.2.2i Cc: freebsd-questions@freebsd.org Subject: Re: Dual Boot FreeBSD/Windows 2003 Server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 02:53:12 -0000 On Sun, Nov 23, 2008 at 12:42:31AM +0000, bsdnub@comcast.net wrote: > I am trying to setup a test server that will be able to boot either > FreeBSD to Windows Server 2003 R2. I have tried to use the BSD Boot > manager and the Windows Boot manager. In either case I have run into > problems. When using the BSD boot manager, it will cause the Windows > server to crash at boot. Windows manager will not boot to the BSD partition. > > I have googled it and have not found much other than 3rd party boot > manager. Is there a best practices I could follow on this? Has anyone > got this combination to work? Yes, there is. First, please break your lines at around 70 characters length. It makes it much easier to read and to respond to. If your editor for Email won't do it for you (most will), then just hit RETURN/ENTER when the line gets that long. Secondly, this was discussed at length in the last couple of days. Please check the archives. Third, I have never had a problem with doing this and have built a number of dual boot machines with various versions of MS-Win and FreeBSD and always used the FreeBSD boot manager. Some questions: How did you lay out the disk? Is MS-Win in the first slice (primary partition)? Are you retaining the original MS-Win install? If so, what did you use to shrink it down to make room for FreeBSD? Did you make both a "primary partition" You need to. How did you go about slicing and partitioning the FreeBSD slice. - MS-Win has to be the first non-hidden slice (primary partition) - MS-Win must be installed first and then FreeBSD or MS-Win will trash some things that FreeBSD sets up. FreeBSD will not trash MS-Win, unless you tell it to write in the wrong place. - You want to write the FreeBSD MBR and have it mark the slice as bootable during the fdisk stage and then the boot sector during the bsdlabel stage. - Your root partition neess to be the first one on the slice. For more than this, please do some searches in the archive. I have written extensively several times on this and so have some other people. ////jerry > > Thanks for your help. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 03:17:33 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B2531065670 for ; Sun, 23 Nov 2008 03:17:33 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (ns1.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id 62E258FC0C for ; Sun, 23 Nov 2008 03:17:33 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id mAN3Hvov079558; Sat, 22 Nov 2008 19:17:58 -0800 (PST) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Sat, 22 Nov 2008 19:17:28 -0800 (PST) Date: Sat, 22 Nov 2008 19:17:28 -0800 From: Gary Kline To: Glyn Millington Message-ID: <20081123031728.GB67348@thought.org> References: <20081122214311.GA54547@thought.org> <86y6zbh0uf.fsf@nowhere.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <86y6zbh0uf.fsf@nowhere.org> User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22 years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: FreeBSD Mailing List Subject: Re: OO, text OR .odt to HTML? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 03:17:33 -0000 On Sat, Nov 22, 2008 at 10:06:48PM +0000, Glyn Millington wrote: > Gary Kline writes: > > > is there a push button way of turning an odt file or plain ascii file > > into HTML using openoffice? > > > > i've googled, but haven't found anything. > > In OO 3 > > File->Export->File Format -> html/xhtml > when were you dfinally able to get 3 built?? i tried a month ago and something snafu'd. i'll give it a 2nd try; meanwhile will see if your pointers works on my 2.4 gary PS: YES! [[ still will try to rebuilt OO3 ]] > > > hth > > > Glyn > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 05:36:27 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4FCB106564A for ; Sun, 23 Nov 2008 05:36:27 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id A0A788FC08 for ; Sun, 23 Nov 2008 05:36:27 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from 68-189-244-97.dhcp.oxfr.ma.charter.com ([68.189.244.97] helo=Gregory-Larkins-Computer.local) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L47dx-0000jd-3z; Sun, 23 Nov 2008 00:36:26 -0500 Received: from [127.0.0.1] (fireball.entropy.prv [192.168.1.12]) by Gregory-Larkins-Computer.local (Postfix) with ESMTP id 8795827CDAE9; Sun, 23 Nov 2008 00:36:24 -0500 (EST) Message-ID: <4928EBDD.4060509@FreeBSD.org> Date: Sun, 23 Nov 2008 00:36:29 -0500 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Pieter Donche References: <20081111192900.GA5398@icarus.home.lan> <4ad871310811220508y2b223ad4k31937f4f231b2fab@mail.gmail.com> <4ad871310811220544g32fadf85t7a6330fa98ce2895@mail.gmail.com> In-Reply-To: X-Enigmail-Version: 0.95.7 OpenPGP: id=1C940290 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.5 (-) Cc: Glen Barber , freebsd-questions@freebsd.org Subject: Re: FreeBSD in VMWare box X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 05:36:28 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Pieter Donche wrote: > On Sat, 22 Nov 2008, Glen Barber wrote: > >> On Sat, Nov 22, 2008 at 8:43 AM, Pieter Donche >> wrote: >>> On Sat, 22 Nov 2008, Glen Barber wrote: >>> >>>>> The PC with WMware is connect to internet. Should one configure >>>>> Ethernet then. If yes, what static IP parameters must one enter?? >>>> >>>> This would be contingent on how you have networking set up. Do you >>>> have NAT or Bridged only? If NAT, use rc.conf with the inet address >>>> of your choice and the netmask for your NAT. >>> >>> My PC is connected to Internet using an ADSL modem to connect to an ISP. >>> It uses IP 10.0.0.somevalue, netmask 255.255.255.0, no gateway specified >>> and two DNS server IP addresses which my ISP asked to use. >>> >>> Is this 'NAT' or 'Bridged'. >>> >> >> You'd have to tell me; it's your VM. Check the network settings in the >> management interface. > > (I previously installed an openSUSE 10.3 VM, and needed not enter any > TCP/IP parameter, and could use netwerking afterwards) > > The default settings of my VMware are (from Edit / Virtual Network Editor) > > Summary > Virt. Network - Summary - Subnet - DHCP > VMnet0 (Bridged) - Bridged to an automatically choosen adapter - - > VMnet1 (Host-only) - A private nw shared with the host - 192.168.72.0 - > Enabled > VMnet8 (NAT) - Used to share the host's IP address - 192.168.173.0 - > Enabled > > Automatic Bridging > CHECKED: AUtomatically choose an available physical netwerk adapter to > bridge to VMnet0 > > Host Virtual Netwerk Mapping > VMnet0 Brigded to an automatically chosen adapter > (here I can also select my physical network card) > VMnet1 VMware Network Adapter VMnet1 (only choice) > VMnet2 (and 3 to 7 and 9): Not bridged > (here I can also select my physical network card) > VMnet8 VMware Network Adapter VMnet8 (only choice) > > Host Virtual Adapters > Network Adpater Virt.Nw Status > VMware Network Adapter VMnet1 VMnet1 Enabled > VMware Network Adapter VMnet8 VMnet8 Enabled > > DHCP > Virtual Network Subnet Netmask Description > VMnet1 192.168.72.0 255.255.255.0 vmnet1 > VMnet8 192.168.137.0 255.255.255.0 vmnet8 > > NAT > VMnet host: VMnet8 > Gateway IP address : 192.168.137.2 [ grey ] > Netmask: 255.255.255.0 [ grey ] > Nat Service > Service Status: Started > Service request: [ empty ] > >>> Can I enter values and then what values, for host, domain, IPV4 gateway, >>> Name server, IPV4 address, netmask in the screen presented during >>> FreeBSD >>> install >>> or should i use Cancel in that screen and make changes in system >>> files (and >>> what changes in what system files)? >>> Hi Pieter, In order to get outbound Internet access for a VM, add a network adapter device to it and assign it to VMnet8 (NAT). Within your VM, as noted by another person that replied to this thread, set your network interface for DHCP in /etc/rc.conf like so: ifconfig_em0="DHCP" I use e1000 network devices, so my network interface is "em0" - yours may be different. When the VM boots, it queries VMnet8's DHCP server for an IP address, gateway and DNS servers. These will likely be the same as those on your host machine. The VM will have outbound Internet access, but will only be able to provide services to your host machine. If you want the VM to provide services to the outside world, you can bind its network interface to VMnet1 (Bridged) instead of VMnet8, and it will receive a public IP address, assuming your ISP has allocated additional ones to you. Otherwise, you may be able to configure your router to use your single public IP address and port forward inbound connections to your VM. Hope that helps, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJKOvd0sRouByUApARAt7JAJ4lNM6MI+eV1S9Oizjz1Ad040Kf6gCguVlI Iko16BDE1ZgD82hp5PGwo0s= =kONl -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 06:37:27 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC7391065674 for ; Sun, 23 Nov 2008 06:37:27 +0000 (UTC) (envelope-from freebsd@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.freebsd.org (Postfix) with ESMTP id 7D61D8FC17 for ; Sun, 23 Nov 2008 06:37:27 +0000 (UTC) (envelope-from freebsd@hub.org) Received: from localhost (unknown [200.46.204.183]) by hub.org (Postfix) with ESMTP id BAB6411A2CA2 for ; Sun, 23 Nov 2008 01:22:04 -0400 (AST) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.204.183]) (amavisd-maia, port 10024) with ESMTP id 35345-05 for ; Sun, 23 Nov 2008 01:22:04 -0400 (AST) Received: from [192.168.1.2] (blk-224-204-104.eastlink.ca [24.224.204.104]) by hub.org (Postfix) with ESMTPA id 23DF611A2875 for ; Sun, 23 Nov 2008 01:22:04 -0400 (AST) Date: Sun, 23 Nov 2008 01:22:02 -0400 From: "Marc G. Fournier" To: freebsd-questions@freeBSD.org Message-ID: X-Mailer: Mulberry/4.0.8 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: auto-addm new tap device to existing bridge ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 06:37:27 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Is this possible? I'm using qemu, and when I start it up, it auto-create a tap device if one isn't available ... but, having that tap device not attached to the bridge that does exist doesn't help much ... if there some flag I can set, or sysctl value, that will have the new tap device attach itself to an existing bridge device? thanks ... - -- Marc G. Fournier Hub.Org Hosting Solutions S.A. (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkko6HoACgkQ4QvfyHIvDvNBngCg7ZiDOaRCDGUuE+hbaNCsjMd1 WV8An1os19WO7nQJeBvUIot/rtxYI0/M =no2/ -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 06:39:22 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDE2F1065672 for ; Sun, 23 Nov 2008 06:39:22 +0000 (UTC) (envelope-from glyn@millingtons.org) Received: from smtpout.karoo.kcom.com (smtpout.karoo.kcom.com [212.50.160.34]) by mx1.freebsd.org (Postfix) with ESMTP id 762168FC0C for ; Sun, 23 Nov 2008 06:39:22 +0000 (UTC) (envelope-from glyn@millingtons.org) X-IronPort-AV: E=Sophos;i="4.33,653,1220223600"; d="scan'208";a="49412762" Received: from unknown (HELO glynthebearded.millingtons.org) ([82.152.120.109]) by smtpout.karoo.kcom.com with ESMTP; 23 Nov 2008 06:39:20 +0000 Received: by glynthebearded.millingtons.org (Postfix, from userid 1001) id 9C38B5C4D; Sun, 23 Nov 2008 06:37:20 +0000 (GMT) To: Gary Kline References: <20081122214311.GA54547@thought.org> <86y6zbh0uf.fsf@nowhere.org> <20081123031728.GB67348@thought.org> Organization: Central Church, Torquay, U.K. X-Now-Playing: There's a deathly hush in the close tonight! X-Liturgical-Date: Solemnity: Christ the King, A.D. 2008 From: Glyn Millington Date: Sun, 23 Nov 2008 06:37:20 +0000 In-Reply-To: <20081123031728.GB67348@thought.org> (Gary Kline's message of "Sat\, 22 Nov 2008 19\:17\:28 -0800") Message-ID: <86wsev3q3j.fsf@nowhere.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: FreeBSD Mailing List Subject: Re: OO, text OR .odt to HTML? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glyn@millingtons.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 06:39:22 -0000 Gary Kline writes: > On Sat, Nov 22, 2008 at 10:06:48PM +0000, Glyn Millington wrote: >> Gary Kline writes: >> >> > is there a push button way of turning an odt file or plain ascii file >> > into HTML using openoffice? >> > >> > i've googled, but haven't found anything. >> >> In OO 3 >> >> File->Export->File Format -> html/xhtml >> > when were you dfinally able to get 3 built?? i tried a month ago and > something snafu'd. October 15th! If memory serves there were no problems here. > i'll give it a 2nd try; meanwhile will see if your > pointers works on my 2.4 > > gary > > PS: YES! [[ still will try to rebuilt OO3 ]] Splendid :-) atb Glyn From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 07:14:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1752F106564A for ; Sun, 23 Nov 2008 07:14:45 +0000 (UTC) (envelope-from ptkrisada@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.231]) by mx1.freebsd.org (Postfix) with ESMTP id D725B8FC08 for ; Sun, 23 Nov 2008 07:14:44 +0000 (UTC) (envelope-from ptkrisada@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so1556440rvf.43 for ; Sat, 22 Nov 2008 23:14:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=kQ0Gm/8mo/eB3uRazkJ2q5EOqWxD/yMvzJVGTZEMBL8=; b=xSZ0wXi605SObteI0qmT4SDwWq6GAcSG/nloahLDe6i2p4RfmPWax+1cIcEu3fCAzC zyAozwVFWKKm9aGxgGUJOXNBjsns7gMeHNlw2BKp/frj3KA2Yg8AzeynaCr0jo5W/jU7 ZqF3I4LJG0Lan6A612LwbHFRx1mlSBtJFG82M= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=oTrG1TQWp/HGsg/x8uknNBNR2IpFpGRJTJWbvW/CcFgJ+lVmdovWDvaPaloa7PkUBU 1ORJFmwB7h/6M1rsbHobvOX0t0HrRTQeYPeUatV8LhKz+RxvddNH7G1q8YVejJpms47x qrxgeqF1F525hjpgAGpsJJDNeZXnYtOznpH6A= Received: by 10.141.115.20 with SMTP id s20mr1202131rvm.255.1227424484111; Sat, 22 Nov 2008 23:14:44 -0800 (PST) Received: by 10.141.114.4 with HTTP; Sat, 22 Nov 2008 23:14:44 -0800 (PST) Message-ID: Date: Sun, 23 Nov 2008 14:14:44 +0700 From: "Pongthep Kulkrisada" To: freebsd-questions@freebsd.org In-Reply-To: <20081121145726.0c1208bc.freebsd@edvax.de> MIME-Version: 1.0 References: <20081121060619.GA1057@gmail.com> <20081121145726.0c1208bc.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Problem about ppp -nat X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 07:14:45 -0000 Hi All, Firstly, I'm sorry for late reply. For simplicity to your responses, I shall ask question by question... * Manolis Kiagias (sonic2000gr@gmail.com) wrote: > > There are at least two ways that I know of to achieve this. One uses the > ipfw firewall, the other the pf firewall. > For the ipfw solution, look at the FreeBSD Handbook: > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-natd.html 1. I heard that ppp itself has capability of NAT. It can work with the command ppp -nat and without running natd. Please tell me whether it is right or wrong. ipfw is the same. If natd is not used, I can't add the rule ... add divert natd ip from any to any via tun0 to /etc/ipfw.rules. I'm confused. 2. And if natd is still required, what -nat argument (ppp -nat) is for? > This worked fine for me, although I prefer to use pf. Here is how I > setup pf (Adjust for your interfaces as necessary) > > My Internet interface is rl0, setup in rc.conf as: > > ifconfig_rl0="inet 192.168.0.100 netmask 255.255.255.0" > > My local interface is rl1, setup in rc.conf as: > > ifconfig_rl1="inet 192.168.1.100 netmask 255.255.255.0" 3. I haven't mentioned that I can't use this configuration. I have 2 interfaces i.e. public and private LAN. But I have only one NIC card for private LAN. I don't have NIC card for public. I'm using 56k modem to connect the outside world. I think I can't add ifconfig_tun0="inet 192.168.0.100 netmask 0xffffff00" to /etc/rc.conf. If I'm wrong, please tell me. I did much googling. All sites always refer 2 NIC cards being used like your example. I do have only one NIC card + 56k serial modem (/dev/cuad0). > (I also have a defaultrouter setting which probably does not apply to you) > > I have nameserver entries in /etc/resolv.conf (or setup your own DNS > server if you wish) 4. I also have nameserver entries. I tried setting DNS server on my WinXP host to both gateway (FBSD host) and DNS servers of ISP. Both don't work. > Use this settings in rc.conf for pf: > > pf_enable="YES" > pflog_logfile="/var/log/pflog" > pflog_flags="" > pf_rules="/etc/pf.conf" > pf_flags="" > gateway_enable="YES" 5. I think I have equivalent setting of ipfw in /etc/rc.conf but don't work. gateway_enable="YES" firewall_enable="YES" firewall_type="OPEN" firewall_quite="YES" firewall_script="/etc/ipfw.rules" firewall_logging="YES" > Run: > # sysctl net.inet.ip.forwarding=1 > # /etc/rc.d/routing restart > > Add net.inet.ip.forwarding=1 to /etc/sysctl.conf so it persists reboots 6. I recompiled my kernel. options IPFIREWALL options IPFIREWALL_FORWARD options IPFIREWALL_DEFAULT_TO_ACCEPT options IPFIREWALL_VERBOSE options IPFIREWALL_VERBOSE_LIMIT=120 options IPDIVERT I think it should be equivalent to sysctl setting. > Add the following rule to /etc/pf.conf > > nat pass on rl0 from rl1:network to any -> rl0 > > AFAIR, if rl0 has a dynamic address, you will have to write it with > parentheses, like: > > nat pass on rl0 from rl1:network to any -> (rl0) > (Note that in /etc/pf.conf translation rules like the above, are placed > above filtering rules like pass or block etc) > You may have to adjust /etc/pf.conf filtering rules, assuming you have any. > > Restart some services > > # /etc/rc.d/netif restart > # /etc/rc.d/routing restart > # /etc/rc.d/pf restart > > or simply reboot, and you should be set. 7. I don't know about PF. * Fbsd1 (fbsd1@a1poweruser.com) wrote: > You need to run dhcp so you can assign ip address on the LAN so the down > stream xp box can gain access to the public internet through your > gateway freebsd box. There is a detailed step by step instructions in > the install guide at www.a1poweruser.com 8. I read doc from the mentioned site. The doc does not mention anything about sharing ppp dial-up to the other host. And I'm sorry dhcp is not the point of my concern now. I only want to share internet access whether IP is static or dynamic. BTW the doc is very good anyway. I shall keep it. :-) * Polytropon (freebsd@edvax.de) wrote: > First of all, I made my kernel capable; significant parts: > # Firewall, NAT > ...blah 9. I compiled the kernel following your advice excepted NETGRAPH. I think PPPoE is not the point of concern > Configuration in /etc/rc.conf goes this way: > ifconfig_xl0="inet 192.168.0.1 netmask 0xffffff00" > ifconfig_rl0="inet 192.168.1.1 netmask 0xffffff00 media 10baseT/UTP" 10. As said earlier, my interface connecting to outside are 56k serial modem (/dev/cuad0). I think I can't set /dev/cuad0 (or even tun0) in this way. 11. CONCLUSION: I did read much document. More I read, more I get confused. I tried many possible things but still don't work. My RECENT configurations are as followings. /etc/rc.conf gateway_enable="YES" firewall_enable="YES" firewall_type="OPEN" firewall_quite="YES" natd_enable="YES" natd_interface="tun0" natd_flags="-s -u -m" kernel options options IPFIREWALL options IPFIREWALL_FORWARD options IPFIREWALL_DEFAULT_TO_ACCEPT options IPFIREWALL_VERBOSE options IPFIREWALL_VERBOSE_LIMIT=120 options IPDIVERT /etc/ipfw.rules add divert natd ip from any to any via tun0 ppp command ppp -background -nat myisp With these settings, My FBSD host can NOT even dial out to ISP. :-( Please anybody tell me, what I do wrong here. At this time I must go back to the original setting in order to dial ISP. And lastly I'm sorry for long questions. Thank you. Pongthep From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 07:41:42 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5C671065670 for ; Sun, 23 Nov 2008 07:41:41 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by mx1.freebsd.org (Postfix) with ESMTP id 6E52D8FC08 for ; Sun, 23 Nov 2008 07:41:41 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: by ug-out-1314.google.com with SMTP id 30so481234ugs.39 for ; Sat, 22 Nov 2008 23:41:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=fcJADf5JVPnVFGaZiM1Kaxa/rrAM5fqW3Tz8mgp0t20=; b=SSULgvpCUg4biEKkCBjoGMzXZYwNmzKo8OcNwP1cncoctpoJk57B46Zkedt9OkGMnT RLqppTo8W6aU1rNN1l4zs1bBWOLU603zXhlX7sJl2Pq574zG6zZbl3S/KmF8qvNHJMBw PxO2z7tudv4TFcm64Pz0jvQJS7GOPrkFhsQ1s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=g8UNNyPq7kqNYksTF4tR4wZBvaGecBumc8nhOItTDxtyNmRbCDgSV1TlkxG88JZfEh W12s1XmIZJGnU1khdIPW+ia/Ux//BaY2LDUy0EDbzTLyahRqq9Pykh59rIXQ4f9qB4K9 G3p/zaqnq50V1cPJkvmaa58nss7JAKHiui2g8= Received: by 10.66.245.2 with SMTP id s2mr1225345ugh.66.1227426100297; Sat, 22 Nov 2008 23:41:40 -0800 (PST) Received: from atlantis.dyndns.org (athedsl-69553.home.otenet.gr [87.203.152.255]) by mx.google.com with ESMTPS id k30sm2363646ugc.25.2008.11.22.23.41.37 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 22 Nov 2008 23:41:38 -0800 (PST) Message-ID: <4929092F.1050709@gmail.com> Date: Sun, 23 Nov 2008 09:41:35 +0200 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.17 (X11/20081011) MIME-Version: 1.0 To: Pongthep Kulkrisada References: <20081121060619.GA1057@gmail.com> <20081121145726.0c1208bc.freebsd@edvax.de> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Problem about ppp -nat X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 07:41:42 -0000 Pongthep Kulkrisada wrote: > * Manolis Kiagias (sonic2000gr@gmail.com) wrote: > >> This worked fine for me, although I prefer to use pf. Here is how I >> setup pf (Adjust for your interfaces as necessary) >> >> My Internet interface is rl0, setup in rc.conf as: >> >> ifconfig_rl0="inet 192.168.0.100 netmask 255.255.255.0" >> >> My local interface is rl1, setup in rc.conf as: >> >> ifconfig_rl1="inet 192.168.1.100 netmask 255.255.255.0" >> > 3. I haven't mentioned that I can't use this configuration. I have 2 > interfaces i.e. public and private LAN. But I have only one NIC card for > private LAN. I don't have NIC card for public. I'm using 56k modem to > connect the outside world. I think I can't add > > ifconfig_tun0="inet 192.168.0.100 netmask 0xffffff00" > You won't of course put this in rc.conf. However AFAIK tun0 is *still* a network interface and can appear in firewall rules. So the PF method I described should work, tun0 is considered the "external" network interface, the rule would be: nat pass on tun0 from rl1:network to any -> (tun0) where rl1 would be the internal interface. Needless to say, I have no way of testing the above as I don't have a modem. Since obviously you want to use ipfw, I still suggest you go by the handbook: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-natd.html First, make sure Internet works normally on your FreeBSD host. Then apply the above instructions. The example in the handbook shows a line: natd_interface="fxp0" which in your case would be: natd_interface="tun0" It seems you already have these settings though, so I would review the Handbook instructions and remove anything else from the configuration which does not appear there. Once things are working, go back and add firewall rules etc. Handbook instructions worked for me (with two ethernet cards though) "out of the box". From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 08:16:54 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4170D106564A for ; Sun, 23 Nov 2008 08:16:54 +0000 (UTC) (envelope-from vinny-mail-01+f.questions20081120@palaceofretention.ca) Received: from www.giovannetti.ca (www.giovannetti.ca [206.248.136.48]) by mx1.freebsd.org (Postfix) with ESMTP id 039028FC08 for ; Sun, 23 Nov 2008 08:16:53 +0000 (UTC) (envelope-from vinny-mail-01+f.questions20081120@palaceofretention.ca) Received: from the.palaceofretention.ca (intgateway.palaceofretention.ca [10.10.10.42]) by www.giovannetti.ca (Postfix) with ESMTP id E272911438 for ; Sun, 23 Nov 2008 02:48:21 -0500 (EST) Message-ID: <492909FD.2030004@palaceofretention.ca> Date: Sun, 23 Nov 2008 02:45:01 -0500 From: Vinny User-Agent: Thunderbird 2.0.0.14 (X11/20080513) MIME-Version: 1.0 To: FreeBSD Questions References: <4926015A.3010803@palaceofretention.ca> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: Suggestions for PII 400 boot failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 08:16:54 -0000 Chris Pratt wrote: > > On Nov 20, 2008, at 4:31 PM, Vinny wrote: > >> Hi, >> >> A friend of mine is trying out FreeBSD and ran into >> a booting problem. Here is his message: >> >> "Well, that's discouraging. >> >> I have put together an old PII 400 with three 20GB drives and a CDROM >> that I'd like to run BSD on. Half a GB of RAM I figured would be >> respectable. >> >> Downloaded the ISO files, burned CDs of them and when I try to run >> them it starts to boot and then freezes tighter than a muskrat's arse. >> >> Three lines coming on the screen and it ends with "Starting the_" and >> just hangs. >> > He might want to try downloading the floppy set and booting > from there. I think that is what I did on an old Dell 200 I'm > using as a bridging firewall at home. This is a pathetically old > machine and won't boot the ISO (I found it when cleaning out > my rental, left to throw away by the renter), but it works great > once you finally get the system on it. It's on 6.2 but I imagine > 7.0 will be fine. > Thanks everyone for your help, Here is a message from my friend: "Well, it's been a long day but I've had some success on the BSD front. I went to a couple of used/recycling/salvage places today looking for a PIII or low-end P4 motherboard and processor. I didn't see anything that was very interesting so toodled on home and had a cup of tea. I decided since the system was essentially running fine (without an OS) that I'd give the floppy disk install a bit of a run. So I downloaded all the floppy disk image files and fdimage.exe (the utility to convert them) and created all the necessary floppy disks. I did a simple install, paritioned the drives and created a user and administrator account along with some basic network settings. It seemed to connect to the internet just fine during boot up and when I ran ping against google.ca I was receiving back valid addressing information so it appears that that is all working fine. So I ran /usr/sbin/sysinstall from the root directory to try to customize the installation a bit better. I adjusted the "media type" to an ftp server as opposed to CDROM and POOF... Bob Shurunkel... BSD is now downloading an X-Windows interface from the internet as we (or I in this case) speak. I suspect there's going to be a bit of a learning curve here but I'm looking forward to it. It could have been much simpler if I would have been able to install from CD to being with but there definitely is a workaround which, in itself, pleases me. Will keep you posted." Vinny From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 09:25:13 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 641921065673 for ; Sun, 23 Nov 2008 09:25:13 +0000 (UTC) (envelope-from awd@awdcomp.net) Received: from home.awdcomp.net (ppp121-45-194-56.lns10.adl2.internode.on.net [121.45.194.56]) by mx1.freebsd.org (Postfix) with ESMTP id D15AB8FC16 for ; Sun, 23 Nov 2008 09:25:12 +0000 (UTC) (envelope-from awd@awdcomp.net) Received: from getafix.abdulla ([192.168.202.99]) by home.awdcomp.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L4Atv-000O4F-GX; Sun, 23 Nov 2008 19:35:07 +1030 Message-ID: <49291CB7.8000302@awdcomp.net> Date: Sun, 23 Nov 2008 19:34:55 +1030 From: Andrew User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Pongthep Kulkrisada References: <20081121060619.GA1057@gmail.com> <20081121145726.0c1208bc.freebsd@edvax.de> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Problem about ppp -nat X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 09:25:13 -0000 Hi Pongthep, Pongthep Kulkrisada wrote: > Hi All, > > Firstly, I'm sorry for late reply. For simplicity to your responses, I shall > ask question by question... > > * Manolis Kiagias (sonic2000gr@gmail.com) wrote: >> There are at least two ways that I know of to achieve this. One uses the >> ipfw firewall, the other the pf firewall. >> For the ipfw solution, look at the FreeBSD Handbook: >> >> > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-natd.html > 1. I heard that ppp itself has capability of NAT. It can work with the > command ppp -nat and without running natd. Please tell me whether it is > right or wrong. That is correct, it doesn't require natd for 'ppp -nat' Just setup your fw of choice as if the tun0 device is the external device and leave all the nat stuff completely out of it. Put any port forwarding rules you need in the ppp.conf file. > ipfw is the same. If natd is not used, I can't add the rule > ... > Correct, you need natd if you will be using ipfw for your NAT rules. > add divert natd ip from any to any via tun0 > > to /etc/ipfw.rules. I'm confused. > > 2. And if natd is still required, what -nat argument (ppp -nat) is for? > natd isn't required for ppp -nat. HTH the confusion. cya Andrew >> This worked fine for me, although I prefer to use pf. Here is how I >> setup pf (Adjust for your interfaces as necessary) >> >> My Internet interface is rl0, setup in rc.conf as: >> >> ifconfig_rl0="inet 192.168.0.100 netmask 255.255.255.0" >> >> My local interface is rl1, setup in rc.conf as: >> >> ifconfig_rl1="inet 192.168.1.100 netmask 255.255.255.0" > 3. I haven't mentioned that I can't use this configuration. I have 2 > interfaces i.e. public and private LAN. But I have only one NIC card for > private LAN. I don't have NIC card for public. I'm using 56k modem to > connect the outside world. I think I can't add > > ifconfig_tun0="inet 192.168.0.100 netmask 0xffffff00" > > to /etc/rc.conf. If I'm wrong, please tell me. > I did much googling. All sites always refer 2 NIC cards being used like your > example. I do have only one NIC card + 56k serial modem (/dev/cuad0). > >> (I also have a defaultrouter setting which probably does not apply to you) >> >> I have nameserver entries in /etc/resolv.conf (or setup your own DNS >> server if you wish) > 4. I also have nameserver entries. I tried setting DNS server on my WinXP > host to both gateway (FBSD host) and DNS servers of ISP. Both don't work. > >> Use this settings in rc.conf for pf: >> >> pf_enable="YES" >> pflog_logfile="/var/log/pflog" >> pflog_flags="" >> pf_rules="/etc/pf.conf" >> pf_flags="" >> gateway_enable="YES" > 5. I think I have equivalent setting of ipfw in /etc/rc.conf but don't work. > gateway_enable="YES" > firewall_enable="YES" > firewall_type="OPEN" > firewall_quite="YES" > firewall_script="/etc/ipfw.rules" > firewall_logging="YES" > >> Run: >> # sysctl net.inet.ip.forwarding=1 >> # /etc/rc.d/routing restart >> >> Add net.inet.ip.forwarding=1 to /etc/sysctl.conf so it persists reboots > 6. I recompiled my kernel. > options IPFIREWALL > options IPFIREWALL_FORWARD > options IPFIREWALL_DEFAULT_TO_ACCEPT > options IPFIREWALL_VERBOSE > options IPFIREWALL_VERBOSE_LIMIT=120 > options IPDIVERT > I think it should be equivalent to sysctl setting. > >> Add the following rule to /etc/pf.conf >> >> nat pass on rl0 from rl1:network to any -> rl0 >> >> AFAIR, if rl0 has a dynamic address, you will have to write it with >> parentheses, like: >> >> nat pass on rl0 from rl1:network to any -> (rl0) >> (Note that in /etc/pf.conf translation rules like the above, are placed >> above filtering rules like pass or block etc) >> You may have to adjust /etc/pf.conf filtering rules, assuming you have > any. >> Restart some services >> >> # /etc/rc.d/netif restart >> # /etc/rc.d/routing restart >> # /etc/rc.d/pf restart >> >> or simply reboot, and you should be set. > 7. I don't know about PF. > > * Fbsd1 (fbsd1@a1poweruser.com) wrote: >> You need to run dhcp so you can assign ip address on the LAN so the down >> stream xp box can gain access to the public internet through your >> gateway freebsd box. There is a detailed step by step instructions in >> the install guide at www.a1poweruser.com > 8. I read doc from the mentioned site. The doc does not mention anything > about sharing ppp dial-up to the other host. And I'm sorry dhcp is not the > point of my concern now. I only want to share internet access whether IP is > static or dynamic. BTW the doc is very good anyway. I shall keep it. :-) > > * Polytropon (freebsd@edvax.de) wrote: >> First of all, I made my kernel capable; significant parts: >> # Firewall, NAT >> ...blah > 9. I compiled the kernel following your advice excepted NETGRAPH. I think > PPPoE is not the point of concern > >> Configuration in /etc/rc.conf goes this way: >> ifconfig_xl0="inet 192.168.0.1 netmask 0xffffff00" >> ifconfig_rl0="inet 192.168.1.1 netmask 0xffffff00 media 10baseT/UTP" > 10. As said earlier, my interface connecting to outside are 56k serial modem > (/dev/cuad0). I think I can't set /dev/cuad0 (or even tun0) in this way. > > 11. CONCLUSION: I did read much document. More I read, more I get confused. > I tried many possible things but still don't work. My RECENT configurations > are as followings. > > /etc/rc.conf > gateway_enable="YES" > firewall_enable="YES" > firewall_type="OPEN" > firewall_quite="YES" > natd_enable="YES" > natd_interface="tun0" > natd_flags="-s -u -m" > > kernel options > options IPFIREWALL > options IPFIREWALL_FORWARD > options IPFIREWALL_DEFAULT_TO_ACCEPT > options IPFIREWALL_VERBOSE > options IPFIREWALL_VERBOSE_LIMIT=120 > options IPDIVERT > > /etc/ipfw.rules > add divert natd ip from any to any via tun0 > > ppp command > ppp -background -nat myisp > > With these settings, My FBSD host can NOT even dial out to ISP. :-( > Please anybody tell me, what I do wrong here. > At this time I must go back to the original setting in order to dial ISP. > And lastly I'm sorry for long questions. > > Thank you. > Pongthep > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 10:56:30 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F37EA1065674 for ; Sun, 23 Nov 2008 10:56:30 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 235558FC13 for ; Sun, 23 Nov 2008 10:56:29 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2) with ESMTP id mANAuNx8012539; Sun, 23 Nov 2008 11:56:23 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2/Submit) with ESMTP id mANAuLN3012536; Sun, 23 Nov 2008 11:56:22 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 23 Nov 2008 11:56:21 +0100 (CET) From: Wojciech Puchar To: "Marc G. Fournier" In-Reply-To: Message-ID: <20081123115437.B12531@wojtek.tensor.gdynia.pl> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: auto-addm new tap device to existing bridge ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 10:56:31 -0000 > Is this possible? > > I'm using qemu, and when I start it up, it auto-create a tap device if one > isn't available ... but, having that tap device not attached to the bridge that > does exist doesn't help much ... if there some flag I can set, or sysctl value, > that will have the new tap device attach itself to an existing bridge device? please create bridges and tap's at startup and use qemu option to explicitly give the tap name that's what i do rc.conf: cloned_interfaces="tap0 tap1 tap2 bridge0" ifconfig_bridge0="10.255.245.1/24 up" in rc.local: /sbin/ifconfig bridge0 addm tap0 addm tap1 addm tap2 and when using qemu -net nic -net tap,ifname=tap0,script=no (or tap1, tap2) From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 07:55:19 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D95EA1065670 for ; Sun, 23 Nov 2008 07:55:19 +0000 (UTC) (envelope-from jotawski@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.152]) by mx1.freebsd.org (Postfix) with ESMTP id 2985E8FC08 for ; Sun, 23 Nov 2008 07:55:18 +0000 (UTC) (envelope-from jotawski@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so1165985fgb.35 for ; Sat, 22 Nov 2008 23:55:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=jZy0HOeUyukII0+ZGGV+gD2hWsEU1+2aicr/QajsyDw=; b=chaExw6h56SWjnPKe9IKS8Qj1b4uD5sNAwzHCbx1hrA4aekWlKwEAvAvx3PXP7jATO TllrULC6+FTYbtBqz62RBlNeYwKBqcSNM4IKpcq5Zrj9ilvOVej4lCoi2Y84m2S0rGzJ +oZWdwTm+ZgVlRaU3zdEq/RC/If/P64KV0wMA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=k1wROilf4XD5DHD+MqX7lBclLkP0foe9vjY/VK0xM6vkIuTFMUPtarCvdUv4R3iwHy O3AFzkIvOs2nml7fEB3n+h/oM9Kad0gs8SCrNFaISbFEV2PUxxVLkOyvkzJElpQNe5Sw TpgGcqNA7etbPJbdT0neUbV0WOlWl/G8cN94I= Received: by 10.181.49.3 with SMTP id b3mr691221bkk.75.1227426917826; Sat, 22 Nov 2008 23:55:17 -0800 (PST) Received: by 10.181.31.3 with HTTP; Sat, 22 Nov 2008 23:55:17 -0800 (PST) Message-ID: Date: Sun, 23 Nov 2008 14:55:17 +0700 From: "fire jotawski" To: freebsd-questions@freebsd.org In-Reply-To: <4463n0j3xu.fsf@be-well.ilk.org> MIME-Version: 1.0 References: <4463n0j3xu.fsf@be-well.ilk.org> X-Mailman-Approved-At: Sun, 23 Nov 2008 12:29:53 +0000 Content-Type: text/plain; charset=TIS-620 Content-Transfer-Encoding: base64 Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: cvsup: local X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 07:55:19 -0000 T24gVGh1LCBOb3YgNiwgMjAwOCBhdCA5OjU5IFBNLCBMb3dlbGwgR2lsYmVydCA8CmZyZWVic2Qt cXVlc3Rpb25zLWxvY2FsQGJlLXdlbGwuaWxrLm9yZz4gd3JvdGU6Cgo+ICJmaXJlIGpvdGF3c2tp IiA8am90YXdza2lAZ21haWwuY29tPiB3cml0ZXM6Cj4KPiA+IGkgaGF2ZSBteSBzbWFsbCBib3gs IDEwLjMuMS4yNSBpcCwgIHRoYXQgY3ZzdXAtZWQgZmlsZXMgZnJvbSByZXBvc2l0b3J5Cj4gaW50 bwo+ID4gaXQuICBpdCB1c2UgY3ZzLXN1cGZpbGUgaW4gL3Vzci9zaGFyZS9leGFtcGxlcy9jdnN1 cC8gdG8gY29sbGVjdCBmaWxlcy4KPiA+IG5vdyB0aGF0IGkgd2FudCBteSBvdGhlciBtYWNoaW5l IHRvIGN2c3VwIDYuMi1yZWxlYXNlIHNvdXJjZSBmaWxlcyBmcm9tCj4gdGhlCj4gPiBvbmUgbWVu dGlvbmVkIGFib3ZlLgo+ID4KPiA+IG15ICB0cmlhbCB3YXMKPiA+Cj4gPiBjdnN1cGQgLWIgL3Zh ci9kYiAtYyBzdXAKPiA+Cj4gPiBmb3IgYm94LCAxMC4zLjEuMjUgaXAsICBhbmQgZm9yIG90aGVy IG1hY2hpbmUKPiA+Cj4gPiBjdnN1cCAtZyAtTCAyIC1oIDEwLjMuMS4yNSBzdXAtZmlsZQo+ID4K PiA+IHdoYXQgaSBnb3Qgd2FzICAnU2VydmVyIG1lc3NhZ2U6IFVua25vd24gY29sbGVjdGlvbiAi c3JjLWFsbCIgJyBtZXNzYWdlLgo+ID4gYW5kIGxhdGVyIG9uCj4gPgo+ID4gUnVubmluZwo+ID4g U2tpcHBpbmcgY29sbGVjdGlvbiBzcmMtYWxsL2N2cwo+ID4gU2tpcHBpbmcgY29sbGVjdGlvbiBk b2MtYWxsL2N2cwo+ID4gU2h1dHRpbmcgZG93biBjb25uZWN0aW9uIHRvIHNlcnZlcgo+ID4gRmlu aXNoZWQgc3VjY2Vzc2Z1bGx5Cj4gPgo+ID4gdmVyeSBzdHJhbmdlIGluZGVlZC4KPiA+Cj4gPiBh bnkgaGVscHMgYW5kIGhpbnRzIGluIHNldHRpbmcgY3ZzdXAgc2VydmVyIHdvdWxkIGhpZ2hseSBi ZSBhcHByZWNpYXRlZC4KPgo+IFRvIHJ1biBjdnN1cGQsIHlvdSBuZWVkIHRoZSB3aG9sZSBjdnMg dHJlZSBmb3IgdGhlIGNvbGxlY3Rpb25zIHlvdSdyZQo+IGhhbmRsaW5nLCBub3QganVzdCB0aGUg Y2hlY2tlZC1vdXQgZmlsZXMuCj4KPiBBc3N1bWluZyB0aGVzZSBtYWNoaW5lcyBhcmUgYXR0YWNo ZWQgYnkgYSBwcm90ZWN0ZWQgbmV0d29yaywgYSBiZXR0ZXIKPiBhcHByb2FjaCAoZWFzaWVyLCBh bnl3YXkpIHdvdWxkIHByb2JhYmx5IGJlIHRvIGN2c3VwIHRoZSBjaGFuZ2VzIHRvCj4ganVzdCBv bmUgbWFjaGluZSwgdGhlbiBORlMtbW91bnQgdGhhdCBtYWNoaW5lJ3MgcG9ydHMgdHJlZSBmcm9t IHRoZQo+IG90aGVyIG1hY2hpbmUuCj4KPiAtLQo+IExvd2VsbCBHaWxiZXJ0LCBlbWJlZGRlZC9u ZXR3b3JraW5nIHNvZnR3YXJlIGVuZ2luZWVyLCBCb3N0b24gYXJlYQo+ICAgICAgICAgICAgICAg IGh0dHA6Ly9iZS13ZWxsLmlsay5vcmcvfmxvd2VsbC88aHR0cDovL2JlLXdlbGwuaWxrLm9yZy8l N0Vsb3dlbGwvPgo+CgoKdGhhbmtzIGluZGVlZCBhbmQgYXBvbG9naXplZCBtZSBmb3IgcG9zdHBv bmluZyBhbnN3ZXIgdG8gYWxsIG9mIHBvc3RpbmdzLgp3aGF0IGFib3V0IGN2cyB0aGVuLiAgaSBk aWQgIHRoaXMKCmN2cyAtZCAvaG9tZS9uY3ZzIGNoZWNrb3V0IHBvcnRzCgphbmQgaSBnb3Qgc29t ZSB0aGluZyBxdWl0ZSBzaW1pbGFyIHRvIHBvcnRzIHRyZWUgaW5kZWVkLgoKdGhhbmtzIGluIGFk dmFuY2UgZm9yIGFueSBpbmZvcm1hdGlvbnMKCnJnZHMsCnBzcgoKCi0tIArB0OS/IKW54MvF1Ke/ 6dIKwdCi0sEgpdS54LTUubS5Cg== From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 13:34:37 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61EBB1065670 for ; Sun, 23 Nov 2008 13:34:37 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: from smtp107.prem.mail.ac4.yahoo.com (smtp107.prem.mail.ac4.yahoo.com [76.13.13.46]) by mx1.freebsd.org (Postfix) with SMTP id F3A608FC2A for ; Sun, 23 Nov 2008 13:34:36 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: (qmail 92224 invoked from network); 23 Nov 2008 13:34:35 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Received:X-YMail-OSG:X-Yahoo-Newman-Property:Date:From:To:Subject:Message-ID:In-Reply-To:References:Reply-To:Organization:X-Mailer:Face:X-Face:Mime-Version:Content-Type; b=G5DLXWktfXwhAJu36gvqsDfxxn5grmUkah6GhnfEe1kUIymwKIMaHGeqg5PS0Z2aeUDQ3/wXntycKZCweBVNxXsQz0gNrFQCCXGQf4Dj+UaLU8qMC3YjLTAATR0rwl4h+Sm18uZ2BkW/OIdxREaQqFwxea8fC9biCaDqeZDdHUg= ; Received: from unknown (HELO scorpio) (gesbbb@76.23.177.172 with login) by smtp107.prem.mail.ac4.yahoo.com with SMTP; 23 Nov 2008 13:34:35 -0000 X-YMail-OSG: __j7UB8VM1kvj3rMKHXFEAjaaLVZfSeOW1lj_h2oNoaVdh.sz7ZK1VjOYEGfdKfV11xxn_cK1m_tvgW8B97pkW8MR.i1g7SkW9zWl1MC_7F5PGQzn9Vv.LF4BP_Be97dHywlSelHb7iQV02xmUeSp78x0LcAYTxgQJC8kGzeH8aup8oRHEjIN7_JYA-- X-Yahoo-Newman-Property: ymail-3 Date: Sun, 23 Nov 2008 08:34:33 -0500 From: Jerry To: freebsd-questions@freebsd.org Message-ID: <20081123083433.7c12ad91@scorpio> In-Reply-To: References: <235b80000811221123o37ea51fbwcdc6a3480e2c1380@mail.gmail.com> Organization: seibercom.net X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd6.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/Hc1MJL9F=apM7ujGn6vXw99"; protocol="application/pgp-signature"; micalg=PGP-SHA1 Subject: Re: Segmentation fault (core dumped) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 13:34:37 -0000 --Sig_/Hc1MJL9F=apM7ujGn6vXw99 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Sat, 22 Nov 2008 22:52:07 +0000 Marwan Sultan wrote: >I think I know what you are talking about.. >What is the output of the command php -v ? >any errors? I have been have a similar problem lately. ~ $ php -v PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/20060613/sqlite.so' - /usr/local/lib/php/20060613/sqlite.so: Undefined symbol "spl_ce_Countable" in Unknown on line 0 PHP 5.2.6 with Suhosin-Patch 0.9.6.2 (cli) (built: Nov 21 2008 20:45:19) Copyright (c) 1997-2008 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2008 Zend Technologies Segmentation fault: 11 (core dumped) I have been trying to correct it without results. --=20 Jerry gesbbb@yahoo.com Your lover will never wish to leave you. --Sig_/Hc1MJL9F=apM7ujGn6vXw99 Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkpW+kACgkQBvaKIJWWCO3wtgCeI+eWZkOp7aysUYJvq1WSAwvr JjMAn1SzLNBi8m+nAuI30kBZPk++Npn9 =XuLh -----END PGP SIGNATURE----- --Sig_/Hc1MJL9F=apM7ujGn6vXw99-- From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 13:45:35 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B1979106564A for ; Sun, 23 Nov 2008 13:45:35 +0000 (UTC) (envelope-from phoenix.lists@gmail.com) Received: from fk-out-0910.google.com (fk-out-0910.google.com [209.85.128.187]) by mx1.freebsd.org (Postfix) with ESMTP id 41FF58FC08 for ; Sun, 23 Nov 2008 13:45:35 +0000 (UTC) (envelope-from phoenix.lists@gmail.com) Received: by fk-out-0910.google.com with SMTP id k31so1983539fkk.11 for ; Sun, 23 Nov 2008 05:45:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :organization:user-agent:mime-version:to:cc:subject:references :in-reply-to:x-enigmail-version:openpgp:x-stationery:x-stationery :content-type:content-transfer-encoding; bh=0VcJRJROdUn1UCEcwlWALSBTXw+Qnq96QNMOhuucqb4=; b=X6SBlOFw5FqcJ9+GIFr8rwoKZBymtEtTr2IbIYkTypt9G0MYfjCo++F9fv0ch5hjTU 2Lhw+6p9fBa1iRaAAlf3LKn1LE8wyfjL/pBBTZO9urMubGEkj4YkuxbMCZAgDN74mmCQ J3DTw1tWXdix+q10cSzJE4IzulEZN8aA08epo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:organization:user-agent:mime-version:to:cc :subject:references:in-reply-to:x-enigmail-version:openpgp :x-stationery:content-type:content-transfer-encoding; b=aeqnppplLyD2lx2dKx+bTe+pJlGpCiDs5fmVF3E9at1ZI6ZgtvNHfk9e9JgkOaBSNp XzCoxenidtClG/j1w9FW7sL0Of6vaP4udnXNKifzQI2QYXu3wTLv3q/jvLT8eKbFRvuQ KsdHhIcyOAR0NoyxZdubQ0oijwVMXPqeuEE5s= Received: by 10.103.212.2 with SMTP id o2mr740007muq.69.1227446266268; Sun, 23 Nov 2008 05:17:46 -0800 (PST) Received: from ?192.168.67.7? ([92.112.100.81]) by mx.google.com with ESMTPS id e8sm1975525muf.53.2008.11.23.05.17.44 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 23 Nov 2008 05:17:45 -0800 (PST) Message-ID: <492957F6.3030503@gmail.com> Date: Sun, 23 Nov 2008 15:17:42 +0200 From: Bogdan Potishuk Organization: Phoenix Lab. User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: tethys ocean References: <235b80000811221123o37ea51fbwcdc6a3480e2c1380@mail.gmail.com> In-Reply-To: <235b80000811221123o37ea51fbwcdc6a3480e2c1380@mail.gmail.com> X-Enigmail-Version: 0.95.7 OpenPGP: id=2569D30B; url=http://keyserver.pgp.com/vkd/DownloadKey.event?keyid=0x84B8D5142569D30B X-Stationery: 0.4.8.11 X-Stationery: 0.4.8.11 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions , apache@freebsd.org Subject: Re: Segmentation fault (core dumped) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 13:45:35 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 tethys ocean wrote: > Hi to all > > The server is give this error whenever i want to start apache22. why? Most expected reason - PHP modules. Try to comment modules in /usr/local/etc/php/extensions.ini with ; and check results by php -v or php -i in shell. - -- Regards, Bogdan Potishuk - --------------------------------------------------------------- KeyID: 0x84B8D5142569D30B Fingerprint: 78FC 5C40 07CC D331 148E CC79 84B8 D514 2569 D30B Keyserver: keyserver.pgp.com - --------------------------------------------------------------- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREKAAYFAkkpV6EACgkQhLjVFCVp0wuBTgCffJxoUELOPuBzszCHOZ4r0nu6 CqwAoLvQB2pRvqqkqAhjJDVJYijdNk6S =QF0q -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 14:10:40 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF1E01065673 for ; Sun, 23 Nov 2008 14:10:40 +0000 (UTC) (envelope-from peterpub2@aboutsupport.com) Received: from ariqua.hostforweb.net (ariqua.hostforweb.net [64.202.123.184]) by mx1.freebsd.org (Postfix) with ESMTP id B36468FC0A for ; Sun, 23 Nov 2008 14:10:40 +0000 (UTC) (envelope-from peterpub2@aboutsupport.com) Received: from [84.238.220.62] (port=49314 helo=[10.30.1.106]) by ariqua.hostforweb.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1L4EZJ-0002GJ-39 for freebsd-questions@freebsd.org; Sun, 23 Nov 2008 07:00:05 -0600 Message-ID: <492953A5.4070206@aboutsupport.com> Date: Sun, 23 Nov 2008 14:59:17 +0200 From: Peter User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-questions@freebsd.org X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - ariqua.hostforweb.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - aboutsupport.com Subject: FreeBSD on Cisco IDS 4235 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 14:10:40 -0000 Hello, I am trying to install FreeBSD 7.0 on Cisco IDS 4235(pentium III 1.2 Ghz, 1 GB ram, the device seems quite simialr to Dell PowerEdge 1750 Server). However BTX loader dies with this message(see screenshot here: http://www.aboutsupport.com/freebsd/btx.jpg) I tried with both ACPI and Safe mode but still no luck. Other operating systems I tried: Debian - installs just fine FreeBSD 6.3 - installs just fine NetBSD 4 - installs just fine FreeBSD 7.1 FAILS, even at earlier stage than 7.0, on loader stage. Thanks in advance for your help. Peter From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 14:39:47 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 114CC106564A for ; Sun, 23 Nov 2008 14:39:47 +0000 (UTC) (envelope-from estartu@ze.tum.de) Received: from inga.augusta.de (inga.augusta.de [77.90.142.2]) by mx1.freebsd.org (Postfix) with ESMTP id 84F008FC08 for ; Sun, 23 Nov 2008 14:39:46 +0000 (UTC) (envelope-from estartu@ze.tum.de) Received: from inga.augusta.de (localhost [127.0.0.1]) by inga.augusta.de (8.13.4/8.13.4) with ESMTP id mANEAAkC027667 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sun, 23 Nov 2008 15:10:11 +0100 (CET) (envelope-from estartu@ze.tum.de) Received: (from uucp@localhost) by inga.augusta.de (8.13.4/8.13.4/Submit) with UUCP id mANEAA9u027666 for freebsd-questions@freebsd.org; Sun, 23 Nov 2008 15:10:10 +0100 (CET) (envelope-from estartu@ze.tum.de) Received: from etustar.starbox.augusta.de (etustar.starbox.augusta.de [192.168.71.7]) by gatekeeper.starbox.augusta.de (8.14.1/8.14.1) with ESMTP id mANE73fF002169 for ; Sun, 23 Nov 2008 15:07:03 +0100 (CET) (envelope-from estartu@ze.tum.de) Message-ID: <49296382.60808@ze.tum.de> Date: Sun, 23 Nov 2008 15:06:58 +0100 From: Gerhard Schmidt User-Agent: Thunderbird 2.0.0.14 (X11/20080712) MIME-Version: 1.0 To: freebsd-questions@freebsd.org X-Enigmail-Version: 0.95.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.5.10 (inga.augusta.de [127.0.0.1]); Sun, 23 Nov 2008 15:10:11 +0100 (CET) Subject: files before ldap in nsswitch.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 14:39:47 -0000 Hi, I'm setting up a new FreeBSD Server for out local Computer club. Most of the users are stored in LDAP and I've installed nss_ldap and pam_ldap and set up both. Everything works so far with nsswitch.conf entry passwd: ldap files. When I try passwd: files ldap the login doesn't work anymore because the LDAP_Server is never asked. I tried this to optimize the LDAP requests as the service users are in the local files. This would speed up the boot process and takes some load off the LDAP-Server. Is there a way to configure FreeBSD to look first in the local files and if a user isn't found in the LDAP-Server. And another question. Is there a way to use two different LDAP-Servers e.g. by calling nss_ldap with different config files. Greetings Estartu -- ------------------------------------------------- Gerhard Schmidt | E-Mail: schmidt@ze.tum.de TU-München | WWW & Online Services | Tel: 089/289-25270 | Fax: 089/289-25257 | PGP-Publickey auf Anfrage From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 15:08:13 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7743106564A for ; Sun, 23 Nov 2008 15:08:13 +0000 (UTC) (envelope-from jalmberg@identry.com) Received: from mx1.identry.com (on.identry.com [66.111.0.194]) by mx1.freebsd.org (Postfix) with ESMTP id 568508FC19 for ; Sun, 23 Nov 2008 15:08:13 +0000 (UTC) (envelope-from jalmberg@identry.com) Received: (qmail 34774 invoked by uid 89); 23 Nov 2008 15:08:12 -0000 Received: from unknown (HELO ?192.168.1.110?) (jalmberg@75.127.142.66) by mx1.identry.com with ESMTPA; 23 Nov 2008 15:08:12 -0000 In-Reply-To: <8675CD0C-6DDC-4472-A3CA-B3EA3F4A43C7@sandbox.ca> References: <8675CD0C-6DDC-4472-A3CA-B3EA3F4A43C7@sandbox.ca> Mime-Version: 1.0 (Apple Message framework v753.1) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: John Almberg Date: Sun, 23 Nov 2008 10:08:10 -0500 To: Ian Jefferson X-Mailer: Apple Mail (2.753.1) Cc: FreeBSD Questions Mailing List Subject: Re: FreeBSD on a Mac Mini Intel? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 15:08:13 -0000 On Nov 21, 2008, at 11:42 PM, Ian Jefferson wrote: > Is anyone running FreeBSD on a Mac Mini Intel? > I don't know the answer to your question, but don't think it's a crazy one. One of the most interesting things I've seen, lately, is a hosting company that uses stacks of Mac Minis running OS X Server. They may not be the thing for mission-critical services, but for day- to-day web hosting, they are far better (IMHO) than the typical WinTel or Linux white box systems that fill colo facilities. Need redundancy? Plunk down another $500 bucks! One of Apple's coolest products, I think. -- John From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 15:22:36 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B0B41065672 for ; Sun, 23 Nov 2008 15:22:36 +0000 (UTC) (envelope-from ulrich@pukruppa.net) Received: from pukruppa.net (pukruppa.net [213.146.114.24]) by mx1.freebsd.org (Postfix) with ESMTP id 6E3AE8FC0C for ; Sun, 23 Nov 2008 15:22:34 +0000 (UTC) (envelope-from ulrich@pukruppa.net) Received: from pukruppa.net (localhost [127.0.0.1]) by pukruppa.net (8.14.3/8.14.3) with ESMTP id mANEkJAM041799 for ; Sun, 23 Nov 2008 15:46:20 +0100 (CET) (envelope-from ulrich@pukruppa.net) Message-ID: <49296CBB.2030000@pukruppa.net> Date: Sun, 23 Nov 2008 15:46:19 +0100 From: Peter Ulrich Kruppa User-Agent: Thunderbird 2.0.0.17 (X11/20081012) MIME-Version: 1.0 To: FreeBSD-Questions Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Subject: Localized menus in firefox3 ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 15:22:36 -0000 Hi, I would like my firefox3 menus in german. With firefox2 I could install the firefox-i18n port and select german in the "Quick Locale Switcher". What would I have to do with firefox3? - I tried firefox3-i18n but menus will always stay english. Thanks for your help. Ulrich. From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 15:36:30 2008 Return-Path: Delivered-To: FreeBSD-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 601F91065670 for ; Sun, 23 Nov 2008 15:36:30 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) Received: from anthesphoria.net (anthesphoria.net [200.46.204.219]) by mx1.freebsd.org (Postfix) with ESMTP id EB5C68FC13 for ; Sun, 23 Nov 2008 15:36:29 +0000 (UTC) (envelope-from nikola.lecic@anthesphoria.net) X-Bogosity: No, tests=bogofilter X-DKIM: Sendmail DKIM Filter v2.4.1 anthesphoria.net mANFaLbn015070 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=anthesphoria.net; s=phero; t=1227454589; bh=z55+YIAWvTNjTqcb24KSgJEwopW3vOqLjiZ8118yo Qw=; l=1279; h=X-Bogosity:Date:From:To:Cc:Subject:Message-ID: In-Reply-To:References:X-Mailer:X-Face:X-Operating-System: X-OpenPGP-Fingerprint:X-OpenPGP-Preferred-Keyserver:Mime-Version: Content-Type:Content-Transfer-Encoding; b=Uzz3fXF2ExNTuWtqxERtyzjf 28MMkp8bs0RB1Xff/ByJuSVBh8vqf8cLc9q45pmloLxQY4rk0BgRJ1LSp0EP6EA0F0u odJOKQe1ZgwsT9zeJqlbkh/KrJ+gfA4q2XdgA3IJg5dkH1WzVB+K7Etx+SA98I6v/s/ XXKe1LJGnJQeQ= Received: from anthesphoria.net (adsl-200-199.eunet.yu [213.198.200.199]) (authenticated bits=0) by anthesphoria.net (8.14.2/8.14.2) with ESMTP id mANFaLbn015070 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 23 Nov 2008 16:36:28 +0100 (CET) (envelope-from nikola.lecic@anthesphoria.net) Date: Sun, 23 Nov 2008 16:32:44 +0100 From: Nikola =?UTF-8?B?TGXEjWnEhw==?= To: Peter Ulrich Kruppa Message-ID: <20081123163244.78aacaef@anthesphoria.net> In-Reply-To: <49296CBB.2030000@pukruppa.net> References: <49296CBB.2030000@pukruppa.net> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.1) X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] X-Operating-System: FreeBSD 7.0-RELEASE/i386 X-OpenPGP-Fingerprint: FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B X-OpenPGP-Preferred-Keyserver: x-hkp://pgpkeys.pca.dfn.de Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD-questions@FreeBSD.org Subject: Re: Localized menus in firefox3 ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 15:36:30 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: RIPEMD160 On Sun, 23 Nov 2008 15:46:19 +0100 Peter Ulrich Kruppa wrote: =20 > Hi, >=20 > I would like my firefox3 menus in german. > With firefox2 I could install the firefox-i18n port and select=20 > german in the "Quick Locale Switcher". >=20 > What would I have to do with firefox3? - I tried firefox3-i18n=20 > but menus will always stay english. Hi Peter, You can install language packs directly from http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.0.4/linux-i6= 86/xpi/ (change the version number in the URL if needed). The additional languages should be accessible through Tools -> Languages. HTH - --=20 Nikola Le=C4=8Di=C4=87 =3D =D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0 =D0=9B=D0= =B5=D1=87=D0=B8=D1=9B fingerprint : FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iJwEAQEDAAYFAkkpd6AACgkQ/MM/0rYIoZju8AQArnUB3FtGIlqDedQVPopc4VDF mryCX0ZwYq8DObJuU+UOT5kyI0FRTYgSXNadjUerzsnfdLrfodtkhkuIfmzc4RBx 32sp4jlUjqLf+POfVfBtsYFW/0u6qYdY8g4VPxzJlYWoPE6aAwBVILcxvdWWdL/i dMoP0ojYls4tqLWhvWQ=3D =3DDR/0 -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 16:31:47 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E3764106567D for ; Sun, 23 Nov 2008 16:31:46 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from sola.nimnet.asn.au (paqi.nimnet.asn.au [220.233.188.227]) by mx1.freebsd.org (Postfix) with ESMTP id EFBEC8FC1D for ; Sun, 23 Nov 2008 16:31:45 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from localhost (localhost [127.0.0.1]) by sola.nimnet.asn.au (8.14.2/8.14.2) with ESMTP id mANGVPd4097822; Mon, 24 Nov 2008 03:31:25 +1100 (EST) (envelope-from smithi@nimnet.asn.au) Date: Mon, 24 Nov 2008 03:31:25 +1100 (EST) From: Ian Smith To: Pongthep Kulkrisada In-Reply-To: <20081123120013.8EDF310657E3@hub.freebsd.org> Message-ID: <20081124012858.J43853@sola.nimnet.asn.au> References: <20081123120013.8EDF310657E3@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-questions@freebsd.org, Andrew , Fbsd1 , Manolis Kiagias Subject: Re: Problem about ppp -nat X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 16:31:47 -0000 On Sun, 23 Nov 2008 14:14:44 +0700 "Pongthep Kulkrisada" wrote: > Hi All, > > Firstly, I'm sorry for late reply. For simplicity to your responses, I shall > ask question by question... > > * Manolis Kiagias (sonic2000gr@gmail.com) wrote: > > > > There are at least two ways that I know of to achieve this. One uses the > > ipfw firewall, the other the pf firewall. > > For the ipfw solution, look at the FreeBSD Handbook: > > > > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-natd.html Since you're running FreeBSD 7 with ipfw, there's actually a third way: in-kernel NAT. See ipfw(8) searching for NAT (in caps) for the section. > 1. I heard that ppp itself has capability of NAT. It can work with the > command ppp -nat and without running natd. Please tell me whether it is > right or wrong. ipfw is the same. If natd is not used, I can't add the rule > ... > > add divert natd ip from any to any via tun0 > > to /etc/ipfw.rules. I'm confused. You're right in that if you use ppp -nat, NAT's already done by the time ipfw (or pf, ipf etc) see the packets. ppp has some simple and limited rules you might apply, but I'd have to recommend using either natd(8) or ipfw nat, and running ppp without -nat. This leaves open for you the possibility of using mpd rather than ppp, either dialup or pppoe etc. All use the same libalias(3) libraries, but both ppp -nat and natd run in userland, while ipfw nat runs in-kernel, which may not matter at dialup speeds, but will migrate easily if/when you get a faster link. > 2. And if natd is still required, what -nat argument (ppp -nat) is for? For some very simple nat setups, mostly in ye olden days :) > > This worked fine for me, although I prefer to use pf. Here is how I > > setup pf (Adjust for your interfaces as necessary) > > > > My Internet interface is rl0, setup in rc.conf as: > > > > ifconfig_rl0="inet 192.168.0.100 netmask 255.255.255.0" > > > > My local interface is rl1, setup in rc.conf as: > > > > ifconfig_rl1="inet 192.168.1.100 netmask 255.255.255.0" > 3. I haven't mentioned that I can't use this configuration. I have 2 > interfaces i.e. public and private LAN. But I have only one NIC card for > private LAN. I don't have NIC card for public. I'm using 56k modem to > connect the outside world. I think I can't add > > ifconfig_tun0="inet 192.168.0.100 netmask 0xffffff00" > > to /etc/rc.conf. If I'm wrong, please tell me. No, and you don't need to; ppp (or mpd) assigns the 'outside' IP and sets up the default route through it on connection or renegotiation, assuming your ppp.conf is setup right. I gather from your previous success with ppp that this is most likely not a problem. > I did much googling. All sites always refer 2 NIC cards being used like your > example. I do have only one NIC card + 56k serial modem (/dev/cuad0). That's fine. tun0 for ppp (or ng0 for mpd) will be configured as your outside interface, and ipfw only needs that, not its (varying) address. > > (I also have a defaultrouter setting which probably does not apply to you) > > > > I have nameserver entries in /etc/resolv.conf (or setup your own DNS > > server if you wish) > 4. I also have nameserver entries. I tried setting DNS server on my WinXP > host to both gateway (FBSD host) and DNS servers of ISP. Both don't work. Once you get the NAT right, that should work out. I think ppp will fetch nameserver addresses for you if so configured, mpd sure will, or if they're constant just use resolv.conf and have ppp leave it alone. > > Use this settings in rc.conf for pf: > > > > pf_enable="YES" > > pflog_logfile="/var/log/pflog" > > pflog_flags="" > > pf_rules="/etc/pf.conf" > > pf_flags="" > > gateway_enable="YES" > 5. I think I have equivalent setting of ipfw in /etc/rc.conf but don't work. > gateway_enable="YES" > firewall_enable="YES" > firewall_type="OPEN" > firewall_quite="YES" That's 'firewall_quiet' - I think it only gets used by the default rules in rc.firewall, unless you add a check for it in your own, to add a '-q' flag to each ipfw command, so it's not noisy on boot or reloading ipfw. > firewall_script="/etc/ipfw.rules" > firewall_logging="YES" If you've used the IPFW section in the Handbook as a guide, I suggest reconsidering that after half a dozen browses of ipfw(8), and instead try using the 'simple' ruleset in rc.firewall at least to get going; of particular concern is the placement of divert rule/s in that scenario, where those anti-spoofing rules protect you from NAT misconfiguration. > > Run: > > # sysctl net.inet.ip.forwarding=1 > > # /etc/rc.d/routing restart > > > > Add net.inet.ip.forwarding=1 to /etc/sysctl.conf so it persists reboots gateway_enable=YES in rc.conf is an easier way to accomplish the same. > 6. I recompiled my kernel. > options IPFIREWALL > options IPFIREWALL_FORWARD > options IPFIREWALL_DEFAULT_TO_ACCEPT > options IPFIREWALL_VERBOSE > options IPFIREWALL_VERBOSE_LIMIT=120 > options IPDIVERT > I think it should be equivalent to sysctl setting. Ok. You'll still need gateway_enable=YES (or the sysctl setting above) > > Add the following rule to /etc/pf.conf > > > > nat pass on rl0 from rl1:network to any -> rl0 > > > > AFAIR, if rl0 has a dynamic address, you will have to write it with > > parentheses, like: > > > > nat pass on rl0 from rl1:network to any -> (rl0) > > (Note that in /etc/pf.conf translation rules like the above, are placed > > above filtering rules like pass or block etc) > > You may have to adjust /etc/pf.conf filtering rules, assuming you have any. > > > > Restart some services > > > > # /etc/rc.d/netif restart > > # /etc/rc.d/routing restart > > # /etc/rc.d/pf restart > > > > or simply reboot, and you should be set. > 7. I don't know about PF. The principles are about the same. ipfw will do this job fine, and you can use the equivalent /etc/rc.d procedures (beats rebooting :) To allow use of either in-kernel or userland NAT, replace the existing NAT section in the rc.firewall 'simple' ruleset with the following: case ${natd_enable} in [Yy][Ee][Ss]) if [ -n "${natd_interface}" ]; then ${fwcmd} add divert natd ip4 from any to any via ${natd_interface} fi ;; esac case ${firewall_nat_enable} in [Yy][Ee][Ss]) if [ -n "${firewall_nat_interface}" ]; then if echo "${firewall_nat_interface}" | \ grep -q -E '^[0-9]+(\.[0-9]+){0,3}$'; then firewall_nat_flags="ip ${firewall_nat_interface} ${firewall_nat_flags}" else firewall_nat_flags="if ${firewall_nat_interface} ${firewall_nat_flags}" fi ${fwcmd} nat 123 config log ${firewall_nat_flags} ${fwcmd} add nat 123 ip4 from any to any via ${firewall_nat_interface} fi ;; esac (or just use the appropriate ipfw nat 123 config / ipfw add nat 123 ...) > * Fbsd1 (fbsd1@a1poweruser.com) wrote: > > You need to run dhcp so you can assign ip address on the LAN so the down > > stream xp box can gain access to the public internet through your > > gateway freebsd box. There is a detailed step by step instructions in > > the install guide at www.a1poweruser.com > 8. I read doc from the mentioned site. The doc does not mention anything > about sharing ppp dial-up to the other host. And I'm sorry dhcp is not the > point of my concern now. I only want to share internet access whether IP is > static or dynamic. BTW the doc is very good anyway. I shall keep it. :-) You can use DHCP if you want to. Personally I prefer allocating fixed IP addresses for small networks up to a few dozen hosts, but YMMV. > * Polytropon (freebsd@edvax.de) wrote: > > First of all, I made my kernel capable; significant parts: > > # Firewall, NAT > > ...blah > 9. I compiled the kernel following your advice excepted NETGRAPH. I think > PPPoE is not the point of concern Not needed with dialup ppp, no. Handy if you want to try mpd though. > > Configuration in /etc/rc.conf goes this way: > > ifconfig_xl0="inet 192.168.0.1 netmask 0xffffff00" > > ifconfig_rl0="inet 192.168.1.1 netmask 0xffffff00 media 10baseT/UTP" > 10. As said earlier, my interface connecting to outside are 56k serial modem > (/dev/cuad0). I think I can't set /dev/cuad0 (or even tun0) in this way. If you have further problems, you might want to show us your ppp.conf. > 11. CONCLUSION: I did read much document. More I read, more I get confused. > I tried many possible things but still don't work. My RECENT configurations > are as followings. > > /etc/rc.conf > gateway_enable="YES" > firewall_enable="YES" > firewall_type="OPEN" > firewall_quite="YES" _quiet > natd_enable="YES" > natd_interface="tun0" > natd_flags="-s -u -m" See above and ipfw(8) if you want to try in-kernel ipfw nat instead. /etc/defaults/rc.conf lists the new variables for that. Personally I configure /etc/natd.conf but those flags should be fine for basic NAT, though I think you may need to add a '-n tun0' flag too (see natd(8)) > kernel options > options IPFIREWALL > options IPFIREWALL_FORWARD > options IPFIREWALL_DEFAULT_TO_ACCEPT > options IPFIREWALL_VERBOSE > options IPFIREWALL_VERBOSE_LIMIT=120 > options IPDIVERT > > /etc/ipfw.rules > add divert natd ip from any to any via tun0 Sure, just for testing as you said, or the ipfw nat rules instead. I wouldn't leave it that way for long though, especially with any XP box exposed directly to the net for even just a few minutes > ppp command > ppp -background -nat myisp Drop this second layer of NAT. I always used ppp -ddial myself for one 'permanent' dialup connection running over 10 years till quite recently. > With these settings, My FBSD host can NOT even dial out to ISP. :-( > Please anybody tell me, what I do wrong here. You just don't want two layers of NAT. That may be your only problem, but tcpdump is the go to see what's happening. I'd use such as: # tcpdump -pen -i tun0 to check your NAT is working right. Another window running tcpdump on your internal interface will confirm internal flows, or show blockages. > At this time I must go back to the original setting in order to dial ISP. > And lastly I'm sorry for long questions. A pleasure when we can take sensible questions, nicely presented :) cheers, Ian From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 16:44:45 2008 Return-Path: Delivered-To: FreeBSD-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 310281065677 for ; Sun, 23 Nov 2008 16:44:45 +0000 (UTC) (envelope-from ulrich@pukruppa.net) Received: from pukruppa.net (pukruppa.net [213.146.114.24]) by mx1.freebsd.org (Postfix) with ESMTP id A439A8FC18 for ; Sun, 23 Nov 2008 16:44:44 +0000 (UTC) (envelope-from ulrich@pukruppa.net) Received: from pukruppa.net (localhost [127.0.0.1]) by pukruppa.net (8.14.3/8.14.3) with ESMTP id mANGlYUr046727; Sun, 23 Nov 2008 17:47:37 +0100 (CET) (envelope-from ulrich@pukruppa.net) Message-ID: <49298926.5040608@pukruppa.net> Date: Sun, 23 Nov 2008 17:47:34 +0100 From: Peter Ulrich Kruppa User-Agent: Thunderbird 2.0.0.17 (X11/20081012) MIME-Version: 1.0 To: =?UTF-8?B?Tmlrb2xhIExlxI1pxIc=?= References: <49296CBB.2030000@pukruppa.net> <20081123163244.78aacaef@anthesphoria.net> In-Reply-To: <20081123163244.78aacaef@anthesphoria.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: FreeBSD-questions@freebsd.org Subject: Re: Localized menus in firefox3 ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 16:44:45 -0000 Nikola LeÄić schrieb: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: RIPEMD160 > > On Sun, 23 Nov 2008 15:46:19 +0100 > Peter Ulrich Kruppa wrote: > >> Hi, >> >> I would like my firefox3 menus in german. >> With firefox2 I could install the firefox-i18n port and select >> german in the "Quick Locale Switcher". >> >> What would I have to do with firefox3? - I tried firefox3-i18n >> but menus will always stay english. > > Hi Peter, > > You can install language packs directly from > > http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.0.4/linux-i686/xpi/ > > (change the version number in the URL if needed). The additional > languages should be accessible through Tools -> Languages. Thanks Nikola, that works! > HTH > - -- > Nikola Le�i� = Ã�Þúßûð Ã�õÑ�ÞÑ� > fingerprint : FEF3 66AF C90E EDC3 D878 7CDC 956D F4AB A377 1C9B > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2.0.9 (FreeBSD) > > iJwEAQEDAAYFAkkpd6AACgkQ/MM/0rYIoZju8AQArnUB3FtGIlqDedQVPopc4VDF > mryCX0ZwYq8DObJuU+UOT5kyI0FRTYgSXNadjUerzsnfdLrfodtkhkuIfmzc4RBx > 32sp4jlUjqLf+POfVfBtsYFW/0u6qYdY8g4VPxzJlYWoPE6aAwBVILcxvdWWdL/i > dMoP0ojYls4tqLWhvWQ= > =DR/0 > -----END PGP SIGNATURE----- > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 17:12:25 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 984FC1065670 for ; Sun, 23 Nov 2008 17:12:25 +0000 (UTC) (envelope-from patrick.van.ratingen@web.de) Received: from fmmailgate05.web.de (fmmailgate05.web.de [217.72.192.243]) by mx1.freebsd.org (Postfix) with ESMTP id 5CB268FC18 for ; Sun, 23 Nov 2008 17:12:25 +0000 (UTC) (envelope-from patrick.van.ratingen@web.de) Received: from web.de by fmmailgate05.web.de (Postfix) with SMTP id 9A98B5A35251 for ; Sun, 23 Nov 2008 17:42:04 +0100 (CET) Received: from [85.16.4.72] by freemailng2501.web.de with HTTP; Sun, 23 Nov 2008 17:42:03 +0100 Date: Sun, 23 Nov 2008 17:42:03 +0100 Message-Id: <932463700@web.de> MIME-Version: 1.0 From: patrick.van.ratingen@web.de To: freebsd-questions@freebsd.org Precedence: fm-user Organization: http://freemail.web.de/ X-Provags-Id: V01U2FsdGVkX19lR9IA8O0dmd0vGBD07bksdr8eVIclmrj502HMV4usrflVB dlDkh/6v9aMssBZq267N6mafZm5nDgaMxuKLrkbqudLce3Hz1o2eMOCznQDm h7IV3UUe0EG Content-Type: multipart/mixed; boundary="=-------------12274585246509716343" Subject: X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 17:12:25 -0000 This is a multi-part message in MIME format. --=-------------12274585246509716343 Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: quoted-printable hey again ... ive asked, if somebody could help me with making the bootmanager, the kern= el.-booting and shutdown-process green/black colored (like netbsd) ive ge= t no answer yet, i hope, you can still help me ... yours =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F Psssst! Schon vom neuen WEB.DE MultiMessenger geh=F6rt=3F=20 Der kann`s mit allen: http://www.produkte.web.de/messenger/=3Fdid=3D3123 --=-------------12274585246509716343 Content-Type: application/octet-stream; name="question_in_txt" Content-Disposition: attachment; filename="question_in_txt" Content-Transfer-Encoding: base64 aGV5IGFnYWluIC4uLgppdmUgYXNrZWQsIGlmIHNvbWVib2R5IGNvdWxkIGhlbHAgbWUgd2l0 aCBtYWtpbmcgdGhlIGJvb3RtYW5hZ2VyLCB0aGUga2VybmVsLi1ib290aW5nIGFuZCBzaHV0 ZG93bi1wcm9jZXNzIGdyZWVuL2JsYWNrIGNvbG9yZWQgIChsaWtlIG5ldGJzZCkgaXZlIGdl dCBubyBhbnN3ZXIgeWV0LCBpIGhvcGUsIHlvdSBjYW4gc3RpbGwgaGVscCBtZSAuLi4KCnlv dXJzCg== --=-------------12274585246509716343-- From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 17:17:19 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB4731065680 for ; Sun, 23 Nov 2008 17:17:19 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail7.sea5.speakeasy.net (mail7.sea5.speakeasy.net [69.17.117.9]) by mx1.freebsd.org (Postfix) with ESMTP id C77CC8FC1A for ; Sun, 23 Nov 2008 17:17:19 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 25752 invoked from network); 23 Nov 2008 17:17:13 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail7.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 23 Nov 2008 17:17:13 -0000 Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.6]) by be-well.ilk.org (Postfix) with ESMTP id 6BFA150820; Sun, 23 Nov 2008 12:17:10 -0500 (EST) Received: by lowell-desk.lan (Postfix, from userid 1147) id 331FD1CE83; Sun, 23 Nov 2008 12:17:07 -0500 (EST) To: Laszlo Nagy References: <492528B7.70808@shopzeus.com> From: Lowell Gilbert Date: Sun, 23 Nov 2008 12:17:07 -0500 In-Reply-To: <492528B7.70808@shopzeus.com> (Laszlo Nagy's message of "Thu\, 20 Nov 2008 10\:07\:03 +0100") Message-ID: <44prkmmkfg.fsf@lowell-desk.lan> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: Creating a CUPS printer instance from web interface? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 17:17:20 -0000 Your issues seem generic to CUPS, so you'll probably reach more relevant experts in CUPS' user-support forum rather than FreeBSD's. Laszlo Nagy writes: > I have two problems. First, I do not see any way on the CUPS web admin > interface to add printer instances. I only have 'set printer options' > but it does not allow me to create instances. The base page for CUPS has a button labeled "Add Printer". On *my* setup, anyway. What it really does is add a queue, so you can do it any number of times for the same physical printer. -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 17:46:16 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13A041065670 for ; Sun, 23 Nov 2008 17:46:16 +0000 (UTC) (envelope-from mlobo@digiart.art.br) Received: from smtp2.brturbo.com.br (smtp2.brte.com.br [200.199.201.149]) by mx1.freebsd.org (Postfix) with ESMTP id C0DED8FC0A for ; Sun, 23 Nov 2008 17:46:15 +0000 (UTC) (envelope-from mlobo@digiart.art.br) Received: from lobo (unknown [189.70.99.124]) by smtp2.brturbo.com.br (Postfix) with ESMTP id 6B2D33402; Sun, 23 Nov 2008 15:43:13 -0200 (BRST) From: Mario Lobo Organization: DigiArt Systems To: freebsd-questions@freebsd.org Date: Sun, 23 Nov 2008 14:47:32 -0300 User-Agent: KMail/1.9.10 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811231447.32815.mlobo@digiart.art.br> Cc: "Marc G. Fournier" Subject: Re: auto-addm new tap device to existing bridge ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 17:46:16 -0000 On Sunday 23 November 2008 02:22:02 Marc G. Fournier wrote: > Is this possible? > > I'm using qemu, and when I start it up, it auto-create a tap device if one > isn't available ... but, having that tap device not attached to the bridge > that does exist doesn't help much ... if there some flag I can set, or > sysctl value, that will have the new tap device attach itself to an > existing bridge device? > > thanks ... in /etc/rc.conf, add: autobridge_interfaces="bridge0" <-- whatever you called your bridge autobridge_bridge0="tap0 tap1 [tapn..]" cloned_interfaces="bridge0" -- Mario Lobo http://www.mallavoodoo.com.br FreeBSD since version 2.2.8 [not Pro-Audio.... YET!!] (99,7% winedows FREE) From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 17:48:43 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0F24106564A for ; Sun, 23 Nov 2008 17:48:43 +0000 (UTC) (envelope-from mlobo@digiart.art.br) Received: from smtp3.brturbo.com.br (smtp3.brte.com.br [200.199.201.175]) by mx1.freebsd.org (Postfix) with ESMTP id AC1288FC14 for ; Sun, 23 Nov 2008 17:48:43 +0000 (UTC) (envelope-from mlobo@digiart.art.br) Received: from lobo (unknown [189.70.99.124]) by smtp3.brturbo.com.br (Postfix) with ESMTP id B6CCE33E65; Sun, 23 Nov 2008 15:41:07 -0200 (BRST) To: freebsd-questions@freebsd.org Content-Disposition: inline From: Mario Lobo Organization: DigiArt Systems Date: Sun, 23 Nov 2008 14:50:02 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200811231450.02973.mlobo@digiart.art.br> Cc: "Marc G. Fournier" Subject: Re: auto-addm new tap device to existing bridge ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 17:48:44 -0000 On Sunday 23 November 2008 02:22:02 Marc G. Fournier wrote: > Is this possible? > > I'm using qemu, and when I start it up, it auto-create a tap device if one > isn't available ... but, having that tap device not attached to the bridge > that does exist doesn't help much ... if there some flag I can set, or > sysctl value, that will have the new tap device attach itself to an > existing bridge device? > > thanks ... in /etc/rc.conf, add: autobridge_interfaces="bridge0" <-- whatever you called your bridge autobridge_bridge0="tap0 tap1 [tapn..]" cloned_interfaces="bridge0" forgot to add this: Create a qemu-ifup script like this: #!/usr/local/bin/bash # qemu-ifup /sbin/ifconfig $1 up TEST=`ifconfig -a | grep member | grep $1` if [ "$TEST" == "" ]; then /sbin/ifconfig bridge0 addm $1 fi -- Mario Lobo http://www.mallavoodoo.com.br FreeBSD since version 2.2.8 [not Pro-Audio.... YET!!] (99,7% winedows FREE) From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 18:20:31 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2172B1065674 for ; Sun, 23 Nov 2008 18:20:31 +0000 (UTC) (envelope-from tethys.ocean@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.169]) by mx1.freebsd.org (Postfix) with ESMTP id E8E458FC1F for ; Sun, 23 Nov 2008 18:20:30 +0000 (UTC) (envelope-from tethys.ocean@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so1906272wfg.7 for ; Sun, 23 Nov 2008 10:20:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=yYKFZkAeEekGAapTjeY+OLiP9AXi3n3G4NPMlbFZIGg=; b=fhmLFTEJbLltjkeqfs6aKVRj67ILLeri0ZY1Vwn84uPDwddFXXkNKL4IQGPxba928H /9Sa7gUKY3/OOXSun3rxYdb8fjDmyFytU9GWxHMD8LK1+741j3GlUxq9eHj1ZNJcT7Bk nQ6Bnizre4yd+2b48/aM32tzZhqzUITQ+o3bI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=oZfkFNX7tUGymEZoxVuctBZ60iiNnmnAyMdthz1XIj4GFchgP8DK3y3Cg9CicYdro4 zWoLLyYclPtjNW6ukBGzEt8O2SEd0X/YFL0evkRjJMl9cjoutmq39+KFgny3jNjBRF5m zCp9KQ4bAbZJEUUZJ3bGMBD7W1ZcJgjtJS78w= Received: by 10.143.42.6 with SMTP id u6mr1268531wfj.121.1227464430527; Sun, 23 Nov 2008 10:20:30 -0800 (PST) Received: by 10.142.47.1 with HTTP; Sun, 23 Nov 2008 10:20:30 -0800 (PST) Message-ID: <235b80000811231020r2e63648s990d9819798219e0@mail.gmail.com> Date: Sun, 23 Nov 2008 20:20:30 +0200 From: "tethys ocean" To: apache@freebsd.org, "FreeBSD Questions" In-Reply-To: <235b80000811221123o37ea51fbwcdc6a3480e2c1380@mail.gmail.com> MIME-Version: 1.0 References: <235b80000811221123o37ea51fbwcdc6a3480e2c1380@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-9 Content-Transfer-Encoding: base64 Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Segmentation fault (core dumped) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 18:20:31 -0000 SGkgYWdhaW4KCt0gZm91bmQgb3V0IHdoYXQgcHJvYmxlbSBpcy4gdXNlcnMgaGFkIGNoYW5nZWQg c29tZSBsaWJzIG9mIHB5dGhvbiBhbmQKYXBhY2hlLiAgQWZ0ZXIgcmVpbnN0YWxsIGFwYWNoZSBw aHl0b24gYW5kIG1vZF9weXRob24gaXQgd29ya3MuIHNvIHNvCnRoYW5rcy4KCnJlZ2FyZHMuCgoK Ck9uIFNhdCwgTm92IDIyLCAyMDA4IGF0IDk6MjMgUE0sIHRldGh5cyBvY2VhbiA8dGV0aHlzLm9j ZWFuQGdtYWlsLmNvbT53cm90ZToKCj4gSGkgdG8gYWxsCj4KPiBUaGUgc2VydmVyIGlzIGdpdmUg dGhpcyBlcnJvciB3aGVuZXZlciBpIHdhbnQgdG8gc3RhcnQgYXBhY2hlMjIuICB3aHk/Cj4gcmVn YXJkcwo+Cj4KPgo+IC0tCj4gU2hhcmUgbm93IGEgcGlnZW9uJ3MgZmxpZ2h0Cj4gQmx1ZWJvdW5k IGFsb25nIHRoZSBhbmNpZW50IHNraWVzLAo+IEl0cyB3b21lbiBmb3JldmVyIGhhaXIgYW5kIG1h bW1hbCwKPiBBIE1lZGl0ZXJyYW5lYW4gdG93biBtYXkgYXJpc2UKPiBJZiB5b3UgcmlwIGFwYXJ0 IGEgcGlnZW9uJ3MgaGVhcnQuCj4KCgoKLS0gClNoYXJlIG5vdyBhIHBpZ2VvbidzIGZsaWdodApC bHVlYm91bmQgYWxvbmcgdGhlIGFuY2llbnQgc2tpZXMsCkl0cyB3b21lbiBmb3JldmVyIGhhaXIg YW5kIG1hbW1hbCwKQSBNZWRpdGVycmFuZWFuIHRvd24gbWF5IGFyaXNlCklmIHlvdSByaXAgYXBh cnQgYSBwaWdlb24ncyBoZWFydC4K From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 18:39:07 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03032106564A for ; Sun, 23 Nov 2008 18:39:07 +0000 (UTC) (envelope-from karl@hairytoe.co.uk) Received: from fizeau.zen.co.uk (fizeau.zen.co.uk [212.23.8.67]) by mx1.freebsd.org (Postfix) with ESMTP id B67B58FC0A for ; Sun, 23 Nov 2008 18:39:06 +0000 (UTC) (envelope-from karl@hairytoe.co.uk) Received: from [212.23.3.142] (helo=smarthost03.mail.zen.net.uk) by fizeau.zen.co.uk with esmtp (Exim 4.63) (envelope-from ) id 1L4JZA-00086y-4v for freebsd-questions@freebsd.org; Sun, 23 Nov 2008 18:20:16 +0000 Received: from [82.71.81.14] (helo=82-71-81-14.dsl.in-addr.zen.co.uk) by smarthost03.mail.zen.net.uk with esmtp (Exim 4.63) (envelope-from ) id 1L4JZ7-0004Cy-VB for freebsd-questions@freebsd.org; Sun, 23 Nov 2008 18:20:14 +0000 Received: from 82-71-81-14.dsl.in-addr.zen.co.uk ([192.168.1.2] helo=82-71-81-14.dsl.in-addr.zen.co.uk) by 82-71-81-14.dsl.in-addr.zen.co.uk; 23 Nov 2008 18:20:14 +0000 Received: by 82-71-81-14.dsl.in-addr.zen.co.uk via HTTP; Sun, 23 Nov 2008 18:20:02 +0000 From: "Karlos Linale" To: Date: Sun, 23 Nov 2008 18:20:02 +0000 Message-ID: <4350a4b5$51c751bd$e80afc0$@com> MIME-Version: 1.0 X-Originating-IP: [82.71.81.14] X-Originating-Smarthost03-IP: [82.71.81.14] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: mail server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: karl@hairytoe.co.uk List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 18:39:07 -0000 Hello, I was wondering if you could help me. For some reason I keep getting hundreds of emails on my mail server spool which are being sent to your email address. Are you able to tell me how and why this is happening? Thanks Karl Linale From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 18:39:36 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30ECE106567C for ; Sun, 23 Nov 2008 18:39:36 +0000 (UTC) (envelope-from ulrich@pukruppa.net) Received: from pukruppa.net (pukruppa.net [213.146.114.24]) by mx1.freebsd.org (Postfix) with ESMTP id A55728FC21 for ; Sun, 23 Nov 2008 18:39:35 +0000 (UTC) (envelope-from ulrich@pukruppa.net) Received: from pukruppa.net (localhost [127.0.0.1]) by pukruppa.net (8.14.3/8.14.3) with ESMTP id mANIgW3S050970; Sun, 23 Nov 2008 19:42:33 +0100 (CET) (envelope-from ulrich@pukruppa.net) Message-ID: <4929A418.2020501@pukruppa.net> Date: Sun, 23 Nov 2008 19:42:32 +0100 From: Peter Ulrich Kruppa User-Agent: Thunderbird 2.0.0.17 (X11/20081012) MIME-Version: 1.0 To: patrick.van.ratingen@web.de References: <932463700@web.de> In-Reply-To: <932463700@web.de> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 18:39:36 -0000 patrick.van.ratingen@web.de schrieb: > hey again ... ive asked, if somebody could help me with making > the bootmanager, the kernel.-booting and shutdown-process > green/black colored (like netbsd) ive get no answer yet, i > hope, you can still help me ... Perhaps you should repost this mail with a significant subject line. Most people will delete messages without. Greetings, Uli. > > yours > ____________________________________________________________________ > Psssst! Schon vom neuen WEB.DE MultiMessenger gehört? Der > kann`s mit allen: > http://www.produkte.web.de/messenger/?did=3123 > > > > ------------------------------------------------------------------------ > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions To > unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 19:03:05 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F60A106564A for ; Sun, 23 Nov 2008 19:03:05 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 122B38FC0C for ; Sun, 23 Nov 2008 19:03:05 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-196-26-78.dynamic.qsc.de [92.196.26.78]) by mx01.qsc.de (Postfix) with ESMTP id DE5DD5065A; Sun, 23 Nov 2008 20:03:03 +0100 (CET) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id mANJ33dc001574; Sun, 23 Nov 2008 20:03:03 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Sun, 23 Nov 2008 20:03:02 +0100 From: Polytropon To: patrick.van.ratingen@web.de Message-Id: <20081123200302.f1d53b44.freebsd@edvax.de> In-Reply-To: <932463700@web.de> References: <932463700@web.de> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Changing default colors of syscons / kernel messages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 19:03:05 -0000 On Sun, 23 Nov 2008 17:42:03 +0100, patrick.van.ratingen@web.de wrote: > hey again ... > ive asked, if somebody could help me with making the bootmanager, > the kernel.-booting and shutdown-process green/black colored > (like netbsd) ive get no answer yet, i hope, you can still help me ... It isn't the answer to your question, but: 1. Try do use a subject that is in relationship to your question. 2. Try to wrap your lines at approx. column 70, this makes correct quoting easier. I was free to correct them both. :-) Now regarding your question: It is possible to change the color attributes for the kernel messages which FreeBSD usually displays white on black, and OpenBSD grey on blue. As far as I remember - I tried it once -, there are makeoptions in the kernel configuration file to be set. See the handbook section about how to build a custom kernel for the correct procedures. The correct settings are mentioned in /usr/src/sys/conf/NOTES, lines 1339 cont. (1343 cont): # The following options will let you change the default colors of syscons. options SC_NORM_ATTR=(FG_GREEN|BG_BLACK) options SC_NORM_REV_ATTR=(FG_YELLOW|BG_GREEN) options SC_KERNEL_CONS_ATTR=(FG_RED|BG_BLACK) options SC_KERNEL_CONS_REV_ATTR=(FG_BLACK|BG_RED) But I'm not sure you can change the settings for the boot manager itself in an easy way. Maybe a modification of the boot loader's source code makes it possible... -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 19:15:27 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6708A106564A for ; Sun, 23 Nov 2008 19:15:27 +0000 (UTC) (envelope-from andreas.xanke@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id F31258FC13 for ; Sun, 23 Nov 2008 19:15:26 +0000 (UTC) (envelope-from andreas.xanke@edvax.de) Received: from r55.edvax.de (port-92-196-26-78.dynamic.qsc.de [92.196.26.78]) by mx01.qsc.de (Postfix) with ESMTP id 4634A50653; Sun, 23 Nov 2008 19:57:43 +0100 (CET) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id mANIvhgS001545; Sun, 23 Nov 2008 19:57:43 +0100 (CET) (envelope-from andreas.xanke@edvax.de) Date: Sun, 23 Nov 2008 19:57:42 +0100 From: Andreas Xanke To: patrick.van.ratingen@web.de Message-Id: <20081123195742.dd6e0d0c.andreas.xanke@edvax.de> In-Reply-To: <932463700@web.de> References: <932463700@web.de> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: Changing default colors of syscons / kernel messages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andreas Xanke List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 19:15:27 -0000 On Sun, 23 Nov 2008 17:42:03 +0100, patrick.van.ratingen@web.de wrote: > hey again ... > ive asked, if somebody could help me with making the bootmanager, > the kernel.-booting and shutdown-process green/black colored > (like netbsd) ive get no answer yet, i hope, you can still help me ... It isn't the answer to your question, but: 1. Try do use a subject that is in relationship to your question. 2. Try to wrap your lines at approx. column 70, this makes correct quoting easier. I was free to correct them both. :-)=09 Now regarding your question: It is possible to change the color attributes for the kernel messages which FreeBSD usually displays white on black, and OpenBSD grey on blue. As far as I remember - I tried it once -, there are makeoptions in the kernel configuration file to be set. See the handbook section about how to build a custom kernel for the correct procedures. The correct settings are mentioned in /usr/src/sys/conf/NOTES, lines 1339 cont. (1343 cont): # The following options will let you change the default colors of syscons. options SC_NORM_ATTR=3D(FG_GREEN|BG_BLACK) options SC_NORM_REV_ATTR=3D(FG_YELLOW|BG_GREEN) options SC_KERNEL_CONS_ATTR=3D(FG_RED|BG_BLACK) options SC_KERNEL_CONS_REV_ATTR=3D(FG_BLACK|BG_RED) But I'm not sure you can change the settings for the boot manager itself in an easy way. Maybe a modification of the boot loader's source code makes it possible... >=20 > yours > ____________________________________________________________________ > Psssst! Schon vom neuen WEB.DE MultiMessenger geh=F6rt?=20 > Der kann`s mit allen: http://www.produkte.web.de/messenger/?did=3D3123 >=20 >=20 --=20 "Die Rechtschreibreform ist v=F6llig in Ordnung, wenn man weder lesen noch schreiben kann." (Loriot) From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 19:23:05 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B8E7106564A for ; Sun, 23 Nov 2008 19:23:05 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.158]) by mx1.freebsd.org (Postfix) with ESMTP id 91C138FC13 for ; Sun, 23 Nov 2008 19:23:04 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so1295958fgb.35 for ; Sun, 23 Nov 2008 11:23:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=TSYh/4WuW53c/91BVTF8/4zCGI9EZmjljkzNq/0Zd3Q=; b=B4OIcH3GPeoeyn2Fi67mjdPGQf0YcIAMcEvrxMZCA7GYvMqqG1Lc6J4GQXtXzifZBP PgqbKuMhhNa5LuDXq+N8nvqfKnkdo1n4mle7UgMgM8Za4a0XL/EF26e9I2poOeFJRzGh 0+W93loCxZB0JktGhI9fpApu55K6e/5KHnn50= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=niWJm9Qw7bU8KoAQxKhFBbjAWsYccdPmZQK1BqwlY52nTRTnhD/bBKJ9IL7xU0OAYY RMwHQYDitEeKIi6TARfKfvPiaz5fqpm7Ow/P7OfilGpt8iUYLjlNUbNDhKcQD5yKPpYS XscJze524CMfRXsHLF6PFeL6uCxpZ/F7xu5tY= Received: by 10.181.204.4 with SMTP id g4mr851875bkq.151.1227468183087; Sun, 23 Nov 2008 11:23:03 -0800 (PST) Received: by 10.181.31.13 with HTTP; Sun, 23 Nov 2008 11:23:03 -0800 (PST) Message-ID: <28283d910811231123t7acfbd1nbf858fc8e3ae3ac4@mail.gmail.com> Date: Sun, 23 Nov 2008 14:23:03 -0500 From: "matt donovan" To: karl@hairytoe.co.uk In-Reply-To: <4350a4b5$51c751bd$e80afc0$@com> MIME-Version: 1.0 References: <4350a4b5$51c751bd$e80afc0$@com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: mail server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 19:23:05 -0000 On Sun, Nov 23, 2008 at 1:20 PM, Karlos Linale wrote: > Hello, > > I was wondering if you could help me. > > For some reason I keep getting hundreds of emails on my mail server spool > which are being sent to your email address. Are you able to tell me how and > why this is happening? > > Thanks > > Karl Linale > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" Most likely your email server is being used to send spam to the question mailing list. I had one email bounced back to me lucky gmail uses SPF and it seems that the freebsd server is setup to bounce back bad SPF emails. but maybe someone that is on your email server actually sending mails to this mailing list prehaps hard to say but I would say. set up better security for your email server for one if you have hundreds of emails just sitting in your spool going to this mailing list. From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 19:49:15 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AC551065673 for ; Sun, 23 Nov 2008 19:49:15 +0000 (UTC) (envelope-from champagne_dan@yahoo.ca) Received: from web53209.mail.re2.yahoo.com (web53209.mail.re2.yahoo.com [206.190.49.79]) by mx1.freebsd.org (Postfix) with SMTP id 8DE748FC0C for ; Sun, 23 Nov 2008 19:49:14 +0000 (UTC) (envelope-from champagne_dan@yahoo.ca) Received: (qmail 24690 invoked by uid 60001); 23 Nov 2008 19:22:33 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.ca; h=X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type:Message-ID; b=Mma4QI3KixC9yBH2iSsl785ehYI2M+geX4G3RMbxQx3Rr/SRVF4HapItuKlIMBdE23hivMk4xi5rd3E3Z1l/T6d7kdGG1GTnr00icjANTFU/4YvSMsc54H7oUMDk0JbC4ie8/XJM7BGZ30wNYxj0mSHeh9nRFFdX13EVMHup7Y8=; X-YMail-OSG: KPCUZ1wVM1nE9hNRwnQ.3nGx2qtHoGmuCUySRNBRzYXI5sbomtDBgcXGAgf1AcZWDpQHwMFfzWswtuuqYcTUua0Oi7Uc4h_AXnCH2BLkyER9Lmu4ksI2_hfnsbliRBaznl2ILcG5tZStC.ZnolESPS9divy68TOykC6ifUb7gQVQU__kwehUMDpcN26V Received: from [24.57.244.239] by web53209.mail.re2.yahoo.com via HTTP; Sun, 23 Nov 2008 11:22:33 PST X-Mailer: YahooMailWebService/0.7.260.1 Date: Sun, 23 Nov 2008 11:22:33 -0800 (PST) From: Dan Champagne To: freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-ID: <855676.23866.qm@web53209.mail.re2.yahoo.com> Cc: Subject: Help with install, Have checked forum X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: champagne_dan@yahoo.ca List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 19:49:15 -0000 Hello, I have been using the forums, google, your documents, and any other source to try and get freeBSD 7.0 installed on my system, i have tried the rearranging the IDE, DVDRom, Im using the ISO from your site, I get through some of the install, I keep getting a geometry error and let freebsd fix it, then i get a really crappy error when i think its going to actually mount and install the files, Error mounting /dev/acd0 on /dist: Input/Output eror (5) Any help would be appreciated, because now im at a friends sending this email, because I now have no OS. I have a 1.78Ghz celeron single core, 2gb ram, 160 Western Digital IDE HDD, PCI graphics(onboard disabled) and a DVD/CD burner Thanks Dan. __________________________________________________________________ Yahoo! Canada Toolbar: Search from anywhere on the web, and bookmark your favourite sites. Download it now at http://ca.toolbar.yahoo.com. From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 20:01:56 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 305E310656E5 for ; Sun, 23 Nov 2008 20:01:56 +0000 (UTC) (envelope-from cagri.ersen@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.28]) by mx1.freebsd.org (Postfix) with ESMTP id C83298FC0C for ; Sun, 23 Nov 2008 20:01:55 +0000 (UTC) (envelope-from cagri.ersen@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so704892ywe.13 for ; Sun, 23 Nov 2008 12:01:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=m9N1DJ+oWUuSP8EkMZy+ylaxbUwZ0i7HsFxvoql8R00=; b=pSN0ASvhDfrQ0iMDmZNXYV+pHkNUyVbIPUqyY54TxcLKZxhXib6Y6ZrBby1fBD2eSt Hszce01vKV6sWqo8TXsRoRV9JA2vHAPb/LyG4aIk2tWKW61V9llgJvv0ldn/fJxLcOm3 7fBcVfAYM0jAD/UQE25szkf9/78opVIV1w3Gg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=dsr/Eg2yCY4AdzJGkKGXdVlBFiTF0uNXmzdjfnBoEpJLFBRplxUjuSbo3SzOsgeFi/ QLmPnkDNXHcY3Hrkh4ER4kTPWy4EQjxdC0V9WMwePhBPgc2kRYKRfW+pa9czUbam4eB5 dAjAKJc3Jyulixy0iTHvn2CUB97wP5QcMRniQ= Received: by 10.100.205.15 with SMTP id c15mr1211822ang.16.1227468609357; Sun, 23 Nov 2008 11:30:09 -0800 (PST) Received: by 10.100.139.8 with HTTP; Sun, 23 Nov 2008 11:30:09 -0800 (PST) Message-ID: <73a179920811231130k53387b55p2838f80b30fdc6cd@mail.gmail.com> Date: Sun, 23 Nov 2008 21:30:09 +0200 From: "Cagri Ersen" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Transparent Proxy with IPFW + Squid 2.7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 20:01:56 -0000 Hi there, I want to configure a transparent proxy with IPFW and Squid. I enabled IPFW on a FreeBSD 7.0 and also install squid 2.7 this is content of my squid.conf: acl manager proto cache_object acl localhost src 127.0.0.1/32 acl to_localhost dst 127.0.0.0/8 acl all src all acl localnet src 192.168.12.0/24 acl SSL_ports port 443 acl Safe_ports port 80 # http acl Safe_ports port 21 # ftp acl Safe_ports port 443 # https acl Safe_ports port 70 # gopher acl Safe_ports port 210 # wais acl Safe_ports port 1025-65535 # unregistered ports acl Safe_ports port 280 # http-mgmt acl Safe_ports port 488 # gss-http acl Safe_ports port 591 # filemaker acl Safe_ports port 777 # multiling http acl CONNECT method CONNECT http_access allow manager localhost http_access deny manager http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_access allow localnet icp_access allow localnet icp_access deny all http_port 3128 transparent hierarchy_stoplist cgi-bin ? access_log /usr/local/squid/logs/access.log squid refresh_pattern ^ftp: 1440 20% 10080 refresh_pattern ^gopher: 1440 0% 1440 refresh_pattern (cgi-bin|\?) 0 0% 0 refresh_pattern . 0 20% 4320 icp_port 3130 coredump_dir /usr/local/squid/cache And this is base IPFW rules. $cmd 00500 fwd 127.0.0.1,3128 $log tcp from any to any 80 in recv $lanif $cmd 02000 allow $log all from any to any As you can see, all packages which is destination port 80 forwarding to the squid's port (3128). with this configuration everything seems work fine. however if i deny all traffic on the last rule and then open desired ports or connections one by one then squid isn't work. Sample base denying rule set like this: $cmd 00010 allow all from any to any via lo0 $cmd 00015 check-state $cmd 00020 allow tcp from any to any established . $cmd 00021 deny all from any to any frag in via $adslif $cmd 00025 allow all from me to any keep-state $cmd 00050 allow tcp from "table()" to any keep-state $cmd 00500 fwd 127.0.0.1,3128 $log tcp from any to any 80 in recv $lanif $cmd 00600 allow all from $lan to any 53 $cmd 00602 allow udp from any 53 to any out via $lanif $cmd 00603 allow udp from any 53 to any in via $adslif $cmd 01500 allow all from $lan to any 443,25,110 keep-state $cmd 02000 deny $log all from any to any As i said, if i run IPFW with this rules, my client doesn't surf on the internet. And also i didn't seen anything about denying on the ipfw log file. Also there is no activity on squid log files. I think forwarding rule didn't work with that conf. So please can somebody tell me what's wrong in this situation ? Thanks in advance for your help. -- Cagri Ersen From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 20:57:19 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E12A1065673 for ; Sun, 23 Nov 2008 20:57:19 +0000 (UTC) (envelope-from kenneth.hatteland@kleppnett.no) Received: from asav3.lyse.net (asav3.lyse.net [81.167.37.131]) by mx1.freebsd.org (Postfix) with ESMTP id 477DC8FC0C for ; Sun, 23 Nov 2008 20:57:19 +0000 (UTC) (envelope-from kenneth.hatteland@kleppnett.no) Received: from localhost (localhost.localdomain [127.0.0.1]) by asav3.lyse.net (Postfix) with ESMTP id 068EB840C0 for ; Sun, 23 Nov 2008 21:25:29 +0100 (CET) X-Virus-Scanned: amavisd-new at lyse.net Received: from terra.lyse.net (129.81-166-80.customer.lyse.net [81.166.80.129]) by asav3.lyse.net (Postfix) with ESMTP id 6C7C5840B0 for ; Sun, 23 Nov 2008 21:25:28 +0100 (CET) Message-ID: <4929BC38.1010505@kleppnett.no> Date: Sun, 23 Nov 2008 21:25:28 +0100 From: kenneth hatteland User-Agent: Thunderbird 2.0.0.17 (X11/20080929) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Soundcard problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 20:57:19 -0000 After switching from FreeBSD 7.0 release to stable I have had a big soundproblem. When compiling a kernel as I used to with device sound and device snd_emu10Kx as options I now get an error saying mixer is not configured etc.And no sound at all. Have tried several mixers to but to no avail, I do not understand the problem enough to correct it. Googling doesn`t help as no one reports the same error with audigy soundcards. If I compile a kernel without the snd_emu10kx device sound works partially, sometimes playing ok, and then often sounding like an alien attacking ( digital noise of the horrible kind) Sooner or later the system locks down after playing about 5 songs with normal sound forcing me to hard switch the system off.. I find this extremely annoying. Does anybody have a clue ? I am not sure which output you`d want me to provide for this so instead of pasting every output I know I thought to ask first... I haven`t reversed my system to 7.0 release so that could maybe fix it, but I was hoping to stay with 7.1 :) Thanx for listening..... Kenneth hatteland, Norway From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 21:33:48 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32B64106564A for ; Sun, 23 Nov 2008 21:33:48 +0000 (UTC) (envelope-from dead_line@hotmail.com) Received: from blu0-omc4-s13.blu0.hotmail.com (blu0-omc4-s13.blu0.hotmail.com [65.55.111.152]) by mx1.freebsd.org (Postfix) with ESMTP id EB27C8FC0A for ; Sun, 23 Nov 2008 21:33:47 +0000 (UTC) (envelope-from dead_line@hotmail.com) Received: from BLU139-W2 ([65.55.111.135]) by blu0-omc4-s13.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Sun, 23 Nov 2008 13:33:47 -0800 Message-ID: X-Originating-IP: [62.150.108.85] From: Marwan Sultan To: FreeBSD Questions , Date: Sun, 23 Nov 2008 21:33:47 +0000 Importance: Normal In-Reply-To: <20081123083433.7c12ad91@scorpio> References: <235b80000811221123o37ea51fbwcdc6a3480e2c1380@mail.gmail.com> <20081123083433.7c12ad91@scorpio> MIME-Version: 1.0 X-OriginalArrivalTime: 23 Nov 2008 21:33:47.0408 (UTC) FILETIME=[2B157100:01C94DB3] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: RE: Segmentation fault (core dumped) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 21:33:48 -0000 Hello Jerry=2C =20 Its easy to fix=2C as they advised. Check the file file extensions.ini which is in /usr/local/etc/php/extensio= ns.ini =20 You will see your php modules=2C for some reasons the loading order of PHP= modules it needs to be changed .. You can do the follow..and its for bignners..but saves you the headech. =20 Comment first line with -> # save and exit....now see the output of php -v if the error exist (which will for the first 10 lines maybe) repeat again for next line..and same untill you see no error of the php -v =20 When you findout the modulethat cusing your problem...move it to the top o= f the list of modules (top of the file) save and exit...and your done.. please write for me bac= k which module in your case cused the problem. =20 Out of experince.. SHMOP=2C READLINE=2C RECODE=2C SOAP=2C SNMP could cuus= e your problem =20 =20 Thank you. =20 Marwan SUltan.PP Warning: PHP Startup: Unable to load dynamic library> '/= usr/local/lib/php/20060613/sqlite.so'> - /usr/local/lib/php/20060613/sqlite= .so: Undefined symbol> "spl_ce_Countable" in Unknown on line 0 PHP 5.2.6 wi= th Suhosin-Patch> 0.9.6.2 (cli) (built: Nov 21 2008 20:45:19) Copyright (c)= 1997-2008 The> PHP Group Zend Engine v2.2.0=2C Copyright (c) 1998-2008 Zen= d Technologies> Segmentation fault: 11 (core dumped)> > > I have been tryin= g to correct it without results.> > -- > Jerry> gesbbb@yahoo.com> > Your lo= ver will never wish to leave you. _________________________________________________________________ Windows Live Hotmail now works up to 70% faster. http://windowslive.com/Explore/Hotmail?ocid=3DTXT_TAGLM_WL_hotmail_acq_fast= er_112008= From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 22:09:46 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A4241065673 for ; Sun, 23 Nov 2008 22:09:46 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 597608FC16 for ; Sun, 23 Nov 2008 22:09:44 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2) with ESMTP id mANM9cI7003325; Sun, 23 Nov 2008 23:09:38 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2/Submit) with ESMTP id mANM9bgI003322; Sun, 23 Nov 2008 23:09:38 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 23 Nov 2008 23:09:37 +0100 (CET) From: Wojciech Puchar To: Dan Champagne In-Reply-To: <855676.23866.qm@web53209.mail.re2.yahoo.com> Message-ID: <20081123230919.I3315@wojtek.tensor.gdynia.pl> References: <855676.23866.qm@web53209.mail.re2.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Help with install, Have checked forum X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 22:09:46 -0000 try pressing 6 at boot loader menu and then set hw.ata.atapi_dma=0 boot On Sun, 23 Nov 2008, Dan Champagne wrote: > Hello, I have been using the forums, google, your documents, and any other source to try and get freeBSD 7.0 installed on my system, i have tried the rearranging the IDE, DVDRom, Im using the ISO from your site, I get through some of the install, I keep getting a geometry error and let freebsd fix it, then i get a really crappy error when i think its going to actually mount and install the files, > > Error mounting /dev/acd0 on /dist: Input/Output eror (5) > > Any help would be appreciated, because now im at a friends sending this email, because I now have no OS. I have a 1.78Ghz celeron single core, 2gb ram, 160 Western Digital IDE HDD, PCI graphics(onboard disabled) and a DVD/CD burner > > Thanks Dan. > > > __________________________________________________________________ > Yahoo! Canada Toolbar: Search from anywhere on the web, and bookmark your favourite sites. Download it now at > http://ca.toolbar.yahoo.com. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 22:45:06 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 02E4A1065672 for ; Sun, 23 Nov 2008 22:45:06 +0000 (UTC) (envelope-from m0rchand@comcast.net) Received: from QMTA05.westchester.pa.mail.comcast.net (qmta05.westchester.pa.mail.comcast.net [76.96.62.48]) by mx1.freebsd.org (Postfix) with ESMTP id 909A98FC08 for ; Sun, 23 Nov 2008 22:45:04 +0000 (UTC) (envelope-from m0rchand@comcast.net) Received: from OMTA09.westchester.pa.mail.comcast.net ([76.96.62.20]) by QMTA05.westchester.pa.mail.comcast.net with comcast id im0H1a0040SCNGk55ml38y; Sun, 23 Nov 2008 22:45:03 +0000 Received: from [10.0.1.200] ([76.122.47.225]) by OMTA09.westchester.pa.mail.comcast.net with comcast id iml01a0024rWgJL3Vml0bb; Sun, 23 Nov 2008 22:45:00 +0000 X-Authority-Analysis: v=1.0 c=1 a=wcyJMtKdiMMA:10 a=rwJoC99ZYicA:10 a=6I5d2MoRAAAA:8 a=2SmY6LrYzwTnmSM2k3kA:9 a=VZa2IgXQZ7QdNMZBoVQA:7 a=BwE0wJrjhMGisIL1aPJum4oXFEQA:4 a=SV7veod9ZcQA:10 a=WuK_CZDBSqoA:10 Message-Id: <7BBDB4E9-D17D-4F86-9987-A108F353F1D6@comcast.net> From: Tom Marchand To: FreeBSD Mailing List In-Reply-To: <73a179920811231130k53387b55p2838f80b30fdc6cd@mail.gmail.com> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Date: Sun, 23 Nov 2008 17:44:59 -0500 References: <73a179920811231130k53387b55p2838f80b30fdc6cd@mail.gmail.com> X-Mailer: Apple Mail (2.929.2) Subject: Re: Transparent Proxy with IPFW + Squid 2.7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 22:45:06 -0000 On Nov 23, 2008, at 2:30 PM, Cagri Ersen wrote: > Hi there, > > I want to configure a transparent proxy with IPFW and Squid. > I enabled IPFW on a FreeBSD 7.0 and also install squid 2.7 > > this is content of my squid.conf: > > acl manager proto cache_object > acl localhost src 127.0.0.1/32 > acl to_localhost dst 127.0.0.0/8 > acl all src all > acl localnet src 192.168.12.0/24 > acl SSL_ports port 443 > acl Safe_ports port 80 # http > acl Safe_ports port 21 # ftp > acl Safe_ports port 443 # https > acl Safe_ports port 70 # gopher > acl Safe_ports port 210 # wais > acl Safe_ports port 1025-65535 # unregistered ports > acl Safe_ports port 280 # http-mgmt > acl Safe_ports port 488 # gss-http > acl Safe_ports port 591 # filemaker > acl Safe_ports port 777 # multiling http > acl CONNECT method CONNECT > http_access allow manager localhost > http_access deny manager > http_access deny !Safe_ports > http_access deny CONNECT !SSL_ports > http_access allow localnet > icp_access allow localnet > icp_access deny all > http_port 3128 transparent > hierarchy_stoplist cgi-bin ? > access_log /usr/local/squid/logs/access.log squid > refresh_pattern ^ftp: 1440 20% 10080 > refresh_pattern ^gopher: 1440 0% 1440 > refresh_pattern (cgi-bin|\?) 0 0% 0 > refresh_pattern . 0 20% 4320 > icp_port 3130 > coredump_dir /usr/local/squid/cache > > > And this is base IPFW rules. > > $cmd 00500 fwd 127.0.0.1,3128 $log tcp from any to any 80 in recv > $lanif > $cmd 02000 allow $log all from any to any > > As you can see, all packages which is destination port 80 forwarding > to the > squid's port (3128). with this configuration everything seems work > fine. > > however if i deny all traffic on the last rule and then open desired > ports > or connections one by one then squid isn't work. > > Sample base denying rule set like this: > > $cmd 00010 allow all from any to any via lo0 > $cmd 00015 check-state > $cmd 00020 allow tcp from any to any established . > $cmd 00021 deny all from any to any frag in via $adslif > $cmd 00025 allow all from me to any keep-state > $cmd 00050 allow tcp from "table()" to any keep-state > > $cmd 00500 fwd 127.0.0.1,3128 $log tcp from any to any 80 in recv > $lanif > > $cmd 00600 allow all from $lan to any 53 > $cmd 00602 allow udp from any 53 to any out via $lanif > $cmd 00603 allow udp from any 53 to any in via $adslif > > $cmd 01500 allow all from $lan to any 443,25,110 keep-state > $cmd 02000 deny $log all from any to any > > As i said, if i run IPFW with this rules, my client doesn't surf on > the > internet. And also i didn't seen anything about denying on the ipfw > log > file. Also there is no activity on squid log files. I think > forwarding rule > didn't work with that conf. > > So please can somebody tell me what's wrong in this situation ? > Thanks in advance for your help. > > > -- > Cagri Ersen > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org > " Don't you need a rule allow connections to port 80? From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 23:19:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB6F8106564A for ; Sun, 23 Nov 2008 23:19:23 +0000 (UTC) (envelope-from v.velox@vvelox.net) Received: from vulpes.vvelox.net (vulpes.vvelox.NET [74.200.198.26]) by mx1.freebsd.org (Postfix) with ESMTP id C9A9D8FC0C for ; Sun, 23 Nov 2008 23:19:23 +0000 (UTC) (envelope-from v.velox@vvelox.net) Received: from vixen42 (c-67-176-214-76.hsd1.il.comcast.net [67.176.214.76]) (Authenticated sender: v.velox) by vulpes.vvelox.net (Postfix) with ESMTP id EBDDEB84B for ; Sun, 23 Nov 2008 17:08:34 -0600 (CST) Date: Sun, 23 Nov 2008 17:02:27 -0600 From: "Zane C.B." To: freebsd-questions@freebsd.org Message-ID: <20081123170227.2f1410ad@vixen42> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd6.3) Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/OehQTBP6S9wIh6lnWI+MZlp"; protocol="application/pgp-signature"; micalg=PGP-SHA1 Subject: odd issue with 6.4-PRERELEASE #2 and udf/cd9660 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 23:19:24 -0000 --Sig_/OehQTBP6S9wIh6lnWI+MZlp Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable When ever I try try to mount any burned CD/DVD media I get the error below. mount_cd9660 -v /dev/cd0 /mnt using starting sector 0 mount_cd9660: /dev/cd0: Input/output error Exit 1 Which in dmesg results in... g_vfs_done():cd0[READ(offset=3D-2207623839744, length=3D2048)]error =3D 5 This is odd because if I unplug the USB CD drive and plug it into my netbook running a old RELENG 7.0-STABLE it works. On the machine that it errors on it has been doing this for any burned CD/DVD media in either the DVD drive in it or on the USB one I've been testing with. I know the disk is good as I can mount it on other machines I've tested it on with the same drive and different drives. Any one have any ideas? --Sig_/OehQTBP6S9wIh6lnWI+MZlp Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkp4QkACgkQqrJJy0yxYQDoUACfYjCTy574iSQ6cm7uLnYrTpct ZXEAoISTfMRvv//ugQNqOR5yPT7jCfU5 =ISfi -----END PGP SIGNATURE----- --Sig_/OehQTBP6S9wIh6lnWI+MZlp-- From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 23:30:05 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD2361065672 for ; Sun, 23 Nov 2008 23:30:05 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (ns1.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id 7A4DF8FC0C for ; Sun, 23 Nov 2008 23:30:05 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id mANNUT8s086223; Sun, 23 Nov 2008 15:30:30 -0800 (PST) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Sun, 23 Nov 2008 15:30:00 -0800 (PST) Date: Sun, 23 Nov 2008 15:29:59 -0800 From: Gary Kline To: Glyn Millington Message-ID: <20081123232959.GA10731@thought.org> References: <20081122214311.GA54547@thought.org> <86y6zbh0uf.fsf@nowhere.org> <20081123031728.GB67348@thought.org> <86wsev3q3j.fsf@nowhere.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <86wsev3q3j.fsf@nowhere.org> User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22 years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: FreeBSD Mailing List Subject: Re: OO, text OR .odt to HTML? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 23:30:05 -0000 On Sun, Nov 23, 2008 at 06:37:20AM +0000, Glyn Millington wrote: > Gary Kline writes: > > > On Sat, Nov 22, 2008 at 10:06:48PM +0000, Glyn Millington wrote: > >> Gary Kline writes: > >> > >> > is there a push button way of turning an odt file or plain ascii file > >> > into HTML using openoffice? > >> > > >> > i've googled, but haven't found anything. > >> > >> In OO 3 > >> > >> File->Export->File Format -> html/xhtml > >> > > when were you dfinally able to get 3 built?? i tried a month ago and > > something snafu'd. > > October 15th! If memory serves there were no problems here. > Strange that I bumped into some strange error output on building -3 and last yesterday, -3-RC. I have 2.4 thru the OOo site. ... . > -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org From owner-freebsd-questions@FreeBSD.ORG Sun Nov 23 23:37:51 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E339810656D4 for ; Sun, 23 Nov 2008 23:37:51 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (aristotle.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id A061C8FC12 for ; Sun, 23 Nov 2008 23:37:51 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id mANNcEPI086273; Sun, 23 Nov 2008 15:38:15 -0800 (PST) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Sun, 23 Nov 2008 15:37:45 -0800 (PST) Date: Sun, 23 Nov 2008 15:37:44 -0800 From: Gary Kline To: Roland Smith Message-ID: <20081123233744.GB10731@thought.org> References: <20081122214311.GA54547@thought.org> <20081122222058.GA32419@slackbox.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081122222058.GA32419@slackbox.xs4all.nl> User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22 years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: FreeBSD Mailing List Subject: Re: OO, text OR .odt to HTML? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 23:37:52 -0000 On Sat, Nov 22, 2008 at 11:20:58PM +0100, Roland Smith wrote: > On Sat, Nov 22, 2008 at 01:43:14PM -0800, Gary Kline wrote: > > > > is there a push button way of turning an odt file or plain ascii file > > into HTML using openoffice? > > For converting plain text you could use this: http://txt2html.sourceforge.net/ > A promblem with the odt to txt is that the wide-char stuff remains embedded. xe2, x80, x90 to create a "'" ... likewise with dashes "--" and beginning double-quotes and ending. I have atom that I began hacking in 1994 to turn plain ASCII to solid HTML.... I think it's a v2.1+ now... But since there are so many others--and really {because /I don't want to update the man page, ...}, no use it making it into a port. gary > Roland > -- > R.F.Smith http://www.xs4all.nl/~rsmith/ > [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] > pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 00:02:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 533E9106564A for ; Mon, 24 Nov 2008 00:02:45 +0000 (UTC) (envelope-from apseudoutopia@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.172]) by mx1.freebsd.org (Postfix) with ESMTP id 290FE8FC0C for ; Mon, 24 Nov 2008 00:02:45 +0000 (UTC) (envelope-from apseudoutopia@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so1999397wfg.7 for ; Sun, 23 Nov 2008 16:02:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=nRmh2gbOAZ/FwqNk1nP38ke+7BiXr3C/StUCJoeQfU0=; b=U17gFrRI6GWC5UnodIpvCbCjhcPu7141vbUPaj8amxbMPar5Dn+Lp3xoKhesnn5cZw U92QeHY1xg+LItIZeN+QkmsOfNTSShVJEFCQmyxL1XS3pKyi+NQPuvWb9bgDizCT9UXR AaTPGY2/KVojxJ30PB/VZ7wpad2KYUCmmP8iw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=EhkwpjvuwPEY0vDgEqMaYl+lClGtzTBLBeFe6cGN4MCCPi0HjbPPhibcgH79LuC9D2 r6CyqCaG58XbUvQsJgXUPPI10Z/RcsjRQ1V7wvRglPtKMBlV08ozo5FNT7LMDNNRiPW/ le/CClzTHHz2sSJheR7tRVTr/VzQh12bTxaf8= Received: by 10.142.215.5 with SMTP id n5mr1379565wfg.5.1227484964900; Sun, 23 Nov 2008 16:02:44 -0800 (PST) Received: by 10.143.115.9 with HTTP; Sun, 23 Nov 2008 16:02:44 -0800 (PST) Message-ID: <27ade5280811231602m4900af50t83daafca16f94b97@mail.gmail.com> Date: Sun, 23 Nov 2008 19:02:44 -0500 From: APseudoUtopia To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: PHP Session Support in /tmp X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 00:02:45 -0000 Hey. PHP stores session data for the 'file' handler in /tmp, by default. For organizational purposes, I'd like to change this to something like /tmp/php_sessions/ or so. However, I have the clear_tmp_enable feature enabled, so /tmp is cleared on reboot. PHP wont create the php_sessions dir on it's own. So basically, I'm looking for a way to create the dir /tmp/php_sessions/ each time the server is booted BEFORE apache starts. I'm sure I could do this somehow with the rc.d scripts, but I really have no idea how. Thanks very much. From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 00:39:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 290BD106564A for ; Mon, 24 Nov 2008 00:39:22 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 9B0D68FC12 for ; Mon, 24 Nov 2008 00:39:22 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1L4PTu-0000xe-8e for freebsd-questions@freebsd.org; Mon, 24 Nov 2008 00:39:14 +0000 Received: from 93-138-65-38.adsl.net.t-com.hr ([93.138.65.38]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 24 Nov 2008 00:39:14 +0000 Received: from ivoras by 93-138-65-38.adsl.net.t-com.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 24 Nov 2008 00:39:14 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Ivan Voras Date: Mon, 24 Nov 2008 01:39:01 +0100 Lines: 37 Message-ID: References: <27ade5280811231602m4900af50t83daafca16f94b97@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigAE1E13194920D9A44F5C7907" X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 93-138-65-38.adsl.net.t-com.hr User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) In-Reply-To: <27ade5280811231602m4900af50t83daafca16f94b97@mail.gmail.com> X-Enigmail-Version: 0.95.7 Sender: news Subject: Re: PHP Session Support in /tmp X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 00:39:23 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigAE1E13194920D9A44F5C7907 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable APseudoUtopia wrote: > Hey. >=20 > PHP stores session data for the 'file' handler in /tmp, by default. > For organizational purposes, I'd like to change this to something like > /tmp/php_sessions/ or so. However, I have the clear_tmp_enable feature > enabled, so /tmp is cleared on reboot. PHP wont create the > php_sessions dir on it's own. >=20 > So basically, I'm looking for a way to create the dir > /tmp/php_sessions/ each time the server is booted BEFORE apache > starts. I'm sure I could do this somehow with the rc.d scripts, but I > really have no idea how. man 8 rc.local --------------enigAE1E13194920D9A44F5C7907 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkkp96YACgkQldnAQVacBcimJgCguLNzQvpKU8P0K0TBqgNbR0L8 WFAAoPUs1BmJ79fQ8LRlIpB1i31T1nHa =grrn -----END PGP SIGNATURE----- --------------enigAE1E13194920D9A44F5C7907-- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 03:07:02 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 617211065670 for ; Mon, 24 Nov 2008 03:07:02 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from ezekiel.daleco.biz (southernuniform.com [66.76.92.18]) by mx1.freebsd.org (Postfix) with ESMTP id 0B2668FC1B for ; Mon, 24 Nov 2008 03:07:01 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from localhost (localhost [127.0.0.1]) by ezekiel.daleco.biz (8.14.2/8.14.2) with ESMTP id mAO370bW017838; Sun, 23 Nov 2008 21:07:00 -0600 (CST) (envelope-from kdk@daleco.biz) X-Virus-Scanned: amavisd-new at daleco.biz Received: from ezekiel.daleco.biz ([127.0.0.1]) by localhost (ezekiel.daleco.biz [127.0.0.1]) (amavisd-new, port 10024) with LMTP id rviFQ4R+I1RM; Sun, 23 Nov 2008 21:06:47 -0600 (CST) Received: from archangel.daleco.biz (ezekiel.daleco.biz [66.76.92.18]) by ezekiel.daleco.biz (8.14.2/8.14.2) with ESMTP id mAO36fYV017834; Sun, 23 Nov 2008 21:06:43 -0600 (CST) (envelope-from kdk@daleco.biz) Message-ID: <492A1A41.1060202@daleco.biz> Date: Sun, 23 Nov 2008 21:06:41 -0600 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.16) Gecko/20080719 SeaMonkey/1.1.11 MIME-Version: 1.0 To: apseudoutopia@gmail.com References: <27ade5280811231602m4900af50t83daafca16f94b97@mail.gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Ivan Voras , freebsd-questions@freebsd.org Subject: Re: PHP Session Support in /tmp X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 03:07:02 -0000 Ivan Voras wrote: > APseudoUtopia wrote: >> Hey. >> >> PHP stores session data for the 'file' handler in /tmp, by default. >> For organizational purposes, I'd like to change this to something like >> /tmp/php_sessions/ or so. However, I have the clear_tmp_enable feature >> enabled, so /tmp is cleared on reboot. PHP wont create the >> php_sessions dir on it's own. >> >> So basically, I'm looking for a way to create the dir >> /tmp/php_sessions/ each time the server is booted BEFORE apache >> starts. I'm sure I could do this somehow with the rc.d scripts, but I >> really have no idea how. > > man 8 rc.local > And, by way of an alternate suggestion, remember that cron(8) recognizes an "@reboot" special string instead of the normal five-field time indicators. @reboot /bin/mkdir /tmp/php_sessions HTH, Kevin Kinsey -- It's amazing how many people you could be friends with if only they'd make the first approach. From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 03:10:52 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24EFC1065670 for ; Mon, 24 Nov 2008 03:10:52 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from ezekiel.daleco.biz (southernuniform.com [66.76.92.18]) by mx1.freebsd.org (Postfix) with ESMTP id C62118FC1B for ; Mon, 24 Nov 2008 03:10:51 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from localhost (localhost [127.0.0.1]) by ezekiel.daleco.biz (8.14.2/8.14.2) with ESMTP id mAO3AoxI017867; Sun, 23 Nov 2008 21:10:50 -0600 (CST) (envelope-from kdk@daleco.biz) X-Virus-Scanned: amavisd-new at daleco.biz Received: from ezekiel.daleco.biz ([127.0.0.1]) by localhost (ezekiel.daleco.biz [127.0.0.1]) (amavisd-new, port 10024) with LMTP id hL+EDzTkBqww; Sun, 23 Nov 2008 21:10:47 -0600 (CST) Received: from archangel.daleco.biz (ezekiel.daleco.biz [66.76.92.18]) by ezekiel.daleco.biz (8.14.2/8.14.2) with ESMTP id mAO3AhKg017863; Sun, 23 Nov 2008 21:10:45 -0600 (CST) (envelope-from kdk@daleco.biz) Message-ID: <492A1B32.30300@daleco.biz> Date: Sun, 23 Nov 2008 21:10:42 -0600 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.16) Gecko/20080719 SeaMonkey/1.1.11 MIME-Version: 1.0 To: karl@hairytoe.co.uk References: <4350a4b5$51c751bd$e80afc0$@com> In-Reply-To: <4350a4b5$51c751bd$e80afc0$@com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: mail server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 03:10:52 -0000 Karlos Linale wrote: > Hello, > > I was wondering if you could help me. > > For some reason I keep getting hundreds of emails on my mail server spool > which are being sent to your email address. Are you able to tell me how and > why this is happening? > I'm sorry to hear you're having trouble, but your answer is "no, probably not without my Karnak hat on, as I'm not a prophet or mind-reader." I might suspect backscatter from a spam control system that sends bounce notices --- what's the content of these messages? I'd think that message content and envelope details would help as much as anything else in tracking down the source of the issue. Kevin Kinsey -- The reason why worry kills more people than work is that more people worry than work. From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 03:14:51 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2088106564A for ; Mon, 24 Nov 2008 03:14:51 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from ezekiel.daleco.biz (southernuniform.com [66.76.92.18]) by mx1.freebsd.org (Postfix) with ESMTP id 80B348FC13 for ; Mon, 24 Nov 2008 03:14:51 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from localhost (localhost [127.0.0.1]) by ezekiel.daleco.biz (8.14.2/8.14.2) with ESMTP id mAO3Eo7G017911; Sun, 23 Nov 2008 21:14:50 -0600 (CST) (envelope-from kdk@daleco.biz) X-Virus-Scanned: amavisd-new at daleco.biz Received: from ezekiel.daleco.biz ([127.0.0.1]) by localhost (ezekiel.daleco.biz [127.0.0.1]) (amavisd-new, port 10024) with LMTP id iWKMpjreNJVI; Sun, 23 Nov 2008 21:14:46 -0600 (CST) Received: from archangel.daleco.biz (ezekiel.daleco.biz [66.76.92.18]) by ezekiel.daleco.biz (8.14.2/8.14.2) with ESMTP id mAO3Ehr3017907; Sun, 23 Nov 2008 21:14:46 -0600 (CST) (envelope-from kdk@daleco.biz) Message-ID: <492A1C23.2080504@daleco.biz> Date: Sun, 23 Nov 2008 21:14:43 -0600 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.16) Gecko/20080719 SeaMonkey/1.1.11 MIME-Version: 1.0 To: kenneth hatteland References: <4929BC38.1010505@kleppnett.no> In-Reply-To: <4929BC38.1010505@kleppnett.no> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Soundcard problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 03:14:51 -0000 kenneth hatteland wrote: > After switching from FreeBSD 7.0 release to stable I have had a big > soundproblem. > When compiling a kernel as I used to with device sound and device > snd_emu10Kx as options I now get an error saying mixer is not configured > etc.And no sound at all. Have tried several mixers to but to no avail, > I do not understand the problem enough to correct it. I'm not sure I will either, but maybe won't hurt to try? > Googling doesn`t help as no one reports the same error with audigy > soundcards. > If I compile a kernel without the snd_emu10kx device sound works > partially, sometimes playing ok, and then often sounding like an alien > attacking ( digital noise of the horrible kind) Sooner or later the > system locks down after playing about 5 songs with normal sound forcing > me to hard switch the system off.. I find this extremely annoying. I think I would also. > Does anybody have a clue ? I am not sure which output you`d want me to > provide for this so instead of pasting every output I know I thought to > ask first... > I haven`t reversed my system to 7.0 release so that could maybe fix it, > but I was hoping to stay with 7.1 :) Well, relevant lines re: your soundcard from `dmesg` or /var/run/dmesg.boot, if it's there. Also, output of `cat /dev/sndstat` and perhaps a listing thus: ls -l /dev/dsp* /dev/mixer for starters. Kevin Kinsey -- Fortune favors the lucky. From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 03:25:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D9991065673 for ; Mon, 24 Nov 2008 03:25:28 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.231]) by mx1.freebsd.org (Postfix) with ESMTP id 2A9648FC16 for ; Mon, 24 Nov 2008 03:25:28 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so1833575rvf.43 for ; Sun, 23 Nov 2008 19:25:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:mime-version:content-type:content-transfer-encoding :content-disposition:message-id; bh=pFbDQJepUTQpajb3FYT1JQFpGkCcn8wnCm+2dXbfdmM=; b=AhkVSQvrcugRifx3js1keRDEF9Klawr4S4VtH2t47szEGwUztJEbCd8nITxDV+wGOr 9eDnMuoNaaf1ahTHJBIFZrYNByOqd8ITfNYz2uyCzN97ZR6F38TpZrjKh4yo7zjInJE4 3+/h1LzVsYWw6mVZLXY/a0nwVk275qGKuHo4E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:mime-version:content-type :content-transfer-encoding:content-disposition:message-id; b=eOyRSPpgzCryf+3bVqBznmM3ArQ3E+86mrCMeVoTkeSh8R7uhd7VRkT2GmBbiTC8y1 YyO0L/wL1IzIEYqUXodsgpZbc56SZwjJ0tJlxC++GLYgxWlXI+ZFlS4iqly0+4RnI0re isOprb3t3ZtB/Mex4PwHFXLJCnV7jae+uB8rY= Received: by 10.141.3.17 with SMTP id f17mr1634926rvi.130.1227497127808; Sun, 23 Nov 2008 19:25:27 -0800 (PST) Received: from sniper (71-221-169-177.bois.qwest.net [71.221.169.177]) by mx.google.com with ESMTPS id f21sm11410529rvb.5.2008.11.23.19.25.27 (version=SSLv3 cipher=RC4-MD5); Sun, 23 Nov 2008 19:25:27 -0800 (PST) From: Andrew Falanga To: FreeBSD Questions Date: Sun, 23 Nov 2008 20:23:58 -0700 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811232023.58959.af300wsm@gmail.com> Subject: Installing gimp from ports, need a GTK+, what port is it X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 03:25:28 -0000 HI, I'm installing gimp from ports. I've recently done a csup on my ports tree and was happily working through the issues that were coming up while installing. Normally, the issues were only due to a particular package that was installed, such as poppler, being older than the one gimp wanted. So, a call to portupgrade fixed it. However, this one has me stumped (I haven't yet installed the gnomelogalyzer mentioned in the error to try that method, but I don't think I have to). The configure script: ===> Configuring for gimp-app-2.6.1_2,1 stopped for: checking for GTK+ - version >= 2.12.5... no A search for installed gtk packages on my system revealed this: sniper# pkg_info | grep gtk gtk-1.2.10_20 Gimp Toolkit for X11 GUI (previous stable version) gtk-2.12.1_1 Gimp Toolkit for X11 GUI (current stable version) gtk-engines2-2.14.3 Theme engine for the Gtk+-2.0 toolkit poppler-gtk-0.8.7 Gtk bindings to poppler webkit-gtk2-0.0.30549_1 An opensource browser engine wxgtk2-common-2.8.9 The wxWidgets GUI toolkit (common files) wxgtk2-unicode-2.8.9 The wxWidgets GUI toolkit (Unicode) The only thing in it that mentions "GTK+" is the gtk-engines* port, but that has in the description, "Theme engine for Gtk+...." Is this really the port to update, or is there something else I should update, or is there a port that isn't installed that I should install? What port is this GTK+ anyway? A "make search name=gtk+" at /usr/ports revealed more stuff than my konsole window would scroll through, so there's quite a bit to know. What package is it I'm looking for? Thanks for any help, Andy From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 04:07:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B287D1065673 for ; Mon, 24 Nov 2008 04:07:45 +0000 (UTC) (envelope-from buhnux@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.247]) by mx1.freebsd.org (Postfix) with ESMTP id 607418FC0C for ; Mon, 24 Nov 2008 04:07:45 +0000 (UTC) (envelope-from buhnux@gmail.com) Received: by an-out-0708.google.com with SMTP id b6so762720ana.13 for ; Sun, 23 Nov 2008 20:07:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender :to:subject:cc:in-reply-to:mime-version:content-type:references :x-google-sender-auth; bh=6ycbxjGbWqQTkKAUToxyvDeO2RgCJT61srTcqalgxwo=; b=Rky7vsW/9ump9YpCzrGB2f1OKpl+4h9czAkrySG/ol8NC1BqMB6KFh1UwqgLnIvR9f tMn/letXzlpEZm1/1fpDhv+0Qh9dPSrskI/BfpuwowH5dQ/Q73CBsZFYVTo2FHbKlnw2 79JdDhnnTXl1XQT0vj0L72++3LsLxfKjS5Fr8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version :content-type:references:x-google-sender-auth; b=aNdYsayznDgP6YuVLTwfnILvHgwUK/TqIXuU9jgsT5SOVPPZAcNvoq8mBlITZM4Xnr ykrU73DgolOdSkj1z3xTr+MIZ3RCISomMW1pHA3a/qjgQbng8ZAy/7CZbb/jYUIxNWl7 gvPphkiyjIMGHffMARdJLCaU4pu7yhv8Hx/5o= Received: by 10.100.132.14 with SMTP id f14mr1323121and.107.1227497931885; Sun, 23 Nov 2008 19:38:51 -0800 (PST) Received: by 10.100.171.18 with HTTP; Sun, 23 Nov 2008 19:38:51 -0800 (PST) Message-ID: Date: Sun, 23 Nov 2008 21:38:51 -0600 From: "Michael Johnson" Sender: buhnux@gmail.com To: "Andrew Falanga" In-Reply-To: <200811232023.58959.af300wsm@gmail.com> MIME-Version: 1.0 References: <200811232023.58959.af300wsm@gmail.com> X-Google-Sender-Auth: 14fa2f118e244191 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: FreeBSD Questions Subject: Re: Installing gimp from ports, need a GTK+, what port is it X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 04:07:45 -0000 On Sun, Nov 23, 2008 at 9:23 PM, Andrew Falanga wrote: > HI, > > I'm installing gimp from ports. I've recently done a csup on my ports tree > and was happily working through the issues that were coming up while > installing. Normally, the issues were only due to a particular package > that > was installed, such as poppler, being older than the one gimp wanted. So, > a > call to portupgrade fixed it. > > However, this one has me stumped (I haven't yet installed the > gnomelogalyzer > mentioned in the error to try that method, but I don't think I have to). > The > configure script: > ===> Configuring for gimp-app-2.6.1_2,1 > > stopped for: > checking for GTK+ - version >= 2.12.5... no > > A search for installed gtk packages on my system revealed this: > sniper# pkg_info | grep gtk > gtk-1.2.10_20 Gimp Toolkit for X11 GUI (previous stable version) > gtk-2.12.1_1 Gimp Toolkit for X11 GUI (current stable version) > gtk-engines2-2.14.3 Theme engine for the Gtk+-2.0 toolkit > poppler-gtk-0.8.7 Gtk bindings to poppler > webkit-gtk2-0.0.30549_1 An opensource browser engine > wxgtk2-common-2.8.9 The wxWidgets GUI toolkit (common files) > wxgtk2-unicode-2.8.9 The wxWidgets GUI toolkit (Unicode) > > The only thing in it that mentions "GTK+" is the gtk-engines* port, but > that > has in the description, "Theme engine for Gtk+...." Is this really the > port > to update, or is there something else I should update, or is there a port > that isn't installed that I should install? What port is this GTK+ anyway? > > A "make search name=gtk+" at /usr/ports revealed more stuff than my konsole > window would scroll through, so there's quite a bit to know. What package > is > it I'm looking for? > The version of gtk you have installed is too old. Upgrade to the latest version of x11-toolkits/gtk2 Michael > > Thanks for any help, > Andy > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 04:36:46 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BFE8106564A for ; Mon, 24 Nov 2008 04:36:46 +0000 (UTC) (envelope-from fbsd06+37=ab02fec6@mlists.homeunix.com) Received: from fallback-in1.mxes.net (fallback-out1.mxes.net [216.86.168.190]) by mx1.freebsd.org (Postfix) with ESMTP id CB6FD8FC14 for ; Mon, 24 Nov 2008 04:36:45 +0000 (UTC) (envelope-from fbsd06+37=ab02fec6@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by fallback-in1.mxes.net (Postfix) with ESMTP id 9F5471648C4 for ; Sun, 23 Nov 2008 23:20:41 -0500 (EST) Received: from gumby.homeunix.com (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 791BA23E3FD for ; Sun, 23 Nov 2008 23:20:34 -0500 (EST) Date: Mon, 24 Nov 2008 04:20:16 +0000 From: RW To: freebsd-questions@freebsd.org Message-ID: <20081124042016.5c2b88cb@gumby.homeunix.com> In-Reply-To: <200811232023.58959.af300wsm@gmail.com> References: <200811232023.58959.af300wsm@gmail.com> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Installing gimp from ports, need a GTK+, what port is it X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 04:36:46 -0000 On Sun, 23 Nov 2008 20:23:58 -0700 Andrew Falanga wrote: > HI, > > I'm installing gimp from ports. I've recently done a csup on my > ports tree and was happily working through the issues that were > coming up while installing. Normally, the issues were only due to a > particular package that was installed, such as poppler, being older > than the one gimp wanted. So, a call to portupgrade fixed it. > I'd suggest that you install gimp with portinstall (portupgrade -N), which is supposed to take care of upgrading dependencies. Personally, I just bring my existing ports up-to-date before installing new ports - in the long-term I think it's less hassle if you regard your own time as more valuable than the CPU's. From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 05:03:11 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03C2D106564A for ; Mon, 24 Nov 2008 05:03:11 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (ns1.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id B5AD18FC13 for ; Mon, 24 Nov 2008 05:03:10 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id mAO53aEc088141 for ; Sun, 23 Nov 2008 21:03:36 -0800 (PST) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Sun, 23 Nov 2008 21:03:06 -0800 (PST) Date: Sun, 23 Nov 2008 21:03:06 -0800 From: Gary Kline To: FreeBSD Mailing List Message-ID: <20081124050303.GA30192@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22 years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: Subject: did i ask this before? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 05:03:11 -0000 Guys, Is there anybody familiar with out web1913 stuff, or know of any words dictionary or database that can help me to list a list of simply: word [type of speech] E.g: gate n. sit v. very adv. red adj. and so forth? I don't think there are any EASY idea. hope i'm wrong... tia, gary -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 08:16:37 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A946106564A for ; Mon, 24 Nov 2008 08:16:37 +0000 (UTC) (envelope-from bipolor@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.26]) by mx1.freebsd.org (Postfix) with ESMTP id D5CB98FC08 for ; Mon, 24 Nov 2008 08:16:36 +0000 (UTC) (envelope-from bipolor@gmail.com) Received: by qw-out-2122.google.com with SMTP id 9so380181qwb.7 for ; Mon, 24 Nov 2008 00:16:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=2W2wUmvjRPdVT4pl2/y4jtzbS7BwMsUH3qyzNvUUAxQ=; b=NlFh+HeuK+lcJu/ZvEMTVsyVwiU2JpCzjuyjy7j+BVTDks7aak8Lt2D9oC/YJS+SES HBeTLXmlbVqoGEYvN0pCArh3FRJ3b6FGZBvoEueTeBjjaBv4Rw8koNGdXX+ahnyHom2N TAFLNrSVLpLAp+LUgoJEdTZFxhGJfJeeFY7nU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=IwMQ8DqIJHNkQlu0PRvw3c37wxENNOiL0DFRes5j8JdXcrEJeDOvXeXahhNFEBkXWI 3edXol4BYPO6raLxF9/hmapHrwk+HdqaVpbaYd4QtWEtX1wt+3QVTIpDcnKpnUk4whgT 6kmrc/py8U8odg93D/XknhsxzNq1tq7MAdnWc= Received: by 10.215.101.14 with SMTP id d14mr1753887qam.134.1227514595646; Mon, 24 Nov 2008 00:16:35 -0800 (PST) Received: by 10.214.182.17 with HTTP; Mon, 24 Nov 2008 00:16:35 -0800 (PST) Message-ID: Date: Mon, 24 Nov 2008 00:16:35 -0800 From: "Mike Price" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: FreeBSD-STABLE: How do I change my Local IP Address statically? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 08:16:37 -0000 My IP Address on my FreeBSD Server 4.11-STABLE keeps changing. What I need to do is find the file or command to change it statically. Please Help, Thanks From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 09:50:20 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A43671065670 for ; Mon, 24 Nov 2008 09:50:20 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id D5A548FC17 for ; Mon, 24 Nov 2008 09:50:19 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2) with ESMTP id mAO9oE3P024191; Mon, 24 Nov 2008 10:50:14 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2/Submit) with ESMTP id mAO9oCW8024188; Mon, 24 Nov 2008 10:50:13 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 24 Nov 2008 10:50:12 +0100 (CET) From: Wojciech Puchar To: Mike Price In-Reply-To: Message-ID: <20081124104856.O24187@wojtek.tensor.gdynia.pl> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD-STABLE: How do I change my Local IP Address statically? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 09:50:20 -0000 > My IP Address on my FreeBSD Server 4.11-STABLE keeps changing. What I need saying "My" suggest you are administrator - so you (your script/program) changes IP. so you know what it is. please more precisely specify your question From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 09:51:30 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E71561065676 for ; Mon, 24 Nov 2008 09:51:30 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id 6336C8FC2E for ; Mon, 24 Nov 2008 09:51:29 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from kobe.laptop (adsl141-187.kln.forthnet.gr [195.74.240.187]) (authenticated bits=128) by igloo.linux.gr (8.14.3/8.14.3/Debian-5) with ESMTP id mAO9pIi6009625 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 24 Nov 2008 11:51:24 +0200 Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.3/8.14.3) with ESMTP id mAO9pH35005153; Mon, 24 Nov 2008 11:51:18 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.3/8.14.3/Submit) id mAO9pGwi005152; Mon, 24 Nov 2008 11:51:16 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) From: Giorgos Keramidas To: "Mike Price" References: Date: Mon, 24 Nov 2008 11:51:16 +0200 In-Reply-To: (Mike Price's message of "Mon, 24 Nov 2008 00:16:35 -0800") Message-ID: <877i6ttpt7.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-MailScanner-ID: mAO9pIi6009625 X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-3.82, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.58, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD-STABLE: How do I change my Local IP Address statically? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 09:51:31 -0000 On Mon, 24 Nov 2008 00:16:35 -0800, "Mike Price" wrote: > My IP Address on my FreeBSD Server 4.11-STABLE keeps changing. What I > need to do is find the file or command to change it statically. Network configuration is saved in `/etc/rc.conf' in FreeBSD. Before you make any changes to that file, however, make sure that: (1) You have a safe backup copy of this file. (2) You have read and understood the relevant parts of the FreeBSD Handbook. Pay special attention to ``Setting Up Network Interface Cards'': http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/config-network-setup.html From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 09:57:10 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5C421065724 for ; Mon, 24 Nov 2008 09:57:10 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id D26298FC20 for ; Mon, 24 Nov 2008 09:57:09 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2) with ESMTP id mAO9v6VP024235; Mon, 24 Nov 2008 10:57:06 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2/Submit) with ESMTP id mAO9v4wV024232; Mon, 24 Nov 2008 10:57:06 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 24 Nov 2008 10:57:04 +0100 (CET) From: Wojciech Puchar To: Mike Price In-Reply-To: <20081124104856.O24187@wojtek.tensor.gdynia.pl> Message-ID: <20081124105640.I24231@wojtek.tensor.gdynia.pl> References: <20081124104856.O24187@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD-STABLE: How do I change my Local IP Address statically? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 09:57:10 -0000 >> My IP Address on my FreeBSD Server 4.11-STABLE keeps changing. What I need > > saying "My" suggest you are administrator - so you (your script/program) > changes IP. so you know what it is. > > please more precisely specify your question OK sorry i didn't read carefully. you need ifconfig and route to set IP and default route From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 10:00:31 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B9471065672 for ; Mon, 24 Nov 2008 10:00:31 +0000 (UTC) (envelope-from simon.burke@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.156]) by mx1.freebsd.org (Postfix) with ESMTP id A535D8FC12 for ; Mon, 24 Nov 2008 10:00:30 +0000 (UTC) (envelope-from simon.burke@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so1495189fgb.35 for ; Mon, 24 Nov 2008 02:00:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=MdsoteZy0urMGZmyLBzP+e8S5QY0QJPfp+JmaK4pfZ4=; b=k17o+DS7GVEnM9lMVwM86qn9vuRC0Ea7wKJBiZaOtTUlieKBWzq92uE5G6nKjlhu9n Svjdj24nNM6IyGanKm75uGe6P36Us26r2uI7WEeL6bALkuC66toUasmiyRxTnXwJ2+rs pNwRjivgp28850FNNU15Wz/4p6eO5OPoQSQlQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=UhO72prb3FMa4vlDUwM5ugoOMFFbA6fMCvLv2wXzwV0wFSC/sNx2za6Ka35v4a4Cc4 avwrOzp1jlUGuKV/CTnLXbsNVqHmDAsWXCv0IoBm+CCTl9QKyGkv5/urw1LGxEspXB9K Pytk1Kp9ErYJ9w1b77m9F99du757Pp7U7EvX0= Received: by 10.86.61.13 with SMTP id j13mr2065987fga.23.1227519151070; Mon, 24 Nov 2008 01:32:31 -0800 (PST) Received: by 10.86.57.18 with HTTP; Mon, 24 Nov 2008 01:32:31 -0800 (PST) Message-ID: <2d7d2dd20811240132i7f0083dfv282cd6b73185066a@mail.gmail.com> Date: Mon, 24 Nov 2008 09:32:31 +0000 From: "Simon Burke" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Analysing VMcore files. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 10:00:31 -0000 I am currently running FreeBSD 7.0 as my desktop OS, and I have a need to analyse VWCores from a RedHat ES system. Knowing very little about analysing dumps, is it possible to do this? or would I have to set up a more comparable environment? -- Theres no place like ::1 Thanks, SimonB From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 10:14:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B9CB31065676 for ; Mon, 24 Nov 2008 10:14:45 +0000 (UTC) (envelope-from Albert.Shih@obspm.fr) Received: from blade2-ext.obspm.fr (blade2-ext.obspm.fr [145.238.186.8]) by mx1.freebsd.org (Postfix) with ESMTP id 4F6C58FC12 for ; Mon, 24 Nov 2008 10:14:44 +0000 (UTC) (envelope-from Albert.Shih@obspm.fr) Received: from obspm.fr (pcjas.obspm.fr [145.238.184.233]) by blade2-ext.obspm.fr (8.13.8/8.13.8/SIO Observatoire de Paris - 15/11/07) with ESMTP id mAOAEgK3008648 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 24 Nov 2008 11:14:43 +0100 Date: Mon, 24 Nov 2008 11:14:42 +0100 From: Albert Shih To: Giorgos Keramidas Message-ID: <20081124101442.GR31706@obspm.fr> References: <20081118145535.GB30563@obspm.fr> <87y6ze4u5j.fsf@kobe.laptop> <20081121004329.GC5215@obspm.fr> <8763mh34fy.fsf@kobe.laptop> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <8763mh34fy.fsf@kobe.laptop> User-Agent: Mutt/1.5.18 (2008-05-17) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0 (blade2-ext.obspm.fr [145.238.186.20]); Mon, 24 Nov 2008 11:14:43 +0100 (CET) X-Virus-Scanned: ClamAV 0.94.1/8669/Mon Nov 24 09:21:48 2008 on blade2-ext.obspm.fr X-Virus-Status: Clean Cc: freebsd-questions@freebsd.org Subject: Re: Wifi Card for laptop X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Albert.Shih@obspm.fr List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 10:14:45 -0000 Le 21/11/2008 à 09:48:17+0200, Giorgos Keramidas a écrit Hi, > > Hmmm, that's a bit bad. Is `Fn+F2' the key that turns wireless OFF/ON > for this laptop? Maybe the driver is crashing because the device > detaches and re-attaches while the driver is stuck somewhere :( > > If you think you can grab a kernel dump from this, maybe it's going to > be useful to debug the problem. OK I find the problem (and solve-it ;-). In the bios there some (very strange for me) configuration for the wifi card, it seem it's same card to handle wifi and bluetooth. And when I pres Fn+F2 he switch to bluetooth and my laptop crash... So because I don't have any bluetooth device I don't use it. After disabling bluetooth in the bios everything work fine. > > No driver (and of course not working) > > > > NetXtreme BCM5756ME Gigabit Ethernet PCIe > > I don't see `BCM5756' or `5756' anywhere in the manpages or the source > of the kernel in of 8.0-CURRENT either. I think this is not supported :( So that answer my question about change to current... > > > usable memory = 4278091776 (4079 MB) > > avail memory = 4124418048 (3933 MB) > > Heh, nice. I see you are running an amd64 build of FreeBSD, and there > are *lots* of memory on this laptop :) Yes I known ;-) > One of the tests you can run, to find out what is broken in wpi(4), is > to build a kernel with DDB/KDB support, and grab a kernel dump when the > wpi(4) interface stops working. > > The ``Developer's Handbook'' can help you build a debugging kernel: > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/kerneldebug.html > > Using DDB to trace through the `live' kernel while it is stuck is a bit > tricky, but if you manage to grab some of the DDB output (i.e. with a > serial console or even just a photograph with a camera), then we can > mail the developers of wpi(4) and ask them for more help :) > OK. When I've some time I going to do this. Best Regards. JAS -- Albert SHIH SIO batiment 15 Observatoire de Paris Meudon 5 Place Jules Janssen 92195 Meudon Cedex Heure local/Local time: Lun 24 nov 2008 11:11:03 CET From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 10:49:07 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B1F401065672 for ; Mon, 24 Nov 2008 10:49:07 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 678428FC14 for ; Mon, 24 Nov 2008 10:49:07 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1L4Z05-0002Iu-Gs for freebsd-questions@freebsd.org; Mon, 24 Nov 2008 10:49:05 +0000 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 24 Nov 2008 10:49:05 +0000 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 24 Nov 2008 10:49:05 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Ivan Voras Date: Mon, 24 Nov 2008 11:48:59 +0100 Lines: 35 Message-ID: References: <2d7d2dd20811240132i7f0083dfv282cd6b73185066a@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigB7173C4073A050688DF3CBA7" X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Thunderbird 2.0.0.17 (X11/20080925) In-Reply-To: <2d7d2dd20811240132i7f0083dfv282cd6b73185066a@mail.gmail.com> X-Enigmail-Version: 0.95.0 Sender: news Subject: Re: Analysing VMcore files. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 10:49:07 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigB7173C4073A050688DF3CBA7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Simon Burke wrote: > I am currently running FreeBSD 7.0 as my desktop OS, and I have a need = to > analyse VWCores from a RedHat ES system. > Knowing very little about analysing dumps, is it possible to do this? o= r > would I have to set up a more comparable environment? In theory, you could set up a Linux environment (http://www.freebsd.org/doc/en/books/handbook/linuxemu.html) with the binaries from your RedHat system, spawn a Linux shell and go from there as if you're on Linux, but this will almost certainly be more work than just finding a RedHat system (or even installing one in qemu). --------------enigB7173C4073A050688DF3CBA7 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJKoabldnAQVacBcgRAhKwAJ4zLCRjJJm6Ccr2syBqrZHnBkVvfgCgs0/X z5avL6ik51tdS5olJp/H7VM= =PpuX -----END PGP SIGNATURE----- --------------enigB7173C4073A050688DF3CBA7-- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 11:05:55 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B38E6106564A for ; Mon, 24 Nov 2008 11:05:55 +0000 (UTC) (envelope-from simon.burke@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.172]) by mx1.freebsd.org (Postfix) with ESMTP id 3A8108FC14 for ; Mon, 24 Nov 2008 11:05:55 +0000 (UTC) (envelope-from simon.burke@gmail.com) Received: by ug-out-1314.google.com with SMTP id 30so671867ugs.39 for ; Mon, 24 Nov 2008 03:05:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=+RgaSi+XD/smyEsjITx1O6yLdWdUGP9XnUhwiNFjEfg=; b=O3hs5qKl24A7iAXMbevw5VCr7tlnUx60Qe1aM4fM79y8BYW/39JU9g1A+z5g8SX0+A K2P3G/xUSrV7zZ5aablCAcWdJL7/AIu6pDYXnJjIEmBSIaqxf4xLhWeS0E094wD5hI70 6cb2co7QEP52EMwqNe8QI6+KI9cEmGkzHlRm8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=pbmr/dxIiPZsSWm16fBKAV7UDxJCE2CCa9JFIBhihP1X988fUscDEDWGlU4Sm4teCs OLSgBrYosSaSvoftze+oQuCq86qf8kuhhwx3nsSNh44cBPHOYmJqOL1OJ7KcIzmPkBur G+OOH0/B6jA/KKYmY7HMU9YaoWG5e+XPzTZ5o= Received: by 10.86.59.18 with SMTP id h18mr2087329fga.77.1227524753959; Mon, 24 Nov 2008 03:05:53 -0800 (PST) Received: by 10.86.57.18 with HTTP; Mon, 24 Nov 2008 03:05:53 -0800 (PST) Message-ID: <2d7d2dd20811240305m3c589fbvcc93e51444cd188b@mail.gmail.com> Date: Mon, 24 Nov 2008 11:05:53 +0000 From: "Simon Burke" To: freebsd-questions@freebsd.org In-Reply-To: MIME-Version: 1.0 References: <2d7d2dd20811240132i7f0083dfv282cd6b73185066a@mail.gmail.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Analysing VMcore files. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 11:05:55 -0000 2008/11/24 Ivan Voras > Simon Burke wrote: > > I am currently running FreeBSD 7.0 as my desktop OS, and I have a need to > > analyse VWCores from a RedHat ES system. > > Knowing very little about analysing dumps, is it possible to do this? or > > would I have to set up a more comparable environment? > > In theory, you could set up a Linux environment > (http://www.freebsd.org/doc/en/books/handbook/linuxemu.html) with the > binaries from your RedHat system, spawn a Linux shell and go from there > as if you're on Linux, but this will almost certainly be more work than > just finding a RedHat system (or even installing one in qemu). > > That is more or less as I thought.It'll probably be easier to stay as I was, using our ESX servers for this. Thank you for your reply. -- Theres no place like ::1 Thanks, SimonB From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 12:59:04 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C2831065675 for ; Mon, 24 Nov 2008 12:59:04 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: from smtp104.prem.mail.ac4.yahoo.com (smtp104.prem.mail.ac4.yahoo.com [76.13.13.43]) by mx1.freebsd.org (Postfix) with SMTP id 19B598FC18 for ; Mon, 24 Nov 2008 12:59:03 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: (qmail 84449 invoked from network); 24 Nov 2008 12:59:03 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Received:X-YMail-OSG:X-Yahoo-Newman-Property:Date:From:To:Subject:Message-ID:In-Reply-To:References:Reply-To:Organization:X-Mailer:Face:X-Face:Mime-Version:Content-Type; b=cCbmOGW12C2ijz2QLkq+duIW/yYsWAz0gfOeCx8MLgv2ORCzrPJVjVZXNJA7qNqjwzgqGE/N/6ZrsXZ2lbGCeO/mZby4m0EKZYL4Kbg8XyXju+GgVbwZzf/UOYfpZca6/csYq6xg8uuLcyoutmXXY6almNyYSnnXe7HILfcwahs= ; Received: from unknown (HELO scorpio) (gesbbb@76.23.177.172 with login) by smtp104.prem.mail.ac4.yahoo.com with SMTP; 24 Nov 2008 12:59:03 -0000 X-YMail-OSG: eIciR48VM1nre56ej867.TFDqwg6zgiNGU7gTUhoja22IeJ_vBwNoxLyk2k7u77vcJbwNQd7G.PkJnJQTY8av1eicNolTfW.K9IZfoFbEtl.7cpS2OT6XDZOFK2Z6kJCpruQJdyDHPa18Lo.hf4TP8tcrpFdQ97vuVYCTf64tDpIblKX7TavjiAsFQ-- X-Yahoo-Newman-Property: ymail-3 Date: Mon, 24 Nov 2008 07:58:50 -0500 From: Jerry To: freebsd-questions@freebsd.org Message-ID: <20081124075850.63145a9a@scorpio> In-Reply-To: References: <235b80000811221123o37ea51fbwcdc6a3480e2c1380@mail.gmail.com> <20081123083433.7c12ad91@scorpio> Organization: seibercom.net X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd6.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/7ATQ_HQ5wxrdLbblifFJmlv"; protocol="application/pgp-signature"; micalg=PGP-SHA1 Subject: Re: Segmentation fault (core dumped) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 12:59:04 -0000 --Sig_/7ATQ_HQ5wxrdLbblifFJmlv Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Sun, 23 Nov 2008 21:33:47 +0000 Marwan Sultan wrote: > >Hello Jerry, >=20 > Its easy to fix, as they advised. > Check the file file extensions.ini which is > in /usr/local/etc/php/extensions.ini >=20 > You will see your php modules, for some reasons the loading order of > PHP modules it needs to be changed .. You can do the follow..and its > for bignners..but saves you the headech. >=20 > Comment first line with -> # > save and exit....now see the output of php -v > if the error exist (which will for the first 10 lines maybe) > repeat again for next line..and same untill you see no error of the > php -v >=20 > When you findout the modulethat cusing your problem...move it to the > top of the list of modules (top of the file) save and exit...and your > done.. please write for me back which module in your case cused the > problem.=20 > Out of experince.. SHMOP, READLINE, RECODE, SOAP, SNMP could cuuse > your problem=20 The first problem was easy to fix, I just rebuilt sqlite.so {databases/php-sqlite}; however, PHP still crashed. I discovered through trial and error that the problem was with "pspell.so". I rebuilt that port but the problem continued. I then rebuilt 'aspell' and then rebuilt the 'pspell' port and the problem disappeared. I wasted several hours getting to the bottom of this problem. There must be a better way. By the way, I though that ';' was the symbol to use to comment out a line in extensions.ini rather than '#'.=20 --=20 Jerry gesbbb@yahoo.com In Christianity, a man may have only one wife. This is called Monotony. --Sig_/7ATQ_HQ5wxrdLbblifFJmlv Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkqpRQACgkQBvaKIJWWCO0GEACfTHOtB9Kv5pyEgzw6xzty8OLQ tzYAn0lhpF2eHvjDF2rTIRKRFwgKd7kD =RHsW -----END PGP SIGNATURE----- --Sig_/7ATQ_HQ5wxrdLbblifFJmlv-- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 13:08:13 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E0A41065675 for ; Mon, 24 Nov 2008 13:08:13 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.27]) by mx1.freebsd.org (Postfix) with ESMTP id 97BE48FC23 for ; Mon, 24 Nov 2008 13:08:12 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so795374eyi.7 for ; Mon, 24 Nov 2008 05:08:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=zRKJ1q1NMUVXtqus+9XxrY3qbvURs8T4kSFWW1+11nA=; b=mRRCl3w7nvKFCNu0g/sD50y8o4g6IXods2UgIMrP+I7hQ4lDrNwlYL9AnQvLzO2dYp +MJRekW0snawnn2iaZWyF+9bJsC3VNr1rgh4BpCvRfUbcVIMGNx/PRHdrMELlVtzqHZo DcMPg2NOIENFA1oV/8xRxdFFyd4Scxgqfdaq4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=sOe/923/9QEJlva0mYnnl8qaIKZifS9w0womnc3rmmGBhQkXvaMTVEExjkxuYJm0cX GY986/4eI96zZUS4oY2NDtUuietB7Z5nhrliWE2MHELGYGVWliVCEnEWWxSa28ltTr7+ h8baygo+KO1XV01f6dEierqsp4qwHyknSthpo= Received: by 10.103.244.19 with SMTP id w19mr1058902mur.134.1227532091183; Mon, 24 Nov 2008 05:08:11 -0800 (PST) Received: by 10.103.228.17 with HTTP; Mon, 24 Nov 2008 05:08:11 -0800 (PST) Message-ID: Date: Mon, 24 Nov 2008 07:08:11 -0600 From: "Andrew Gould" To: "John Almberg" In-Reply-To: MIME-Version: 1.0 References: <8675CD0C-6DDC-4472-A3CA-B3EA3F4A43C7@sandbox.ca> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: FreeBSD Questions Mailing List , Ian Jefferson Subject: Re: FreeBSD on a Mac Mini Intel? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 13:08:13 -0000 On Sun, Nov 23, 2008 at 9:08 AM, John Almberg wrote: > On Nov 21, 2008, at 11:42 PM, Ian Jefferson wrote: > > Is anyone running FreeBSD on a Mac Mini Intel? >> >> > I don't know the answer to your question, but don't think it's a crazy one. > One of the most interesting things I've seen, lately, is a hosting company > that uses stacks of Mac Minis running OS X Server. They may not be the thing > for mission-critical services, but for day-to-day web hosting, they are far > better (IMHO) than the typical WinTel or Linux white box systems that fill > colo facilities. Need redundancy? Plunk down another $500 bucks! One of > Apple's coolest products, I think. > > -- John > Ian, You could always test it using VMWare Fusion........and then let us know ;-) With a vm, you wouldn't have to worry about Apple's hardware booting process. Andrew From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 13:47:42 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44A461065673 for ; Mon, 24 Nov 2008 13:47:42 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 7A55D8FC2E for ; Mon, 24 Nov 2008 13:47:40 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2) with ESMTP id mAODlZ0i024912; Mon, 24 Nov 2008 14:47:35 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2/Submit) with ESMTP id mAODlYhJ024909; Mon, 24 Nov 2008 14:47:35 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 24 Nov 2008 14:47:34 +0100 (CET) From: Wojciech Puchar To: "Zane C.B." In-Reply-To: <20081123170227.2f1410ad@vixen42> Message-ID: <20081124144626.N24908@wojtek.tensor.gdynia.pl> References: <20081123170227.2f1410ad@vixen42> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: odd issue with 6.4-PRERELEASE #2 and udf/cd9660 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 13:47:42 -0000 really odd. check if your /dev/cd0 actually works by dd if=/dev/cd0 bs=64k of=test.image and if dd won't fail. try then mounting image with mdconfig/mount_cd9660 On Sun, 23 Nov 2008, Zane C.B. wrote: > When ever I try try to mount any burned CD/DVD media I get the error > below. > > mount_cd9660 -v /dev/cd0 /mnt > using starting sector 0 > mount_cd9660: /dev/cd0: Input/output error > Exit 1 > > Which in dmesg results in... > > g_vfs_done():cd0[READ(offset=-2207623839744, length=2048)]error = 5 > > This is odd because if I unplug the USB CD drive and plug it into my > netbook running a old RELENG 7.0-STABLE it works. On the machine that > it errors on it has been doing this for any burned CD/DVD media in > either the DVD drive in it or on the USB one I've been testing with. > > I know the disk is good as I can mount it on other machines I've > tested it on with the same drive and different drives. > > Any one have any ideas? > From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 14:03:34 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 199EC1065673 for ; Mon, 24 Nov 2008 14:03:34 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id C549D8FC12 for ; Mon, 24 Nov 2008 14:03:33 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id 3072CFD0BF for ; Mon, 24 Nov 2008 16:03:32 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id 2EDEFFD0B9; Mon, 24 Nov 2008 16:03:32 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: X-Spam-Guessed-Language: X-Spam-Status: No, score=-4.0 required=5.0 tests=ALL_TRUSTED,BAYES_50 X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.5.3] (adsl215.uninet.ee [194.204.62.215]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id 32602FD0A5 for ; Mon, 24 Nov 2008 16:03:30 +0200 (EET) Message-ID: <492AB431.1080006@zzz.ee> Date: Mon, 24 Nov 2008 16:03:29 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.17 (X11/20081117) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <73a179920811231130k53387b55p2838f80b30fdc6cd@mail.gmail.com> In-Reply-To: <73a179920811231130k53387b55p2838f80b30fdc6cd@mail.gmail.com> Content-Type: multipart/mixed; boundary="------------060904020204040805030903" X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Transparent Proxy with IPFW + Squid 2.7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 14:03:34 -0000 This is a multi-part message in MIME format. --------------060904020204040805030903 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cagri Ersen wrote: > I want to configure a transparent proxy with IPFW and Squid. > I enabled IPFW on a FreeBSD 7.0 and also install squid 2.7 > > I am running such a setup, but with pf. Works fine. Maybe it heplps pf rule I am using: ------------------------------------------------------------------------ demo="dc0" rdr on $demo proto tcp from any to any port 80 -> 127.0.0.1 port 3128 Squid config file ------------------------------------------------------------------------ # Squid normally listens to port 3128 http_port 127.0.0.1:3128 transparent Greetings, O.K. -- Testi oma Interneti kiirust / Test Your Internet speed: http://speedtest.zzz.ee/ --------------060904020204040805030903-- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 14:19:35 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5D741065670 for ; Mon, 24 Nov 2008 14:19:35 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id 9C9CE8FC19 for ; Mon, 24 Nov 2008 14:19:35 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id 17CA4FD02B for ; Mon, 24 Nov 2008 16:19:34 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id 167ABFD029; Mon, 24 Nov 2008 16:19:34 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: X-Spam-Guessed-Language: X-Spam-Status: No, score=-4.0 required=5.0 tests=ALL_TRUSTED,BAYES_50 X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.5.3] (adsl215.uninet.ee [194.204.62.215]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id 1DBF3FD11B for ; Mon, 24 Nov 2008 16:19:32 +0200 (EET) Message-ID: <492AB7F3.8070107@zzz.ee> Date: Mon, 24 Nov 2008 16:19:31 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.17 (X11/20081117) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <73a179920811231130k53387b55p2838f80b30fdc6cd@mail.gmail.com> In-Reply-To: <73a179920811231130k53387b55p2838f80b30fdc6cd@mail.gmail.com> Content-Type: multipart/mixed; boundary="------------050808060505080109010808" X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Transparent Proxy with IPFW + Squid 2.7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 14:19:36 -0000 This is a multi-part message in MIME format. --------------050808060505080109010808 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cagri Ersen wrote: > I want to configure a transparent proxy with IPFW and Squid. > I enabled IPFW on a FreeBSD 7.0 and also install squid 2.7 > > I am running such a setup, but with pf. Works fine. Maybe it heplps pf rule I am using: ------------------------------------------------------------------------ demo="dc0" rdr on $demo proto tcp from any to any port 80 -> 127.0.0.1 port 3128 Squid config file ------------------------------------------------------------------------ # Squid normally listens to port 3128 http_port 127.0.0.1:3128 transparent Greetings, O.K. -- Testi oma Interneti kiirust / Test Your Internet speed: http://speedtest.zzz.ee/ --------------050808060505080109010808-- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 14:34:31 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44931106564A for ; Mon, 24 Nov 2008 14:34:31 +0000 (UTC) (envelope-from v.velox@vvelox.net) Received: from vulpes.vvelox.net (vulpes.vvelox.NET [74.200.198.26]) by mx1.freebsd.org (Postfix) with ESMTP id 18DBA8FC12 for ; Mon, 24 Nov 2008 14:34:30 +0000 (UTC) (envelope-from v.velox@vvelox.net) Received: from vixen42 (c-67-176-214-76.hsd1.il.comcast.net [67.176.214.76]) (Authenticated sender: v.velox) by vulpes.vvelox.net (Postfix) with ESMTP id C249FB843; Mon, 24 Nov 2008 08:40:32 -0600 (CST) Date: Mon, 24 Nov 2008 08:33:34 -0600 From: "Zane C.B." To: Wojciech Puchar Message-ID: <20081124083334.5fe4c0fb@vixen42> In-Reply-To: <20081124144626.N24908@wojtek.tensor.gdynia.pl> References: <20081123170227.2f1410ad@vixen42> <20081124144626.N24908@wojtek.tensor.gdynia.pl> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd6.3) Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/WVZx20qKnt2S92K3Zk1zbHT"; protocol="application/pgp-signature"; micalg=PGP-SHA1 Cc: freebsd-questions@freebsd.org Subject: Re: odd issue with 6.4-PRERELEASE #2 and udf/cd9660 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 14:34:31 -0000 --Sig_/WVZx20qKnt2S92K3Zk1zbHT Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Mon, 24 Nov 2008 14:47:34 +0100 (CET) Wojciech Puchar wrote: > really odd. >=20 > check if your /dev/cd0 actually works by >=20 > dd if=3D/dev/cd0 bs=3D64k of=3Dtest.image >=20 > and if dd won't fail. try then mounting image with > mdconfig/mount_cd9660 It DDs fine, but I get the same error when I try to mount it. The odd thing is is if I point tar at it, 'tar -vtf test.image', it shows me the the files contained in the image. I can also mount this disk on other FreeBSD machines. Below is some additional info one my system, if any one is curious. # kldstat=20 Id Refs Address Size Name 1 17 0xc0400000 67cf00 kernel 2 1 0xc0a7d000 15c64 geom_mirror.ko 3 2 0xc0a93000 23018 linux.ko 4 1 0xc0ab7000 14e20 snd_hda.ko 5 2 0xc0acc000 258e8 sound.ko 6 1 0xc0af2000 711b34 nvidia.ko 7 1 0xc1204000 8884 aio.ko 8 1 0xc120d000 b6e0 cpufreq.ko 9 1 0xc1219000 66318 acpi.ko 10 1 0xc7424000 e000 ipfw.ko 11 1 0xc9083000 6000 udf.ko machine i386 cpu I686_CPU ident vixen42 options SMP # Symmetric MultiProcessor Kernel # To statically compile in device wiring instead of /boot/device.hints #hints "GENERIC.hints" # Default places to look for devices. makeoptions DEBUG=3D-g # Build kernel with gdb(1) debug symbols options SCHED_4BSD # 4BSD scheduler options PREEMPTION # Enable kernel thread preemption options INET # InterNETworking options INET6 # IPv6 communications protocols options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories options MD_ROOT # MD is a potential root device options NFSCLIENT # Network Filesystem Client options NFSSERVER # Network Filesystem Server options NFSLOCKD # Network Lock Manager options NFS_ROOT # NFS usable as /, requires NFSCLIENT options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) options PSEUDOFS # Pseudo-filesystem framework options GEOM_GPT # GUID Partition Tables. options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!] options COMPAT_FREEBSD4 # Compatible with FreeBSD4 options COMPAT_FREEBSD5 # Compatible with FreeBSD5 options SCSI_DELAY=3D5000 # Delay (in ms) before probing SCSI options KTRACE # ktrace(1) support options SYSVSHM # SYSV-style shared memory options SYSVMSG # SYSV-style message queues options SYSVSEM # SYSV-style semaphores options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions options KBD_INSTALL_CDEV # install a CDEV entry in /dev options ADAPTIVE_GIANT # Giant mutex is adaptive. device apic # I/O APIC # Bus support. device eisa device pci # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives device ataraid # ATA RAID drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID # Static device numbering # SCSI peripherals device scbus # SCSI bus (required for SCSI) device ch # SCSI media changers device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) device ses # SCSI Environmental Services (and SAF-TE) # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc # AT keyboard controller device atkbd # AT keyboard device psm # PS/2 mouse device kbdmux # keyboard multiplexer device vga # VGA video card driver device splash # Splash screen and screen saver support # syscons is the default console driver, resembling an SCO console device sc # Enable this for the pcvt (VT220 compatible) console driver #device vt #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor #device agp # support several AGP chipsets # Power management support (see NOTES for more options) #device apm # Add suspend/resume support for the i8254. device pmtimer # Serial (COM) ports device sio # 8250, 16[45]50 based serial ports # Parallel port device ppc device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # If you've got a "dumb" serial or parallel PCI card that is # supported by the puc(4) glue driver, uncomment the following # line to enable it (connects to the sio and/or ppc drivers): #device puc # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device em # Intel PRO/1000 adapter Gigabit Ethernet Card device ixgb # Intel PRO/10GbE Ethernet Card device txp # 3Com 3cR990 (``Typhoon'') device vx # 3Com 3c590, 3c595 (``Vortex'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet device bfe # Broadcom BCM440x 10/100 Ethernet device bge # Broadcom BCM570xx Gigabit Ethernet device dc # DEC/Intel 21143 and various workalikes device fxp # Intel EtherExpress PRO/100B (82557, 82558) device jme # JMicron JMC250 Gigabit/JMC260 Fast Ethernet device lge # Level 1 LXT1001 gigabit Ethernet device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet device nge # NatSemi DP83820 gigabit Ethernet device nve # nVidia nForce MCP on-board Ethernet Networking device pcn # AMD Am79C97x PCI 10/100(precedence over 'lnc') device re # RealTek 8139C+/8169/8169S/8110S device rl # RealTek 8129/8139 device sf # Adaptec AIC-6915 (``Starfire'') device sis # Silicon Integrated Systems SiS 900/SiS 7016 device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet device ste # Sundance ST201 (D-Link DFE-550TX) device stge # Sundance/Tamarack TC9021 gigabit Ethernet device ti # Alteon Networks Tigon I/II gigabit Ethernet device tl # Texas Instruments ThunderLAN device tx # SMC EtherPower II (83c170 ``EPIC'') device vge # VIA VT612x gigabit Ethernet device vr # VIA Rhine, Rhine II device wb # Winbond W89C840F device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. pccard NICs included. device cs # Crystal Semiconductor CS89x0 NIC # 'device ed' requires 'device miibus' device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards device ex # Intel EtherExpress Pro/10 and Pro/10+ device ep # Etherlink III based cards device fe # Fujitsu MB8696x based cards device ie # EtherExpress 8/16, 3C507, StarLAN 10 etc. device lnc # NE2100, NE32-VL Lance Ethernet cards device sn # SMC's 9000 series of Ethernet chips device xe # Xircom pccard Ethernet # Wireless NIC cards device wlan # 802.11 support device wlan_wep # 802.11 WEP support device wlan_ccmp # 802.11 CCMP support device wlan_tkip # 802.11 TKIP support device an # Aironet 4500/4800 802.11 wireless NICs. device ath # Atheros pci/cardbus NIC's device ath_hal # Atheros HAL (Hardware Access Layer) device ath_rate_sample # SampleRate tx rate control for ath device awi # BayStack 660 and others device ral # Ralink Technology RT2500 wireless NICs. device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs. #device wl # Older non 802.11 Wavelan wireless NIC. # Pseudo devices. device loop # Network loopback device random # Entropy device device ether # Ethernet support device sl # Kernel SLIP device ppp # Kernel PPP device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device md # Memory "disks" device gif # IPv6 and IPv4 tunneling device faith # IPv6-to-IPv4 relaying (translation) # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! # Note that 'bpf' is required for DHCP. device bpf # Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device ehci # EHCI PCI->USB interface (USB 2.0) device usb # USB Bus (required) #device udbp # USB Double Bulk Pipe devices device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard #device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse device ural # Ralink Technology RT2500USB wireless NICs device urio # Diamond Rio 500 MP3 player device uscanner # Scanners # USB Ethernet, requires miibus device aue # ADMtek USB Ethernet device axe # ASIX Electronics USB Ethernet device cdce # Generic USB over Ethernet device cue # CATC USB Ethernet device kue # Kawasaki LSI USB Ethernet device rue # RealTek RTL8150 USB Ethernet # FireWire support device firewire # FireWire bus code device sbp # SCSI over FireWire (Requires scbus and da) device fwe # Ethernet over FireWire (non-standard!) --Sig_/WVZx20qKnt2S92K3Zk1zbHT Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkqu0QACgkQqrJJy0yxYQAUpgCgjCOJ2UtYQerv5yhxJ/15Szui mM4Ani+Eynz/Os+VeAt9es1ZKfcZ9ies =hCbL -----END PGP SIGNATURE----- --Sig_/WVZx20qKnt2S92K3Zk1zbHT-- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 14:43:56 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9AA41065670 for ; Mon, 24 Nov 2008 14:43:56 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from kuber.nabble.com (kuber.nabble.com [216.139.236.158]) by mx1.freebsd.org (Postfix) with ESMTP id B320C8FC14 for ; Mon, 24 Nov 2008 14:43:56 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1L4cfL-0000X2-Sm for freebsd-questions@freebsd.org; Mon, 24 Nov 2008 06:43:55 -0800 Message-ID: <20662169.post@talk.nabble.com> Date: Mon, 24 Nov 2008 06:43:55 -0800 (PST) From: hamtilla To: freebsd-questions@freebsd.org In-Reply-To: <200811230104.51537.pieter@degoeje.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: tangel@gmail.com References: <20621867.post@talk.nabble.com> <200811230104.51537.pieter@degoeje.nl> Subject: Re: RTL8168/8111 Not Being Assigned to Interface X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 14:43:56 -0000 I upgraded to 7.1-PRERELEASE and now it works. Thank you! Pieter de Goeje wrote: > > On Friday 21 November 2008, hamtilla wrote: >> I'm running 7.0-RELEASE-i386 on Jetway's NC92-N230 mainboard. The board >> has >> one integrated RTL8168/8111 gigabit NIC as well as an expansion board >> with >> three RTL8168/8111 NICs. >> >> none2@pci0:1:0:0: class=0x020000 card=0x816810ec chip=0x816810ec >> rev=0x02 hdr=0x00 >> vendor = 'Realtek Semiconductor' >> device = 'RTL8168/8111 PCI-E Gigabit Ethernet NIC' >> class = network >> subclass = ethernet > > This NIC requires FreeBSD 7-STABLE or -CURRENT. > > You can probably copy the if_re driver from -STABLE to your source tree > and > recompile the kernel, or simply update to 7-STABLE. > > Hope this helps, > > Pieter de Goeje > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > > -- View this message in context: http://www.nabble.com/RTL8168-8111-Not-Being-Assigned-to-Interface-tp20621867p20662169.html Sent from the freebsd-questions mailing list archive at Nabble.com. From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 14:53:33 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F5461065670 for ; Mon, 24 Nov 2008 14:53:33 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id BB7618FC0C for ; Mon, 24 Nov 2008 14:53:32 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id 2B873FD108 for ; Mon, 24 Nov 2008 16:53:31 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id 2A1DEFD104; Mon, 24 Nov 2008 16:53:31 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: X-Spam-Guessed-Language: X-Spam-Status: No, score=-4.0 required=5.0 tests=ALL_TRUSTED,BAYES_50 X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.5.3] (adsl215.uninet.ee [194.204.62.215]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id 22C70FD12C for ; Mon, 24 Nov 2008 16:53:29 +0200 (EET) Message-ID: <492ABFE8.8090407@zzz.ee> Date: Mon, 24 Nov 2008 16:53:28 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.17 (X11/20081117) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <73a179920811231130k53387b55p2838f80b30fdc6cd@mail.gmail.com> <492AB7F3.8070107@zzz.ee> In-Reply-To: <492AB7F3.8070107@zzz.ee> Content-Type: multipart/mixed; boundary="------------020808060709050104020207" X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Transparent Proxy with IPFW + Squid 2.7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 14:53:33 -0000 This is a multi-part message in MIME format. --------------020808060709050104020207 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Ott Köstner wrote: > Cagri Ersen wrote: > >> I want to configure a transparent proxy with IPFW and Squid. >> I enabled IPFW on a FreeBSD 7.0 and also install squid 2.7 >> > I am running such a setup, but with pf. Works fine. Maybe it helps Oh, before compiling Squid, in Squid port directory: # make config ? ?[X] SQUID_IPFW Enable transparent proxying with IPFW ? ? ? ?[X] SQUID_PF Enable transparent proxying with PF > > pf rule I am using: > ------------------------------------------------------------------------ > demo="dc0" > > rdr on $demo proto tcp from any to any port 80 -> 127.0.0.1 port 3128 > > > Squid config file > ------------------------------------------------------------------------ > # Squid normally listens to port 3128 > > http_port 127.0.0.1:3128 transparent > > > Greetings, > O.K. -- Testi oma Interneti kiirust / Test Your Internet speed: http://speedtest.zzz.ee/ --------------020808060709050104020207-- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 15:07:57 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 847CC1065670 for ; Mon, 24 Nov 2008 15:07:57 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from mail-gx0-f71.google.com (mail-gx0-f71.google.com [209.85.217.71]) by mx1.freebsd.org (Postfix) with ESMTP id 4D9878FC1C for ; Mon, 24 Nov 2008 15:07:57 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: by gxk23 with SMTP id 23so1730042gxk.11 for ; Mon, 24 Nov 2008 07:07:56 -0800 (PST) MIME-Version: 1.0 Received: by 10.90.89.18 with SMTP id m18mr1244890agb.1.1227539276697; Mon, 24 Nov 2008 07:07:56 -0800 (PST) Message-ID: <001636164ad18911ba045c70c238@google.com> Date: Mon, 24 Nov 2008 15:07:56 +0000 From: af300wsm@gmail.com To: Michael Johnson , FreeBSD Questions Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Re: Installing gimp from ports, need a GTK+, what port is it X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 15:07:57 -0000 On Nov 23, 2008 8:38pm, Michael Johnson wrote: > > > > The version of gtk you have installed is too old. Upgrade to the latest version of x11-toolkits/gtk2 > > Michael > > Interesting that the new google home page "plug-in (I guess)" for google mail doesn't have a reply-to-all button for the second response, and presumably further, to the original mail. So, I'm responding to both. Thank you Michael, that's exactly what I was looking for. I didn't know that x11-toolkits/gtk2 is synonymous with GTK+. That was the piece I was missing. To RW, I didn't want to rebuild KDE yet so that's why I hadn't updated all of the installed ports collection as yet. I think I agree with you. At least, with what I'm going through right now, it would be much easier to have updated the entire tree first. Thanks again to both. Andy From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 15:19:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A635D106564A for ; Mon, 24 Nov 2008 15:19:28 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id 85B238FC1C for ; Mon, 24 Nov 2008 15:19:28 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from 68-189-244-97.dhcp.oxfr.ma.charter.com ([68.189.244.97] helo=Gregory-Larkins-Computer.local) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L4dDh-000Itc-9P; Mon, 24 Nov 2008 10:19:26 -0500 Received: from [127.0.0.1] (fireball.entropy.prv [192.168.1.12]) by Gregory-Larkins-Computer.local (Postfix) with ESMTP id A2E4327DD838; Mon, 24 Nov 2008 10:19:24 -0500 (EST) Message-ID: <492AC5FB.4030002@FreeBSD.org> Date: Mon, 24 Nov 2008 10:19:23 -0500 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: APseudoUtopia References: <27ade5280811231602m4900af50t83daafca16f94b97@mail.gmail.com> In-Reply-To: <27ade5280811231602m4900af50t83daafca16f94b97@mail.gmail.com> X-Enigmail-Version: 0.95.7 OpenPGP: id=1C940290 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.6 (-) Cc: freebsd-questions@freebsd.org Subject: Re: PHP Session Support in /tmp X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 15:19:28 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 APseudoUtopia wrote: > Hey. > > PHP stores session data for the 'file' handler in /tmp, by default. > For organizational purposes, I'd like to change this to something like > /tmp/php_sessions/ or so. However, I have the clear_tmp_enable feature > enabled, so /tmp is cleared on reboot. PHP wont create the > php_sessions dir on it's own. > > So basically, I'm looking for a way to create the dir > /tmp/php_sessions/ each time the server is booted BEFORE apache > starts. I'm sure I could do this somehow with the rc.d scripts, but I > really have no idea how. > > Thanks very much. Hi APseudoUtopia, In addition to the other solutions offered, you can also create a simple script like this and place it in /usr/local/etc/rc.d/make_php_session_dir: - ---------- cut ---------- cut ---------- cut ---------- cut ---------- # PROVIDE: make_php_session_dir # REQUIRE: mountcritlocal # Create the PHP session file directory mkdir -p /tmp/php_sessions - ---------- cut ---------- cut ---------- cut ---------- cut ---------- By using the "REQUIRE: mountcritlocal" tag, the rcorder system invokes this script before the Apache startup script in /usr/local/etc/rc.d. I tested this on 7.0 with a standard Apache 2.2 installation from the ports tree. I hope this helps, and please post any follow-up questions you have. Best regards, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJKsX70sRouByUApARApxhAJ9IaNPLMchvKf2J4I0P85AxV+JiOgCfSv+8 Y0SwTCn3f288E+lyWL1IMgs= =pm8E -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 16:43:35 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0D161065670 for ; Mon, 24 Nov 2008 16:43:35 +0000 (UTC) (envelope-from noah@juniper.net) Received: from exprod7og104.obsmtp.com (exprod7og104.obsmtp.com [64.18.2.161]) by mx1.freebsd.org (Postfix) with ESMTP id 8BBA48FC1A for ; Mon, 24 Nov 2008 16:43:33 +0000 (UTC) (envelope-from noah@juniper.net) Received: from source ([66.129.224.36]) (using TLSv1) by exprod7ob104.postini.com ([64.18.6.12]) with SMTP ID DSNKSSrZtQbJLQW5W5Ik590HFAsB+pnk2ljX@postini.com; Mon, 24 Nov 2008 08:43:33 PST Received: from p-emfe01-sac.jnpr.net (66.129.254.72) by P-EMHUB01-HQ.jnpr.net (172.24.192.35) with Microsoft SMTP Server id 8.1.311.2; Mon, 24 Nov 2008 08:27:47 -0800 Received: from p-emlb01-sac.jnpr.net ([66.129.254.46]) by p-emfe01-sac.jnpr.net with Microsoft SMTPSVC(6.0.3790.3959); Mon, 24 Nov 2008 08:27:46 -0800 Received: from emailsmtp55.jnpr.net ([172.24.18.132]) by p-emlb01-sac.jnpr.net with Microsoft SMTPSVC(6.0.3790.3959); Mon, 24 Nov 2008 08:27:46 -0800 Received: from magenta.juniper.net ([172.17.27.123]) by emailsmtp55.jnpr.net with Microsoft SMTPSVC(6.0.3790.1830); Mon, 24 Nov 2008 08:27:46 -0800 Received: from [172.23.8.177] (sa-nc-common-177.static.jnpr.net [172.23.8.177]) by magenta.juniper.net (8.11.3/8.11.3) with ESMTP id mAOGRkM31643 for ; Mon, 24 Nov 2008 08:27:46 -0800 (PST) (envelope-from noah@juniper.net) Message-ID: <492AD602.7090206@juniper.net> Date: Mon, 24 Nov 2008 08:27:46 -0800 From: Noah Garrett Wallach User-Agent: Thunderbird 2.0.0.17 (Macintosh/20080914) MIME-Version: 1.0 To: User Questions Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 24 Nov 2008 16:27:46.0836 (UTC) FILETIME=[95BE3D40:01C94E51] Subject: Can't locate ExtUtils/MakeMaker.pm X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 16:43:36 -0000 Hi List, Okay I am unable to figure out how to get out of this loop. I try to build p5-Module-Install and the result error is Can't locate ExtUtils/MakeMaker.pm when I attempt to build p5-ExtUtils-MakeMaker I cant because the module needs ExtUtils/Install.pm here is the output and perl -V too output tail from installing p5-Module-Install Cannot load ExtUtils::MakeMaker: Can't locate ExtUtils/MakeMaker.pm in @INC (@INC contains: /usr/local/lib/perl5/site_perl/5.8.8/mach /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at (eval 1) line 1. BEGIN failed--compilation aborted at /usr/local/lib/perl5/5.8.8/BSDPAN/ExtUtils/MakeMaker.pm line 17. Compilation failed in require at ./Makefile.PL line 8. BEGIN failed--compilation aborted at ./Makefile.PL line 8. *** Error code 2 Stop in /usr/ports/devel/p5-version. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portinstall.85961.5 env make ** Fix the problem and try again. ---> Skipping 'devel/p5-Module-ScanDeps' because a requisite port 'devel/p5-version' failed (specify -k to force) ---> Skipping 'devel/p5-Module-Install' because a requisite port 'devel/p5-Module-ScanDeps' failed (specify -k to force) ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! devel/p5-Module-CoreList (unknown build error) ! devel/p5-PAR-Dist (unknown build error) ! devel/p5-Package-Constants (unknown build error) ! textproc/p5-YAML-Tiny (unknown build error) ! archivers/p5-Compress-Raw-Bzip2 (unknown build error) * archivers/p5-IO-Compress-Bzip2 ! devel/p5-version (unknown build error) * devel/p5-Module-ScanDeps * devel/p5-Module-Install output tail from installing p5-ExtUtils-MakeMaker Cannot load ExtUtils::MakeMaker: Can't locate ExtUtils/MakeMaker.pm in @INC (@INC contains: /usr/local/lib/perl5/site_perl/5.8.8/mach /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at (eval 1) line 1. BEGIN failed--compilation aborted at /usr/local/lib/perl5/5.8.8/BSDPAN/ExtUtils/MakeMaker.pm line 17. Compilation failed in require at ./Makefile.PL line 8. BEGIN failed--compilation aborted at ./Makefile.PL line 8. *** Error code 2 Stop in /usr/ports/devel/p5-version. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portinstall.80407.5 env make ** Fix the problem and try again. ---> Skipping 'devel/p5-Module-ScanDeps' because a requisite port 'devel/p5-version' failed (specify -k to force) ---> Skipping 'devel/p5-Module-Install' because a requisite port 'devel/p5-Module-ScanDeps' failed (specify -k to force) ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! devel/p5-Module-CoreList (unknown build error) ! devel/p5-PAR-Dist (unknown build error) ! devel/p5-Package-Constants (unknown build error) ! textproc/p5-YAML-Tiny (unknown build error) ! archivers/p5-Compress-Raw-Bzip2 (unknown build error) * archivers/p5-IO-Compress-Bzip2 ! devel/p5-version (unknown build error) * devel/p5-Module-ScanDeps * devel/p5-Module-Install perl -V Summary of my perl5 (revision 5 version 8 subversion 8) configuration: Platform: osname=freebsd, osvers=6.2-release-p5, archname=i386-freebsd-64int uname='freebsd hurricane.enabled.com 6.2-release-p5 freebsd 6.2-release-p5 #1: sun aug 12 14:27:32 pdt 2007 root@hurricane.enabled.com:usrobjusrsrcsyssmp i386 ' config_args='-sde -Dprefix=/usr/local -Darchlib=/usr/local/lib/perl5/5.8.8/mach -Dprivlib=/usr/local/lib/perl5/5.8.8 -Dman3dir=/usr/local/lib/perl5/5.8.8/perl/man/man3 -Dman1dir=/usr/local/man/man1 -Dsitearch=/usr/local/lib/perl5/site_perl/5.8.8/mach -Dsitelib=/usr/local/lib/perl5/site_perl/5.8.8 -Dscriptdir=/usr/local/bin -Dsiteman3dir=/usr/local/lib/perl5/5.8.8/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dcc=cc -Duseshrplib -Dccflags=-DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -Doptimize=-O2 -fno-strict-aliasing -pipe -march=pentiumpro -Ud_dosuid -Ui_gdbm -Dusethreads=n -Dusemymalloc=y -Duse64bitint' hint=recommended, useposix=true, d_sigaction=define usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef useperlio=define d_sfio=undef uselargefiles=define usesocks=undef use64bitint=define use64bitall=undef uselongdouble=undef usemymalloc=y, bincompat5005=undef Compiler: cc='cc', ccflags ='-DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include', optimize='-O2 -fno-strict-aliasing -pipe -march=pentiumpro', cppflags='-DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include' ccversion='', gccversion='3.4.6 [FreeBSD] 20060305', gccosandvers='' intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=12345678 d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12 ivtype='long long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8 alignbytes=4, prototype=define Linker and Libraries: ld='cc', ldflags =' -Wl,-E -L/usr/local/lib' libpth=/usr/lib /usr/local/lib libs=-lgdbm -lm -lcrypt -lutil perllibs=-lm -lcrypt -lutil libc=, so=so, useshrplib=true, libperl=libperl.so gnulibc_version='' Dynamic Linking: dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=' -Wl,-R/usr/local/lib/perl5/5.8.8/mach/CORE' cccdlflags='-DPIC -fPIC', lddlflags='-shared -L/usr/local/lib' Characteristics of this binary (from libperl): Compile-time options: MYMALLOC PERL_MALLOC_WRAP USE_64_BIT_INT USE_LARGE_FILES USE_PERLIO Locally applied patches: defined-or Built under freebsd Compiled at Nov 10 2007 18:50:19 @INC: /usr/local/lib/perl5/5.8.8/BSDPAN /usr/local/lib/perl5/site_perl/5.8.8/mach /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 . -- Noah Garrett Wallach Juniper Networks Consulting Engineer 1194 North Mathilda Avenue Professional Services Sunnyvale CA 94089 tel: +1-415-823-6624 fax: +1-415-431-7726 ----------------------------------------------------- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 17:00:37 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A84E7106567D for ; Mon, 24 Nov 2008 17:00:37 +0000 (UTC) (envelope-from kellymartin@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.28]) by mx1.freebsd.org (Postfix) with ESMTP id 631CC8FC20 for ; Mon, 24 Nov 2008 17:00:37 +0000 (UTC) (envelope-from kellymartin@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so855262ywe.13 for ; Mon, 24 Nov 2008 09:00:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=5BiscF4y0F2t0SaQHIosW4QTSA94FLEF/Ayh0Dmrmvk=; b=S6RAnvXpz4QM/Ba6jGFZTTUDfgkoastOYvgILg0UK/jsyUCN0oLneHTJO1wHs8l9sW 8UeW75oyMQrG46QT5Fj7FiNOFGVQqn+LQn5uV1zjkbOI4OiN36/AI2BO6RYjtFvq1Kdz OEtrZimrjmpKKilD0SZKG7s6zbsGRwVSHU3ys= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=suktIGyUdBTwrXnoj5J3GHnZImeRO7W318VuHVZ80tx8z5WTpQiTRNLC4w5UBCxIFR 7gZXsWKWIFVPt7jgpovC/XsGItQknQHTa4u1Te6Sp1+00WbTJnQLUSL9sZTi96//0MRI 809ytNDsXh87iG4VwFjMyaH5yW/XJFlAHSkLs= Received: by 10.103.224.17 with SMTP id b17mr1148545mur.61.1227546035981; Mon, 24 Nov 2008 09:00:35 -0800 (PST) Received: by 10.103.181.1 with HTTP; Mon, 24 Nov 2008 09:00:35 -0800 (PST) Message-ID: <1338880b0811240900gf75fad4t1f7105af2e92da08@mail.gmail.com> Date: Mon, 24 Nov 2008 10:00:35 -0700 From: "Kelly Martin" To: "FreeBSD Questions" In-Reply-To: <20081119040732.GC45210@ozzmosis.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1338880b0811181547s191b3170nefe5525f112bbcc2@mail.gmail.com> <20081119040732.GC45210@ozzmosis.com> Subject: Re: preparing for an upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 17:00:37 -0000 On Tue, Nov 18, 2008 at 9:07 PM, andrew clarke wrote: > On Tue 2008-11-18 16:47:20 UTC-0700, Kelly Martin (kellymartin@gmail.com) wrote: > >> With the release of FreeBSD 6.4 imminent, I'd like to prepare for an >> upgrade from FreeBSD 6.2 -> 6.4. > > Have you considered using freebsd-update? From memory, it supports 6.2. This weekend I finally got around to trying freebsd-update on 6.2. It is there and works, but it would only update me to 6.2-RELEASE-p11. It told me 6.2 was past its end-of-life date (which I already knew). There was no obvious way to upgrade to 6.3 binaries. I checked the man page and the configuration file too. Maybe the newer version of freebsd-update allows upgrades between point versions? (ie., 6.3 -> 6.4 ?) >> I'm a little confused about different versions of the ports tree. What >> I mean is, I keep updating my FreeBSD 6.2 ports tree and have never >> had any problems... it just works. I'm assuming the 6.4 ports tree is >> a little different and specific to 6.4? > > No, there is only one ports tree shared between all FreeBSD versions. > If you already have an updated ports tree with a 6.2 installation, you > can keep using that with 6.4 (or even 7.x). Thanks very much to you and others for putting me on track about how the ports tree works! kelly From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 17:05:08 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B1F91065672 for ; Mon, 24 Nov 2008 17:05:08 +0000 (UTC) (envelope-from kenneth.hatteland@kleppnett.no) Received: from asav4.lyse.net (asav4.lyse.net [81.167.36.150]) by mx1.freebsd.org (Postfix) with ESMTP id 6F9298FC08 for ; Mon, 24 Nov 2008 17:05:07 +0000 (UTC) (envelope-from kenneth.hatteland@kleppnett.no) Received: from localhost (localhost.localdomain [127.0.0.1]) by asav4.lyse.net (Postfix) with ESMTP id 0AAB16C08C for ; Mon, 24 Nov 2008 18:05:06 +0100 (CET) X-Virus-Scanned: amavisd-new at lyse.net Received: from terra.lyse.net (129.81-166-80.customer.lyse.net [81.166.80.129]) by asav4.lyse.net (Postfix) with ESMTP id 80C396C01C for ; Mon, 24 Nov 2008 18:05:04 +0100 (CET) Message-ID: <492ADEC0.5000007@kleppnett.no> Date: Mon, 24 Nov 2008 18:05:04 +0100 From: kenneth hatteland User-Agent: Thunderbird 2.0.0.17 (X11/20080929) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: souncard problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 17:05:08 -0000 kenneth hatteland wrote: > > After switching from FreeBSD 7.0 release to stable I have had a big > > soundproblem. > > When compiling a kernel as I used to with device sound and device > > snd_emu10Kx as options I now get an error saying mixer is not configured > > etc.And no sound at all. Have tried several mixers to but to no avail, > > I do not understand the problem enough to correct it. > I'm not sure I will either, but maybe won't hurt to try? > > Googling doesn`t help as no one reports the same error with audigy > > soundcards. > > If I compile a kernel without the snd_emu10kx device sound works > > partially, sometimes playing ok, and then often sounding like an alien > > attacking ( digital noise of the horrible kind) Sooner or later the > > system locks down after playing about 5 songs with normal sound forcing > > me to hard switch the system off.. I find this extremely annoying. > I think I would also. > > Does anybody have a clue ? I am not sure which output you`d want me to > > provide for this so instead of pasting every output I know I thought to > > ask first... > > I haven`t reversed my system to 7.0 release so that could maybe fix it, > > but I was hoping to stay with 7.1 :) > Ok Kevin, here we go.....this is from a kernel with only device sound enabled ( not snd_emu10kx) [kenneth@terra ~]$ dmesg Waiting (max 60 seconds) for system process `vnlru' to stop...done Waiting (max 60 seconds) for system process `bufdaemon' to stop...done Waiting (max 60 seconds) for system process `syncer' to stop... Syncing disks, vnodes remaining...3 2 2 0 0 0 done All buffers synced. Copyright (c) 1992-2008 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 is a registered trademark of The FreeBSD Foundation. FreeBSD 7.1-PRERELEASE #31: Sat Nov 22 10:18:26 CET 2008 root@terra.lyse.net:/usr/obj/usr/src/sys/TERRA Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Core(TM)2 Duo CPU E6550 @ 2.33GHz (2335.98-MHz K8-class CPU) Origin = "GenuineIntel" Id = 0x6fb Stepping = 11 Features=0xbfebfbff Features2=0xe3fd AMD Features=0x20000800 AMD Features2=0x1 Cores per package: 2 usable memory = 4285456384 (4086 MB) avail memory = 4124061696 (3933 MB) ACPI APIC Table: <041807 APIC1830> FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 acpi0: <041807 RSDT1830> on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, cff00000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: irq 16 at device 1.0 on pci0 pci1: on pcib1 vgapci0: port 0xbc00-0xbc7f mem 0xfd000000-0xfdffffff,0xd0000000-0xdfffffff,0xfa000000-0xfbffffff irq 16 at device 0.0 on pci1 uhci0: port 0xac00-0xac1f irq 16 at device 26.0 on pci0 uhci0: [GIANT-LOCKED] uhci0: [ITHREAD] usb0: on uhci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 2 ports with 2 removable, self powered uhci1: port 0xa880-0xa89f irq 21 at device 26.1 on pci0 uhci1: [GIANT-LOCKED] uhci1: [ITHREAD] usb1: on uhci1 usb1: USB revision 1.0 uhub1: on usb1 uhub1: 2 ports with 2 removable, self powered ehci0: mem 0xf9fffc00-0xf9ffffff irq 18 at device 26.7 on pci0 ehci0: [GIANT-LOCKED] ehci0: [ITHREAD] usb2: EHCI version 1.0 usb2: companion controllers, 2 ports each: usb0 usb1 usb2: on ehci0 usb2: USB revision 2.0 uhub2: on usb2 uhub2: 4 ports with 4 removable, self powered pcib2: irq 17 at device 28.0 on pci0 pci2: on pcib2 pcib3: irq 16 at device 28.1 on pci0 pci3: on pcib3 em0: port 0xcc00-0xcc1f mem 0xfe9e0000-0xfe9fffff,0xfe9c0000-0xfe9dffff irq 17 at device 0.0 on pci3 em0: Using MSI interrupt em0: [FILTER] em0: Ethernet address: 00:1b:21:05:11:fb pcib4: irq 17 at device 28.4 on pci0 pci4: on pcib4 atapci0: port 0xdc00-0xdc07,0xd880-0xd883,0xd800-0xd807,0xd480-0xd483,0xd400-0xd40f mem 0xfeaffc00-0xfeafffff irq 16 at device 0.0 on pci4 atapci0: [ITHREAD] ata2: on atapci0 ata2: [ITHREAD] ata3: on atapci0 ata3: [ITHREAD] pcib5: irq 16 at device 28.5 on pci0 pci5: on pcib5 uhci2: port 0xa800-0xa81f irq 23 at device 29.0 on pci0 uhci2: [GIANT-LOCKED] uhci2: [ITHREAD] usb3: on uhci2 usb3: USB revision 1.0 uhub3: on usb3 uhub3: 2 ports with 2 removable, self powered uhci3: port 0xa480-0xa49f irq 19 at device 29.1 on pci0 uhci3: [GIANT-LOCKED] uhci3: [ITHREAD] usb4: on uhci3 usb4: USB revision 1.0 uhub4: on usb4 uhub4: 2 ports with 2 removable, self powered uhci4: port 0xa400-0xa41f irq 18 at device 29.2 on pci0 uhci4: [GIANT-LOCKED] uhci4: [ITHREAD] usb5: on uhci4 usb5: USB revision 1.0 uhub5: on usb5 uhub5: 2 ports with 2 removable, self powered uhci5: port 0xa080-0xa09f irq 16 at device 29.3 on pci0 uhci5: [GIANT-LOCKED] uhci5: [ITHREAD] usb6: on uhci5 usb6: USB revision 1.0 uhub6: on usb6 uhub6: 2 ports with 2 removable, self powered ehci1: mem 0xf9fff800-0xf9fffbff irq 23 at device 29.7 on pci0 ehci1: [GIANT-LOCKED] ehci1: [ITHREAD] usb7: EHCI version 1.0 usb7: companion controllers, 2 ports each: usb3 usb4 usb5 usb6 usb7: on ehci1 usb7: USB revision 2.0 uhub7: on usb7 uhub7: 8 ports with 8 removable, self powered pcib6: at device 30.0 on pci0 pci6: on pcib6 pci6: at device 0.0 (no driver attached) ahc0: port 0xe800-0xe8ff mem 0xfebff000-0xfebfffff irq 17 at device 1.0 on pci6 ahc0: [ITHREAD] aic7890/91: Ultra2 Wide Channel A, SCSI Id=7, 32/253 SCBs isab0: at device 31.0 on pci0 isa0: on isab0 atapci1: port 0xa000-0xa007,0x9c00-0x9c03,0x9880-0x9887,0x9800-0x9803,0x9480-0x948f,0x9400-0x940f irq 19 at device 31.2 on pci0 atapci1: [ITHREAD] ata4: on atapci1 ata4: [ITHREAD] ata5: on atapci1 ata5: [ITHREAD] pci0: at device 31.3 (no driver attached) atapci2: port 0x9000-0x9007,0x8c00-0x8c03,0x8880-0x8887,0x8800-0x8803,0x8480-0x848f,0x8400-0x840f irq 19 at device 31.5 on pci0 atapci2: [ITHREAD] ata6: on atapci2 ata6: [ITHREAD] ata7: on atapci2 ata7: [ITHREAD] acpi_button0: on acpi0 sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio0: [FILTER] fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FILTER] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0: port 0x378-0x37f irq 7 on acpi0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppbus0: on ppc0 ppbus0: [ITHREAD] plip0: on ppbus0 plip0: WARNING: using obsoleted IFF_NEEDSGIANT flag lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 ppc0: [GIANT-LOCKED] ppc0: [ITHREAD] cpu0: on acpi0 ACPI Warning (tbutils-0243): Incorrect checksum in table [OEMB] - 98, should be 8B [20070320] est0: on cpu0 p4tcc0: on cpu0 cpu1: on acpi0 est1: on cpu1 est: CPU supports Enhanced Speedstep, but is not recognized. est: cpu_vendor GenuineIntel, msr 72a072a0600072a device_attach: est1 attach returned 6 p4tcc1: on cpu1 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounters tick every 1.000 msec ad8: 238475MB at ata4-master SATA150 acd0: DVDR at ata6-master SATA150 Waiting 5 seconds for SCSI devices to settle da1 at ahc0 bus 0 target 2 lun 0 da1: Fixed Direct Access SCSI-3 device da1: 80.000MB/s transfers (40.000MHz, offset 63, 16bit) da1: Command Queueing Enabled da1: 17366MB (35566000 512 byte sectors: 255H 63S/T 2213C) da2 at ahc0 bus 0 target 4 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 3.300MB/s transfers da2: 2014MB (4124736 512 byte sectors: 255H 63S/T 256C) da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 80.000MB/s transfers (40.000MHz, offset 63, 16bit) da0: Command Queueing Enabled da0: 69464MB (142264000 512 byte sectors: 255H 63S/T 8855C) da3 at ahc0 bus 0 target 15 lun 0 da3: Fixed Direct Access SCSI-2 device da3: 80.000MB/s transfers (40.000MHz, offset 63, 16bit) da3: Command Queueing Enabled da3: 8704MB (17826240 512 byte sectors: 255H 63S/T 1109C) SMP: AP CPU #1 Launched! cd0 at ata4 bus 0 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: 3.300MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present Trying to mount root from ufs:/dev/da1s1a fuse4bsd: version 0.3.9-pre1, FUSE ABI 7.8 sblive0: [ITHREAD] sblive0: port 0xec00-0xec3f irq 16 at device 0.0 on pci6 ums0: on uhub1 ums0: 8 buttons and Z dir. ukbd0: on uhub0 kbd2 at ukbd0 pid 4531 (bumps), uid 1001: exited on signal 11 (core dumped) pid 6771 (bumps), uid 1001: exited on signal 11 (core dumped) [kenneth@terra ~]$ ls -l /dev/dsp* /dev/mixer lrwxr-xr-x 1 root wheel 9 Nov 22 10:50 /dev/dsp -> /dev/dsp0 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp0 -> /dev/oss/sblive0/pcm0 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp1 -> /dev/oss/sblive0/pcm1 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp2 -> /dev/oss/sblive0/pcm2 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp3 -> /dev/oss/sblive0/pcm3 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp4 -> /dev/oss/sblive0/pcm4 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp5 -> /dev/oss/sblive0/pcm5 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp6 -> /dev/oss/sblive0/pcm6 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp7 -> /dev/oss/sblive0/pcm7 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp8 -> /dev/oss/sblive0/pcm8 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp9 -> /dev/oss/sblive0/pcm9 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp_ac3 -> /dev/oss/sblive0/pcm0 lrwxr-xr-x 1 root wheel 8 Nov 22 10:50 /dev/dsp_in -> /dev/dsp lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp_mmap -> /dev/oss/sblive0/pcm0 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp_multich -> /dev/oss/sblive0/pcm9 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp_out -> /dev/oss/sblive0/pcm0 crw-rw-rw- 1 root wheel 0, 117 Nov 22 10:50 /dev/mixer [kenneth@terra ~]$ From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 17:09:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58D2F1065687 for ; Mon, 24 Nov 2008 17:09:28 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id C46FD8FC14 for ; Mon, 24 Nov 2008 17:09:27 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id E2E74FD114 for ; Mon, 24 Nov 2008 19:09:26 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id E16C4FD0B2; Mon, 24 Nov 2008 19:09:26 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: *** X-Spam-Guessed-Language: X-Spam-Status: No, score=3.1 required=5.0 tests=BAYES_50,RDNS_DYNAMIC, SPF_SOFTFAIL X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.1.64] (87-119-181-26.tll.elisa.ee [87.119.181.26]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id 00D95FD025 for ; Mon, 24 Nov 2008 19:09:23 +0200 (EET) Message-ID: <492ADFBD.2070100@zzz.ee> Date: Mon, 24 Nov 2008 19:09:17 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <492AD602.7090206@juniper.net> In-Reply-To: <492AD602.7090206@juniper.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee Subject: Re: Can't locate ExtUtils/MakeMaker.pm X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 17:09:28 -0000 Noah Garrett Wallach wrote: > Hi List, > > Okay I am unable to figure out how to get out of this loop. > I try to build p5-Module-Install and the result error is Can't locate > ExtUtils/MakeMaker.pm > > when I attempt to build p5-ExtUtils-MakeMaker I cant because the > module needs ExtUtils/Install.pm > Just experimented -- looks good here. Make just completes in few seconds. Maybe this helps. This is how it shoult look like... # cd /usr/ports/devel/p5-Module-Install # make ===> Vulnerability check disabled, database not found ===> Extracting for p5-Module-Install-0.77 => MD5 Checksum OK for Module-Install-0.77.tar.gz. => SHA256 Checksum OK for Module-Install-0.77.tar.gz. ===> p5-Module-Install-0.77 depends on file: /usr/local/bin/perl5.8.8 - found ===> Patching for p5-Module-Install-0.77 ===> p5-Module-Install-0.77 depends on file: /usr/local/bin/perl5.8.8 - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/Archive/Tar.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/Module/ScanDeps.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/Module/CoreList.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/Module/Build.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/PAR/Dist.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/YAML/Tiny.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/ExtUtils/ParseXS.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/bin/perl5.8.8 - found ===> p5-Module-Install-0.77 depends on file: /usr/local/bin/perl5.8.8 - found ===> Configuring for p5-Module-Install-0.77 Checking if your kit is complete... Looks good Warning: prerequisite ExtUtils::Install 1.50 not found. We have 1.33. Warning: prerequisite File::Remove 1.40 not found. Writing Makefile for Module::Install ===> Building for p5-Module-Install-0.77 cp lib/Module/Install/Admin/Bundle.pm blib/lib/Module/Install/Admin/Bundle.pm cp lib/Module/Install/AutoInstall.pm blib/lib/Module/Install/AutoInstall.pm cp lib/Module/Install/With.pm blib/lib/Module/Install/With.pm cp lib/Module/Install/Run.pm blib/lib/Module/Install/Run.pm cp lib/Module/Install/Can.pm blib/lib/Module/Install/Can.pm cp lib/Module/Install/Admin.pm blib/lib/Module/Install/Admin.pm cp lib/Module/Install/PAR.pm blib/lib/Module/Install/PAR.pm cp lib/Module/Install/Fetch.pm blib/lib/Module/Install/Fetch.pm cp lib/Module/Install/Admin/Compiler.pm blib/lib/Module/Install/Admin/Compiler.pm cp lib/Module/Install/Admin/ScanDeps.pm blib/lib/Module/Install/Admin/ScanDeps.pm cp lib/Module/Install/Deprecated.pm blib/lib/Module/Install/Deprecated.pm cp lib/Module/Install/Admin/Find.pm blib/lib/Module/Install/Admin/Find.pm cp lib/Module/Install/Metadata.pm blib/lib/Module/Install/Metadata.pm cp lib/Module/Install/Bundle.pm blib/lib/Module/Install/Bundle.pm cp lib/Module/Install/Makefile.pm blib/lib/Module/Install/Makefile.pm cp lib/inc/Module/Install.pm blib/lib/inc/Module/Install.pm cp lib/Module/Install/Admin/WriteAll.pm blib/lib/Module/Install/Admin/WriteAll.pm cp lib/Module/Install/Compiler.pm blib/lib/Module/Install/Compiler.pm cp lib/Module/Install.pm blib/lib/Module/Install.pm cp lib/Module/Install/Include.pm blib/lib/Module/Install/Include.pm cp lib/Module/Install/WriteAll.pm blib/lib/Module/Install/WriteAll.pm cp lib/Module/AutoInstall.pm blib/lib/Module/AutoInstall.pm cp lib/Module/Install/External.pm blib/lib/Module/Install/External.pm cp lib/Module/Install/Win32.pm blib/lib/Module/Install/Win32.pm cp lib/Module/Install/Admin/Include.pm blib/lib/Module/Install/Admin/Include.pm cp lib/Module/Install/Admin/Makefile.pm blib/lib/Module/Install/Admin/Makefile.pm cp lib/Module/Install/Share.pm blib/lib/Module/Install/Share.pm cp lib/Module/Install/Admin/Manifest.pm blib/lib/Module/Install/Admin/Manifest.pm cp lib/Module/Install/Base.pm blib/lib/Module/Install/Base.pm cp lib/Module/Install/Admin/Metadata.pm blib/lib/Module/Install/Admin/Metadata.pm cp lib/Module/Install/MakeMaker.pm blib/lib/Module/Install/MakeMaker.pm cp lib/Module/Install/Inline.pm blib/lib/Module/Install/Inline.pm cp lib/Module/Install/Philosophy.pod blib/lib/Module/Install/Philosophy.pod cp lib/Module/Install.pod blib/lib/Module/Install.pod Installing blib/lib/auto/share/dist/Module-Install/dist_file.txt Manifying blib/man3/Module::Install::With.3 Manifying blib/man3/Module::Install::Bundle.3 Manifying blib/man3/Module::Install::Makefile.3 Manifying blib/man3/inc::Module::Install.3 Manifying blib/man3/Module::Install::Compiler.3 Manifying blib/man3/Module::AutoInstall.3 Manifying blib/man3/Module::Install::Can.3 Manifying blib/man3/Module::Install::Admin.3 Manifying blib/man3/Module::Install::PAR.3 Manifying blib/man3/Module::Install::External.3 Manifying blib/man3/Module::Install::Share.3 Manifying blib/man3/Module::Install::Admin::Manifest.3 Manifying blib/man3/Module::Install::Base.3 Manifying blib/man3/Module::Install::Philosophy.3 Manifying blib/man3/Module::Install::Deprecated.3 Manifying blib/man3/Module::Install.3 # make install ===> Installing for p5-Module-Install-0.77 ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/Archive/Tar.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/Module/ScanDeps.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/Module/CoreList.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/Module/Build.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/PAR/Dist.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/YAML/Tiny.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/lib/perl5/site_perl/5.8.8/ExtUtils/ParseXS.pm - found ===> p5-Module-Install-0.77 depends on file: /usr/local/bin/perl5.8.8 - found ===> Generating temporary packing list ===> Checking if devel/p5-Module-Install already installed Manifying blib/man3/Module::Install::With.3 Manifying blib/man3/Module::Install::Bundle.3 Manifying blib/man3/Module::Install::Makefile.3 Manifying blib/man3/inc::Module::Install.3 Manifying blib/man3/Module::Install::Compiler.3 Manifying blib/man3/Module::AutoInstall.3 Manifying blib/man3/Module::Install::Can.3 Manifying blib/man3/Module::Install::Admin.3 Manifying blib/man3/Module::Install::PAR.3 Manifying blib/man3/Module::Install::External.3 Manifying blib/man3/Module::Install::Share.3 Manifying blib/man3/Module::Install::Admin::Manifest.3 Manifying blib/man3/Module::Install::Base.3 Manifying blib/man3/Module::Install::Philosophy.3 Manifying blib/man3/Module::Install::Deprecated.3 Manifying blib/man3/Module::Install.3 Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/AutoInstall.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install.pod Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/AutoInstall.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/With.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Run.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Can.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Admin.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/PAR.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Fetch.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Deprecated.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Metadata.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Bundle.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Makefile.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Compiler.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Include.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/WriteAll.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/External.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Win32.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Share.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Base.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/MakeMaker.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Inline.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Philosophy.pod Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Admin/Bundle.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Admin/Compiler.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Admin/ScanDeps.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Admin/Find.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Admin/WriteAll.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Admin/Include.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Admin/Makefile.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Admin/Manifest.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Module/Install/Admin/Metadata.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/auto/share/dist/Module-Install/dist_file.txt Installing /usr/local/lib/perl5/site_perl/5.8.8/inc/Module/Install.pm Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::With.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::Bundle.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::Makefile.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/inc::Module::Install.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::Compiler.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::AutoInstall.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::Can.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::Admin.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::PAR.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::External.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::Share.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::Admin::Manifest.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::Base.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::Philosophy.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install::Deprecated.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Module::Install.3 Writing /usr/local/lib/perl5/site_perl/5.8.8/mach/auto/Module/Install/.packlist ===> Compressing manual pages for p5-Module-Install-0.77 ===> Registering installation for p5-Module-Install-0.77 From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 17:31:08 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17BC5106564A for ; Mon, 24 Nov 2008 17:31:08 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail3.sea5.speakeasy.net (mail3.sea5.speakeasy.net [69.17.117.5]) by mx1.freebsd.org (Postfix) with ESMTP id E7B5C8FC16 for ; Mon, 24 Nov 2008 17:31:07 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 6843 invoked from network); 24 Nov 2008 17:31:07 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail3.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 24 Nov 2008 17:31:07 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id A29EA50863; Mon, 24 Nov 2008 12:31:05 -0500 (EST) To: "fire jotawski" References: <4463n0j3xu.fsf@be-well.ilk.org> From: Lowell Gilbert Date: Mon, 24 Nov 2008 12:31:05 -0500 In-Reply-To: (fire jotawski's message of "Sun\, 23 Nov 2008 14\:55\:17 +0700") Message-ID: <44prkljajq.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: cvsup: local X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 17:31:08 -0000 "fire jotawski" writes: > On Thu, Nov 6, 2008 at 9:59 PM, Lowell Gilbert < > freebsd-questions-local@be-well.ilk.org> wrote: > >> "fire jotawski" writes: >> >> > i have my small box, 10.3.1.25 ip, that cvsup-ed files from repository >> into >> > it. it use cvs-supfile in /usr/share/examples/cvsup/ to collect files. >> > now that i want my other machine to cvsup 6.2-release source files from >> the >> > one mentioned above. >> > >> > my trial was >> > >> > cvsupd -b /var/db -c sup >> > >> > for box, 10.3.1.25 ip, and for other machine >> > >> > cvsup -g -L 2 -h 10.3.1.25 sup-file >> > >> > what i got was 'Server message: Unknown collection "src-all" ' message. >> > and later on >> > >> > Running >> > Skipping collection src-all/cvs >> > Skipping collection doc-all/cvs >> > Shutting down connection to server >> > Finished successfully >> > >> > very strange indeed. >> > >> > any helps and hints in setting cvsup server would highly be appreciated. >> >> To run cvsupd, you need the whole cvs tree for the collections you're >> handling, not just the checked-out files. >> >> Assuming these machines are attached by a protected network, a better >> approach (easier, anyway) would probably be to cvsup the changes to >> just one machine, then NFS-mount that machine's ports tree from the >> other machine. >> >> -- >> Lowell Gilbert, embedded/networking software engineer, Boston area >> http://be-well.ilk.org/~lowell/ >> > > > thanks indeed and apologized me for postponing answer to all of postings. > what about cvs then. i did this > > cvs -d /home/ncvs checkout ports > > and i got some thing quite similar to ports tree indeed. What did you think that command was going to do? Do you have a full cvs ports tree under /home/ncvs? How did you get that? My understanding was that you wanted to put the ports tree on one machine (call it the "master"), then use it to install ports on other machines that are local to the master. The way to do that would be to use cvsup as normal on the master, and build all the ports there. Then you can use NFS to mount /usr/ports on the other machines, and install the ports on them as well. To speed things up, you can set WRKDIRPREFIX to point at local disk space on the client machines. You can even have the master machine build packages, avoiding the need to build the ports from source on the clients. Does that make sense to you? Do you need it described in more detail? Good luck. -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 17:36:30 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 307A41065670 for ; Mon, 24 Nov 2008 17:36:30 +0000 (UTC) (envelope-from dan-freebsd-questions@ourbrains.org) Received: from ourbrains.org (li48-221.members.linode.com [66.246.76.221]) by mx1.freebsd.org (Postfix) with SMTP id C08FD8FC1D for ; Mon, 24 Nov 2008 17:36:29 +0000 (UTC) (envelope-from dan-freebsd-questions@ourbrains.org) Received: (qmail 941 invoked by uid 1000); 24 Nov 2008 17:36:50 -0000 Date: Mon, 24 Nov 2008 12:36:50 -0500 From: Dan To: freebsd-questions@freebsd.org Message-ID: <20081124173650.GA933@ourbrains.org> Mail-Followup-To: freebsd-questions@freebsd.org References: <26face530811221316y5be5bf40ra5c38f389f554ca1@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <26face530811221316y5be5bf40ra5c38f389f554ca1@mail.gmail.com> User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Re: Unix program that sends email directly using MX record X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 17:36:30 -0000 Kelly Jones(kelly.terry.jones@gmail.com)@2008.11.22 14:16:56 -0700: > What Unix program sends email directly, using the MX record of the > recipient, instead of using sendmail or an installed MTA? Sendmail/Sendwhale sucks for just about anything. There are much better MTAs out there. For your needs, I think 'nullmailer' from Bruce Guenter would fit the bill and so would qmail in nullmailer mode. Postfix as well. From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 17:47:52 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 355DD1065867 for ; Mon, 24 Nov 2008 17:47:52 +0000 (UTC) (envelope-from julesg@stockpredictions.com) Received: from mx253o.mysite4now.com (mx253o.mysite4now.com [216.10.248.253]) by mx1.freebsd.org (Postfix) with ESMTP id 05AE78FC1A for ; Mon, 24 Nov 2008 17:47:51 +0000 (UTC) (envelope-from julesg@stockpredictions.com) MIME-Version: 1.0 Date: Mon, 24 Nov 2008 09:32:34 -0800 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable From: julesg@stockpredictions.com To: freebsd-questions@freebsd.org Message-ID: Subject: please resend your mesg to jules.stocks@gmail.com X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: julesg@stockpredictions.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 17:47:52 -0000 Unfortunately the available space at julesg@stockpredictions.com is insuffi= cient; I keep running out.=0D=0A=0D=0ASo, please use:=0D=0A=0D=0Ajules.sto= cks@gmail.com=0D=0A=0D=0A From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 17:59:57 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FAB7106567E for ; Mon, 24 Nov 2008 17:59:57 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id 207DE8FC32 for ; Mon, 24 Nov 2008 17:59:56 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from 68-189-244-97.dhcp.oxfr.ma.charter.com ([68.189.244.97] helo=Gregory-Larkins-Computer.local) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L4fiI-000KFq-4p; Mon, 24 Nov 2008 12:59:11 -0500 Received: from [127.0.0.1] (fireball.entropy.prv [192.168.1.12]) by Gregory-Larkins-Computer.local (Postfix) with ESMTP id 13B3227DEBF3; Mon, 24 Nov 2008 12:59:08 -0500 (EST) Message-ID: <492AEB6B.20203@FreeBSD.org> Date: Mon, 24 Nov 2008 12:59:07 -0500 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Noah Garrett Wallach References: <492AD602.7090206@juniper.net> In-Reply-To: <492AD602.7090206@juniper.net> X-Enigmail-Version: 0.95.7 OpenPGP: id=1C940290 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.6 (-) Cc: User Questions Subject: Re: Can't locate ExtUtils/MakeMaker.pm X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 17:59:57 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Noah Garrett Wallach wrote: > Hi List, > > Okay I am unable to figure out how to get out of this loop. > I try to build p5-Module-Install and the result error is Can't locate > ExtUtils/MakeMaker.pm > > when I attempt to build p5-ExtUtils-MakeMaker I cant because the module > needs ExtUtils/Install.pm > > > here is the output and perl -V too > > output tail from installing p5-Module-Install > > Cannot load ExtUtils::MakeMaker: Can't locate ExtUtils/MakeMaker.pm in > @INC (@INC contains: /usr/local/lib/perl5/site_perl/5.8.8/mach > /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl > /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at (eval > 1) line 1. > BEGIN failed--compilation aborted at > /usr/local/lib/perl5/5.8.8/BSDPAN/ExtUtils/MakeMaker.pm line 17. > Compilation failed in require at ./Makefile.PL line 8. > BEGIN failed--compilation aborted at ./Makefile.PL line 8. > *** Error code 2 > [...] Hi Noah, What is the output of the following command on your system? find /usr/local/lib/perl5 -name MakeMaker.pm -print Regards, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJKutq0sRouByUApARAjENAKCplSrXpMfxJlPq4nKseIWILBx0FQCgp9V0 ntwXUoNetw8KVHzIH/N+ZM0= =5yV6 -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 18:17:43 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD1A21065672 for ; Mon, 24 Nov 2008 18:17:43 +0000 (UTC) (envelope-from Albert.Shih@obspm.fr) Received: from blade2-ext.obspm.fr (blade2-ext.obspm.fr [145.238.186.8]) by mx1.freebsd.org (Postfix) with ESMTP id 60EED8FC1E for ; Mon, 24 Nov 2008 18:17:43 +0000 (UTC) (envelope-from Albert.Shih@obspm.fr) Received: from obspm.fr (pcjas.obspm.fr [145.238.184.233]) by blade2-ext.obspm.fr (8.13.8/8.13.8/SIO Observatoire de Paris - 15/11/07) with ESMTP id mAOIHf2e008106 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Mon, 24 Nov 2008 19:17:42 +0100 Date: Mon, 24 Nov 2008 19:17:41 +0100 From: Albert Shih To: freebsd-questions@freebsd.org Message-ID: <20081124181741.GA36387@obspm.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0 (blade2-ext.obspm.fr [145.238.186.20]); Mon, 24 Nov 2008 19:17:42 +0100 (CET) X-Virus-Scanned: ClamAV 0.94.1/8672/Mon Nov 24 17:52:19 2008 on blade2-ext.obspm.fr X-Virus-Status: Clean Subject: csup update X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Albert.Shih@obspm.fr List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 18:17:44 -0000 Hi all I make update my /usr/src using csup. But they are one directory I don't want update. (it's because i'm using a current version sound drivers). How can I do that ? Regards. -- Albert SHIH SIO batiment 15 Observatoire de Paris Meudon 5 Place Jules Janssen 92195 Meudon Cedex Heure local/Local time: Lun 24 nov 2008 19:16:22 CET From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 18:19:11 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D42A106564A for ; Mon, 24 Nov 2008 18:19:11 +0000 (UTC) (envelope-from xotazu@cvc.uab.es) Received: from damascus.uab.es (damascus.uab.es [158.109.168.135]) by mx1.freebsd.org (Postfix) with ESMTP id 499D48FC1D for ; Mon, 24 Nov 2008 18:19:11 +0000 (UTC) (envelope-from xotazu@cvc.uab.es) Received: from damascus.uab.es ([127.0.0.1]) by damascus.uab.es (Sun Java System Messaging Server 6.1 HotFix 0.10 (built Jan 6 2005)) with ESMTP id <0KAU0043RLF2D870@damascus.uab.es> for freebsd-questions@freebsd.org; Mon, 24 Nov 2008 18:18:38 +0100 (CET) Received: from cvc.uab.es ([158.109.4.2]) by damascus.uab.es (Sun Java System Messaging Server 6.1 HotFix 0.10 (built Jan 6 2005)) with SMTP id <0KAU00H71LF23G70@damascus.uab.es> for freebsd-questions@freebsd.org; Mon, 24 Nov 2008 18:18:38 +0100 (CET) Received: from cvc131.uab.es by cvc.uab.es (SMI-8.6/SMI-SVR4) id SAA02545; Mon, 24 Nov 2008 18:12:59 +0100 Date: Mon, 24 Nov 2008 18:19:23 +0100 From: Xavier Otazu In-reply-to: <20081121120023.D64301065720@hub.freebsd.org> To: freebsd-questions@freebsd.org Message-id: <20081124181923.25e8c7db@cvc131.uab.es> Organization: CVC MIME-version: 1.0 X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20081121120023.D64301065720@hub.freebsd.org> Subject: gcc cross-compiler for linux X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 18:19:11 -0000 Hello, I would like to compile a C++ code to be executed within the linux emulator. I tried to install the cross-gcc port, but when building I always receive the same compilation error related to gthreads. I use the following options when compiling the cross-gcc port: make TGTARCH=i386 TGTABI=linux install clean I also tried several combinations like "i386-pc" and "linux-gnu". When building, I get the following error message: /usr/ports/devel/cross-gcc/work/gcc-4.2.3/host-i386-portbld-freebsd7.1/gcc/xgcc -B/usr/ports/devel/cross-gcc/work/gcc-4.2.3/host-i386-portbld-freebsd7.1/gcc/ -B/usr/local/i386-linux/bin/ -B/usr/local/i386-linux/lib/ -isystem /usr/ports/devel/cross-gcc/work/gcc-4.2.3/host-i386-portbld-freebsd7.1/gcc -isystem /usr/local/i386-linux/include -isystem /usr/local/i386-linux/sys-include -O2 -O2 -O2 -fno-strict-aliasing -pipe -DIN_GCC -DCROSS_COMPILE -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I../.././gcc -I../.././gcc/. -I../.././gcc/../include -I../.././gcc/../libcpp/include -I../.././gcc/../libdecnumber -I../libdecnumber -fexceptions -c ../.././gcc/unwind-dw2.c -o libgcc/./unwind-dw2.o In file included from /usr/ports/devel/cross-gcc/work/gcc-4.2.3/host-i386-portbld-freebsd7.1/gcc/gthr-default.h:1, from ../.././gcc/gthr.h:114, from ../.././gcc/unwind-dw2.c:42: ../.././gcc/gthr-posix.h:43:21: error: pthread.h: No such file or directory ../.././gcc/gthr-posix.h:44:20: error: unistd.h: No such file or directory In file included from /usr/ports/devel/cross-gcc/work/gcc-4.2.3/host-i386-portbld-freebsd7.1/gcc/gthr-default.h:1, from ../.././gcc/gthr.h:114, from ../.././gcc/unwind-dw2.c:42: ../.././gcc/gthr-posix.h:46: error: expected '=', ',', ';', 'asm' or '__attribute__' before '__gthread_key_t' ../.././gcc/gthr-posix.h:47: error: expected '=', ',', ';', 'asm' or '__attribute__' before '__gthread_once_t' ../.././gcc/gthr-posix.h:48: error: expected '=', ',', ';', 'asm' or '__attribute__' before '__gthread_mutex_t' ../.././gcc/gthr-posix.h:49: error: expected '=', ',', ';', 'asm' or '__attribute__' before '__gthread_recursive_mutex_t' ../.././gcc/gthr-posix.h:92: error: 'pthread_once' undeclared here (not in a function) ../.././gcc/gthr-posix.h:93: error: 'pthread_getspecific' undeclared here (not in a function) Thank you in advance Xavier From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 18:23:46 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9050F1065670 for ; Mon, 24 Nov 2008 18:23:46 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id 71BFC8FC1B for ; Mon, 24 Nov 2008 18:23:46 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from 68-189-244-97.dhcp.oxfr.ma.charter.com ([68.189.244.97] helo=Gregory-Larkins-Computer.local) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L4g64-000KW0-Ej; Mon, 24 Nov 2008 13:23:45 -0500 Received: from [127.0.0.1] (fireball.entropy.prv [192.168.1.12]) by Gregory-Larkins-Computer.local (Postfix) with ESMTP id D37BA27DEF06; Mon, 24 Nov 2008 13:23:43 -0500 (EST) Message-ID: <492AF12E.2080103@FreeBSD.org> Date: Mon, 24 Nov 2008 13:23:42 -0500 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Albert.Shih@obspm.fr References: <20081124181741.GA36387@obspm.fr> In-Reply-To: <20081124181741.GA36387@obspm.fr> X-Enigmail-Version: 0.95.7 OpenPGP: id=1C940290 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.6 (-) Cc: freebsd-questions@freebsd.org Subject: Re: csup update X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 18:23:46 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Albert Shih wrote: > Hi all > > I make update my /usr/src using csup. > > But they are one directory I don't want update. (it's because i'm using a > current version sound drivers). > > How can I do that ? > > Regards. > > Hi Albert, Check out this page: http://www.freebsd.org/cgi/man.cgi?query=csup&sourceid=opensearch Scroll down to the section named "REFUSE FILES," and you will find your answer in there. Best regards, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJKvEu0sRouByUApARAkYtAJ4hOY6VLjVGRRzSrdF5ldFa4CCWEgCgmQta zedoDPsLrfLQW3ChEWh5FZY= =KjQI -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 18:26:24 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56B54106564A; Mon, 24 Nov 2008 18:26:24 +0000 (UTC) (envelope-from admin2@enabled.com) Received: from typhoon.enabled.com (typhoon.enabled.com [216.218.220.21]) by mx1.freebsd.org (Postfix) with ESMTP id 4632E8FC0A; Mon, 24 Nov 2008 18:26:24 +0000 (UTC) (envelope-from admin2@enabled.com) Received: from [172.23.8.177] (nat-service4.juniper.net [66.129.225.151]) (authenticated bits=0) by typhoon.enabled.com (8.14.3/8.14.3) with ESMTP id mAOIBSCP008127 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 24 Nov 2008 10:11:29 -0800 (PST) (envelope-from admin2@enabled.com) Message-ID: <492AEE4B.10504@enabled.com> Date: Mon, 24 Nov 2008 10:11:23 -0800 From: Noah User-Agent: Thunderbird 2.0.0.17 (Macintosh/20080914) MIME-Version: 1.0 To: glarkin@FreeBSD.org References: <492AD602.7090206@juniper.net> <492AEB6B.20203@FreeBSD.org> In-Reply-To: <492AEB6B.20203@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: User Questions Subject: Re: Can't locate ExtUtils/MakeMaker.pm X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 18:26:24 -0000 Greg Larkin wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Noah Garrett Wallach wrote: >> Hi List, >> >> Okay I am unable to figure out how to get out of this loop. >> I try to build p5-Module-Install and the result error is Can't locate >> ExtUtils/MakeMaker.pm >> >> when I attempt to build p5-ExtUtils-MakeMaker I cant because the module >> needs ExtUtils/Install.pm >> >> >> here is the output and perl -V too >> >> output tail from installing p5-Module-Install >> >> Cannot load ExtUtils::MakeMaker: Can't locate ExtUtils/MakeMaker.pm in >> @INC (@INC contains: /usr/local/lib/perl5/site_perl/5.8.8/mach >> /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl >> /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at (eval >> 1) line 1. >> BEGIN failed--compilation aborted at >> /usr/local/lib/perl5/5.8.8/BSDPAN/ExtUtils/MakeMaker.pm line 17. >> Compilation failed in require at ./Makefile.PL line 8. >> BEGIN failed--compilation aborted at ./Makefile.PL line 8. >> *** Error code 2 >> > [...] > > Hi Noah, > > What is the output of the following command on your system? > > find /usr/local/lib/perl5 -name MakeMaker.pm -print > > Regards, > Greg sure sudo find /usr/local/lib/perl5 -name MakeMaker.pm -print [~] Password: /usr/local/lib/perl5/5.8.8/BSDPAN/ExtUtils/MakeMaker.pm From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 18:32:34 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64A361065672 for ; Mon, 24 Nov 2008 18:32:34 +0000 (UTC) (envelope-from canito@dalan.us) Received: from netbits.us (ptr-89.fastconcepts.net [209.18.107.89]) by mx1.freebsd.org (Postfix) with SMTP id 203D98FC13 for ; Mon, 24 Nov 2008 18:32:33 +0000 (UTC) (envelope-from canito@dalan.us) Received: (qmail 8706 invoked by uid 65534); 24 Nov 2008 18:05:52 -0000 Received: from 206.55.176.26 ([206.55.176.26]) by mail.dalan.us (Horde MIME library) with HTTP; Mon, 24 Nov 2008 12:05:52 -0600 Message-ID: <20081124120552.5l2vjjzjxpgkw04k@mail.dalan.us> Date: Mon, 24 Nov 2008 12:05:52 -0600 From: David Alanis To: freebsd-questions@freebsd.org References: <20081121060619.GA1057@gmail.com> In-Reply-To: <20081121060619.GA1057@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.4) Subject: Syslog Suggestion - Help! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 18:32:34 -0000 Good Day, A few days ago, I put freebsd on a Netra X1 to serve as our primary =20 log host for our network devices, primarily to log for our CISCO ASA =20 firewall. Once I configured syslog to capture remotely, I realized that syslog =20 by default logs local information to /var/log/messages via: *.err =20 *.info amongst others, causing duplicate firewall logs in =20 /var/log/messages and in /var/log/firewall/logs My syslog: http://www.dalan.us/download/log From what I understand, in syslog.conf I can specify a process id (or =20 string? (e.g. ftpd) and give it an action? Thus, redirect messages =20 sent to the wrong facility and logged in the proper place, as in my =20 example given below: !ftpd ftpd.err /var/log/ftp/1.log ftpd.info /var/log/ftp/2.log I fired up tcpdump and saw the following: 09:47:28.413584 IP 192.168.1.1.syslog > 192.168.1.42.syslog: SYSLOG =20 local7.info, length: 154 09:47:28.413596 IP 192.168.1.1.syslog > 192.168.1.42.syslog: SYSLOG =20 local7.info, length: 155 09:47:28.415157 IP 192.168.1.1.syslog > 192.168.1.42.syslog: SYSLOG =20 local7.info, length: 134 09:47:28.415166 IP 192.168.1.1.syslog > 192.168.1.42.syslog: SYSLOG =20 local7.info, length: 178 So the big question is, what best method can I employ to stop syslog =20 from duplicating these messages? Can I use SYSLOG as a string? !SYSLOG local7.err /var/log/firewall/log local7.info /var/log/firewall/1.log Alternative? +firewall local7.err /var/log/firewall/log local7.info /var/log/firewall/1.log Lastly, I quickly reviewed syslog-ng, but I really want to keep this =20 as simple as possible so no. Thanks much for your help! David ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program. From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 18:41:30 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9BEB1065673 for ; Mon, 24 Nov 2008 18:41:30 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id A99188FC0A for ; Mon, 24 Nov 2008 18:41:30 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from 68-189-244-97.dhcp.oxfr.ma.charter.com ([68.189.244.97] helo=Gregory-Larkins-Computer.local) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L4gNE-000KgR-KA; Mon, 24 Nov 2008 13:41:29 -0500 Received: from [127.0.0.1] (fireball.entropy.prv [192.168.1.12]) by Gregory-Larkins-Computer.local (Postfix) with ESMTP id 4CC4927DF11B; Mon, 24 Nov 2008 13:41:28 -0500 (EST) Message-ID: <492AF556.5070304@FreeBSD.org> Date: Mon, 24 Nov 2008 13:41:26 -0500 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Noah References: <492AD602.7090206@juniper.net> <492AEB6B.20203@FreeBSD.org> <492AEE4B.10504@enabled.com> In-Reply-To: <492AEE4B.10504@enabled.com> X-Enigmail-Version: 0.95.7 OpenPGP: id=1C940290 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.6 (-) Cc: User Questions Subject: Re: Can't locate ExtUtils/MakeMaker.pm X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 18:41:30 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Noah wrote: > > > Greg Larkin wrote: >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> Noah Garrett Wallach wrote: >>> Hi List, >>> >>> Okay I am unable to figure out how to get out of this loop. >>> I try to build p5-Module-Install and the result error is Can't locate >>> ExtUtils/MakeMaker.pm >>> >>> when I attempt to build p5-ExtUtils-MakeMaker I cant because the module >>> needs ExtUtils/Install.pm >>> >>> >>> here is the output and perl -V too >>> >>> output tail from installing p5-Module-Install >>> >>> Cannot load ExtUtils::MakeMaker: Can't locate ExtUtils/MakeMaker.pm in >>> @INC (@INC contains: /usr/local/lib/perl5/site_perl/5.8.8/mach >>> /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl >>> /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at (eval >>> 1) line 1. >>> BEGIN failed--compilation aborted at >>> /usr/local/lib/perl5/5.8.8/BSDPAN/ExtUtils/MakeMaker.pm line 17. >>> Compilation failed in require at ./Makefile.PL line 8. >>> BEGIN failed--compilation aborted at ./Makefile.PL line 8. >>> *** Error code 2 >>> >> [...] >> >> Hi Noah, >> >> What is the output of the following command on your system? >> >> find /usr/local/lib/perl5 -name MakeMaker.pm -print >> >> Regards, >> Greg > sure > > > sudo find /usr/local/lib/perl5 -name MakeMaker.pm -print [~] > Password: > /usr/local/lib/perl5/5.8.8/BSDPAN/ExtUtils/MakeMaker.pm > Hi Noah, When I run the same command, I get 2 lines of output: /usr/local/lib/perl5/5.8.8/ExtUtils/MakeMaker.pm /usr/local/lib/perl5/5.8.8/BSDPAN/ExtUtils/MakeMaker.pm The BSDPAN/ExtUtils/MakeMaker.pm file provides one overridden subroutine, but the rest of the subroutines are loaded from the standard ExtUtils/MakeMaker.pm. If that file is missing, then it's likely that your Perl installation is corrupted. Did you ever run a file utility that removes duplicate files in a directory tree? The files are not identical in content, but if the utility removed based on name only, that could explain why one is missing. Hope that helps, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJKvVW0sRouByUApARAjmnAJ9grg5P1xGhlJLJEMnYGTNODKRNXwCeLzEQ MKP7f1xwlN7yqvBn2EbdjQ0= =U7jq -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 18:41:42 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0C8F1065716 for ; Mon, 24 Nov 2008 18:41:42 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.180]) by mx1.freebsd.org (Postfix) with ESMTP id 702738FC1D for ; Mon, 24 Nov 2008 18:41:42 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: by wa-out-1112.google.com with SMTP id m34so1100501wag.27 for ; Mon, 24 Nov 2008 10:41:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding:sender; bh=Q2pR0jW9LCxm+cBSBTHyM+lSSMOJz7VmCs9I0SRCtEc=; b=kIGOdam5AaAuOAcWaM6OCZ5eu0ZhgegovmZThbkT9qsEOANjJ4qOwdbsGmLfKZMFqy lsccK8miAB7UIYHHRl3JRfjiuWtwrJCRnFmsTpTje+KqU7YTUPnzYNF1sPC8Qh0PhoRW 0zXGMBMEqK8HVeVHI/1A83b8OXmRLIJoijxLI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding :sender; b=K3BhyHwDGW0TaD/82SdQ7S5xuX2LcTX6TSEpSXVBDkG7s4GFmUGhhp6xayHyWbfsDg 5hzjwvor7S//i6vTgDD2ck+BBRPznSSxm+QY2nHjK+28kRwGrODLV7RMWtXbLYEl9SUP H951PpPPl+ICnKMzLK0WXsxA8ReutlS1oz1Vg= Received: by 10.115.47.1 with SMTP id z1mr2051081waj.133.1227552102221; Mon, 24 Nov 2008 10:41:42 -0800 (PST) Received: from ?192.168.1.65? (adsl-76-238-148-150.dsl.irvnca.sbcglobal.net [76.238.148.150]) by mx.google.com with ESMTPS id m29sm8864271poh.15.2008.11.24.10.41.40 (version=SSLv3 cipher=RC4-MD5); Mon, 24 Nov 2008 10:41:40 -0800 (PST) Message-ID: <492AF564.5050605@chrismaness.com> Date: Mon, 24 Nov 2008 10:41:40 -0800 From: Chris Maness User-Agent: Thunderbird 2.0.0.17 (X11/20080925) MIME-Version: 1.0 To: Jeremy Chadwick References: <20081112100640.GA21560@icarus.home.lan> In-Reply-To: <20081112100640.GA21560@icarus.home.lan> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: Chris Maness Cc: freebsd-questions@FreeBSD.org Subject: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 18:41:42 -0000 Since a Xeon Quad Core is a 64bit processor, would it work ok with FreeBSD? Or would the adm64 release be better for that chip? Thanks, Chris Maness From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 18:48:12 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C78C1065676 for ; Mon, 24 Nov 2008 18:48:12 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by mx1.freebsd.org (Postfix) with ESMTP id BD69F8FC08 for ; Mon, 24 Nov 2008 18:48:11 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so1059142nfh.33 for ; Mon, 24 Nov 2008 10:48:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=iBAsLz8wyE0ENbl4LZdoRTiRFKYBABnKwMXyh30ha8g=; b=d8YjQ0GN6ZYHcKu09vqoSvufxIMeykQ2/uE/wUSEHGYFgS6MYQz+a/JJX975xFmzSn Q0xs+drVndvpex/Qh8+1sfYoIcrbSUw0M8b2UU2H7bwYz7aBVZ0daZM41idrmjP0Mm28 WZKk5L2q817vYe5LjK6/jw8mnN9px6W6mQ4tE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=Z3HKGdhcXqaor3TE7wPxSpbcgpUTovgwOgZs1ZgqZQEi6/0cT2dutdH3pD4feKQRMa aqgi/Jl3qyvyUACCle0t152HTqzrQJeVL7K8ILPzBPfcW/LI/3RFzxbrpl/ZRjFYDa3O miVzF5LYM6q8QwlBpCPNRvEvWHCK/yGTpmugY= Received: by 10.210.128.5 with SMTP id a5mr3884061ebd.119.1227552490545; Mon, 24 Nov 2008 10:48:10 -0800 (PST) Received: by 10.210.117.7 with HTTP; Mon, 24 Nov 2008 10:48:10 -0800 (PST) Message-ID: <139b44430811241048r18bbeb1eq63412b0efaf77acc@mail.gmail.com> Date: Mon, 24 Nov 2008 20:48:10 +0200 From: "Valentin Bud" To: "Chris Maness" In-Reply-To: <492AF564.5050605@chrismaness.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> Cc: Jeremy Chadwick , freebsd-questions@freebsd.org Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 18:48:12 -0000 On Mon, Nov 24, 2008 at 8:41 PM, Chris Maness wrote: > Since a Xeon Quad Core is a 64bit processor, would it work ok with FreeBSD? > Or would the adm64 release be better for that chip? Hello Chris, I had a server with an Intel Xeon Quad Core CPU that was running FBSD 7.0 since the day 7.0 was released ( i386 ). Never had a problem with it. Yesterday i moved the server on FBSD 7.0 amd64 to use ZFS. Until now it works like a charm. a nice day, v > > Thanks, > Chris Maness > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 18:55:09 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E6E2106567A for ; Mon, 24 Nov 2008 18:55:09 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id 2EAB98FC16 for ; Mon, 24 Nov 2008 18:55:05 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id 15B83FD164 for ; Mon, 24 Nov 2008 20:55:05 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id 1446EFD163; Mon, 24 Nov 2008 20:55:05 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: ** X-Spam-Guessed-Language: X-Spam-Status: No, score=2.3 required=5.0 tests=BAYES_40,RDNS_DYNAMIC, SPF_SOFTFAIL X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.1.64] (87-119-181-26.tll.elisa.ee [87.119.181.26]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id 0E0A8FD114 for ; Mon, 24 Nov 2008 20:55:03 +0200 (EET) Message-ID: <492AF880.7000609@zzz.ee> Date: Mon, 24 Nov 2008 20:54:56 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> In-Reply-To: <492AF564.5050605@chrismaness.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 18:55:09 -0000 Chris Maness wrote: > Since a Xeon Quad Core is a 64bit processor, would it work ok with > FreeBSD? Or would the adm64 release be better for that chip? I would recommend using amd64 FreeBSD port in this case. Some applications are significantly faster in 64 bit mode than in 32 bit mode. Personally, I am useing amd64 FreeBSD on several Intel machines. Very good indeed. Greetings, O.K. From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 19:03:56 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 127DE1065672 for ; Mon, 24 Nov 2008 19:03:56 +0000 (UTC) (envelope-from wmoran@potentialtech.com) Received: from mail.potentialtech.com (internet.potentialtech.com [66.167.251.6]) by mx1.freebsd.org (Postfix) with ESMTP id DEE4C8FC08 for ; Mon, 24 Nov 2008 19:03:55 +0000 (UTC) (envelope-from wmoran@potentialtech.com) Received: from vanquish.ws.pitbpa0.priv.collaborativefusion.com (pr40.pitbpa0.pub.collaborativefusion.com [206.210.89.202]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.potentialtech.com (Postfix) with ESMTPSA id CDF5CEBC3F for ; Mon, 24 Nov 2008 14:03:54 -0500 (EST) Date: Mon, 24 Nov 2008 14:03:54 -0500 From: Bill Moran To: freebsd-questions@FreeBSD.org Message-Id: <20081124140354.038639a6.wmoran@potentialtech.com> X-Mailer: Sylpheed 2.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Subject: Regarding beer and optimal hacker productivity X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 19:03:56 -0000 Somewhere, out on the WWW, there was a study (perhaps an imaginary study) on what the optimal blood alcohol level was for software development. Someone on this list must know what I'm talking about and have a link to the study and/or the name of it ... I'm putting together a business case for beer at work ;) -- Bill Moran http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 19:04:18 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04541106564A; Mon, 24 Nov 2008 19:04:18 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 875088FC1D; Mon, 24 Nov 2008 19:04:16 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2) with ESMTP id mAOJ19IP001532; Mon, 24 Nov 2008 20:01:09 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2/Submit) with ESMTP id mAOJ17uH001529; Mon, 24 Nov 2008 20:01:09 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 24 Nov 2008 20:01:07 +0100 (CET) From: Wojciech Puchar To: Chris Maness In-Reply-To: <492AF564.5050605@chrismaness.com> Message-ID: <20081124200044.A1528@wojtek.tensor.gdynia.pl> References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Jeremy Chadwick , freebsd-questions@freebsd.org Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 19:04:18 -0000 > Since a Xeon Quad Core is a 64bit processor, would it work ok with FreeBSD? > Or would the adm64 release be better for that chip? don't be suggested by "amd" in port name. it's for AMD64-compatible processor, for example your xeon From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 19:26:44 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6139E106564A for ; Mon, 24 Nov 2008 19:26:44 +0000 (UTC) (envelope-from apseudoutopia@gmail.com) Received: from mail-qy0-f18.google.com (mail-qy0-f18.google.com [209.85.221.18]) by mx1.freebsd.org (Postfix) with ESMTP id 1A6EF8FC16 for ; Mon, 24 Nov 2008 19:26:43 +0000 (UTC) (envelope-from apseudoutopia@gmail.com) Received: by qyk11 with SMTP id 11so1957731qyk.19 for ; Mon, 24 Nov 2008 11:26:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=/ST3KbZvovcGmeW9gwwt1sH2zLWp9MuTCnxoKWFmEOw=; b=Z9zHzTbRcWQ3iEKQzK2zsOgI9fdyWu65ZAzEe/+rzfnytrsQTA3ZLatztLRgKv40wu Ph3gP+69JXxIbNMHEMRIIqinb3M4QA304pZTT2pLKoZLrcUqPa1aW+XPLD80tOqL7RpR 04q9xOKvSvRJHOxcyow5HFS0uE1dDFd/wUZUA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=RvqsnYcOmz9hxREllRKxOUiYyMc5k1KbikhQhuH8MFBpXHjU1yg1bNFEBaoKj1U8TX nCfMjvAFkxfPeCLHExtyix9KBHwJI3nrPEeRy9AUcJ7DiV9/3sav5LbBh8pxFX79rPOp l/aSdItgbutytaR8eV++CpWxlwVmgv+2ZPpHg= Received: by 10.142.241.10 with SMTP id o10mr1794510wfh.50.1227554195673; Mon, 24 Nov 2008 11:16:35 -0800 (PST) Received: by 10.143.115.9 with HTTP; Mon, 24 Nov 2008 11:16:35 -0800 (PST) Message-ID: <27ade5280811241116m6e0deb92wbf9c21ae72e54522@mail.gmail.com> Date: Mon, 24 Nov 2008 14:16:35 -0500 From: APseudoUtopia To: "Bill Moran" In-Reply-To: <20081124140354.038639a6.wmoran@potentialtech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20081124140354.038639a6.wmoran@potentialtech.com> Cc: freebsd-questions@freebsd.org Subject: Re: Regarding beer and optimal hacker productivity X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 19:26:44 -0000 On Mon, Nov 24, 2008 at 2:03 PM, Bill Moran wrote: > > Somewhere, out on the WWW, there was a study (perhaps an imaginary study) > on what the optimal blood alcohol level was for software development. > > Someone on this list must know what I'm talking about and have a link to > the study and/or the name of it ... > > I'm putting together a business case for beer at work ;) > > -- > Bill Moran > http://www.potentialtech.com http://xkcd.com/323/ From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 19:37:26 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C77571065670 for ; Mon, 24 Nov 2008 19:37:26 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.183]) by mx1.freebsd.org (Postfix) with ESMTP id 96D238FC13 for ; Mon, 24 Nov 2008 19:37:26 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: by wa-out-1112.google.com with SMTP id m34so1110193wag.27 for ; Mon, 24 Nov 2008 11:37:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding:sender; bh=xVaJk/uxp38zNO/tdnlEgVE6YTnDm06O0ASMpmQRjR8=; b=i5l+R6AUAeP3yNBrmlCCF851+OrbDPhgLXFUbN1R7/9zBXkdRfqTwvZ3v8yDIcZTgK 4T8B1+m0ZXxmtDKsGnrAP7hdrPqHm4O/BVBcDo6jGndyrL9XhS6qEAvqOD03DzZ+m2uT P4pP9H4sMzgWNse0VPMryV16oKfGYKspzXaXU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding :sender; b=h/A+QDdO/7jiaj5UZMEqloKaDnMDfzyoI80GPqt7OItBUjGShHQ2wHnzN6EaEIrCA/ 31yFhuZeEhSBivFgapn9t6LrZHScxe3n8uAO9YCzh7FhtJUeCEBDf6/GuWNLhNT45vU2 4XSFn3V7UqAOOJBmygNQ1Wjxz9KyIMDb308Kw= Received: by 10.114.196.1 with SMTP id t1mr2082065waf.107.1227555446192; Mon, 24 Nov 2008 11:37:26 -0800 (PST) Received: from ?192.168.1.65? (adsl-76-238-148-150.dsl.irvnca.sbcglobal.net [76.238.148.150]) by mx.google.com with ESMTPS id m28sm6212865poh.22.2008.11.24.11.37.25 (version=SSLv3 cipher=RC4-MD5); Mon, 24 Nov 2008 11:37:25 -0800 (PST) Message-ID: <492B0275.6000300@chrismaness.com> Date: Mon, 24 Nov 2008 11:37:25 -0800 From: Chris Maness User-Agent: Thunderbird 2.0.0.17 (X11/20080925) MIME-Version: 1.0 To: Wojciech Puchar References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> <20081124200044.A1528@wojtek.tensor.gdynia.pl> In-Reply-To: <20081124200044.A1528@wojtek.tensor.gdynia.pl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: Chris Maness Cc: freebsd-questions@freebsd.org Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 19:37:26 -0000 Wojciech Puchar wrote: >> Since a Xeon Quad Core is a 64bit processor, would it work ok with >> FreeBSD? Or would the adm64 release be better for that chip? > > don't be suggested by "amd" in port name. it's for AMD64-compatible > processor, for example your xeon Sorry, I wasn't very clear. I am currently running FreeBSD 7.0 the regular i386 release. I would prefer to keep it that way if migration to the 64bit release would mean rebuilding from scratch (there is probably an easier way to convert an i386 release to a amd64 release). Another poster seemed to indicate that the i386 release would run just fine on a quad core chip. Would there be a major performance gain with amd64 over that of the i386 build on a Xeon Quad Core? Sorry, all this stuff is rather new to me as I have been running ancient gear for a while. Chris From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 19:41:47 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A4001065674 for ; Mon, 24 Nov 2008 19:41:47 +0000 (UTC) (envelope-from dan-freebsd-questions@ourbrains.org) Received: from ourbrains.org (li48-221.members.linode.com [66.246.76.221]) by mx1.freebsd.org (Postfix) with SMTP id 9AEFE8FC12 for ; Mon, 24 Nov 2008 19:41:46 +0000 (UTC) (envelope-from dan-freebsd-questions@ourbrains.org) Received: (qmail 1244 invoked by uid 1000); 24 Nov 2008 19:42:07 -0000 Date: Mon, 24 Nov 2008 14:42:07 -0500 From: Dan To: freebsd-questions@freebsd.org Message-ID: <20081124194207.GA1142@ourbrains.org> Mail-Followup-To: freebsd-questions@freebsd.org References: <20081121060619.GA1057@gmail.com> <20081124120552.5l2vjjzjxpgkw04k@mail.dalan.us> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081124120552.5l2vjjzjxpgkw04k@mail.dalan.us> User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Re: Syslog Suggestion - Help! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 19:41:47 -0000 David Alanis(canito@dalan.us)@2008.11.24 12:05:52 -0600: > So the big question is, what best method can I employ to stop syslog > from duplicating these messages? IMO the big answer is to dump syslog alltogether. It plainly sucks. Use http://smarden.org/socklog/ or http://untroubled.org/syslogread/ with http://untroubled.org/srlog2/. There are other replacements that are better than syslog as well. Google. From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 19:42:32 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4602A1065673 for ; Mon, 24 Nov 2008 19:42:32 +0000 (UTC) (envelope-from dan-freebsd-questions@ourbrains.org) Received: from ourbrains.org (li48-221.members.linode.com [66.246.76.221]) by mx1.freebsd.org (Postfix) with SMTP id 106698FC08 for ; Mon, 24 Nov 2008 19:42:31 +0000 (UTC) (envelope-from dan-freebsd-questions@ourbrains.org) Received: (qmail 1257 invoked by uid 1000); 24 Nov 2008 19:42:53 -0000 Date: Mon, 24 Nov 2008 14:42:53 -0500 From: Dan To: freebsd-questions@freebsd.org Message-ID: <20081124194253.GB1142@ourbrains.org> Mail-Followup-To: freebsd-questions@freebsd.org References: <200811212356.53299.listy@skxpl.eu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200811212356.53299.listy@skxpl.eu.org> User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Re: Log capturing program X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 19:42:32 -0000 skx(listy@skxpl.eu.org)@2008.11.21 23:56:52 +0100: > I need a log capturing program, like WallWatcher, to run on my FreeBSD box > and capture logs from a router running Tomato. Some analyzing features > would be nice. Could you recommend something? What's Tomato? From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 19:42:50 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E07A6106567F for ; Mon, 24 Nov 2008 19:42:50 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (gizmo.acns.msu.edu [35.8.1.43]) by mx1.freebsd.org (Postfix) with ESMTP id A576D8FC14 for ; Mon, 24 Nov 2008 19:42:50 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (localhost [127.0.0.1]) by gizmo.acns.msu.edu (8.13.6/8.13.6) with ESMTP id mAOJcJV8055815 for ; Mon, 24 Nov 2008 14:38:19 -0500 (EST) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: (from jerrymc@localhost) by gizmo.acns.msu.edu (8.13.6/8.13.6/Submit) id mAOJcJdT055814 for freebsd-questions@freebsd.org; Mon, 24 Nov 2008 14:38:19 -0500 (EST) (envelope-from jerrymc) Date: Mon, 24 Nov 2008 14:38:19 -0500 From: Jerry McAllister To: freebsd-questions@freebsd.org Message-ID: <20081124193819.GF55491@gizmo.acns.msu.edu> References: <26face530811221316y5be5bf40ra5c38f389f554ca1@mail.gmail.com> <20081124173650.GA933@ourbrains.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081124173650.GA933@ourbrains.org> User-Agent: Mutt/1.4.2.2i Subject: Re: Unix program that sends email directly using MX record X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 19:42:51 -0000 On Mon, Nov 24, 2008 at 12:36:50PM -0500, Dan wrote: > Kelly Jones(kelly.terry.jones@gmail.com)@2008.11.22 14:16:56 -0700: > > What Unix program sends email directly, using the MX record of the > > recipient, instead of using sendmail or an installed MTA? > > Sendmail/Sendwhale sucks for just about anything. There are much better > MTAs out there. For your needs, I think 'nullmailer' from Bruce Guenter > would fit the bill and so would qmail in nullmailer mode. Postfix as well. Heavily prejudicial response. I haven't had any trouble using Sendmail for just about anything. But, whatever. ////jerry > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 20:08:30 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56BF11065672 for ; Mon, 24 Nov 2008 20:08:30 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by mx1.freebsd.org (Postfix) with ESMTP id C8BBA8FC18 for ; Mon, 24 Nov 2008 20:08:29 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr15.xs4all.nl (8.13.8/8.13.8) with ESMTP id mAOK7uUj098335; Mon, 24 Nov 2008 21:08:09 +0100 (CET) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id D6540BA95; Mon, 24 Nov 2008 21:07:55 +0100 (CET) Date: Mon, 24 Nov 2008 21:07:55 +0100 From: Roland Smith To: Chris Maness Message-ID: <20081124200755.GA3659@slackbox.xs4all.nl> References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> <20081124200044.A1528@wojtek.tensor.gdynia.pl> <492B0275.6000300@chrismaness.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="YZ5djTAD1cGYuMQK" Content-Disposition: inline In-Reply-To: <492B0275.6000300@chrismaness.com> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.18 (2008-05-17) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: Wojciech Puchar , freebsd-questions@freebsd.org Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 20:08:30 -0000 --YZ5djTAD1cGYuMQK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Nov 24, 2008 at 11:37:25AM -0800, Chris Maness wrote: > Wojciech Puchar wrote: > >> Since a Xeon Quad Core is a 64bit processor, would it work ok with=20 > >> FreeBSD? Or would the adm64 release be better for that chip? > > > > don't be suggested by "amd" in port name. it's for AMD64-compatible=20 > > processor, for example your xeon > Sorry, I wasn't very clear. I am currently running FreeBSD 7.0 the=20 > regular i386 release. I would prefer to keep it that way if migration=20 > to the 64bit release would mean rebuilding from scratch=20 You'll have to remove and re-install all ports to make them 64-bits as well. > (there is=20 > probably an easier way to convert an i386 release to a amd64 release). Not really. You could do a cross-build to another partition, but you'd have to have one available. =20 > Another poster seemed to indicate that the i386 release would run just=20 > fine on a quad core chip. It should. > Would there be a major performance gain with amd64 over that of the i386= =20 > build on a Xeon Quad Core? It will depend on your workload. If your machines were strapped fo address space on i386, switching to amd64 (with enough RAM) will help. In "long" (64-bit) mode, amd64 compatible CPUs have more registers available, so that will speed up things. On the other hand, pointers and longs are 64-bit numbers instead of 32-bit, which will make the code somewhat larger. Run some benchmarks that are relevant for you on i386 and re-run them after you've switched to amd64 to know for sure. I've been running amd64 since 5.4 on both Athlon64 and recently Core 2 Quad without problems. Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --YZ5djTAD1cGYuMQK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkrCZsACgkQEnfvsMMhpyXaIwCgilg0iNjU9faBolMC48HjRNbu vR0An2cP6heGCZs5HqiVvP/RM4o25Rqz =62le -----END PGP SIGNATURE----- --YZ5djTAD1cGYuMQK-- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 20:20:19 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26D2E1065677 for ; Mon, 24 Nov 2008 20:20:19 +0000 (UTC) (envelope-from mats.w.lindberg@telia.com) Received: from pne-smtpout1-sn2.hy.skanova.net (pne-smtpout1-sn2.hy.skanova.net [81.228.8.83]) by mx1.freebsd.org (Postfix) with ESMTP id E7FB78FC2F for ; Mon, 24 Nov 2008 20:20:18 +0000 (UTC) (envelope-from mats.w.lindberg@telia.com) Received: from [192.168.0.160] (217.208.239.40) by pne-smtpout1-sn2.hy.skanova.net (7.3.129) id 48A144C501B6CDB5 for freebsd-questions@freebsd.org; Mon, 24 Nov 2008 20:10:17 +0100 From: Mats Lindberg To: freebsd-questions@freebsd.org Content-Type: text/plain Date: Mon, 24 Nov 2008 20:10:16 +0100 Message-Id: <1227553816.6695.3.camel@dell> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 (2.10.1-4.fc7) Content-Transfer-Encoding: 7bit Subject: compat libs in FreeBSD 7.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 20:20:19 -0000 Hi What happened to the compatibility libraries in FreeBSD 7.0 release Need to run some FreeBSD-5.4 binaries on a 7.0 System. Can't find the libs any longer Mats From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 20:37:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F0A31065670 for ; Mon, 24 Nov 2008 20:37:28 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.30]) by mx1.freebsd.org (Postfix) with ESMTP id F00988FC24 for ; Mon, 24 Nov 2008 20:37:27 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so917266ywe.13 for ; Mon, 24 Nov 2008 12:37:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=5jgWu1u/WWxALiw485BFH63b+mo9b3ff7kkP26Fz+zg=; b=Cec/uKkUiy4+6BUHX439ginnv1Nm3E6E5ipKRy+Gd4bhcTFQ5gm/Hrd8eevju80Nye LMXh+gbE9OuTKZQ6SpLrOzbYeMNHS77Cs1vF53qnNajH8B4cFjyktDUFAh52IsV2x4Wz GWmhIZtGRfS+y9U1y7bpyCnvVH7cRTemtbVQY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:to:subject:cc:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:references; b=r6R+hZuRrY1SGSScayruxud97YvcBclHaVaFHlljpdLJVvrhlBmWOZticOymdpbu7c o2Z+94H2oDV922bdRsdP8NTjzgb/5CAh7/C7VxnHO9rzl3QQ1eh9dbfxnKu86Cj0PQ66 11wnS66b8O9FiSJlVNch8Wxz8ceOvo/zKdH/E= Received: by 10.151.45.6 with SMTP id x6mr7584762ybj.211.1227555673371; Mon, 24 Nov 2008 11:41:13 -0800 (PST) Received: by 10.150.228.1 with HTTP; Mon, 24 Nov 2008 11:41:13 -0800 (PST) Message-ID: <8cb6106e0811241141x2b3f7b6cmc9b647d092d8c8c0@mail.gmail.com> Date: Mon, 24 Nov 2008 14:41:13 -0500 From: "Josh Carroll" To: "Chris Maness" In-Reply-To: <492B0275.6000300@chrismaness.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> <20081124200044.A1528@wojtek.tensor.gdynia.pl> <492B0275.6000300@chrismaness.com> Cc: Wojciech Puchar , freebsd-questions@freebsd.org Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 20:37:28 -0000 > Sorry, I wasn't very clear. I am currently running FreeBSD 7.0 the regular > i386 release. I would prefer to keep it that way if migration to the 64bit > release would mean rebuilding from scratch (there is probably an easier way > to convert an i386 release to a amd64 release). Another poster seemed to > indicate that the i386 release would run just fine on a quad core chip. Yes, i386 will run just fine on a 64-bit Xeon. And no, there isn't an easier (well, one could argue it's easy, but tedious) way to "convert" to an amd64 release. > Would there be a major performance gain with amd64 over that of the i386 > build on a Xeon Quad Core? It depends entirely on your workload. Some things benefit, others may actually slow down. One example that seems to benefit in general is multimedia type applications (e.g. media encoding/decoding/transcoding). Josh From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 20:39:43 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D9BC106564A for ; Mon, 24 Nov 2008 20:39:43 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.229]) by mx1.freebsd.org (Postfix) with ESMTP id E02A38FC12 for ; Mon, 24 Nov 2008 20:39:42 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so2168453rvf.43 for ; Mon, 24 Nov 2008 12:39:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding:sender; bh=PZ9SSrQadQNV81if8B0ad/ZioOJ/YgV9hnea8LmWyHY=; b=IYJS4dIfxvXYRMKidWGOk8xGVn7hxGa5DCzQ8ZaZGgrE4pxHPxyM2KuzL279tn/5qF bnUesltMbOC3ThFQgsTpM2ADt0MD4uPk+FOtK6JKNWEb7SS6bfPu+JxMtpvh+Wr2M5Io xYawZn24vI2MxIZcUMcrYYCYJ1AFueOjb2fnw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding :sender; b=Z55w1UgAHik6aexH/JDGkixj3wWlfeESgYetWjOdSsSxHicuBJHcbR4raiqM43qeMf r75jmQr/oSEZbPrD+LWpk2zo24nka8Lpr6tYuV1LjBYN0XF00lxL7Y+2d3B72a0sDj+r 8INLmAgUyVCtsYlrxutHgrM3RBvSsxnUALdug= Received: by 10.141.210.13 with SMTP id m13mr2043194rvq.181.1227559182546; Mon, 24 Nov 2008 12:39:42 -0800 (PST) Received: from ?192.168.1.65? (adsl-76-238-148-150.dsl.irvnca.sbcglobal.net [76.238.148.150]) by mx.google.com with ESMTPS id k2sm13290293rvb.1.2008.11.24.12.39.41 (version=SSLv3 cipher=RC4-MD5); Mon, 24 Nov 2008 12:39:41 -0800 (PST) Message-ID: <492B110D.4030701@chrismaness.com> Date: Mon, 24 Nov 2008 12:39:41 -0800 From: Chris Maness User-Agent: Thunderbird 2.0.0.17 (X11/20080925) MIME-Version: 1.0 To: Roland Smith References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> <20081124200044.A1528@wojtek.tensor.gdynia.pl> <492B0275.6000300@chrismaness.com> <20081124200755.GA3659@slackbox.xs4all.nl> In-Reply-To: <20081124200755.GA3659@slackbox.xs4all.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: Chris Maness Cc: Wojciech Puchar , freebsd-questions@freebsd.org Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 20:39:43 -0000 Roland Smith wrote: > On Mon, Nov 24, 2008 at 11:37:25AM -0800, Chris Maness wrote: > >> Wojciech Puchar wrote: >> >>>> Since a Xeon Quad Core is a 64bit processor, would it work ok with >>>> FreeBSD? Or would the adm64 release be better for that chip? >>>> >>> don't be suggested by "amd" in port name. it's for AMD64-compatible >>> processor, for example your xeon >>> >> Sorry, I wasn't very clear. I am currently running FreeBSD 7.0 the >> regular i386 release. I would prefer to keep it that way if migration >> to the 64bit release would mean rebuilding from scratch >> > > You'll have to remove and re-install all ports to make them 64-bits as well. > > >> (there is >> probably an easier way to convert an i386 release to a amd64 release). >> > > Not really. You could do a cross-build to another partition, but you'd > have to have one available. > > >> Another poster seemed to indicate that the i386 release would run just >> fine on a quad core chip. >> > > It should. > > >> Would there be a major performance gain with amd64 over that of the i386 >> build on a Xeon Quad Core? >> > > It will depend on your workload. If your machines were strapped fo > address space on i386, switching to amd64 (with enough RAM) will help. > > In "long" (64-bit) mode, amd64 compatible CPUs have more registers > available, so that will speed up things. On the other hand, pointers and > longs are 64-bit numbers instead of 32-bit, which will make the code > somewhat larger. Run some benchmarks that are relevant for you on i386 > and re-run them after you've switched to amd64 to know for sure. > > I've been running amd64 since 5.4 on both Athlon64 and recently Core 2 > Quad without problems. > > Roland > Thanks guys. It is not a high load server, so I think sticking to i386 sounds like my best option. Chris From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 20:44:51 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E0AB106564A for ; Mon, 24 Nov 2008 20:44:51 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 62A558FC0C for ; Mon, 24 Nov 2008 20:44:50 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2) with ESMTP id mAOKimhJ001924; Mon, 24 Nov 2008 21:44:48 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2/Submit) with ESMTP id mAOKil9T001921; Mon, 24 Nov 2008 21:44:47 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 24 Nov 2008 21:44:46 +0100 (CET) From: Wojciech Puchar To: Dan In-Reply-To: <20081124173650.GA933@ourbrains.org> Message-ID: <20081124214400.I1919@wojtek.tensor.gdynia.pl> References: <26face530811221316y5be5bf40ra5c38f389f554ca1@mail.gmail.com> <20081124173650.GA933@ourbrains.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Unix program that sends email directly using MX record X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 20:44:51 -0000 >> recipient, instead of using sendmail or an installed MTA? > > Sendmail/Sendwhale sucks for just about anything. There are much better as i like programs that "sucks", i use sendmail everywhere. it's perfect From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 20:49:38 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CABAC106564A for ; Mon, 24 Nov 2008 20:49:38 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.230]) by mx1.freebsd.org (Postfix) with ESMTP id 989FA8FC17 for ; Mon, 24 Nov 2008 20:49:38 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so2171961rvf.43 for ; Mon, 24 Nov 2008 12:49:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding:sender; bh=+J6jg1zxMCo6h8zblnhKGvopYo1C00UOTgVDB6oBxVc=; b=c0MYqhi99aJQY7K09I56sKES5O/KlNSdYDUBBnoQSwaRaIvsSbI74zkJ5iagFxxuJn ISYnpRFbr9gmFAD0Z15RKQ4S5V80Xh0WT1m8kpC7ReGK4W23NH83/2p5LuS4f/f317/K eIQYxZN6bg/QLVjVjpo89oNpruEIOTOlVE974= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding :sender; b=KqqrhT/t4aY1yzpJ5eVphDWoWaJCIdG5uA0lr4m8hqgKfoqIzgnBWSDLQWsL7rJKSK nfBGbMYLHygGxzi3WumoXgIONWm3gR5dUFdrqlWTb+wOP+4tTwsQJHGH1y23dCzUTD3f KHP53hBqsDSCiJcx09KOkhYFLoT0dYOwUC63Y= Received: by 10.114.131.1 with SMTP id e1mr843655wad.222.1227559778335; Mon, 24 Nov 2008 12:49:38 -0800 (PST) Received: from ?192.168.1.65? (adsl-76-238-148-150.dsl.irvnca.sbcglobal.net [76.238.148.150]) by mx.google.com with ESMTPS id y11sm120726pod.5.2008.11.24.12.49.37 (version=SSLv3 cipher=RC4-MD5); Mon, 24 Nov 2008 12:49:37 -0800 (PST) Message-ID: <492B1361.4050604@chrismaness.com> Date: Mon, 24 Nov 2008 12:49:37 -0800 From: Chris Maness User-Agent: Thunderbird 2.0.0.17 (X11/20080925) MIME-Version: 1.0 To: Roland Smith References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> <20081124200044.A1528@wojtek.tensor.gdynia.pl> <492B0275.6000300@chrismaness.com> <20081124200755.GA3659@slackbox.xs4all.nl> In-Reply-To: <20081124200755.GA3659@slackbox.xs4all.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: Chris Maness Cc: Wojciech Puchar , freebsd-questions@freebsd.org Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 20:49:38 -0000 Roland Smith wrote: > On Mon, Nov 24, 2008 at 11:37:25AM -0800, Chris Maness wrote: > >> Wojciech Puchar wrote: >> >>>> Since a Xeon Quad Core is a 64bit processor, would it work ok with >>>> FreeBSD? Or would the adm64 release be better for that chip? >>>> >>> don't be suggested by "amd" in port name. it's for AMD64-compatible >>> processor, for example your xeon >>> >> Sorry, I wasn't very clear. I am currently running FreeBSD 7.0 the >> regular i386 release. I would prefer to keep it that way if migration >> to the 64bit release would mean rebuilding from scratch >> > > You'll have to remove and re-install all ports to make them 64-bits as well. > > >> (there is >> probably an easier way to convert an i386 release to a amd64 release). >> > > Not really. You could do a cross-build to another partition, but you'd > have to have one available. > > >> Another poster seemed to indicate that the i386 release would run just >> fine on a quad core chip. >> > > It should. > > >> Would there be a major performance gain with amd64 over that of the i386 >> build on a Xeon Quad Core? >> > > It will depend on your workload. If your machines were strapped fo > address space on i386, switching to amd64 (with enough RAM) will help. > > In "long" (64-bit) mode, amd64 compatible CPUs have more registers > available, so that will speed up things. On the other hand, pointers and > longs are 64-bit numbers instead of 32-bit, which will make the code > somewhat larger. Run some benchmarks that are relevant for you on i386 > and re-run them after you've switched to amd64 to know for sure. > > I've been running amd64 since 5.4 on both Athlon64 and recently Core 2 > Quad without problems. > > Roland > Another thought. Would a Quad Core chip help with compiling applications -- or would it be the same as a dual core or single core chip running at the same clock speed because the compiler is running single thread? Would php processing be benefited by quad a quad core over a dual core. If not, then I guess I should just purchase a dual core chip and save the cabbage up front and wattage to boot. Thanks, Chris Maness From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 21:04:04 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06E3D106564A for ; Mon, 24 Nov 2008 21:04:04 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7]) by mx1.freebsd.org (Postfix) with ESMTP id DF5268FC0C for ; Mon, 24 Nov 2008 21:04:03 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 4858 invoked from network); 24 Nov 2008 21:04:03 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 24 Nov 2008 21:04:03 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id E2CE250861; Mon, 24 Nov 2008 16:04:01 -0500 (EST) To: Mats Lindberg References: <1227553816.6695.3.camel@dell> From: Lowell Gilbert Date: Mon, 24 Nov 2008 16:04:01 -0500 In-Reply-To: <1227553816.6695.3.camel@dell> (Mats Lindberg's message of "Mon\, 24 Nov 2008 20\:10\:16 +0100") Message-ID: <44abboygxq.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: compat libs in FreeBSD 7.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 21:04:04 -0000 Mats Lindberg writes: > Hi > What happened to the compatibility libraries in FreeBSD 7.0 release > Need to run some FreeBSD-5.4 binaries on a 7.0 System. > Can't find the libs any longer Try ports: misc/compat5x -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 21:18:53 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D0F91065868; Mon, 24 Nov 2008 21:18:53 +0000 (UTC) (envelope-from admin2@enabled.com) Received: from typhoon.enabled.com (typhoon.enabled.com [216.218.220.21]) by mx1.freebsd.org (Postfix) with ESMTP id F044E8FC1A; Mon, 24 Nov 2008 21:18:52 +0000 (UTC) (envelope-from admin2@enabled.com) Received: from [172.23.8.177] (nat-service4.juniper.net [66.129.225.151]) (authenticated bits=0) by typhoon.enabled.com (8.14.3/8.14.3) with ESMTP id mAOLIq6x026062 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 24 Nov 2008 13:18:52 -0800 (PST) (envelope-from admin2@enabled.com) Message-ID: <492B1A37.4090607@enabled.com> Date: Mon, 24 Nov 2008 13:18:47 -0800 From: Noah User-Agent: Thunderbird 2.0.0.17 (Macintosh/20080914) MIME-Version: 1.0 To: glarkin@FreeBSD.org References: <492AD602.7090206@juniper.net> <492AEB6B.20203@FreeBSD.org> <492AEE4B.10504@enabled.com> <492AF556.5070304@FreeBSD.org> In-Reply-To: <492AF556.5070304@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: User Questions Subject: Re: Can't locate ExtUtils/MakeMaker.pm X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 21:18:53 -0000 > > /usr/local/lib/perl5/5.8.8/ExtUtils/MakeMaker.pm > /usr/local/lib/perl5/5.8.8/BSDPAN/ExtUtils/MakeMaker.pm > > The BSDPAN/ExtUtils/MakeMaker.pm file provides one overridden > subroutine, but the rest of the subroutines are loaded from the standard > ExtUtils/MakeMaker.pm. If that file is missing, then it's likely that > your Perl installation is corrupted. > > Did you ever run a file utility that removes duplicate files in a > directory tree? The files are not identical in content, but if the > utility removed based on name only, that could explain why one is missing. not that I am aware of - what shall I do rebuild and reinstall my perl 5.8 Cheers, Noah From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 21:23:08 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 001ED106564A for ; Mon, 24 Nov 2008 21:23:07 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: from smtp110.prem.mail.ac4.yahoo.com (smtp110.prem.mail.ac4.yahoo.com [76.13.13.93]) by mx1.freebsd.org (Postfix) with SMTP id 925AA8FC1C for ; Mon, 24 Nov 2008 21:23:07 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: (qmail 7514 invoked from network); 24 Nov 2008 21:23:06 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Received:X-YMail-OSG:X-Yahoo-Newman-Property:Date:From:To:Subject:Message-ID:In-Reply-To:References:Reply-To:Organization:X-Mailer:Face:X-Face:Mime-Version:Content-Type; b=E/Ic5mykAIyGhPMOQ0NzE/MhIIj8Jype057bgExa9cNX8DoF65mUdKg31kuU+kmJpBKpNMv5WJFv/5zerPeCD2tVg5EG3phi6ca6HLHCtUywwVxp6XUCnwEeQf6boFpC3zMKmlhoMOPavUacaZnSgHWaHSQprHHBLRHr6X/ThwE= ; Received: from unknown (HELO scorpio) (gesbbb@76.23.177.172 with login) by smtp110.prem.mail.ac4.yahoo.com with SMTP; 24 Nov 2008 21:23:06 -0000 X-YMail-OSG: iJLZHnMVM1lhxPc7U6YYq7bvtytpiK2eYng7BeT4P7dB3uJLGMwby_vd9gBB.h1U.8FdWZHOEoeZ3PiHBSl08jGvXGSAx8LFmJDjztGI_y45HU7Zqy.kVgczIpjal9fowniPEu0W2FyDlLOMAzmd3QMtQil.LLgHhMu3UXm9T47JKC4qN7Ra0xrDFw-- X-Yahoo-Newman-Property: ymail-3 Date: Mon, 24 Nov 2008 16:22:55 -0500 From: Jerry To: freebsd-questions@freebsd.org Message-ID: <20081124162255.04a37d12@scorpio> In-Reply-To: <20081124194253.GB1142@ourbrains.org> References: <200811212356.53299.listy@skxpl.eu.org> <20081124194253.GB1142@ourbrains.org> Organization: seibercom.net X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd6.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/7fvxIWaUIPFXRlO=Pd/_RFP"; protocol="application/pgp-signature"; micalg=PGP-SHA1 Subject: Re: Log capturing program X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 21:23:08 -0000 --Sig_/7fvxIWaUIPFXRlO=Pd/_RFP Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Mon, 24 Nov 2008 14:42:53 -0500 Dan wrote: >skx(listy@skxpl.eu.org)@2008.11.21 23:56:52 +0100: >> I need a log capturing program, like WallWatcher, to run on my >> FreeBSD box and capture logs from a router running Tomato. Some >> analyzing features would be nice. Could you recommend something? =20 > >What's Tomato? Start here: http://en.wikibooks.org/wiki/Tomato_Firmware --=20 Jerry gesbbb@yahoo.com Old age is always fifteen years old than I am. B. Baruch --Sig_/7fvxIWaUIPFXRlO=Pd/_RFP Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkrGzgACgkQBvaKIJWWCO3X9ACeIaxjHtPClZpBaiIjK8OpBII2 4IQAn0u8iUkbDkozW33dVYxlpEMrLjMz =on2f -----END PGP SIGNATURE----- --Sig_/7fvxIWaUIPFXRlO=Pd/_RFP-- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 21:39:13 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7A04106567C for ; Mon, 24 Nov 2008 21:39:13 +0000 (UTC) (envelope-from wmoran@potentialtech.com) Received: from mail.potentialtech.com (internet.potentialtech.com [66.167.251.6]) by mx1.freebsd.org (Postfix) with ESMTP id 7B76A8FC1A for ; Mon, 24 Nov 2008 21:39:13 +0000 (UTC) (envelope-from wmoran@potentialtech.com) Received: from vanquish.ws.pitbpa0.priv.collaborativefusion.com (pr40.pitbpa0.pub.collaborativefusion.com [206.210.89.202]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.potentialtech.com (Postfix) with ESMTPSA id 97E1BEBC3F; Mon, 24 Nov 2008 16:39:12 -0500 (EST) Date: Mon, 24 Nov 2008 16:39:11 -0500 From: Bill Moran To: APseudoUtopia Message-Id: <20081124163911.63115bc6.wmoran@potentialtech.com> In-Reply-To: <27ade5280811241116m6e0deb92wbf9c21ae72e54522@mail.gmail.com> References: <20081124140354.038639a6.wmoran@potentialtech.com> <27ade5280811241116m6e0deb92wbf9c21ae72e54522@mail.gmail.com> X-Mailer: Sylpheed 2.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Regarding beer and optimal hacker productivity X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 21:39:13 -0000 In response to APseudoUtopia : > On Mon, Nov 24, 2008 at 2:03 PM, Bill Moran wrote: > > > > Somewhere, out on the WWW, there was a study (perhaps an imaginary study) > > on what the optimal blood alcohol level was for software development. > > > > Someone on this list must know what I'm talking about and have a link to > > the study and/or the name of it ... > > > > I'm putting together a business case for beer at work ;) > > http://xkcd.com/323/ Damn ... I thought it was something more realistic looking ... Thanks for the link. -- Bill Moran http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 22:49:55 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42C401065672 for ; Mon, 24 Nov 2008 22:49:55 +0000 (UTC) (envelope-from dkelly@Grumpy.DynDNS.org) Received: from smtp.knology.net (smtp.knology.net [24.214.63.101]) by mx1.freebsd.org (Postfix) with ESMTP id D34F18FC17 for ; Mon, 24 Nov 2008 22:49:54 +0000 (UTC) (envelope-from dkelly@Grumpy.DynDNS.org) Received: (qmail 4534 invoked by uid 0); 24 Nov 2008 22:49:51 -0000 Received: from unknown (HELO Grumpy.DynDNS.org) (75.76.211.79) by smtp1.knology.net with SMTP; 24 Nov 2008 22:49:51 -0000 Received: by Grumpy.DynDNS.org (Postfix, from userid 928) id 3005228429; Mon, 24 Nov 2008 16:49:51 -0600 (CST) Date: Mon, 24 Nov 2008 16:49:51 -0600 From: David Kelly To: Bill Moran Message-ID: <20081124224951.GA11199@Grumpy.DynDNS.org> References: <20081124140354.038639a6.wmoran@potentialtech.com> <27ade5280811241116m6e0deb92wbf9c21ae72e54522@mail.gmail.com> <20081124163911.63115bc6.wmoran@potentialtech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081124163911.63115bc6.wmoran@potentialtech.com> User-Agent: Mutt/1.4.2.3i Cc: freebsd-questions@freebsd.org, APseudoUtopia Subject: Re: Regarding beer and optimal hacker productivity X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD-Questions@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 22:49:55 -0000 On Mon, Nov 24, 2008 at 04:39:11PM -0500, Bill Moran wrote: > In response to APseudoUtopia : > > > On Mon, Nov 24, 2008 at 2:03 PM, Bill Moran wrote: > > > > > > I'm putting together a business case for beer at work ;) > > > > http://xkcd.com/323/ > > Damn ... I thought it was something more realistic looking ... There is hope yet. The Oracle of Undisputed Fact and Wisdom :-) http://en.wikipedia.org/wiki/Xkcd#Life_imitates_xkcd, says life often imitates xkcd. -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Whom computers would destroy, they must first drive mad. From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 22:51:55 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 633F01065674 for ; Mon, 24 Nov 2008 22:51:55 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr14.xs4all.nl (smtp-vbr14.xs4all.nl [194.109.24.34]) by mx1.freebsd.org (Postfix) with ESMTP id F1AA28FC13 for ; Mon, 24 Nov 2008 22:51:54 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr14.xs4all.nl (8.13.8/8.13.8) with ESMTP id mAOMpGj9039828; Mon, 24 Nov 2008 23:51:30 +0100 (CET) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 0CBB3BA9B; Mon, 24 Nov 2008 23:51:16 +0100 (CET) Date: Mon, 24 Nov 2008 23:51:16 +0100 From: Roland Smith To: Chris Maness Message-ID: <20081124225115.GA8033@slackbox.xs4all.nl> References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> <20081124200044.A1528@wojtek.tensor.gdynia.pl> <492B0275.6000300@chrismaness.com> <20081124200755.GA3659@slackbox.xs4all.nl> <492B1361.4050604@chrismaness.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="MGYHOYXEY6WxJCY8" Content-Disposition: inline In-Reply-To: <492B1361.4050604@chrismaness.com> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.18 (2008-05-17) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: Wojciech Puchar , freebsd-questions@freebsd.org Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 22:51:55 -0000 --MGYHOYXEY6WxJCY8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Nov 24, 2008 at 12:49:37PM -0800, Chris Maness wrote: > >> Would there be a major performance gain with amd64 over that of the i3= 86=20 > >> build on a Xeon Quad Core? > >> =20 > > > > It will depend on your workload. If your machines were strapped fo > > address space on i386, switching to amd64 (with enough RAM) will help. > > > > In "long" (64-bit) mode, amd64 compatible CPUs have more registers > > available, so that will speed up things. On the other hand, pointers and > > longs are 64-bit numbers instead of 32-bit, which will make the code > > somewhat larger. Run some benchmarks that are relevant for you on i386 > > and re-run them after you've switched to amd64 to know for sure. > Another thought. Would a Quad Core chip help with compiling=20 > applications -- or would it be the same as a dual core or single core=20 > chip running at the same clock speed because the compiler is running=20 > single thread?=20 Again, it depends. If you have to compile a lot of C files via a Makefile without much interdependencies you could start make with the "-j 8" flag so it can start 8 jobs concurrently. (The number of cores x 2 seems to be the best option). > Would php processing be benefited by quad a quad core=20 > over a dual core. If not, then I guess I should just purchase a dual=20 > core chip and save the cabbage up front and wattage to boot. It could very well benefit. It depends where the bottleneck is in your current setup. It e.g. depends on how many apache and php instances you have running, and how you have compiled apache. Apache 22 is standard compiled with the prefork MPM, which starts 2 processes by default, and can start up to 16 IIRC (both numbers are configurable). A quad processor could make this run faster as long as the rest of the system can keep up. Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --MGYHOYXEY6WxJCY8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkrL+MACgkQEnfvsMMhpyWHzgCePBBp8xZQJt0bqS2O0olKeW/Z O6kAnjdg5SaTUkQhpK+WTolorGKjW8Nr =2e1r -----END PGP SIGNATURE----- --MGYHOYXEY6WxJCY8-- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 22:59:53 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A3960106567E for ; Mon, 24 Nov 2008 22:59:53 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id 827818FC24 for ; Mon, 24 Nov 2008 22:59:53 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from 68-189-244-97.dhcp.oxfr.ma.charter.com ([68.189.244.97] helo=Gregory-Larkins-Computer.local) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L4kPG-000N8S-EI; Mon, 24 Nov 2008 17:59:51 -0500 Received: from [127.0.0.1] (fireball.entropy.prv [192.168.1.12]) by Gregory-Larkins-Computer.local (Postfix) with ESMTP id 48C7127E111A; Mon, 24 Nov 2008 17:59:49 -0500 (EST) Message-ID: <492B31E4.1050201@FreeBSD.org> Date: Mon, 24 Nov 2008 17:59:48 -0500 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Noah References: <492AD602.7090206@juniper.net> <492AEB6B.20203@FreeBSD.org> <492AEE4B.10504@enabled.com> <492AF556.5070304@FreeBSD.org> <492B1A37.4090607@enabled.com> In-Reply-To: <492B1A37.4090607@enabled.com> X-Enigmail-Version: 0.95.7 OpenPGP: id=1C940290 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.6 (-) Cc: User Questions Subject: Re: Can't locate ExtUtils/MakeMaker.pm X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 22:59:53 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Noah wrote: > >> >> /usr/local/lib/perl5/5.8.8/ExtUtils/MakeMaker.pm >> /usr/local/lib/perl5/5.8.8/BSDPAN/ExtUtils/MakeMaker.pm >> >> The BSDPAN/ExtUtils/MakeMaker.pm file provides one overridden >> subroutine, but the rest of the subroutines are loaded from the standard >> ExtUtils/MakeMaker.pm. If that file is missing, then it's likely that >> your Perl installation is corrupted. >> >> Did you ever run a file utility that removes duplicate files in a >> directory tree? The files are not identical in content, but if the >> utility removed based on name only, that could explain why one is >> missing. > > > > not that I am aware of - what shall I do rebuild and reinstall my perl 5.8 > > Cheers, > > Noah > Hi Noah, It's pretty easy to do a forced re-install, but before you do, would you mind sending me the output of the following commands? cd /usr/local/lib/perl5/5.8.8/ExtUtils find . -type f -print | sort I'd like to compare the list of files in your ExtUtils directory with the list from my machine. Also, did you originally install Perl from a package or did you build it from source and install it from the /usr/ports/lang/perl5.8 directory? Regards, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJKzHk0sRouByUApARAnExAJ9bOd17VIK7SIg2o57Zqrc5kmOCXQCgupFD 7mvnV0OlGl5QqpAZLqA2lX0= =d60h -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 23:28:30 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E97361065670; Mon, 24 Nov 2008 23:28:30 +0000 (UTC) (envelope-from admin2@enabled.com) Received: from typhoon.enabled.com (typhoon.enabled.com [216.218.220.21]) by mx1.freebsd.org (Postfix) with ESMTP id D774B8FC0C; Mon, 24 Nov 2008 23:28:30 +0000 (UTC) (envelope-from admin2@enabled.com) Received: from [172.23.8.177] (nat-service4.juniper.net [66.129.225.151]) (authenticated bits=0) by typhoon.enabled.com (8.14.3/8.14.3) with ESMTP id mAONSTFY090932 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 24 Nov 2008 15:28:30 -0800 (PST) (envelope-from admin2@enabled.com) Message-ID: <492B3898.9030908@enabled.com> Date: Mon, 24 Nov 2008 15:28:24 -0800 From: Noah User-Agent: Thunderbird 2.0.0.17 (Macintosh/20080914) MIME-Version: 1.0 To: glarkin@FreeBSD.org References: <492AD602.7090206@juniper.net> <492AEB6B.20203@FreeBSD.org> <492AEE4B.10504@enabled.com> <492AF556.5070304@FreeBSD.org> <492B1A37.4090607@enabled.com> <492B31E4.1050201@FreeBSD.org> In-Reply-To: <492B31E4.1050201@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: User Questions Subject: Re: Can't locate ExtUtils/MakeMaker.pm X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 23:28:31 -0000 Greg Larkin wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Noah wrote: >>> /usr/local/lib/perl5/5.8.8/ExtUtils/MakeMaker.pm >>> /usr/local/lib/perl5/5.8.8/BSDPAN/ExtUtils/MakeMaker.pm >>> >>> The BSDPAN/ExtUtils/MakeMaker.pm file provides one overridden >>> subroutine, but the rest of the subroutines are loaded from the standard >>> ExtUtils/MakeMaker.pm. If that file is missing, then it's likely that >>> your Perl installation is corrupted. >>> >>> Did you ever run a file utility that removes duplicate files in a >>> directory tree? The files are not identical in content, but if the >>> utility removed based on name only, that could explain why one is >>> missing. >> >> >> not that I am aware of - what shall I do rebuild and reinstall my perl 5.8 >> >> Cheers, >> >> Noah >> > > Hi Noah, > > It's pretty easy to do a forced re-install, but before you do, would you > mind sending me the output of the following commands? > > cd /usr/local/lib/perl5/5.8.8/ExtUtils > find . -type f -print | sort > > I'd like to compare the list of files in your ExtUtils directory with > the list from my machine. > > Also, did you originally install Perl from a package or did you build it > from source and install it from the /usr/ports/lang/perl5.8 directory? > sure thing - thanks for all your help Greg. perl is installed from /usr/ports p5-CGI-SpeedyCGI-2.22_4 Speed up perl CGI scripts by running them persistently p5-DBI-1.60.4 The perl5 Database Interface. Required for DBD::* modules p5-Devel-Symdump-2.0800 A perl5 module that dumps symbol names or the symbol table p5-Errno-1.10 A perl5 module providing access to System errno constants p5-Error-0.17015 Perl module to provide Error/exception support for perl: Er p5-File-NFSLock-1.20 File::NFSLock - perl module to do NFS (or not) locking p5-PPI-1.201 Analyze and manipulate Perl code without using perl itself p5-Scalar-List-Utils-1.19,1 Perl subroutines that would be nice to have in the perl cor p5-Storable-2.18 Persistency for perl data structures p5-Test-Harness-3.14 Run perl standard test scripts with statistics p5-Test-Simple-0.86 Basic utilities for writing tests in perl perl-5.8.8_1 Practical Extraction and Report Language perltidy-20071205 Indents and reformats Perl scripts to make them easier to r cd /usr/local/lib/perl5/5.8.8/ExtUtils find . -type f -print | sorttyphoon# find . -type f -print | sort ./Command.pm ./Command/MM.pm ./Constant.pm ./Constant/Base.pm ./Constant/Utils.pm ./Constant/XS.pm ./Embed.pm ./Install.pm ./Installed.pm ./Liblist.pm ./Liblist/Kid.pm ./MANIFEST.SKIP ./MM.pm ./MM_AIX.pm ./MM_Any.pm ./MM_BeOS.pm ./MM_Cygwin.pm ./MM_DOS.pm ./MM_MacOS.pm ./MM_NW5.pm ./MM_OS2.pm ./MM_QNX.pm ./MM_UWIN.pm ./MM_Unix.pm ./MM_VMS.pm ./MM_VOS.pm ./MM_Win32.pm ./MM_Win95.pm ./MY.pm ./MakeMaker.pm ./MakeMaker/Config.pm ./MakeMaker/FAQ.pod ./MakeMaker/Tutorial.pod ./MakeMaker/bytes.pm ./MakeMaker/vmsish.pm ./Manifest.pm ./Miniperl.pm ./Mkbootstrap.pm ./Mksymlists.pm ./NOTES ./PATCHING ./Packlist.pm ./testlib.pm ./typemap ./xsubpp > Regards, > Greg > - -- > Greg Larkin > > http://www.FreeBSD.org/ - The Power To Serve > http://www.sourcehosting.net/ - Ready. Set. Code. > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.7 (MingW32) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFJKzHk0sRouByUApARAnExAJ9bOd17VIK7SIg2o57Zqrc5kmOCXQCgupFD > 7mvnV0OlGl5QqpAZLqA2lX0= > =d60h > -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 23:33:16 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C1D61065670 for ; Mon, 24 Nov 2008 23:33:16 +0000 (UTC) (envelope-from bipolor@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.26]) by mx1.freebsd.org (Postfix) with ESMTP id CC9108FC1C for ; Mon, 24 Nov 2008 23:33:15 +0000 (UTC) (envelope-from bipolor@gmail.com) Received: by qw-out-2122.google.com with SMTP id 9so468268qwb.7 for ; Mon, 24 Nov 2008 15:33:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=O5wunmryv60QOAIZz+S1cVzeC3eB0s6/S6Ht9ImEfkc=; b=EHxUuby18LaiWjAtIPGh3/8w4nafBgD+qq+OgX6VlyXXReadyFcl7mAhCx6OEe+DEG Klz9qQlKq/NSwOLEpYAhT4qAxepiR8k2Ct0+DlHF//iMNbIWhY7NBHfCZRgBo/vvdRLm qHpf64kACHKYieb954PdB8ER9oSLrSTVbtegM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=FlIoanSJmaD6gIVcWkNvFr0Gi/8oEtPRTNKyn2+j+/Kj6prXv1yiYojr15MBBEDyFN n54Qh9qXyzfgXa92vIxskafPsBN55dK4oa415/112oUPJS90djYwya2HN8JAKALKFRL0 xjgQobxRcnjeQ6oEHSWsaDvLxfOmFD3v0gick= Received: by 10.214.243.18 with SMTP id q18mr2956876qah.14.1227569594890; Mon, 24 Nov 2008 15:33:14 -0800 (PST) Received: by 10.214.182.17 with HTTP; Mon, 24 Nov 2008 15:33:14 -0800 (PST) Message-ID: Date: Mon, 24 Nov 2008 15:33:14 -0800 From: "Mike Price" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: How do I permanently set the numerical ip in dmesg? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 23:33:16 -0000 How do I permanently set the numerical ip in dmesg? From owner-freebsd-questions@FreeBSD.ORG Mon Nov 24 23:38:35 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 510331065672 for ; Mon, 24 Nov 2008 23:38:35 +0000 (UTC) (envelope-from jjah@cloud.ccsf.cc.ca.us) Received: from cloud.ccsf.cc.ca.us (cloud.ccsf.cc.ca.us [147.144.1.212]) by mx1.freebsd.org (Postfix) with ESMTP id 41BDD8FC12 for ; Mon, 24 Nov 2008 23:38:35 +0000 (UTC) (envelope-from jjah@cloud.ccsf.cc.ca.us) Received: from cloud.ccsf.cc.ca.us (localhost [127.0.0.1]) by cloud.ccsf.cc.ca.us (8.14.2/8.14.2) with ESMTP id mAONSXcV042188 for ; Mon, 24 Nov 2008 15:28:33 -0800 (PST) (envelope-from jjah@cloud.ccsf.cc.ca.us) Received: from localhost (jjah@localhost) by cloud.ccsf.cc.ca.us (8.14.2/8.14.2/Submit) with ESMTP id mAONSXU7042185 for ; Mon, 24 Nov 2008 15:28:33 -0800 (PST) (envelope-from jjah@cloud.ccsf.cc.ca.us) Date: Mon, 24 Nov 2008 15:28:33 -0800 (PST) From: "Joe R. Jah" To: freebsd-questions@freebsd.org Message-ID: <20081124140704.R21286@cloud.ccsf.cc.ca.us> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: SYSERR(root): putbody: write error: Broken pipe X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2008 23:38:35 -0000 Hello, I have a box running FreeBSD 6.3-RELEASE-p6. At the end of startup the system spits seven or more lines to the console: # tail -8 /var/log/messages Nov 24 13:38:06 cloudy kernel: bce0: link state changed to UP Nov 24 13:38:12 cloudy sm-mta[732]: mAO8nlmu018313: SYSERR(root): putbody: write error: Broken pipe Nov 24 13:38:12 cloudy sm-mta[732]: mAO1Yeec000932: SYSERR(root): putbody: write error: Broken pipe Nov 24 13:38:18 cloudy sm-mta[732]: mANDA7Vr051303: SYSERR(root): putbody: write error: Broken pipe Nov 24 13:38:18 cloudy sm-mta[732]: mAM8jXWx033167: SYSERR(root): putbody: write error: Broken pipe Nov 24 13:38:18 cloudy sm-mta[732]: mAL8nNii015423: SYSERR(root): putbody: write error: Broken pipe Nov 24 13:38:18 cloudy sm-mta[732]: mAKDFDxL019571: SYSERR(root): putbody: write error: Broken pipe Nov 24 13:38:18 cloudy sm-mta[732]: mAK8nxOL017816: SYSERR(root): putbody: write error: Broken pipe The first two or three lines always come six seconds after the network changes to UP, and six seconds later the other five or more lines come out. Please advise. Regards, Joe -- _/ _/_/_/ _/ ____________ __o _/ _/ _/ _/ ______________ _-\<,_ _/ _/ _/_/_/ _/ _/ ......(_)/ (_) _/_/ oe _/ _/. _/_/ ah jjah@cloud.ccsf.cc.ca.us From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 00:08:59 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19123106564A for ; Tue, 25 Nov 2008 00:08:58 +0000 (UTC) (envelope-from ccowart@rescomp.berkeley.edu) Received: from hal.rescomp.berkeley.edu (hal.Rescomp.Berkeley.EDU [169.229.70.150]) by mx1.freebsd.org (Postfix) with ESMTP id C75E78FC0C for ; Tue, 25 Nov 2008 00:08:58 +0000 (UTC) (envelope-from ccowart@rescomp.berkeley.edu) Received: by hal.rescomp.berkeley.edu (Postfix, from userid 1225) id 038D73C04EE; Mon, 24 Nov 2008 16:08:43 -0800 (PST) Date: Mon, 24 Nov 2008 16:08:39 -0800 From: Christopher Cowart To: Gerhard Schmidt Message-ID: <20081125000839.GA18913@hal.rescomp.berkeley.edu> Mail-Followup-To: Gerhard Schmidt , freebsd-questions@freebsd.org References: <49296382.60808@ze.tum.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="J2SCkAp4GZ/dPZZf" Content-Disposition: inline In-Reply-To: <49296382.60808@ze.tum.de> Organization: RSSP-IT, UC Berkeley User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-questions@freebsd.org Subject: Re: files before ldap in nsswitch.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 00:08:59 -0000 --J2SCkAp4GZ/dPZZf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Gerhard Schmidt wrote: > I'm setting up a new FreeBSD Server for out local Computer club. Most of > the users are stored in LDAP and I've installed nss_ldap and pam_ldap > and set up both. Everything works so far with nsswitch.conf > entry passwd: ldap files. >=20 > When I try passwd: files ldap the login doesn't work anymore because the > LDAP_Server is never asked. The act of logging in is managed by /etc/pam.d/*, not /etc/nsswitch.conf. If `ls -l` works, you've got NSS configured correctly. > I tried this to optimize the LDAP requests as the service users are in > the local files. This would speed up the boot process and takes some > load off the LDAP-Server. >=20 > Is there a way to configure FreeBSD to look first in the local files and > if a user isn't found in the LDAP-Server. This is my /etc/nsswitch.conf: | group: files ldap | hosts: files dns | networks: files | passwd: files ldap | shells: files And /etc/pam.d/system: auth sufficient pam_unix.so no_warn auth required /usr/local/lib/pam_ldap.so no_warn use_first_p= ass My guess is you used required for both modules, which would require authentication to succeed against both user databases. > And another question. Is there a way to use two different LDAP-Servers > e.g. by calling nss_ldap with different config files. What's your goal? We have two different LDAP providers with different subtrees that get "glued" together by a DNS round-robin of LDAP consumers. This round-robin provides a single, unified view of our directory to all our LDAP clients. --=20 Chris Cowart Network Technical Lead Network & Infrastructure Services, RSSP-IT UC Berkeley --J2SCkAp4GZ/dPZZf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iQIcBAEBAwAGBQJJK0IGAAoJEIGh6j3cHUNP0VoQAIv66cBUYmlxWXJy6QiVqHGM A09GQShTz/G0vLvgdTrUASoXd056APNq4JRTGxT5GprZbHJCVgJgmtTyvar0n+qh n7cNSLBctUnvGo3lvbWYiHOZDsXw9PckKNUynzkuyh+de7QFfv4+v9IEXJQ7sLCe IZgKfypxBkid2JOoq3rAlcivGIxmNxLgT+OndnqDz+8x4J4a65sJUQn3IFOVZhie sCoGujCcHi5lLzIIc+5vKqyHyB+WHnqzWGxDn+XVoeGpY8Idv9xjWyMVgUK9cEKd WL5ONDRhMZfbjiG0Tkv2z75Ggq2qmV83cyjXwExpJoZWMtxK6QpipACE9l87y2DI WRAaolF2FoQ/V9hY+3jOKt3kS7pZna84Qnyaqq4+pI2pg+QLMRwVNdooTSb8QRl2 k8isDVOh3ZmzaB2MoAkaY2qDyoiPJDyiKIKPLDK1hTlri02sqXBGtJM6YPZaXni6 LyEBtix5dY9ZRsdTggs098VWKIM27gegCjHCh182rznZK0JKjsE9/t/mMdNLVUOy ugivUKsxiB7gDq76AFiLUWuMc0E1v11ATsxY9iKs+VmhPo7veAvfbuyDO4OWRleS ByMApP8BvP8rh3IF5mgqXZ3aBDgc8pbXNZi311h1GZPaHz6hyMf891TV7vSLUN1q fxLC+clX3wr5E2pWwqNU =diwm -----END PGP SIGNATURE----- --J2SCkAp4GZ/dPZZf-- From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 00:25:44 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68C65106564A for ; Tue, 25 Nov 2008 00:25:44 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from ezekiel.daleco.biz (southernuniform.com [66.76.92.18]) by mx1.freebsd.org (Postfix) with ESMTP id 1D2528FC14 for ; Tue, 25 Nov 2008 00:25:43 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from localhost (localhost [127.0.0.1]) by ezekiel.daleco.biz (8.14.2/8.14.2) with ESMTP id mAP0PgD8034749; Mon, 24 Nov 2008 18:25:42 -0600 (CST) (envelope-from kdk@daleco.biz) X-Virus-Scanned: amavisd-new at daleco.biz Received: from ezekiel.daleco.biz ([127.0.0.1]) by localhost (ezekiel.daleco.biz [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 6hBWfZCE+Q3K; Mon, 24 Nov 2008 18:25:38 -0600 (CST) Received: from archangel.daleco.biz (ezekiel.daleco.biz [66.76.92.18]) by ezekiel.daleco.biz (8.14.2/8.14.2) with ESMTP id mAP0PZ63034744; Mon, 24 Nov 2008 18:25:36 -0600 (CST) (envelope-from kdk@daleco.biz) Message-ID: <492B45FF.1030206@daleco.biz> Date: Mon, 24 Nov 2008 18:25:35 -0600 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.16) Gecko/20080719 SeaMonkey/1.1.11 MIME-Version: 1.0 To: Mike Price References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: How do I permanently set the numerical ip in dmesg? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 00:25:44 -0000 Mike Price wrote: > How do I permanently set the numerical ip in dmesg? Hmm, I'm not sure what you are asking, *exactly*, because dmesg(8) simply prints the collected messages given by the OS kernel beginning with the most recent boot-up. However, and I think maybe I'm correct in this guess, if you are asking how to make the system remember the IP address for an interface "across a reboot", try adding a line like this to the file /etc/rc.conf: ifconfig_xl0="192.168.0.1 netmask 255.255.255.0" where "xl0" is the name of the interface. You can read the manpage for ifconfig(8) ("man ifconfig") and possible the manpage for rc.conf(5) for more information. HTH, Kevin Kinsey -- Many hands make light work. -- John Heywood From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 00:53:02 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E38191065672 for ; Tue, 25 Nov 2008 00:53:02 +0000 (UTC) (envelope-from evuraan@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.28]) by mx1.freebsd.org (Postfix) with ESMTP id 9D9198FC19 for ; Tue, 25 Nov 2008 00:53:02 +0000 (UTC) (envelope-from evuraan@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so965432ywe.13 for ; Mon, 24 Nov 2008 16:53:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=9JoClQfgdX3HuN6gRhuolPjaV9ZFh6SQXyEfCkXVV8U=; b=sBr0zw1efnrtSxvnf72QWqks/2uQKJ3+T9ppWqOS9F9PN424hqn6fnp98bbCg6WAh3 CvpBsBJmAQRmo/GB9HY2RdQy/pJMyMl6iqVMwefu75Q1thoY1Ub7XrB213M6dNhkCaZD CbBHUGqDZ38ioJVaWgwIdLOocsFnkEmwN7G40= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=TARVJYOyt9hGeq/r5SGDYhECiayq3vF88J/hBt/sGvsk5pSGbHRejupfHFSmtrAMk7 KR+LAduqmFCXkswt3KBjbPijgJHItElsIlqKlbwE4V7nfj9Dwi1DMG6bTr8mMh7Ch4dW W91MZCcKi2KHn5wncSi4wPZBxSoLxZaW76RCI= Received: by 10.90.99.6 with SMTP id w6mr2484987agb.81.1227573082596; Mon, 24 Nov 2008 16:31:22 -0800 (PST) Received: by 10.90.93.20 with HTTP; Mon, 24 Nov 2008 16:31:22 -0800 (PST) Message-ID: <6fbcd0710811241631o2660f4a2i8f4f458bfa0e9641@mail.gmail.com> Date: Mon, 24 Nov 2008 16:31:22 -0800 From: "=?UTF-8?Q?Evuraan:?= =?UTF-8?Q?:=E0=B4=8F=E0=B4=B5=E0=B5=82?= =?UTF-8?Q?=E0=B4=B0=E0=B4=BE=E0=B4=A8=E0=B5=8D=E2=80=8D?=" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: distributed shell (dancers shell) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 00:53:03 -0000 How/where can I get dsh for Freebsd? attempts to compile it afresh have been failing, hence this question. thx. checking for endnetgrent... yes checking for open_dshconfig in -ldshconfig... no configure: error: dshconfig not found!! From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 01:08:13 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8896B1065673 for ; Tue, 25 Nov 2008 01:08:13 +0000 (UTC) (envelope-from m0rchand@comcast.net) Received: from QMTA03.westchester.pa.mail.comcast.net (qmta03.westchester.pa.mail.comcast.net [76.96.62.32]) by mx1.freebsd.org (Postfix) with ESMTP id 332AD8FC28 for ; Tue, 25 Nov 2008 01:08:08 +0000 (UTC) (envelope-from m0rchand@comcast.net) Received: from OMTA09.westchester.pa.mail.comcast.net ([76.96.62.20]) by QMTA03.westchester.pa.mail.comcast.net with comcast id jA4Q1a0010SCNGk53D6urV; Tue, 25 Nov 2008 01:06:55 +0000 Received: from [10.0.1.200] ([76.122.47.225]) by OMTA09.westchester.pa.mail.comcast.net with comcast id jD801a00G4rWgJL3VD80qq; Tue, 25 Nov 2008 01:08:01 +0000 X-Authority-Analysis: v=1.0 c=1 a=JdVQVYF7kmQA:10 a=juHp5dp5PO0A:10 a=NF1EGjvYBDPFcfU8Jp8A:9 a=HezG6jyqPmkMrZ_0-T8-4E9TnpUA:4 a=WuK_CZDBSqoA:10 Message-Id: From: Tom Marchand To: FreeBSD Mailing List In-Reply-To: <20081124200044.A1528@wojtek.tensor.gdynia.pl> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Date: Mon, 24 Nov 2008 20:07:59 -0500 References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> <20081124200044.A1528@wojtek.tensor.gdynia.pl> X-Mailer: Apple Mail (2.929.2) Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 01:08:13 -0000 On Nov 24, 2008, at 2:01 PM, Wojciech Puchar wrote: >> Since a Xeon Quad Core is a 64bit processor, would it work ok with >> FreeBSD? Or would the adm64 release be better for that chip? > > don't be suggested by "amd" in port name. it's for AMD64-compatible > processor, for example your xeon > _______________________________________________ I always thought AMD was Intel compatible. From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 01:10:04 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 39D8C1065674 for ; Tue, 25 Nov 2008 01:10:04 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from rn-out-0910.google.com (rn-out-0910.google.com [64.233.170.190]) by mx1.freebsd.org (Postfix) with ESMTP id DE2DE8FC28 for ; Tue, 25 Nov 2008 01:10:03 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by rn-out-0910.google.com with SMTP id j71so1767163rne.12 for ; Mon, 24 Nov 2008 17:10:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=tldhj1iUlbw9Sldt9+QKxhBSOOXpxPYVHxE4tuWqmiE=; b=q3UIkJgrc7VGO4EBGoPtD8jKFJTHW+SBH+kSKnl4N5+0lFzoOy8ARMTvreSAea0Kz7 VM0eyj2Rw/Ho5M+USSjIwQGkoWfnH1VDc5guz8vK28a3dGJhRL+jshbmAHl/DHwE7CFH S+XtIurafI1o4mGT+vUAYVQdxcf3nc/9WCOB4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:to:subject:cc:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:references; b=q9xqlCmdDyAbb8294ULD/oTH57JQCObaqKDFmosKXMkflEvLp89k73fFG2Ujt8V8Dl IzEMwKeADLYEDG2Fnt1p8EdKh36HUER+Dp5TxAOm1fPWbOumW9ldsVBX5GJxZAt/DG41 zjgDbC83K2Fsz1Zbe+jnYtvsgf0Jn8lTtdZaQ= Received: by 10.150.92.13 with SMTP id p13mr8122904ybb.107.1227575403162; Mon, 24 Nov 2008 17:10:03 -0800 (PST) Received: by 10.150.218.5 with HTTP; Mon, 24 Nov 2008 17:10:03 -0800 (PST) Message-ID: <8cb6106e0811241710o3c5a410cp9da4bf4829ee7fed@mail.gmail.com> Date: Mon, 24 Nov 2008 20:10:03 -0500 From: "Josh Carroll" To: "=?UTF-8?Q?Evuraan:?= =?UTF-8?Q?:=E0=B4=8F=E0=B4=B5=E0=B5=82?= =?UTF-8?Q?=E0=B4=B0=E0=B4=BE=E0=B4=A8=E0=B5=8D=E2=80=8D?=" In-Reply-To: <6fbcd0710811241631o2660f4a2i8f4f458bfa0e9641@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: base64 Content-Disposition: inline References: <6fbcd0710811241631o2660f4a2i8f4f458bfa0e9641@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: distributed shell (dancers shell) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 01:10:04 -0000 T24gTW9uLCBOb3YgMjQsIDIwMDggYXQgNzozMSBQTSwgRXZ1cmFhbjo64LSP4LS14LWC4LSw4LS+ 4LSo4LWN4oCNIDxldnVyYWFuQGdtYWlsLmNvbT4gd3JvdGU6Cj4gSG93L3doZXJlIGNhbiBJIGdl dCBkc2ggZm9yIEZyZWVic2Q/IGF0dGVtcHRzIHRvIGNvbXBpbGUgaXQgYWZyZXNoCj4gaGF2ZSBi ZWVuIGZhaWxpbmcsIGhlbmNlIHRoaXMgcXVlc3Rpb24uIHRoeC4KPgo+IGNoZWNraW5nIGZvciBl bmRuZXRncmVudC4uLiB5ZXMKPiBjaGVja2luZyBmb3Igb3Blbl9kc2hjb25maWcgaW4gLWxkc2hj b25maWcuLi4gbm8KPiBjb25maWd1cmU6IGVycm9yOiBkc2hjb25maWcgbm90IGZvdW5kISEKCkl0 IGxvb2tzIHRvIG1lIGxpa2UgeW91IGhhdmVuJ3QgY29tcGlsZWQgbGliZHNoY29uZmlnIHBlciB0 aGUgaW5zdHJ1Y3Rpb25zIGhlcmU6CgpodHRwOi8vd3d3Lm5ldGZvcnQuZ3IuanAvfmRhbmNlci9z b2Z0d2FyZS9kc2guaHRtbC5lbgoKT3IsIGl0IGNhbid0IGZpbmQgbGliZHNoY29uZmlnICh3aGVy ZSBpdCBpbnN0YWxscyBieSBkZWZhdWx0IGRlcGVuZHMgb24gdGhlCmJlaGF2aW9yIG9mIHRoZSBs aWJkc2hjb25maWcgYnVpbGQpLCBpbiB3aGljaCBjYXNlIHlvdSBzaG91bGQgc2V0IENGTEFHUwph bmQgTERGTEFHUyB0byBoZWxwIGl0IGZpbmQgbGliZHNoY29uZmlnLgoKV2hldGhlciBpdCBjb21w aWxlcyBjbGVhbmx5L3J1bnMgcHJvcGVybHkgb24gYSBtb2Rlcm4gRnJlZUJTRCBpcwpxdWVzdGlv bmFibGUsIHNpbmNlIHRoaXMgY29kZSBoYXNuJ3QgYmVlbiB0b3VjaGVkIHNpbmNlIDIwMDUuIEJ1 dCB5b3VyCmNvbXBpbGUgZXJyb3IgZG9lcyBub3QgYXBwZWFyIHRvIGJlIGEgcHJvYmxlbSB3aXRo IEZyZWVCU0QuCgpKb3NoCg== From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 01:11:18 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 34F3B106564A for ; Tue, 25 Nov 2008 01:11:18 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from mail-gx0-f12.google.com (mail-gx0-f12.google.com [209.85.217.12]) by mx1.freebsd.org (Postfix) with ESMTP id 0FC738FC1D for ; Tue, 25 Nov 2008 01:11:16 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by gxk5 with SMTP id 5so118969gxk.19 for ; Mon, 24 Nov 2008 17:11:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=+ENTOrkzng1wEZQFl7S4pJboNr/WDCGP0jdv2GtVM0Y=; b=sy23WyiF7W0+GZPAeg4UswESm6wa63gxfgdQtyO/Z64yWh2hkrXut08qofPZbYFTM9 2NOy43uTOqbBrNCKNS+GUTOZ4nYiJFX1SZkibGXnTWZEOqqeuaGg0orskhnFHXC5CyY2 VJkwhnhyqrh1uSP00sJvy17J03tN0YDhASe20= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:to:subject:cc:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:references; b=cmp4jF+cFfY2Eq6RjbwQ2sHsvE3kRiZkXGsOooEZ/hvad8DScPyW6nQCpsYNIlQdMO 4PmYawq5GUVcatR0k9tg1vODscDRcwdJsQd6MeJe/Enve6hjmSStGR/shgAoIvKPdc48 gFCCVm2uuu1Dj+NZjGsEt3XEYryvbbhyPQIf8= Received: by 10.150.145.20 with SMTP id s20mr8129133ybd.126.1227575473653; Mon, 24 Nov 2008 17:11:13 -0800 (PST) Received: by 10.150.218.5 with HTTP; Mon, 24 Nov 2008 17:11:13 -0800 (PST) Message-ID: <8cb6106e0811241711n1166fe67g6e126950ac1c29a9@mail.gmail.com> Date: Mon, 24 Nov 2008 20:11:13 -0500 From: "Josh Carroll" To: "Tom Marchand" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> <20081124200044.A1528@wojtek.tensor.gdynia.pl> Cc: FreeBSD Mailing List Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 01:11:18 -0000 > I always thought AMD was Intel compatible. In this case, it's the reverse. Intel's EM64T extensions are compatible with AMD's X86-64. Josh From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 03:36:21 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FBC5106564A for ; Tue, 25 Nov 2008 03:36:21 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (ns1.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id 3EA1E8FC1C for ; Tue, 25 Nov 2008 03:36:21 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id mAP3agDq096192 for ; Mon, 24 Nov 2008 19:36:42 -0800 (PST) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Mon, 24 Nov 2008 19:36:12 -0800 (PST) Date: Mon, 24 Nov 2008 19:36:12 -0800 From: Gary Kline To: FreeBSD Mailing List Message-ID: <20081125033604.GA74213@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22 years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: Subject: w1913 words database X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 03:36:21 -0000 I've spent the day fixing countless small errors in the w1913 database of words. This in prep of my winding up with two or three specialized databases of my own creation. [[if anybody is interested, i'll share, naturally.]] Anybody who of a point person to submit this updated batabase too? I don't see any addresses in the www.dict.org site. thanks for suggestions. gary -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 04:58:15 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42C1C106564A for ; Tue, 25 Nov 2008 04:58:15 +0000 (UTC) (envelope-from ijeff@sandbox.ca) Received: from sandbox.ca (zaphod.sandbox.ca [199.246.50.125]) by mx1.freebsd.org (Postfix) with ESMTP id C822A8FC0C for ; Tue, 25 Nov 2008 04:58:14 +0000 (UTC) (envelope-from ijeff@sandbox.ca) Received: from sandbox.ca (localhost.sandbox.ca [127.0.0.1]) by sandbox.ca (8.12.6/8.12.6) with ESMTP id mAP4wASK055283 for ; Mon, 24 Nov 2008 23:58:10 -0500 (EST) (envelope-from ijeff@sandbox.ca) Received: from localhost (ijeff@localhost) by sandbox.ca (8.12.6/8.12.6/Submit) with ESMTP id mAP4w7J9055280 for ; Mon, 24 Nov 2008 23:58:10 -0500 (EST) Date: Mon, 24 Nov 2008 23:58:07 -0500 (EST) From: Ian Jefferson To: FreeBSD Questions Mailing List In-Reply-To: Message-ID: <20081124235456.Y55229@sandbox.ca> References: <8675CD0C-6DDC-4472-A3CA-B3EA3F4A43C7@sandbox.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Status: No, score=-98.4 required=5.0 tests=BAYES_50, DNS_FROM_SECURITYSAGE,FORGED_RCVD_HELO,SPF_HELO_PASS,SPF_PASS, USER_IN_WHITELIST autolearn=no version=3.1.0-igj_main_2005_08_07 X-Spam-Checker-Version: SpamAssassin 3.1.0-igj_main_2005_08_07 (2005-09-13) on zaphod.sandbox.ca Subject: Re: FreeBSD on a Mac Mini Intel? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 04:58:15 -0000 On Mon, 24 Nov 2008, Andrew Gould wrote: > On Sun, Nov 23, 2008 at 9:08 AM, John Almberg wrote: > > > On Nov 21, 2008, at 11:42 PM, Ian Jefferson wrote: > > > > Is anyone running FreeBSD on a Mac Mini Intel? > >> > >> > > Ian, > > You could always test it using VMWare Fusion........and then let us know > ;-) > Er, Gee thanks. I'll just have a word with the VMware guys about fully abastracting the mini in software... back in a jiffy.... ;-) Ok any comment about other low power platforms? I'm sorely tempted to just buy one (mini-intel) and promise to write up the results on some web page somewhere. From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 04:59:34 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A235B10656F6 for ; Tue, 25 Nov 2008 04:59:34 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.224]) by mx1.freebsd.org (Postfix) with ESMTP id 70D1E8FC1D for ; Tue, 25 Nov 2008 04:59:34 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so2328615rvf.43 for ; Mon, 24 Nov 2008 20:59:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:to:content-type :content-transfer-encoding:mime-version:subject:date:x-mailer:from; bh=of5cQDzu7jg/jzyl2EhBOv62N3E8EUz5r4HeCI/LJOU=; b=EEUVNBgxQuSVGux2PEFx2ul+O0R1sgjgFIRvFi8aGJijBwfFepwwI2z36gZHPHFVBo ZqI/ocEbpzCCv+5aAlWkZqIHR8foT4Vihfb76YR7uDt0hu6Y9EguBZ2ZO95GEW/b5ElK OY0RO0zAinALGD7szGTH9agIPTZOqbi8VPEg8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:to:content-type:content-transfer-encoding:mime-version :subject:date:x-mailer:from; b=Xy6NNbP4kK78gZMVebQQWLesWTVcNtCzZraIFdzMWiPsdmExOCfwUPwASTwQk6p5yB 89eP1vLZog/3uFTBhgdMatNM9BzwHNRL6lcitbXujrTntbe//q9i7hWuhAW2iBA30J0q cFJ+93rfAYweAMBThczVg7WecpSa9BonsyEsA= Received: by 10.114.133.1 with SMTP id g1mr2424212wad.21.1227587540509; Mon, 24 Nov 2008 20:32:20 -0800 (PST) Received: from ?192.168.10.3? (adsl-99-139-48-85.dsl.pltn13.sbcglobal.net [99.139.48.85]) by mx.google.com with ESMTPS id m26sm7617479pof.3.2008.11.24.20.32.18 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 24 Nov 2008 20:32:19 -0800 (PST) Message-Id: To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Date: Mon, 24 Nov 2008 20:35:42 -0800 X-Mailer: Apple Mail (2.929.2) From: Garrett Cooper Subject: `Serial connectivity' with something other than sio*? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 04:59:34 -0000 Hi guys, With more motherboard vendors venturing away from RS232 serial ports to firewire, I was wondering if anyone has ever configured either a firewire or usb to serial / usb adapter between two machines to emulate a serial console. This is a question I'd like to get an answer to so I can start working on a means to indirectly access boxes for the FreeBSD project to avoid the kludginess of manually testing things, or at least manually power cycling devices and booting targets, whenever possible. The chapter I'm referring to in the handbook is: . Thanks! -Garrett From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 05:19:27 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E3881065675 for ; Tue, 25 Nov 2008 05:19:27 +0000 (UTC) (envelope-from bill@ayn.mi.celestial.com) Received: from ayn.mi.celestial.com (hayek.celestial.com [192.136.111.12]) by mx1.freebsd.org (Postfix) with ESMTP id 263128FC1D for ; Tue, 25 Nov 2008 05:19:26 +0000 (UTC) (envelope-from bill@ayn.mi.celestial.com) Received: from localhost (localhost [127.0.0.1]) by ayn.mi.celestial.com (Postfix) with ESMTP id 0B838686147AA; Mon, 24 Nov 2008 21:19:26 -0800 (PST) X-Virus-Scanned: amavisd-new at mi.celestial.com Received: from ayn.mi.celestial.com ([127.0.0.1]) by localhost (ayn.mi.celestial.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id KHFpzQOzy4-v; Mon, 24 Nov 2008 21:19:25 -0800 (PST) Received: by ayn.mi.celestial.com (Postfix, from userid 203) id D8CFC6854F1CE; Mon, 24 Nov 2008 21:19:25 -0800 (PST) Date: Mon, 24 Nov 2008 21:19:25 -0800 From: Bill Campbell To: freebsd-questions@freebsd.org Message-ID: <20081125051925.GB31920@ayn.mi.celestial.com> Mail-Followup-To: freebsd-questions@freebsd.org References: <8675CD0C-6DDC-4472-A3CA-B3EA3F4A43C7@sandbox.ca> <20081124235456.Y55229@sandbox.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081124235456.Y55229@sandbox.ca> User-Agent: Mutt/1.5.18 OpenPKG/% (2008-05-17) Subject: Re: FreeBSD on a Mac Mini Intel? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@celestial.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 05:19:27 -0000 On Mon, Nov 24, 2008, Ian Jefferson wrote: > > >On Mon, 24 Nov 2008, Andrew Gould wrote: > >> On Sun, Nov 23, 2008 at 9:08 AM, John Almberg wrote: >> >> > On Nov 21, 2008, at 11:42 PM, Ian Jefferson wrote: >> > >> > Is anyone running FreeBSD on a Mac Mini Intel? >> >> >> >> >> >> Ian, >> >> You could always test it using VMWare Fusion........and then let us know > >Er, Gee thanks. I'll just have a word with the VMware guys about fully >abastracting the mini in software... back in a jiffy.... ;-) There's no reason one couldn't run all the normal LAMPS stuff on the Mac Mini with OS X. I have apache, postgresql, mysql, php, python, perl, etc. running on my PPC Mac Mini, all built from source. I haven't tried FreeBSD on the Macs. The most adventurous I've been so far is to put Yellowdog Linux on an old 450MhZ G4 tower, mostly to see how it worked -- pretty much the same as our other RPM-based systems running CentOS and SuSE. Bill -- INTERNET: bill@celestial.com Bill Campbell; Celestial Software LLC URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way Voice: (206) 236-1676 Mercer Island, WA 98040-0820 Fax: (206) 232-9186 We'll show the world we are prosperous, even if we have to go broke to do it. -- Will Rogers From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 05:40:46 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B32EB1065673 for ; Tue, 25 Nov 2008 05:40:46 +0000 (UTC) (envelope-from atlantos@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by mx1.freebsd.org (Postfix) with ESMTP id 401338FC08 for ; Tue, 25 Nov 2008 05:40:45 +0000 (UTC) (envelope-from atlantos@gmail.com) Received: by ug-out-1314.google.com with SMTP id 30so945891ugs.39 for ; Mon, 24 Nov 2008 21:40:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:from:reply-to:to :subject:date:mime-version:message-id:content-transfer-encoding; bh=/0+3OZQDE0MJvRdZrSzjK8wppZbeoUZyaiQKtO+z/Lk=; b=DDjJs562d+rP4hNY1XFHP0FNblDVw0rwfR4ld6LF2qlYXy9xe0yYY93eWAzMlq09JI fVpOneGJ60X2N0zrhrLm2g/EJVEhpDMkdw2e3VQnLRjTjSzO7OMMluUz0v1wJSC36dMc bpo/kdZn0TyeTkRX/E+jM5aBEXo0+hfGgIbBQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:from:reply-to:to:subject:date:mime-version:message-id :content-transfer-encoding; b=oyZw9wF+SHrbCnaQAtHeetNlS0tNqOyXxE7nhT/5KXqTFUtdE4uXn1Zvh65QcdL/Lh wyq3w62b3K2rBYUrTb/JPS7XnMUHxko3g0zi/KJr4/aWZKAD1fMPRO7Cy4PhT4MK9ZUx PcFOzHXyRfj3yB9D9Mkj6fBoRfn9jQmU6ddiM= Received: by 10.67.106.6 with SMTP id i6mr2377616ugm.49.1227589902650; Mon, 24 Nov 2008 21:11:42 -0800 (PST) Received: from localhost (mm-114-254-57-86.leased.line.mgts.by [86.57.254.114]) by mx.google.com with ESMTPS id e23sm6140465ugd.46.2008.11.24.21.11.39 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 24 Nov 2008 21:11:41 -0800 (PST) Content-Type: text/plain; charset="koi8-r" From: Viktar Sakovich To: freebsd-questions@freebsd.org Date: Tue, 25 Nov 2008 07:11:35 +0200 MIME-Version: 1.0 Message-Id: <08112507113500.01119@localhost> Content-Transfer-Encoding: 8bit Subject: Openssh + pam_krb5 doesn't establish credential cache. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: atlantos@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 05:40:46 -0000 Hi. I trying to setup ssh+pam_krb5 for authentication and establishment of credential cache on FreeBSD 6.3 against MIT kerberos. Everything is ok with authentication, but not with establishment of credential cache by pam_krb5. I tried different combinations of modules in /etc/pam.d/sshd starting from default /usr/src/etc/pam.d/sshd with uncommented pam_krb5.so. Also tried to use "UsePrivilegeSeparation no" in /etc/ssh/sshd_config. In kdc log file I see during user login: Nov 24 15:22:34 kdchost krb5kdc[20876]: AS_REQ (2 etypes {1 16}) 10.34.22.15: ISSUE: authtime 1227536554, etypes {rep=1 tkt=16 ses=1}, user@REALM for krbtgt/REALM@REALM Nov 24 15:22:34 kdchost krb5kdc[20876]: TGS_REQ (2 etypes {1 16}) 10.34.22.15: ISSUE: authtime 1227536554, etypes {rep=1 tkt=16 ses=1}, user@REALM for host/bsdhost@REALM After user login there are no ccache files in usual location /tmp/krb5cc_uid and KRB5CCNAME is not set. But user can establish ccache manually using /usr/bin/kinit. Search on freebsd lists gave threads with discussion of above problem dated up to 2003 without any suggestion how to resolve it. From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 06:05:01 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BA6B1065670 for ; Tue, 25 Nov 2008 06:05:01 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 32BA18FC1D for ; Tue, 25 Nov 2008 06:05:00 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from [10.0.10.6] ([202.69.174.150]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.3959); Mon, 24 Nov 2008 22:03:53 -0800 Message-ID: <492B95AE.4080608@a1poweruser.com> Date: Tue, 25 Nov 2008 14:05:34 +0800 From: Fbsd1 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Mike Price References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 25 Nov 2008 06:03:53.0607 (UTC) FILETIME=[98368970:01C94EC3] X-Sender: fbsd1@a1poweruser.com Cc: freebsd-questions@freebsd.org Subject: Re: How do I permanently set the numerical ip in dmesg? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 06:05:01 -0000 Mike Price wrote: > How do I permanently set the numerical ip in dmesg? > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > If you mean the ip address to get from your isp? You have to purchase an permanently assigned ip address from your ISP. If you mean ip address on a private Lan. You do that in your gateway dhcp server. From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 06:16:46 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F8E71065672 for ; Tue, 25 Nov 2008 06:16:46 +0000 (UTC) (envelope-from zszalbot@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.29]) by mx1.freebsd.org (Postfix) with ESMTP id DDCDC8FC1D for ; Tue, 25 Nov 2008 06:16:45 +0000 (UTC) (envelope-from zszalbot@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so1001303yxb.13 for ; Mon, 24 Nov 2008 22:16:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=5PXzhdFkyeLus/14aD+EMcSmFPSR2ux8Vn9xg/UhziU=; b=ZFz1lja74IKR/81GeWptf3bzHroMOk/TfyA0fLSlzH0L8HM2Ur6rZMU+LQep9ABg0f WVbyheTRyOPrn5L9gJokfyUvTXlgSZVQdJkNs0PLdZrREn7JqGVvTZtFlj7rHQ5FX2DM WO2VoIVHIK9Mfpg83NzzeE1AUpdnmzQtgwdFc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=e9/PPEgv2g6Qk6GKgIdI5M6VWuUxXxIq1Sb9djwr067lBRGCSAG+IxLtEN1NRyJFEz 7B5B6Es7lU2fAOWf8Rhvv5wbOvEWaQ80Hzq1uMMIM1VR8jC2S3sQQElQhT27RbZ3uuNz YYx7k3x8sp8CUpRDGIB/Zc/nCVaZQXEVdoi9Q= Received: by 10.64.48.8 with SMTP id v8mr4376449qbv.78.1227593804432; Mon, 24 Nov 2008 22:16:44 -0800 (PST) Received: by 10.65.81.2 with HTTP; Mon, 24 Nov 2008 22:16:44 -0800 (PST) Message-ID: <94136a2c0811242216i4e803e23n5ab9cc4e8003101f@mail.gmail.com> Date: Tue, 25 Nov 2008 07:16:44 +0100 From: "Zbigniew Szalbot" To: "User Questions" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: freebsd-update and sources / custom kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 06:16:46 -0000 Hello, I hope you can clear my doubts. When I use freebsd-update to update a machine with a custom kernel, do I need to fetch sources before I rebuild the kernel or are they fetched by freebsd-update utility? Many thanks! -- Zbigniew Szalbot Groucho Marx - "Anyone who says he can see through women is missing a lot." From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 06:21:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 669861065670 for ; Tue, 25 Nov 2008 06:21:23 +0000 (UTC) (envelope-from on@cs.ait.ac.th) Received: from mail.cs.ait.ac.th (mail.cs.ait.ac.th [192.41.170.16]) by mx1.freebsd.org (Postfix) with ESMTP id B493B8FC14 for ; Tue, 25 Nov 2008 06:21:21 +0000 (UTC) (envelope-from on@cs.ait.ac.th) Received: from cs.ait.ac.th (ufo.cs.ait.ac.th [192.41.170.14]) by mail.cs.ait.ac.th (8.13.1/8.13.1) with ESMTP id mAP6KJ0F065316 for ; Tue, 25 Nov 2008 13:20:19 +0700 (ICT) (envelope-from on@cs.ait.ac.th) Received: from 202.62.105.146 ([202.62.105.146]) by wwws.cs.ait.ac.th (Horde MIME library) with HTTP; Tue, 25 Nov 2008 13:21:20 +0700 Message-ID: <20081125132120.p65bo336048kcwo0@wwws.cs.ait.ac.th> Date: Tue, 25 Nov 2008 13:21:20 +0700 From: on@cs.ait.ac.th To: User Questions MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.4) X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Subject: Ipfw forward X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 06:21:23 -0000 Hi, I'd like to have a clarification about the forward command in ipfw. From what I read in the man, I understand that on hitting a fwd rule, the lookup in the routing table will be done according to the IP address in the fwd rule, and not according to the IP destination address of the packet. AM I right? Best regards, Olivier ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program. From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 07:43:55 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09C2F1065672 for ; Tue, 25 Nov 2008 07:43:55 +0000 (UTC) (envelope-from jotawski@gmail.com) Received: from fk-out-0910.google.com (fk-out-0910.google.com [209.85.128.189]) by mx1.freebsd.org (Postfix) with ESMTP id 5B0298FC16 for ; Tue, 25 Nov 2008 07:43:54 +0000 (UTC) (envelope-from jotawski@gmail.com) Received: by fk-out-0910.google.com with SMTP id k31so2895830fkk.11 for ; Mon, 24 Nov 2008 23:43:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=cIMF3vguqY+kYI7IjBJ389BLIXRkOEAIFAlTKosfWJ8=; b=G6UkrwlajMwPhnBm9ALpld3HvQSHx4j8NgsGP3UZr9pAdaGie1ePPRIHNA76dqGx/I z9BtFL7hSNb8E1LCU18UwbN0rKGiaH1wedbLrxYjPxq/cnzMMnMM3qADSupbVQRRWn8/ HdE1mbFfplR4CrAavo1nLTVyOsIxv9Q0LMzzU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=ibqiSFgzrvqzUdkVMXVh1LATafA2AOrKKJaQhjhUlWS5x/JEkAXYMMp0SG3bwpBREo Rr3UTUGwX2h5Plxintw/7ZvBlZJSYTPogFUCZG0dIX4s3v5pwFSqfUNOd+aQ6im8aQyV B+4ADoVrPGObPXQUvZ5xXQozMSdQ/lXuPUMLk= Received: by 10.181.58.9 with SMTP id l9mr1439908bkk.98.1227599033032; Mon, 24 Nov 2008 23:43:53 -0800 (PST) Received: by 10.181.31.3 with HTTP; Mon, 24 Nov 2008 23:43:52 -0800 (PST) Message-ID: Date: Tue, 25 Nov 2008 14:43:52 +0700 From: "fire jotawski" To: freebsd-questions@freebsd.org In-Reply-To: <44prkljajq.fsf@be-well.ilk.org> MIME-Version: 1.0 References: <4463n0j3xu.fsf@be-well.ilk.org> <44prkljajq.fsf@be-well.ilk.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: cvsup: local X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 07:43:55 -0000 On Tue, Nov 25, 2008 at 12:31 AM, Lowell Gilbert < freebsd-questions-local@be-well.ilk.org> wrote: > "fire jotawski" writes: > > > On Thu, Nov 6, 2008 at 9:59 PM, Lowell Gilbert < > > freebsd-questions-local@be-well.ilk.org> wrote: > > > >> "fire jotawski" writes: > >> > >> > i have my small box, 10.3.1.25 ip, that cvsup-ed files from > repository > >> into > >> > it. it use cvs-supfile in /usr/share/examples/cvsup/ to collect > files. > >> > now that i want my other machine to cvsup 6.2-release source files > from > >> the > >> > one mentioned above. > >> > > >> > my trial was > >> > > >> > cvsupd -b /var/db -c sup > >> > > >> > for box, 10.3.1.25 ip, and for other machine > >> > > >> > cvsup -g -L 2 -h 10.3.1.25 sup-file > >> > > >> > what i got was 'Server message: Unknown collection "src-all" ' > message. > >> > and later on > >> > > >> > Running > >> > Skipping collection src-all/cvs > >> > Skipping collection doc-all/cvs > >> > Shutting down connection to server > >> > Finished successfully > >> > > >> > very strange indeed. > >> > > >> > any helps and hints in setting cvsup server would highly be > appreciated. > >> > >> To run cvsupd, you need the whole cvs tree for the collections you're > >> handling, not just the checked-out files. > >> > >> Assuming these machines are attached by a protected network, a better > >> approach (easier, anyway) would probably be to cvsup the changes to > >> just one machine, then NFS-mount that machine's ports tree from the > >> other machine. > >> > >> -- > >> Lowell Gilbert, embedded/networking software engineer, Boston area > >> http://be-well.ilk.org/~lowell/ > > >> > > > > > > thanks indeed and apologized me for postponing answer to all of postings. > > what about cvs then. i did this > > > > cvs -d /home/ncvs checkout ports > > > > and i got some thing quite similar to ports tree indeed. > > What did you think that command was going to do? Do you have a full cvs > ports tree under /home/ncvs? How did you get that? i did cvsup with supfile given in example, /usr/share/examples/cvsup/cvs-supfile, and set base to /var/db and prefix to /home/ncvs as suggested and then cvsup -g -L 2 -h HOST /usr/share/examples/cvsup/cvs-supfile where HOST is the one that run fastest in local area around my country. > > My understanding was that you wanted to put the ports tree on one > machine (call it the "master"), then use it to install ports on other > machines that are local to the master. The way to do that would be to > use cvsup as normal on the master, and build all the ports there. Then > you can use NFS to mount /usr/ports on the other machines, and install > the ports on them as well. To speed things up, you can set WRKDIRPREFIX > to point at local disk space on the client machines. You can even have > the master machine build packages, avoiding the need to build the ports > from source on the clients. > > Does that make sense to you? Do you need it described in more detail? > my real problem is that i can not do cvsup from any machine in my office. but there is no problem at home. so i simply bring my notebook home and do cvsup as above. later on at the office, i want my other machine get /usr/src from my notebook but i can not and that's my problem. and frankly speaking my english is quite poor, i spend the whole week end to understand documents cited. unfortunately, that bring me more problem and that's why i revert back to my instinct with cvs. anyway, i really appreciate all answers to me and still hope that you will give me further helps. with best regards, psr > > Good luck. > -- > Lowell Gilbert, embedded/networking software engineer, Boston area > http://be-well.ilk.org/~lowell/ > From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 08:32:18 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28D0C1065673 for ; Tue, 25 Nov 2008 08:32:18 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: from smtp.mel.people.net.au (smtp.mel.people.net.au [218.214.17.98]) by mx1.freebsd.org (Postfix) with SMTP id 5F2598FC13 for ; Tue, 25 Nov 2008 08:32:17 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: (qmail 32346 invoked from network); 25 Nov 2008 08:32:14 -0000 Received: from unknown (HELO blizzard.dnsalias.org) (218.215.149.80) by smtp.mel.people.net.au with SMTP; 25 Nov 2008 08:32:14 -0000 Received: by blizzard.dnsalias.org (Postfix, from userid 1001) id 36F6B17097; Tue, 25 Nov 2008 19:32:14 +1100 (EST) Date: Tue, 25 Nov 2008 19:32:14 +1100 From: andrew clarke To: Zbigniew Szalbot Message-ID: <20081125083214.GA49865@ozzmosis.com> References: <94136a2c0811242216i4e803e23n5ab9cc4e8003101f@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <94136a2c0811242216i4e803e23n5ab9cc4e8003101f@mail.gmail.com> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: User Questions Subject: Re: freebsd-update and sources / custom kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 08:32:18 -0000 On Tue 2008-11-25 07:16:44 UTC+0100, Zbigniew Szalbot (zszalbot@gmail.com) wrote: > I hope you can clear my doubts. When I use freebsd-update to update a > machine with a custom kernel, do I need to fetch sources before I > rebuild the kernel or are they fetched by freebsd-update utility? freebsd-update will update the kernel sources on the condition that the Components setting is configured correctly in freebsd-update.conf. Normally you'd use: Components src world kernel Then after a successful update, if you're not using the GENERIC kernel, you should rebuild the kernel with your custom settings. After the new kernel is installed you should reboot the machine. From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 10:13:13 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE1A01065673 for ; Tue, 25 Nov 2008 10:13:13 +0000 (UTC) (envelope-from abalour@gmail.com) Received: from mail-qy0-f18.google.com (mail-qy0-f18.google.com [209.85.221.18]) by mx1.freebsd.org (Postfix) with ESMTP id 428198FC0A for ; Tue, 25 Nov 2008 10:13:13 +0000 (UTC) (envelope-from abalour@gmail.com) Received: by qyk11 with SMTP id 11so2239178qyk.19 for ; Tue, 25 Nov 2008 02:13:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :sender:to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references :x-google-sender-auth; bh=Y0fdQApbboMVfI/P7bya5JwZYS4T11u/u57dwbFaljw=; b=KhGDVweOrv9MGyTvMVXjwTULFBnf6NrtfYgM8cI1S2bZBIYU4vPDv3KlUY2Ulk+dAR 4zwoBKUlgGFWUpv8FzDZ1zFDZSv+QdencctPg5Tj8jHyzXuVL0taKxhw6bpQURWBOzzd 6L19GuyiRkLpmNKvD5RSlqoaffwUjwSNg2IS8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:sender:to:subject:cc:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:references:x-google-sender-auth; b=VdxIrhgZ6OOd7lFxc+X665qKIyL1anIKb+DKSZk64keSW4as0gtxqitKcX8sQrpyHP jRXLs7TdPzX3rWbTcB53vG9FHexjxaHo96ihCke2422Qf1Pm+18kx2U9YuckFzpsQ67Z 03t2mYbg/GyNTnITshgZYSXdv87GUgMAmRGQI= Received: by 10.214.26.17 with SMTP id 17mr3403966qaz.54.1227607992430; Tue, 25 Nov 2008 02:13:12 -0800 (PST) Received: by 10.214.113.3 with HTTP; Tue, 25 Nov 2008 02:13:12 -0800 (PST) Message-ID: <35f70db10811250213v152668fao64d98ed433023a79@mail.gmail.com> Date: Tue, 25 Nov 2008 12:13:12 +0200 From: "Ross Cameron" Sender: abalour@gmail.com To: "Chris Maness" In-Reply-To: <492B1361.4050604@chrismaness.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> <20081124200044.A1528@wojtek.tensor.gdynia.pl> <492B0275.6000300@chrismaness.com> <20081124200755.GA3659@slackbox.xs4all.nl> <492B1361.4050604@chrismaness.com> X-Google-Sender-Auth: dd1850b9ca269e47 Cc: Roland Smith , freebsd-questions@freebsd.org, Wojciech Puchar Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ross.cameron@linuxpro.co.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 10:13:13 -0000 On Mon, Nov 24, 2008 at 10:49 PM, Chris Maness wrote: > Another thought. Would a Quad Core chip help with compiling applications -- > or would it be the same as a dual core or single core chip running at the > same clock speed because the compiler is running single thread? Would php > processing be benefited by quad a quad core over a dual core. If not, then > I guess I should just purchase a dual core chip and save the cabbage up > front and wattage to boot. On the compiling front, when running "make" do this: make -j to speed up ure compiles. Ans no it probably wouldn't speed up individual runs of Php scrips/apps BUT it will allow you to run more parallel instances without a performance hit. From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 10:19:35 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ACC891065673 for ; Tue, 25 Nov 2008 10:19:35 +0000 (UTC) (envelope-from abalour@gmail.com) Received: from mail-qy0-f18.google.com (mail-qy0-f18.google.com [209.85.221.18]) by mx1.freebsd.org (Postfix) with ESMTP id 5986A8FC2F for ; Tue, 25 Nov 2008 10:19:35 +0000 (UTC) (envelope-from abalour@gmail.com) Received: by qyk11 with SMTP id 11so2240925qyk.19 for ; Tue, 25 Nov 2008 02:19:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :sender:to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references :x-google-sender-auth; bh=GgktL++Wdv5VkcHYI6Cki2ZYiHnQ3idtvvlLQOt7mhI=; b=am0LQ3ZnIV2L+UzUm2XGer5t6DX//qQFANYIJU+TehaodJwej0n/8MIR3o2a8imhqY lMWuhoLzrM5dYme3I1h4r+AsJS56FH/exx7D22WVOlT2gWoJvf0N3ZZn3dD+cDGodvbE 7JZibhPUwS34ChSH558PgQPBIh6+o7Vv0HBm0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:sender:to:subject:cc:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:references:x-google-sender-auth; b=xVLJNrE8cte0hg912ozPxnNBkQP5ES0jejdGHOGggPf0/KOYcRupLveSBD+MCD3Gmv iyGlj1arhsxNEcPUv4dokqJDftfDTWc3c4+y2xxktK6BSWATuUmGLI8tflSRrA0UgBgj PdX9j/r7bhZ+Y5zR+KGzUV2Dk4IJeb712xMPE= Received: by 10.215.39.14 with SMTP id r14mr3405085qaj.80.1227608374624; Tue, 25 Nov 2008 02:19:34 -0800 (PST) Received: by 10.214.113.3 with HTTP; Tue, 25 Nov 2008 02:19:34 -0800 (PST) Message-ID: <35f70db10811250219t71677dadn76d43cebcda1037f@mail.gmail.com> Date: Tue, 25 Nov 2008 12:19:34 +0200 From: "Ross Cameron" Sender: abalour@gmail.com To: josh.carroll@gmail.com In-Reply-To: <8cb6106e0811241711n1166fe67g6e126950ac1c29a9@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20081112100640.GA21560@icarus.home.lan> <492AF564.5050605@chrismaness.com> <20081124200044.A1528@wojtek.tensor.gdynia.pl> <8cb6106e0811241711n1166fe67g6e126950ac1c29a9@mail.gmail.com> X-Google-Sender-Auth: 0d78742b62b0736c Cc: Tom Marchand , FreeBSD Mailing List Subject: Re: Xeon Quad Core (Was: Server Freezing Solid) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ross.cameron@linuxpro.co.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 10:19:35 -0000 On Tue, Nov 25, 2008 at 3:11 AM, Josh Carroll wrote: >> I always thought AMD was Intel compatible. > > In this case, it's the reverse. Intel's EM64T extensions are compatible > with AMD's X86-64. Also don't forget that SSE5 instruction set for x86 was entirely designed by AMD. http://developer.amd.com/cpu/SSE5/Pages/default.aspx From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 10:20:31 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E620E1065688 for ; Tue, 25 Nov 2008 10:20:31 +0000 (UTC) (envelope-from PublicServicePartnershipLtd_769894@dotmailer.co.uk) Received: from mta23.mta.dotmailer.co.uk (mta54.mta.dotmailer.co.uk [80.87.10.54]) by mx1.freebsd.org (Postfix) with ESMTP id 7F2548FC3C for ; Tue, 25 Nov 2008 10:20:31 +0000 (UTC) (envelope-from PublicServicePartnershipLtd_769894@dotmailer.co.uk) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=gen-key1; d=dotmailer.co.uk; h=From:To:Date:Subject:MIME-Version:Content-Type:List-Unsubscribe:Message-ID; i=PublicServicePartnershipLtd_769894@dotmailer.co.uk; bh=yNA3SYpblmEQLoiEtRCgzS7R3GQ=; b=e1iqqYWkzkXtO05EfdqyMCAcvNGEFtwJOtZiuAjRHjN2eoifYLfofqAYrWm8zL3jj6yuABrdiqa7 gZ/ZxT7FeQ== DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=gen-key1; d=dotmailer.co.uk; b=DXKyhzYegzHm5U6QO9sSc+EHXcWRNa0IIWSvVwSUPgUTZdPeV398iykADSuBxy7xHs2lpqh+IIO8 h+IO6t3R3Q==; Received: from bluemax (80.87.6.2) by mta23.mta.dotmailer.co.uk (PowerMTA(TM) v3.5r10) id h5f8n60k80ka for ; Tue, 25 Nov 2008 09:51:45 +0000 (envelope-from ) From: "Mike Cross" To: "freebsd-questions@freebsd.org" Date: Tue, 25 Nov 2008 09:51:19 +0000 MIME-Version: 1.0 X-Mailer: dotMailer X-EMdotMailDroidID: 4 X-EMdotMailID: 443857102 Message-ID: Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Emailing to the Public Sector Made Easy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 10:20:32 -0000 From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 10:22:53 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F80F1065670 for ; Tue, 25 Nov 2008 10:22:53 +0000 (UTC) (envelope-from abalour@gmail.com) Received: from mail-qy0-f18.google.com (mail-qy0-f18.google.com [209.85.221.18]) by mx1.freebsd.org (Postfix) with ESMTP id 44B078FC1A for ; Tue, 25 Nov 2008 10:22:53 +0000 (UTC) (envelope-from abalour@gmail.com) Received: by qyk11 with SMTP id 11so2241846qyk.19 for ; Tue, 25 Nov 2008 02:22:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :sender:to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references :x-google-sender-auth; bh=pSwnfhpaqUNelAvhTYUijAp6zWEW+3WwQtAkvmnp/kU=; b=Hnu7s0FPcZvs5AtM4rU3zLAHwxGH8vzfcaJ1fSkRBpbWvgMMMxEm3aZ0pAJmwy+diH tFPrmrg//V6RhRT2N+8OiZsembfrouWLnuUdOvgATQRg5XEWrWnrEImRtZ50kAbIwO96 MAEk/Puk0OBKNYubwoAndP7L4wsueRtLk62VU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:sender:to:subject:cc:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:references:x-google-sender-auth; b=xtRpQISRMIVKEtLIjKqIS6Jw7+Ym9l42/tEJ0ZSywK61HutjllHwFt/zVkyc+xSUSe V6YZVJuEZae60KeWPfYW3l89uCxLCzff/hTtqBz1NLerN3mX+5EJ+aKnLgi1cc6VLK+u Gpc/7d3TmnokH45/dUE76XI6K+KM7srz6qUyw= Received: by 10.214.11.11 with SMTP id 11mr3392698qak.308.1227608572597; Tue, 25 Nov 2008 02:22:52 -0800 (PST) Received: by 10.214.113.3 with HTTP; Tue, 25 Nov 2008 02:22:52 -0800 (PST) Message-ID: <35f70db10811250222n1842de30qc271b7b73d953fcb@mail.gmail.com> Date: Tue, 25 Nov 2008 12:22:52 +0200 From: "Ross Cameron" Sender: abalour@gmail.com To: "Kelly Jones" In-Reply-To: <26face530811221316y5be5bf40ra5c38f389f554ca1@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <26face530811221316y5be5bf40ra5c38f389f554ca1@mail.gmail.com> X-Google-Sender-Auth: d360ffadde109b24 Cc: freebsd-questions@freebsd.org Subject: Re: Unix program that sends email directly using MX record X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ross.cameron@linuxpro.co.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 10:22:53 -0000 Sendmail/Postfix/Exim/et al should suffice. Take ure pick and use the one who's conf file you prefer. On Sat, Nov 22, 2008 at 11:16 PM, Kelly Jones wrote: > What Unix program sends email directly, using the MX record of the > recipient, instead of using sendmail or an installed MTA? > > I realize I could tweak sendmail.cf/etc to do this, but that's not > working in my (fairly unusual) special situation. > > I also realize that sending email directly is normally "bad", but I'm > testing something. > > -- > We're just a Bunch Of Regular Guys, a collective group that's trying > to understand and assimilate technology. We feel that resistance to > new ideas and technology is unwise and ultimately futile. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 10:28:21 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D1B51065686 for ; Tue, 25 Nov 2008 10:28:21 +0000 (UTC) (envelope-from PublicServicePartnershipLtd_769894@dotmailer.co.uk) Received: from mta19.mta.dotmailer.co.uk (mta19.mta.dotmailer.co.uk [80.87.10.19]) by mx1.freebsd.org (Postfix) with ESMTP id C38C68FC18 for ; Tue, 25 Nov 2008 10:28:20 +0000 (UTC) (envelope-from PublicServicePartnershipLtd_769894@dotmailer.co.uk) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=gen-key1; d=dotmailer.co.uk; h=From:To:Date:Subject:MIME-Version:Content-Type:List-Unsubscribe:Message-ID; i=PublicServicePartnershipLtd_769894@dotmailer.co.uk; bh=Qzkyn/tHDV7RglPUiVZY7yblMvE=; b=XF2FkEjyF6ypraM0PmE8PktVFrU9+oFge/Xp3yYuEFcO3kZc0VrKlQGGknHvP49hkHyunILtVEM5 wv4oi2n7rA== DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=gen-key1; d=dotmailer.co.uk; b=sMfRRY8tkaTKDzZ124URtH/VJBNfO1V8w7HQEKKg0dIH/ggq1M2gmcoy5JINw7A431O+WP/eKrFw 3Tp1Th7Iww==; Received: from bluemax (80.87.6.2) by mta19.mta.dotmailer.co.uk (PowerMTA(TM) v3.5r10) id h5f9kg0k80ku for ; Tue, 25 Nov 2008 09:51:41 +0000 (envelope-from ) From: "Mike Cross" To: "questions@freebsd.org" Date: Tue, 25 Nov 2008 09:50:40 +0000 MIME-Version: 1.0 X-Mailer: dotMailer X-EMdotMailDroidID: 4 X-EMdotMailID: 443858786 Message-ID: Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Emailing to the Public Sector Made Easy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 10:28:21 -0000 From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 11:07:47 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72CFF106564A for ; Tue, 25 Nov 2008 11:07:47 +0000 (UTC) (envelope-from m0rchand@comcast.net) Received: from QMTA08.westchester.pa.mail.comcast.net (qmta08.westchester.pa.mail.comcast.net [76.96.62.80]) by mx1.freebsd.org (Postfix) with ESMTP id 1E89D8FC1F for ; Tue, 25 Nov 2008 11:07:46 +0000 (UTC) (envelope-from m0rchand@comcast.net) Received: from OMTA06.westchester.pa.mail.comcast.net ([76.96.62.51]) by QMTA08.westchester.pa.mail.comcast.net with comcast id jP7R1a00716LCl058P7mYS; Tue, 25 Nov 2008 11:07:46 +0000 Received: from [10.0.1.200] ([76.122.47.225]) by OMTA06.westchester.pa.mail.comcast.net with comcast id jP7m1a0024rWgJL3SP7myy; Tue, 25 Nov 2008 11:07:46 +0000 X-Authority-Analysis: v=1.0 c=1 a=Xb05XWRKVooA:10 a=ER283r4fVeMCdmZMND0A:9 a=awc_KanlVAGF4NawJGDKsvyDD0oA:4 a=nH9dgipr990A:10 a=WuK_CZDBSqoA:10 Message-Id: From: Tom Marchand To: FreeBSD Mailing List In-Reply-To: <20081125051925.GB31920@ayn.mi.celestial.com> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Date: Tue, 25 Nov 2008 06:07:45 -0500 References: <8675CD0C-6DDC-4472-A3CA-B3EA3F4A43C7@sandbox.ca> <20081124235456.Y55229@sandbox.ca> <20081125051925.GB31920@ayn.mi.celestial.com> X-Mailer: Apple Mail (2.929.2) Subject: Re: FreeBSD on a Mac Mini Intel? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 11:07:47 -0000 On Nov 25, 2008, at 12:19 AM, Bill Campbell wrote: > On Mon, Nov 24, 2008, Ian Jefferson wrote: >> >> >> On Mon, 24 Nov 2008, Andrew Gould wrote: >> >>> On Sun, Nov 23, 2008 at 9:08 AM, John Almberg >>> wrote: >>> >>>> On Nov 21, 2008, at 11:42 PM, Ian Jefferson wrote: >>>> >>>> Is anyone running FreeBSD on a Mac Mini Intel? >>>>> >>>>> >>> >>> Ian, >>> >>> You could always test it using VMWare Fusion........and then let >>> us know >> >> Er, Gee thanks. I'll just have a word with the VMware guys about >> fully >> abastracting the mini in software... back in a jiffy.... ;-) > Actually VMWare has a Mac Version which is what the poster was probably referring to. From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 11:17:14 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6362E106564A for ; Tue, 25 Nov 2008 11:17:14 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id DDD7E8FC19 for ; Tue, 25 Nov 2008 11:17:13 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1L4vup-0002jW-Fe for freebsd-questions@freebsd.org; Tue, 25 Nov 2008 11:17:11 +0000 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 25 Nov 2008 11:17:11 +0000 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 25 Nov 2008 11:17:11 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Ivan Voras Date: Tue, 25 Nov 2008 12:17:04 +0100 Lines: 53 Message-ID: References: <49218347.9070009@esiee.fr> <20081117145945.GA32162@icarus.home.lan> <49218DC2.9000407@freebsd.org> <20081117165344.GA34331@icarus.home.lan> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig58D563E7820EEF0A01AA33AF" X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Thunderbird 2.0.0.17 (X11/20080925) In-Reply-To: X-Enigmail-Version: 0.95.0 Sender: news Subject: Re: ZFS over iSCSI anyone ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 11:17:14 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig58D563E7820EEF0A01AA33AF Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Ivan Voras wrote: > Jeremy Chadwick wrote: >> On Mon, Nov 17, 2008 at 04:29:06PM +0100, Ivan Voras wrote: >>> Jeremy Chadwick wrote: >>>> On Mon, Nov 17, 2008 at 03:44:23PM +0100, Frank Bonnet wrote: >>>>> Hello >>>>> >>>>> Does anyone has tried to use ZFS over iSCSI ? >>>> Another FreeBSD user recently brought to my attention problems with >>>> iSCSI on FreeBSD. There is a patch available which fixes the issue,= but >>>> I felt you might want to know about it beforehand. >>>> >>>> Issue: >>>> http://lists.freebsd.org/pipermail/freebsd-scsi/2008-February/003383= =2Ehtml >>>> >>>> Patch: >>>> http://lists.freebsd.org/pipermail/freebsd-scsi/2008-February/003387= =2Ehtml >>> Isn't this committed already? >> The user tells me it is not, and that his replies to the patch author >> have gone ignored. >=20 > It looks like the iSCSI developer disappeared - I got a bounce message > (in French) on the last e-mail :( >=20 It looks like there's new development in -CURRENT: http://svn.freebsd.org/viewvc/base?view=3Drevision&revision=3D185289 --------------enig58D563E7820EEF0A01AA33AF Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJK96xldnAQVacBcgRAkJUAJ0d/HCnoE5swacUknjqsbeaNfTD2gCfZgSg DINo9mi76VgafrZwBlx9ltA= =FfBB -----END PGP SIGNATURE----- --------------enig58D563E7820EEF0A01AA33AF-- From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 13:38:11 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 270861065678 for ; Tue, 25 Nov 2008 13:38:11 +0000 (UTC) (envelope-from nino80@gmail.com) Received: from mail-gx0-f12.google.com (mail-gx0-f12.google.com [209.85.217.12]) by mx1.freebsd.org (Postfix) with ESMTP id DCC698FC3E for ; Tue, 25 Nov 2008 13:38:10 +0000 (UTC) (envelope-from nino80@gmail.com) Received: by gxk5 with SMTP id 5so289728gxk.19 for ; Tue, 25 Nov 2008 05:38:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=QeeKvv5i665WsC4q4pdH/yDsBuOWEpCaqO4kgON/P94=; b=Q3XLHpWOcdbzV5qBW39rgzj3jWpnzXaNh8DqlLsSGrMlNuhPP611iIXPgtjxcy73TR CvmoQNYxYvpbYhV0KLe4vvgMXOlHJBRgbp4zq1fy02pnSkkRNcwQAQ9CGaULbr7XLI6A g/EuvIm2u4CfVG2+QtUTvQPoGBz2G33lRCMYE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=se+bMMJPBbIm3Ww9DXMo//6vb7dtC7u8ozNmA2yU0+Tqgw0mGk+svjWaYiqzgMQHDE maNADVi91rrGtOwpxfKe+BxmSEjxePJh9jBb330n5+kiQg+bZ0vSXrB5npFNLcVNgdo1 pgYoX30WgwNOMvdQJsCBoa3xS/mw6xvk2mqpU= Received: by 10.150.133.18 with SMTP id g18mr9195744ybd.142.1227619504854; Tue, 25 Nov 2008 05:25:04 -0800 (PST) Received: by 10.151.131.4 with HTTP; Tue, 25 Nov 2008 05:25:04 -0800 (PST) Message-ID: <92bcbda50811250525p48a07f50i59e02a60c7179931@mail.gmail.com> Date: Tue, 25 Nov 2008 14:25:04 +0100 From: "n j" To: on@cs.ait.ac.th In-Reply-To: <20081125132120.p65bo336048kcwo0@wwws.cs.ait.ac.th> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20081125132120.p65bo336048kcwo0@wwws.cs.ait.ac.th> Cc: User Questions Subject: Re: Ipfw forward X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 13:38:11 -0000 > I'd like to have a clarification about the forward command in ipfw. > > From what I read in the man, I understand that on hitting a fwd rule, the > lookup in the routing table will be done according to the IP address in the > fwd rule, and not according to the IP destination address of the packet. > > AM I right? The man page suggests that's correct: "If ipaddr is not a local address, then the port number (if speci- fied) is ignored, and the packet will be forwarded to the remote address, using the route as found in the local routing table for that IP." -- Nino From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 14:18:16 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E89DD1065675 for ; Tue, 25 Nov 2008 14:18:16 +0000 (UTC) (envelope-from f.bonnet@esiee.fr) Received: from mx1.esiee.fr (mx1.esiee.fr [147.215.1.35]) by mx1.freebsd.org (Postfix) with ESMTP id 15AFF8FC20 for ; Tue, 25 Nov 2008 14:18:16 +0000 (UTC) (envelope-from f.bonnet@esiee.fr) Received: from mail.esiee.fr (mail.esiee.fr [147.215.1.3]) by mx1.esiee.fr (Postfix) with ESMTP id 246A6130DBF; Tue, 25 Nov 2008 15:18:15 +0100 (CET) Received: from mail.esiee.fr (localhost [127.0.0.1]) by VAMS.dummy (Postfix) with SMTP id 151B230F6C; Tue, 25 Nov 2008 15:18:15 +0100 (CET) Received: from secure.esiee.fr (secure.esiee.fr [147.215.1.19]) by mail.esiee.fr (Postfix) with ESMTP id 0A00830F6C; Tue, 25 Nov 2008 15:18:14 +0100 (CET) Received: from [192.168.1.102] (LMontsouris-152-62-32-91.w80-13.abo.wanadoo.fr [80.13.31.91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: bonnetf) by secure.esiee.fr (Postfix) with ESMTPSA id A1FABE8D8D; Tue, 25 Nov 2008 15:18:14 +0100 (CET) Message-ID: <492D5A25.4010103@esiee.fr> Date: Wed, 26 Nov 2008 15:16:05 +0100 From: Frank Bonnet User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Ivan Voras , freebsd-questions@freebsd.org References: <49218347.9070009@esiee.fr> <20081117145945.GA32162@icarus.home.lan> <49218DC2.9000407@freebsd.org> <20081117165344.GA34331@icarus.home.lan> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: ZFS over iSCSI anyone ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 14:18:17 -0000 Ivan Voras wrote: > Ivan Voras wrote: >> Jeremy Chadwick wrote: >>> On Mon, Nov 17, 2008 at 04:29:06PM +0100, Ivan Voras wrote: >>>> Jeremy Chadwick wrote: >>>>> On Mon, Nov 17, 2008 at 03:44:23PM +0100, Frank Bonnet wrote: >>>>>> Hello >>>>>> >>>>>> Does anyone has tried to use ZFS over iSCSI ? >>>>> Another FreeBSD user recently brought to my attention problems with >>>>> iSCSI on FreeBSD. There is a patch available which fixes the issue, but >>>>> I felt you might want to know about it beforehand. >>>>> >>>>> Issue: >>>>> http://lists.freebsd.org/pipermail/freebsd-scsi/2008-February/003383.html >>>>> >>>>> Patch: >>>>> http://lists.freebsd.org/pipermail/freebsd-scsi/2008-February/003387.html >>>> Isn't this committed already? >>> The user tells me it is not, and that his replies to the patch author >>> have gone ignored. >> It looks like the iSCSI developer disappeared - I got a bounce message >> (in French) on the last e-mail :( >> > > It looks like there's new development in -CURRENT: > http://svn.freebsd.org/viewvc/base?view=revision&revision=185289 > > Well good news ! it seems to be integrated inside operating system isn't it ? From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 15:05:04 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB3E3106564A for ; Tue, 25 Nov 2008 15:05:04 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from mail-gx0-f71.google.com (mail-gx0-f71.google.com [209.85.217.71]) by mx1.freebsd.org (Postfix) with ESMTP id B67F18FC1B for ; Tue, 25 Nov 2008 15:05:04 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: by gxk23 with SMTP id 23so2080641gxk.11 for ; Tue, 25 Nov 2008 07:05:03 -0800 (PST) MIME-Version: 1.0 Received: by 10.90.113.17 with SMTP id l17mr1651845agc.14.1227625503626; Tue, 25 Nov 2008 07:05:03 -0800 (PST) Message-ID: <0016362835a60f96c4045c84d60a@google.com> Date: Tue, 25 Nov 2008 15:05:03 +0000 From: af300wsm@gmail.com To: Michael Johnson , Andrew Falanga , FreeBSD Questions Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Re: Installing gimp from ports, need a GTK+, what port is it X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 15:05:05 -0000 On Nov 23, 2008 8:38pm, Michael Johnson wrote: > > > > The version of gtk you have installed is too old. Upgrade to the latest version of x11-toolkits/gtk2 > > Michael > Thanks again. Last night I upgraded GTK 2. using portupgrade and that was the last package the gimp was complaining about. gimp completed the install last night just fine. I was confused about what was the right package because the gimp install was saying that the gtk+ package wasn't present, but the only thing listed as gtk+ was a theme management package when doing a pkg_info. I'm hoping for some clarification on something. Is GTK+ a subset of GTK 2.x? Are they one in the same? If so, why are they known by two different names if they are the same thing? Andy From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 15:18:38 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0657106564A for ; Tue, 25 Nov 2008 15:18:38 +0000 (UTC) (envelope-from ivoras@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.157]) by mx1.freebsd.org (Postfix) with ESMTP id 31BD58FC14 for ; Tue, 25 Nov 2008 15:18:37 +0000 (UTC) (envelope-from ivoras@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so7671fgb.35 for ; Tue, 25 Nov 2008 07:18:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender :to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references :x-google-sender-auth; bh=bemOE95Ln0XVrzGl4w5uRay1fC39eRU/Ntoxkpgp2Hk=; b=dDKDTYJ/OGdXWrNRM5N4mAvCuKHBr4a6/LaHd6Ar5tqzBzYzIomQ3vGVsV3RqUIwpH lBUhCm44PwSaMvQ+pt3XdiwmKmsG5IVzU4EbBYwlJOblPsf3bBCNYU+6oBpK3lAr+xne mrZR32vYJaX398wOGhfBFNuhriFABJ9mkQERU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references:x-google-sender-auth; b=c9skJTBUQ8ifhUWc5drUgdOhak6TzWGE2GuSMR45Dom94LlhLeS6HeWihX0Iezt5gc llwhKlTEct6AUdADMO+Yw6IsnaHwWhZUNoojBbiJxJ+Gn6iqqpboceuzel1bT99oS/Di DpH3crJYsU0XZSOMhr1uq72oQYzS3jiJ/YYm8= Received: by 10.181.21.2 with SMTP id y2mr1555579bki.144.1227624379273; Tue, 25 Nov 2008 06:46:19 -0800 (PST) Received: by 10.181.58.1 with HTTP; Tue, 25 Nov 2008 06:46:19 -0800 (PST) Message-ID: <9bbcef730811250646v217f29a9lc937ccb308c8db58@mail.gmail.com> Date: Tue, 25 Nov 2008 15:46:19 +0100 From: "Ivan Voras" Sender: ivoras@gmail.com To: "Frank Bonnet" In-Reply-To: <492D5A25.4010103@esiee.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <49218347.9070009@esiee.fr> <20081117145945.GA32162@icarus.home.lan> <49218DC2.9000407@freebsd.org> <20081117165344.GA34331@icarus.home.lan> <492D5A25.4010103@esiee.fr> X-Google-Sender-Auth: f4423f11e2688381 Cc: freebsd-questions@freebsd.org Subject: Re: ZFS over iSCSI anyone ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 15:18:38 -0000 2008/11/26 Frank Bonnet : > Well good news ! it seems to be integrated inside > operating system isn't it ? Yes, the patch is for -CURRENT (which means it will be present in the 8.0 release; bug the developers if you need it earlier). From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 15:27:13 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B20901065673 for ; Tue, 25 Nov 2008 15:27:13 +0000 (UTC) (envelope-from bsd@todoo.biz) Received: from newmail.rmm.fr (newmail.rmm.fr [87.98.206.99]) by mx1.freebsd.org (Postfix) with ESMTP id 799328FC19 for ; Tue, 25 Nov 2008 15:27:13 +0000 (UTC) (envelope-from bsd@todoo.biz) Received: from localhost (localhost [127.0.0.1]) by newmail.rmm.fr (Postfix) with ESMTP id 731FC28CB0 for ; Tue, 25 Nov 2008 16:27:12 +0100 (CET) X-Virus-Scanned: amavisd-new 2.6.1 (20080629) at rmm.fr Received: from newmail.rmm.fr ([127.0.0.1]) by localhost (newmail.rmm.fr [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id ta+qrX6YGpaC for ; Tue, 25 Nov 2008 16:27:12 +0100 (CET) Received: from [192.168.0.201] (me.todoo.biz [82.66.93.242]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: grego03) by newmail.rmm.fr (Postfix) with ESMTPSA id 35E9C28CB1 for ; Tue, 25 Nov 2008 16:27:12 +0100 (CET) Message-Id: <6ECF7CD4-BE6A-4F37-8083-9403621F4C85@todoo.biz> From: bsd To: Liste FreeBSD Content-Type: text/plain; charset=WINDOWS-1252; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Apple Message framework v929.2) Date: Tue, 25 Nov 2008 16:27:08 +0100 X-Mailer: Apple Mail (2.929.2) Subject: 7.0-RELEASE-p6 problem amd64 daemonology X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 15:27:13 -0000 Hello I have updated my server (Intel Modular server) using the =20 classical # freebsd-update install And I am now facing very weired issues only on amd64 servers I am =20 maintaining. Servers boots and then freezes when It launch "ipfilter". This is not =20= a low level freeze, simply all access to the server are disabled. - Single user boot does not work. - SSH access does not work either. These servers were working perfectly before this update=85 --- What would you suggest to get out of this situation=85 1. Rollback to the 7.0-RELEASE-p5 which was stable and worked well. --> If so how can I access the server knowing that single user mode =20 does not work? --> Can you describe me the stages I would have to go through - I am =20 not very used to this kind of situations. 2. Deactivate ipfilter (is there a way to do that at boot time without =20= editing /etc/rc.conf ) ? 3. Deactivate all services at boot time (is there a way of bypassing =20 at boot time the rc.conf file) ? Thanks for your support. =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF= =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF Gregober ---> PGP ID --> 0x1BA3C2FD bsd @at@ todoo.biz =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF= =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF P "Please consider your environmental responsibility before printing =20 this e-mail" From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 16:36:46 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FB4F106568C for ; Tue, 25 Nov 2008 16:36:46 +0000 (UTC) (envelope-from ghartl@gmail.com) Received: from mail-qy0-f18.google.com (mail-qy0-f18.google.com [209.85.221.18]) by mx1.freebsd.org (Postfix) with ESMTP id 23C418FC29 for ; Tue, 25 Nov 2008 16:36:45 +0000 (UTC) (envelope-from ghartl@gmail.com) Received: by qyk11 with SMTP id 11so120812qyk.19 for ; Tue, 25 Nov 2008 08:36:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :message-id:mime-version:content-type:content-transfer-encoding :x-mailer:thread-index:content-language; bh=N8ErivkmEOt+UWANWEk3lMNhxxEGTB8nZ9ghk7xMjq8=; b=cpY3kvN58fh57WXMCnzGpdf0Cz0lLjKUrfqCjb1Jv6DWL5wz+lttcj+vdIXAT1M/xZ 8F8mHOT1l2Bt7GbcSKaT9XDD782qZ9Cixn2Bp4SqhtWqI9OdrbyvvesSaKd5BQHw1qqH du/wfnLWWRf857PZdtdYH8pBStxNF9YqeeNDA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:mime-version:content-type :content-transfer-encoding:x-mailer:thread-index:content-language; b=teSQ4GerSgJEBT7zeJe6qnDjn6jPiLHfQTcPHKiApGjE6j6lW/FYFf/REGn1McFOAQ EbVsRKGsFA8HHNEUOm/TsGlJlJYg2+2vmRpMKxvFQuPCgZ84Vx96aYEZLx+GZ4PWolYL ftQzEHZ44soe9nXkv6J8ieedDgHW6zEQ614rs= Received: by 10.65.59.11 with SMTP id m11mr4873823qbk.90.1227631004651; Tue, 25 Nov 2008 08:36:44 -0800 (PST) Received: from mainpc (d226-16-220.home.cgocable.net [24.226.16.220]) by mx.google.com with ESMTPS id s12sm7432135qbs.9.2008.11.25.08.36.43 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 25 Nov 2008 08:36:43 -0800 (PST) From: "Gary Hartl" To: "FreeBSD Questions" Date: Tue, 25 Nov 2008 11:36:25 -0500 Message-ID: <001601c94f1b$f5ec1190$e1c434b0$@com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: AclPG/VVrlpvP6JoQxG+bJXUkpQIdg== Content-Language: en-ca Subject: libperl.so not found snmpd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 16:36:46 -0000 Hi all; I'm setting up snmpd, I've download the package and installed it ok. I've setup the configuration files, when i run /usr/local/etc/rc.d/snmpd start i get Starting snmpd. /libexec/ld-elf.so.1: Shared object "libperl.so" not found, required by "snmpd" So I do a quick locate and find netra1# locate libperl.so /usr/local/lib/perl5/5.8.7/mach/CORE/libperl.so Is that an uncompiled version of libperl.so? Should I add /usr/local/lib/perl5/5.8.7/mach/CORE to my path? Or is it something else completely? Thanks Gary From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 16:54:01 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06ADE1065673 for ; Tue, 25 Nov 2008 16:54:01 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 874608FC0A for ; Tue, 25 Nov 2008 16:54:00 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.3/8.14.3) with ESMTP id mAPGrqi7003588; Tue, 25 Nov 2008 16:53:54 GMT (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.7.2 smtp.infracaninophile.co.uk mAPGrqi7003588 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=infracaninophile.co.uk; s=200708; t=1227632034; bh=mrz39cxoAhfTa4 DJMnNMpsbsJeJNA45gAF65hK1STes=; h=Message-ID:Date:From:MIME-Version: To:CC:Subject:References:In-Reply-To:Content-Type:Cc:Content-Type: Date:From:In-Reply-To:Message-ID:Mime-Version:References:To; z=Mes sage-ID:=20<492C2D9B.2060002@infracaninophile.co.uk>|Date:=20Tue,=2 025=20Nov=202008=2016:53:47=20+0000|From:=20Matthew=20Seaman=20|Organization:=20Infracaninophile|User -Agent:=20Thunderbird=202.0.0.18=20(X11/20081125)|MIME-Version:=201 .0|To:=20Gary=20Hartl=20|CC:=20FreeBSD=20Question s=20|Subject:=20Re:=20libperl.so=20n ot=20found=20snmpd|References:=20<001601c94f1b$f5ec1190$e1c434b0$@c om>|In-Reply-To:=20<001601c94f1b$f5ec1190$e1c434b0$@com>|X-Enigmail -Version:=200.95.6|Content-Type:=20multipart/signed=3B=20micalg=3Dp gp-sha256=3B=0D=0A=20protocol=3D"application/pgp-signature"=3B=0D=0 A=20boundary=3D"------------enig1C0611738AA081C911E9A946"; b=D+8b1x e3Xv6GLaLENiuusuK4NhFr+PEBwNz6VE6+PbycGn1Ab94yQQR5CzazIancVtnj+Qezr Y458grua0dQgxywYje+uFYCkA8oGDlWgLtcDFW6nAd/FCGXa7ffxTcqIaNwH3An81Ed 3NGUkV3BEAxrRMcogiafkXwPJH7IHv0= Message-ID: <492C2D9B.2060002@infracaninophile.co.uk> Date: Tue, 25 Nov 2008 16:53:47 +0000 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.18 (X11/20081125) MIME-Version: 1.0 To: Gary Hartl References: <001601c94f1b$f5ec1190$e1c434b0$@com> In-Reply-To: <001601c94f1b$f5ec1190$e1c434b0$@com> X-Enigmail-Version: 0.95.6 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig1C0611738AA081C911E9A946" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (smtp.infracaninophile.co.uk [IPv6:::1]); Tue, 25 Nov 2008 16:53:54 +0000 (GMT) X-Virus-Scanned: ClamAV 0.94.1/8679/Tue Nov 25 13:08:31 2008 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.9 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on happy-idiot-talk.infracaninophile.co.uk Cc: FreeBSD Questions Subject: Re: libperl.so not found snmpd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 16:54:01 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig1C0611738AA081C911E9A946 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Gary Hartl wrote: > Hi all; >=20 > I'm setting up snmpd, I've download the package and installed it ok. > I've setup the configuration files, when i run >=20 > /usr/local/etc/rc.d/snmpd start i get=20 >=20 > Starting snmpd. > /libexec/ld-elf.so.1: Shared object "libperl.so" not found, required by= > "snmpd" >=20 > So I do a quick locate and find >=20 > netra1# locate libperl.so > /usr/local/lib/perl5/5.8.7/mach/CORE/libperl.so >=20 > Is that an uncompiled version of libperl.so? Should I add > /usr/local/lib/perl5/5.8.7/mach/CORE to my path? >=20 > Or is it something else completely? > It's because the current version of perl in the ports tree is 5.8.8 -- when the net-snmpd package was compiled it was linked against a later version. You can probably see this by examining the output of: % ldd /usr/local/sbin/snmpd The fix is either: upgrade perl (recommended, as there's a security advisory against older versions of perl: http://www.vuxml.org/freebsd/5b47c279-8cb5-11dc-8878-00= 16179b2dd5.html=20 ) or: compile the net-mgmt/net-snmpd port from sources Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enig1C0611738AA081C911E9A946 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkksLaAACgkQ8Mjk52CukIzDOQCbBwTXjwyWGEwm5izOqnNVcN1D tREAnR3vMTSo4wEF0c4DCsQqYO79NZw9 =kV/O -----END PGP SIGNATURE----- --------------enig1C0611738AA081C911E9A946-- From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 16:56:59 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C63821065673 for ; Tue, 25 Nov 2008 16:56:59 +0000 (UTC) (envelope-from hartzell@alerce.com) Received: from merlin.alerce.com (merlin.alerce.com [64.62.142.94]) by mx1.freebsd.org (Postfix) with ESMTP id B6CFE8FC17 for ; Tue, 25 Nov 2008 16:56:59 +0000 (UTC) (envelope-from hartzell@alerce.com) Received: from merlin.alerce.com (localhost [127.0.0.1]) by merlin.alerce.com (Postfix) with ESMTP id D7DF133C62; Tue, 25 Nov 2008 08:32:50 -0800 (PST) Received: from merlin.alerce.com (localhost [127.0.0.1]) by merlin.alerce.com (Postfix) with ESMTP id 930A633C5B; Tue, 25 Nov 2008 08:32:50 -0800 (PST) From: George Hartzell MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18732.10418.117314.211004@almost.alerce.com> Date: Tue, 25 Nov 2008 08:32:50 -0800 To: freebsd@celestial.com In-Reply-To: <20081125051925.GB31920@ayn.mi.celestial.com> References: <8675CD0C-6DDC-4472-A3CA-B3EA3F4A43C7@sandbox.ca> <20081124235456.Y55229@sandbox.ca> <20081125051925.GB31920@ayn.mi.celestial.com> X-Mailer: VM 7.19 under Emacs 22.1.50.1 X-Virus-Scanned: ClamAV using ClamSMTP Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD on a Mac Mini Intel? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: hartzell@alerce.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 16:56:59 -0000 Bill Campbell writes: > [...] > I haven't tried FreeBSD on the Macs. [...] -STABLE runs almost flawlessly on an 8-core late 2008 Mac PRO. Sometimes hangs as it's booting and you need to give the snd_hda driver a couple of hints to get sound out, but otherwise it rocks. g. From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 17:15:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EEB4C106564A for ; Tue, 25 Nov 2008 17:15:23 +0000 (UTC) (envelope-from kellymartin@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.29]) by mx1.freebsd.org (Postfix) with ESMTP id A847D8FC0A for ; Tue, 25 Nov 2008 17:15:23 +0000 (UTC) (envelope-from kellymartin@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so33261yxb.13 for ; Tue, 25 Nov 2008 09:15:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=XVFiKYEIQdnmevPVj8cGuV9lTKmGiNv0MlOnga2GXs8=; b=gPaiH8Ck4Ngd6G320P0ntx1ESGVZBvhYKd8EoNRAyVjHeKKkXoY11nDBBP7uJH+HXR M6p9OF4hxgJkbMfJwX4Uh9Ff3r2kQIz3H4phiQAuhp/oAhHVRHN8emMwN+7i5lFvkjr7 DQuTknSMkBu0ZhHsEkS9AkG5xTaeAMpRcszEs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=cVooGwd8aAsdtthBM13Pcr3N6qkrDQ5/3CNOxucdE6TRy0u427J1Yb1JM8LwFowJ8c fFMSShVPDpUjpV8R7687Cjzyq8ywDb9/fMAwRnaZZUduGz/MthrTnY7QL+IBEyxKbKcV UOsQZU+OyDj2p+mE8ayaD02opukbPLlFwZKrY= Received: by 10.103.225.11 with SMTP id c11mr1700130mur.24.1227633322200; Tue, 25 Nov 2008 09:15:22 -0800 (PST) Received: by 10.103.182.5 with HTTP; Tue, 25 Nov 2008 09:15:22 -0800 (PST) Message-ID: <1338880b0811250915m40abcac2g90f6df7622d73c36@mail.gmail.com> Date: Tue, 25 Nov 2008 10:15:22 -0700 From: "Kelly Martin" To: "FreeBSD Questions" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <8675CD0C-6DDC-4472-A3CA-B3EA3F4A43C7@sandbox.ca> Subject: Re: FreeBSD on a Mac Mini Intel? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 17:15:24 -0000 On Mon, Nov 24, 2008 at 6:08 AM, Andrew Gould wrote: > On Sun, Nov 23, 2008 at 9:08 AM, John Almberg wrote: > >> On Nov 21, 2008, at 11:42 PM, Ian Jefferson wrote: >> >> Is anyone running FreeBSD on a Mac Mini Intel? >>> > > You could always test it using VMWare Fusion........and then let us know > ;-) > > With a vm, you wouldn't have to worry about Apple's hardware booting > process. I have several FreeBSD 6.x servers in production running as VMs in VMWare Fusion, they work great. Portable, too. You can set Fusion to open your FreeBSD server upon starting, then you just put Fusion in your Login Items (under your Account settings in the System Preferences) so that it starts when the Mac Mini boots up. Give almost all the resources to FreeBSD and you'll have a fast machine. The other way to do it would be with Boot Camp, to enable booting to FreeBSD using the Mac's EFI architecture (there is no BIOS, only an emulated BIOS). You'll need that to be able to boot other operating systems like Windows, I have never done it with FreeBSD but do a search on the web for "mac mini freebsd boot camp", others have gotten it to work. Start by telling the mac you want to put Windows on... The only caveat, it used to be that when booting the Mini you'd have to select the FreeBSD partition manually to start it up..a. maybe Apple already fixed Boot Camp though so it remembers what you want as default so that it's no longer a problem. Please let us know if you try it. kelly From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 17:16:53 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C2E91065670 for ; Tue, 25 Nov 2008 17:16:53 +0000 (UTC) (envelope-from sdavenpo@mc.utmck.edu) Received: from mc.utmck.edu (chewy2.mc.utmck.edu [165.6.132.11]) by mx1.freebsd.org (Postfix) with ESMTP id 195DD8FC08 for ; Tue, 25 Nov 2008 17:16:52 +0000 (UTC) (envelope-from sdavenpo@mc.utmck.edu) Received: from ([165.6.132.48]) by chewy2.mc.utmck.edu with ESMTP id 5202251.57487797; Tue, 25 Nov 2008 12:01:30 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Tue, 25 Nov 2008 12:01:26 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: SNMPD Consuming Swap Space Thread-Index: AclPH3Q/wCRZREU3SemU4hjKXjnR4Q== From: "Davenport, Steve M" To: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: SNMPD Consuming Swap Space X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 17:16:53 -0000 Hello, =20 I am running snmpd 5.4.1.2 built from a port on 7-Release, hardware is Sun V100, 512Mb total memory, 381Mb free. The daemon starts fine. When a snmpwalk is done from another system all is well until the interface table and then I see: =20 interfaces.ifTable.ifEntry.ifSpeed.1 : Gauge32: 10000000 interfaces.ifTable.ifEntry.ifSpeed.2 : Gauge32: 0 interfaces.ifTable.ifEntry.ifSpeed.3 : Gauge32: 0 snmpwalk: No response arrived before timeout. After the timeout happens, looking at "swapinfo -k" shows that swap space is continually consumed until empty at which point the snmpd daemon is stopped: =20 fbsdh# swap_pager: out of swap space swap_pager_getswapspace(16): failed Nov 25 11:44:08 fbsdh kernel: pid 84674 (snmpd), uid 0, was killed: out of swap space =20 Now the swap space is freeded: fbsdh# swapinfo -k Device 1K-blocks Used Avail Capacity /dev/ad0b 2099160 26456 2072704 1% =20 Has anyone seen this issue or know of a solution.=20 =20 Thanks for your assistance, Steve =20 From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 17:31:06 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F3401065679 for ; Tue, 25 Nov 2008 17:31:06 +0000 (UTC) (envelope-from kellymartin@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.31]) by mx1.freebsd.org (Postfix) with ESMTP id CB3E28FC1E for ; Tue, 25 Nov 2008 17:31:05 +0000 (UTC) (envelope-from kellymartin@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so38122ywe.13 for ; Tue, 25 Nov 2008 09:31:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=l1KIdxh7fkaAizfcFZiCShcF3uPPa5MYQUhWK2vu+fE=; b=jLrFRPpnpdkPoWDUR4q3+bLxJkKSWfJ4rBjwpZhiyF6NAXbuJZ91p3895MZiTxKoh+ zMHsuMdvvdo7sG9wh8+WA2k22fbmz/YuI3ZSWhgvKZ4vGsk82MPCZQznIhoDcNw6MaUm NqOvJJddaDc0JeopWySZ31lp+d0vwWPoWalvs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=S9ziFd578/X6QpYWooKqMYVahL/+HC7uVmII5HkMBkb6JHktrodJoW0PLD2yGsQILX v3vUawXfQvgg9IhxlQY29GE+gObq43q1C6FkOR37+NmPrXHuvVLNPDGXlNlFhrxtFifu f+BO1HolYnNyOmyMlD7nsp7eCz1JZMabl54NU= Received: by 10.103.160.9 with SMTP id m9mr1701217muo.53.1227634264024; Tue, 25 Nov 2008 09:31:04 -0800 (PST) Received: by 10.103.182.5 with HTTP; Tue, 25 Nov 2008 09:31:03 -0800 (PST) Message-ID: <1338880b0811250931lece9599wa4351420cd3b09a8@mail.gmail.com> Date: Tue, 25 Nov 2008 10:31:03 -0700 From: "Kelly Martin" To: "FreeBSD Questions" In-Reply-To: <1338880b0811240900gf75fad4t1f7105af2e92da08@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1338880b0811181547s191b3170nefe5525f112bbcc2@mail.gmail.com> <20081119040732.GC45210@ozzmosis.com> <1338880b0811240900gf75fad4t1f7105af2e92da08@mail.gmail.com> Subject: Re: preparing for an upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 17:31:06 -0000 On Mon, Nov 24, 2008 at 10:00 AM, Kelly Martin wrote: > This weekend I finally got around to trying freebsd-update on 6.2. It > is there and works, but it would only update me to 6.2-RELEASE-p11. It > told me 6.2 was past its end-of-life date (which I already knew). > There was no obvious way to upgrade to 6.3 binaries. I checked the man > page and the configuration file too. Maybe the newer version of > freebsd-update allows upgrades between point versions? (ie., 6.3 -> > 6.4 ?) Well, I found the answer myself by comparing freebsd-update on FreeBSD 6.2 and 6.3. The version on 6.3 adds the -r newrelease option, which doesn't exist on 6.2... so it looks like moving up a point release using this tool is first possible with FreeBDD 6.3 -> 6.4. I know 6.2 isn't supported anymore, but it works fine for me. kelly From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 17:48:10 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0E8D1065670 for ; Tue, 25 Nov 2008 17:48:10 +0000 (UTC) (envelope-from dino_vliet@yahoo.com) Received: from web51109.mail.re2.yahoo.com (web51109.mail.re2.yahoo.com [206.190.39.130]) by mx1.freebsd.org (Postfix) with SMTP id 4E78B8FC08 for ; Tue, 25 Nov 2008 17:48:10 +0000 (UTC) (envelope-from dino_vliet@yahoo.com) Received: (qmail 11590 invoked by uid 60001); 25 Nov 2008 17:48:09 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type:Message-ID; b=qAKW8Z6MLJ6w8u6daW6mV50URWg8qToRPuTs/8YSyUj6JbcG7BABoCOXD/WT2t9dIu2RyyPNz+qKmLQzhKPb37BFa8qAMj42lyyi01ol2HRy8MafjWm7LlSa5HydYwg9WjOzkD3hZMMBYB5Pzxc7wCU7G/f9TkXgxKxALZH4t/0=; X-YMail-OSG: zzOrptcVM1lf7VlzX12.aFG0skrlxyncfLt5Kuy7fifiIPdMbsioGO1r.Spj7ghaEGKvcIfc8HjWy0Tcva.vSvf6QM.FXK7wlshAdQtJ7Db7Zosa8pzZ8R1CpOvHBbgz.gwmgFgPrFNXAzLnowuHS4nc27WyLWsJ5ZkEOO8A8O4guA-- Received: from [82.136.213.253] by web51109.mail.re2.yahoo.com via HTTP; Tue, 25 Nov 2008 09:48:07 PST X-Mailer: YahooMailWebService/0.7.260.1 Date: Tue, 25 Nov 2008 09:48:07 -0800 (PST) From: Dino Vliet To: freebsd-questions@freebsd.org MIME-Version: 1.0 Message-ID: <690511.8040.qm@web51109.mail.re2.yahoo.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: error after make buildworld when upgrading RELENG_7_0 to RELENG_6_3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dino_vliet@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 17:48:10 -0000 Dear freebsd list, I wanted to upgrade freebsd releng_6_3 to releng_7_0 with =A0cvsup because I'm running a custom kernel.=20 I've started the process by dropping into single user mode, issuing the script command to catch the output and then going to the /usr/src directory. There I did a make buildworld The error message I get is: (part of the error message) ...... building static cpp library ranlib libcpp.a =3D=3D=3D> gnu/usr.bin/cc/libdecnumber (all) cc -O2 -fno-strict-aliasing -pipe -I/usr/src/gnu/usr.bin/cc/libdecnumber -I= . -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/usr/obj/usr/src/tmp/usr\" -I/usr/o= bj/usr/src/tmp/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools -I/usr/src/g= nu/usr.bin/cc/libdecnumber/../cc_tools -I/usr/src/gnu/usr.bin/cc/libdecnumb= er/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../= ../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../co= ntrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../co= ntrib/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../.= ./../contrib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/includ= e -c /usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libde= cnumber/decNumber.c cc -O2 -fno-strict-aliasing -pipe -I/usr/src/gnu/usr.bin/cc/libdecnumber -I= . -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/usr/obj/usr/src/tmp/usr\" -I/usr/o= bj/usr/src/tmp/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools -I/usr/src/g= nu/usr.bin/cc/libdecnumber/../cc_tools -I/usr/src/gnu/usr.bin/cc/libdecnumb= er/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../= ../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../co= ntrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../co= ntrib/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../.= ./../contrib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/includ= e -c /usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libde= cnumber/decContext.c cc -O2 -fno-strict-aliasing -pipe -I/usr/src/gnu/usr.bin/cc/libdecnumber -I= . -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/usr/obj/usr/src/tmp/usr\" -I/usr/o= bj/usr/src/tmp/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools -I/usr/src/g= nu/usr.bin/cc/libdecnumber/../cc_tools -I/usr/src/gnu/usr.bin/cc/libdecnumb= er/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../= ../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../co= ntrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../co= ntrib/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../.= ./../contrib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/includ= e -c /usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libde= cnumber/decUtility.c cc -O2 -fno-strict-aliasing -pipe -I/usr/src/gnu/usr.bin/cc/libdecnumber -I= . -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/usr/obj/usr/src/tmp/usr\" -I/usr/o= bj/usr/src/tmp/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools -I/usr/src/g= nu/usr.bin/cc/libdecnumber/../cc_tools -I/usr/src/gnu/usr.bin/cc/libdecnumb= er/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../= ../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../co= ntrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../co= ntrib/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../.= ./../contrib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/includ= e -c /usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libde= cnumber/decimal32.c cc -O2 -fno-strict-aliasing -pipe -I/usr/src/gnu/usr.bin/cc/libdecnumber -I= . -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/usr/obj/usr/src/tmp/usr\" -I/usr/o= bj/usr/src/tmp/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools -I/usr/src/g= nu/usr.bin/cc/libdecnumber/../cc_tools -I/usr/src/gnu/usr.bin/cc/libdecnumb= er/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../= ../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../co= ntrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../co= ntrib/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../.= ./../contrib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/includ= e -c /usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libde= cnumber/decimal64.c cc -O2 -fno-strict-aliasing -pipe -I/usr/src/gnu/usr.bin/cc/libdecnumber -I= . -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/usr/obj/usr/src/tmp/usr\" -I/usr/o= bj/usr/src/tmp/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools -I/usr/src/g= nu/usr.bin/cc/libdecnumber/../cc_tools -I/usr/src/gnu/usr.bin/cc/libdecnumb= er/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../= ../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../co= ntrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../co= ntrib/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/libdecnumber/../../.= ./../contrib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/includ= e -c /usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libde= cnumber/decimal128.c building static decnumber library ranlib libdecnumber.a =3D=3D=3D> gnu/usr.bin/cc/cc_int (all) cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/double-int.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-chrec.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-scalar-evolution.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-data-ref.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-cfg.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-dfa.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-eh.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-ssa.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-optimize.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-gimple.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/gimplify.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-pretty-print.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-into-ssa.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=3D\"/us= r/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_in= t/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u= sr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../= contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contri= b/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contr= ib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/include -c /usr/= src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-outof-ssa.c cc -O2 -fno-strict-aliasing -pipe -DIN_GCC -DHAVE_CONFIG_H (above line, repeated many more times) -DPREFIX=3D\"/usr/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/= usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools = -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr= .bin/cc/cc_int/../../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_= int/../../../../contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/..= /../../../contrib/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/= include -c /usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/tree-ssa-= ccp.c -DPREFIX=3D\"/usr/obj/usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/= usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools = -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/usr/src/gnu/usr= .bin/cc/cc_int/../../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc_= int/../../../../contrib/gcclibs/include -I/usr/src/gnu/usr.bin/cc/cc_int/..= /../../../contrib/gcclibs/libcpp/include -I/usr/src/gnu/usr.bin/cc/cc_int/.= ./../../../contrib/gcclibs/libdecnumber -I/usr/obj/usr/src/tmp/legacy/usr/= include -c ../cc_tools/insn-attrtab.c cc1: out of memory allocating 40238016 bytes *** Error code 1 Stop in /usr/src/gnu/usr.bin/cc/cc_int. *** Error code 1 Stop in /usr/src/gnu/usr.bin/cc. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. # exit Script done on Mon Nov 24 23:11:43 2008 uname -a gives: FreeBSD zouk.telfort.nl 6.3-RELEASE-p4 FreeBSD 6.3-RELEASE-p4 #21: Wed Oct = 1 08:07:27 CEST 2008 rgilaard@amd_desktop:/usr/obj/usr/src/sys/MYKERNE= L amd64 I got 4gb ram on this am64 machine. Take a look at the mem part of my top command: last pid: 3693; load averages: 0.38, 0.22, 0.17 = up 0+00:31:52 18:45:38 85 processes: 5 running, 80 sleeping CPU states: 3.9% user, 0.0% nice, 1.0% system, 0.0% interrupt, 95.1% id= le Mem: 499M Active, 193M Inact, 214M Wired, 3200K Cache, 214M Buf, 2027M Free Swap: 3072M Total, 3072M Free I do seem to have enoug memory, so why is the make=20 buildworld step choking? Thanks in advanced Dino =0A=0A=0A From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 18:11:34 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C58471065676 for ; Tue, 25 Nov 2008 18:11:34 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: from gv-out-0910.google.com (gv-out-0910.google.com [216.239.58.184]) by mx1.freebsd.org (Postfix) with ESMTP id 52FC18FC16 for ; Tue, 25 Nov 2008 18:11:34 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: by gv-out-0910.google.com with SMTP id n8so41098gve.39 for ; Tue, 25 Nov 2008 10:11:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=0TcVaXIQfe2WMD17YEP0iNgVbTaJeoZYS1qtrexgMX8=; b=GeGTZ9gfY5ddM4wq+4fj7faIib/mXuuLsiVxOTMVqylg7oQc3jO9Tm68VttZ2vMMqm 1ZJAXqh8qJfeud87MGhwnd+r8ZSJgHHURcpxIU7C5/f0252V+jCgsAFXkiA+4+gqvtVF u+1J577zqPzLFHRZ1gWWv5y0HG3t9kFcqncNM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=gT5R65+gLryWI8av7W6sjUVNAAAYDTbK2KqO3EDU8RK6r+o3FrlsAXlZG/JKfaiG4T lBpGCykmhxo5gId4DCnEp5ak6DEkPA4JRLSmZvDI/QKixtL6Cl5qq0OBcoqz45X8K6bX P11sWE4wHjS2iPtnJ36I0elTIHGrn7ZgmzztM= Received: by 10.86.60.14 with SMTP id i14mr3155849fga.21.1227636692872; Tue, 25 Nov 2008 10:11:32 -0800 (PST) Received: by 10.86.78.7 with HTTP; Tue, 25 Nov 2008 10:11:32 -0800 (PST) Message-ID: <28283d910811251011y5af5943by96ae3a2efc21efb1@mail.gmail.com> Date: Tue, 25 Nov 2008 13:11:32 -0500 From: "matt donovan" To: af300wsm@gmail.com In-Reply-To: <0016362835a60f96c4045c84d60a@google.com> MIME-Version: 1.0 References: <0016362835a60f96c4045c84d60a@google.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Michael Johnson , FreeBSD Questions Subject: Re: Re: Installing gimp from ports, need a GTK+, what port is it X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 18:11:34 -0000 On Tue, Nov 25, 2008 at 10:05 AM, wrote: > On Nov 23, 2008 8:38pm, Michael Johnson wrote: > >> >> >> >> The version of gtk you have installed is too old. Upgrade to the latest >> > version of x11-toolkits/gtk2 > >> >> Michael >> >> > > Thanks again. Last night I upgraded GTK 2. using portupgrade and > that was the last package the gimp was complaining about. gimp completed the > install last night just fine. I was confused about what was the right > package because the gimp install was saying that the gtk+ package wasn't > present, but the only thing listed as gtk+ was a theme management package > when doing a pkg_info. > > I'm hoping for some clarification on something. Is GTK+ a subset of GTK > 2.x? Are they one in the same? If so, why are they known by two different > names if they are the same thing? > > > Andy > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > GTK 2.x is known as GTK+2.x, GTK+ is GTK+1.x From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 18:13:19 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A5CA1065676 for ; Tue, 25 Nov 2008 18:13:19 +0000 (UTC) (envelope-from frank@solensky.org) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id 4E3D68FC1B for ; Tue, 25 Nov 2008 18:13:19 +0000 (UTC) (envelope-from frank@solensky.org) Received: from mr02.lnh.mail.rcn.net ([207.172.157.22]) by smtp02.lnh.mail.rcn.net with ESMTP; 25 Nov 2008 12:44:31 -0500 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr02.lnh.mail.rcn.net (MOS 3.8.6-GA) with ESMTP id PGS15678; Tue, 25 Nov 2008 12:44:18 -0500 (EST) Received: from unknown (HELO [10.0.1.200]) ([209.6.23.238]) by smtp01.lnh.mail.rcn.net with ESMTP; 25 Nov 2008 12:44:15 -0500 From: Frank Solensky To: freebsd-questions Content-Type: text/plain Date: Tue, 25 Nov 2008 12:44:14 -0500 Message-Id: <1227635054.6253.16.camel@frank-laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 Content-Transfer-Encoding: 7bit X-Junkmail-Status: score=10/50, host=mr02.lnh.mail.rcn.net X-Junkmail-SD-Raw: score=unknown, refid=str=0001.0A090206.492C3973.01F1,ss=1,fgs=0, ip=207.172.4.11, so=2007-10-30 19:00:17, dmn=5.7.1/2008-09-02 X-Junkmail-IWF: false Subject: Kernel crash before dumpon X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 18:13:19 -0000 I'm trying to get a dump off a machine with a 7.1-beta2 kernel that's been crashing during the boot process, following the instructions on http://www.freebsd.org/doc/en/books/developers-handbook/kerneldebug.html#KERNELDEBUG-OBTAIN I've recompiled the kernel with "-g" but no vmcore file appears so I'm assuming that the crash occurs before dumpon is executed. The page includes the following suggestion on how I might be able to proceed: Alternatively, the dump device can be hard-coded via the dump clause in the config(5) line of a kernel configuration file. This approach is deprecated and should be used only if a kernel is crashing before dumpon(8) can be executed. I tried adding config dump "/dev/ad4s3b" to the configuration file but that option appears to be no longer supported: the config command gives an error message of: root/dump/swap specification obsolete Is the paragraph above obsolete? If so, what's the preferred way to collect the dump? Thanks From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 18:16:49 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C06811065676 for ; Tue, 25 Nov 2008 18:16:49 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by mx1.freebsd.org (Postfix) with ESMTP id 587F08FC13 for ; Tue, 25 Nov 2008 18:16:49 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so41643nfh.33 for ; Tue, 25 Nov 2008 10:16:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=JU+E9mum9rdJs+iIO2XQksKGwmn2sf1EjGOHQ3ON6Z0=; b=LuPe99JZZi1WpRZYxQqTzgJCoavtvgkBUG6E8Y+GoLXUh1qWxVWbIoULxPWzJcXsfK iJ6H14jk7TjbjWQCZ2TWk9LCozT+VwaDlVsTEB4sXNXEfPBFEzyGA+pIApl6Lfsl9GCF TRf+Cf7A0RCdkUUdZLDCNFBkC+1w2o2hyAhww= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=JOX7G8rm0z4gfL+jkfRVlygeN+pN6cexhdHQQV42Y1/VoiDLT8G97NCWuTDz5Q0fbI pWysWrwx6EGiKoRYCauHkLJncYj4chVIDh6i/BPeW+wxQpZk/lH5gR9+WA5ZpnHQ0Jvo +KXbmFv56T5oZZTGfbQAlndHZzg8L/Vfc8esw= Received: by 10.210.136.10 with SMTP id j10mr4995375ebd.188.1227637008171; Tue, 25 Nov 2008 10:16:48 -0800 (PST) Received: by 10.210.117.7 with HTTP; Tue, 25 Nov 2008 10:16:48 -0800 (PST) Message-ID: <139b44430811251016l550bc192ue1000c0a09f760a4@mail.gmail.com> Date: Tue, 25 Nov 2008 20:16:48 +0200 From: "Valentin Bud" To: freebsd-questions MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: mysqld_multi missing after mysql50-server install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 18:16:49 -0000 Hello list, I have just installed mysql50-server from ports. I need to start 2 instances of mysqld. I have searched on dev.mysql.com how can I accomplish that and there are 2 methods either using mysqld_multi or mysqlmanager. After reading a little on mysql.com i decided i want to go on mysqld_multi way because mysqlmanager will be removed in 6.0 and i want to use this 2 instances quite some time from now on. The only problem is that i couldn't find neither of them (mysqld_multi or mysqlmanager) after installing mysql50-server. My system is FreeBSD 7.0-RELEASE-p5 amd64. I did some digging and extracted the sources chnage dir to the sources dir and ./configure --help to see the available options. Found an options name --with-mysqlmanager. Went back to add this option to the Makefile (CONFIGURE_ARGS section) reinstalled mysql50-server but again the mysqlmanager program/script is missing. Am i missing something? And i found in /usr/local/share/mysql a script called mysqld_multi.server which doesn't run saying: "Can't execute /usr/local/mysql/bin/mysqld_multi from dir /usr/local/mysql". Check to see if there is a dir called /usr/local/mysql but there isn't one. I even did a find / -name "mysqld_multi" without no success. So can someone point me in the right direction please. thanks and a great day, v From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 18:17:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F13081065672 for ; Tue, 25 Nov 2008 18:17:23 +0000 (UTC) (envelope-from bsd@todoo.biz) Received: from newmail.rmm.fr (newmail.rmm.fr [87.98.206.99]) by mx1.freebsd.org (Postfix) with ESMTP id 8FF768FC27 for ; Tue, 25 Nov 2008 18:17:23 +0000 (UTC) (envelope-from bsd@todoo.biz) Received: from localhost (localhost [127.0.0.1]) by newmail.rmm.fr (Postfix) with ESMTP id F2DB928D13 for ; Tue, 25 Nov 2008 19:17:22 +0100 (CET) X-Virus-Scanned: amavisd-new 2.6.1 (20080629) at rmm.fr Received: from newmail.rmm.fr ([127.0.0.1]) by localhost (newmail.rmm.fr [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 7QWGN3VFbnKI for ; Tue, 25 Nov 2008 19:17:22 +0100 (CET) Received: from [192.168.0.201] (me.todoo.biz [82.66.93.242]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: grego03) by newmail.rmm.fr (Postfix) with ESMTPSA id 8ABC428D12 for ; Tue, 25 Nov 2008 19:17:22 +0100 (CET) Message-Id: From: bsd To: Liste FreeBSD In-Reply-To: <6ECF7CD4-BE6A-4F37-8083-9403621F4C85@todoo.biz> Content-Type: text/plain; charset=WINDOWS-1252; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Apple Message framework v929.2) Date: Tue, 25 Nov 2008 19:17:22 +0100 References: <6ECF7CD4-BE6A-4F37-8083-9403621F4C85@todoo.biz> X-Mailer: Apple Mail (2.929.2) Subject: Re: 7.0-RELEASE-p6 problem amd64 daemonology X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 18:17:24 -0000 Hello, I think you all deserve a clear information about what has been going =20= on today. After the update of all servers to P-6 - the server could not be =20 booted normaly - in fact they did boot but after that they didn't get =20= back with the prompt=85 So I ended up in a "dead end". As I was working last weeks with the engineers that helped me setup =20 the hardware (and as Intel didn't have a right guideline specifying =20 that TCP ports needed to be opened) - I have ended up mofidying a =20 little parameter in /boot/loader.conf that was aimed to redirect the =20 console to "vidconsole" & "comconsole". This little parameter seems to have caused a conflict with the KVM of =20= intel which probably uses the same redirect or blocked us from =20 receiving the output (even from ssh). It took me quite a long time to figure out what was going on as I =20 suspected other problems to have happened. This has all the symptoms =20 of a system freeze, but services were launched (at least some of them)=85 I have found the solution by booting using a low level prompt that has =20= allowed me to pass the parameter "set console=3Dcomconsole" and all went = =20 back to normal. Quite firghtening, but finaly armless. Le 25 nov. 08 =E0 16:27, bsd a =E9crit : > Hello I have updated my server (Intel Modular server) using the =20 > classical > > # freebsd-update install > > > And I am now facing very weired issues only on amd64 servers I am =20 > maintaining. > Servers boots and then freezes when It launch "ipfilter". This is =20 > not a low level freeze, simply all access to the server are disabled. > > - Single user boot does not work. > - SSH access does not work either. > > > These servers were working perfectly before this update=85 > > --- > > What would you suggest to get out of this situation=85 > > 1. Rollback to the 7.0-RELEASE-p5 which was stable and worked well. > --> If so how can I access the server knowing that single user mode =20= > does not work? > --> Can you describe me the stages I would have to go through - I am =20= > not very used to this kind of situations. > > 2. Deactivate ipfilter (is there a way to do that at boot time =20 > without editing /etc/rc.conf ) ? > > 3. Deactivate all services at boot time (is there a way of bypassing =20= > at boot time the rc.conf file) ? > > > Thanks for your support. > > > =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF= =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF > Gregober ---> PGP ID --> 0x1BA3C2FD > bsd @at@ todoo.biz > =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF= =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF > > P "Please consider your environmental responsibility before printing =20= > this e-mail" > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to = "freebsd-questions-unsubscribe@freebsd.org=20 > " =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF= =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF Gregober ---> PGP ID --> 0x1BA3C2FD bsd @at@ todoo.biz =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF= =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF P "Please consider your environmental responsibility before printing =20 this e-mail" From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 18:45:08 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4F4F1065674 for ; Tue, 25 Nov 2008 18:45:08 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 2AB738FC13 for ; Tue, 25 Nov 2008 18:45:03 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mAPIinHh020217; Tue, 25 Nov 2008 19:44:49 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mAPIinBx020214; Tue, 25 Nov 2008 19:44:49 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 25 Nov 2008 19:44:49 +0100 (CET) From: Wojciech Puchar To: Frank Solensky In-Reply-To: <1227635054.6253.16.camel@frank-laptop> Message-ID: <20081125194420.M20210@wojtek.tensor.gdynia.pl> References: <1227635054.6253.16.camel@frank-laptop> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions Subject: Re: Kernel crash before dumpon X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 18:45:09 -0000 > > The page includes the following suggestion on how I might be able to > proceed: > Alternatively, the dump device can be hard-coded via the > dump clause in the config(5) line of a kernel configuration > file. This approach is deprecated and should be used only > if a kernel is crashing before dumpon(8) can be executed. > > I tried adding > config dump "/dev/ad4s3b" > to the configuration file but that option appears to be no longer > supported: the config command gives an error message of: > root/dump/swap specification obsolete > > Is the paragraph above obsolete? If so, what's the preferred way to > collect the dump? > > Thanks > > in rc.conf dumpdev="/dev/dumpdevice" From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 19:23:09 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD0B8106564A for ; Tue, 25 Nov 2008 19:23:09 +0000 (UTC) (envelope-from ptkrisada@gmail.com) Received: from ti-out-0910.google.com (ti-out-0910.google.com [209.85.142.185]) by mx1.freebsd.org (Postfix) with ESMTP id 62DBC8FC0A for ; Tue, 25 Nov 2008 19:23:09 +0000 (UTC) (envelope-from ptkrisada@gmail.com) Received: by ti-out-0910.google.com with SMTP id a1so48187tib.3 for ; Tue, 25 Nov 2008 11:23:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:mail-followup-to:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=efn6mDSZAfT2rWTtM/uHlU7+M3GZoek6gbNTwzwpotQ=; b=TlbVOvxhlbtfJbJIyknZV96l6hyr49d2N3+bDm+LF8mR/j6Bd0/VRy49zh85zF6xWV zBTXQNBdGGJd15p6dPKr2KPoKTa5Xu670/qKa0tVyYKqkR+1Vhel13s3Jazw9MnEN38T O2FKdR1CNouj10VSb1BXFYiVIdzyR5WgePaKc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; b=FTceAOXm0wLHtjfpz5czoqXtdyfFdSoY9M817TDapdl/xWc+dx3KiDuPzdJ1s3Mv0R NY9MsTO2hRWeEg/kNoGMIv2V2UUfH6QRiLIzdOlvMQUgpLnsgdpUe76j+VXME2T49gmt nH5NhE5PnFSfMSA6NoDTItLZ3s96YaoDN+VVE= Received: by 10.110.50.19 with SMTP id x19mr7145207tix.53.1227640988168; Tue, 25 Nov 2008 11:23:08 -0800 (PST) Received: from gmail.com ([203.153.173.216]) by mx.google.com with ESMTPS id a14sm1626887tia.12.2008.11.25.11.23.01 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 25 Nov 2008 11:23:06 -0800 (PST) Date: Wed, 26 Nov 2008 02:22:56 +0700 From: Pongthep Kulkrisada To: freebsd-questions@freebsd.org Message-ID: <20081125192256.GA77251@gmail.com> Mail-Followup-To: freebsd-questions@freebsd.org, Manolis Kiagias , Andrew , Fbsd1 , Ian Smith References: <20081123120013.8EDF310657E3@hub.freebsd.org> <20081124012858.J43853@sola.nimnet.asn.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081124012858.J43853@sola.nimnet.asn.au> User-Agent: Mutt/1.4.2.3i Cc: Ian Smith , Andrew , Fbsd1 , Manolis Kiagias Subject: Re: Problem about ppp -nat X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 19:23:10 -0000 Hi all, Firstly many thanks to all your help! And sorry for late reply... > > With these settings, My FBSD host can NOT even dial out to ISP. :-( > > Please anybody tell me, what I do wrong here. > > > At this time I must go back to the original setting in order to dial ISP. > > And lastly I'm sorry for long questions. I didn't touch /etc/ppp/ppp.conf, which has been working for 5 years since FBSD5.0R. Even if I go back to GENERIC kernel. I could not dial out to ISP in any ways. I didn't know what I do wrong even if I did read many docs. Yesterday I decided to re-install FBSD7.0R from CDs again. That causes late reply, I'm sorry. :-( I now have gateway_enable="YES" and firewall_enable="YES" in my /etc/rc.conf. I can then dial ISP again. Then the following steps were taken. 1. I can ping any sites and very fast. 2. # kldload ipfw (as I don't want to compile kernel anymore.) 3. # kldload ipdivert 4. I also have ``natd 8668/divert'' in my /etc/services. 5. # natd -interface tun0 6. # /sbin/ipfw add 101 divert natd all from any to any via tun0 7. # /sbin/ipfw add 102 pass all from any to any (Note that my first ipfw rule is 100 check-state. So steps 6 and 7 should be considered as the first two filtering rules.) I do this way because I know from reading document that ppp must be run before natd. I always want to dial ppp by myself so I can't put natd in /etc/rc.conf. And doing it interactively is very easy to detect when something goes wrong and step 1 can proof my good connection. After step 7 I switched to terminal, which keeping ping. I found that ping stalled. I tried re-connect many times, now I know that step 3 causes the problem. I have also tried putting ipfw_load="YES" and ipdivert_load="YES" in /boot/loader.conf. The problem persists. I'm quite sure that the module ipdivert has adverse effect to the connection through modem. Should I say a bug?!!! Without ipdivert I can not play NAT (I don't want to learn ``ipfw nat'' and ``ppp -nat'' for now). This was also the major problem when I recompiled kernel with options IPDIVERT few days ago. That caused me unable to connect ISP. One thing I should note here, always run ppp before natd. Last time when I was on GENERIC kernel, I couldn't connect ISP because my /etc/rc.conf contained natd. So natd ran before ppp, which was run manually. That was wrong. Anyone has a clue please point me to the right direction. I would probably go back to external router gateway ``out of the box''. For now I give up and need to rest. Thank you. Pongthep From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 19:34:01 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ADB2B1065670 for ; Tue, 25 Nov 2008 19:34:01 +0000 (UTC) (envelope-from kenneth.hatteland@kleppnett.no) Received: from asav3.lyse.net (asav3.lyse.net [81.167.37.131]) by mx1.freebsd.org (Postfix) with ESMTP id E89A38FC0C for ; Tue, 25 Nov 2008 19:34:00 +0000 (UTC) (envelope-from kenneth.hatteland@kleppnett.no) Received: from localhost (localhost.localdomain [127.0.0.1]) by asav3.lyse.net (Postfix) with ESMTP id 69BB2841BF for ; Tue, 25 Nov 2008 20:33:59 +0100 (CET) X-Virus-Scanned: amavisd-new at lyse.net Received: from terra.lyse.net (129.81-166-80.customer.lyse.net [81.166.80.129]) by asav3.lyse.net (Postfix) with ESMTP id 81A33841A8 for ; Tue, 25 Nov 2008 20:33:57 +0100 (CET) Message-ID: <492C5325.1080606@kleppnett.no> Date: Tue, 25 Nov 2008 20:33:57 +0100 From: kenneth hatteland User-Agent: Thunderbird 2.0.0.17 (X11/20080929) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: re: audigy problem after switching to stable branch.... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 19:34:01 -0000 kenneth hatteland wrote: > > After switching from FreeBSD 7.0 release to stable I have had a big > > soundproblem. > > When compiling a kernel as I used to with device sound and device > > snd_emu10Kx as options I now get an error saying mixer is not > configured > etc.And no sound at all. Have tried several mixers to > but to no avail, > I do not understand the problem enough to correct it. > > > Googling doesn`t help as no one reports the same error with audigy > > soundcards. > > If I compile a kernel without the snd_emu10kx device sound works > > partially, sometimes playing ok, and then often sounding like an alien > > attacking ( digital noise of the horrible kind) Sooner or later the > > system locks down after playing about 5 songs with normal sound > forcing > me to hard switch the system off.. I find this extremely > annoying. > > > Does anybody have a clue ? I am not sure which output you`d want me > to > provide for this so instead of pasting every output I know I > thought to > ask first... > > I haven`t reversed my system to 7.0 release so that could maybe fix > it, > but I was hoping to stay with 7.1 :) Ok Kevin, here we go.....this is from a kernel with only device sound enabled ( not snd_emu10kx) [kenneth@terra ~]$ dmesg Waiting (max 60 seconds) for system process `vnlru' to stop...done Waiting (max 60 seconds) for system process `bufdaemon' to stop...done Waiting (max 60 seconds) for system process `syncer' to stop... Syncing disks, vnodes remaining...3 2 2 0 0 0 done All buffers synced. Copyright (c) 1992-2008 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 is a registered trademark of The FreeBSD Foundation. FreeBSD 7.1-PRERELEASE #31: Sat Nov 22 10:18:26 CET 2008 root@terra.lyse.net:/usr/obj/usr/src/sys/TERRA Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Core(TM)2 Duo CPU E6550 @ 2.33GHz (2335.98-MHz K8-class CPU) Origin = "GenuineIntel" Id = 0x6fb Stepping = 11 Features=0xbfebfbff Features2=0xe3fd AMD Features=0x20000800 AMD Features2=0x1 Cores per package: 2 usable memory = 4285456384 (4086 MB) avail memory = 4124061696 (3933 MB) ACPI APIC Table: <041807 APIC1830> FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 acpi0: <041807 RSDT1830> on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, cff00000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: irq 16 at device 1.0 on pci0 pci1: on pcib1 vgapci0: port 0xbc00-0xbc7f mem 0xfd000000-0xfdffffff,0xd0000000-0xdfffffff,0xfa000000-0xfbffffff irq 16 at device 0.0 on pci1 uhci0: port 0xac00-0xac1f irq 16 at device 26.0 on pci0 uhci0: [GIANT-LOCKED] uhci0: [ITHREAD] usb0: on uhci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 2 ports with 2 removable, self powered uhci1: port 0xa880-0xa89f irq 21 at device 26.1 on pci0 uhci1: [GIANT-LOCKED] uhci1: [ITHREAD] usb1: on uhci1 usb1: USB revision 1.0 uhub1: on usb1 uhub1: 2 ports with 2 removable, self powered ehci0: mem 0xf9fffc00-0xf9ffffff irq 18 at device 26.7 on pci0 ehci0: [GIANT-LOCKED] ehci0: [ITHREAD] usb2: EHCI version 1.0 usb2: companion controllers, 2 ports each: usb0 usb1 usb2: on ehci0 usb2: USB revision 2.0 uhub2: on usb2 uhub2: 4 ports with 4 removable, self powered pcib2: irq 17 at device 28.0 on pci0 pci2: on pcib2 pcib3: irq 16 at device 28.1 on pci0 pci3: on pcib3 em0: port 0xcc00-0xcc1f mem 0xfe9e0000-0xfe9fffff,0xfe9c0000-0xfe9dffff irq 17 at device 0.0 on pci3 em0: Using MSI interrupt em0: [FILTER] em0: Ethernet address: 00:1b:21:05:11:fb pcib4: irq 17 at device 28.4 on pci0 pci4: on pcib4 atapci0: port 0xdc00-0xdc07,0xd880-0xd883,0xd800-0xd807,0xd480-0xd483,0xd400-0xd40f mem 0xfeaffc00-0xfeafffff irq 16 at device 0.0 on pci4 atapci0: [ITHREAD] ata2: on atapci0 ata2: [ITHREAD] ata3: on atapci0 ata3: [ITHREAD] pcib5: irq 16 at device 28.5 on pci0 pci5: on pcib5 uhci2: port 0xa800-0xa81f irq 23 at device 29.0 on pci0 uhci2: [GIANT-LOCKED] uhci2: [ITHREAD] usb3: on uhci2 usb3: USB revision 1.0 uhub3: on usb3 uhub3: 2 ports with 2 removable, self powered uhci3: port 0xa480-0xa49f irq 19 at device 29.1 on pci0 uhci3: [GIANT-LOCKED] uhci3: [ITHREAD] usb4: on uhci3 usb4: USB revision 1.0 uhub4: on usb4 uhub4: 2 ports with 2 removable, self powered uhci4: port 0xa400-0xa41f irq 18 at device 29.2 on pci0 uhci4: [GIANT-LOCKED] uhci4: [ITHREAD] usb5: on uhci4 usb5: USB revision 1.0 uhub5: on usb5 uhub5: 2 ports with 2 removable, self powered uhci5: port 0xa080-0xa09f irq 16 at device 29.3 on pci0 uhci5: [GIANT-LOCKED] uhci5: [ITHREAD] usb6: on uhci5 usb6: USB revision 1.0 uhub6: on usb6 uhub6: 2 ports with 2 removable, self powered ehci1: mem 0xf9fff800-0xf9fffbff irq 23 at device 29.7 on pci0 ehci1: [GIANT-LOCKED] ehci1: [ITHREAD] usb7: EHCI version 1.0 usb7: companion controllers, 2 ports each: usb3 usb4 usb5 usb6 usb7: on ehci1 usb7: USB revision 2.0 uhub7: on usb7 uhub7: 8 ports with 8 removable, self powered pcib6: at device 30.0 on pci0 pci6: on pcib6 pci6: at device 0.0 (no driver attached) ahc0: port 0xe800-0xe8ff mem 0xfebff000-0xfebfffff irq 17 at device 1.0 on pci6 ahc0: [ITHREAD] aic7890/91: Ultra2 Wide Channel A, SCSI Id=7, 32/253 SCBs isab0: at device 31.0 on pci0 isa0: on isab0 atapci1: port 0xa000-0xa007,0x9c00-0x9c03,0x9880-0x9887,0x9800-0x9803,0x9480-0x948f,0x9400-0x940f irq 19 at device 31.2 on pci0 atapci1: [ITHREAD] ata4: on atapci1 ata4: [ITHREAD] ata5: on atapci1 ata5: [ITHREAD] pci0: at device 31.3 (no driver attached) atapci2: port 0x9000-0x9007,0x8c00-0x8c03,0x8880-0x8887,0x8800-0x8803,0x8480-0x848f,0x8400-0x840f irq 19 at device 31.5 on pci0 atapci2: [ITHREAD] ata6: on atapci2 ata6: [ITHREAD] ata7: on atapci2 ata7: [ITHREAD] acpi_button0: on acpi0 sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio0: [FILTER] fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FILTER] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0: port 0x378-0x37f irq 7 on acpi0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppbus0: on ppc0 ppbus0: [ITHREAD] plip0: on ppbus0 plip0: WARNING: using obsoleted IFF_NEEDSGIANT flag lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 ppc0: [GIANT-LOCKED] ppc0: [ITHREAD] cpu0: on acpi0 ACPI Warning (tbutils-0243): Incorrect checksum in table [OEMB] - 98, should be 8B [20070320] est0: on cpu0 p4tcc0: on cpu0 cpu1: on acpi0 est1: on cpu1 est: CPU supports Enhanced Speedstep, but is not recognized. est: cpu_vendor GenuineIntel, msr 72a072a0600072a device_attach: est1 attach returned 6 p4tcc1: on cpu1 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounters tick every 1.000 msec ad8: 238475MB at ata4-master SATA150 acd0: DVDR at ata6-master SATA150 Waiting 5 seconds for SCSI devices to settle da1 at ahc0 bus 0 target 2 lun 0 da1: Fixed Direct Access SCSI-3 device da1: 80.000MB/s transfers (40.000MHz, offset 63, 16bit) da1: Command Queueing Enabled da1: 17366MB (35566000 512 byte sectors: 255H 63S/T 2213C) da2 at ahc0 bus 0 target 4 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 3.300MB/s transfers da2: 2014MB (4124736 512 byte sectors: 255H 63S/T 256C) da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 80.000MB/s transfers (40.000MHz, offset 63, 16bit) da0: Command Queueing Enabled da0: 69464MB (142264000 512 byte sectors: 255H 63S/T 8855C) da3 at ahc0 bus 0 target 15 lun 0 da3: Fixed Direct Access SCSI-2 device da3: 80.000MB/s transfers (40.000MHz, offset 63, 16bit) da3: Command Queueing Enabled da3: 8704MB (17826240 512 byte sectors: 255H 63S/T 1109C) SMP: AP CPU #1 Launched! cd0 at ata4 bus 0 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: 3.300MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present Trying to mount root from ufs:/dev/da1s1a fuse4bsd: version 0.3.9-pre1, FUSE ABI 7.8 sblive0: [ITHREAD] sblive0: port 0xec00-0xec3f irq 16 at device 0.0 on pci6 ums0: on uhub1 ums0: 8 buttons and Z dir. ukbd0: on uhub0 kbd2 at ukbd0 pid 4531 (bumps), uid 1001: exited on signal 11 (core dumped) pid 6771 (bumps), uid 1001: exited on signal 11 (core dumped) [kenneth@terra ~]$ ls -l /dev/dsp* /dev/mixer lrwxr-xr-x 1 root wheel 9 Nov 22 10:50 /dev/dsp -> /dev/dsp0 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp0 -> /dev/oss/sblive0/pcm0 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp1 -> /dev/oss/sblive0/pcm1 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp2 -> /dev/oss/sblive0/pcm2 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp3 -> /dev/oss/sblive0/pcm3 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp4 -> /dev/oss/sblive0/pcm4 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp5 -> /dev/oss/sblive0/pcm5 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp6 -> /dev/oss/sblive0/pcm6 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp7 -> /dev/oss/sblive0/pcm7 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp8 -> /dev/oss/sblive0/pcm8 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp9 -> /dev/oss/sblive0/pcm9 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp_ac3 -> /dev/oss/sblive0/pcm0 lrwxr-xr-x 1 root wheel 8 Nov 22 10:50 /dev/dsp_in -> /dev/dsp lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp_mmap -> /dev/oss/sblive0/pcm0 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp_multich -> /dev/oss/sblive0/pcm9 lrwxr-xr-x 1 root wheel 21 Nov 22 10:50 /dev/dsp_out -> /dev/oss/sblive0/pcm0 crw-rw-rw- 1 root wheel 0, 117 Nov 22 10:50 /dev/mixer [kenneth@terra ~]$ From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 20:02:32 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD9861065670 for ; Tue, 25 Nov 2008 20:02:32 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7]) by mx1.freebsd.org (Postfix) with ESMTP id B81508FC1E for ; Tue, 25 Nov 2008 20:02:32 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 18681 invoked from network); 25 Nov 2008 20:02:32 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 25 Nov 2008 20:02:32 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id AFF895087C; Tue, 25 Nov 2008 15:02:30 -0500 (EST) To: Frank Solensky References: <1227635054.6253.16.camel@frank-laptop> From: Lowell Gilbert Date: Tue, 25 Nov 2008 15:02:30 -0500 In-Reply-To: <1227635054.6253.16.camel@frank-laptop> (Frank Solensky's message of "Tue\, 25 Nov 2008 12\:44\:14 -0500") Message-ID: <44iqqb4lrd.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions Subject: Re: Kernel crash before dumpon X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 20:02:32 -0000 Frank Solensky writes: Wow. Frank Solensky. Long time no see. > I'm trying to get a dump off a machine with a 7.1-beta2 kernel that's > been crashing during the boot process, following the instructions on > http://www.freebsd.org/doc/en/books/developers-handbook/kerneldebug.html#KERNELDEBUG-OBTAIN > I've recompiled the kernel with "-g" but no vmcore file appears so I'm > assuming that the crash occurs before dumpon is executed. > > The page includes the following suggestion on how I might be able to > proceed: > Alternatively, the dump device can be hard-coded via the > dump clause in the config(5) line of a kernel configuration > file. This approach is deprecated and should be used only > if a kernel is crashing before dumpon(8) can be executed. > > I tried adding > config dump "/dev/ad4s3b" > to the configuration file but that option appears to be no longer > supported: the config command gives an error message of: > root/dump/swap specification obsolete > > Is the paragraph above obsolete? If so, what's the preferred way to > collect the dump? Yep, it looks like the config(8) code to handle that has been gone for a while. At a quick glance, I can't figure out where the dump device is chosen, but it's supposedly iterating through devices looking for something that would work. Sticking in a device closer to the top of the search order might help. I suppose it's possible that just sticking in an appropriately formatted USB disk might help. Enabling minidumps would let you get away with a smaller space for storing the dump, which would be useful if you have some space to throw at it. Alternatively, in the same spot I would be tempted to build a separate disk just for debugging this particular problem, making sure to leave space for a swap partition close to the front. Using DDB might be an option, but I suspect that if you're having trouble getting a dump, you'll have problems dropping to a live debugger as well. All of my above advice is a bit shot-in-the-dark; if no one else suggests anything better, you may want to go to the freebsd-hackers list, or look at the cvs logs for whoever's modified the dump code in the last year or so. Good luck. -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 20:04:29 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 182C11065675 for ; Tue, 25 Nov 2008 20:04:29 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail3.sea5.speakeasy.net (mail3.sea5.speakeasy.net [69.17.117.5]) by mx1.freebsd.org (Postfix) with ESMTP id EBFBC8FC20 for ; Tue, 25 Nov 2008 20:04:28 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 6270 invoked from network); 25 Nov 2008 20:04:28 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail3.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 25 Nov 2008 20:04:28 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 811485087F; Tue, 25 Nov 2008 15:04:27 -0500 (EST) To: Xavier Otazu References: <20081121120023.D64301065720@hub.freebsd.org> <20081124181923.25e8c7db@cvc131.uab.es> From: Lowell Gilbert Date: Tue, 25 Nov 2008 15:04:27 -0500 In-Reply-To: <20081124181923.25e8c7db@cvc131.uab.es> (Xavier Otazu's message of "Mon\, 24 Nov 2008 18\:19\:23 +0100") Message-ID: <44ej0z4lo4.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: gcc cross-compiler for linux X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 20:04:29 -0000 Xavier Otazu writes: > I would like to compile a C++ code to be executed within the linux > emulator. http://wiki.freebsd.org/linux-xdev -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 20:09:01 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF6F01065672 for ; Tue, 25 Nov 2008 20:09:00 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail8.sea5.speakeasy.net (mail8.sea5.speakeasy.net [69.17.117.10]) by mx1.freebsd.org (Postfix) with ESMTP id 9F94F8FC1C for ; Tue, 25 Nov 2008 20:09:00 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 19349 invoked from network); 25 Nov 2008 20:09:00 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail8.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 25 Nov 2008 20:09:00 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 9A8935087C; Tue, 25 Nov 2008 15:08:58 -0500 (EST) To: Garrett Cooper References: From: Lowell Gilbert Date: Tue, 25 Nov 2008 15:08:58 -0500 In-Reply-To: (Garrett Cooper's message of "Mon\, 24 Nov 2008 20\:35\:42 -0800") Message-ID: <447i6r4lgl.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: `Serial connectivity' with something other than sio*? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 20:09:01 -0000 Garrett Cooper writes: > Hi guys, > With more motherboard vendors venturing away from RS232 serial > ports to firewire, I was wondering if anyone has ever configured > either a firewire or usb to serial / usb adapter between two machines > to emulate a serial console. This is a question I'd like to get an > answer to so I can start working on a means to indirectly access > boxes for the FreeBSD project to avoid the kludginess of manually > testing things, or at least manually power cycling devices and > booting targets, whenever possible. The chapter I'm referring to in > the handbook is: > >. There's dcons(4). -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 20:16:56 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82996106567A for ; Tue, 25 Nov 2008 20:16:56 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: from ik-out-1112.google.com (ik-out-1112.google.com [66.249.90.181]) by mx1.freebsd.org (Postfix) with ESMTP id 0FAAC8FC1F for ; Tue, 25 Nov 2008 20:16:55 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: by ik-out-1112.google.com with SMTP id c21so137961ika.3 for ; Tue, 25 Nov 2008 12:16:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=5wfrVznCtFwPPi38OYmP1FL8LN/BLYzclPK8AihHFVE=; b=sIQ56Z7ggC+fL5y5KnGDgJdgBWTEpXmqosrHvUOwxDk0pmeKX0X0CDSwuUgqil6fxf suf3jMjfn45TuFgaAUINX7sshlEc6tBqi/HualkucdF7RjCj8VOCHCUWiwokT1QfI7oZ uidJu8UmZX5CrWVHfV9pxoGFP6PG7VPXymvDw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=Qh3xbuTDr8zVbB/m9oStkyOtj17Gyovij6evEjldEV5iq6GsvTTXqh1GifttYiRhSg igspCdirrrdWFpJv0z/xVhGqskm7BUth90HiEosrbXiWvfOCxkXFvvJRqmNSOMztb0gj +OCDnQ6KCJ7TWSzjZvW7M5awHV7A6Gl9U7DOo= Received: by 10.210.112.4 with SMTP id k4mr5130769ebc.79.1227644215003; Tue, 25 Nov 2008 12:16:55 -0800 (PST) Received: from atlantis.dyndns.org (athedsl-425998.home.otenet.gr [79.131.216.12]) by mx.google.com with ESMTPS id 5sm42876eyf.20.2008.11.25.12.16.52 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 25 Nov 2008 12:16:53 -0800 (PST) Message-ID: <492C5D32.1010905@gmail.com> Date: Tue, 25 Nov 2008 22:16:50 +0200 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.17 (X11/20081011) MIME-Version: 1.0 To: Zbigniew Szalbot References: <94136a2c0811242216i4e803e23n5ab9cc4e8003101f@mail.gmail.com> <20081125083214.GA49865@ozzmosis.com> In-Reply-To: <20081125083214.GA49865@ozzmosis.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: User Questions Subject: Re: freebsd-update and sources / custom kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 20:16:56 -0000 andrew clarke wrote: > On Tue 2008-11-25 07:16:44 UTC+0100, Zbigniew Szalbot (zszalbot@gmail.com) wrote: > > >> I hope you can clear my doubts. When I use freebsd-update to update a >> machine with a custom kernel, do I need to fetch sources before I >> rebuild the kernel or are they fetched by freebsd-update utility? >> > > freebsd-update will update the kernel sources on the condition that > the Components setting is configured correctly in freebsd-update.conf. > Normally you'd use: > > Components src world kernel > > Then after a successful update, if you're not using the GENERIC > kernel, you should rebuild the kernel with your custom settings. > After the new kernel is installed you should reboot the machine. > > Correct, and let me also add that the above setting is the default one, so unless you edited the file yourself (highly unlikely) you are already getting the sources when using freebsd-update. From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 20:22:05 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BDC0B106564A for ; Tue, 25 Nov 2008 20:22:05 +0000 (UTC) (envelope-from xotazu@cvc.uab.es) Received: from damascus.uab.es (damascus.uab.es [158.109.168.135]) by mx1.freebsd.org (Postfix) with ESMTP id 786338FC17 for ; Tue, 25 Nov 2008 20:22:05 +0000 (UTC) (envelope-from xotazu@cvc.uab.es) Received: from damascus.uab.es ([127.0.0.1]) by damascus.uab.es (Sun Java System Messaging Server 6.1 HotFix 0.10 (built Jan 6 2005)) with ESMTP id <0KAW00KNGOK2UO30@damascus.uab.es> for freebsd-questions@freebsd.org; Tue, 25 Nov 2008 21:21:38 +0100 (CET) Received: from cvc.uab.es ([158.109.4.2]) by damascus.uab.es (Sun Java System Messaging Server 6.1 HotFix 0.10 (built Jan 6 2005)) with SMTP id <0KAW00KUTOK2U830@damascus.uab.es> for freebsd-questions@freebsd.org; Tue, 25 Nov 2008 21:21:38 +0100 (CET) Received: from cvc131.uab.es by cvc.uab.es (SMI-8.6/SMI-SVR4) id VAA11966; Tue, 25 Nov 2008 21:15:48 +0100 Date: Tue, 25 Nov 2008 21:22:13 +0100 From: Xavier Otazu In-reply-to: <44ej0z4lo4.fsf@be-well.ilk.org> To: freebsd-questions@freebsd.org Message-id: <20081125212213.6fd1dcc1@cvc131.uab.es> Organization: CVC MIME-version: 1.0 X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20081121120023.D64301065720@hub.freebsd.org> <"20081124181923.25e 8c7db"@cvc131.uab.es> <44ej0z4lo4.fsf@be-well.ilk.org> Subject: Re: gcc cross-compiler for linux X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 20:22:05 -0000 Lowell, Thanks a lot for this link. Now I see that I need to use the cross-gcc compiler. I am using Matlab inside the linux emulator, and I nedd to create some "mex" files from matlab. In order to create these mes files, matlab needs access to a gcc compiler that produces linux elf files. I think I cannot use the gentoo-stage3 port, because in order to use I would need to chroot and it is not so easy from matlab. Also, when using this compiler I should be able to acces to the "linux"-matlab header files, but if I "chroot" to the gentoo port I won't be able to access them. I tried to install the devel/cross-gcc port, but I get errors when compiling it. I have some doubts about the wiki link you sent me: 1) What really means "null-mount the home directory"? I google-d some info, but I didn't find good information. What really exactly means "corresponding entries in the passwd and shadow files are required then"? 2) What really means "All you have to do is to compile the ports and add includes and libs from the linux system your target in your development"? Do I have to include the linux headers during devel/cross-gcc port building? Or do I have to include them when cross-compiling my code? What options do I have to use when building the linux gcc cross-compiler? I use make TGTARCH=i386 TGTABI=linux install clean Thanks a lot for your help Cheers Xavier On Tue, 25 Nov 2008 15:04:27 -0500 Lowell Gilbert wrote: > Xavier Otazu writes: > > > I would like to compile a C++ code to be executed within the linux > > emulator. > > http://wiki.freebsd.org/linux-xdev > > -- > Lowell Gilbert, embedded/networking software engineer, Boston area > http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 20:24:25 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F3C2A1065672 for ; Tue, 25 Nov 2008 20:24:24 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.249]) by mx1.freebsd.org (Postfix) with ESMTP id AA0E68FC18 for ; Tue, 25 Nov 2008 20:24:24 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: by an-out-0708.google.com with SMTP id b6so86294ana.13 for ; Tue, 25 Nov 2008 12:24:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=4hU9J72ou1LvhfQzt9jvdnX3SEIIxilpcSmlP47+zbc=; b=ZUPTGBtBv5sOuZrBovql459mUEzskx5kMztjH1dGtDkG4STZ3lbdAie7su717FmzpC fErMOoIwV8U1tEkMPg4G1oUg8cpMwgi1EJL7xlGvMuekht7HTI/5ul1OKTpm4OYE3op0 CQn3CEJq9oWcf5lz6vikW8TzzW13jW3yj8yto= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=ZhpIsG0/zO+OoDUJ2amLZW0Q/xL7HZPuIb+jksvCIqe4iiUI7Yc0GyY3NH8Z7EvA8Q 2fMVboQECRWI7gZ8ur6a53kMLNaLvGd4G8b6WbGv5+Fb0y3D5Pcmpgx20/3ysUvB6Y2z 0OQkvZ4iEKqSO0xpYDhoo0h5lUnQYrtmCVCTw= Received: by 10.103.138.16 with SMTP id q16mr1776061mun.114.1227644662964; Tue, 25 Nov 2008 12:24:22 -0800 (PST) Received: by 10.103.228.17 with HTTP; Tue, 25 Nov 2008 12:24:22 -0800 (PST) Message-ID: Date: Tue, 25 Nov 2008 14:24:22 -0600 From: "Andrew Gould" To: "FreeBSD Questions Mailing List" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: port/package versions related to 7.1 RELEASE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 20:24:25 -0000 I noted that port packages are already on FreeBSD's ftp sites for 7.1 RELEASE. Does this mean that the ports and packages included in 7.1 BETA2 installation CD's will be the same ones distributed with 7.1 RELEASE? Or will the ports remain a moving target until RELEASE? Thanks, Andrew From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 22:05:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70FB71065678 for ; Tue, 25 Nov 2008 22:05:28 +0000 (UTC) (envelope-from bounce-sdxddbcddojnbylcl@news.nationalhealthcoverage.org) Received: from mail8.news.nationalhealthcoverage.org (mail8.news.nationalhealthcoverage.org [64.20.249.106]) by mx1.freebsd.org (Postfix) with ESMTP id 322D88FC17 for ; Tue, 25 Nov 2008 22:05:28 +0000 (UTC) (envelope-from bounce-sdxddbcddojnbylcl@news.nationalhealthcoverage.org) DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=default; d=news.nationalhealthcoverage.org; b=OHefdR8vk+LPrvlhx0UHxaymUSLmO9gvzaLolA6SP7FF9ERlq169HGYs/8ruU/vF6tKi5o669R8x urFOhLeJsQ==; Received: by mail8.news.nationalhealthcoverage.org id h5hrac0c3do2 for ; Tue, 25 Nov 2008 15:54:56 -0600 (envelope-from ) Message-ID: <26140503.1227650095188.JavaMail.root@news.nationalhealthcoverage.org> Date: Tue, 25 Nov 2008 15:54:55 -0600 (CST) From: National Health Coverage To: "freebsd-questions@freebsd.org" Content-Transfer-Encoding: quoted-printable X-VAN2: nrnhdphrdhqrzrqhhrxxnxh rzxudzrzorqzbzzpozzhqrpxuou zppnphhnp X-Accreditor: Habeas X-Habeas-Report: Please report use of this mark in spam to www.habeas.com/report MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Low cost health information X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: National Health Coverage List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 22:05:28 -0000 You are receiving this message because a user submitted the email a= ddress freebsd-questions@freebsd.org to www.promotions-gateway.com from the location 71.80.19.58 on = 11/23/2008 1:47. =09 [1]View in Browser | [2]Unsubscribe" style=3D"color:#666666; text-decorati= on:none">Remove My Email [3]3D"National [4]Find a Low Cost Health Plan that Fits Your Life Search low cost health plans from the nation's top providers! =09=09 =09 [5]Dear freebsd-questions@freebsd.org: Think health insurance is too expensive? Low-cost health insurance plans ar= e out there, you just have to know where to look. NationalHealthCoverage.org's database is full of top-rated health insurance= carriers with a variety of low-cost plans that are sure to fit the needs o= f you and your family. Find a low-cost health insurance plan now, At NationalHealthCoverage.org, finding the right health plan is easy. That'= s because we take out all the guesswork: [6]You'll= be able to: o Get free health insurance quotes o Compare low-cost health plans o Apply online for health care coverage If you're approved, you can be issued a low-cost health insurance plan in a= s little as 24 hours! Visit our site now to get started with a free health insurance q= uote. [7]3D"Go References Visible links 1. 3D"http://www.news.nationalhealthcoverage.org/kwvjvqwsk_= 2. 3D"http://www.news.nationalhealthcoverage.org/gbplphdsd_= 3. 3D"http://www.news.nationalheal=/ 4. 3D"http://www.news.nationalhealthcoverage.org/rqlrlkvnm_= 5. 3D"http://www.news.nationalhealthcoverage.org/pwknkrtyk_= 6. 3D"http://www.news.nationalhealthcoverage.org/vptbtmkgb= 7. 3D"http://www.news.nationalhealthcoverage.org/jtdvdtskc_= Hidden links: 8. 3D"http://www.news.nationalhealthcoverage.org/dbzhzywlj_= From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 22:30:14 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A02531065676 for ; Tue, 25 Nov 2008 22:30:14 +0000 (UTC) (envelope-from ipfreak@yahoo.com) Received: from web52110.mail.re2.yahoo.com (web52110.mail.re2.yahoo.com [206.190.48.113]) by mx1.freebsd.org (Postfix) with SMTP id 36BC68FC26 for ; Tue, 25 Nov 2008 22:30:13 +0000 (UTC) (envelope-from ipfreak@yahoo.com) Received: (qmail 80383 invoked by uid 60001); 25 Nov 2008 22:03:33 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type:Message-ID; b=vCjkv/3vk80eihpvVxn2jKK/0Z05xnx1NpyE/ISJ3eMhZ41mEcAnYtF7pvB8qmlAJy7Bk1AsMLInOU2ZsMQr4mktNIChxy/GFPS6mx7y+Akv/6Eb1GFLAWkkfJCzUZHMiy7I+1lVugKikSIvGZm3GwoFD3R7wxjI1AVGXHHGaCw=; X-YMail-OSG: A4HADEQVM1mQMS8xpii3ZFCX8anXrZ65OURXwTkp2pa4bipyPB3ywP.DJSVBbq_RO9l1WYuCKCpPuLIc53SawpNS4S5kLT23wEV.9eNj6D4Rcv5MMGrGg8rD4uuL4J8.Gd.sR0K5g3jCVBZbBOssUgBCSPxgM4O3Bd8u0wc- Received: from [134.207.53.14] by web52110.mail.re2.yahoo.com via HTTP; Tue, 25 Nov 2008 14:03:33 PST X-Mailer: YahooMailWebService/0.7.260.1 Date: Tue, 25 Nov 2008 14:03:33 -0800 (PST) From: gahn To: freebsd general questions , free bsd MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-ID: <848375.80327.qm@web52110.mail.re2.yahoo.com> Cc: Subject: offline upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ipfreak@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 22:30:14 -0000 Hi, All: I have two boxes running 6.3. For certain reasons that I can't upgrade them online with "freebsd-update" utility; the ftp sessions are blocked. Are there any other way to upgrade the system offline, both kernel and those needed packages? Thanks in advance _dave From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 22:31:20 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FCFA1065677 for ; Tue, 25 Nov 2008 22:31:20 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from mailrelay003.isp.belgacom.be (mailrelay003.isp.belgacom.be [195.238.6.53]) by mx1.freebsd.org (Postfix) with ESMTP id A87A18FC2F for ; Tue, 25 Nov 2008 22:31:19 +0000 (UTC) (envelope-from tijl@ulyssis.org) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AiQFAAwKLElR9SgM/2dsb2JhbACBbdElgn0 Received: from 12.40-245-81.adsl-dyn.isp.belgacom.be (HELO kalimero.kotnet.org) ([81.245.40.12]) by relay.skynet.be with ESMTP; 25 Nov 2008 23:31:18 +0100 Received: from kalimero.kotnet.org (kalimero.kotnet.org [127.0.0.1]) by kalimero.kotnet.org (8.14.3/8.14.3) with ESMTP id mAPMVCiU008777; Tue, 25 Nov 2008 23:31:12 +0100 (CET) (envelope-from tijl@ulyssis.org) From: Tijl Coosemans To: freebsd-questions@freebsd.org, Xavier Otazu Date: Tue, 25 Nov 2008 23:31:10 +0100 User-Agent: KMail/1.9.10 References: <20081121120023.D64301065720@hub.freebsd.org> <20081124181923.25e8c7db@cvc131.uab.es> In-Reply-To: <20081124181923.25e8c7db@cvc131.uab.es> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200811252331.11497.tijl@ulyssis.org> Cc: Subject: Re: gcc cross-compiler for linux X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 22:31:20 -0000 On Monday 24 November 2008 18:19:23 Xavier Otazu wrote: > When building, I get the following error message: >=20 > /usr/ports/devel/cross-gcc/work/gcc-4.2.3/host-i386-portbld-freebsd7.1/gc= c/xgcc > -B/usr/ports/devel/cross-gcc/work/gcc-4.2.3/host-i386-portbld-freebsd7.1/= gcc/ > -B/usr/local/i386-linux/bin/ -B/usr/local/i386-linux/lib/ > -isystem /usr/ports/devel/cross-gcc/work/gcc-4.2.3/host-i386-portbld-free= bsd7.1/gcc > -isystem /usr/local/i386-linux/include > -isystem /usr/local/i386-linux/sys-include -O2 -O2 -O2 > -fno-strict-aliasing -pipe -DIN_GCC -DCROSS_COMPILE -W -Wall > -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes > -Wold-style-definition -isystem ./include -fPIC -g > -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED > -Dinhibit_libc -I. -I. -I../.././gcc -I../.././gcc/. > -I../.././gcc/../include -I../.././gcc/../libcpp/include > -I../.././gcc/../libdecnumber -I../libdecnumber -fexceptions > -c ../.././gcc/unwind-dw2.c -o libgcc/./unwind-dw2.o > In file included from /usr/ports/devel/cross-gcc/work/gcc-4.2.3/host-i386= =2Dportbld-freebsd7.1/gcc/gthr-default.h:1, > from ../.././gcc/gthr.h:114, > from ../.././gcc/unwind-dw2.c:42: > ../.././gcc/gthr-posix.h:43:21: error: pthread.h: No such file or directo= ry > ../.././gcc/gthr-posix.h:44:20: error: unistd.h: No such file or directory > In file included from /usr/ports/devel/cross-gcc/work/gcc-4.2.3/host-i386= =2Dportbld-freebsd7.1/gcc/gthr-default.h:1, > from ../.././gcc/gthr.h:114, > from ../.././gcc/unwind-dw2.c:42: > ../.././gcc/gthr-posix.h:46: error: expected '=3D', ',', ';', 'asm' or '_= _attribute__' before '__gthread_key_t' > ../.././gcc/gthr-posix.h:47: error: expected '=3D', ',', ';', 'asm' or '_= _attribute__' before '__gthread_once_t' > ../.././gcc/gthr-posix.h:48: error: expected '=3D', ',', ';', 'asm' or '_= _attribute__' before '__gthread_mutex_t' > ../.././gcc/gthr-posix.h:49: error: expected '=3D', ',', ';', 'asm' or '_= _attribute__' before '__gthread_recursive_mutex_t' > ../.././gcc/gthr-posix.h:92: error: 'pthread_once' undeclared here (not i= n a function) > ../.././gcc/gthr-posix.h:93: error: 'pthread_getspecific' undeclared > here (not in a function) =46rom that error message I'd say you probably need to populate /usr/local/i386-linux/include with glibc and linux kernel headers. From owner-freebsd-questions@FreeBSD.ORG Tue Nov 25 23:16:00 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB0DF1065670 for ; Tue, 25 Nov 2008 23:16:00 +0000 (UTC) (envelope-from rea-fbsd@codelabs.ru) Received: from 0.mx.codelabs.ru (0.mx.codelabs.ru [144.206.177.45]) by mx1.freebsd.org (Postfix) with ESMTP id 63D6D8FC12 for ; Tue, 25 Nov 2008 23:16:00 +0000 (UTC) (envelope-from rea-fbsd@codelabs.ru) DomainKey-Signature: a=rsa-sha1; q=dns; c=simple; s=one; d=codelabs.ru; h=Received:Date:From:To:Cc:Subject:Message-ID:References:MIME-Version:Content-Type:Content-Disposition:In-Reply-To:Sender; b=n64XAHEk/TK6WxVXSfhL+NQSj7Ua6u+j4wtGDIFoMkJmJfscxpeLW6en/iRlG/FaKVYAfjWlQAMkbBbLq0i7rHuQlYIMUVOf6BQGdlTAVJ/a02NFBQkjkZi+CYCchmxL02Qpo5iXybBgoXzGqBUlmwwShHtg+eSrAUOa5aAwkZA=; Received: from phoenix.codelabs.ru (ppp91-78-117-2.pppoe.mtu-net.ru [91.78.117.2]) by 0.mx.codelabs.ru with esmtpsa (TLSv1:AES256-SHA:256) id 1L56xU-0007Mw-QB; Wed, 26 Nov 2008 02:04:41 +0300 Date: Wed, 26 Nov 2008 02:04:38 +0300 From: Eygene Ryabinkin To: gahn Message-ID: <2vayhJQuTcQ8t+vkMAcPiZJwg3Y@iXA9ZWPrtc2I2BMzBXoToMd7YdQ> References: <848375.80327.qm@web52110.mail.re2.yahoo.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="RYJh/3oyKhIjGcML" Content-Disposition: inline In-Reply-To: <848375.80327.qm@web52110.mail.re2.yahoo.com> Sender: rea-fbsd@codelabs.ru Cc: free bsd , freebsd general questions Subject: Re: offline upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2008 23:16:00 -0000 --RYJh/3oyKhIjGcML Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Good day. Tue, Nov 25, 2008 at 02:03:33PM -0800, gahn wrote: > I have two boxes running 6.3. For certain reasons that I can't > upgrade them online with "freebsd-update" utility; the ftp sessions > are blocked. Are there any other way to upgrade the system offline, > both kernel and those needed packages? CVSup the system and ports trees and transfer it to your system(s). Or, better, replicate the entire CVS repository to a removable disk and cvsup the system and ports (you'll need the port net/cvsup-without-gui) =66rom that disk via local cvsupd daemon. Then rebuild the system in a usual way (cd /usr/src; make buildworld; make kernel; [possibly reboot to single user]; mergemaster -p; make installworld; mergemaster; reboot). Note that this can be painful, especially for the first time ;)) Always read /usr/src/UPDATING and be careful. And use ports-mgmt/portupgrade to update all your ports. Perhaps the sources for some ports should be fetched manually, becase there are some ports with all distribution sites being the FTP ones. --=20 Eygene _ ___ _.--. # \`.|\..----...-'` `-._.-'_.-'` # Remember that it is hard / ' ` , __.--' # to read the on-line manual =20 )/' _/ \ `-_, / # while single-stepping the kernel. `-'" `"\_ ,_.-;_.-\_ ', fsc/as # _.-'_./ {_.' ; / # -- FreeBSD Developers handbook=20 {_.-``-' {_/ # --RYJh/3oyKhIjGcML Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkshIYACgkQthUKNsbL7YhHkACfWzDXAimqa77/OVYQY466qq5i /C4AoLCcUC8+XOqxDmLQbCHj9+/LO0rA =HK4x -----END PGP SIGNATURE----- --RYJh/3oyKhIjGcML-- From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 00:30:21 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3A541065672 for ; Wed, 26 Nov 2008 00:30:21 +0000 (UTC) (envelope-from shaun@virtualupgrade.com) Received: from mail1.intermedia.net (mail1.intermedia.net [206.40.48.151]) by mx1.freebsd.org (Postfix) with ESMTP id B518A8FC16 for ; Wed, 26 Nov 2008 00:30:21 +0000 (UTC) (envelope-from shaun@virtualupgrade.com) Received: from OliviaPC (pool-72-79-221-225.spfdma.east.verizon.net [72.79.221.225]) (Authenticated sender: shaun@virtualupgrade.com) by mail1.intermedia.net (Postfix) with ESMTP id 24F53577D8 for ; Tue, 25 Nov 2008 16:12:32 -0800 (PST) From: "Shaun Stevens" To: Date: Tue, 25 Nov 2008 16:12:29 -0800 Organization: Virtual UpGrade Inc Message-ID: <105901c94f5b$ac5416a0$04fc43e0$@com> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1250" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: AclPW6to7m5BvPwuSMGepPep667axw== Content-Language: en-us Subject: Shaun Stevens / Virtual UpGrade - Senior Software Engineer - UNIX Kernel-FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: shaun@virtualupgrade.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 00:30:21 -0000 Hi FreeBSD SWE's, Would anyone be interested in exploring this position in an Internet Backbone company in San Jose, CA? Shaun Senior Software Engineer - UNIX Kernel-FreeBSD San Jose, CA Job description: The kernel team is responsible for maintaining a FreeBSD derived Operating system. Tasks include but not limited to design, develop, troubleshoot proprietary code in the IP stack, virtual filesystem, memory management subsystem and other areas as deemed necessary. Ensure high availability systems. Job requirements: At least 3 years **hands-on** coding experience doing *BSD kernel development. Strong understanding of TCP/IP protocols suite. Proficient in C. Good oral and written communication skills. 5+ years overall industry experience. To be considered for this position, candidate **must** have FreeBSD kernel experience. Experience with other BSD kernels is also acceptable. Education: BS/MS in CS, EE, or related area. General Requirements: - Ability to be creative, efficient, and productive with minimal supervision or guidance. - Must be able to work both alone and as an efficient, cooperative member of a team. - Must be able to give and receive constructive criticism. ------------- Shaun Stevens Senior Technical Recruiter Office 408-229-9100 x11 Cell 408-728-2330 shaun@virtualupgrade.com http://www.linkedin.com/in/shaunstevens Virtual UpGrade Inc 5542 Monterey Rd. Suite 360 San Jose, CA 95138 No virus found in this outgoing message. Checked by AVG. Version: 7.5.549 / Virus Database: 270.9.10/1810 - Release Date: 11/24/2008 2:36 PM From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 00:39:00 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0CB71065672 for ; Wed, 26 Nov 2008 00:39:00 +0000 (UTC) (envelope-from akberos@math.berkeley.edu) Received: from smtp124.sbc.mail.sp1.yahoo.com (smtp124.sbc.mail.sp1.yahoo.com [69.147.64.97]) by mx1.freebsd.org (Postfix) with SMTP id 8FF458FC0C for ; Wed, 26 Nov 2008 00:39:00 +0000 (UTC) (envelope-from akberos@math.berkeley.edu) Received: (qmail 22977 invoked from network); 26 Nov 2008 00:12:20 -0000 Received: from unknown (HELO Prometheus) (akberos@99.189.172.65 with login) by smtp124.sbc.mail.sp1.yahoo.com with SMTP; 26 Nov 2008 00:12:19 -0000 X-YMail-OSG: RWdgDvkVM1nTyI.rXZjInfCONEskWdtHBC0h7W4c_G8zQ5zBbl3kSscf1JnhqxKISH2vSPUPVT_0MYcjQ_OXVoDQ1S8mmuyrFo94stmrz.8qu2iMC0wyIcRXw3HSUZdOhDM- X-Yahoo-Newman-Property: ymail-3 From: "Alexander K. Beros" To: Date: Tue, 25 Nov 2008 16:12:19 -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.6604 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 Cc: "Alexander K. Beros" Subject: GIANT_LOCK in release7.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: akberos@math.berkeley.edu List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 00:39:00 -0000 I have not been able to find any discussion of the following issue. Ever since I upgraded to release 7.0, whenever I print to my network printer (I am using Samba) I get the following output to ttyv0: lpt0: [GIANT-LOCKED] lpt0: [ITHREAD] lpt0: [GIANT-LOCKED] lpt0: [ITHREAD] lpt0: [GIANT-LOCKED] lpt0: [ITHREAD] lpt0: [GIANT-LOCKED] lpt0: [ITHREAD] lpt0: [GIANT-LOCKED] lpt0: [ITHREAD] ... this can continue for a very long time depending on the size of the queue The actual printing is fine, and since I am rarely at the terminal it isn't a serious problem. In fact, if I am working at the server and someone else is sending jobs to the printer I switch over to ttyv1, so there is really no inconvenience. On the other hand, I thought that release 7 is GIANT_LOCK free, so this is rather unexpected. I would appreciate any information or explanation. In the printout below, you will note SMALLKERNEL7, this is just a paring down of the generic kernel to tailor it to my system. The behaviour I discuss above occurs with the default kernel as well. Thanks in advance and best regards, Alex Beros Copyright (c) 1992-2008 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 is a registered trademark of The FreeBSD Foundation. FreeBSD 7.0-RELEASE #0: Wed Nov 12 14:10:45 PST 2008 z_9-hodjA@hephaestus.TheForge:/usr/obj/usr/src/sys/SMALLKERNEL7 Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel Pentium III (730.90-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 469499904 (447 MB) avail memory = 449888256 (429 MB) kbd1 at kbdmux0 acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, 1bf00000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 cpu0: on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: on hostb0 pcib1: at device 1.0 on pci0 pci2: on pcib1 From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 00:44:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9398C1065670 for ; Wed, 26 Nov 2008 00:44:23 +0000 (UTC) (envelope-from numardbsd@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.175]) by mx1.freebsd.org (Postfix) with ESMTP id 5EE258FC20 for ; Wed, 26 Nov 2008 00:44:23 +0000 (UTC) (envelope-from numardbsd@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so205117wfg.7 for ; Tue, 25 Nov 2008 16:44:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:in-reply-to:references:x-mailer:face:mime-version :content-type:content-transfer-encoding; bh=AvZ3LHg5kbW3BnYpeSRPhBx/YutdyUHyl6bDG0JnaR4=; b=wcH4PitONTu+ir6RmoSYQ1KGYWC2GPYpMrNuAWdxdKOv6BgO5VOF8CApzJ54ABoV1g vkJ75IQ7/JIdGdt0Mw0Oqy18B3n43s2fXyI9GjQSJdefUxO3Xwv+bLaDkI8u+QGcx+Z6 C2QdPaXXDsFCPxRyccdPnicGM60B4DWpbixGE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :face:mime-version:content-type:content-transfer-encoding; b=wQqr6/6u4RwqmRAq9sXpPUof8i/j+mIFY68LMBHAsrcHRqh6htlB6eeIyNyQr9SoAi EXwci/+6lhzto6NJfx2CQNro5Rnuje82QJaN/GCA0sy8djT34YKJkllntar/hSAVK1GI agK/Dzzcv5BDQnQqtgXF5nc5ufZbnpDzAv5vk= Received: by 10.142.240.9 with SMTP id n9mr2334131wfh.303.1227660262685; Tue, 25 Nov 2008 16:44:22 -0800 (PST) Received: from ayiin (124-170-24-179.dyn.iinet.net.au [124.170.24.179]) by mx.google.com with ESMTPS id 24sm10356919wff.57.2008.11.25.16.44.18 (version=SSLv3 cipher=RC4-MD5); Tue, 25 Nov 2008 16:44:21 -0800 (PST) Date: Wed, 26 Nov 2008 11:42:11 +1100 From: Norberto Meijome To: freebsd-questions@freebsd.org Message-ID: <20081126114211.6ce38314@ayiin> In-Reply-To: <20081124050303.GA30192@thought.org> References: <20081124050303.GA30192@thought.org> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.1) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: did i ask this before? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 00:44:23 -0000 On Sun, 23 Nov 2008 21:03:06 -0800 Gary Kline wrote: > Is there anybody familiar with out web1913 stuff, or know of any words > dictionary or database [copying my reply on 19/11/08 ] Hi Gary, I am not *entirely* sure what you are after, but wordnet comes to mind : [betom@ayiin] [Wed Nov 19 17:26:26 2008] /usr/home/betom $ pkg_info -W `which wn` /usr/local/bin/wn was installed by package WordNet-3.0 [betom@ayiin] [Wed Nov 19 17:25:41 2008] /usr/home/betom $ wn foot -over Overview of noun foot The noun foot has 11 senses (first 7 from tagged texts) 1. (89) foot, human foot, pes -- (the part of the leg of a human being below the ankle joint; "his bare feet projected from his trousers"; "armored from head to foot") 2. (81) foot, ft -- (a linear unit of length equal to 12 inches or a third of a yard; "he is six feet tall") 3. (8) foot -- (the lower part of anything; "curled up on the foot of the bed"; "the foot of the page"; "the foot of the list"; "the foot of the mountain") 4. (4) animal foot, foot -- (the pedal extremity of vertebrates other than human beings) 5. (2) foundation, base, fundament, foot, groundwork, substructure, understructure -- (lowest support of a structure; "it was built on a base of solid rock"; "he stood at the foot of the tower") 6. (2) foot, invertebrate foot -- (any of various organs of locomotion or attachment in invertebrates) 7. (1) foot -- (travel by walking; "he followed on foot"; "the swiftest of foot") 8. foot -- (a member of a surveillance team who works on foot or rides as a passenger) 9. infantry, foot -- (an army unit consisting of soldiers who fight on foot; "there came ten thousand horsemen and as many fully-armed foot") 10. metrical foot, foot, metrical unit -- ((prosody) a group of 2 or 3 syllables forming the basic unit of poetic rhythm) 11. foot -- (a support resembling a pedal extremity; "one foot of the chair was on the carpet") Overview of verb foot The verb foot has 3 senses (first 1 from tagged texts) 1. (1) foot, pick -- (pay for something; "pick up the tab"; "pick up the burden of high-interest mortgages"; "foot the bill") 2. foot, leg it, hoof, hoof it -- (walk; "let's hoof it to the disco") 3. foot, foot up -- (add a column of numbers) HIH, B [/copy] _________________________ {Beto|Norberto|Numard} Meijome If you find God, do you get to keep it/him/her? I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 01:26:22 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9862106564A for ; Wed, 26 Nov 2008 01:26:22 +0000 (UTC) (envelope-from kelly.terry.jones@gmail.com) Received: from rn-out-0910.google.com (rn-out-0910.google.com [64.233.170.190]) by mx1.freebsd.org (Postfix) with ESMTP id 7CA168FC18 for ; Wed, 26 Nov 2008 01:26:22 +0000 (UTC) (envelope-from kelly.terry.jones@gmail.com) Received: by rn-out-0910.google.com with SMTP id j71so286673rne.12 for ; Tue, 25 Nov 2008 17:26:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=kSiFM8eqvxTOinTMxtp5Ly9RUBglwYz/ia2WnH51/NY=; b=qazisNVz63ELBTY/1zer+c1wdq3PNi68n1Q78SoLnRYQ3zkKy4KWyyh4RBJJhNKe5w veiu3yOA2noYQuiRufVQvkQGesjas001gPpZsIfZ6N3wmtZtGzdMx04vECvuiih3G+iq cGn03ICj2QkAj2hXS6Zku/b/998evSPzETdQo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=nyMNoX9CxQx9Pe3tJatoKwrfYdY0xMIX9pXqZLQTYowA3XTccuD/hpvtTMkrbDRxg8 vlzdI2WZl4gKnWHMSffl43TJl+nHd/RmHDePZ2OF2VVz69CHSJKWipzicnUzEuLSz44D TlZAf2OaBnBq+pij91C1QTjR1fDA8mlimQerA= Received: by 10.64.88.5 with SMTP id l5mr5504670qbb.68.1227662781355; Tue, 25 Nov 2008 17:26:21 -0800 (PST) Received: by 10.64.208.1 with HTTP; Tue, 25 Nov 2008 17:26:21 -0800 (PST) Message-ID: <26face530811251726o378c0ad1v3395f9e40dc04a2@mail.gmail.com> Date: Tue, 25 Nov 2008 18:26:21 -0700 From: "Kelly Jones" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: wdfs vs sshfs vs the perfect fs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 01:26:22 -0000 I recently installed wdfs and sshfs on my FreeBSD server + mounted a filesystem under each. "df -k" and "tail -r" work great under sshfs. "df -k" doesn't work under wdfs (always shows 100% usage) and "tail -r" just hangs. sshfs also seems a little faster. Is all this normal? I figured webdav would handle "tail -r" better using HTTP's "Range" parameter, but I guess not. How does sshfs get to the end of a file so fast w/o doing a sequential read? What's the best way to mount a remote disk assuming I don't have root access on the target server? sshfs? wdfs? something else? I assume 'mount' is best if I do have root access. Specially interested in "random access" files like DBMs or MySQL/PostgreSQL files. Reason I ask: many hosting providers offer insane amounts of disk space for next to nothing, but they limit what you can do. By mounting the large disk, I can add virtual space to my more expensive dedicated server. It's slow, but useful when disk access speed is not an issue. -- We're just a Bunch Of Regular Guys, a collective group that's trying to understand and assimilate technology. We feel that resistance to new ideas and technology is unwise and ultimately futile. From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 01:53:17 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5430C1065675 for ; Wed, 26 Nov 2008 01:53:17 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (aristotle.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id E1E668FC1A for ; Wed, 26 Nov 2008 01:53:16 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id mAQ1rfgh004204; Tue, 25 Nov 2008 17:53:42 -0800 (PST) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Tue, 25 Nov 2008 17:53:11 -0800 (PST) Date: Tue, 25 Nov 2008 17:53:11 -0800 From: Gary Kline To: Norberto Meijome Message-ID: <20081126015311.GC23124@thought.org> References: <20081124050303.GA30192@thought.org> <20081126114211.6ce38314@ayiin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081126114211.6ce38314@ayiin> User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22 years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: freebsd-questions@freebsd.org Subject: Re: did i ask this before? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 01:53:17 -0000 On Wed, Nov 26, 2008 at 11:42:11AM +1100, Norberto Meijome wrote: > On Sun, 23 Nov 2008 21:03:06 -0800 > Gary Kline wrote: > > > Is there anybody familiar with out web1913 stuff, or know of any words > > dictionary or database > > [copying my reply on 19/11/08 ] > Hi Gary, > I am not *entirely* sure what you are after, but wordnet comes to mind : > > [betom@ayiin] [Wed Nov 19 17:26:26 2008] > /usr/home/betom > $ pkg_info -W `which wn` > /usr/local/bin/wn was installed by package WordNet-3.0 > > > [betom@ayiin] [Wed Nov 19 17:25:41 2008] > /usr/home/betom > $ wn foot -over > > Overview of noun foot > > The noun foot has 11 senses (first 7 from tagged texts) > > 1. (89) foot, human foot, pes -- (the part of the leg of a human being below the ankle joint; "his bare feet projected from his trousers"; "armored from head to foot") > 2. (81) foot, ft -- (a linear unit of length equal to 12 inches or a third of a yard; "he is six feet tall") > 3. (8) foot -- (the lower part of anything; "curled up on the foot of the bed"; "the foot of the page"; "the foot of the list"; "the foot of the mountain") > 4. (4) animal foot, foot -- (the pedal extremity of vertebrates other than human beings) > 5. (2) foundation, base, fundament, foot, groundwork, substructure, understructure -- (lowest support of a structure; "it was built on a base of solid rock"; "he stood at the foot of the tower") > 6. (2) foot, invertebrate foot -- (any of various organs of locomotion or attachment in invertebrates) > 7. (1) foot -- (travel by walking; "he followed on foot"; "the swiftest of foot") > 8. foot -- (a member of a surveillance team who works on foot or rides as a passenger) > 9. infantry, foot -- (an army unit consisting of soldiers who fight on foot; "there came ten thousand horsemen and as many fully-armed foot") > 10. metrical foot, foot, metrical unit -- ((prosody) a group of 2 or 3 syllables forming the basic unit of poetic rhythm) > 11. foot -- (a support resembling a pedal extremity; "one foot of the chair was on the carpet") > > Overview of verb foot > > The verb foot has 3 senses (first 1 from tagged texts) > > 1. (1) foot, pick -- (pay for something; "pick up the tab"; "pick up the burden of high-interest mortgages"; "foot the bill") > 2. foot, leg it, hoof, hoof it -- (walk; "let's hoof it to the disco") > 3. foot, foot up -- (add a column of numbers) > > > HIH, > B > [/copy] > I just installed WN3.... If I used your cmd and grepped for "Overview" that would tell me that foot is both n. and v. Any thoughts howto get every entry they've got? interesting, this gives me just what i want for "foot" :-D wn foot -over |grep Overview |awk '{printf("%s, %s\n", $4, $3);}' thanks, gary > _________________________ > {Beto|Norberto|Numard} Meijome > > If you find God, do you get to keep it/him/her? > > I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 02:37:07 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 318501065676 for ; Wed, 26 Nov 2008 02:37:07 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id 0DE3A8FC12 for ; Wed, 26 Nov 2008 02:37:06 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from 68-189-244-97.dhcp.oxfr.ma.charter.com ([68.189.244.97] helo=Gregory-Larkins-Computer.local) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L5AH2-000EZR-50; Tue, 25 Nov 2008 21:37:05 -0500 Received: from [127.0.0.1] (fireball.entropy.prv [192.168.1.12]) by Gregory-Larkins-Computer.local (Postfix) with ESMTP id D4C0227EE0DF; Tue, 25 Nov 2008 21:37:02 -0500 (EST) Message-ID: <492CB64D.8040603@FreeBSD.org> Date: Tue, 25 Nov 2008 21:37:01 -0500 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Forrest Aldrich References: <4901D95E.4000006@gmail.com> In-Reply-To: <4901D95E.4000006@gmail.com> X-Enigmail-Version: 0.95.7 OpenPGP: id=1C940290 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.6 (-) Cc: freebsd-questions@freebsd.org Subject: Re: Bellcore MGR lightweight window manager on FreeBSD? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 02:37:07 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Forrest Aldrich wrote: > Does anyone remember the lightweight window manager called MGR, from > Bellcore? > > ftp://sunsite.unc.edu/pub/Linux/apps/MGR/!INDEX.html > > I'm curious if anyone out there has gotten this to run on FreeBSD. I > used it on an older system, years ago, and it was pretty effective - and > would be useful for low-res environments, etc. > > > Thx... > Hi Forrest, I hacked around with this for a little while this evening and managed to get it compiled and installed. After I started the mgr executable, I saw the splash screen, and then the desktop appeared with a mouse pointer on it. Unfortunately, the mouse wouldn't move, and I couldn't do anything else with the desktop. It's possible that I didn't select the correct mouse configuration during the build process. Also /dev/mouse didn't exist, so I tried symlinking it to /dev/sysmouse one time and /dev/cuad0 the second time. There's some potential for getting a port together for MGR, assuming the mouse problem can be resolved. If you have any ideas about that, let me know. The MGR documentation states that it worked on FreeBSD 3.0 or some quite old version. FYI, I was testing this in a VMware virtual machine running FreeBSD 7.0, in case it matters. Regards, Greg Larkin - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJLLZN0sRouByUApARAhPVAJ9iBPuKosYOqiKR0t29JcHjNWGZCACgl0V/ 5x8DbVaHOFFewtbitetDW+U= =C9Ty -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 04:50:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06D44106564A for ; Wed, 26 Nov 2008 04:50:23 +0000 (UTC) (envelope-from unga888@yahoo.com) Received: from web57001.mail.re3.yahoo.com (web57001.mail.re3.yahoo.com [66.196.97.105]) by mx1.freebsd.org (Postfix) with SMTP id 8CFED8FC14 for ; Wed, 26 Nov 2008 04:50:22 +0000 (UTC) (envelope-from unga888@yahoo.com) Received: (qmail 75099 invoked by uid 60001); 26 Nov 2008 04:50:21 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type:Message-ID; b=BH8WWt31iXZFFqAOky1taVkkQbrEy7P2f0OZT9E/i15nZbc5A20KDAf3RRcPrgld2UcJRgPE+8lvEoo/w3qEYW07/hBdjRlWrRpMUQrj9m6A+duF4vLhWBMwYj76E8TUbla8k6LanbzWD9nR+5nvIGbXNOoXW1EtWEEUXe4MM8Y=; X-YMail-OSG: fMjOx3IVM1lYRee34nUOE0W95kbUKFc48b9y40luzyBHxxQG2bNWwus86Oxgs0jTFKxqtdamyzP4Yjm76oqIHrccfsYSE6xuXGTZSOHVUiXbtvX8Apwus8BqWLuddbS6zKcgnzm68aHQD7ALwKJJG3GIR0o- Received: from [220.255.7.176] by web57001.mail.re3.yahoo.com via HTTP; Tue, 25 Nov 2008 20:50:21 PST X-Mailer: YahooMailWebService/0.7.260.1 Date: Tue, 25 Nov 2008 20:50:21 -0800 (PST) From: Unga To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-ID: <903701.74203.qm@web57001.mail.re3.yahoo.com> Subject: getpriority(2) and rtprio(2) implementation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: unga888@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 04:50:23 -0000 Hi all I need to study the implementation of getpriority(2) and rtprio(2) system calls. Appreciate if somebody could point me to where these system calls are implemented in FreeBSD source tree, that is, in which file/s. Many thanks in advance. Best regards Unga From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 06:41:42 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E16C1065670 for ; Wed, 26 Nov 2008 06:41:42 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id C24598FC14 for ; Wed, 26 Nov 2008 06:41:41 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-196-24-200.dynamic.qsc.de [92.196.24.200]) by mx01.qsc.de (Postfix) with ESMTP id 2207E505D3; Wed, 26 Nov 2008 07:41:39 +0100 (CET) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id mAQ6fct1003393; Wed, 26 Nov 2008 07:41:38 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Wed, 26 Nov 2008 07:41:38 +0100 From: Polytropon To: unga888@yahoo.com Message-Id: <20081126074138.13a3f795.freebsd@edvax.de> In-Reply-To: <903701.74203.qm@web57001.mail.re3.yahoo.com> References: <903701.74203.qm@web57001.mail.re3.yahoo.com> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: getpriority(2) and rtprio(2) implementation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 06:41:42 -0000 On Tue, 25 Nov 2008 20:50:21 -0800 (PST), Unga wrote: > Hi all > > I need to study the implementation of getpriority(2) and > rtprio(2) system calls. Appreciate if somebody could point > me to where these system calls are implemented in FreeBSD > source tree, that is, in which file/s. getpriority() in /usr/src/sys/kern/kern_resource.c lines 88 cont. rtprio() should be around there, too, /usr/src/sys/kern/syscalls.master I hope this is what you've been asking for. :-) -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 07:57:18 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58BFA1065673 for ; Wed, 26 Nov 2008 07:57:18 +0000 (UTC) (envelope-from unga888@yahoo.com) Received: from web57001.mail.re3.yahoo.com (web57001.mail.re3.yahoo.com [66.196.97.105]) by mx1.freebsd.org (Postfix) with SMTP id E0C0B8FC0C for ; Wed, 26 Nov 2008 07:57:17 +0000 (UTC) (envelope-from unga888@yahoo.com) Received: (qmail 61537 invoked by uid 60001); 26 Nov 2008 07:57:17 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Message-ID; b=OAW6BzCBJ0TMwvr+3P8mCLyIGQmKUT/dnOZE10DnldDi8+crzGwbtG/FpJRfvClgR0/jIVu+PNstlJD9uR/nFeHHzwJ25397N7f4MB47xK/lCvQVSfbB8hMZsFzrtC0nIFHOw0Z1dBW0enCV3vfYvEEg30wyZbukJT4/nW2bvtM=; X-YMail-OSG: BsZnpKUVM1nTrOQvIKADCsGZSisgidQnbxQKTMZUoRgLPFEfzXDz3ZurBLH7zxqYzwENa93lMVjIDcjF5T3hi__kS04w3ucRndWq3atestKs_YTSV5q8G6cq_012rWM_7ApjS0VmHlLsc3TLQDQT516Bn14- Received: from [220.255.7.144] by web57001.mail.re3.yahoo.com via HTTP; Tue, 25 Nov 2008 23:57:16 PST X-Mailer: YahooMailWebService/0.7.260.1 Date: Tue, 25 Nov 2008 23:57:16 -0800 (PST) From: Unga To: Polytropon In-Reply-To: <20081126074138.13a3f795.freebsd@edvax.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-ID: <166548.61480.qm@web57001.mail.re3.yahoo.com> Cc: freebsd-questions@freebsd.org Subject: Re: getpriority(2) and rtprio(2) implementation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: unga888@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 07:57:18 -0000 --- On Wed, 11/26/08, Polytropon wrote: > From: Polytropon > Subject: Re: getpriority(2) and rtprio(2) implementation > To: unga888@yahoo.com > Cc: freebsd-questions@freebsd.org > Date: Wednesday, November 26, 2008, 2:41 PM > On Tue, 25 Nov 2008 20:50:21 -0800 (PST), Unga > wrote: > > Hi all > > > > I need to study the implementation of getpriority(2) > and > > rtprio(2) system calls. Appreciate if somebody could > point > > me to where these system calls are implemented in > FreeBSD > > source tree, that is, in which file/s. > > getpriority() in /usr/src/sys/kern/kern_resource.c lines 88 > cont. > rtprio() should be around there, too, > /usr/src/sys/kern/syscalls.master > > I hope this is what you've been asking for. :-) > Yes, it is. Thank you very much. Best regards Unga From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 11:00:25 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2AAB7106564A for ; Wed, 26 Nov 2008 11:00:25 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.27]) by mx1.freebsd.org (Postfix) with ESMTP id A81698FC0C for ; Wed, 26 Nov 2008 11:00:24 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so163616eyi.7 for ; Wed, 26 Nov 2008 03:00:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=KUEwWIWUR8cAZgIwVIDhPT6yc3DtI+GW0BeF3Wkhdww=; b=SF5qiwFw2ghJBJcgmn6Vldy53R2vMjHFlTjSiC6bE+0Q5wDwJ+PH5yQb+uHnm/0Qpk JXw/n9n7k4wpQ6UVsvjZBQNIdyQm+VHD35ifOtmC9G6gIJgMeUC59pqemC8zNAUTEngA iTFd2YVwRFVkxm1qaq7HARQtCAghhn8BDf8nw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=eVJtBTEaZpoj3j1oitCzut7iT3u54Kt5/HBQRxaBXXLGR3MMKoDgig+ghXG/1C2COs RyzllTgtXBTGAYDPg2tsf30KOLdu0Pa08u2mbxhBVsiyFI+1WKPEN6wPlbDbx8nnnJDY cAxBNI9T2iv8uUu7aJ+svHAfAqYxgj5F9bnVk= Received: by 10.210.143.11 with SMTP id q11mr5844060ebd.43.1227697223441; Wed, 26 Nov 2008 03:00:23 -0800 (PST) Received: by 10.210.117.7 with HTTP; Wed, 26 Nov 2008 03:00:23 -0800 (PST) Message-ID: <139b44430811260300s2c46cbe9v5866cf108ccf7a01@mail.gmail.com> Date: Wed, 26 Nov 2008 13:00:23 +0200 From: "Valentin Bud" To: freebsd-questions In-Reply-To: <139b44430811251016l550bc192ue1000c0a09f760a4@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <139b44430811251016l550bc192ue1000c0a09f760a4@mail.gmail.com> Subject: Re: mysqld_multi missing after mysql50-server install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 11:00:25 -0000 Hello again, Did some more research. I have a system running FreeBSD 6.2-RELEASE-p12 with an earlier version on mysql (mysql-server-5.0.41). Same thing, the mysqld_multi and mysqlmanager is missing. Once again do i miss something? If yes what is it? And of course if there are other possibilities to run 2 mysqld instances on one server please let me know. thank you and a great day, v On Tue, Nov 25, 2008 at 8:16 PM, Valentin Bud wrote: > Hello list, > > I have just installed mysql50-server from ports. I need to start > 2 instances of mysqld. I have searched on dev.mysql.com how can I > accomplish that and there are 2 methods either using mysqld_multi > or mysqlmanager. After reading a little on mysql.com i decided i want > to go on mysqld_multi way because mysqlmanager will be removed in > 6.0 and i want to use this 2 instances quite some time from now on. > > The only problem is that i couldn't find neither of them (mysqld_multi > or mysqlmanager) after installing mysql50-server. My system is > FreeBSD 7.0-RELEASE-p5 amd64. I did some digging and extracted the sources > chnage dir to the sources dir and ./configure --help to see the > available options. > Found an options name --with-mysqlmanager. Went back to add this option to > the Makefile (CONFIGURE_ARGS section) reinstalled mysql50-server but > again the mysqlmanager program/script is missing. Am i missing something? > > And i found in /usr/local/share/mysql a script called > mysqld_multi.server which > doesn't run saying: "Can't execute /usr/local/mysql/bin/mysqld_multi > from dir /usr/local/mysql". > Check to see if there is a dir called /usr/local/mysql but there isn't > one. I even did a > find / -name "mysqld_multi" without no success. > > So can someone point me in the right direction please. > > thanks and a great day, > v > From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 11:29:00 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 626441065672 for ; Wed, 26 Nov 2008 11:29:00 +0000 (UTC) (envelope-from return@schottchapmannia.com) Received: from venosaglorybower.com (venosaglorybower.com [65.75.160.8]) by mx1.freebsd.org (Postfix) with ESMTP id 13CE98FC28 for ; Wed, 26 Nov 2008 11:29:00 +0000 (UTC) (envelope-from return@schottchapmannia.com) Received: by venosaglorybower.com (Postfix) with SMTP id 63E791450273 for ; Wed, 26 Nov 2008 05:13:54 -0500 (EST) From: Bidz Live Auctions To: freebsd-questions@freebsd.org X-Priority: 5 X-Mailer: Everest V1.6 Content-Disposition: inline Message-Id: <20081126101354.63E791450273@venosaglorybower.com> Date: Wed, 26 Nov 2008 05:13:54 -0500 (EST) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: 1 carat diamond rings up to 95% off X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: BidzLiveAuctions@schottchapmannia.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 11:29:00 -0000 Our Customers Set Our Prices! Looking for that perfect gift for your wife or girlfriend? If you visit us today, you can get jewelry at auction prices. When you use us, you do not need to wait for that special event, because we have guilt free prices. For a few dollars, you can get name brand jewelry. Why squander thousands at another store when you can get it from us for a fraction of the price? How does it Work? Every single day, we have over 15,000 live auctions. That means that you have over 15,000 tries to find great jewelry! The Clock is Ticking The auction for your favorite piece could be winding down. Jump in with a few moments left and snatch that piece of jewelry that you want at a price you can afford. Still not convinced? We challenge you to visit our website and try to prove us wrong. Visit us online and browse through our auctions. There is a deal waiting for you right now! We guarantee you will be excited with our prices and our inventory. [1][40a3edc8b.jpg] References Visible links 1. http://triniispiderwisp.com/bye.html?uj=2v9oq Hidden links: 2. http://theissfringetree.com/re_115.html?11=12v9oqdabidz_oth.o8BQM.Z12.232542h54w4e5k 3. http://theissfringetree.com/re_115.html?11=12v9oqoutdabidz.o8BQM.Z12.232542h54w4e5k From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 12:23:08 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58135106564A for ; Wed, 26 Nov 2008 12:23:08 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id 015C88FC08 for ; Wed, 26 Nov 2008 12:23:07 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id 1BC9BFD31E for ; Wed, 26 Nov 2008 14:23:06 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id 1A684FD314; Wed, 26 Nov 2008 14:23:06 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: X-Spam-Guessed-Language: X-Spam-Status: No, score=-13.0 required=5.0 tests=ALL_TRUSTED,BAYES_00 X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.5.3] (adsl215.uninet.ee [194.204.62.215]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id E203EFD28B for ; Wed, 26 Nov 2008 14:23:03 +0200 (EET) Message-ID: <492D3FA7.2030304@zzz.ee> Date: Wed, 26 Nov 2008 14:23:03 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.18 (X11/20081125) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <139b44430811251016l550bc192ue1000c0a09f760a4@mail.gmail.com> <139b44430811260300s2c46cbe9v5866cf108ccf7a01@mail.gmail.com> In-Reply-To: <139b44430811260300s2c46cbe9v5866cf108ccf7a01@mail.gmail.com> Content-Type: multipart/mixed; boundary="------------060305000905050308090209" X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: mysqld_multi missing after mysql50-server install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 12:23:08 -0000 This is a multi-part message in MIME format. --------------060305000905050308090209 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Valentin Bud wrote: > And of course if there are other possibilities to run 2 mysqld > instances on one server > please let me know. > > There is no limit, how many instances of mysqld you can run. Just specify different database directories and sockets for each instance. Something like that: $ mysqld --datadir= --socket=/tmp/ ... There is no need to run mysqld as root (and better not do that). Just any regular user is OK for mysqld. Greetings, O.K. -- Testi oma Interneti kiirust / Test Your Internet speed: http://speedtest.zzz.ee/ --------------060305000905050308090209-- From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 08:08:19 2008 Return-Path: Delivered-To: questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76B3E1065670 for ; Wed, 26 Nov 2008 08:08:19 +0000 (UTC) (envelope-from igor.testoedov@orglot.org) Received: from mail.orglot.org (mail.orglot.org [81.90.1.42]) by mx1.freebsd.org (Postfix) with ESMTP id ED4838FC08 for ; Wed, 26 Nov 2008 08:08:18 +0000 (UTC) (envelope-from igor.testoedov@orglot.org) Received: from main.orglot.office ([192.168.0.100]) by main.orglot.office ([192.168.0.100]) with mapi; Wed, 26 Nov 2008 10:57:22 +0300 From: =?koi8-r?Q?=F4=C5=D3=D4=CF=C5=C4=CF=D7_=E9=C7=CF=D2=D8?= To: "questions@FreeBSD.org" Date: Wed, 26 Nov 2008 10:57:20 +0300 Thread-Topic: question regarding portsnap Thread-Index: AclPnJwIJ/6bl446TXyqiowY9cgzZg== Message-ID: Accept-Language: ru-RU Content-Language: ru-RU X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: ru-RU MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 26 Nov 2008 12:27:29 +0000 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: question regarding portsnap X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 08:08:19 -0000 Im running FreeBSD 7.0-RELEASE #0 The OS was downloaded from freebsd.org two months ago. When I am trying to upgrade ports by using portsnap, portsnap doesn't work. # portsnap fetch Looking up portsnap.FreeBSD.org mirrors... 3 mirrors found. Fetching public key from portsnap1.freebsd.org... key has incorrect hash. Fetching public key from portsnap2.freebsd.org... key has incorrect hash. Fetching public key from portsnap4.freebsd.org... key has incorrect hash. No mirrors remaining, giving up. Why the key is incorrect and what can be done to resolve this issue? Pleas= e answer ASAP. From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 13:26:02 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32D10106564A for ; Wed, 26 Nov 2008 13:26:02 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.24]) by mx1.freebsd.org (Postfix) with ESMTP id AB9168FC1B for ; Wed, 26 Nov 2008 13:26:01 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so189443eyi.7 for ; Wed, 26 Nov 2008 05:26:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=ZN3j7CsAcxox0H0jslo1fNtjJuPmDHsQHh+3FTX8dw8=; b=WKMGqhSLmUePdlTwHb8072jl6pZC1w+egNPZwa3/EUvcyZIdoGJJEJPQwFG29cER6H PPfYp2OMK86X7DVAPX63aXSYnjqLA4FwOipbHrw5FOZqN5VL8CzZaBjw43q3HxBnK1Zj nwmzDR/Q/Hf+hYIXS6w9BmAcomPoXZk8pgXto= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=p9m7xEIkwuXviksjkSGHkak0CEqCMxaFt7PbpJS/nIGwAhuFxakGPZF5FxoB8ovZWO qER4XYpSKgQfu5U+aW8xT8F/sqD6o5TQwhA4nU9jUWvCJ1oYB9yEFSRw6/pML6uqufbT JgKqgazUPYfHRT0dY1NFzplMovltH3nkvSjbU= Received: by 10.103.131.18 with SMTP id i18mr2115783mun.74.1227705960279; Wed, 26 Nov 2008 05:26:00 -0800 (PST) Received: by 10.103.228.17 with HTTP; Wed, 26 Nov 2008 05:26:00 -0800 (PST) Message-ID: Date: Wed, 26 Nov 2008 07:26:00 -0600 From: "Andrew Gould" To: "FreeBSD Questions Mailing List" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: presentation application (other than OpenOffice)? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 13:26:02 -0000 I'm browsing around for smaller office apps. Abiword and Gnumeric are great. Does anyone have any recommendations for a presentation software? I'd rather not compile OpenOffice; and I'm just not "getting" KDE4. Thanks, Andrew From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 13:39:51 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DD3B1065672 for ; Wed, 26 Nov 2008 13:39:51 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 407798FC1E for ; Wed, 26 Nov 2008 13:39:51 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from [10.0.10.6] ([202.69.174.150]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.3959); Wed, 26 Nov 2008 05:38:41 -0800 Message-ID: <492D51CB.9000201@a1poweruser.com> Date: Wed, 26 Nov 2008 21:40:27 +0800 From: Fbsd1 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 26 Nov 2008 13:38:42.0069 (UTC) FILETIME=[4BD12450:01C94FCC] X-Sender: fbsd1@a1poweruser.com Subject: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 13:39:51 -0000 These applications have predefined ports they use to start up the bi-directional packet conversation. But them unsolicited packeted come in from other pc nodes to share data using a wide range of high port numbers. IPFW, IPF, and PF don't seem to have a rule option to allow packs in/out based on program name that started the conversation. I thought i read in openbsd pf manual that pf state processing will allow applications like limewire to function normally by accepting the inbound high number port to pass through the firewall. I have inclusive firewall rule set which means only packets matching the rules are passed through. The inbound hight port numbers are blocked by design. How do other firewall users code rules to allow limewire to work? From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 13:57:44 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4146C1065672 for ; Wed, 26 Nov 2008 13:57:44 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.freebsd.org (Postfix) with ESMTP id BA23E8FC18 for ; Wed, 26 Nov 2008 13:57:43 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by ug-out-1314.google.com with SMTP id 30so1382894ugs.39 for ; Wed, 26 Nov 2008 05:57:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=XyHZYxPU73mm5LVHZ+Ov8vLwZN6pnVGjDFPR9mgEckU=; b=r0o+2ZYBswIGixec2Qmg/yySPQeuEVngM/4zH9CGqMliKmugNQq3Ta/kb+Ld3qMsXJ On7eTwYYsEqcQMOqaNvS4z4138eNFj/dJH+u2A29/IMTgZxcKLiLn2dLtrFLdEjPIki3 oh3tvnzHKKS3asngdhj3zkOxP/FQ/quA0EYmI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=qxR8VVSSt1XOaZWZ1HwsDyW43W0Bt6Ax26zlEfa4FUG8b/tBVLL9yY8AE8bOplvxpX c05+fOJfNZ0sWTNzc60wlB7bbmDq/ds2fL+c1MiILb9RRKvvf3kR4O27BBaiT9vSORPn wX+TyF8UABw1TMqwZEkzfzlMNQyc8QfmJ9tAM= Received: by 10.210.58.13 with SMTP id g13mr6009664eba.183.1227707862441; Wed, 26 Nov 2008 05:57:42 -0800 (PST) Received: by 10.210.117.7 with HTTP; Wed, 26 Nov 2008 05:57:42 -0800 (PST) Message-ID: <139b44430811260557n68bb9584ue1d8ef6e41172194@mail.gmail.com> Date: Wed, 26 Nov 2008 15:57:42 +0200 From: "Valentin Bud" To: "=?ISO-8859-1?Q?Ott_K=F6stner?=" In-Reply-To: <492D3FA7.2030304@zzz.ee> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <139b44430811251016l550bc192ue1000c0a09f760a4@mail.gmail.com> <139b44430811260300s2c46cbe9v5866cf108ccf7a01@mail.gmail.com> <492D3FA7.2030304@zzz.ee> Cc: freebsd-questions@freebsd.org Subject: Re: mysqld_multi missing after mysql50-server install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 13:57:44 -0000 On Wed, Nov 26, 2008 at 2:23 PM, Ott K=F6stner wrote: > Valentin Bud wrote: > >> And of course if there are other possibilities to run 2 mysqld >> instances on one server >> please let me know. >> >> > > There is no limit, how many instances of mysqld you can run. Just > specify different database directories and sockets for each instance. > Something like that: > > $ mysqld --datadir=3D --socket=3D/tmp/ socket> ... I get it. It's like making my own mysqld_multi. I can make multiple /etc/my.cnf and specify on the command line the default data dir, config file, etc and it just works. I will try it and get back with the results. I am thinking of making rc.d files to start the daemons at boot. > > There is no need to run mysqld as root (and better not do that). Just > any regular user is OK for mysqld. I am running mysql from /usr/local/etc/rc.d/mysql-server and it runs as user mysql. Thanks anyway for the heads up :). have a great day, v > > > Greetings, > O.K. > > > -- > Testi oma Interneti kiirust / Test Your Internet speed: > http://speedtest.zzz.ee/ > > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" > From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 14:02:15 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B7B2106564A for ; Wed, 26 Nov 2008 14:02:15 +0000 (UTC) (envelope-from markus.hoenicka@mhoenicka.de) Received: from webmailfront01.ispgateway.de (webmailfront01.ispgateway.de [80.67.16.111]) by mx1.freebsd.org (Postfix) with ESMTP id DADBC8FC19 for ; Wed, 26 Nov 2008 14:02:14 +0000 (UTC) (envelope-from markus.hoenicka@mhoenicka.de) Received: from webmailfront01.ispgateway.de (localhost [127.0.0.1]) by webmailfront01.ispgateway.de (8.14.0/8.14.0) with ESMTP id mAQE2CiG019219; Wed, 26 Nov 2008 15:02:12 +0100 Received: (from nobody@localhost) by webmailfront01.ispgateway.de (8.14.0/8.14.0/Submit) id mAQE2Aqo019216; Wed, 26 Nov 2008 15:02:10 +0100 Received: from pc51997.klinik.uni-regensburg.de (pc51997.klinik.uni-regensburg.de [132.199.174.149]) by webmail.df.eu (Horde MIME library) with HTTP; Wed, 26 Nov 2008 15:02:10 +0100 Message-ID: <20081126150210.paxicrpz6scws0ww@webmail.df.eu> Date: Wed, 26 Nov 2008 15:02:10 +0100 From: Markus Hoenicka To: Andrew Gould References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: domainFACTORY X-Originating-IP: 132.199.174.149 X-Df-WSender: 472582 Cc: FreeBSD Questions Mailing List Subject: Re: presentation application (other than OpenOffice)? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 14:02:15 -0000 Quoting Andrew Gould : > I'm browsing around for smaller office apps. Abiword and Gnumeric are > great. Does anyone have any recommendations for a presentation software? > I'd rather not compile OpenOffice; and I'm just not "getting" KDE4. > Hi Andrew, if you're into LaTeX, then prosper (http://sourceforge.net/projects/prosper/) might be an option. If you're into XML and don't need no fancy effects, then DocBook Slides (http://docbook.sourceforge.net/release/slides/3.4.0/RELEASE-NOTES.html) may come in handy. Also, if you don't need any effects or transitions you may consider any tool that creates multi-page PDF files. Adobe Reader has a full-screen option which turns it into a presentation viewer. hth Markus -- Markus Hoenicka markus.hoenicka@cats.de (Spam-protected email: replace the quadrupeds with "mhoenicka") http://www.mhoenicka.de From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 14:12:30 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 036D61065672 for ; Wed, 26 Nov 2008 14:12:30 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 171588FC12 for ; Wed, 26 Nov 2008 14:12:28 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mAQECK8r066254; Wed, 26 Nov 2008 15:12:20 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mAQECKII066251; Wed, 26 Nov 2008 15:12:20 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 26 Nov 2008 15:12:20 +0100 (CET) From: Wojciech Puchar To: =?koi8-r?Q?=F4=C5=D3=D4=CF=C5=C4=CF=D7_=E9=C7=CF=D2=D8?= In-Reply-To: Message-ID: <20081126151134.X66241@wojtek.tensor.gdynia.pl> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: "questions@FreeBSD.org" Subject: Re: question regarding portsnap X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 14:12:30 -0000 my /var/db/portsnap/pub.ssh file (i use 7.1-PRERELEASE): -----BEGIN PUBLIC KEY----- MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0FgDRCCYpEOiTHwtjtDI rz/OLIOhjNZKa9OEtcbyHS24GMpMYp+lAb1uCxCyyJUQ7F08phNNud39cdpBBtjg ZFSisdJARYu2IhgEvxJqN+1EKVw6psLCOwlosIJlALPohf0LzTQ2eMkrDNk1xXru 37nIF5Qn6qcX9GjAJYc51yGga98TOL1/jJZkEY+nbHIhF8vKIvjsv8uZ6p2z2UMJ CquypOeOQIG2qYlMhDE0E1+Grh7QWBOopSyuq4K+tBLa+pNXUbWpWCvapSurFwR5 5LJyBN2mp4Dl6YzrmLktF8et39ipwxl/xXj9iqEO3+xMEcQbJ+FsU4P4oFK4UeFg 9wIDAQAB -----END PUBLIC KEY----- do you have the same or different? if different - it's strange at least. i can't answer You why. From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 14:13:10 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2A221065675 for ; Wed, 26 Nov 2008 14:13:10 +0000 (UTC) (envelope-from eculp@casasponti.net) Received: from ns2.bafirst.com (72-12-2-19.static.networktel.net [72.12.2.19]) by mx1.freebsd.org (Postfix) with ESMTP id 5D15A8FC12 for ; Wed, 26 Nov 2008 14:13:10 +0000 (UTC) (envelope-from eculp@casasponti.net) Received: from casasponti.net ([201.155.7.3]) by ns2.bafirst.com with esmtp; Wed, 26 Nov 2008 08:13:07 -0600 id 000D527E.492D5974.0000813C Received: from localhost (localhost [127.0.0.1]) (uid 80) by casasponti.net with local; Wed, 26 Nov 2008 08:13:06 -0600 id 00130E15.492D5972.0000716C Received: from dsl-189-190-3-105.prod-infinitum.com.mx (dsl-189-190-3-105.prod-infinitum.com.mx [189.190.3.105]) by intranet.casasponti.net (Horde Framework) with HTTP; Wed, 26 Nov 2008 08:13:06 -0600 Message-ID: <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> Date: Wed, 26 Nov 2008 08:13:06 -0600 From: eculp@casasponti.net To: freebsd-questions@freebsd.org References: <492D51CB.9000201@a1poweruser.com> In-Reply-To: <492D51CB.9000201@a1poweruser.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (5.0-cvs) X-Remote-Browser: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.18) Gecko/20081114 Firefox/2.0.0.18 X-IMP-Server: 201.155.7.3 X-Originating-IP: 189.190.3.105 X-Originating-User: eculp@casasponti.net Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 14:13:10 -0000 Fbsd1 escribi=F3: > These applications have predefined ports they use to start up the =20 > bi-directional packet conversation. But them unsolicited packeted =20 > come in from other pc nodes to share data using a wide range of high =20 > port numbers. IPFW, IPF, and PF don't seem to have a rule option to =20 > allow packs in/out based on program name that started the =20 > conversation. > > I thought i read in openbsd pf manual that pf state processing will =20 > allow applications like limewire to function normally by accepting =20 > the inbound high number port to pass through the firewall. > > I have inclusive firewall rule set which means only packets matching > the rules are passed through. The inbound hight port numbers are > blocked by design. > > How do other firewall users code rules to allow limewire to work? Hmmm. Isn't life interesting. I would like to know how to block them =20 and others without causing strange secondary problems. Actually a default pf configuration will let them pass unless I'm =20 forgetting something important. ed > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.or= g" > From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 14:20:43 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7EE31065674 for ; Wed, 26 Nov 2008 14:20:43 +0000 (UTC) (envelope-from onemda@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.28]) by mx1.freebsd.org (Postfix) with ESMTP id 832338FC0A for ; Wed, 26 Nov 2008 14:20:43 +0000 (UTC) (envelope-from onemda@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so235275ywe.13 for ; Wed, 26 Nov 2008 06:20:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=+eClGYBzoTO05zoQIUCN4x3YdCEy8IMGfF5t2lnJMas=; b=HVZrGQMfU9mIlqn/XfLqbKx0shqzgQGgpZ8pHZaOT8zeHcQ38RFT/sODODtZ4MWiK9 nHV3X5soz4VObCc4fgxDBkhzjmsqLoXpe0WuJOberBlAOmdedt7DTidZRyx6yuaFUDd1 js3rBwGGiXJpHy+nsIII7PsnD7NKv4VyqFbNE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=CLN6scX6U88qYzyxCsGzo90CS0STukhXCaKv2Icqlf08/Hn4KG5z/Lzv2OrwqIW44t 9L6VO0AJx64ej8R8P316OPsYMl4tGsP45tHwDd25Rl3Rwuutb1NmFKKDFl1yO/a5e5QM iHthYEy9By8NxpCxWN+K8L5WyeAvnMB24jrNs= Received: by 10.231.15.74 with SMTP id j10mr68441iba.48.1227709242618; Wed, 26 Nov 2008 06:20:42 -0800 (PST) Received: by 10.231.11.8 with HTTP; Wed, 26 Nov 2008 06:20:42 -0800 (PST) Message-ID: <3a142e750811260620m2c234f13v255e3b2e37650d3a@mail.gmail.com> Date: Wed, 26 Nov 2008 15:20:42 +0100 From: "Paul B. Mahol" To: "Markus Hoenicka" In-Reply-To: <20081126150210.paxicrpz6scws0ww@webmail.df.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20081126150210.paxicrpz6scws0ww@webmail.df.eu> Cc: Andrew Gould , FreeBSD Questions Mailing List Subject: Re: presentation application (other than OpenOffice)? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 14:20:43 -0000 On 11/26/08, Markus Hoenicka wrote: > Quoting Andrew Gould : > >> I'm browsing around for smaller office apps. Abiword and Gnumeric are >> great. Does anyone have any recommendations for a presentation software? >> I'd rather not compile OpenOffice; and I'm just not "getting" KDE4. >> > > Hi Andrew, > > if you're into LaTeX, then prosper > (http://sourceforge.net/projects/prosper/) might be an option. If > you're into XML and don't need no fancy effects, then DocBook Slides > (http://docbook.sourceforge.net/release/slides/3.4.0/RELEASE-NOTES.html) may > > come in handy. Also, if you don't need any effects or transitions you > may consider any tool that creates multi-page PDF files. Adobe Reader > has a full-screen option which turns it into a presentation viewer. xpdf also support full-screen option and is much lighter than Adobe Reader, and doesnt depends on linux stuff. evince can be of use if you already have it installed, because it supports fullscreen and presentation mode. -- Paul From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 14:24:46 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BAEC8106564A for ; Wed, 26 Nov 2008 14:24:46 +0000 (UTC) (envelope-from fbsd06+4B=a6b673cf@mlists.homeunix.com) Received: from fallback-in1.mxes.net (fallback-out1.mxes.net [216.86.168.190]) by mx1.freebsd.org (Postfix) with ESMTP id 80AEC8FC17 for ; Wed, 26 Nov 2008 14:24:46 +0000 (UTC) (envelope-from fbsd06+4B=a6b673cf@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by fallback-in1.mxes.net (Postfix) with ESMTP id 740151648FA for ; Wed, 26 Nov 2008 09:09:09 -0500 (EST) Received: from gumby.homeunix.com (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id A847923E3E2 for ; Wed, 26 Nov 2008 09:09:07 -0500 (EST) Date: Wed, 26 Nov 2008 14:09:04 +0000 From: RW To: freebsd-questions@freebsd.org Message-ID: <20081126140904.72ec3400@gumby.homeunix.com> In-Reply-To: <492D51CB.9000201@a1poweruser.com> References: <492D51CB.9000201@a1poweruser.com> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 14:24:46 -0000 On Wed, 26 Nov 2008 21:40:27 +0800 Fbsd1 wrote: > I have inclusive firewall rule set which means only packets matching > the rules are passed through. The inbound hight port numbers are > blocked by design. > > How do other firewall users code rules to allow limewire to work? I don't use limewire, but for other p2p I define pf macros that list the udp and tcp ports and and explicity allow incoming connections. If you want to know what ports an application is listening on try sockstat -l. I wouldn't expose them without tracking down what they do though in case they are http, telnet, etc. From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 14:32:21 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB1591065675 for ; Wed, 26 Nov 2008 14:32:21 +0000 (UTC) (envelope-from fbsd06+4B=a6b673cf@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id 92C1A8FC19 for ; Wed, 26 Nov 2008 14:32:21 +0000 (UTC) (envelope-from fbsd06+4B=a6b673cf@mlists.homeunix.com) Received: from gumby.homeunix.com (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 26D3023E3AB for ; Wed, 26 Nov 2008 09:32:19 -0500 (EST) Date: Wed, 26 Nov 2008 14:32:17 +0000 From: RW To: freebsd-questions@freebsd.org Message-ID: <20081126143217.1ffe23e3@gumby.homeunix.com> In-Reply-To: References: X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: question regarding portsnap X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 14:32:21 -0000 On Wed, 26 Nov 2008 10:57:20 +0300 __________________ __________ wrote: > Im running FreeBSD 7.0-RELEASE #0 > The OS was downloaded from freebsd.org two months ago. > > When I am trying to upgrade ports by using portsnap, portsnap doesn't > work. > > # portsnap fetch > Looking up portsnap.FreeBSD.org mirrors... 3 mirrors found. > Fetching public key from portsnap1.freebsd.org... key has incorrect > hash. Fetching public key from portsnap2.freebsd.org... key has > incorrect hash. Fetching public key from portsnap4.freebsd.org... key > has incorrect hash. No mirrors remaining, giving up. > > Why the key is incorrect and what can be done to resolve this issue? Check /etc/portsnap.conf to see if the hash is correct there. Mine says: KEYPRINT=9b5feee6d69f170e3dd0a2c8e469ddbd64f13f978f2f3aede40c98633216c330 From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 14:45:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4A511065673 for ; Wed, 26 Nov 2008 14:45:45 +0000 (UTC) (envelope-from markus.hoenicka@mhoenicka.de) Received: from webmailfront01.ispgateway.de (webmailfront01.ispgateway.de [80.67.16.111]) by mx1.freebsd.org (Postfix) with ESMTP id DCCBD8FC26 for ; Wed, 26 Nov 2008 14:45:44 +0000 (UTC) (envelope-from markus.hoenicka@mhoenicka.de) Received: from webmailfront01.ispgateway.de (localhost [127.0.0.1]) by webmailfront01.ispgateway.de (8.14.0/8.14.0) with ESMTP id mAQEjh9A022878; Wed, 26 Nov 2008 15:45:43 +0100 Received: (from nobody@localhost) by webmailfront01.ispgateway.de (8.14.0/8.14.0/Submit) id mAQEjgZa022875; Wed, 26 Nov 2008 15:45:42 +0100 Received: from pc51997.klinik.uni-regensburg.de (pc51997.klinik.uni-regensburg.de [132.199.174.149]) by webmail.df.eu (Horde MIME library) with HTTP; Wed, 26 Nov 2008 15:45:42 +0100 Message-ID: <20081126154542.2ji6zq8js48cc088@webmail.df.eu> Date: Wed, 26 Nov 2008 15:45:42 +0100 From: Markus Hoenicka To: "Paul B. Mahol" References: <20081126150210.paxicrpz6scws0ww@webmail.df.eu> <3a142e750811260620m2c234f13v255e3b2e37650d3a@mail.gmail.com> In-Reply-To: <3a142e750811260620m2c234f13v255e3b2e37650d3a@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: domainFACTORY X-Originating-IP: 132.199.174.149 X-Df-WSender: 472582 Cc: Andrew Gould , List , FreeBSD Subject: Re: presentation application (other than OpenOffice)? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 14:45:46 -0000 Quoting "Paul B. Mahol" : > > xpdf also support full-screen option and is much lighter than Adobe Reader, > and doesnt depends on linux stuff. > evince can be of use if you already have it installed, because it > supports fullscreen and presentation mode. Yes, this is correct. I was thinking about the systems which are available when you present your talk (you're not always allowed to plug in your own box). Whenever I give a talk I have to deal with Windows systems. That's why I suggested Adobe Reader. regards, Markus -- Markus Hoenicka markus.hoenicka@cats.de (Spam-protected email: replace the quadrupeds with "mhoenicka") http://www.mhoenicka.de From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 15:25:24 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45653106564A for ; Wed, 26 Nov 2008 15:25:24 +0000 (UTC) (envelope-from info@emn-consumerpromotioncenter.com) Received: from mail7.emn-ConsumerPromotionCenter.com (mail7.emn-consumerpromotioncenter.com [216.52.156.45]) by mx1.freebsd.org (Postfix) with ESMTP id 150D28FC08 for ; Wed, 26 Nov 2008 15:25:23 +0000 (UTC) (envelope-from info@emn-consumerpromotioncenter.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=mail7; d=emn-ConsumerPromotionCenter.com; h=To:From:Subject:MIME-Version:Content-Type:Date; i=info@emn-consumerpromotioncenter.com; bh=zedAJgcAGNiOLDfWyt8v1xhvR1A=; b=TZVw8C3aJDdeXwg1FYou4mB2XIGH+pYEhxjstCVRa/n7NndmYJMuvWS4KPd0GMa2eS/cNEURzPlw WIUTVxJ8n6rC+RAOR8fpXS40HL9oNdz8/dz5wrwRZtEGTqTDJ0gy DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=mail7; d=emn-ConsumerPromotionCenter.com; b=e6NSQwWDwxBZ2itkME4GrXRbTj1AqtSLkQKZUfvuI6QFpCE0SCoXtwN24pC3XcCx6xNx8LzJLf+6 TYS2UH1U6ZiGnw9bnv+7lYbakN3xl7eBCcgXOjyRalqaDHNpaibq; Received: by mail7.emn-ConsumerPromotionCenter.com (PowerMTA(TM) v3.2r18) id h5ll660n1jk5 for ; Wed, 26 Nov 2008 09:04:44 -0600 (envelope-from ) To: " " From: "ConsumerPromotionCenter" x-recipid: 100634216 x-rpid: brge-10123308 Date: Wed, 26 Nov 2008 09:03:30 -0600 Message-Id: <20081126152524.150D28FC08@mx1.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Say Goodbye to Lines and Wrinkles X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 15:25:24 -0000 You received this message by consenting to receive e-mail from Consumer-PromotionCenter on 11/24/2008 12:00:00 AM. To be sure you don't miss any special offers, please add info@emn-consumerpromotioncenter.com to your address book. Consumer-PromotionCenter [UB6LZEULE2JY2.gif] [1]Say Goodbye to Lines and Wrinkles with iQ SkinTensive. * Product is free to try for 30 days. Pay only a small shipping & handling fee. Customer is responsible for return postage. Consumer-PromotionCenter 22647 Ventura Blvd · Suite 258 Woodland Hills, CA 91364 [2]Privacy Policy · [3]Unsubscribe References Visible links 1. http://site.emn-consumerpromotioncenter.com/l.m/J5OCCVB7UFCDS/UB6LZEULE2JY2.html 2. http://members.emn-consumerpromotioncenter.com/ 3. http://www.consumer-promotioncenter.com/u.cgi?config=3813 Hidden links: 4. http://site.emn-consumerpromotioncenter.com/l.m/67Y4BGSRYS5BG/UB6LZEULE2JY2.html 5. http://site.emn-consumerpromotioncenter.com/l.m/YPF7TVGIR2DR6/UB6LZEULE2JY2.html 6. http://site.emn-consumerpromotioncenter.com/l.m/I5XCZWVRXAL3A/UB6LZEULE2JY2.html 7. http://site.emn-consumerpromotioncenter.com/l.m/E3GFQNOAPQRCW/UB6LZEULE2JY2.html 8. http://site.emn-consumerpromotioncenter.com/l.m/OTQDB4WCPQCNA/UB6LZEULE2JY2.html 9. http://site.emn-consumerpromotioncenter.com/l.m/3YFB55FDSMDX6/UB6LZEULE2JY2.html 10. http://site.emn-consumerpromotioncenter.com/l.m/S3LZ44RUQDAHQ/UB6LZEULE2JY2.html 11. http://site.emn-consumerpromotioncenter.com/l.m/REJ7TC6STA4X6/UB6LZEULE2JY2.html 12. http://site.emn-consumerpromotioncenter.com/l.m/3GPU6PFNETJO2/UB6LZEULE2JY2.html 13. http://site.emn-consumerpromotioncenter.com/l.m/VGFC655BTT6NG/UB6LZEULE2JY2.html 14. http://site.emn-consumerpromotioncenter.com/l.m/HDJNFP7TGDDMO/UB6LZEULE2JY2.html 15. http://site.emn-consumerpromotioncenter.com/l.m/ITNMKKBQ4AZFO/UB6LZEULE2JY2.html From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 15:31:26 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6047F106564A for ; Wed, 26 Nov 2008 15:31:26 +0000 (UTC) (envelope-from ribalba@gmail.com) Received: from mail-gx0-f12.google.com (mail-gx0-f12.google.com [209.85.217.12]) by mx1.freebsd.org (Postfix) with ESMTP id 1391B8FC17 for ; Wed, 26 Nov 2008 15:31:25 +0000 (UTC) (envelope-from ribalba@gmail.com) Received: by gxk5 with SMTP id 5so552901gxk.19 for ; Wed, 26 Nov 2008 07:31:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=LmGdGwrHLVTVJUtwWIVLyy0jKxYe4UtXWQbqRbsa+t0=; b=q0tRLLojSFi7dV2bhDT99GeX3MiDWjCKxMpYYZypcEAdSmYXn2/6Ey6XoOIpNASmWN JIrJ4kvst0X58P9LpySMvXbJpHlePMl1rkr6PweS8B21cvcCcqAUqRIR9vwB6gamWvd2 m4xcx166ABoR4r52Ic6wPVjtMyyjC975NtPyc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=WFb+J82i06vVHUDniWjEqPA82pxZoW9Rmsr8v1EaHpLxB/x5ib8WVxDOp/UvrDG+BT aQIxF3h/9USr9/GFDMovHSbO5/lXGcqtgJoAMjyjOVhTR8XKWcazmaGBApxakzJN1yx3 jssQ7fER9nZyByW+lJ3xXnw1sN3TBLqSy0wXg= Received: by 10.151.39.2 with SMTP id r2mr118041ybj.22.1227711343467; Wed, 26 Nov 2008 06:55:43 -0800 (PST) Received: by 10.151.129.3 with HTTP; Wed, 26 Nov 2008 06:55:43 -0800 (PST) Message-ID: <20a764e60811260655m378d1e0dh669ca4369d5faa5a@mail.gmail.com> Date: Wed, 26 Nov 2008 14:55:43 +0000 From: Didi To: "Andrew Gould" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: Cc: FreeBSD Questions Mailing List Subject: Re: presentation application (other than OpenOffice)? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 15:31:26 -0000 You might want to have a look at http://meyerweb.com/eric/tools/s5/ Works in a browser ;) From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 15:35:16 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8FD51065674 for ; Wed, 26 Nov 2008 15:35:16 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: from mail-gx0-f12.google.com (mail-gx0-f12.google.com [209.85.217.12]) by mx1.freebsd.org (Postfix) with ESMTP id 9A4D48FC0A for ; Wed, 26 Nov 2008 15:35:16 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: by gxk5 with SMTP id 5so554837gxk.19 for ; Wed, 26 Nov 2008 07:35:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=B4733o59Cbda5J2uKdfBIrp8C9zWS/si88ckppIIuoo=; b=IdWl5KjMikHh5miqRUralz43IuAIIPqS4Cd/9/T3pLCvrMuUCA6uIlUJA9JY8Ftutb XGZhSpSK1dF2SMNV/wsrnFmQZd2wgNg/fXO9vovcP/AFy3tDQf7trpy48PhYV2AcLZMG G4byp4XI8ujlYzOV622WrPt96N8/49GHyr3/k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=qucPwtl/Qm2ETt/R9Qxclz7EzFXKzIn5uUNYeQUBMpESaJOyM5vHYuAp1KnO4rq2Sa zt/8e/8kZDa8GUvjExtDYXfRZa0QkBWPdXg8q0WEWYJytyy46s3I1A3meeTCLWvbvxY8 14iolQvVOoV/aQyIVTw+KLboxWRhukS9242yI= Received: by 10.103.160.9 with SMTP id m9mr2171548muo.96.1227713329079; Wed, 26 Nov 2008 07:28:49 -0800 (PST) Received: by 10.103.228.17 with HTTP; Wed, 26 Nov 2008 07:28:49 -0800 (PST) Message-ID: Date: Wed, 26 Nov 2008 09:28:49 -0600 From: "Andrew Gould" To: eculp@casasponti.net In-Reply-To: <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> MIME-Version: 1.0 References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 15:35:17 -0000 On Wed, Nov 26, 2008 at 8:13 AM, wrote: > > Hmmm. Isn't life interesting. I would like to know how to block them and > others without causing strange secondary problems. > > Actually a default pf configuration will let them pass unless I'm > forgetting something important. > > ed > I share your pain, Ed. I've had to perform 3 complete re-installations of computers in my household in the last year. Each time, I found a ".limewire" file in a user's application folder. The boys are now banned from my wife's computer. When the last culprit get's his computer back, he will find it running an operating system that is not supported by Limewire. The next time, he'll get it back without a network card. Andrew From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 15:37:03 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A42C0106564A for ; Wed, 26 Nov 2008 15:37:03 +0000 (UTC) (envelope-from ghartl@gmail.com) Received: from mail-qy0-f18.google.com (mail-qy0-f18.google.com [209.85.221.18]) by mx1.freebsd.org (Postfix) with ESMTP id 5487F8FC1B for ; Wed, 26 Nov 2008 15:37:03 +0000 (UTC) (envelope-from ghartl@gmail.com) Received: by qyk11 with SMTP id 11so658491qyk.19 for ; Wed, 26 Nov 2008 07:37:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :message-id:mime-version:content-type:content-transfer-encoding :x-mailer:thread-index:content-language; bh=zWcXaiOF5bMVuTngHAodq0LRxD6U/IypPQE5aJP0tKI=; b=O9yboLRN9Vnli0//kNAiiZ7PUJTq2U0Win9XyYMZpn/GsOlchpMPisQpcRtrTN0WGe nPK5GUmNSeKpN3srkW2zG2RcdI04dMEgsyVnYX0mpRZZqtN9NGZsJmWGzFwArPadz0XS Ybnj5EQjWIj7d8kuOa9FKDNutVDCljSMAtHUE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:mime-version:content-type :content-transfer-encoding:x-mailer:thread-index:content-language; b=b6GteohMyYeD2pr/gVdf27H2IYVjaOWf7xODgS5EKok4UR5BU0Qypwl34VaUuVmfju wTlN7lDuOLTHWnOSGZmq4rpeKDdA5igVL9ryAK1NH0mKgYy1Xy4LMcXDiWuziSQhiQAd aImtJRORp6J5bOnedXzXTuqBmsHv5sYtVc4XY= Received: by 10.65.139.1 with SMTP id r1mr6300755qbn.66.1227713822165; Wed, 26 Nov 2008 07:37:02 -0800 (PST) Received: from mainpc (d226-16-220.home.cgocable.net [24.226.16.220]) by mx.google.com with ESMTPS id s35sm709129qbs.13.2008.11.26.07.37.01 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 26 Nov 2008 07:37:01 -0800 (PST) From: "Gary Hartl" To: "FreeBSD Questions" Date: Wed, 26 Nov 2008 10:36:40 -0500 Message-ID: <002801c94fdc$c7206c00$55614400$@com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: AclP3MaiVONaf9BETCOFqk/xVG0GFg== Content-Language: en-ca Subject: Update a package X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 15:37:03 -0000 Hi all; Ok uber noob question here. I have gettext-0.14.5 installed from the package tree, I want to update to gettext-0.17_1 Is there a ways to do that with the pkg_add or some other command? I google'ed it and only found ways to update local ports sources...(which means I either suck at google or fbsd or both) Thanks for understanding my noobness. Gary From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 15:40:30 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 519081065674 for ; Wed, 26 Nov 2008 15:40:30 +0000 (UTC) (envelope-from ghartl@gmail.com) Received: from mail-qy0-f18.google.com (mail-qy0-f18.google.com [209.85.221.18]) by mx1.freebsd.org (Postfix) with ESMTP id EBD4A8FC0C for ; Wed, 26 Nov 2008 15:40:29 +0000 (UTC) (envelope-from ghartl@gmail.com) Received: by qyk11 with SMTP id 11so661536qyk.19 for ; Wed, 26 Nov 2008 07:40:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:references :in-reply-to:subject:date:message-id:mime-version:content-type :content-transfer-encoding:x-mailer:thread-index:content-language; bh=4VKHYJyjC76rvVv/dFSkgPn1f4Bc/ULH9j5VlIzxkWc=; b=rEKRrsHx1GhMAi6j0WPPTfxATwOlDJkFJ1IQx573uM0CLylEbK72vnDJp2xXIAuQYn JWRu3M0t0jwOTDcuUADZqDTNKF1P9RvPKHtFth1VsRhmaIRo/an5B/BR3qVnHWoWO0gW y6WPPXgNkdGUApQfFtpg5K1LfQQFDQPu2YLD4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:references:in-reply-to:subject:date:message-id:mime-version :content-type:content-transfer-encoding:x-mailer:thread-index :content-language; b=Pw3Gdvnt9mVKK4Gg6tv1MQasypQl9Cj+ezfifegMyuNfgL4jQkYU07S1MP+8YIy13W PEHs8sljAoqg6r6519yR8Y8yF4qWrdgfkwY8X+m2o2Jl78T9ypVrW7mCSSFQmoDaqUAq roRyrFNzMy9SaZuxArJCoqB3DxbSA5pvCqC5E= Received: by 10.65.51.16 with SMTP id d16mr6307120qbk.41.1227714025945; Wed, 26 Nov 2008 07:40:25 -0800 (PST) Received: from mainpc (d226-16-220.home.cgocable.net [24.226.16.220]) by mx.google.com with ESMTPS id k7sm729732qba.3.2008.11.26.07.40.24 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 26 Nov 2008 07:40:24 -0800 (PST) From: "Gary Hartl" To: References: <20081126152524.150D28FC08@mx1.freebsd.org> In-Reply-To: <20081126152524.150D28FC08@mx1.freebsd.org> Date: Wed, 26 Nov 2008 10:40:03 -0500 Message-ID: <002901c94fdd$40594a10$c10bde30$@com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: AclP22ZUFyGqZlrnQjuL91m6T4r8MgAAbm4g Content-Language: en-ca Subject: RE: Say Goodbye to Lines and Wrinkles X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 15:40:30 -0000 Wow can you believe that we consented to receiving this. Amazing. This has to be legit right... ... Gary -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of ConsumerPromotionCenter Sent: November-26-08 10:04 AM To: Subject: Say Goodbye to Lines and Wrinkles You received this message by consenting to receive e-mail from Consumer-PromotionCenter on 11/24/2008 12:00:00 AM. To be sure you don't miss any special offers, please add info@emn-consumerpromotioncenter.com to your address book. Consumer-PromotionCenter [UB6LZEULE2JY2.gif] [1]Say Goodbye to Lines and Wrinkles with iQ SkinTensive. * Product is free to try for 30 days. Pay only a small shipping & handling fee. Customer is responsible for return postage. Consumer-PromotionCenter 22647 Ventura Blvd . Suite 258 Woodland Hills, CA 91364 [2]Privacy Policy . [3]Unsubscribe References Visible links 1. http://site.emn-consumerpromotioncenter.com/l.m/J5OCCVB7UFCDS/UB6LZEULE2JY2. html 2. http://members.emn-consumerpromotioncenter.com/ 3. http://www.consumer-promotioncenter.com/u.cgi?config=3813 Hidden links: 4. http://site.emn-consumerpromotioncenter.com/l.m/67Y4BGSRYS5BG/UB6LZEULE2JY2. html 5. http://site.emn-consumerpromotioncenter.com/l.m/YPF7TVGIR2DR6/UB6LZEULE2JY2. html 6. http://site.emn-consumerpromotioncenter.com/l.m/I5XCZWVRXAL3A/UB6LZEULE2JY2. html 7. http://site.emn-consumerpromotioncenter.com/l.m/E3GFQNOAPQRCW/UB6LZEULE2JY2. html 8. http://site.emn-consumerpromotioncenter.com/l.m/OTQDB4WCPQCNA/UB6LZEULE2JY2. html 9. http://site.emn-consumerpromotioncenter.com/l.m/3YFB55FDSMDX6/UB6LZEULE2JY2. html 10. http://site.emn-consumerpromotioncenter.com/l.m/S3LZ44RUQDAHQ/UB6LZEULE2JY2. html 11. http://site.emn-consumerpromotioncenter.com/l.m/REJ7TC6STA4X6/UB6LZEULE2JY2. html 12. http://site.emn-consumerpromotioncenter.com/l.m/3GPU6PFNETJO2/UB6LZEULE2JY2. html 13. http://site.emn-consumerpromotioncenter.com/l.m/VGFC655BTT6NG/UB6LZEULE2JY2. html 14. http://site.emn-consumerpromotioncenter.com/l.m/HDJNFP7TGDDMO/UB6LZEULE2JY2. html 15. http://site.emn-consumerpromotioncenter.com/l.m/ITNMKKBQ4AZFO/UB6LZEULE2JY2. html _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 15:47:47 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61FCA1065675 for ; Wed, 26 Nov 2008 15:47:47 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from cpanel03.rubas-s03.net (cpanel03.rubas-s03.net [195.182.222.73]) by mx1.freebsd.org (Postfix) with ESMTP id 19ED78FC0C for ; Wed, 26 Nov 2008 15:47:47 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from [213.142.183.219] (helo=gahrtop.gahr.ch) by cpanel03.rubas-s03.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1L5MJX-0000mr-9A; Wed, 26 Nov 2008 16:28:27 +0100 Message-ID: <492D6B0B.4080008@FreeBSD.org> Date: Wed, 26 Nov 2008 16:28:11 +0100 From: Pietro Cerutti Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (X11/20081125) MIME-Version: 1.0 To: Andrew Gould References: In-Reply-To: X-Enigmail-Version: 0.95.6 OpenPGP: id=9571F78E; url=http://gahr.ch/pgp/ Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cpanel03.rubas-s03.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - FreeBSD.org X-Source: X-Source-Args: X-Source-Dir: Cc: FreeBSD Questions Mailing List Subject: Re: presentation application (other than OpenOffice)? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 15:47:47 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Andrew Gould wrote: | I'm browsing around for smaller office apps. Abiword and Gnumeric are | great. Does anyone have any recommendations for a presentation software? | I'd rather not compile OpenOffice; and I'm just not "getting" KDE4. I would suggest LaTeX's beamer class http://latex-beamer.sourceforge.net/ | | Thanks, | | Andrew | _______________________________________________ | freebsd-questions@freebsd.org mailing list | http://lists.freebsd.org/mailman/listinfo/freebsd-questions | To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" - -- Pietro Cerutti gahr@FreeBSD.org PGP Public Key: http://gahr.ch/pgp -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEAREKAAYFAkktawoACgkQwMJqmJVx945+bwCg0srGQ3gOgjSEMc98q7XpwMsK oOoAn2MdIUSlpSD95Edel+BRpoNgMr9j =XP1+ -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 15:59:42 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D930E1065674 for ; Wed, 26 Nov 2008 15:59:42 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from hmacs.cmi.ua.ac.be (hmacs.cmi.ua.ac.be [143.129.75.10]) by mx1.freebsd.org (Postfix) with ESMTP id 68EDA8FC1B for ; Wed, 26 Nov 2008 15:59:42 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from hmacs.cmi.ua.ac.be (localhost [127.0.0.1]) by hmacs.cmi.ua.ac.be (8.13.8+Sun/8.13.8) with ESMTP id mAQFxfqk002918 for ; Wed, 26 Nov 2008 16:59:41 +0100 (CET) Received: from localhost (pdon@localhost) by hmacs.cmi.ua.ac.be (8.13.8+Sun/8.13.8/Submit) with ESMTP id mAQFxe3m002915 for ; Wed, 26 Nov 2008 16:59:41 +0100 (CET) X-Authentication-Warning: hmacs.cmi.ua.ac.be: pdon owned process doing -bs Date: Wed, 26 Nov 2008 16:59:40 +0100 (CET) From: Pieter Donche X-X-Sender: pdon@hmacs.cmi.ua.ac.be To: freebsd-questions@freebsd.org In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: KDM stopping X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pieter Donche List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 15:59:42 -0000 FreeBSD-7.0-RELEASE, with KDE as desktop environment and KDM as display manager. I have 2 users, say user1 and user2. Boot, KDM login as user1, OK. Then I do a close session. OK, KDM presents me again with the KDM login screen, login as user2, OK. Then again, close session. Now, the KDM login screen does not come back. I am stuck with a cursor blinking at the upper left corner. Ctrl-Alt-F1 brings me to the console, Ctrl-Alt-F7: no X, just a login:prompt If I reboot and do the same thing, but now first with user2, then user1 -> exactly same behaviour (X dies at the second close session). So, it's not connected with user2. Anyone a idea what could be wrong? Below are some log details: The /var/log/kdm-log shows: ------ ... X.Org X Server 1.4.0 Release Date: 5 September 2007 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.0-RELEASE i386 Current Operating System: FreeBSD pclinwi74.cmi.ua.ac.be 7.0-RELEASE FreeBSD 7. 0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 root@logan.cse.buffalo.edu:/usr/ obj/usr/src/sys/GENERIC i386 Build Date: 13 February 2008 05:50:12PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Module Loader present Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Wed Nov 26 16:27:31 2008 (EE) Unable to locate/open config file New driver is "i810" (==) Using default built-in configuration (55 lines) (EE) Failed to load module "fbdev" (module does not exist, 0) (II) Module "ddc" already built-in (II) Module "ramdac" already built-in FreeFontPath: FPE "/usr/local/lib/X11/fonts/misc/" refcount is 2, should be 1; fixing. FreeFontPath: FPE "/usr/local/lib/X11/fonts/misc/" refcount is 2, should be 1; fixing. (EE) I810(0): V_BIOS address 0x0 out of range Fatal server error: Caught signal 11. Server aborting X.Org X Server 1.4.0 Release Date: 5 September 2007 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.0-RELEASE i386 Current Operating System: FreeBSD pclinwi74.cmi.ua.ac.be 7.0-RELEASE FreeBSD 7. 0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 root@logan.cse.buffalo.edu:/usr/ obj/usr/src/sys/GENERIC i386 Build Date: 13 February 2008 05:50:12PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Module Loader present Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Wed Nov 26 16:43:42 2008 (EE) Unable to locate/open config file New driver is "i810" (==) Using default built-in configuration (55 lines) (EE) Failed to load module "fbdev" (module does not exist, 0) (EE) I810(0): V_BIOS address 0x0 out of range (EE) I810(0): VBE initialization failed. (EE) Screen(s) found, but none have a usable configuration. Fatal server error: no screens found ------- /var/log/messages contains: ---------- ...... Nov 26 16:29:03 pclinwi74 kernel: pid 853 (Xorg), uid 0: exited on signal 11 (c ore dumped) Nov 26 16:29:03 pclinwi74 kdm-bin[850]: X server for display :0 terminated unex pectedly Nov 26 16:29:03 pclinwi74 kdm-bin: :0[1137]: IO Error in XOpenDisplay Nov 26 16:29:03 pclinwi74 kdm-bin[850]: Display :0 cannot be opened Nov 26 16:29:03 pclinwi74 kdm-bin[850]: Unable to fire up local display :0; dis abling. Nov 26 16:29:30 pclinwi74 login: ROOT LOGIN (root) ON ttyv0 Nov 26 16:43:40 pclinwi74 shutdown: reboot by root: Nov 26 16:43:42 pclinwi74 kdm-bin[850]: X server for display :0 terminated unex pectedly Nov 26 16:43:42 pclinwi74 kdm-bin[850]: Unable to fire up local display :0; dis abling. Nov 26 16:43:42 pclinwi74 syslogd: exiting on signal 15 -------- From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:03:00 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9E451065670 for ; Wed, 26 Nov 2008 16:03:00 +0000 (UTC) (envelope-from tfcheng@gmail.com) Received: from mail-gx0-f12.google.com (mail-gx0-f12.google.com [209.85.217.12]) by mx1.freebsd.org (Postfix) with ESMTP id 724938FC1B for ; Wed, 26 Nov 2008 16:03:00 +0000 (UTC) (envelope-from tfcheng@gmail.com) Received: by gxk5 with SMTP id 5so566390gxk.19 for ; Wed, 26 Nov 2008 08:02:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=i4uqamJacnoMSehkuasMYK7K/Y+QCvGYtgv21rrD0Pw=; b=rjIXFg1awDClQ+IR3Y6egIqR7xW1O2ejTmyyPCuQvswq8LffEd3Lx65d5VxROTZRub d5c8VPXxYvDNyy6h+IGBeHn21n21N0nDjMdnaglhgBLVNaIxHmTIwbFzgR/fD+MFh6zm oscLea9Q5Q7MPB5NQ6UiyO3t0ueWR1+1/gkY4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=N5mcAOldi9/6Em7dMFrh+dVnGWw+kSXmmzI7o+rw4LRhE6ECFModDZdBztgcNcJB0L 2rIIbB0vNkcZh1aIFlGOT/se9MzMTyDGDUwos+1qw/w+tB+QkLh/Jem1jY78DmNLoUky 5WHdatYzJe0ZPduRYufOdK34tX8OpM3tM5xp4= Received: by 10.142.134.20 with SMTP id h20mr2612847wfd.342.1227714925264; Wed, 26 Nov 2008 07:55:25 -0800 (PST) Received: by 10.142.13.18 with HTTP; Wed, 26 Nov 2008 07:55:25 -0800 (PST) Message-ID: Date: Wed, 26 Nov 2008 10:55:25 -0500 From: "Tsu-Fan Cheng" To: "Gary Hartl" In-Reply-To: <002801c94fdc$c7206c00$55614400$@com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <002801c94fdc$c7206c00$55614400$@com> Cc: FreeBSD Questions Subject: Re: Update a package X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:03:01 -0000 from /usr/ports/UPDATE, you need to rebuild all ports... AFFECTS: users of devel/gettext (i.e.: YOU) AUTHOR: ade@FreeBSD.org As a result of the upgrade to gettext-0.17, the shared library version of libintl has changed, so you will need to rebuild all ports that depend on gettext: # portupgrade -rf gettext # portmaster -r gettext\* Given the scope and sheer number of dependent ports, it may be more advisable to simply blow away all existing install ports (after keeping any local configuration changes), and rebuilding from scratch. good luck!! TFC On Wed, Nov 26, 2008 at 10:36 AM, Gary Hartl wrote: > Hi all; > > Ok uber noob question here. > > I have gettext-0.14.5 installed from the package tree, I want to update to > gettext-0.17_1 > > Is there a ways to do that with the pkg_add or some other command? > > I google'ed it and only found ways to update local ports sources...(which > means I either suck at google or fbsd or both) > > Thanks for understanding my noobness. > > Gary > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:04:00 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 390B71065674 for ; Wed, 26 Nov 2008 16:04:00 +0000 (UTC) (envelope-from ghartl@gmail.com) Received: from mail-qy0-f18.google.com (mail-qy0-f18.google.com [209.85.221.18]) by mx1.freebsd.org (Postfix) with ESMTP id C4EAD8FC1C for ; Wed, 26 Nov 2008 16:03:59 +0000 (UTC) (envelope-from ghartl@gmail.com) Received: by qyk11 with SMTP id 11so681284qyk.19 for ; Wed, 26 Nov 2008 08:03:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:references :in-reply-to:subject:date:message-id:mime-version:content-type :content-transfer-encoding:x-mailer:thread-index:content-language; bh=YWLgQaXNVnkaHvXcZnP994Krg5BVD9268zz/N7is/qA=; b=xgrrGxTJe5nA4rdv4FSER6y3eANyUByG0iTnvLWPVfl1B1o1XHCRpKig1nQurv3slV o7XjIixZhD9XaEsyXOOTmOM7fDI9727h/vOmJXI3IT1CAoFkghfmZPuH9mSGW2uRSGAF xa9hI4qRgLwU2YQvUj5IY5dArzLV4wHYTMzoo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:references:in-reply-to:subject:date:message-id:mime-version :content-type:content-transfer-encoding:x-mailer:thread-index :content-language; b=JheXM5ehWSF/gx1TdUCUBHagpPlhM9K7hywOVpqdkWdF0+IUPPJCqYwDN4ZNvTravR M3BGqRcxNIHL6b/E6nUgPrx2MkrCaxXxwrvwPxuiuq8tfCjf5jG+txWuX+xjZxx5uRjD cGSzBLIvekyMix1WkRXMROorS+LRH96usutRk= Received: by 10.65.204.2 with SMTP id g2mr6337610qbq.45.1227715438073; Wed, 26 Nov 2008 08:03:58 -0800 (PST) Received: from mainpc (d226-16-220.home.cgocable.net [24.226.16.220]) by mx.google.com with ESMTPS id 9sm818144qbw.6.2008.11.26.08.03.56 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 26 Nov 2008 08:03:57 -0800 (PST) From: "Gary Hartl" To: "'FreeBSD Questions'" References: <002801c94fdc$c7206c00$55614400$@com> In-Reply-To: Date: Wed, 26 Nov 2008 11:03:35 -0500 Message-ID: <002a01c94fe0$8a37c870$9ea75950$@com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: AclP32W9nil1YIkVSH2UifQfHYTTLwAAOYgA Content-Language: en-ca Subject: RE: Update a package X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:04:00 -0000 So am I to understand the package tree is considered part of the ports, i've fetching the packages from ftp://ftp.freebsd.org/pub/FreeBSD/ports/sparc64/packages-6-stable/All/ I don't have a local ports tree, since i'm tight on space ( only 20gig HDD ). Can ports be fetched remotely? Thanks Gary from /usr/ports/UPDATE, you need to rebuild all ports... AFFECTS: users of devel/gettext (i.e.: YOU) AUTHOR: ade@FreeBSD.org As a result of the upgrade to gettext-0.17, the shared library version of libintl has changed, so you will need to rebuild all ports that depend on gettext: # portupgrade -rf gettext # portmaster -r gettext\* Given the scope and sheer number of dependent ports, it may be more advisable to simply blow away all existing install ports (after keeping any local configuration changes), and rebuilding from scratch. good luck!! TFC On Wed, Nov 26, 2008 at 10:36 AM, Gary Hartl wrote: > Hi all; > > Ok uber noob question here. > > I have gettext-0.14.5 installed from the package tree, I want to update to > gettext-0.17_1 > > Is there a ways to do that with the pkg_add or some other command? > > I google'ed it and only found ways to update local ports sources...(which > means I either suck at google or fbsd or both) > > Thanks for understanding my noobness. > > Gary > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:10:25 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06306106564A for ; Wed, 26 Nov 2008 16:10:25 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: from web32102.mail.mud.yahoo.com (web32102.mail.mud.yahoo.com [68.142.207.116]) by mx1.freebsd.org (Postfix) with SMTP id A1B908FC16 for ; Wed, 26 Nov 2008 16:10:24 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: (qmail 82924 invoked by uid 60001); 26 Nov 2008 16:10:23 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:MIME-Version:Content-Type:Message-ID; b=MnDMQCbAvzZXxdm6jTnsP9MoPE/OYDPLYIdN76o3AmkxdBScXcQ6k3y0u1Vxdrv57n0b9qgYOpCzCZ+oAr/7CAzrOSUatktzVgj0ArYwh0HYbOmb42n3NYQr1TmY0hoHh+gIkysHo2AYE5of1FEfNr7gG/RcJMAG1DGCXdwIUOU=; X-YMail-OSG: H735WFcVM1lEiOGf5sBcRSb9VXPXRx2aizZPSLzwhjr13F9zx1stR4Tjfdj7OrdQ580oldbh1tBtxU8smhf1gHk63XbqadXJCRyIZJ6zUQDWnfrvjcCfnUowApNu2xxfudXEW8ATi_Da2R1W.ratCXk5mWRem_3WahD5F7_bk.GgmyCWse.XLeXmhg-- Received: from [76.23.177.172] by web32102.mail.mud.yahoo.com via HTTP; Wed, 26 Nov 2008 08:10:23 PST X-Mailer: YahooMailRC/1155.32 YahooMailWebService/0.7.260.1 References: <002801c94fdc$c7206c00$55614400$@com> Date: Wed, 26 Nov 2008 08:10:23 -0800 (PST) From: GESBBB To: FreeBSD Users Questions MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-ID: <755608.78983.qm@web32102.mail.mud.yahoo.com> Subject: Re: Update a package X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:10:25 -0000 > From: Gary Hartl > > Hi all; > > Ok uber noob question here. > > I have gettext-0.14.5 installed from the package tree, I want to update to > gettext-0.17_1 > > Is there a ways to do that with the pkg_add or some other command? > > I google'ed it and only found ways to update local ports sources...(which > means I either suck at google or fbsd or both) > > Thanks for understanding my noobness. > > Gary Personally, I would just insure that my ports tree was up-to-date and then use either 'portmanager' or 'portupgrade' to handle the chore. My preference is for 'portmanager'. -- Jerry From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:15:12 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD7D51065676 for ; Wed, 26 Nov 2008 16:15:12 +0000 (UTC) (envelope-from axel.burwitz@arcor.de) Received: from mail-in-17.arcor-online.net (mail-in-17.arcor-online.net [151.189.21.57]) by mx1.freebsd.org (Postfix) with ESMTP id 92E818FC21 for ; Wed, 26 Nov 2008 16:15:12 +0000 (UTC) (envelope-from axel.burwitz@arcor.de) Received: from mail-in-01-z2.arcor-online.net (mail-in-01-z2.arcor-online.net [151.189.8.13]) by mail-in-17.arcor-online.net (Postfix) with ESMTP id 835302BE1D9; Wed, 26 Nov 2008 16:41:54 +0100 (CET) Received: from mail-in-08.arcor-online.net (mail-in-08.arcor-online.net [151.189.21.48]) by mail-in-01-z2.arcor-online.net (Postfix) with ESMTP id 569942BFC8B; Wed, 26 Nov 2008 16:41:54 +0100 (CET) Received: from freebsd (dslb-084-058-020-119.pools.arcor-ip.net [84.58.20.119]) (Authenticated sender: axel.burwitz@arcor.de) by mail-in-08.arcor-online.net (Postfix) with ESMTP id 1BA932BB6F5; Wed, 26 Nov 2008 16:41:54 +0100 (CET) Date: Wed, 26 Nov 2008 16:41:49 +0100 To: "Gary Hartl" , "FreeBSD Questions" From: "Axel Burwitz" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 References: <002801c94fdc$c7206c00$55614400$@com> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <002801c94fdc$c7206c00$55614400$@com> User-Agent: Opera Mail/9.62 (FreeBSD) X-Virus-Scanned: ClamAV 0.94.1/8683/Wed Nov 26 07:58:25 2008 on mail-in-08.arcor-online.net X-Virus-Status: Clean Cc: Subject: Re: Update a package X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: axel.burwitz@arcor.de List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:15:13 -0000 On Wed, 26 Nov 2008 16:36:40 +0100, Gary Hartl wrote: > Hi all; > > Ok uber noob question here. > > I have gettext-0.14.5 installed from the package tree, I want to update > to > gettext-0.17_1 > > Is there a ways to do that with the pkg_add or some other command? > > I google'ed it and only found ways to update local ports sources...(which > means I either suck at google or fbsd or both) > > Thanks for understanding my noobness. > > Gary man portupgrade From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:17:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6BE741065673 for ; Wed, 26 Nov 2008 16:17:28 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail1.sea5.speakeasy.net (mail1.sea5.speakeasy.net [69.17.117.3]) by mx1.freebsd.org (Postfix) with ESMTP id 425F58FC27 for ; Wed, 26 Nov 2008 16:17:28 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 16144 invoked from network); 26 Nov 2008 16:17:26 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail1.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 26 Nov 2008 16:17:26 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 6A7545087F; Wed, 26 Nov 2008 11:17:25 -0500 (EST) To: "Gary Hartl" References: <002801c94fdc$c7206c00$55614400$@com> <002a01c94fe0$8a37c870$9ea75950$@com> From: Lowell Gilbert Date: Wed, 26 Nov 2008 11:17:25 -0500 In-Reply-To: <002a01c94fe0$8a37c870$9ea75950$@com> (Gary Hartl's message of "Wed\, 26 Nov 2008 11\:03\:35 -0500") Message-ID: <44abbm31ii.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: 'FreeBSD Questions' Subject: Re: Update a package X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:17:28 -0000 "Gary Hartl" writes: > So am I to understand the package tree is considered part of the ports, i've > fetching the packages from > ftp://ftp.freebsd.org/pub/FreeBSD/ports/sparc64/packages-6-stable/All/ > > I don't have a local ports tree, since i'm tight on space ( only 20gig HDD > ). > > Can ports be fetched remotely? Sure. pkg_add(1) has a '-r' option for fetching remotely, and portupgrade(1) has a '-P' option to specify using packages (it will fetch from FreeBSD servers if possible). -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:22:18 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09A131065672 for ; Wed, 26 Nov 2008 16:22:18 +0000 (UTC) (envelope-from k_proskurin@fxclub.org) Received: from mx.fxclub.org (mx.fxclub.org [89.108.83.253]) by mx1.freebsd.org (Postfix) with ESMTP id 2C96C8FC26 for ; Wed, 26 Nov 2008 16:22:17 +0000 (UTC) (envelope-from k_proskurin@fxclub.org) Received: from [195.161.112.230] (helo=mail.fxclub.org) by mx.fxclub.org with esmtps (TLSv1:AES256-SHA:256) (Exim) id 1L5Mfx-000Nfa-Af for freebsd-questions@freebsd.org; Wed, 26 Nov 2008 15:51:37 +0000 Received: from fw-office.fxclub.org ([194.87.53.162] helo=proskurin-kv.hq.fxclub.org) by mail.fxclub.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim) id 1L5Mfu-0005Z0-K9 for freebsd-questions@freebsd.org; Wed, 26 Nov 2008 15:51:34 +0000 Message-ID: <492D7087.3010601@fxclub.org> Date: Wed, 26 Nov 2008 18:51:35 +0300 From: Proskurin Kirill User-Agent: Thunderbird 2.0.0.18 (X11/20081125) MIME-Version: 1.0 To: FreeBSD Questions Mailing List Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Dell PERC 6 RAID Controller monitoring X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD Questions Mailing List List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:22:18 -0000 Hello all. Quick question - is where is a way to monitoring Dell PERC 6 RAID Controller in FreeBSD 7.x ? -- Best regards, Proskurin Kirill From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:22:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B80C106564A for ; Wed, 26 Nov 2008 16:22:23 +0000 (UTC) (envelope-from k_proskurin@fxclub.org) Received: from mx.fxclub.org (mx.fxclub.org [89.108.83.253]) by mx1.freebsd.org (Postfix) with ESMTP id 12EAC8FC2A for ; Wed, 26 Nov 2008 16:22:22 +0000 (UTC) (envelope-from k_proskurin@fxclub.org) Received: from [195.161.112.230] (helo=mail.fxclub.org) by mx.fxclub.org with esmtps (TLSv1:AES256-SHA:256) (Exim) id 1L5MjG-000O8O-2c; Wed, 26 Nov 2008 15:55:02 +0000 Received: from fw-office.fxclub.org ([194.87.53.162] helo=proskurin-kv.hq.fxclub.org) by mail.fxclub.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim) id 1L5MjD-0005ho-Bd; Wed, 26 Nov 2008 15:54:59 +0000 Message-ID: <492D7153.4050305@fxclub.org> Date: Wed, 26 Nov 2008 18:54:59 +0300 From: Proskurin Kirill User-Agent: Thunderbird 2.0.0.18 (X11/20081125) MIME-Version: 1.0 To: Gary Hartl , FreeBSD Questions Mailing List References: <002801c94fdc$c7206c00$55614400$@com> In-Reply-To: <002801c94fdc$c7206c00$55614400$@com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: Update a package X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD Questions Mailing List List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:22:23 -0000 Gary Hartl wrote: > Hi all; > > Ok uber noob question here. > > I have gettext-0.14.5 installed from the package tree, I want to update to > gettext-0.17_1 > > Is there a ways to do that with the pkg_add or some other command? > > I google'ed it and only found ways to update local ports sources...(which > means I either suck at google or fbsd or both) > > Thanks for understanding my noobness. #portsnap fetch extract or if you allready have a ports tree just: #portsnap fetch update #cd /usr/ports/ports-mgmt/portupgrade #make install clean #rehash # portupgrade -Rf gettext And man portupgrade of course. :-) -- Best regards, Proskurin Kirill From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:24:49 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C97AD1065676 for ; Wed, 26 Nov 2008 16:24:49 +0000 (UTC) (envelope-from eculp@casasponti.net) Received: from ns2.bafirst.com (72-12-2-19.static.networktel.net [72.12.2.19]) by mx1.freebsd.org (Postfix) with ESMTP id 760A88FC1D for ; Wed, 26 Nov 2008 16:24:49 +0000 (UTC) (envelope-from eculp@casasponti.net) Received: from casasponti.net ([201.155.7.3]) by ns2.bafirst.com with esmtp; Wed, 26 Nov 2008 10:24:46 -0600 id 000D511E.492D784F.000087EA Received: from localhost (localhost [127.0.0.1]) (uid 80) by casasponti.net with local; Wed, 26 Nov 2008 10:24:44 -0600 id 00130E15.492D784C.00007ABD Received: from dsl-189-190-3-105.prod-infinitum.com.mx (dsl-189-190-3-105.prod-infinitum.com.mx [189.190.3.105]) by intranet.casasponti.net (Horde Framework) with HTTP; Wed, 26 Nov 2008 10:24:44 -0600 Message-ID: <20081126102444.17qwm4xcthvk4kkww@intranet.casasponti.net> Date: Wed, 26 Nov 2008 10:24:44 -0600 From: eculp@casasponti.net To: Andrew Gould References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (5.0-cvs) X-Remote-Browser: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.18) Gecko/20081114 Firefox/2.0.0.18 X-IMP-Server: 201.155.7.3 X-Originating-IP: 189.190.3.105 X-Originating-User: eculp@casasponti.net Cc: freebsd-questions@freebsd.org Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:24:49 -0000 Andrew Gould escribi=C3=B3: > On Wed, Nov 26, 2008 at 8:13 AM, wrote: > >> >> Hmmm. Isn't life interesting. I would like to know how to block them an= d >> others without causing strange secondary problems. >> >> Actually a default pf configuration will let them pass unless I'm >> forgetting something important. >> >> ed >> > > I share your pain, Ed. I've had to perform 3 complete re-installations of > computers in my household in the last year. Each time, I found a > ".limewire" file in a user's application folder. The boys are now banned > from my wife's computer. When the last culprit get's his computer back, h= e > will find it running an operating system that is not supported by Limewire= . > The next time, he'll get it back without a network card. > > Andrew :) I understand. Hopefully someone has a reasonably efficient pf or =20 ipfw based solution. If it cuts some of the microsoft traffic that I =20 am seeing much more of recently, I won't complain either. I have tried =20 to control them by ip's and but domain names with limited success. =20 Too many windows boxes at the office. have a great day, ed From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:26:34 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 234211065674 for ; Wed, 26 Nov 2008 16:26:34 +0000 (UTC) (envelope-from alancyang@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.28]) by mx1.freebsd.org (Postfix) with ESMTP id C4E118FC25 for ; Wed, 26 Nov 2008 16:26:33 +0000 (UTC) (envelope-from alancyang@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so270231ywe.13 for ; Wed, 26 Nov 2008 08:26:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=asoAG9fsUem6YG10FV2+CC5+np1lHQ/S/UrSb6qk9Kw=; b=RFFeKlgzorGv17hQ5HuwllMx6yiUN8Wx183KVFga9b8S1qOR8pEgubb8i3J0GlmGEb y4xAEwWxrQVs/5m06tCxowqN0VqkJ3UQ64OYrZcjBchMSPMmen9Z7UTIRZ5Ja3YJq7O4 UYmzNyAlrQPZLbACrpWzjHOolr4P1Y2cM3ml8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=CV2T+snjOzNHlma4LVDwLn0gdXmOY9sem+dIdpz5GvgA/ITZNL+UYfnUfHj8g8wx/6 /vl7WIJQCOB59S5pD1IX6oI/3MZf84bUtIcji0POAY00q2B97T5ryylbNHaKqRWxfjUX Ao2LHG3DKgWPxPKZwf5p543t9ECuzXyDM+4eo= Received: by 10.151.40.3 with SMTP id s3mr1559842ybj.117.1227715156080; Wed, 26 Nov 2008 07:59:16 -0800 (PST) Received: by 10.151.101.10 with HTTP; Wed, 26 Nov 2008 07:59:16 -0800 (PST) Message-ID: <290865fd0811260759s442d7332m3dce3f4900a45f60@mail.gmail.com> Date: Wed, 26 Nov 2008 07:59:16 -0800 From: "alan yang" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: ipsec tunnel with racoon / phase1 failure with invalid length of payload X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:26:34 -0000 hello, wonder people could shed some light how to debug more when configuring ipsec tunnel with racoon that it seems to fail on the phase1 negotiation with racoon log info listed in the following. i tried aes as encryption algorithm, but it failed the same way. not sure the invalid length of payload is caused by what. 2008-11-26 09:22:05: DEBUG: encryption(3des) 2008-11-26 09:22:05: DEBUG: with key: 2008-11-26 09:22:05: DEBUG: 1239dfa9 caa1798f 212cd994 7802292b 3ef473f3 3188868a 2008-11-26 09:22:05: DEBUG: decrypted payload by IV: 2008-11-26 09:22:05: DEBUG: bbd836ac 319a1ebe 2008-11-26 09:22:05: DEBUG: decrypted payload, but not trimed. 2008-11-26 09:22:05: DEBUG: 8450f134 99116727 73c7f68c 3f0a65c2 68a9afe6 2c0a6ce1 41708fbb 3f0c7511 c5fdeaad 804a2277 2008-11-26 09:22:05: DEBUG: padding len=119 2008-11-26 09:22:05: DEBUG: skip to trim padding. 2008-11-26 09:22:05: DEBUG: decrypted. 2008-11-26 09:22:05: DEBUG: d1d9962c 6004bf7b 0c317531 9c85bb06 05100201 00000000 00000044 8450f134 99116727 73c7f68c 3f0a65c2 68a9afe6 2c0a6ce1 41708fbb 3f0c7511 c5fdeaad 804a2277 2008-11-26 09:22:05: DEBUG: begin. 2008-11-26 09:22:05: DEBUG: seen nptype=5(id) 2008-11-26 09:22:05: DEBUG: invalid length of payload racoon.conf path include "/usr/local/etc/racoon"; path pre_shared_key "/usr/local/etc/racoon/psk.txt"; log notify; padding { maximum_length 20; # maximum padding length. randomize off; # enable randomize length. strict_check off; # enable strict check. exclusive_tail off; # extract last one octet. } listen { #isakmp ::1 [7000]; #isakmp 202.249.11.124 [500]; #admin [7002]; # administrative port for racoonctl. #strict_address; # requires that all addresses must be bound. } timer { # These value can be changed per remote node. counter 5; # maximum trying count to send. interval 20 sec; # maximum interval to resend. persend 1; # the number of packets per send. # maximum time to wait for completing each phase. phase1 30 sec; phase2 15 sec; } remote 192.168.0.101 { exchange_mode main,aggressive; nonce_size 16; initial_contact on; proposal_check strict; # obey, strict, or claim proposal { encryption_algorithm 3des; hash_algorithm sha1; authentication_method pre_shared_key; dh_group 2; } } sainfo anonymous { pfs_group 2; encryption_algorithm 3des; authentication_algorithm hmac_sha1; compression_algorithm deflate; } From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:42:47 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93BF51065675 for ; Wed, 26 Nov 2008 16:42:47 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id AC6218FC0A for ; Wed, 26 Nov 2008 16:42:46 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mAQGgNlu066785; Wed, 26 Nov 2008 17:42:23 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mAQGgLlJ066782; Wed, 26 Nov 2008 17:42:22 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 26 Nov 2008 17:42:21 +0100 (CET) From: Wojciech Puchar To: Andrew Gould In-Reply-To: Message-ID: <20081126174157.C66781@wojtek.tensor.gdynia.pl> References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: eculp@casasponti.net, freebsd-questions@freebsd.org Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:42:47 -0000 sorry for asking but what are this "limewire" programs are? From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:49:14 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B9EB1065670; Wed, 26 Nov 2008 16:49:14 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 95A148FC08; Wed, 26 Nov 2008 16:49:13 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.3/8.14.3) with ESMTP id mAQGn84R018080; Wed, 26 Nov 2008 16:49:08 GMT (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.7.2 smtp.infracaninophile.co.uk mAQGn84R018080 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=infracaninophile.co.uk; s=200708; t=1227718148; bh=mINYRp/j+zU9xI TH74+9x4r3U3lj7SyNySVonHEluTw=; h=Message-ID:Date:From:MIME-Version: To:CC:Subject:References:In-Reply-To:Content-Type:Cc:Content-Type: Date:From:In-Reply-To:Message-ID:Mime-Version:References:To; z=Mes sage-ID:=20<492D7E03.3070500@infracaninophile.co.uk>|Date:=20Wed,=2 026=20Nov=202008=2016:49:07=20+0000|From:=20Matthew=20Seaman=20|Organization:=20Infracaninophile|User -Agent:=20Thunderbird=202.0.0.18=20(X11/20081125)|MIME-Version:=201 .0|To:=20Kris=20Kennaway=20|CC:=20Wojciech=20Puch ar=20,=20=0D=0A=20Masoom=20Shaikh=2 0,=0D=0A=20freebsd-questions@freebsd.org|S ubject:=20Re:=20large=20binary,=20why=20not=20strip=20?|References: =20=09< 20081116125622.E24752@wojtek.tensor.gdynia.pl>=09<20081117172100.GB 43367@hub.freebsd.org>=09=09<20081117210649.GE63818@hub.freebsd.org>=20<4 9226AFD.6060505@infracaninophile.co.uk>|In-Reply-To:=20<49226AFD.60 60505@infracaninophile.co.uk>|X-Enigmail-Version:=200.95.6|Content- Type:=20multipart/signed=3B=20micalg=3Dpgp-sha256=3B=0D=0A=20protoc ol=3D"application/pgp-signature"=3B=0D=0A=20boundary=3D"----------- -enigFE585E26E12C52B51A7840D0"; b=IN/M06j4JXz6g8BO8XNk9vyCmInKR28pA qx8Ytg+fh0iuRkhllFAl1Av9lDjzA44In1pWf0BweaHGrP0x7nxhsAB0XF/ztRN+mmK jEE5/icETy8ucxHUzvkrRj4pEHlpzwJYOxuEwRgBlckppiOAoXG2LsbiGflFb17Zzj+ afb8= Message-ID: <492D7E03.3070500@infracaninophile.co.uk> Date: Wed, 26 Nov 2008 16:49:07 +0000 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.18 (X11/20081125) MIME-Version: 1.0 To: Kris Kennaway References: <20081116125622.E24752@wojtek.tensor.gdynia.pl> <20081117172100.GB43367@hub.freebsd.org> <20081117210649.GE63818@hub.freebsd.org> <49226AFD.6060505@infracaninophile.co.uk> In-Reply-To: <49226AFD.6060505@infracaninophile.co.uk> X-Enigmail-Version: 0.95.6 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigFE585E26E12C52B51A7840D0" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (smtp.infracaninophile.co.uk [IPv6:::1]); Wed, 26 Nov 2008 16:49:08 +0000 (GMT) X-Virus-Scanned: ClamAV 0.94.1/8683/Wed Nov 26 06:58:25 2008 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.9 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on happy-idiot-talk.infracaninophile.co.uk Cc: Wojciech Puchar , Masoom Shaikh , freebsd-questions@freebsd.org Subject: Re: large binary, why not strip ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:49:14 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigFE585E26E12C52B51A7840D0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Matthew Seaman wrote: > Kris Kennaway wrote: >=20 >> Bonus points if you come up with a patch to do this: in most cases it >> will be a simple matter of changing the port's do-install: target to >> use INSTALL_* macros instead of cp/bsdtar etc. This would be a good >> project to get some familiarity with the ports tree. >=20 > Would it be worthwhile to add a test and warning that all installed=20 > binaries > have not been stripped to the 'security-check' target in bsd.port.mk? = > That's > not really what that target was intended for (feeping creaturism alert!= )=20 > but > it's the obvious place to put such a test. >=20 > Probably cleaner to create a whole new target, but that's going to=20 > duplicate > some code. >=20 > Hmmmm... I shall work up some patches, probably over the weekend, so=20 > there's > something substantive to talk about. Done: ports/129210 For the record, I also discovered that, contrary to what I said earlier, there is apparently one class of binary object that will not work correc= tly if stripped: kernel loadable modules. As others have commented, most shlibs installed from ports aren't strippe= d. The same applies to almost any sort of pluggable module (perl, PHP etc.) = that I have been able to investigate. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enigFE585E26E12C52B51A7840D0 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkktfgMACgkQ8Mjk52CukIzUGwCfdPek2SsPcBfJB0WEbbi31iaE 88oAnRSzA8DWYB70jE//bd+NNfcsDUHV =fPyg -----END PGP SIGNATURE----- --------------enigFE585E26E12C52B51A7840D0-- From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:54:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 186F71065674 for ; Wed, 26 Nov 2008 16:54:45 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: from rn-out-0910.google.com (rn-out-0910.google.com [64.233.170.191]) by mx1.freebsd.org (Postfix) with ESMTP id B3F888FC0C for ; Wed, 26 Nov 2008 16:54:44 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: by rn-out-0910.google.com with SMTP id j71so530451rne.12 for ; Wed, 26 Nov 2008 08:54:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=hF9tuxPAFT6nfjz+1hQMSyR1Zr41PF2QJwEh6qjjTDY=; b=JmFMakCGGEtl06y0AYlTkBsCr3YNHVfeDGPRPQP11TCiTnO2yu/S0gpo01dQ4AhFKL tTsiwwDfPxeVMsNr6vcdKhuPJloLpF2b8YKQQicrKHTd64O0xda+j3mjRGIGYQ0rFIOR G1dVVSsWlU1zLrks/dVr3jYyxUNpX2soN0IDQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=T+KiEVQ4kCa1NZSu2jC0qCib8q06vHHnsoREigaqXTnpdSROSWUsKeH+HxRTkkcbgq mUXvtg8uNVwI8nZGzLwPV8jf8RMYZezwg/1aJOs+WNiger1TFnajwtkyXFBvkQLa0GVn 7PJ6I2RH+if10aciwiHf1djppLiFu8vOA1GqE= Received: by 10.103.106.1 with SMTP id i1mr2222818mum.0.1227718483268; Wed, 26 Nov 2008 08:54:43 -0800 (PST) Received: by 10.103.228.17 with HTTP; Wed, 26 Nov 2008 08:54:43 -0800 (PST) Message-ID: Date: Wed, 26 Nov 2008 10:54:43 -0600 From: "Andrew Gould" To: "Wojciech Puchar" In-Reply-To: <20081126174157.C66781@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: eculp@casasponti.net, freebsd-questions@freebsd.org Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:54:45 -0000 On Wed, Nov 26, 2008 at 10:42 AM, Wojciech Puchar < wojtek@wojtek.tensor.gdynia.pl> wrote: > sorry for asking but what are this "limewire" programs are? > > My unofficial take on it is that limewire is a peer-to-peer sharing application used by Windows, Mac OS X and Linux users to share files, usually music, often copyrighted, over the internet. It is one of the fastest, most effective ways to spread viruses, trojans, spyware, etc. The program does not use fixed ports, so the services are hard to block. In essence, the program gets the user to bypass security measures from the inside. If I am incorrect in my technical assessment, I welcome a correction. When people ask my advice about computers, I always include: "Never use Limewire, or anything like it." Andrew From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 16:55:41 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3DD291065672 for ; Wed, 26 Nov 2008 16:55:41 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail7.sea5.speakeasy.net (mail7.sea5.speakeasy.net [69.17.117.9]) by mx1.freebsd.org (Postfix) with ESMTP id 08C7B8FC13 for ; Wed, 26 Nov 2008 16:55:40 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 14257 invoked from network); 26 Nov 2008 16:55:05 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail7.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 26 Nov 2008 16:55:05 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id A5B135087F; Wed, 26 Nov 2008 11:55:02 -0500 (EST) To: eculp@casasponti.net References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126102444.17qwm4xcthvk4kkww@intranet.casasponti.net> From: Lowell Gilbert Date: Wed, 26 Nov 2008 11:55:02 -0500 In-Reply-To: <20081126102444.17qwm4xcthvk4kkww@intranet.casasponti.net> (eculp@casasponti.net's message of "Wed\, 26 Nov 2008 10\:24\:44 -0600") Message-ID: <4463ma2zrt.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Andrew Gould , freebsd-questions@freebsd.org Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 16:55:41 -0000 eculp@casasponti.net writes: > Andrew Gould escribi=F3: > >> On Wed, Nov 26, 2008 at 8:13 AM, wrote: >> >>> >>> Hmmm. Isn't life interesting. I would like to know how to block them = and >>> others without causing strange secondary problems. >>> >>> Actually a default pf configuration will let them pass unless I'm >>> forgetting something important. >>> >>> ed >>> >> >> I share your pain, Ed. I've had to perform 3 complete re-installations = of >> computers in my household in the last year. Each time, I found a >> ".limewire" file in a user's application folder. The boys are now banned >> from my wife's computer. When the last culprit get's his computer back,= he >> will find it running an operating system that is not supported by Limewi= re. >> The next time, he'll get it back without a network card. >> >> Andrew > > :) I understand. Hopefully someone has a reasonably efficient pf or > ipfw based solution. If it cuts some of the microsoft traffic that I > am seeing much more of recently, I won't complain either. I have tried > to control them by ip's and but domain names with limited success. > Too many windows boxes at the office. Regardless of what you do to "control" the unwanted applications, I'd monitoring the traffic on the network as well. I don't put many limits on what my kid can do on the network, but he knows I'm looking over his shoulder. Virtually speaking. --=20 Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 17:00:10 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A067B1065670 for ; Wed, 26 Nov 2008 17:00:10 +0000 (UTC) (envelope-from corky1951@comcast.net) Received: from QMTA10.westchester.pa.mail.comcast.net (qmta10.westchester.pa.mail.comcast.net [76.96.62.17]) by mx1.freebsd.org (Postfix) with ESMTP id 3E2488FC18 for ; Wed, 26 Nov 2008 17:00:09 +0000 (UTC) (envelope-from corky1951@comcast.net) Received: from OMTA06.westchester.pa.mail.comcast.net ([76.96.62.51]) by QMTA10.westchester.pa.mail.comcast.net with comcast id jpyB1a00Z16LCl05AszsSU; Wed, 26 Nov 2008 16:59:52 +0000 Received: from comcast.net ([76.28.182.91]) by OMTA06.westchester.pa.mail.comcast.net with comcast id jt041a00D1yjRxY3St04Jn; Wed, 26 Nov 2008 17:00:06 +0000 X-Authority-Analysis: v=1.0 c=1 a=Qhi4FfOKdrlffuR4Cy0A:9 a=RDfQf_UPeH4b6op_INyH2PfBKnUA:4 a=YvKx7zeTAGcA:10 Received: by comcast.net (sSMTP sendmail emulation); Wed, 26 Nov 2008 09:00:04 -0800 Date: Wed, 26 Nov 2008 09:00:04 -0800 From: Charlie Kester To: freebsd-questions@freebsd.org Message-ID: <20081126170004.GB4730@comcast.net> Mail-Followup-To: freebsd-questions@freebsd.org References: <002801c94fdc$c7206c00$55614400$@com> <002a01c94fe0$8a37c870$9ea75950$@com> <44abbm31ii.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <44abbm31ii.fsf@be-well.ilk.org> X-Mailer: Mutt 1.5.x/OS X 10.5.x X-Composer: VIM 7.2 User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Re: Update a package X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 17:00:10 -0000 * Lowell Gilbert [2008-11-26 11:17:25 -0500]: >Sure. pkg_add(1) has a '-r' option for fetching remotely, and >portupgrade(1) has a '-P' option to specify using packages (it will >fetch from FreeBSD servers if possible). To expand on Lowell's answer, using portupgrade's -P option can avoid a lengthy compile. If no suitable package is available for download, portupgrade -P will fall back to compiling the port from sourcecode. To avoid this, use -PP. Very handy when dealing with big packages like koffice. :-) From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 17:01:20 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6210E1065674 for ; Wed, 26 Nov 2008 17:01:20 +0000 (UTC) (envelope-from onemda@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.28]) by mx1.freebsd.org (Postfix) with ESMTP id 0B34C8FC1A for ; Wed, 26 Nov 2008 17:01:19 +0000 (UTC) (envelope-from onemda@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so281467yxb.13 for ; Wed, 26 Nov 2008 09:01:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=xq26/rihYCO+pmwLzOcS2c7z/lGeTh0kd/hHUhtRM3M=; b=emsOaSPDTiIaJ18EqYHQ46a3+e3lP80pSdc/YfnA3JADioy4ugM9IRsRiCvbcJgxkW SvhHLivSnJYDKTPbG53ubArzFao6hfgI8oE8/RPTb5q2ESzW1v0qWQW81OdZdXxJ6mzA 9vY6Cd5haratGpea6SO/95UcNoP6euc+5mdNk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=ddwUP6RVdxSPIjGn2VYKXb6GyERr1jJeKRWwcA6NqK5fPgNs3mx9DHmTFIilesUoK7 qcKo1Cey3Wz1301DSxeWiH7mi3KrSE8T4bpdXKj3Qfi/NIRVduAIpN/ezUGapPLjyd1h 7LHu/uR7NBGX/c5HemuVMlEuGUwRkfENKdFvA= Received: by 10.231.12.141 with SMTP id x13mr131474ibx.52.1227718879092; Wed, 26 Nov 2008 09:01:19 -0800 (PST) Received: by 10.231.10.65 with HTTP; Wed, 26 Nov 2008 09:01:19 -0800 (PST) Message-ID: <3a142e750811260901j134e9ff9pa334fc50c52fadd2@mail.gmail.com> Date: Wed, 26 Nov 2008 18:01:19 +0100 From: "Paul B. Mahol" To: "Matthew Seaman" In-Reply-To: <492D7E03.3070500@infracaninophile.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20081116125622.E24752@wojtek.tensor.gdynia.pl> <20081117172100.GB43367@hub.freebsd.org> <20081117210649.GE63818@hub.freebsd.org> <49226AFD.6060505@infracaninophile.co.uk> <492D7E03.3070500@infracaninophile.co.uk> Cc: freebsd-questions@freebsd.org Subject: Re: large binary, why not strip ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 17:01:20 -0000 On 11/26/08, Matthew Seaman wrote: > Matthew Seaman wrote: >> Kris Kennaway wrote: >> >>> Bonus points if you come up with a patch to do this: in most cases it >>> will be a simple matter of changing the port's do-install: target to >>> use INSTALL_* macros instead of cp/bsdtar etc. This would be a good >>> project to get some familiarity with the ports tree. >> >> Would it be worthwhile to add a test and warning that all installed >> binaries >> have not been stripped to the 'security-check' target in bsd.port.mk? >> That's >> not really what that target was intended for (feeping creaturism alert!) >> but >> it's the obvious place to put such a test. >> >> Probably cleaner to create a whole new target, but that's going to >> duplicate >> some code. >> >> Hmmmm... I shall work up some patches, probably over the weekend, so >> there's >> something substantive to talk about. > > Done: ports/129210 > > For the record, I also discovered that, contrary to what I said earlier, > there is apparently one class of binary object that will not work correctly > if stripped: kernel loadable modules. Kernel loadable modules are already stripped (--strip-debug). -- Paul From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 17:37:26 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46A621065673 for ; Wed, 26 Nov 2008 17:37:26 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail1.sea5.speakeasy.net (mail1.sea5.speakeasy.net [69.17.117.3]) by mx1.freebsd.org (Postfix) with ESMTP id 1D4768FC1D for ; Wed, 26 Nov 2008 17:37:26 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 12242 invoked from network); 26 Nov 2008 17:37:25 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail1.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 26 Nov 2008 17:37:24 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 2A06F5087F; Wed, 26 Nov 2008 12:37:24 -0500 (EST) To: "fire jotawski" References: <4463n0j3xu.fsf@be-well.ilk.org> <44prkljajq.fsf@be-well.ilk.org> From: Lowell Gilbert Date: Wed, 26 Nov 2008 12:37:23 -0500 In-Reply-To: (fire jotawski's message of "Tue\, 25 Nov 2008 14\:43\:52 +0700") Message-ID: <44skpe1j8s.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: cvsup: local X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 17:37:26 -0000 "fire jotawski" writes: > i did cvsup with supfile given in example, > /usr/share/examples/cvsup/cvs-supfile, > and set base to /var/db and prefix to /home/ncvs as suggested and then > > cvsup -g -L 2 -h HOST /usr/share/examples/cvsup/cvs-supfile > > where HOST is the one that run fastest in local area around my country. Okay, so you have the CVS tree on that tree. > my real problem is that i can not do cvsup from any machine in my office. > but there is no problem at home. so i simply bring my notebook home and do > cvsup as above. later on at the office, i want my other machine get > /usr/src from my notebook but i can not and that's my problem. Now I understand what you are trying to do. > and frankly speaking my english is quite poor, i spend the whole week end to > understand documents cited. Your written English is more than good enough for me to understand, so your skills are obviously much better than the way you describe yourself. Now that you have spent much time understanding some of the documents, you might be able to help others by working on the translations for whichever language you would prefer to read in. > unfortunately, that bring me more problem and that's why i revert back to my > instinct with cvs. Either way (cvs or cvsup) should work fine. The easiest way to use CVS directly would be to NFS-mount the CVS repository on the client, and then checking out directly. For example, if the repository were mounted on /ncvs, the checkout command might be something like (cd /usr/src ; cvs -d /ncvs co -r src-all ) [I haven't tested this; I may have made an error, and I'm not sure what TAG you would want.] For using cvsup, you can install the cvsup-mirror port on the machine you want to use as the cvsup server. It will ask you a number of questions so that it can configure cvsupd properly, and you won't need to worry about it. Use whichever one you want; I don't see any reason to prefer one or the other. Good luck. -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 17:48:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B4921065670 for ; Wed, 26 Nov 2008 17:48:28 +0000 (UTC) (envelope-from xotazu@cvc.uab.es) Received: from damascus.uab.es (damascus.uab.es [158.109.168.135]) by mx1.freebsd.org (Postfix) with ESMTP id 2211F8FC0A for ; Wed, 26 Nov 2008 17:48:27 +0000 (UTC) (envelope-from xotazu@cvc.uab.es) Received: from damascus.uab.es ([127.0.0.1]) by damascus.uab.es (Sun Java System Messaging Server 6.1 HotFix 0.10 (built Jan 6 2005)) with ESMTP id <0KAY00201C413E20@damascus.uab.es> for freebsd-questions@freebsd.org; Wed, 26 Nov 2008 18:48:01 +0100 (CET) Received: from cvc.uab.es ([158.109.4.2]) by damascus.uab.es (Sun Java System Messaging Server 6.1 HotFix 0.10 (built Jan 6 2005)) with SMTP id <0KAY000FDC41OI30@damascus.uab.es> for freebsd-questions@freebsd.org; Wed, 26 Nov 2008 18:48:01 +0100 (CET) Received: from cvc131.uab.es by cvc.uab.es (SMI-8.6/SMI-SVR4) id SAA14197; Wed, 26 Nov 2008 18:42:13 +0100 Date: Wed, 26 Nov 2008 18:48:39 +0100 From: Xavier Otazu In-reply-to: <200811252331.11497.tijl@ulyssis.org> To: Tijl Coosemans Message-id: <20081126184839.0de97327@cvc131.uab.es> Organization: CVC MIME-version: 1.0 X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20081121120023.D64301065720@hub.freebsd.org> <"20081124181923.25e 8c7db"@cvc131.uab.es> <200811252331.11497.tijl@ulyssis.org> Cc: freebsd-questions@freebsd.org Subject: Re: gcc cross-compiler for linux X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 17:48:28 -0000 On Tue, 25 Nov 2008 23:31:10 +0100 Tijl Coosemans wrote: > From that error message I'd say you probably need to populate > /usr/local/i386-linux/include with glibc and linux kernel headers. How can I populate it with them? Manually installing them in this directory? May be the devel/cross-binutils port should do it? Is there any port that can populate it? Thanks Xavier From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 18:04:23 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0F451065673 for ; Wed, 26 Nov 2008 18:04:23 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (aristotle.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id 92EFD8FC13 for ; Wed, 26 Nov 2008 18:04:23 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id mAQI4nJc010311 for ; Wed, 26 Nov 2008 10:04:50 -0800 (PST) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Wed, 26 Nov 2008 10:04:19 -0800 (PST) Date: Wed, 26 Nov 2008 10:04:19 -0800 From: Gary Kline To: FreeBSD Mailing List Message-ID: <20081126180416.GA56777@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22 years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: Subject: need slight help in upgrading a 1998 c++ main file... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 18:04:23 -0000 Any C++ hackers out there would can clue me in on getting a 10-year-old c++ program to build? I finished it--or about 95%, then gave up when I decided the whole project was impractical. Need help on the stuff. thanks in advance, gary -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 18:38:21 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB9061065670 for ; Wed, 26 Nov 2008 18:38:21 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (ns1.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id 6A92D8FC17 for ; Wed, 26 Nov 2008 18:38:21 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id mAQIclOA010511; Wed, 26 Nov 2008 10:38:47 -0800 (PST) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Wed, 26 Nov 2008 10:38:16 -0800 (PST) Date: Wed, 26 Nov 2008 10:38:16 -0800 From: Gary Kline To: Gary Hartl Message-ID: <20081126183816.GC56930@thought.org> References: <20081126152524.150D28FC08@mx1.freebsd.org> <002901c94fdd$40594a10$c10bde30$@com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <002901c94fdd$40594a10$c10bde30$@com> User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22 years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: freebsd-questions@freebsd.org Subject: Re: Say Goodbye to Lines and Wrinkles X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 18:38:21 -0000 On Wed, Nov 26, 2008 at 10:40:03AM -0500, Gary Hartl wrote: > Wow can you believe that we consented to receiving this. > > Amazing. This has to be legit right... > > ... > > Gary > > > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of > ConsumerPromotionCenter > Sent: November-26-08 10:04 AM > To: > Subject: Say Goodbye to Lines and Wrinkles > > > You received this message by consenting to receive e-mail from xxxx ... . [[ Save the bandwidth ]] This is but one reason that my spamassassin just doesn't quite cut it. True, I'm down from billion and billion of spams, but can I add others to my sendmail.cf or sendmail.<>?? THAT is the question. What, and How? tia, gary -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 18:48:12 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DF941065677 for ; Wed, 26 Nov 2008 18:48:12 +0000 (UTC) (envelope-from dick@nagual.nl) Received: from nagual.nl (cc20684-a.assen1.dr.home.nl [82.74.10.158]) by mx1.freebsd.org (Postfix) with ESMTP id 150DA8FC08 for ; Wed, 26 Nov 2008 18:48:11 +0000 (UTC) (envelope-from dick@nagual.nl) Received: from westmark (westmark.nagual.nl [192.168.11.22]) by nagual.nl (8.13.8+Sun/8.13.8/yanta) with SMTP id mAQInKMF019623 for ; Wed, 26 Nov 2008 19:49:20 +0100 (CET) Date: Wed, 26 Nov 2008 19:48:04 +0100 From: dick hoogendijk To: freebsd-questions@freebsd.org Message-Id: <20081126194804.26273396.dick@nagual.nl> In-Reply-To: References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> Organization: de nagual X-Mailer: Sylpheed 2.5.0 (GTK+ 2.14.3; i386-pc-solaris2.11) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.63 on 192.168.11.35 Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 18:48:12 -0000 On Wed, 26 Nov 2008 10:54:43 -0600 "Andrew Gould" wrote: > On Wed, Nov 26, 2008 at 10:42 AM, Wojciech Puchar < > wojtek@wojtek.tensor.gdynia.pl> wrote: > > > sorry for asking but what are this "limewire" programs are? > > > > > My unofficial take on it is that limewire is a peer-to-peer sharing > application used by Windows, Mac OS X and Linux users to share files, > usually music, often copyrighted, over the internet. It is one of the > fastest, most effective ways to spread viruses, trojans, spyware, etc. Is this your FreeBSD POV or more windows oriented? > The program does not use fixed ports, so the services are hard to > block. In essence, the program gets the user to bypass security > measures from the inside. I have never needed a block on limewire. Firstly, all main conmputers run solaris and therefore also limewire on solaris and secondly, all windows machines are virtual. So -IF- one of them is infected I just put a recent snapshot ;-) > If I am incorrect in my technical assessment, I welcome a correction. Personally I'm not infected on windows machines recently by any limewire connections. But ymmv. > When people ask my advice about computers, I always include: "Never > use Limewire, or anything like it." You can also say: use them but don't connect them to the net. I know, I'm cynical here, but limewire is not all bad! -- Dick Hoogendijk -- PGP/GnuPG key: 01D2433D + http://nagual.nl/ | SunOS sxce snv101 ++ + All that's really worth doing is what we do for others (Lewis Carrol) From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 18:52:20 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E93FC1065674 for ; Wed, 26 Nov 2008 18:52:20 +0000 (UTC) (envelope-from fbsd06+4B=a6b673cf@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id B65D28FC1F for ; Wed, 26 Nov 2008 18:52:20 +0000 (UTC) (envelope-from fbsd06+4B=a6b673cf@mlists.homeunix.com) Received: from gumby.homeunix.com (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 37DD023E3F2 for ; Wed, 26 Nov 2008 13:52:18 -0500 (EST) Date: Wed, 26 Nov 2008 18:52:16 +0000 From: RW To: freebsd-questions@freebsd.org Message-ID: <20081126185216.7ab011ac@gumby.homeunix.com> In-Reply-To: References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 18:52:21 -0000 On Wed, 26 Nov 2008 10:54:43 -0600 "Andrew Gould" wrote: > On Wed, Nov 26, 2008 at 10:42 AM, Wojciech Puchar < > wojtek@wojtek.tensor.gdynia.pl> wrote: > > > sorry for asking but what are this "limewire" programs are? > > > > > My unofficial take on it is that limewire is a peer-to-peer sharing > application used by Windows, Mac OS X and Linux users to share files, > usually music, often copyrighted, over the internet. It's a Gnutella client written in Java. > It is one of the > fastest, most effective ways to spread viruses, trojans, spyware, etc. > > The program does not use fixed ports, so the services are hard to > block. In essence, the program gets the user to bypass security > measures from the inside. There's nothing remarkable about that, no p2p filesharing application uses fixed ports. Some have default ports, but they are widely ignored because historically ISPs used those ports for throttling. > When people ask my advice about computers, I always include: "Never > use Limewire, or anything like it." They are as dangerous as you want to make them, I've been using bittorrent and eD2k for years and have never seem a single virus, trojan etc. I've seen a few on USENET but they've always been laughably obvious. People that end-up with that kind of thing are normally actively seeking executables. If anyone wants to discuss p2p blocking I'd suggest you start a new thread. From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 19:01:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4AC571065677 for ; Wed, 26 Nov 2008 19:01:45 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id F3A708FC0A for ; Wed, 26 Nov 2008 19:01:44 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id CAF72FD36E for ; Wed, 26 Nov 2008 21:01:43 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id C72ACFD36D; Wed, 26 Nov 2008 21:01:43 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: *** X-Spam-Guessed-Language: X-Spam-Status: No, score=3.1 required=5.0 tests=BAYES_50,RDNS_DYNAMIC, SPF_SOFTFAIL X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.1.64] (87-119-181-26.tll.elisa.ee [87.119.181.26]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id 99718FD284 for ; Wed, 26 Nov 2008 21:01:41 +0200 (EET) Message-ID: <492D9D12.4080202@zzz.ee> Date: Wed, 26 Nov 2008 21:01:38 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> <20081126194804.26273396.dick@nagual.nl> In-Reply-To: <20081126194804.26273396.dick@nagual.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 19:01:45 -0000 dick hoogendijk wrote: > I know, I'm cynical here, but limewire is not all bad! > > ...and, BTW, Limewire port is readily available for FreeBSD: http://cvsweb.freebsd.org/ports/net-p2p/limewire "LimeWire is a fast, easy-to-use file sharing program that contains no spyware, adware or other bundled software. Compatible with all major platforms and running over the Gnutella network, LimeWire's open source code , is freely available to the public and developed in part by a devoted programmer community..." http://www.limewire.com/about/ Greetings! O.K. From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 19:19:50 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3838B106564A for ; Wed, 26 Nov 2008 19:19:50 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from mail.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 0D3938FC0C for ; Wed, 26 Nov 2008 19:19:49 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (mail.rachie.is-a-geek.net [192.168.2.101]) by mail.rachie.is-a-geek.net (Postfix) with ESMTP id 0BE9EAFD077; Wed, 26 Nov 2008 10:19:49 -0900 (AKST) From: Mel To: freebsd-questions@freebsd.org, unga888@yahoo.com Date: Wed, 26 Nov 2008 20:14:02 +0100 User-Agent: KMail/1.9.7 References: <903701.74203.qm@web57001.mail.re3.yahoo.com> In-Reply-To: <903701.74203.qm@web57001.mail.re3.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811262014.02717.fbsd.questions@rachie.is-a-geek.net> Cc: Subject: Re: getpriority(2) and rtprio(2) implementation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 19:19:50 -0000 On Wednesday 26 November 2008 05:50:21 Unga wrote: > I need to study the implementation of getpriority(2) and rtprio(2) system > calls. Appreciate if somebody could point me to where these system calls > are implemented in FreeBSD source tree, that is, in which file/s. For future ref: find /usr/src/sys -name '*.c' -exec grep kern_$name_of_syscall {} + will catch 99% of the cases. -- Mel Problem with today's modular software: they start with the modules and never get to the software part. From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 21:24:27 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61BD91065672 for ; Wed, 26 Nov 2008 21:24:27 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 9AB6C8FC16 for ; Wed, 26 Nov 2008 21:24:26 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mAQLO2GV067648; Wed, 26 Nov 2008 22:24:02 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mAQLO0AR067645; Wed, 26 Nov 2008 22:24:01 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 26 Nov 2008 22:24:00 +0100 (CET) From: Wojciech Puchar To: Andrew Gould In-Reply-To: Message-ID: <20081126222028.J67633@wojtek.tensor.gdynia.pl> References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: eculp@casasponti.net, freebsd-questions@freebsd.org Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 21:24:27 -0000 >> >> > My unofficial take on it is that limewire is a peer-to-peer sharing > application used by Windows, Mac OS X and Linux users to share files, > usually music, often copyrighted, over the internet. It is one of the > fastest, most effective ways to spread viruses, trojans, spyware, etc. that's my client's problem not mine ;) viruses don't work under FreeBSD. > The program does not use fixed ports, so the services are hard to block. In as all my LANs uses nat, and i actually don't want to block it, i use natd with lots of redirect_port options. i give 3 ports to every user, most of that programs allows to specify what ports are 1:1 mapped to outside. at least bittorrent compatible things. torrent-compatible P2P programs are most usable of them. IMHO the only usable. From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 21:26:30 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EB9B1065672 for ; Wed, 26 Nov 2008 21:26:30 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 48AB28FC17 for ; Wed, 26 Nov 2008 21:26:28 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mAQLQGnx067659; Wed, 26 Nov 2008 22:26:16 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mAQLQFYh067656; Wed, 26 Nov 2008 22:26:16 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 26 Nov 2008 22:26:15 +0100 (CET) From: Wojciech Puchar To: Andrew Gould In-Reply-To: Message-ID: <20081126222413.T67633@wojtek.tensor.gdynia.pl> References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: eculp@casasponti.net, freebsd-questions@freebsd.org Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 21:26:30 -0000 > When people ask my advice about computers, I always include: "Never use > Limewire, or anything like it." just downloading/sharing files allows you to download viruses, but it's up to you to run them. well unless P2P program is really broken, or you are sharing executables. for sharing movies, pictures, music there is no danger. or maybe there are, i don't know windoze bugs, maybe it's movie/music players have bugs that allows to run code from somehow prepared mp3 ;) From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 22:02:37 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFDF01065670 for ; Wed, 26 Nov 2008 22:02:37 +0000 (UTC) (envelope-from dc@dcoder.net) Received: from ns2.dcoder.net (207-126-122-62.ip.openhosting.com [207.126.122.62]) by mx1.freebsd.org (Postfix) with ESMTP id B55618FC0C for ; Wed, 26 Nov 2008 22:02:37 +0000 (UTC) (envelope-from dc@dcoder.net) Received: by ns2.dcoder.net (Postfix, from userid 500) id 642061330198; Wed, 26 Nov 2008 16:36:07 -0500 (EST) Date: Wed, 26 Nov 2008 16:36:07 -0500 From: dacoder To: questions@freebsd.org Message-ID: <20081126213607.GT19551@mail2.dcoder.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline User-Agent: Mutt/1.4.1i Cc: Subject: usb port use causes kernel panic on boot. why? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 22:02:38 -0000 can someone explain to me, please, why i get a kernel panic on boot w/ the latest 7.1 when i have something plugged into a usb port? thx. david coder network engineer emeritus verio/ntt From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 23:01:44 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52FAA1065672 for ; Wed, 26 Nov 2008 23:01:44 +0000 (UTC) (envelope-from Rick.Janssen@phil.uu.nl) Received: from smtp1.admin.phil.uu.nl (smtp1.admin.phil.uu.nl [131.211.140.13]) by mx1.freebsd.org (Postfix) with ESMTP id 9C6138FC19 for ; Wed, 26 Nov 2008 23:01:43 +0000 (UTC) (envelope-from Rick.Janssen@phil.uu.nl) Received: from webmail.students.phil.uu.nl (foucault.leper.phil.uu.nl [131.211.141.209]) by smtp1.admin.phil.uu.nl (Postfix) with ESMTP id 1793DA8ED for ; Wed, 26 Nov 2008 23:37:33 +0100 (MET) Received: from gnt-cfa2.adsl.wanadoo.nl ([81.68.237.162]) (SquirrelMail authenticated user janssen) by webmail-students.phil.uu.nl with HTTP; Wed, 26 Nov 2008 23:31:22 +0100 (CET) Message-ID: <5ddbef2ccbae93c798cde8fd35544dc7.squirrel@webmail-students.phil.uu.nl> Date: Wed, 26 Nov 2008 23:31:22 +0100 (CET) From: "Rick Janssen" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.16 MIME-Version: 1.0 Content-Type: multipart/mixed;boundary="----=_20081126233122_53017" Subject: Filesystem problems at boot and shutdown? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 23:01:44 -0000 ------=_20081126233122_53017 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit I've been playing around with FreeBSD for some time now, still being unable to solve some problems. Let me explain. I'm trying to run a webserver on the machine. Just basic, nothing too fancy. Problem concerns the following: The website served is speedy as expected when accessed from local LAN, but when accessed from WAN via router, it's realy slow. So, to do some tests, this afternoon I requested some pages from an computer outside my LAN. Server was very slow again, even ssh slowed to a crawl. Suddenly, without reason I know off, everything sped up. I issued a reboot to check if the problem might have been 'solved'. This took a long time. Back home I checked the logs. It now appeared the long reboot-time was caused by a Syncing disk anomaly, which happens when the system prepares for shutting down. Nov 26 22:38:12 server kernel: Syncing disks, vnodes remaining...1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 timed out Nov 26 22:38:12 server kernel: Waiting (max 60 seconds) for system process `bufdaemon' to stop...done Nov 26 22:38:12 server kernel: Syncing disks, buffers remaining... 184 185 186 1 185 185 185 185 184 184 185 185 185 184 184 185 1 184 184 184 184 185 185 185 1 184 184 184 184 184 185 184 184 185 185 1 185 184 184 184 184 184 184 1 185 184 184 184 184 185 184 184 185 1 185 184 184 184 184 184 184 185 1 184 184 185 184 184 184 184 185 184 184 185 1 185 185 184 184 184 185 184 184 184 185 1 184 184 185 184 184 185 184 184 185 185 184 184 184 184 184 1 184 184 184 1 184 184 185 1 185 184 184 1 184 185 184 184 185 185 184 184 ... etc etc... Nov 26 22:38:12 server kernel: Final sync complete So I figured, might as well run fschk -y in single user mode to fix potential problems. Now I got some new errors: Nov 26 20:48:11 server kernel: ad4: WARNING - WRITE_DMA48 UDMA ICRC error (retrying request) LBA=1364750271 Nov 26 20:48:11 server kernel: ad4: FAILURE - WRITE_DMA48 status=51 error=4 LBA=1364750271 Nov 26 20:48:11 server kernel: g_vfs_done():ad4s1g[WRITE(offset=682932174848, length=131072)]error = 5 So far, nothing serious has followed from these errors I know off. They only happen sporadically, during reboots. Are these to problems even related, or am I just unlucky? Anyone has some suggestions to fix them? Regards, Rick ------=_20081126233122_53017 Content-Type: application/octet-stream; name="messages" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="messages" Tm92IDI2IDE5OjAwOjAwIHNlcnZlciBuZXdzeXNsb2dbOTc0XTogbG9nZmlsZSB0dXJuZWQgb3Zl ciBkdWUgdG8gc2l6ZT4xMDBLCk5vdiAyNiAyMDo0MDowNCBzZXJ2ZXIgbG9naW46IFJPT1QgTE9H SU4gKHJvb3QpIE9OIHR0eXYwCk5vdiAyNiAyMDo0MDoyMCBzZXJ2ZXIgcmVib290OiByZWJvb3Rl ZCBieSByb290Ck5vdiAyNiAyMDo0MDoyMCBzZXJ2ZXIgc3lzbG9nZDogZXhpdGluZyBvbiBzaWdu YWwgMTUKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBzeXNsb2dkOiBrZXJuZWwgYm9vdCBmaWxlIGlz IC9ib290L2tlcm5lbC9rZXJuZWwKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IENvcHly aWdodCAoYykgMTk5Mi0yMDA4IFRoZSBGcmVlQlNEIFByb2plY3QuCk5vdiAyNiAyMDo0Njo1OSBz ZXJ2ZXIga2VybmVsOiBDb3B5cmlnaHQgKGMpIDE5NzksIDE5ODAsIDE5ODMsIDE5ODYsIDE5ODgs IDE5ODksIDE5OTEsIDE5OTIsIDE5OTMsIDE5OTQKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJu ZWw6IFRoZSBSZWdlbnRzIG9mIHRoZSBVbml2ZXJzaXR5IG9mIENhbGlmb3JuaWEuIEFsbCByaWdo dHMgcmVzZXJ2ZWQuCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBGcmVlQlNEIGlzIGEg cmVnaXN0ZXJlZCB0cmFkZW1hcmsgb2YgVGhlIEZyZWVCU0QgRm91bmRhdGlvbi4KTm92IDI2IDIw OjQ2OjU5IHNlcnZlciBrZXJuZWw6IEZyZWVCU0QgNy4wLVJFTEVBU0UtcDUgIzA6IFdlZCBPY3Qg IDEgMDc6NTE6NTggVVRDIDIwMDgKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IHJvb3RA YW1kNjQtYnVpbGRlci5kYWVtb25vbG9neS5uZXQ6L3Vzci9vYmovdXNyL3NyYy9zeXMvR0VORVJJ QwpOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDogVGltZWNvdW50ZXIgImk4MjU0IiBmcmVx dWVuY3kgMTE5MzE4MiBIeiBxdWFsaXR5IDAKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6 IENQVTogQU1EIEF0aGxvbih0bSkgNjQgUHJvY2Vzc29yIDM1MDArICgyMjAwLjA5LU1IeiBLOC1j bGFzcyBDUFUpCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBPcmlnaW4gPSAiQXV0aGVu dGljQU1EIiAgSWQgPSAweDUwZmYyICBTdGVwcGluZyA9IDIKTm92IDI2IDIwOjQ2OjU5IHNlcnZl ciBrZXJuZWw6IEZlYXR1cmVzPTB4NzhiZmJmZjxGUFUsVk1FLERFLFBTRSxUU0MsTVNSLFBBRSxN Q0UsQ1g4LEFQSUMsU0VQLE1UUlIsUEdFLE1DQSxDTU9WLFBBVCxQU0UzNixDTEZMVVNILE1NWCxG WFNSLFNTRSxTU0UyPgpOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDogRmVhdHVyZXMyPTB4 MjAwMTxTU0UzLENYMTY+Ck5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBBTUQgRmVhdHVy ZXM9MHhlYTUwMDgwMDxTWVNDQUxMLE5YLE1NWCssRkZYU1IsUkRUU0NQLExNLDNETm93ISssM0RO b3chPgpOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDogQU1EIEZlYXR1cmVzMj0weDFkPExB SEYsU1ZNLEV4dEFQSUMsQ1I4PgpOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDogdXNhYmxl IG1lbW9yeSA9IDc5MjA4NDQ4MCAoNzU1IE1CKQpOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtlcm5l bDogYXZhaWwgbWVtb3J5ICA9IDc2MjQ0NTgyNCAoNzI3IE1CKQpOb3YgMjYgMjA6NDY6NTkgc2Vy dmVyIGtlcm5lbDogQUNQSSBBUElDIFRhYmxlOiA8NzMwMk1TIEE3MzAyMTAwPgpOb3YgMjYgMjA6 NDY6NTkgc2VydmVyIGtlcm5lbDogaW9hcGljMCA8VmVyc2lvbiAyLjE+IGlycXMgMC0yMyBvbiBt b3RoZXJib2FyZApOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDoga2JkMSBhdCBrYmRtdXgw Ck5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBhdGhfaGFsOiAwLjkuMjAuMyAoQVI1MjEw LCBBUjUyMTEsIEFSNTIxMiwgUkY1MTExLCBSRjUxMTIsIFJGMjQxMywgUkY1NDEzKQpOb3YgMjYg MjA6NDY6NTkgc2VydmVyIGtlcm5lbDogaHB0cnI6IEhQVCBSb2NrZXRSQUlEIGNvbnRyb2xsZXIg ZHJpdmVyIHYxLjEgKE9jdCAgMSAyMDA4IDA3OjUxOjQ4KQpOb3YgMjYgMjA6NDY6NTkgc2VydmVy IGtlcm5lbDogYWNwaTA6IDw3MzAyTVMgQTczMDIxMDA+IG9uIG1vdGhlcmJvYXJkCk5vdiAyNiAy MDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBhY3BpMDogW0lUSFJFQURdCk5vdiAyNiAyMDo0Njo1OSBz ZXJ2ZXIga2VybmVsOiBhY3BpMDogUG93ZXIgQnV0dG9uIChmaXhlZCkKTm92IDI2IDIwOjQ2OjU5 IHNlcnZlciBrZXJuZWw6IGFjcGkwOiByZXNlcnZhdGlvbiBvZiBmZmI4MDAwMCwgODAwMDAgKDMp IGZhaWxlZApOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDogYWNwaTA6IHJlc2VydmF0aW9u IG9mIGZmZjAwMDAwLCAxMDAwMDAgKDMpIGZhaWxlZApOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtl cm5lbDogYWNwaTA6IHJlc2VydmF0aW9uIG9mIDAsIGEwMDAwICgzKSBmYWlsZWQKTm92IDI2IDIw OjQ2OjU5IHNlcnZlciBrZXJuZWw6IGFjcGkwOiByZXNlcnZhdGlvbiBvZiAxMDAwMDAsIDJmZjAw MDAwICgzKSBmYWlsZWQKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IFRpbWVjb3VudGVy ICJBQ1BJLWZhc3QiIGZyZXF1ZW5jeSAzNTc5NTQ1IEh6IHF1YWxpdHkgMTAwMApOb3YgMjYgMjA6 NDY6NTkgc2VydmVyIGtlcm5lbDogYWNwaV90aW1lcjA6IDwzMi1iaXQgdGltZXIgYXQgMy41Nzk1 NDVNSHo+IHBvcnQgMHg4MDgtMHg4MGIgb24gYWNwaTAKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBr ZXJuZWw6IGNwdTA6IDxBQ1BJIENQVT4gb24gYWNwaTAKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBr ZXJuZWw6IGFjcGlfdGhyb3R0bGUwOiA8QUNQSSBDUFUgVGhyb3R0bGluZz4gb24gY3B1MApOb3Yg MjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDogcG93ZXJub3cwOiA8UG93ZXJOb3chIEs4PiBvbiBj cHUwCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBwY2liMDogPEFDUEkgSG9zdC1QQ0kg YnJpZGdlPiBwb3J0IDB4Y2Y4LTB4Y2ZmIG9uIGFjcGkwCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIg a2VybmVsOiBwY2kwOiA8QUNQSSBQQ0kgYnVzPiBvbiBwY2liMApOb3YgMjYgMjA6NDY6NTkgc2Vy dmVyIGtlcm5lbDogcGNpYjE6IDxBQ1BJIFBDSS1QQ0kgYnJpZGdlPiBhdCBkZXZpY2UgMS4wIG9u IHBjaTAKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IHBjaTE6IDxBQ1BJIFBDSSBidXM+ IG9uIHBjaWIxCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiB2Z2FwY2kwOiA8VkdBLWNv bXBhdGlibGUgZGlzcGxheT4gcG9ydCAweGMwMDAtMHhjMGZmIG1lbSAweGQwMDAwMDAwLTB4ZGZm ZmZmZmYsMHhmZTlmMDAwMC0weGZlOWZmZmZmLDB4ZmU4MDAwMDAtMHhmZThmZmZmZiBpcnEgMTgg YXQgZGV2aWNlIDUuMCBvbiBwY2kxCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBwY2li MjogPEFDUEkgUENJLVBDSSBicmlkZ2U+IGlycSAxNyBhdCBkZXZpY2UgNS4wIG9uIHBjaTAKTm92 IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IHBjaTI6IDxBQ1BJIFBDSSBidXM+IG9uIHBjaWIy Ck5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBhdGFwY2kwOiA8QVRJIEFUQSBjb250cm9s bGVyPiBwb3J0IDB4YjAwMC0weGIwMDcsMHhhMDAwLTB4YTAwMywweDkwMDAtMHg5MDA3LDB4ODAw MC0weDgwMDMsMHg3MDAwLTB4NzAwZiBtZW0gMHhmZTdmZjgwMC0weGZlN2ZmYmZmIGlycSAyMiBh dCBkZXZpY2UgMTcuMCBvbiBwY2kwCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBhdGFw Y2kwOiBbSVRIUkVBRF0KTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IGF0YTI6IDxBVEEg Y2hhbm5lbCAwPiBvbiBhdGFwY2kwCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBhdGEy OiBbSVRIUkVBRF0KTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IGF0YTM6IDxBVEEgY2hh bm5lbCAxPiBvbiBhdGFwY2kwCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBhdGEzOiBb SVRIUkVBRF0KTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IHBjaTA6IDxzZXJpYWwgYnVz LCBTTUJ1cz4gYXQgZGV2aWNlIDIwLjAgKG5vIGRyaXZlciBhdHRhY2hlZCkKTm92IDI2IDIwOjQ2 OjU5IHNlcnZlciBrZXJuZWw6IGF0YXBjaTE6IDxBVEkgSVhQNzAwIFVETUExMzMgY29udHJvbGxl cj4gcG9ydCAweDFmMC0weDFmNywweDNmNiwweDE3MC0weDE3NywweDM3NiwweGZmMDAtMHhmZjBm IGF0IGRldmljZSAyMC4xIG9uIHBjaTAKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IGF0 YTA6IDxBVEEgY2hhbm5lbCAwPiBvbiBhdGFwY2kxCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2Vy bmVsOiBhdGEwOiBbSVRIUkVBRF0KTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IGlzYWIw OiA8UENJLUlTQSBicmlkZ2U+IGF0IGRldmljZSAyMC4zIG9uIHBjaTAKTm92IDI2IDIwOjQ2OjU5 IHNlcnZlciBrZXJuZWw6IGlzYTA6IDxJU0EgYnVzPiBvbiBpc2FiMApOb3YgMjYgMjA6NDY6NTkg c2VydmVyIGtlcm5lbDogcGNpYjM6IDxBQ1BJIFBDSS1QQ0kgYnJpZGdlPiBhdCBkZXZpY2UgMjAu NCBvbiBwY2kwCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBwY2kzOiA8QUNQSSBQQ0kg YnVzPiBvbiBwY2liMwpOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDogcmwwOiA8UmVhbFRl ayA4MTM5IDEwLzEwMEJhc2VUWD4gcG9ydCAweGU4MDAtMHhlOGZmIG1lbSAweGZlYmZmYzAwLTB4 ZmViZmZjZmYgaXJxIDIwIGF0IGRldmljZSAyLjAgb24gcGNpMwpOb3YgMjYgMjA6NDY6NTkgc2Vy dmVyIGtlcm5lbDogbWlpYnVzMDogPE1JSSBidXM+IG9uIHJsMApOb3YgMjYgMjA6NDY6NTkgc2Vy dmVyIGtlcm5lbDogcmxwaHkwOiA8UmVhbFRlayBpbnRlcm5hbCBtZWRpYSBpbnRlcmZhY2U+IFBI WSAwIG9uIG1paWJ1czAKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IHJscGh5MDogIDEw YmFzZVQsIDEwYmFzZVQtRkRYLCAxMDBiYXNlVFgsIDEwMGJhc2VUWC1GRFgsIGF1dG8KTm92IDI2 IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IHJsMDogRXRoZXJuZXQgYWRkcmVzczogMDA6NTA6ZmM6 OGU6YjM6OGEKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IHJsMDogW0lUSFJFQURdCk5v diAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBhY3BpX2J1dHRvbjA6IDxQb3dlciBCdXR0b24+ IG9uIGFjcGkwCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBhdGtiZGMwOiA8S2V5Ym9h cmQgY29udHJvbGxlciAoaTgwNDIpPiBwb3J0IDB4NjAsMHg2NCBpcnEgMSBvbiBhY3BpMApOb3Yg MjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDogYXRrYmQwOiA8QVQgS2V5Ym9hcmQ+IGlycSAxIG9u IGF0a2JkYzAKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IGtiZDAgYXQgYXRrYmQwCk5v diAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBhdGtiZDA6IFtHSUFOVC1MT0NLRURdCk5vdiAy NiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBhdGtiZDA6IFtJVEhSRUFEXQpOb3YgMjYgMjA6NDY6 NTkgc2VydmVyIGtlcm5lbDogYWNwaV9ocGV0MDogPEhpZ2ggUHJlY2lzaW9uIEV2ZW50IFRpbWVy PiBpb21lbSAweGZlZDAwMDAwLTB4ZmVkMDAzZmYgb24gYWNwaTAKTm92IDI2IDIwOjQ2OjU5IHNl cnZlciBrZXJuZWw6IGFjcGlfaHBldDA6IEhQRVQgbmV2ZXIgaW5jcmVtZW50cywgZGlzYWJsaW5n Ck5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBkZXZpY2VfYXR0YWNoOiBhY3BpX2hwZXQw IGF0dGFjaCByZXR1cm5lZCA2Ck5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBhY3BpX2hw ZXQwOiA8SGlnaCBQcmVjaXNpb24gRXZlbnQgVGltZXI+IGlvbWVtIDB4ZmVkMDAwMDAtMHhmZWQw MDNmZiBvbiBhY3BpMApOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDogYWNwaV9ocGV0MDog SFBFVCBuZXZlciBpbmNyZW1lbnRzLCBkaXNhYmxpbmcKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBr ZXJuZWw6IGRldmljZV9hdHRhY2g6IGFjcGlfaHBldDAgYXR0YWNoIHJldHVybmVkIDYKTm92IDI2 IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IHBwYzA6IGNhbm5vdCByZXNlcnZlIEkvTyBwb3J0IHJh bmdlCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBzYzA6IDxTeXN0ZW0gY29uc29sZT4g YXQgZmxhZ3MgMHgxMDAgb24gaXNhMApOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDogc2Mw OiBWR0EgPDE2IHZpcnR1YWwgY29uc29sZXMsIGZsYWdzPTB4MzAwPgpOb3YgMjYgMjA6NDY6NTkg c2VydmVyIGtlcm5lbDogc2lvMDogY29uZmlndXJlZCBpcnEgNCBub3QgaW4gYml0bWFwIG9mIHBy b2JlZCBpcnFzIDAKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IHNpbzA6IHBvcnQgbWF5 IG5vdCBiZSBlbmFibGVkCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIga2VybmVsOiBzaW8wOiBjb25m aWd1cmVkIGlycSA0IG5vdCBpbiBiaXRtYXAgb2YgcHJvYmVkIGlycXMgMApOb3YgMjYgMjA6NDY6 NTkgc2VydmVyIGtlcm5lbDogc2lvMDogcG9ydCBtYXkgbm90IGJlIGVuYWJsZWQKTm92IDI2IDIw OjQ2OjU5IHNlcnZlciBrZXJuZWw6IHNpbzAgYXQgcG9ydCAweDNmOC0weDNmZiBpcnEgNCBmbGFn cyAweDEwIG9uIGlzYTAKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IHNpbzA6IHR5cGUg ODI1MCBvciBub3QgcmVzcG9uZGluZwpOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDogc2lv MDogW0ZJTFRFUl0KTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IHNpbzE6IGNvbmZpZ3Vy ZWQgaXJxIDMgbm90IGluIGJpdG1hcCBvZiBwcm9iZWQgaXJxcyAwCk5vdiAyNiAyMDo0Njo1OSBz ZXJ2ZXIga2VybmVsOiBzaW8xOiBwb3J0IG1heSBub3QgYmUgZW5hYmxlZApOb3YgMjYgMjA6NDY6 NTkgc2VydmVyIGtlcm5lbDogdmdhMDogPEdlbmVyaWMgSVNBIFZHQT4gYXQgcG9ydCAweDNjMC0w eDNkZiBpb21lbSAweGEwMDAwLTB4YmZmZmYgb24gaXNhMApOb3YgMjYgMjA6NDY6NTkgc2VydmVy IGtlcm5lbDogVGltZWNvdW50ZXIgIlRTQyIgZnJlcXVlbmN5IDIyMDAwOTM2ODUgSHogcXVhbGl0 eSA4MDAKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IFRpbWVjb3VudGVycyB0aWNrIGV2 ZXJ5IDEuMDAwIG1zZWMKTm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IGhwdHJyOiBubyBj b250cm9sbGVyIGRldGVjdGVkLgpOb3YgMjYgMjA6NDY6NTkgc2VydmVyIGtlcm5lbDogYWQ0OiA5 NTM4NjlNQiA8U0FNU1VORyBIRDEwM1VKIDFBQTAxMTEzPiBhdCBhdGEyLW1hc3RlciBVRE1BMzMK Tm92IDI2IDIwOjQ2OjU5IHNlcnZlciBrZXJuZWw6IFRyeWluZyB0byBtb3VudCByb290IGZyb20g dWZzOi9kZXYvYWQ0czFhCk5vdiAyNiAyMDo0Njo1OSBzZXJ2ZXIgc2F2ZWNvcmU6IG5vIGR1bXBz IGZvdW5kCk5vdiAyNiAyMDo0ODoxMSBzZXJ2ZXIga2VybmVsOiBhZDQ6IFdBUk5JTkcgLSBXUklU RV9ETUE0OCBVRE1BIElDUkMgZXJyb3IgKHJldHJ5aW5nIHJlcXVlc3QpIExCQT0xMzY0NzUwMjcx Ck5vdiAyNiAyMDo0ODoxMSBzZXJ2ZXIga2VybmVsOiBhZDQ6IEZBSUxVUkUgLSBXUklURV9ETUE0 OCBzdGF0dXM9NTE8UkVBRFksRFNDLEVSUk9SPiBlcnJvcj00PEFCT1JURUQ+IExCQT0xMzY0NzUw MjcxCk5vdiAyNiAyMDo0ODoxMSBzZXJ2ZXIga2VybmVsOiBnX3Zmc19kb25lKCk6YWQ0czFnW1dS SVRFKG9mZnNldD02ODI5MzIxNzQ4NDgsIGxlbmd0aD0xMzEwNzIpXWVycm9yID0gNQpOb3YgMjYg MjA6NTE6Mjkgc2VydmVyIHN1OiBhZG1pbiB0byByb290IG9uIC9kZXYvdHR5cDAKTm92IDI2IDIw OjU4OjI0IHNlcnZlciBsb2dpbjogUk9PVCBMT0dJTiAocm9vdCkgT04gdHR5djAKTm92IDI2IDIw OjU4OjI3IHNlcnZlciByZWJvb3Q6IHJlYm9vdGVkIGJ5IHJvb3QKTm92IDI2IDIwOjU4OjI3IHNl cnZlciBzeXNsb2dkOiBleGl0aW5nIG9uIHNpZ25hbCAxNQpOb3YgMjYgMjA6NTk6MjQgc2VydmVy IHN5c2xvZ2Q6IGtlcm5lbCBib290IGZpbGUgaXMgL2Jvb3Qva2VybmVsL2tlcm5lbApOb3YgMjYg MjA6NTk6MjQgc2VydmVyIGtlcm5lbDogV2FpdGluZyAobWF4IDYwIHNlY29uZHMpIGZvciBzeXN0 ZW0gcHJvY2VzcyBgdm5scnUnIHRvIHN0b3AuLi5kb25lCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIg a2VybmVsOiBXYWl0aW5nIChtYXggNjAgc2Vjb25kcykgZm9yIHN5c3RlbSBwcm9jZXNzIGBzeW5j ZXInIHRvIHN0b3AuLi4KTm92IDI2IDIwOjU5OjI0IHNlcnZlciBrZXJuZWw6IFN5bmNpbmcgZGlz a3MsIHZub2RlcyByZW1haW5pbmcuLi40IDAgMiAwIDAgZG9uZQpOb3YgMjYgMjA6NTk6MjQgc2Vy dmVyIGtlcm5lbDogV2FpdGluZyAobWF4IDYwIHNlY29uZHMpIGZvciBzeXN0ZW0gcHJvY2VzcyBg YnVmZGFlbW9uJyB0byBzdG9wLi4uZG9uZQpOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDog QWxsIGJ1ZmZlcnMgc3luY2VkLgpOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogQ29weXJp Z2h0IChjKSAxOTkyLTIwMDggVGhlIEZyZWVCU0QgUHJvamVjdC4KTm92IDI2IDIwOjU5OjI0IHNl cnZlciBrZXJuZWw6IENvcHlyaWdodCAoYykgMTk3OSwgMTk4MCwgMTk4MywgMTk4NiwgMTk4OCwg MTk4OSwgMTk5MSwgMTk5MiwgMTk5MywgMTk5NApOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5l bDogVGhlIFJlZ2VudHMgb2YgdGhlIFVuaXZlcnNpdHkgb2YgQ2FsaWZvcm5pYS4gQWxsIHJpZ2h0 cyByZXNlcnZlZC4KTm92IDI2IDIwOjU5OjI0IHNlcnZlciBrZXJuZWw6IEZyZWVCU0QgaXMgYSBy ZWdpc3RlcmVkIHRyYWRlbWFyayBvZiBUaGUgRnJlZUJTRCBGb3VuZGF0aW9uLgpOb3YgMjYgMjA6 NTk6MjQgc2VydmVyIGtlcm5lbDogRnJlZUJTRCA3LjAtUkVMRUFTRS1wNSAjMDogV2VkIE9jdCAg MSAwNzo1MTo1OCBVVEMgMjAwOApOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogcm9vdEBh bWQ2NC1idWlsZGVyLmRhZW1vbm9sb2d5Lm5ldDovdXNyL29iai91c3Ivc3JjL3N5cy9HRU5FUklD Ck5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBUaW1lY291bnRlciAiaTgyNTQiIGZyZXF1 ZW5jeSAxMTkzMTgyIEh6IHF1YWxpdHkgMApOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDog Q1BVOiBBTUQgQXRobG9uKHRtKSA2NCBQcm9jZXNzb3IgMzUwMCsgKDIyMDAuMTAtTUh6IEs4LWNs YXNzIENQVSkKTm92IDI2IDIwOjU5OjI0IHNlcnZlciBrZXJuZWw6IE9yaWdpbiA9ICJBdXRoZW50 aWNBTUQiICBJZCA9IDB4NTBmZjIgIFN0ZXBwaW5nID0gMgpOb3YgMjYgMjA6NTk6MjQgc2VydmVy IGtlcm5lbDogRmVhdHVyZXM9MHg3OGJmYmZmPEZQVSxWTUUsREUsUFNFLFRTQyxNU1IsUEFFLE1D RSxDWDgsQVBJQyxTRVAsTVRSUixQR0UsTUNBLENNT1YsUEFULFBTRTM2LENMRkxVU0gsTU1YLEZY U1IsU1NFLFNTRTI+Ck5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBGZWF0dXJlczI9MHgy MDAxPFNTRTMsQ1gxNj4KTm92IDI2IDIwOjU5OjI0IHNlcnZlciBrZXJuZWw6IEFNRCBGZWF0dXJl cz0weGVhNTAwODAwPFNZU0NBTEwsTlgsTU1YKyxGRlhTUixSRFRTQ1AsTE0sM0ROb3chKywzRE5v dyE+Ck5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBBTUQgRmVhdHVyZXMyPTB4MWQ8TEFI RixTVk0sRXh0QVBJQyxDUjg+Ck5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiB1c2FibGUg bWVtb3J5ID0gNzkyMDg0NDgwICg3NTUgTUIpCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVs OiBhdmFpbCBtZW1vcnkgID0gNzYyNDQ1ODI0ICg3MjcgTUIpCk5vdiAyNiAyMDo1OToyNCBzZXJ2 ZXIga2VybmVsOiBBQ1BJIEFQSUMgVGFibGU6IDw3MzAyTVMgQTczMDIxMDA+Ck5vdiAyNiAyMDo1 OToyNCBzZXJ2ZXIga2VybmVsOiBpb2FwaWMwIDxWZXJzaW9uIDIuMT4gaXJxcyAwLTIzIG9uIG1v dGhlcmJvYXJkCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBrYmQxIGF0IGtiZG11eDAK Tm92IDI2IDIwOjU5OjI0IHNlcnZlciBrZXJuZWw6IGF0aF9oYWw6IDAuOS4yMC4zIChBUjUyMTAs IEFSNTIxMSwgQVI1MjEyLCBSRjUxMTEsIFJGNTExMiwgUkYyNDEzLCBSRjU0MTMpCk5vdiAyNiAy MDo1OToyNCBzZXJ2ZXIga2VybmVsOiBocHRycjogSFBUIFJvY2tldFJBSUQgY29udHJvbGxlciBk cml2ZXIgdjEuMSAoT2N0ICAxIDIwMDggMDc6NTE6NDgpCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIg a2VybmVsOiBhY3BpMDogPDczMDJNUyBBNzMwMjEwMD4gb24gbW90aGVyYm9hcmQKTm92IDI2IDIw OjU5OjI0IHNlcnZlciBrZXJuZWw6IGFjcGkwOiBbSVRIUkVBRF0KTm92IDI2IDIwOjU5OjI0IHNl cnZlciBrZXJuZWw6IGFjcGkwOiBQb3dlciBCdXR0b24gKGZpeGVkKQpOb3YgMjYgMjA6NTk6MjQg c2VydmVyIGtlcm5lbDogYWNwaTA6IHJlc2VydmF0aW9uIG9mIGZmYjgwMDAwLCA4MDAwMCAoMykg ZmFpbGVkCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBhY3BpMDogcmVzZXJ2YXRpb24g b2YgZmZmMDAwMDAsIDEwMDAwMCAoMykgZmFpbGVkCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2Vy bmVsOiBhY3BpMDogcmVzZXJ2YXRpb24gb2YgMCwgYTAwMDAgKDMpIGZhaWxlZApOb3YgMjYgMjA6 NTk6MjQgc2VydmVyIGtlcm5lbDogYWNwaTA6IHJlc2VydmF0aW9uIG9mIDEwMDAwMCwgMmZmMDAw MDAgKDMpIGZhaWxlZApOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogVGltZWNvdW50ZXIg IkFDUEktc2FmZSIgZnJlcXVlbmN5IDM1Nzk1NDUgSHogcXVhbGl0eSA4NTAKTm92IDI2IDIwOjU5 OjI0IHNlcnZlciBrZXJuZWw6IGFjcGlfdGltZXIwOiA8MzItYml0IHRpbWVyIGF0IDMuNTc5NTQ1 TUh6PiBwb3J0IDB4ODA4LTB4ODBiIG9uIGFjcGkwCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2Vy bmVsOiBjcHUwOiA8QUNQSSBDUFU+IG9uIGFjcGkwCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2Vy bmVsOiBhY3BpX3Rocm90dGxlMDogPEFDUEkgQ1BVIFRocm90dGxpbmc+IG9uIGNwdTAKTm92IDI2 IDIwOjU5OjI0IHNlcnZlciBrZXJuZWw6IHBvd2Vybm93MDogPFBvd2VyTm93ISBLOD4gb24gY3B1 MApOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogcGNpYjA6IDxBQ1BJIEhvc3QtUENJIGJy aWRnZT4gcG9ydCAweGNmOC0weGNmZiBvbiBhY3BpMApOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtl cm5lbDogcGNpMDogPEFDUEkgUENJIGJ1cz4gb24gcGNpYjAKTm92IDI2IDIwOjU5OjI0IHNlcnZl ciBrZXJuZWw6IHBjaWIxOiA8QUNQSSBQQ0ktUENJIGJyaWRnZT4gYXQgZGV2aWNlIDEuMCBvbiBw Y2kwCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBwY2kxOiA8QUNQSSBQQ0kgYnVzPiBv biBwY2liMQpOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogdmdhcGNpMDogPFZHQS1jb21w YXRpYmxlIGRpc3BsYXk+IHBvcnQgMHhjMDAwLTB4YzBmZiBtZW0gMHhkMDAwMDAwMC0weGRmZmZm ZmZmLDB4ZmU5ZjAwMDAtMHhmZTlmZmZmZiwweGZlODAwMDAwLTB4ZmU4ZmZmZmYgaXJxIDE4IGF0 IGRldmljZSA1LjAgb24gcGNpMQpOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogcGNpYjI6 IDxBQ1BJIFBDSS1QQ0kgYnJpZGdlPiBpcnEgMTcgYXQgZGV2aWNlIDUuMCBvbiBwY2kwCk5vdiAy NiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBwY2kyOiA8QUNQSSBQQ0kgYnVzPiBvbiBwY2liMgpO b3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogYXRhcGNpMDogPEFUSSBBVEEgY29udHJvbGxl cj4gcG9ydCAweGIwMDAtMHhiMDA3LDB4YTAwMC0weGEwMDMsMHg5MDAwLTB4OTAwNywweDgwMDAt MHg4MDAzLDB4NzAwMC0weDcwMGYgbWVtIDB4ZmU3ZmY4MDAtMHhmZTdmZmJmZiBpcnEgMjIgYXQg ZGV2aWNlIDE3LjAgb24gcGNpMApOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogYXRhcGNp MDogW0lUSFJFQURdCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBhdGEyOiA8QVRBIGNo YW5uZWwgMD4gb24gYXRhcGNpMApOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogYXRhMjog W0lUSFJFQURdCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBhdGEzOiA8QVRBIGNoYW5u ZWwgMT4gb24gYXRhcGNpMApOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogYXRhMzogW0lU SFJFQURdCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBwY2kwOiA8c2VyaWFsIGJ1cywg U01CdXM+IGF0IGRldmljZSAyMC4wIChubyBkcml2ZXIgYXR0YWNoZWQpCk5vdiAyNiAyMDo1OToy NCBzZXJ2ZXIga2VybmVsOiBhdGFwY2kxOiA8QVRJIElYUDcwMCBVRE1BMTMzIGNvbnRyb2xsZXI+ IHBvcnQgMHgxZjAtMHgxZjcsMHgzZjYsMHgxNzAtMHgxNzcsMHgzNzYsMHhmZjAwLTB4ZmYwZiBh dCBkZXZpY2UgMjAuMSBvbiBwY2kwCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBhdGEw OiA8QVRBIGNoYW5uZWwgMD4gb24gYXRhcGNpMQpOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5l bDogYXRhMDogW0lUSFJFQURdCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBpc2FiMDog PFBDSS1JU0EgYnJpZGdlPiBhdCBkZXZpY2UgMjAuMyBvbiBwY2kwCk5vdiAyNiAyMDo1OToyNCBz ZXJ2ZXIga2VybmVsOiBpc2EwOiA8SVNBIGJ1cz4gb24gaXNhYjAKTm92IDI2IDIwOjU5OjI0IHNl cnZlciBrZXJuZWw6IHBjaWIzOiA8QUNQSSBQQ0ktUENJIGJyaWRnZT4gYXQgZGV2aWNlIDIwLjQg b24gcGNpMApOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogcGNpMzogPEFDUEkgUENJIGJ1 cz4gb24gcGNpYjMKTm92IDI2IDIwOjU5OjI0IHNlcnZlciBrZXJuZWw6IHJsMDogPFJlYWxUZWsg ODEzOSAxMC8xMDBCYXNlVFg+IHBvcnQgMHhlODAwLTB4ZThmZiBtZW0gMHhmZWJmZmMwMC0weGZl YmZmY2ZmIGlycSAyMCBhdCBkZXZpY2UgMi4wIG9uIHBjaTMKTm92IDI2IDIwOjU5OjI0IHNlcnZl ciBrZXJuZWw6IG1paWJ1czA6IDxNSUkgYnVzPiBvbiBybDAKTm92IDI2IDIwOjU5OjI0IHNlcnZl ciBrZXJuZWw6IHJscGh5MDogPFJlYWxUZWsgaW50ZXJuYWwgbWVkaWEgaW50ZXJmYWNlPiBQSFkg MCBvbiBtaWlidXMwCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBybHBoeTA6ICAxMGJh c2VULCAxMGJhc2VULUZEWCwgMTAwYmFzZVRYLCAxMDBiYXNlVFgtRkRYLCBhdXRvCk5vdiAyNiAy MDo1OToyNCBzZXJ2ZXIga2VybmVsOiBybDA6IEV0aGVybmV0IGFkZHJlc3M6IDAwOjUwOmZjOjhl OmIzOjhhCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBybDA6IFtJVEhSRUFEXQpOb3Yg MjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogYWNwaV9idXR0b24wOiA8UG93ZXIgQnV0dG9uPiBv biBhY3BpMApOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogYXRrYmRjMDogPEtleWJvYXJk IGNvbnRyb2xsZXIgKGk4MDQyKT4gcG9ydCAweDYwLDB4NjQgaXJxIDEgb24gYWNwaTAKTm92IDI2 IDIwOjU5OjI0IHNlcnZlciBrZXJuZWw6IGF0a2JkMDogPEFUIEtleWJvYXJkPiBpcnEgMSBvbiBh dGtiZGMwCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBrYmQwIGF0IGF0a2JkMApOb3Yg MjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogYXRrYmQwOiBbR0lBTlQtTE9DS0VEXQpOb3YgMjYg MjA6NTk6MjQgc2VydmVyIGtlcm5lbDogYXRrYmQwOiBbSVRIUkVBRF0KTm92IDI2IDIwOjU5OjI0 IHNlcnZlciBrZXJuZWw6IGFjcGlfaHBldDA6IDxIaWdoIFByZWNpc2lvbiBFdmVudCBUaW1lcj4g aW9tZW0gMHhmZWQwMDAwMC0weGZlZDAwM2ZmIG9uIGFjcGkwCk5vdiAyNiAyMDo1OToyNCBzZXJ2 ZXIga2VybmVsOiBhY3BpX2hwZXQwOiBIUEVUIG5ldmVyIGluY3JlbWVudHMsIGRpc2FibGluZwpO b3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogZGV2aWNlX2F0dGFjaDogYWNwaV9ocGV0MCBh dHRhY2ggcmV0dXJuZWQgNgpOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogYWNwaV9ocGV0 MDogPEhpZ2ggUHJlY2lzaW9uIEV2ZW50IFRpbWVyPiBpb21lbSAweGZlZDAwMDAwLTB4ZmVkMDAz ZmYgb24gYWNwaTAKTm92IDI2IDIwOjU5OjI0IHNlcnZlciBrZXJuZWw6IGFjcGlfaHBldDA6IEhQ RVQgbmV2ZXIgaW5jcmVtZW50cywgZGlzYWJsaW5nCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2Vy bmVsOiBkZXZpY2VfYXR0YWNoOiBhY3BpX2hwZXQwIGF0dGFjaCByZXR1cm5lZCA2Ck5vdiAyNiAy MDo1OToyNCBzZXJ2ZXIga2VybmVsOiBwcGMwOiBjYW5ub3QgcmVzZXJ2ZSBJL08gcG9ydCByYW5n ZQpOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogc2MwOiA8U3lzdGVtIGNvbnNvbGU+IGF0 IGZsYWdzIDB4MTAwIG9uIGlzYTAKTm92IDI2IDIwOjU5OjI0IHNlcnZlciBrZXJuZWw6IHNjMDog VkdBIDwxNiB2aXJ0dWFsIGNvbnNvbGVzLCBmbGFncz0weDMwMD4KTm92IDI2IDIwOjU5OjI0IHNl cnZlciBrZXJuZWw6IHNpbzA6IGNvbmZpZ3VyZWQgaXJxIDQgbm90IGluIGJpdG1hcCBvZiBwcm9i ZWQgaXJxcyAwCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBzaW8wOiBwb3J0IG1heSBu b3QgYmUgZW5hYmxlZApOb3YgMjYgMjA6NTk6MjQgc2VydmVyIGtlcm5lbDogc2lvMDogY29uZmln dXJlZCBpcnEgNCBub3QgaW4gYml0bWFwIG9mIHByb2JlZCBpcnFzIDAKTm92IDI2IDIwOjU5OjI0 IHNlcnZlciBrZXJuZWw6IHNpbzA6IHBvcnQgbWF5IG5vdCBiZSBlbmFibGVkCk5vdiAyNiAyMDo1 OToyNCBzZXJ2ZXIga2VybmVsOiBzaW8wIGF0IHBvcnQgMHgzZjgtMHgzZmYgaXJxIDQgZmxhZ3Mg MHgxMCBvbiBpc2EwCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBzaW8wOiB0eXBlIDgy NTAgb3Igbm90IHJlc3BvbmRpbmcKTm92IDI2IDIwOjU5OjI0IHNlcnZlciBrZXJuZWw6IHNpbzA6 IFtGSUxURVJdCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBzaW8xOiBjb25maWd1cmVk IGlycSAzIG5vdCBpbiBiaXRtYXAgb2YgcHJvYmVkIGlycXMgMApOb3YgMjYgMjA6NTk6MjQgc2Vy dmVyIGtlcm5lbDogc2lvMTogcG9ydCBtYXkgbm90IGJlIGVuYWJsZWQKTm92IDI2IDIwOjU5OjI0 IHNlcnZlciBrZXJuZWw6IHZnYTA6IDxHZW5lcmljIElTQSBWR0E+IGF0IHBvcnQgMHgzYzAtMHgz ZGYgaW9tZW0gMHhhMDAwMC0weGJmZmZmIG9uIGlzYTAKTm92IDI2IDIwOjU5OjI0IHNlcnZlciBr ZXJuZWw6IFRpbWVjb3VudGVyICJUU0MiIGZyZXF1ZW5jeSAyMjAwMDk1OTIxIEh6IHF1YWxpdHkg ODAwCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBUaW1lY291bnRlcnMgdGljayBldmVy eSAxLjAwMCBtc2VjCk5vdiAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBocHRycjogbm8gY29u dHJvbGxlciBkZXRlY3RlZC4KTm92IDI2IDIwOjU5OjI0IHNlcnZlciBrZXJuZWw6IGFkNDogOTUz ODY5TUIgPFNBTVNVTkcgSEQxMDNVSiAxQUEwMTExMz4gYXQgYXRhMi1tYXN0ZXIgVURNQTMzCk5v diAyNiAyMDo1OToyNCBzZXJ2ZXIga2VybmVsOiBUcnlpbmcgdG8gbW91bnQgcm9vdCBmcm9tIHVm czovZGV2L2FkNHMxYQpOb3YgMjYgMjA6NTk6MjQgc2VydmVyIHNhdmVjb3JlOiBubyBkdW1wcyBm b3VuZApOb3YgMjYgMjE6MDA6MDkgc2VydmVyIHN1OiBhZG1pbiB0byByb290IG9uIC9kZXYvdHR5 cDAKTm92IDI2IDIxOjAxOjU5IHNlcnZlciBrZXJuZWw6IGFkNDogVElNRU9VVCAtIFdSSVRFX0RN QTQ4IHJldHJ5aW5nICgxIHJldHJ5IGxlZnQpIExCQT0xMzc2MTk5ODcxCk5vdiAyNiAyMTowMTo1 OSBzZXJ2ZXIga2VybmVsOiBhZDQ6IEZBSUxVUkUgLSBXUklURV9ETUE0OCBzdGF0dXM9NTE8UkVB RFksRFNDLEVSUk9SPiBlcnJvcj00PEFCT1JURUQ+IExCQT0xMzc2MTk5ODcxCk5vdiAyNiAyMTow MTo1OSBzZXJ2ZXIga2VybmVsOiBnX3Zmc19kb25lKCk6YWQ0czFnW1dSSVRFKG9mZnNldD02ODg3 OTQ0MzU1ODQsIGxlbmd0aD0xMzEwNzIpXWVycm9yID0gNQpOb3YgMjYgMjI6MTI6MDkgc2VydmVy IHJlYm9vdDogcmVib290ZWQgYnkgYWRtaW4KTm92IDI2IDIyOjEyOjA5IHNlcnZlciBzeXNsb2dk OiBleGl0aW5nIG9uIHNpZ25hbCAxNQpOb3YgMjYgMjI6MTM6MTUgc2VydmVyIHN5c2xvZ2Q6IGtl cm5lbCBib290IGZpbGUgaXMgL2Jvb3Qva2VybmVsL2tlcm5lbApOb3YgMjYgMjI6MTM6MTUgc2Vy dmVyIGtlcm5lbDogV2FpdGluZyAobWF4IDYwIHNlY29uZHMpIGZvciBzeXN0ZW0gcHJvY2VzcyBg dm5scnUnIHRvIHN0b3AuLi5kb25lCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBXYWl0 aW5nIChtYXggNjAgc2Vjb25kcykgZm9yIHN5c3RlbSBwcm9jZXNzIGBzeW5jZXInIHRvIHN0b3Au Li4KTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IFN5bmNpbmcgZGlza3MsIHZub2RlcyBy ZW1haW5pbmcuLi4zIDMgMiAyIDAgMCBkb25lCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVs OiBXYWl0aW5nIChtYXggNjAgc2Vjb25kcykgZm9yIHN5c3RlbSBwcm9jZXNzIGBidWZkYWVtb24n IHRvIHN0b3AuLi5kb25lCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBBbGwgYnVmZmVy cyBzeW5jZWQuCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBDb3B5cmlnaHQgKGMpIDE5 OTItMjAwOCBUaGUgRnJlZUJTRCBQcm9qZWN0LgpOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5l bDogQ29weXJpZ2h0IChjKSAxOTc5LCAxOTgwLCAxOTgzLCAxOTg2LCAxOTg4LCAxOTg5LCAxOTkx LCAxOTkyLCAxOTkzLCAxOTk0Ck5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBUaGUgUmVn ZW50cyBvZiB0aGUgVW5pdmVyc2l0eSBvZiBDYWxpZm9ybmlhLiBBbGwgcmlnaHRzIHJlc2VydmVk LgpOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5lbDogRnJlZUJTRCBpcyBhIHJlZ2lzdGVyZWQg dHJhZGVtYXJrIG9mIFRoZSBGcmVlQlNEIEZvdW5kYXRpb24uCk5vdiAyNiAyMjoxMzoxNSBzZXJ2 ZXIga2VybmVsOiBGcmVlQlNEIDcuMC1SRUxFQVNFLXA1ICMwOiBXZWQgT2N0ICAxIDA3OjUxOjU4 IFVUQyAyMDA4Ck5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiByb290QGFtZDY0LWJ1aWxk ZXIuZGFlbW9ub2xvZ3kubmV0Oi91c3Ivb2JqL3Vzci9zcmMvc3lzL0dFTkVSSUMKTm92IDI2IDIy OjEzOjE1IHNlcnZlciBrZXJuZWw6IFRpbWVjb3VudGVyICJpODI1NCIgZnJlcXVlbmN5IDExOTMx ODIgSHogcXVhbGl0eSAwCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBDUFU6IEFNRCBB dGhsb24odG0pIDY0IFByb2Nlc3NvciAzNTAwKyAoMjIwMC4wOS1NSHogSzgtY2xhc3MgQ1BVKQpO b3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5lbDogT3JpZ2luID0gIkF1dGhlbnRpY0FNRCIgIElk ID0gMHg1MGZmMiAgU3RlcHBpbmcgPSAyCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBG ZWF0dXJlcz0weDc4YmZiZmY8RlBVLFZNRSxERSxQU0UsVFNDLE1TUixQQUUsTUNFLENYOCxBUElD LFNFUCxNVFJSLFBHRSxNQ0EsQ01PVixQQVQsUFNFMzYsQ0xGTFVTSCxNTVgsRlhTUixTU0UsU1NF Mj4KTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IEZlYXR1cmVzMj0weDIwMDE8U1NFMyxD WDE2PgpOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5lbDogQU1EIEZlYXR1cmVzPTB4ZWE1MDA4 MDA8U1lTQ0FMTCxOWCxNTVgrLEZGWFNSLFJEVFNDUCxMTSwzRE5vdyErLDNETm93IT4KTm92IDI2 IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IEFNRCBGZWF0dXJlczI9MHgxZDxMQUhGLFNWTSxFeHRB UElDLENSOD4KTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IHVzYWJsZSBtZW1vcnkgPSA3 OTIwODQ0ODAgKDc1NSBNQikKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGF2YWlsIG1l bW9yeSAgPSA3NjI0NDU4MjQgKDcyNyBNQikKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6 IEFDUEkgQVBJQyBUYWJsZTogPDczMDJNUyBBNzMwMjEwMD4KTm92IDI2IDIyOjEzOjE1IHNlcnZl ciBrZXJuZWw6IGlvYXBpYzAgPFZlcnNpb24gMi4xPiBpcnFzIDAtMjMgb24gbW90aGVyYm9hcmQK Tm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGtiZDEgYXQga2JkbXV4MApOb3YgMjYgMjI6 MTM6MTUgc2VydmVyIGtlcm5lbDogYXRoX2hhbDogMC45LjIwLjMgKEFSNTIxMCwgQVI1MjExLCBB UjUyMTIsIFJGNTExMSwgUkY1MTEyLCBSRjI0MTMsIFJGNTQxMykKTm92IDI2IDIyOjEzOjE1IHNl cnZlciBrZXJuZWw6IGhwdHJyOiBIUFQgUm9ja2V0UkFJRCBjb250cm9sbGVyIGRyaXZlciB2MS4x IChPY3QgIDEgMjAwOCAwNzo1MTo0OCkKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGFj cGkwOiA8NzMwMk1TIEE3MzAyMTAwPiBvbiBtb3RoZXJib2FyZApOb3YgMjYgMjI6MTM6MTUgc2Vy dmVyIGtlcm5lbDogYWNwaTA6IFtJVEhSRUFEXQpOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5l bDogYWNwaTA6IFBvd2VyIEJ1dHRvbiAoZml4ZWQpCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2Vy bmVsOiBhY3BpMDogcmVzZXJ2YXRpb24gb2YgZmZiODAwMDAsIDgwMDAwICgzKSBmYWlsZWQKTm92 IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGFjcGkwOiByZXNlcnZhdGlvbiBvZiBmZmYwMDAw MCwgMTAwMDAwICgzKSBmYWlsZWQKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGFjcGkw OiByZXNlcnZhdGlvbiBvZiAwLCBhMDAwMCAoMykgZmFpbGVkCk5vdiAyNiAyMjoxMzoxNSBzZXJ2 ZXIga2VybmVsOiBhY3BpMDogcmVzZXJ2YXRpb24gb2YgMTAwMDAwLCAyZmYwMDAwMCAoMykgZmFp bGVkCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBUaW1lY291bnRlciAiQUNQSS1zYWZl IiBmcmVxdWVuY3kgMzU3OTU0NSBIeiBxdWFsaXR5IDg1MApOb3YgMjYgMjI6MTM6MTUgc2VydmVy IGtlcm5lbDogYWNwaV90aW1lcjA6IDwzMi1iaXQgdGltZXIgYXQgMy41Nzk1NDVNSHo+IHBvcnQg MHg4MDgtMHg4MGIgb24gYWNwaTAKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGNwdTA6 IDxBQ1BJIENQVT4gb24gYWNwaTAKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGFjcGlf dGhyb3R0bGUwOiA8QUNQSSBDUFUgVGhyb3R0bGluZz4gb24gY3B1MApOb3YgMjYgMjI6MTM6MTUg c2VydmVyIGtlcm5lbDogcG93ZXJub3cwOiA8UG93ZXJOb3chIEs4PiBvbiBjcHUwCk5vdiAyNiAy MjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBwY2liMDogPEFDUEkgSG9zdC1QQ0kgYnJpZGdlPiBwb3J0 IDB4Y2Y4LTB4Y2ZmIG9uIGFjcGkwCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBwY2kw OiA8QUNQSSBQQ0kgYnVzPiBvbiBwY2liMApOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5lbDog cGNpYjE6IDxBQ1BJIFBDSS1QQ0kgYnJpZGdlPiBhdCBkZXZpY2UgMS4wIG9uIHBjaTAKTm92IDI2 IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IHBjaTE6IDxBQ1BJIFBDSSBidXM+IG9uIHBjaWIxCk5v diAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiB2Z2FwY2kwOiA8VkdBLWNvbXBhdGlibGUgZGlz cGxheT4gcG9ydCAweGMwMDAtMHhjMGZmIG1lbSAweGQwMDAwMDAwLTB4ZGZmZmZmZmYsMHhmZTlm MDAwMC0weGZlOWZmZmZmLDB4ZmU4MDAwMDAtMHhmZThmZmZmZiBpcnEgMTggYXQgZGV2aWNlIDUu MCBvbiBwY2kxCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBwY2liMjogPEFDUEkgUENJ LVBDSSBicmlkZ2U+IGlycSAxNyBhdCBkZXZpY2UgNS4wIG9uIHBjaTAKTm92IDI2IDIyOjEzOjE1 IHNlcnZlciBrZXJuZWw6IHBjaTI6IDxBQ1BJIFBDSSBidXM+IG9uIHBjaWIyCk5vdiAyNiAyMjox MzoxNSBzZXJ2ZXIga2VybmVsOiBhdGFwY2kwOiA8QVRJIEFUQSBjb250cm9sbGVyPiBwb3J0IDB4 YjAwMC0weGIwMDcsMHhhMDAwLTB4YTAwMywweDkwMDAtMHg5MDA3LDB4ODAwMC0weDgwMDMsMHg3 MDAwLTB4NzAwZiBtZW0gMHhmZTdmZjgwMC0weGZlN2ZmYmZmIGlycSAyMiBhdCBkZXZpY2UgMTcu MCBvbiBwY2kwCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBhdGFwY2kwOiBbSVRIUkVB RF0KTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGF0YTI6IDxBVEEgY2hhbm5lbCAwPiBv biBhdGFwY2kwCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBhdGEyOiBbSVRIUkVBRF0K Tm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGF0YTM6IDxBVEEgY2hhbm5lbCAxPiBvbiBh dGFwY2kwCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBhdGEzOiBbSVRIUkVBRF0KTm92 IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IHBjaTA6IDxzZXJpYWwgYnVzLCBTTUJ1cz4gYXQg ZGV2aWNlIDIwLjAgKG5vIGRyaXZlciBhdHRhY2hlZCkKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBr ZXJuZWw6IGF0YXBjaTE6IDxBVEkgSVhQNzAwIFVETUExMzMgY29udHJvbGxlcj4gcG9ydCAweDFm MC0weDFmNywweDNmNiwweDE3MC0weDE3NywweDM3NiwweGZmMDAtMHhmZjBmIGF0IGRldmljZSAy MC4xIG9uIHBjaTAKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGF0YTA6IDxBVEEgY2hh bm5lbCAwPiBvbiBhdGFwY2kxCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBhdGEwOiBb SVRIUkVBRF0KTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGlzYWIwOiA8UENJLUlTQSBi cmlkZ2U+IGF0IGRldmljZSAyMC4zIG9uIHBjaTAKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJu ZWw6IGlzYTA6IDxJU0EgYnVzPiBvbiBpc2FiMApOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5l bDogcGNpYjM6IDxBQ1BJIFBDSS1QQ0kgYnJpZGdlPiBhdCBkZXZpY2UgMjAuNCBvbiBwY2kwCk5v diAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBwY2kzOiA8QUNQSSBQQ0kgYnVzPiBvbiBwY2li MwpOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5lbDogcmwwOiA8UmVhbFRlayA4MTM5IDEwLzEw MEJhc2VUWD4gcG9ydCAweGU4MDAtMHhlOGZmIG1lbSAweGZlYmZmYzAwLTB4ZmViZmZjZmYgaXJx IDIwIGF0IGRldmljZSAyLjAgb24gcGNpMwpOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5lbDog bWlpYnVzMDogPE1JSSBidXM+IG9uIHJsMApOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5lbDog cmxwaHkwOiA8UmVhbFRlayBpbnRlcm5hbCBtZWRpYSBpbnRlcmZhY2U+IFBIWSAwIG9uIG1paWJ1 czAKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IHJscGh5MDogIDEwYmFzZVQsIDEwYmFz ZVQtRkRYLCAxMDBiYXNlVFgsIDEwMGJhc2VUWC1GRFgsIGF1dG8KTm92IDI2IDIyOjEzOjE1IHNl cnZlciBrZXJuZWw6IHJsMDogRXRoZXJuZXQgYWRkcmVzczogMDA6NTA6ZmM6OGU6YjM6OGEKTm92 IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IHJsMDogW0lUSFJFQURdCk5vdiAyNiAyMjoxMzox NSBzZXJ2ZXIga2VybmVsOiBhY3BpX2J1dHRvbjA6IDxQb3dlciBCdXR0b24+IG9uIGFjcGkwCk5v diAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBhdGtiZGMwOiA8S2V5Ym9hcmQgY29udHJvbGxl ciAoaTgwNDIpPiBwb3J0IDB4NjAsMHg2NCBpcnEgMSBvbiBhY3BpMApOb3YgMjYgMjI6MTM6MTUg c2VydmVyIGtlcm5lbDogYXRrYmQwOiA8QVQgS2V5Ym9hcmQ+IGlycSAxIG9uIGF0a2JkYzAKTm92 IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGtiZDAgYXQgYXRrYmQwCk5vdiAyNiAyMjoxMzox NSBzZXJ2ZXIga2VybmVsOiBhdGtiZDA6IFtHSUFOVC1MT0NLRURdCk5vdiAyNiAyMjoxMzoxNSBz ZXJ2ZXIga2VybmVsOiBhdGtiZDA6IFtJVEhSRUFEXQpOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtl cm5lbDogYWNwaV9ocGV0MDogPEhpZ2ggUHJlY2lzaW9uIEV2ZW50IFRpbWVyPiBpb21lbSAweGZl ZDAwMDAwLTB4ZmVkMDAzZmYgb24gYWNwaTAKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6 IGFjcGlfaHBldDA6IEhQRVQgbmV2ZXIgaW5jcmVtZW50cywgZGlzYWJsaW5nCk5vdiAyNiAyMjox MzoxNSBzZXJ2ZXIga2VybmVsOiBkZXZpY2VfYXR0YWNoOiBhY3BpX2hwZXQwIGF0dGFjaCByZXR1 cm5lZCA2Ck5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBhY3BpX2hwZXQwOiA8SGlnaCBQ cmVjaXNpb24gRXZlbnQgVGltZXI+IGlvbWVtIDB4ZmVkMDAwMDAtMHhmZWQwMDNmZiBvbiBhY3Bp MApOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5lbDogYWNwaV9ocGV0MDogSFBFVCBuZXZlciBp bmNyZW1lbnRzLCBkaXNhYmxpbmcKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGRldmlj ZV9hdHRhY2g6IGFjcGlfaHBldDAgYXR0YWNoIHJldHVybmVkIDYKTm92IDI2IDIyOjEzOjE1IHNl cnZlciBrZXJuZWw6IHBwYzA6IGNhbm5vdCByZXNlcnZlIEkvTyBwb3J0IHJhbmdlCk5vdiAyNiAy MjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBzYzA6IDxTeXN0ZW0gY29uc29sZT4gYXQgZmxhZ3MgMHgx MDAgb24gaXNhMApOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5lbDogc2MwOiBWR0EgPDE2IHZp cnR1YWwgY29uc29sZXMsIGZsYWdzPTB4MzAwPgpOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5l bDogc2lvMDogY29uZmlndXJlZCBpcnEgNCBub3QgaW4gYml0bWFwIG9mIHByb2JlZCBpcnFzIDAK Tm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IHNpbzA6IHBvcnQgbWF5IG5vdCBiZSBlbmFi bGVkCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVsOiBzaW8wOiBjb25maWd1cmVkIGlycSA0 IG5vdCBpbiBiaXRtYXAgb2YgcHJvYmVkIGlycXMgMApOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtl cm5lbDogc2lvMDogcG9ydCBtYXkgbm90IGJlIGVuYWJsZWQKTm92IDI2IDIyOjEzOjE1IHNlcnZl ciBrZXJuZWw6IHNpbzAgYXQgcG9ydCAweDNmOC0weDNmZiBpcnEgNCBmbGFncyAweDEwIG9uIGlz YTAKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IHNpbzA6IHR5cGUgODI1MCBvciBub3Qg cmVzcG9uZGluZwpOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5lbDogc2lvMDogW0ZJTFRFUl0K Tm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IHNpbzE6IGNvbmZpZ3VyZWQgaXJxIDMgbm90 IGluIGJpdG1hcCBvZiBwcm9iZWQgaXJxcyAwCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIga2VybmVs OiBzaW8xOiBwb3J0IG1heSBub3QgYmUgZW5hYmxlZApOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtl cm5lbDogdmdhMDogPEdlbmVyaWMgSVNBIFZHQT4gYXQgcG9ydCAweDNjMC0weDNkZiBpb21lbSAw eGEwMDAwLTB4YmZmZmYgb24gaXNhMApOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5lbDogVGlt ZWNvdW50ZXIgIlRTQyIgZnJlcXVlbmN5IDIyMDAwOTAzMTIgSHogcXVhbGl0eSA4MDAKTm92IDI2 IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IFRpbWVjb3VudGVycyB0aWNrIGV2ZXJ5IDEuMDAwIG1z ZWMKTm92IDI2IDIyOjEzOjE1IHNlcnZlciBrZXJuZWw6IGhwdHJyOiBubyBjb250cm9sbGVyIGRl dGVjdGVkLgpOb3YgMjYgMjI6MTM6MTUgc2VydmVyIGtlcm5lbDogYWQ0OiA5NTM4NjlNQiA8U0FN U1VORyBIRDEwM1VKIDFBQTAxMTEzPiBhdCBhdGEyLW1hc3RlciBVRE1BMzMKTm92IDI2IDIyOjEz OjE1IHNlcnZlciBrZXJuZWw6IFRyeWluZyB0byBtb3VudCByb290IGZyb20gdWZzOi9kZXYvYWQ0 czFhCk5vdiAyNiAyMjoxMzoxNSBzZXJ2ZXIgc2F2ZWNvcmU6IG5vIGR1bXBzIGZvdW5kCk5vdiAy NiAyMjoxNjo1NCBzZXJ2ZXIga2VybmVsOiBhZDQ6IFdBUk5JTkcgLSBXUklURV9ETUE0OCBVRE1B IElDUkMgZXJyb3IgKHJldHJ5aW5nIHJlcXVlc3QpIExCQT04MTA1ODE3NTkKTm92IDI2IDIyOjE2 OjU5IHNlcnZlciBrZXJuZWw6IGFkNDogVElNRU9VVCAtIFdSSVRFX0RNQTQ4IHJldHJ5aW5nICgw IHJldHJpZXMgbGVmdCkgTEJBPTgxMDU4MTc1OQpOb3YgMjYgMjI6MTY6NTkgc2VydmVyIGtlcm5l bDogYWQ0OiBGQUlMVVJFIC0gV1JJVEVfRE1BNDggc3RhdHVzPTUxPFJFQURZLERTQyxFUlJPUj4g ZXJyb3I9NDxBQk9SVEVEPiBMQkE9ODEwNTgxNzU5Ck5vdiAyNiAyMjoxNjo1OSBzZXJ2ZXIga2Vy bmVsOiBnX3Zmc19kb25lKCk6YWQ0czFnW1dSSVRFKG9mZnNldD0zOTkxOTc4OTY3MDQsIGxlbmd0 aD0xMzEwNzIpXWVycm9yID0gNQpOb3YgMjYgMjI6MjY6MTcgc2VydmVyIGFjcGk6IHJlc3VtZWQg YXQgMjAwODExMjYgMjI6MjY6MTcKTm92IDI2IDIyOjI2OjIxIHNlcnZlciBzeXNsb2dkOiBleGl0 aW5nIG9uIHNpZ25hbCAxNQpOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIHN5c2xvZ2Q6IGtlcm5lbCBi b290IGZpbGUgaXMgL2Jvb3Qva2VybmVsL2tlcm5lbApOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtl cm5lbDogQ29weXJpZ2h0IChjKSAxOTkyLTIwMDggVGhlIEZyZWVCU0QgUHJvamVjdC4KTm92IDI2 IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IENvcHlyaWdodCAoYykgMTk3OSwgMTk4MCwgMTk4Mywg MTk4NiwgMTk4OCwgMTk4OSwgMTk5MSwgMTk5MiwgMTk5MywgMTk5NApOb3YgMjYgMjI6Mjc6MjIg c2VydmVyIGtlcm5lbDogVGhlIFJlZ2VudHMgb2YgdGhlIFVuaXZlcnNpdHkgb2YgQ2FsaWZvcm5p YS4gQWxsIHJpZ2h0cyByZXNlcnZlZC4KTm92IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IEZy ZWVCU0QgaXMgYSByZWdpc3RlcmVkIHRyYWRlbWFyayBvZiBUaGUgRnJlZUJTRCBGb3VuZGF0aW9u LgpOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogRnJlZUJTRCA3LjAtUkVMRUFTRS1wNSAj MDogV2VkIE9jdCAgMSAwNzo1MTo1OCBVVEMgMjAwOApOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtl cm5lbDogcm9vdEBhbWQ2NC1idWlsZGVyLmRhZW1vbm9sb2d5Lm5ldDovdXNyL29iai91c3Ivc3Jj L3N5cy9HRU5FUklDCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBUaW1lY291bnRlciAi aTgyNTQiIGZyZXF1ZW5jeSAxMTkzMTgyIEh6IHF1YWxpdHkgMApOb3YgMjYgMjI6Mjc6MjIgc2Vy dmVyIGtlcm5lbDogQ1BVOiBBTUQgQXRobG9uKHRtKSA2NCBQcm9jZXNzb3IgMzUwMCsgKDIyMDAu MDktTUh6IEs4LWNsYXNzIENQVSkKTm92IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IE9yaWdp biA9ICJBdXRoZW50aWNBTUQiICBJZCA9IDB4NTBmZjIgIFN0ZXBwaW5nID0gMgpOb3YgMjYgMjI6 Mjc6MjIgc2VydmVyIGtlcm5lbDogRmVhdHVyZXM9MHg3OGJmYmZmPEZQVSxWTUUsREUsUFNFLFRT QyxNU1IsUEFFLE1DRSxDWDgsQVBJQyxTRVAsTVRSUixQR0UsTUNBLENNT1YsUEFULFBTRTM2LENM RkxVU0gsTU1YLEZYU1IsU1NFLFNTRTI+Ck5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBG ZWF0dXJlczI9MHgyMDAxPFNTRTMsQ1gxNj4KTm92IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6 IEFNRCBGZWF0dXJlcz0weGVhNTAwODAwPFNZU0NBTEwsTlgsTU1YKyxGRlhTUixSRFRTQ1AsTE0s M0ROb3chKywzRE5vdyE+Ck5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBBTUQgRmVhdHVy ZXMyPTB4MWQ8TEFIRixTVk0sRXh0QVBJQyxDUjg+Ck5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2Vy bmVsOiB1c2FibGUgbWVtb3J5ID0gNzkyMDg0NDgwICg3NTUgTUIpCk5vdiAyNiAyMjoyNzoyMiBz ZXJ2ZXIga2VybmVsOiBhdmFpbCBtZW1vcnkgID0gNzYyNDQ1ODI0ICg3MjcgTUIpCk5vdiAyNiAy MjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBBQ1BJIEFQSUMgVGFibGU6IDw3MzAyTVMgQTczMDIxMDA+ Ck5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBpb2FwaWMwIDxWZXJzaW9uIDIuMT4gaXJx cyAwLTIzIG9uIG1vdGhlcmJvYXJkCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBrYmQx IGF0IGtiZG11eDAKTm92IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IGF0aF9oYWw6IDAuOS4y MC4zIChBUjUyMTAsIEFSNTIxMSwgQVI1MjEyLCBSRjUxMTEsIFJGNTExMiwgUkYyNDEzLCBSRjU0 MTMpCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBocHRycjogSFBUIFJvY2tldFJBSUQg Y29udHJvbGxlciBkcml2ZXIgdjEuMSAoT2N0ICAxIDIwMDggMDc6NTE6NDgpCk5vdiAyNiAyMjoy NzoyMiBzZXJ2ZXIga2VybmVsOiBhY3BpMDogPDczMDJNUyBBNzMwMjEwMD4gb24gbW90aGVyYm9h cmQKTm92IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IGFjcGkwOiBbSVRIUkVBRF0KTm92IDI2 IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IGFjcGkwOiBQb3dlciBCdXR0b24gKGZpeGVkKQpOb3Yg MjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogYWNwaTA6IHJlc2VydmF0aW9uIG9mIGZmYjgwMDAw LCA4MDAwMCAoMykgZmFpbGVkCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBhY3BpMDog cmVzZXJ2YXRpb24gb2YgZmZmMDAwMDAsIDEwMDAwMCAoMykgZmFpbGVkCk5vdiAyNiAyMjoyNzoy MiBzZXJ2ZXIga2VybmVsOiBhY3BpMDogcmVzZXJ2YXRpb24gb2YgMCwgYTAwMDAgKDMpIGZhaWxl ZApOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogYWNwaTA6IHJlc2VydmF0aW9uIG9mIDEw MDAwMCwgMmZmMDAwMDAgKDMpIGZhaWxlZApOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDog VGltZWNvdW50ZXIgIkFDUEktc2FmZSIgZnJlcXVlbmN5IDM1Nzk1NDUgSHogcXVhbGl0eSA4NTAK Tm92IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IGFjcGlfdGltZXIwOiA8MzItYml0IHRpbWVy IGF0IDMuNTc5NTQ1TUh6PiBwb3J0IDB4ODA4LTB4ODBiIG9uIGFjcGkwCk5vdiAyNiAyMjoyNzoy MiBzZXJ2ZXIga2VybmVsOiBjcHUwOiA8QUNQSSBDUFU+IG9uIGFjcGkwCk5vdiAyNiAyMjoyNzoy MiBzZXJ2ZXIga2VybmVsOiBhY3BpX3Rocm90dGxlMDogPEFDUEkgQ1BVIFRocm90dGxpbmc+IG9u IGNwdTAKTm92IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IHBvd2Vybm93MDogPFBvd2VyTm93 ISBLOD4gb24gY3B1MApOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogcGNpYjA6IDxBQ1BJ IEhvc3QtUENJIGJyaWRnZT4gcG9ydCAweGNmOC0weGNmZiBvbiBhY3BpMApOb3YgMjYgMjI6Mjc6 MjIgc2VydmVyIGtlcm5lbDogcGNpMDogPEFDUEkgUENJIGJ1cz4gb24gcGNpYjAKTm92IDI2IDIy OjI3OjIyIHNlcnZlciBrZXJuZWw6IHBjaWIxOiA8QUNQSSBQQ0ktUENJIGJyaWRnZT4gYXQgZGV2 aWNlIDEuMCBvbiBwY2kwCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBwY2kxOiA8QUNQ SSBQQ0kgYnVzPiBvbiBwY2liMQpOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogdmdhcGNp MDogPFZHQS1jb21wYXRpYmxlIGRpc3BsYXk+IHBvcnQgMHhjMDAwLTB4YzBmZiBtZW0gMHhkMDAw MDAwMC0weGRmZmZmZmZmLDB4ZmU5ZjAwMDAtMHhmZTlmZmZmZiwweGZlODAwMDAwLTB4ZmU4ZmZm ZmYgaXJxIDE4IGF0IGRldmljZSA1LjAgb24gcGNpMQpOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtl cm5lbDogcGNpYjI6IDxBQ1BJIFBDSS1QQ0kgYnJpZGdlPiBpcnEgMTcgYXQgZGV2aWNlIDUuMCBv biBwY2kwCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBwY2kyOiA8QUNQSSBQQ0kgYnVz PiBvbiBwY2liMgpOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogYXRhcGNpMDogPEFUSSBB VEEgY29udHJvbGxlcj4gcG9ydCAweGIwMDAtMHhiMDA3LDB4YTAwMC0weGEwMDMsMHg5MDAwLTB4 OTAwNywweDgwMDAtMHg4MDAzLDB4NzAwMC0weDcwMGYgbWVtIDB4ZmU3ZmY4MDAtMHhmZTdmZmJm ZiBpcnEgMjIgYXQgZGV2aWNlIDE3LjAgb24gcGNpMApOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtl cm5lbDogYXRhcGNpMDogW0lUSFJFQURdCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBh dGEyOiA8QVRBIGNoYW5uZWwgMD4gb24gYXRhcGNpMApOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtl cm5lbDogYXRhMjogW0lUSFJFQURdCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBhdGEz OiA8QVRBIGNoYW5uZWwgMT4gb24gYXRhcGNpMApOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5l bDogYXRhMzogW0lUSFJFQURdCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBwY2kwOiA8 c2VyaWFsIGJ1cywgU01CdXM+IGF0IGRldmljZSAyMC4wIChubyBkcml2ZXIgYXR0YWNoZWQpCk5v diAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBhdGFwY2kxOiA8QVRJIElYUDcwMCBVRE1BMTMz IGNvbnRyb2xsZXI+IHBvcnQgMHgxZjAtMHgxZjcsMHgzZjYsMHgxNzAtMHgxNzcsMHgzNzYsMHhm ZjAwLTB4ZmYwZiBhdCBkZXZpY2UgMjAuMSBvbiBwY2kwCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIg a2VybmVsOiBhdGEwOiA8QVRBIGNoYW5uZWwgMD4gb24gYXRhcGNpMQpOb3YgMjYgMjI6Mjc6MjIg c2VydmVyIGtlcm5lbDogYXRhMDogW0lUSFJFQURdCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2Vy bmVsOiBpc2FiMDogPFBDSS1JU0EgYnJpZGdlPiBhdCBkZXZpY2UgMjAuMyBvbiBwY2kwCk5vdiAy NiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBpc2EwOiA8SVNBIGJ1cz4gb24gaXNhYjAKTm92IDI2 IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IHBjaWIzOiA8QUNQSSBQQ0ktUENJIGJyaWRnZT4gYXQg ZGV2aWNlIDIwLjQgb24gcGNpMApOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogcGNpMzog PEFDUEkgUENJIGJ1cz4gb24gcGNpYjMKTm92IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IHJs MDogPFJlYWxUZWsgODEzOSAxMC8xMDBCYXNlVFg+IHBvcnQgMHhlODAwLTB4ZThmZiBtZW0gMHhm ZWJmZmMwMC0weGZlYmZmY2ZmIGlycSAyMCBhdCBkZXZpY2UgMi4wIG9uIHBjaTMKTm92IDI2IDIy OjI3OjIyIHNlcnZlciBrZXJuZWw6IG1paWJ1czA6IDxNSUkgYnVzPiBvbiBybDAKTm92IDI2IDIy OjI3OjIyIHNlcnZlciBrZXJuZWw6IHJscGh5MDogPFJlYWxUZWsgaW50ZXJuYWwgbWVkaWEgaW50 ZXJmYWNlPiBQSFkgMCBvbiBtaWlidXMwCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBy bHBoeTA6ICAxMGJhc2VULCAxMGJhc2VULUZEWCwgMTAwYmFzZVRYLCAxMDBiYXNlVFgtRkRYLCBh dXRvCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBybDA6IEV0aGVybmV0IGFkZHJlc3M6 IDAwOjUwOmZjOjhlOmIzOjhhCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBybDA6IFtJ VEhSRUFEXQpOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogYWNwaV9idXR0b24wOiA8UG93 ZXIgQnV0dG9uPiBvbiBhY3BpMApOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogYXRrYmRj MDogPEtleWJvYXJkIGNvbnRyb2xsZXIgKGk4MDQyKT4gcG9ydCAweDYwLDB4NjQgaXJxIDEgb24g YWNwaTAKTm92IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IGF0a2JkMDogPEFUIEtleWJvYXJk PiBpcnEgMSBvbiBhdGtiZGMwCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBrYmQwIGF0 IGF0a2JkMApOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogYXRrYmQwOiBbR0lBTlQtTE9D S0VEXQpOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogYXRrYmQwOiBbSVRIUkVBRF0KTm92 IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IGFjcGlfaHBldDA6IDxIaWdoIFByZWNpc2lvbiBF dmVudCBUaW1lcj4gaW9tZW0gMHhmZWQwMDAwMC0weGZlZDAwM2ZmIG9uIGFjcGkwCk5vdiAyNiAy MjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBhY3BpX2hwZXQwOiBIUEVUIG5ldmVyIGluY3JlbWVudHMs IGRpc2FibGluZwpOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogZGV2aWNlX2F0dGFjaDog YWNwaV9ocGV0MCBhdHRhY2ggcmV0dXJuZWQgNgpOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5l bDogYWNwaV9ocGV0MDogPEhpZ2ggUHJlY2lzaW9uIEV2ZW50IFRpbWVyPiBpb21lbSAweGZlZDAw MDAwLTB4ZmVkMDAzZmYgb24gYWNwaTAKTm92IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IGFj cGlfaHBldDA6IEhQRVQgbmV2ZXIgaW5jcmVtZW50cywgZGlzYWJsaW5nCk5vdiAyNiAyMjoyNzoy MiBzZXJ2ZXIga2VybmVsOiBkZXZpY2VfYXR0YWNoOiBhY3BpX2hwZXQwIGF0dGFjaCByZXR1cm5l ZCA2Ck5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBwcGMwOiBjYW5ub3QgcmVzZXJ2ZSBJ L08gcG9ydCByYW5nZQpOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogc2MwOiA8U3lzdGVt IGNvbnNvbGU+IGF0IGZsYWdzIDB4MTAwIG9uIGlzYTAKTm92IDI2IDIyOjI3OjIyIHNlcnZlciBr ZXJuZWw6IHNjMDogVkdBIDwxNiB2aXJ0dWFsIGNvbnNvbGVzLCBmbGFncz0weDMwMD4KTm92IDI2 IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IHNpbzA6IGNvbmZpZ3VyZWQgaXJxIDQgbm90IGluIGJp dG1hcCBvZiBwcm9iZWQgaXJxcyAwCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBzaW8w OiBwb3J0IG1heSBub3QgYmUgZW5hYmxlZApOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDog c2lvMDogY29uZmlndXJlZCBpcnEgNCBub3QgaW4gYml0bWFwIG9mIHByb2JlZCBpcnFzIDAKTm92 IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IHNpbzA6IHBvcnQgbWF5IG5vdCBiZSBlbmFibGVk Ck5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBzaW8wIGF0IHBvcnQgMHgzZjgtMHgzZmYg aXJxIDQgZmxhZ3MgMHgxMCBvbiBpc2EwCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBz aW8wOiB0eXBlIDgyNTAgb3Igbm90IHJlc3BvbmRpbmcKTm92IDI2IDIyOjI3OjIyIHNlcnZlciBr ZXJuZWw6IHNpbzA6IFtGSUxURVJdCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBzaW8x OiBjb25maWd1cmVkIGlycSAzIG5vdCBpbiBiaXRtYXAgb2YgcHJvYmVkIGlycXMgMApOb3YgMjYg MjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogc2lvMTogcG9ydCBtYXkgbm90IGJlIGVuYWJsZWQKTm92 IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IHZnYTA6IDxHZW5lcmljIElTQSBWR0E+IGF0IHBv cnQgMHgzYzAtMHgzZGYgaW9tZW0gMHhhMDAwMC0weGJmZmZmIG9uIGlzYTAKTm92IDI2IDIyOjI3 OjIyIHNlcnZlciBrZXJuZWw6IFRpbWVjb3VudGVyICJUU0MiIGZyZXF1ZW5jeSAyMjAwMDkzMjQy IEh6IHF1YWxpdHkgODAwCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBUaW1lY291bnRl cnMgdGljayBldmVyeSAxLjAwMCBtc2VjCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBo cHRycjogbm8gY29udHJvbGxlciBkZXRlY3RlZC4KTm92IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJu ZWw6IGFkNDogOTUzODY5TUIgPFNBTVNVTkcgSEQxMDNVSiAxQUEwMTExMz4gYXQgYXRhMi1tYXN0 ZXIgVURNQTMzCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2VybmVsOiBUcnlpbmcgdG8gbW91bnQg cm9vdCBmcm9tIHVmczovZGV2L2FkNHMxYQpOb3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDog V0FSTklORzogLyB3YXMgbm90IHByb3Blcmx5IGRpc21vdW50ZWQKTm92IDI2IDIyOjI3OjIyIHNl cnZlciBrZXJuZWw6IFdBUk5JTkc6IC9kYXRhIHdhcyBub3QgcHJvcGVybHkgZGlzbW91bnRlZApO b3YgMjYgMjI6Mjc6MjIgc2VydmVyIGtlcm5lbDogV0FSTklORzogL3RtcCB3YXMgbm90IHByb3Bl cmx5IGRpc21vdW50ZWQKTm92IDI2IDIyOjI3OjIyIHNlcnZlciBrZXJuZWw6IFdBUk5JTkc6IC91 c3Igd2FzIG5vdCBwcm9wZXJseSBkaXNtb3VudGVkCk5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIga2Vy bmVsOiBXQVJOSU5HOiAvdmFyIHdhcyBub3QgcHJvcGVybHkgZGlzbW91bnRlZApOb3YgMjYgMjI6 Mjc6MjIgc2VydmVyIGtlcm5lbDogL3ZhcjogbW91bnQgcGVuZGluZyBlcnJvcjogYmxvY2tzIDI4 IGZpbGVzIDE1Ck5vdiAyNiAyMjoyNzoyMiBzZXJ2ZXIgc2F2ZWNvcmU6IG5vIGR1bXBzIGZvdW5k Ck5vdiAyNiAyMjozMDo0MSBzZXJ2ZXIgc3U6IEJBRCBTVSBhZG1pbiB0byByb290IG9uIC9kZXYv dHR5cDAKTm92IDI2IDIyOjMwOjQ1IHNlcnZlciBzdTogYWRtaW4gdG8gcm9vdCBvbiAvZGV2L3R0 eXAwCk5vdiAyNiAyMjozMDo0NyBzZXJ2ZXIgcmVib290OiByZWJvb3RlZCBieSBhZG1pbgpOb3Yg MjYgMjI6MzA6NDcgc2VydmVyIHN5c2xvZ2Q6IGV4aXRpbmcgb24gc2lnbmFsIDE1Ck5vdiAyNiAy MjozODoxMiBzZXJ2ZXIgc3lzbG9nZDoga2VybmVsIGJvb3QgZmlsZSBpcyAvYm9vdC9rZXJuZWwv a2VybmVsCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBXYWl0aW5nIChtYXggNjAgc2Vj b25kcykgZm9yIHN5c3RlbSBwcm9jZXNzIGB2bmxydScgdG8gc3RvcC4uLmRvbmUKTm92IDI2IDIy OjM4OjEyIHNlcnZlciBrZXJuZWw6IFdhaXRpbmcgKG1heCA2MCBzZWNvbmRzKSBmb3Igc3lzdGVt IHByb2Nlc3MgYHN5bmNlcicgdG8gc3RvcC4uLgpOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5l bDogU3luY2luZyBkaXNrcywgdm5vZGVzIHJlbWFpbmluZy4uLjEgMSAxIDEgMSAxIDEgMSAxIDEg MSAxIDEgMSAxIDEgMSAxIDEgMSAxIDEgMSAxIDEgMSAxIDEgMSAxIDEgMSAxIDEgMSAxIDEgMSAx IDEgMSAxIDEgMSAxIDEgMSAxIDEgMSAxIDEgMSAxIDEgMSAxIDEgMSAxIHRpbWVkIG91dApOb3Yg MjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogV2FpdGluZyAobWF4IDYwIHNlY29uZHMpIGZvciBz eXN0ZW0gcHJvY2VzcyBgYnVmZGFlbW9uJyB0byBzdG9wLi4uZG9uZQpOb3YgMjYgMjI6Mzg6MTIg c2VydmVyIGtlcm5lbDogU3luY2luZyBkaXNrcywgYnVmZmVycyByZW1haW5pbmcuLi4gMTg0IDE4 NSAxODYgMSAxODUgMTg1IDE4NSAxODUgMTg0IDE4NCAxODUgMTg1IDE4NSAxODQgMTg0IDE4NSAx IDE4NCAxODQgMTg0IDE4NCAxODUgMTg1IDE4NSAxIDE4NCAxODQgMTg0IDE4NCAxODQgMTg1IDE4 NCAxODQgMTg1IDE4NSAxIDE4NSAxODQgMTg0IDE4NCAxODQgMTg0IDE4NCAxIDE4NSAxODQgMTg0 IDE4NCAxODQgMTg1IDE4NCAxODQgMTg1IDEgMTg1IDE4NCAxODQgMTg0IDE4NCAxODQgMTg0IDE4 NSAxIDE4NCAxODQgMTg1IDE4NCAxODQgMTg0IDE4NCAxODUgMTg0IDE4NCAxODUgMSAxODUgMTg1 IDE4NCAxODQgMTg0IDE4NSAxODQgMTg0IDE4NCAxODUgMSAxODQgMTg0IDE4NSAxODQgMTg0IDE4 NSAxODQgMTg0IDE4NSAxODUgMTg0IDE4NCAxODQgMTg0IDE4NCAxIDE4NCAxODQgMTg0IDEgMTg0 IDE4NCAxODUgMSAxODUgMTg0IDE4NCAxIDE4NCAxODUgMTg0IDE4NCAxODUgMTg1IDE4NCAxODQg MTg1IDE4NCAxODQgMTg0IDE4NSAxIDE4NCAxODQgMTg0IDE4NCAxODQgMTg0IDE4NSAxIDE4NCAx ODQgMTg0IDE4NCAxODQgMTg1IDE4NSAxIDE4NSAxODQgMTg0IDE4NCAxODQgMTg0IDEgMTg1IDE4 NSAxODUgMTg1IDEgMTg1IDE4NCAxODQgMTg1IDE4NSAxIDE4NCAxODQgMTg1IDE4NSAxODUgMTg1 IDE4NSAxIDE4NSAxODYgMTg1IDE4NCAxODQgMTg0IDEgMTg0IDE4NSAxODUgMTg1IDE4NSAxIDE4 NiAxODUgMTg1IDE4NSAxODUgMSAxODUgMTg1IDE4NCAxODQgMTg1IDE4NSAxODQgMTg0IDE4NSAx ODYgMSAxODUgMTg1IDE4NSAxODUgMTg0IDE4NCAxODQgMTg1IDE4NCAxODQgMTg1IDE4NSAxIDE4 NCAxODUgMTg1IDE4NSAxODUgMTg1IDE4NCAxODQgMTg0IDE4NSAxIDE4NCAxODQgMTg0IDE4NSAx ODUgMTg0IDE4NCAxODUgMTg1IDE4NSAxIDE4NSAxODUgMTg2IDE4NCAxODQgMSAxODUgMTg1IDE4 NSAxODQgMTg0IDE4NSAxODUgMTg1IDEgMTc1IDE3NSAxNzQgMTc0IDE3NSAxNzUgMTc1IDE3NCAx NzQgMTcKTm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IDc0IDE3NSAxNzUgMSAxNzQgMTc0 IDE3NSAxNzQgMTc0IDE3NSAxNzUgMTc0IDE3NCAxNzQgMTc0IDE3NCAxNzQgMSAxNzQgMTc2IDE3 NSAxNzUgMTc0IDE3NCAxIDE3NCAxNzQgMTc0IDE3NSAxNzQgMTc0IDE3NCAxNzQgMSAxNzUgMTc1 IDE3NCAxNzQgMTc0IDE3NCAxNzQgMTc1IDEgMTc2IDE3NSAxNzUgMTc1IDE3NCAxNzQgMTc0IDE3 NSAxNzUgMSAxNzQgMTc0IDE3NSAxNzUgMTc1IDE3NCAxNzQgMTc0IDE3NSAxNzQgMTc0IDEgMTc0 IDE3NCAxNzQgMTc0IDE3NSAxIDE3NSAxNzUgMTc2IDEgMTc2IDE3NSAxNzUgMTc1IDE3NiAxIDE3 NSAxNzUgMTc2IDE3NSAxNzUgMTc1IDE3NiAxNzYgMTc1IDE3NSAxNzYgMTc2IDEgMTc2IDE3NiAx NzUgMTc1IDE3NSAxNzcgMTc1IDE3NSAxNzUgMTc2IDEgMTc3IDE3NiAxNzYgMTc1IDE3NSAxNzUg MTc1IDE3NSAxNzYgMSAxNzYgMTc2IDE3NSAxNzcgMTc1IDE3NSAxNzUgMTc1IDEgMTc1IDE3NSAx NzUgMTc1IDEgMTc1IDE3NSAxIDE3NiAxNzYgMSAxNzUgMTc1IDE3NiAxNzUgMTc1IDE3NSAxNzUg MTc2IDE3NiAxIDE3NSAxNzUgMTc2IDE3NiAxNzUgMTc1IDE3NSAxNzUgMTc2IDE3NSAxNzUgMTc2 IDEgMTc2IDE3NSAxNzUgMTc3IDE3NiAxNzYgMTc3IDE3NSAxNzUgMTc2IDE3NSAxNzUgMTc2IDE3 NiAxNzUgMTc1IDE3NiAxIDE3NSAxNzUgMTc2IDE3NiAxNzYgMTc1IDE3NSAxNzUgMTc2IDE3NiAx IDE3NSAxNzUgMTc2IDE3NSAxNzUgMTc1IDE3NiAxNzYgMTc1IDE3NSAxNzYgMTc1IDE3NSAxNzYg MSAxNzUgMTc2IDE3NiAxNzYgMTc2IDE3NSAxNzUgMTc2IDE3NiAxNzUgMTc1IDE3NiAxIDE3NSAx NzUgMTc2IDE3NSAxNzUgMTc2IDE3NSAxNzUgMTc3IDE3NSAxNzUgMTc1IDE3NSAxNzYgMTc3IDEg MTc2IDE3NiAxNzYgMTc1IDE3NSAxNzUgMTc1IDE3NiAxNzUgMTc1IDE3NiAxIDE3NiAxNzUgMTc1 IDE3NSAxNzcgMTc1IDE3NSAxNzYgMTc2IDE3NSAxNzUgMTc2IDE3NiAxIDE3NiAxNzYgMTc1IDE3 NSAxNzcgMTc1IDE3NSAxNzUgMTc3IDEgMTc1Ck5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVs OiA1IDE3NSAxNzcgMTc1IDE3NSAxNzUgMTc2IDE3NSAxNzUgMTc2IDEgMTc2IDE3NSAxNzUgMTc2 IDE3NSAxNzUgMTc2IDE3NiAxNzUgMTc1IDE3NSAxNzYgMTc1IDE3NSAxNzUgMSAxNzUgMTc1IDE3 NiAxNzUgMTc1IDE3NiAxNzUgMTc1IDE3NiAxNzUgMTc1IDEgMTc1IDE3NiAxNzUgMTc1IDE3NyAx NzYgMTc2IDE3NiAxNzYgMTc1IDE3NSAxNzYgMTc2IDEgMTc1IDE3NSAxNzUgMTc1IDE3NyAxNzUg MTc1IDE3NiAxNzYgMTc2IDEgMTc2IDE3NiAxNzUgMTc1IDE3NSAxNzUgMTc1IDEgMTc3IDE3NSAx NzUgMTc1IDE3NSAxNzUgMTc2IDEgMTc3IDE3NiAxNzYgMTc1IDE3NSAxNzUgMTc1IDE2NyAxNjcg MTYzIDE2MSAxNjEgMTQ3IDE0NyAxMzQgMTM0IDEgMTIzIDEyNCAxMTMgMTEzIDEwNyAxMDggMTAx IDEwMSA5OCA5NSA5NSA2NyA2NyA0MyA0MyA0MyA0MyA0NCA0MyA0MyA0MyAxIDQ0IDQzIDQzIDQ0 IDQzIDQzIDQzIDQzIDQzIDQ0IDEgNDQgNDMgNDMgNDMgNDMgNDMgNDMgMSA0NCAzNyAzNyAzNyAz NSAzNSAzMyAzMyAzMyAzMiAzMiAyOSAyOSAzMCAyOCAyOCAxIDI1IDI2IDI1IDI1IDI1IDI1IDI2 IDI1IDI1IDI1IDI1IDI2IDEgMjUgMjUgMjYgMjcgMjYgMjYgMjUgMjUgMjUgMjUgMjUgMjYgMSAy NSAyNSAyNSAyNSAyNiAyNSAyNSAyNSAyNSAxIDI2IDI1IDI1IDI1IDI1IDI2IDI2IDEgMjcgMjUg MjUgMjUgMjUgMjUgMjUgMSAyNiAyNSAyNSAyNiAyNiAyNSAyNSAyNiAyNSAyNSAyNiAyNSAyNSAx IDI1IDI1IDI2IDI1IDI1IDI1IDI1IDI1IDI2IDEgMjUgMjUgMjUgMjUgMjUgMjYgMjUgMSAyNSAy NiAyNSAyNSAyNiAyNiAyNiAyNSAyNSAyNSAyNiAyNSAyNSAxIDI1IDI2IDI1IDI1IDI2IDI2IDI2 IDI1IDI1IDI1IDI2IDEgMjYgMjUgMjUgMjUgMjUgMjcgMjUgMjUgMjUgMjUgMSAyNSAyNiAyNSAy NSAyNSAyNSAyNSAxIDI1IDI2IDI1IDI1IDI2IDI1IDI1IDI1IDI2IDEgMjUgMjUgMjUgMjYgMjYg MjYgMjUgMjUgMjUgMjYgMSAyNSAyNSAyNiAyNiAyNSAyNSAyNSAyNSAyNiAyNiAxIApOb3YgMjYg MjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogNiAyNyAyNiAyNiAyNSAyNSAyNyAyNiAyNiAyNiAyNSAy NSAyNiAxIDI1IDI1IDI2IDI1IDI1IDI2IDI2IDI1IDI1IDI3IDI1IDI1IDI1IDI2IDI3IDEgMjUg MjUgMjYgMjUgMjUgMjUgMjYgMjUgMjUgMjUgMjUgMjUgMSAyNSAyNyAyNSAyNSAyNiAyNSAyNSAy NiAyNiAxIDI2IDI1IDI1IDI1IDI2IDI1IDI1IDI1IDI2IDI1IDI1IDI1IDEgMjYgMjYgMjYgMjYg MjYgMSAyNiAyOCAxIDI2IDI2IDI2IDI2IDI2IDI3IDI2IDI2IDI3IDEgMjcgMjYgMjYgMjYgMjYg MjcgMjcgMSAyNiAyNiAyNyAyNyAyNiAyNiAyNiAyNyAyNyAyNyAxIDI2IDI2IDI3IDI2IDI2IDI3 IDI2IDI2IDI2IDI3IDI3IDI2IDI2IDI3IDEgMjYgMjYgMjcgMjYgMjYgMjYgMjYgMjYgMjYgMjYg MSAyNiAyNiAxIDI4IDI2IDI2IDI3IDI3IDI3IDI2IDI2IDEgMjcgMjcgMjYgMjYgMjggMjcgMjcg MjcgMjcgMjcgMjYgMjYgMjcgMSAyNiAyNiAyNyAyNyAyNyAyNiAyNiAyNiAyNyAyNyAxIDI2IDI2 IDI2IDI3IDI3IDI3IDI3IDEgMjYgMjYgMjcgMjcgMjcgMjYgMjYgMjcgMjYgMjYgMjcgMjcgMSAy NyAyNyAyNyAyNiAyNiAyNyAxIDI3IDI3IDI3IDI3IDI3IDEgMjcgMjggMSAyNyAyNyAyNyAyNyAy NiAyNiAyNyAyNyAyNyAyNyAxIDI3IDI3IDI3IDEgMjcgMjYgMjYgMjYgMjcgMSAyNiAyNiAyNiAy NiAyNiAyNyAyNyAxIDI3IDI3IDI3IDEgMjYgMjYgMjYgMjcgMjcgMjYgMjYgMjYgMjYgMSAyNiAy NyAyNiAyNiAyNyAyNyAyNyAxIDI2IDI2IDI2IDI2IDI2IDI2IDI2IDEgMjcgMjcgMjYgMjYgMjgg MSAyNyAyNyAyNyAyNyAyNyAyNiAyNiAyNiAyNiAyNyAxIDI3IDI3IDI3IDI2IDI2IDI2IDEgMjYg MjYgMjcgMjcgMjYgMjYgMSAyNyAyNyAyNyAyNiAyNiAyNiAyNiAyNiAxIDI2IDI2IDI2IDI3IDEg MjYgMjYgMjYgMjcgMjcgMjYgMjYgMjYgMjYgMSAyNyAyNyAyOCAyNiAyNiAyNiAxIDI2IDI3IDI2 IDI2IDI3IDI3IDI2IDI3IDI3IDI2IDI2IDI2IDEgMjYgMjYgMjYgMjYgMjYgMSAyNiAyNiAxIDI3 IDI3IDEgMjcgMjcgMSAKTm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IDYgMjcgMjYgMjYg MjcgMjYgMjYgMjYgMSAyNiAyNiAyOCAyNiAyNiAyNyAyNyAyNiAyNiAyOCAxIDI2IDI2IDI3IDI2 IDI2IDI3IDI2IDI2IDI3IDI2IDI2IDI2IDI2IDI2IDEgMjcgMjcgMjYgMjYgMjcgMjYgMjYgMjcg MjcgMSAyNiAyNiAyNiAyNiAyNiAyNiAyOCAxIDI4IDI2IDI2IDI2IDI2IDI3IDI3IDEgMjYgMjYg MjYgMjYgMjcgMjYgMjYgMjcgMjYgMjYgMjcgMSAyOCAyOCAyNiAyNiAyNyAyNiAyNiAyNiAyNiAy NyAxIDI3IDI2IDI2IDI3IDI2IDI2IDI2IDI2IDI2IDI3IDEgMjcgMjYgMjYgMjcgMjYgMjYgMjYg MjYgMjYgMSAyNyAyNyAyNyAxIDI3IDI3IDI2IDI2IDEgMjcgMjYgMjYgMjcgMjYgMjYgMjYgMjYg MjYgMjcgMSAyNiAyNiAyNiAyNiAyNiAyNiAyNiAxIDI3IDI2IDI2IDI2IDI2IDI2IDI2IDEgMjcg MjYgMjYgMjcgMjYgMjYgMjcgMjYgMjYgMjcgMjYgMjYgMSAyNiAyNiAyNiAyNiAyNiAxIDI4IDI3 IDI3IDI3IDI3IDI3IDI3IDEgMjcgMjcgMjYgMjYgMjYgMjcgMSAyNyAyOCAyNyAyOCAyOCAyOCAy OCAxIDI4IDI4IDI4IDI4IDEgMjggMjggMSAyNyAyNyAyOCAyOCAyNyAyNyAyNyAyOCAyNyAyNyAy NyAxIDI4IDI4IDI4IDI3IDI3IDI4IDI4IDI4IDEgMjggMjggMjggMSAyOCAyOCAyNyAyNyAyOCAx IDI3IDI3IDI4IDI4IDI4IDI4IDI3IDI3IDI4IDI4IDEgMjggMjggMjggMjggMSAyOCAyOCAxIDI4 IDI4IDEgMjcgMjcgMjggMjcgMjcgMjcgMjcgMjggMjcgMjcgMjcgMjggMSAyNyAyNyAyOCAyNyAy NyAyOCAyOCAyOSAyOCAyNyAyNyAyNyAyOCAxIDI4IDI4IDI4IDI3IDI3IDI3IDEgMjggMjcgMjcg MjggMjcgMjcgMjggMjggMjggMjggMSAyNyAyNyAyOCAyNyAyNyAyOCAyOCAyNyAyNyAyOCAyNyAy NyAyOCAyNyAyNyAyNyAyNyAxIDI4IDI4IDI4IDI3IDI3IDI4IDEgMjggMjcgMjcgMjggMjUgMjUg MjYgMjUgMjUgMjYgMjYgMjYgMSAyNSAyNSAyNSAyNSAyNSAyNSAyNiAxIDI1IDI1IDI1IDI1IDI2 IDI1IDI1IDI1IDI1IDI2IDEgMjYgMjUgMjUgMjUgMjYgMjUgCk5vdiAyNiAyMjozODoxMiBzZXJ2 ZXIga2VybmVsOiA1IDI1IDI2IDI1IDI1IDEgMjYgMjUgMjUgMjUgMjYgMjUgMjYgMjUgMjUgMjYg MjUgMjUgMjUgMjUgMjUgMSAyNiAyNSAyNSAyNSAyNSAyNiAyNiAxIDI3IDI2IDI2IDI2IDI2IDI2 IDI1IDI1IDI1IDEgMjYgMjYgMjYgMjUgMjUgMjUgMjUgMSAyNiAyNiAyNiAyNiAxIDI1IDI1IDI2 IDI1IDI1IDI1IDI2IDI2IDI2IDEgMjYgMjUgMjUgMjUgMjYgMjUgMjUgMjYgMjYgMjYgMSAyNSAy NSAyNSAyNSAyNSAyNSAyNSAxIDI2IDI1IDI1IDI2IDI1IDI1IDI1IDI1IDEgMjUgMjUgMjUgMjMg MjMgMjQgMjMgMjMgMjMgMSAyNCAyNSAyNSAyNCAyNCAyNSAyMyAyMyAyMyAyNCAxIDIzIDIzIDIz IDIzIDI0IDIzIDIzIDIzIDI0IDIzIDIzIDIzIDEgMjMgMjMgMjQgMjQgMjMgMSAyMyAyMyAyMyAy MyAyMyAyNSAxIDI0IDI0IDI0IDI0IDI0IDIzIDIzIDI0IDIzIDIzIDIzIDIzIDEgMjMgMjQgMjMg MjMgMjQgMjQgMjMgMjMgMjMgMjMgMSAyMyAyNCAyNCAyNCAxIDIzIDIzIDIzIDI0IDI0IDIzIDIz IDIzIDIzIDEgMjQgMjUgMjQgMjMgMjMgMjUgMjMgMjMgMjUgMjQgMjQgMjQgMjMgMjMgMjMgMSAy NCAyMyAyMyAyMyAyMyAyNCAyMyAyMyAyMyAyMyAxIDIzIDIzIDI0IDI1IDEgMjUgMjMgMjMgMjMg MjMgMjMgMSAyNCAyMyAyMyAyMyAyNCAyMyAyMyAyMyAyNCAyMyAyMyAyNCAxIDIzIDIzIDI0IDIz IDIzIDIzIDIzIDIzIDIzIDI0IDEgMjQgMjQgMSAyNCAyNCAyMyAyMyAxIDI0IDI0IDIzIDIzIDIz IDIzIDI0IDI0IDEgMjMgMjMgMjQgMjQgMjMgMjMgMjQgMjMgMjMgMjMgMjMgMjQgMSAyMyAyMyAy NCAyNCAyNCAyNCAyNCAxIDI0IDI0IDExIDEgNiA2IApOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtl cm5lbDogRmluYWwgc3luYyBjb21wbGV0ZQpOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDog Q29weXJpZ2h0IChjKSAxOTkyLTIwMDggVGhlIEZyZWVCU0QgUHJvamVjdC4KTm92IDI2IDIyOjM4 OjEyIHNlcnZlciBrZXJuZWw6IENvcHlyaWdodCAoYykgMTk3OSwgMTk4MCwgMTk4MywgMTk4Niwg MTk4OCwgMTk4OSwgMTk5MSwgMTk5MiwgMTk5MywgMTk5NApOb3YgMjYgMjI6Mzg6MTIgc2VydmVy IGtlcm5lbDogVGhlIFJlZ2VudHMgb2YgdGhlIFVuaXZlcnNpdHkgb2YgQ2FsaWZvcm5pYS4gQWxs IHJpZ2h0cyByZXNlcnZlZC4KTm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IEZyZWVCU0Qg aXMgYSByZWdpc3RlcmVkIHRyYWRlbWFyayBvZiBUaGUgRnJlZUJTRCBGb3VuZGF0aW9uLgpOb3Yg MjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogRnJlZUJTRCA3LjAtUkVMRUFTRS1wNSAjMDogV2Vk IE9jdCAgMSAwNzo1MTo1OCBVVEMgMjAwOApOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDog cm9vdEBhbWQ2NC1idWlsZGVyLmRhZW1vbm9sb2d5Lm5ldDovdXNyL29iai91c3Ivc3JjL3N5cy9H RU5FUklDCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBUaW1lY291bnRlciAiaTgyNTQi IGZyZXF1ZW5jeSAxMTkzMTgyIEh6IHF1YWxpdHkgMApOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtl cm5lbDogQ1BVOiBBTUQgQXRobG9uKHRtKSA2NCBQcm9jZXNzb3IgMzUwMCsgKDIyMDAuMDktTUh6 IEs4LWNsYXNzIENQVSkKTm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IE9yaWdpbiA9ICJB dXRoZW50aWNBTUQiICBJZCA9IDB4NTBmZjIgIFN0ZXBwaW5nID0gMgpOb3YgMjYgMjI6Mzg6MTIg c2VydmVyIGtlcm5lbDogRmVhdHVyZXM9MHg3OGJmYmZmPEZQVSxWTUUsREUsUFNFLFRTQyxNU1Is UEFFLE1DRSxDWDgsQVBJQyxTRVAsTVRSUixQR0UsTUNBLENNT1YsUEFULFBTRTM2LENMRkxVU0gs TU1YLEZYU1IsU1NFLFNTRTI+Ck5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBGZWF0dXJl czI9MHgyMDAxPFNTRTMsQ1gxNj4KTm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IEFNRCBG ZWF0dXJlcz0weGVhNTAwODAwPFNZU0NBTEwsTlgsTU1YKyxGRlhTUixSRFRTQ1AsTE0sM0ROb3ch KywzRE5vdyE+Ck5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBBTUQgRmVhdHVyZXMyPTB4 MWQ8TEFIRixTVk0sRXh0QVBJQyxDUjg+Ck5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiB1 c2FibGUgbWVtb3J5ID0gNzkyMDg0NDgwICg3NTUgTUIpCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIg a2VybmVsOiBhdmFpbCBtZW1vcnkgID0gNzYyNDQ1ODI0ICg3MjcgTUIpCk5vdiAyNiAyMjozODox MiBzZXJ2ZXIga2VybmVsOiBBQ1BJIEFQSUMgVGFibGU6IDw3MzAyTVMgQTczMDIxMDA+Ck5vdiAy NiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBpb2FwaWMwIDxWZXJzaW9uIDIuMT4gaXJxcyAwLTIz IG9uIG1vdGhlcmJvYXJkCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBrYmQxIGF0IGti ZG11eDAKTm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IGF0aF9oYWw6IDAuOS4yMC4zIChB UjUyMTAsIEFSNTIxMSwgQVI1MjEyLCBSRjUxMTEsIFJGNTExMiwgUkYyNDEzLCBSRjU0MTMpCk5v diAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBocHRycjogSFBUIFJvY2tldFJBSUQgY29udHJv bGxlciBkcml2ZXIgdjEuMSAoT2N0ICAxIDIwMDggMDc6NTE6NDgpCk5vdiAyNiAyMjozODoxMiBz ZXJ2ZXIga2VybmVsOiBhY3BpMDogPDczMDJNUyBBNzMwMjEwMD4gb24gbW90aGVyYm9hcmQKTm92 IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IGFjcGkwOiBbSVRIUkVBRF0KTm92IDI2IDIyOjM4 OjEyIHNlcnZlciBrZXJuZWw6IGFjcGkwOiBQb3dlciBCdXR0b24gKGZpeGVkKQpOb3YgMjYgMjI6 Mzg6MTIgc2VydmVyIGtlcm5lbDogYWNwaTA6IHJlc2VydmF0aW9uIG9mIGZmYjgwMDAwLCA4MDAw MCAoMykgZmFpbGVkCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBhY3BpMDogcmVzZXJ2 YXRpb24gb2YgZmZmMDAwMDAsIDEwMDAwMCAoMykgZmFpbGVkCk5vdiAyNiAyMjozODoxMiBzZXJ2 ZXIga2VybmVsOiBhY3BpMDogcmVzZXJ2YXRpb24gb2YgMCwgYTAwMDAgKDMpIGZhaWxlZApOb3Yg MjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogYWNwaTA6IHJlc2VydmF0aW9uIG9mIDEwMDAwMCwg MmZmMDAwMDAgKDMpIGZhaWxlZApOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogVGltZWNv dW50ZXIgIkFDUEktc2FmZSIgZnJlcXVlbmN5IDM1Nzk1NDUgSHogcXVhbGl0eSA4NTAKTm92IDI2 IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IGFjcGlfdGltZXIwOiA8MzItYml0IHRpbWVyIGF0IDMu NTc5NTQ1TUh6PiBwb3J0IDB4ODA4LTB4ODBiIG9uIGFjcGkwCk5vdiAyNiAyMjozODoxMiBzZXJ2 ZXIga2VybmVsOiBjcHUwOiA8QUNQSSBDUFU+IG9uIGFjcGkwCk5vdiAyNiAyMjozODoxMiBzZXJ2 ZXIga2VybmVsOiBhY3BpX3Rocm90dGxlMDogPEFDUEkgQ1BVIFRocm90dGxpbmc+IG9uIGNwdTAK Tm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IHBvd2Vybm93MDogPFBvd2VyTm93ISBLOD4g b24gY3B1MApOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogcGNpYjA6IDxBQ1BJIEhvc3Qt UENJIGJyaWRnZT4gcG9ydCAweGNmOC0weGNmZiBvbiBhY3BpMApOb3YgMjYgMjI6Mzg6MTIgc2Vy dmVyIGtlcm5lbDogcGNpMDogPEFDUEkgUENJIGJ1cz4gb24gcGNpYjAKTm92IDI2IDIyOjM4OjEy IHNlcnZlciBrZXJuZWw6IHBjaWIxOiA8QUNQSSBQQ0ktUENJIGJyaWRnZT4gYXQgZGV2aWNlIDEu MCBvbiBwY2kwCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBwY2kxOiA8QUNQSSBQQ0kg YnVzPiBvbiBwY2liMQpOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogdmdhcGNpMDogPFZH QS1jb21wYXRpYmxlIGRpc3BsYXk+IHBvcnQgMHhjMDAwLTB4YzBmZiBtZW0gMHhkMDAwMDAwMC0w eGRmZmZmZmZmLDB4ZmU5ZjAwMDAtMHhmZTlmZmZmZiwweGZlODAwMDAwLTB4ZmU4ZmZmZmYgaXJx IDE4IGF0IGRldmljZSA1LjAgb24gcGNpMQpOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDog cGNpYjI6IDxBQ1BJIFBDSS1QQ0kgYnJpZGdlPiBpcnEgMTcgYXQgZGV2aWNlIDUuMCBvbiBwY2kw Ck5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBwY2kyOiA8QUNQSSBQQ0kgYnVzPiBvbiBw Y2liMgpOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogYXRhcGNpMDogPEFUSSBBVEEgY29u dHJvbGxlcj4gcG9ydCAweGIwMDAtMHhiMDA3LDB4YTAwMC0weGEwMDMsMHg5MDAwLTB4OTAwNyww eDgwMDAtMHg4MDAzLDB4NzAwMC0weDcwMGYgbWVtIDB4ZmU3ZmY4MDAtMHhmZTdmZmJmZiBpcnEg MjIgYXQgZGV2aWNlIDE3LjAgb24gcGNpMApOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDog YXRhcGNpMDogW0lUSFJFQURdCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBhdGEyOiA8 QVRBIGNoYW5uZWwgMD4gb24gYXRhcGNpMApOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDog YXRhMjogW0lUSFJFQURdCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBhdGEzOiA8QVRB IGNoYW5uZWwgMT4gb24gYXRhcGNpMApOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogYXRh MzogW0lUSFJFQURdCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBwY2kwOiA8c2VyaWFs IGJ1cywgU01CdXM+IGF0IGRldmljZSAyMC4wIChubyBkcml2ZXIgYXR0YWNoZWQpCk5vdiAyNiAy MjozODoxMiBzZXJ2ZXIga2VybmVsOiBhdGFwY2kxOiA8QVRJIElYUDcwMCBVRE1BMTMzIGNvbnRy b2xsZXI+IHBvcnQgMHgxZjAtMHgxZjcsMHgzZjYsMHgxNzAtMHgxNzcsMHgzNzYsMHhmZjAwLTB4 ZmYwZiBhdCBkZXZpY2UgMjAuMSBvbiBwY2kwCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVs OiBhdGEwOiA8QVRBIGNoYW5uZWwgMD4gb24gYXRhcGNpMQpOb3YgMjYgMjI6Mzg6MTIgc2VydmVy IGtlcm5lbDogYXRhMDogW0lUSFJFQURdCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBp c2FiMDogPFBDSS1JU0EgYnJpZGdlPiBhdCBkZXZpY2UgMjAuMyBvbiBwY2kwCk5vdiAyNiAyMjoz ODoxMiBzZXJ2ZXIga2VybmVsOiBpc2EwOiA8SVNBIGJ1cz4gb24gaXNhYjAKTm92IDI2IDIyOjM4 OjEyIHNlcnZlciBrZXJuZWw6IHBjaWIzOiA8QUNQSSBQQ0ktUENJIGJyaWRnZT4gYXQgZGV2aWNl IDIwLjQgb24gcGNpMApOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogcGNpMzogPEFDUEkg UENJIGJ1cz4gb24gcGNpYjMKTm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IHJsMDogPFJl YWxUZWsgODEzOSAxMC8xMDBCYXNlVFg+IHBvcnQgMHhlODAwLTB4ZThmZiBtZW0gMHhmZWJmZmMw MC0weGZlYmZmY2ZmIGlycSAyMCBhdCBkZXZpY2UgMi4wIG9uIHBjaTMKTm92IDI2IDIyOjM4OjEy IHNlcnZlciBrZXJuZWw6IG1paWJ1czA6IDxNSUkgYnVzPiBvbiBybDAKTm92IDI2IDIyOjM4OjEy IHNlcnZlciBrZXJuZWw6IHJscGh5MDogPFJlYWxUZWsgaW50ZXJuYWwgbWVkaWEgaW50ZXJmYWNl PiBQSFkgMCBvbiBtaWlidXMwCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBybHBoeTA6 ICAxMGJhc2VULCAxMGJhc2VULUZEWCwgMTAwYmFzZVRYLCAxMDBiYXNlVFgtRkRYLCBhdXRvCk5v diAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBybDA6IEV0aGVybmV0IGFkZHJlc3M6IDAwOjUw OmZjOjhlOmIzOjhhCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBybDA6IFtJVEhSRUFE XQpOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogYWNwaV9idXR0b24wOiA8UG93ZXIgQnV0 dG9uPiBvbiBhY3BpMApOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogYXRrYmRjMDogPEtl eWJvYXJkIGNvbnRyb2xsZXIgKGk4MDQyKT4gcG9ydCAweDYwLDB4NjQgaXJxIDEgb24gYWNwaTAK Tm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IGF0a2JkMDogPEFUIEtleWJvYXJkPiBpcnEg MSBvbiBhdGtiZGMwCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBrYmQwIGF0IGF0a2Jk MApOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogYXRrYmQwOiBbR0lBTlQtTE9DS0VEXQpO b3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogYXRrYmQwOiBbSVRIUkVBRF0KTm92IDI2IDIy OjM4OjEyIHNlcnZlciBrZXJuZWw6IGFjcGlfaHBldDA6IDxIaWdoIFByZWNpc2lvbiBFdmVudCBU aW1lcj4gaW9tZW0gMHhmZWQwMDAwMC0weGZlZDAwM2ZmIG9uIGFjcGkwCk5vdiAyNiAyMjozODox MiBzZXJ2ZXIga2VybmVsOiBhY3BpX2hwZXQwOiBIUEVUIG5ldmVyIGluY3JlbWVudHMsIGRpc2Fi bGluZwpOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogZGV2aWNlX2F0dGFjaDogYWNwaV9o cGV0MCBhdHRhY2ggcmV0dXJuZWQgNgpOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogYWNw aV9ocGV0MDogPEhpZ2ggUHJlY2lzaW9uIEV2ZW50IFRpbWVyPiBpb21lbSAweGZlZDAwMDAwLTB4 ZmVkMDAzZmYgb24gYWNwaTAKTm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IGFjcGlfaHBl dDA6IEhQRVQgbmV2ZXIgaW5jcmVtZW50cywgZGlzYWJsaW5nCk5vdiAyNiAyMjozODoxMiBzZXJ2 ZXIga2VybmVsOiBkZXZpY2VfYXR0YWNoOiBhY3BpX2hwZXQwIGF0dGFjaCByZXR1cm5lZCA2Ck5v diAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBwcGMwOiBjYW5ub3QgcmVzZXJ2ZSBJL08gcG9y dCByYW5nZQpOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogc2MwOiA8U3lzdGVtIGNvbnNv bGU+IGF0IGZsYWdzIDB4MTAwIG9uIGlzYTAKTm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6 IHNjMDogVkdBIDwxNiB2aXJ0dWFsIGNvbnNvbGVzLCBmbGFncz0weDMwMD4KTm92IDI2IDIyOjM4 OjEyIHNlcnZlciBrZXJuZWw6IHNpbzA6IGNvbmZpZ3VyZWQgaXJxIDQgbm90IGluIGJpdG1hcCBv ZiBwcm9iZWQgaXJxcyAwCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBzaW8wOiBwb3J0 IG1heSBub3QgYmUgZW5hYmxlZApOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogc2lvMDog Y29uZmlndXJlZCBpcnEgNCBub3QgaW4gYml0bWFwIG9mIHByb2JlZCBpcnFzIDAKTm92IDI2IDIy OjM4OjEyIHNlcnZlciBrZXJuZWw6IHNpbzA6IHBvcnQgbWF5IG5vdCBiZSBlbmFibGVkCk5vdiAy NiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBzaW8wIGF0IHBvcnQgMHgzZjgtMHgzZmYgaXJxIDQg ZmxhZ3MgMHgxMCBvbiBpc2EwCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBzaW8wOiB0 eXBlIDgyNTAgb3Igbm90IHJlc3BvbmRpbmcKTm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6 IHNpbzA6IFtGSUxURVJdCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBzaW8xOiBjb25m aWd1cmVkIGlycSAzIG5vdCBpbiBiaXRtYXAgb2YgcHJvYmVkIGlycXMgMApOb3YgMjYgMjI6Mzg6 MTIgc2VydmVyIGtlcm5lbDogc2lvMTogcG9ydCBtYXkgbm90IGJlIGVuYWJsZWQKTm92IDI2IDIy OjM4OjEyIHNlcnZlciBrZXJuZWw6IHZnYTA6IDxHZW5lcmljIElTQSBWR0E+IGF0IHBvcnQgMHgz YzAtMHgzZGYgaW9tZW0gMHhhMDAwMC0weGJmZmZmIG9uIGlzYTAKTm92IDI2IDIyOjM4OjEyIHNl cnZlciBrZXJuZWw6IFRpbWVjb3VudGVyICJUU0MiIGZyZXF1ZW5jeSAyMjAwMDk0NjU1IEh6IHF1 YWxpdHkgODAwCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBUaW1lY291bnRlcnMgdGlj ayBldmVyeSAxLjAwMCBtc2VjCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBocHRycjog bm8gY29udHJvbGxlciBkZXRlY3RlZC4KTm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IGFk NDogOTUzODY5TUIgPFNBTVNVTkcgSEQxMDNVSiAxQUEwMTExMz4gYXQgYXRhMi1tYXN0ZXIgVURN QTMzCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIga2VybmVsOiBUcnlpbmcgdG8gbW91bnQgcm9vdCBm cm9tIHVmczovZGV2L2FkNHMxYQpOb3YgMjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogV0FSTklO RzogL2RhdGEgd2FzIG5vdCBwcm9wZXJseSBkaXNtb3VudGVkCk5vdiAyNiAyMjozODoxMiBzZXJ2 ZXIga2VybmVsOiBXQVJOSU5HOiAvdG1wIHdhcyBub3QgcHJvcGVybHkgZGlzbW91bnRlZApOb3Yg MjYgMjI6Mzg6MTIgc2VydmVyIGtlcm5lbDogV0FSTklORzogL3VzciB3YXMgbm90IHByb3Blcmx5 IGRpc21vdW50ZWQKTm92IDI2IDIyOjM4OjEyIHNlcnZlciBrZXJuZWw6IFdBUk5JTkc6IC92YXIg d2FzIG5vdCBwcm9wZXJseSBkaXNtb3VudGVkCk5vdiAyNiAyMjozODoxMiBzZXJ2ZXIgc2F2ZWNv cmU6IG5vIGR1bXBzIGZvdW5kCk5vdiAyNiAyMzowMDo0NyBzZXJ2ZXIgc3U6IGFkbWluIHRvIHJv b3Qgb24gL2Rldi90dHlwMApOb3YgMjYgMjM6MDE6MTYgc2VydmVyIHN1OiBhZG1pbiB0byByb290 IG9uIC9kZXYvdHR5cDAK ------=_20081126233122_53017-- From owner-freebsd-questions@FreeBSD.ORG Wed Nov 26 23:18:54 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74D5B106564A for ; Wed, 26 Nov 2008 23:18:54 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.27]) by mx1.freebsd.org (Postfix) with ESMTP id E4D308FC18 for ; Wed, 26 Nov 2008 23:18:53 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so291600eyi.7 for ; Wed, 26 Nov 2008 15:18:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=p4Q04/BAyx8im8BAGx6qRq5uaBsRuVO8qfmmoR2zIA0=; b=fZaD5gtpkvRuD3kA4Bciu8eq9pXKLUa2YHsJTkZLJaDKNqPF5SU5Qa6hoHOh3u+yOI +FOavkWA2imGxjlAaY37VEjnZflw3vNpQPX1rGLZJa7dNjwFQaCkwaAEFAkSNk6KBuwt O9gag/xqsitgA69Wr35fejgrq2byUj9m0aGiE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=GbIeWomT5agSRsFXMRIcfmiLe6yPVYfBvjSIvlhcnUnKPu1peU5I2PyZQ00YRt14nK 3TohZR4l4J7hnT/1MUwxc0CPV5W62BKYQzS46RLXZzN8psGKqo0/KjROPDiOvYOqi8xE jUNMeq7tgBiRB7EZp69ee6r6uNNqu4Y1jbyOc= Received: by 10.210.127.10 with SMTP id z10mr6633943ebc.195.1227741532785; Wed, 26 Nov 2008 15:18:52 -0800 (PST) Received: from atlantis.dyndns.org (athedsl-310702.home.otenet.gr [85.72.69.76]) by mx.google.com with ESMTPS id 20sm2104550eyc.58.2008.11.26.15.18.49 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 26 Nov 2008 15:18:51 -0800 (PST) Message-ID: <492DD957.9050407@gmail.com> Date: Thu, 27 Nov 2008 01:18:47 +0200 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.17 (X11/20081011) MIME-Version: 1.0 To: Rick Janssen References: <5ddbef2ccbae93c798cde8fd35544dc7.squirrel@webmail-students.phil.uu.nl> In-Reply-To: <5ddbef2ccbae93c798cde8fd35544dc7.squirrel@webmail-students.phil.uu.nl> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Filesystem problems at boot and shutdown? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2008 23:18:54 -0000 Rick Janssen wrote: > I've been playing around with FreeBSD for some time now, still being > unable to solve some problems. Let me explain. > > I'm trying to run a webserver on the machine. Just basic, nothing too > fancy. Problem concerns the following: The website served is speedy as > expected when accessed from local LAN, but when accessed from WAN via > router, it's realy slow. So, to do some tests, this afternoon I requested > some pages from an computer outside my LAN. Server was very slow again, > even ssh slowed to a crawl. Suddenly, without reason I know off, > everything sped up. I issued a reboot to check if the problem might have > been 'solved'. This took a long time. > > Back home I checked the logs. It now appeared the long reboot-time was > caused by a Syncing disk anomaly, which happens when the system prepares > for shutting down. > > Nov 26 22:38:12 server kernel: Syncing disks, vnodes remaining...1 1 1 1 1 > 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 > 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 timed out > Nov 26 22:38:12 server kernel: Waiting (max 60 seconds) for system process > `bufdaemon' to stop...done > Nov 26 22:38:12 server kernel: Syncing disks, buffers remaining... 184 185 > 186 1 185 185 185 185 184 184 185 185 185 184 184 185 1 184 184 184 184 > 185 185 185 1 184 184 184 184 184 185 184 184 185 185 1 185 184 184 184 > 184 184 184 1 185 184 184 184 184 185 184 184 185 1 185 184 184 184 184 > 184 184 185 1 184 184 185 184 184 184 184 185 184 184 185 1 185 185 184 > 184 184 185 184 184 184 185 1 184 184 185 184 184 185 184 184 185 185 184 > 184 184 184 184 1 184 184 184 1 184 184 185 1 185 184 184 1 184 185 184 > 184 185 185 184 184 ... etc etc... > Nov 26 22:38:12 server kernel: Final sync complete > > So I figured, might as well run fschk -y in single user mode to fix > potential problems. Now I got some new errors: > > Nov 26 20:48:11 server kernel: ad4: WARNING - WRITE_DMA48 UDMA ICRC error > (retrying request) LBA=1364750271 > Nov 26 20:48:11 server kernel: ad4: FAILURE - WRITE_DMA48 > status=51 error=4 LBA=1364750271 > Nov 26 20:48:11 server kernel: > g_vfs_done():ad4s1g[WRITE(offset=682932174848, length=131072)]error = 5 > > So far, nothing serious has followed from these errors I know off. They > only happen sporadically, during reboots. > > Are these to problems even related, or am I just unlucky? Anyone has some > suggestions to fix them? > > Regards, > Rick > > Unless there is some incompatibility between FreeBSD -> Your disk controller -> Your disk, my best guess is you have a failing disk. I would also suggest you check cables, connections (I guess this is an ATA disk so you may wish the check whether the flat cable is the 80-conductor type and is plugged in correctly). Hopefully, if you are just playing with the system, you don't have any critical data in there, otherwise I would suggest you back up immediately. Do you have a spare disk to try and see what happens? Whether your other problem depends on this: It could be, since your webserver might be trying to read from a faulty area and keep retrying. Or indeed there is some incompatibility and the disk is constantly under-performing. You did not mention the speed of you WAN connection, but FWIW I am running a webserver behind a 1Mbps/256Kbps ADSL line and response is good enough. SSH is definitely good enough to use in long vi sessions, with lengthy documents. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 00:39:25 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E0791065670 for ; Thu, 27 Nov 2008 00:39:25 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 4B7978FC08 for ; Thu, 27 Nov 2008 00:39:25 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from [10.0.10.6] ([202.69.173.211]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.3959); Wed, 26 Nov 2008 16:38:14 -0800 Message-ID: <492DEC60.9070105@a1poweruser.com> Date: Thu, 27 Nov 2008 08:40:00 +0800 From: Fbsd1 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: dick hoogendijk References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> <20081126194804.26273396.dick@nagual.nl> In-Reply-To: <20081126194804.26273396.dick@nagual.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 27 Nov 2008 00:38:14.0786 (UTC) FILETIME=[6EFE8E20:01C95028] X-Sender: fbsd1@a1poweruser.com Cc: freebsd-questions@freebsd.org Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 00:39:25 -0000 dick hoogendijk wrote: >>> >> My unofficial take on it is that limewire is a peer-to-peer sharing >> application used by Windows, Mac OS X and Linux users to share files, >> usually music, often copyrighted, over the internet. It is one of the >> fastest, most effective ways to spread viruses, trojans, spyware, etc. > > Is this your FreeBSD POV or more windows oriented? > >> The program does not use fixed ports, so the services are hard to >> block. In essence, the program gets the user to bypass security >> measures from the inside. > > I have never needed a block on limewire. Firstly, all main conmputers > run solaris and therefore also limewire on solaris and secondly, all > windows machines are virtual. So -IF- one of them is infected I just > put a recent snapshot ;-) > Limewire is a windows only application. So how can you say it runs on solaris which is a flavor Unix? From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 00:50:47 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8BEBF1065679 for ; Thu, 27 Nov 2008 00:50:47 +0000 (UTC) (envelope-from numardbsd@gmail.com) Received: from ti-out-0910.google.com (ti-out-0910.google.com [209.85.142.188]) by mx1.freebsd.org (Postfix) with ESMTP id 11ACF8FC0A for ; Thu, 27 Nov 2008 00:50:46 +0000 (UTC) (envelope-from numardbsd@gmail.com) Received: by ti-out-0910.google.com with SMTP id a1so443299tib.3 for ; Wed, 26 Nov 2008 16:50:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:in-reply-to:references:x-mailer:face:mime-version :content-type:content-transfer-encoding; bh=wIyhErLcD6WE14mCgkNGTg8kEekvbXohqZQrOz1R4Cc=; b=tlAZ+84zBzkyL9AQNoGxMi8tXdVJLK136euw5VcCMvXTjIMPADlOB1Px1behnp9LvZ 8VGRxBnI6l/hTEDFq2FRLAhNnI7CzLaquW6HyyQcXb2dLJgY552kSzHZXg7eTAskJQ8R r6gj2IT10YmeDmS67ec4PbJ7NMjxC1QjAniGE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :face:mime-version:content-type:content-transfer-encoding; b=oJndeCjnP5GSwfQMYYD/GZla/PaeWg1T01Et0Rp9LyGPU2qaUeZR2U7HjadFNazbod d7z3fmCemIHQJs1Tj5P/7w8ZaGkX4gHs0C7wVEz4zNuDeMZZDcLGRw3TJv+aw+Fm4CCT tkmnSy9W6guC1av4HKRJDiM2jAUZQSfFqFf+8= Received: by 10.110.47.9 with SMTP id u9mr9296891tiu.15.1227747045979; Wed, 26 Nov 2008 16:50:45 -0800 (PST) Received: from ayiin (124-170-24-179.dyn.iinet.net.au [124.170.24.179]) by mx.google.com with ESMTPS id w12sm2666905tib.10.2008.11.26.16.50.42 (version=SSLv3 cipher=RC4-MD5); Wed, 26 Nov 2008 16:50:44 -0800 (PST) Date: Thu, 27 Nov 2008 11:50:36 +1100 From: Norberto Meijome To: freebsd-questions@freebsd.org Message-ID: <20081127115036.159e05af@ayiin> In-Reply-To: References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.1) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 00:50:47 -0000 On Wed, 26 Nov 2008 09:28:49 -0600 "Andrew Gould" wrote: > When the last culprit get's his computer back, he > will find it running an operating system that is not supported by Limewire. DOS 6.0 ? :P it's java... > The next time, he'll get it back without a network card. ouch, that's evil :D _________________________ {Beto|Norberto|Numard} Meijome "Unix gives you just enough rope to hang yourself -- and then a couple of more feet, just to be sure." Eric Allman I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 00:52:38 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B95E1065672 for ; Thu, 27 Nov 2008 00:52:38 +0000 (UTC) (envelope-from numardbsd@gmail.com) Received: from ti-out-0910.google.com (ti-out-0910.google.com [209.85.142.184]) by mx1.freebsd.org (Postfix) with ESMTP id 938698FC23 for ; Thu, 27 Nov 2008 00:52:37 +0000 (UTC) (envelope-from numardbsd@gmail.com) Received: by ti-out-0910.google.com with SMTP id a1so443585tib.3 for ; Wed, 26 Nov 2008 16:52:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:in-reply-to:references:x-mailer:face:mime-version :content-type:content-transfer-encoding; bh=fRatX7qflMJpUDu8fugILYDOC0WZYSbNtVSlct1ETHA=; b=mzFRyfbPUd0Eamk7mpcFPPvk3kC3cF86feRiJu4ZilTs1LQQjRZBQvTkSFEOazP+m2 LALwmgJo1DEzAqhkesims9IE6i7E9pei2B6drNxynTeWtXTFNICUI2ixSXVnxARJvZ3G xezZNddE8LWu6jFRhAZEfvNvjr5xxlkEV2QI0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :face:mime-version:content-type:content-transfer-encoding; b=SlmVm4zoKWtkz7h8MpnQczR7ZKg9Nkb5FLJa+Bp4RUcvHXoLIpywjo4DQPeVN7HFvE qPRCNdnjTGQP58SxXqUm2f9XoNQ09TP3jGzE3AGvEsZrkBCrU6uL+qUUr4pZfRtzLlrP 03TTLo6gMuzfn1ehPWuQotFuQTcz9zglxfe7w= Received: by 10.110.20.15 with SMTP id 15mr9294895tit.8.1227747156903; Wed, 26 Nov 2008 16:52:36 -0800 (PST) Received: from ayiin (124-170-24-179.dyn.iinet.net.au [124.170.24.179]) by mx.google.com with ESMTPS id 2sm2083164tif.0.2008.11.26.16.52.33 (version=SSLv3 cipher=RC4-MD5); Wed, 26 Nov 2008 16:52:35 -0800 (PST) Date: Thu, 27 Nov 2008 11:52:25 +1100 From: Norberto Meijome To: freebsd-questions@freebsd.org Message-ID: <20081127115225.64d3e32f@ayiin> In-Reply-To: <20081126185216.7ab011ac@gumby.homeunix.com> References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> <20081126185216.7ab011ac@gumby.homeunix.com> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.1) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 00:52:38 -0000 On Wed, 26 Nov 2008 18:52:16 +0000 RW wrote: [..] > > > It is one of the > > fastest, most effective ways to spread viruses, trojans, spyware, etc. > > > > The program does not use fixed ports, so the services are hard to > > block. In essence, the program gets the user to bypass security > > measures from the inside. > > There's nothing remarkable about that, no p2p filesharing application > uses fixed ports. Some have default ports, but they are widely ignored > because historically ISPs used those ports for throttling. +1 . skype does the same thing. and it's "p2p" too , although a lot less so than limewire. > > > When people ask my advice about computers, I always include: "Never > > use Limewire, or anything like it." > > They are as dangerous as you want to make them, I've been using > bittorrent and eD2k for years and have never seem a single virus, > trojan etc. I've seen a few on USENET but they've always been laughably > obvious. People that end-up with that kind of thing are normally > actively seeking executables. +1 - just the usual job of keeping an ear out for security holes ( including those in your users' behaviour :P ) _________________________ {Beto|Norberto|Numard} Meijome "Always do right. This will gratify some and astonish the rest." Mark Twain I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 01:02:31 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F5971065674 for ; Thu, 27 Nov 2008 01:02:31 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id B16638FC19 for ; Thu, 27 Nov 2008 01:02:30 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1L5VGz-0006zn-Ky for freebsd-questions@freebsd.org; Thu, 27 Nov 2008 01:02:25 +0000 Received: from pool-138-88-7-186.res.east.verizon.net ([138.88.7.186]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 27 Nov 2008 01:02:25 +0000 Received: from nightrecon by pool-138-88-7-186.res.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 27 Nov 2008 01:02:25 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Wed, 26 Nov 2008 19:59:56 -0500 Lines: 15 Message-ID: References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> <20081126194804.26273396.dick@nagual.nl> <492DEC60.9070105@a1poweruser.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-138-88-7-186.res.east.verizon.net Sender: news Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 01:02:31 -0000 Fbsd1 wrote: [snip] > > Limewire is a windows only application. > So how can you say it runs on solaris which is a flavor Unix? > Limewire is a Java program. It will run on any platform which has a working Java run time environment installed. It is definitely not "Windows only". -Jason From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 01:35:01 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A8B31065672 for ; Thu, 27 Nov 2008 01:35:01 +0000 (UTC) (envelope-from admhardsoft@yahoo.ca) Received: from web56502.mail.re3.yahoo.com (web56502.mail.re3.yahoo.com [66.196.97.31]) by mx1.freebsd.org (Postfix) with SMTP id BF4868FC08 for ; Thu, 27 Nov 2008 01:35:00 +0000 (UTC) (envelope-from admhardsoft@yahoo.ca) Received: (qmail 76719 invoked by uid 60001); 27 Nov 2008 01:08:20 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.ca; h=X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=BmuuhNlih8FxS7RuSrYAqCVtO/VoTK7YIqFVDgEV4hzTi0hyoqzyH4b7MaGaotxlFdlWW8oDeGDjYbutB8qm9opkCROCEshYQQaJJI13VgkuE8RM42aHX+UEY1gfyWZBQZf9eytIrQrEnQovNeFW/KlnrsmiGeZB1IVs2Y5pb8s=; X-YMail-OSG: 6Ms5.AAVM1koZK8w_uMCXiSRHAE9Nd7S1JxJqNBSSEJvsofwoo4LH5M7YVUuNFQ6RZG4cKrqaT1h_smg5EDqvRY7UKPyCqqQe9zBRy22TZ0JI3jW42FA_VkRxWv6UCK.XzqW19nITWNI2ewr_RO6Ftpxor128jbeNarjfLWffQrkrOdncbJdxFFcuUY- Received: from [99.242.72.53] by web56502.mail.re3.yahoo.com via HTTP; Wed, 26 Nov 2008 17:08:20 PST X-Mailer: YahooMailRC/1155.32 YahooMailWebService/0.7.260.1 Date: Wed, 26 Nov 2008 17:08:20 -0800 (PST) From: =?iso-8859-1?Q?Tom=E1s_Rodriguez?= To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Message-ID: <121308.75779.qm@web56502.mail.re3.yahoo.com> Subject: update unix freebsd 6.1 to freebsd 6.3 or wtherever other version X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 01:35:01 -0000 Hi friends.=0A=0AI have some years of experience in unix and linux red hat,= but I never ca'nt update from one version to other version, and now I wann= a update my unix 6.1 to 6.3 or 7.0 without start over again.=0Asomebody her= e could help me with thath, please.=0Athanks=0Asincerely=0ATOMAS=0A=0A=0A = __________________________________________________________________=0ABe= smarter than spam. See how smart SpamGuard is at giving junk email the boo= t with the All-new Yahoo! Mail. Click on Options in Mail and switch to New= Mail today or register for free at http://mail.yahoo.ca From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 01:53:40 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6EBB81065674 for ; Thu, 27 Nov 2008 01:53:40 +0000 (UTC) (envelope-from numardbsd@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.230]) by mx1.freebsd.org (Postfix) with ESMTP id 372318FC0A for ; Thu, 27 Nov 2008 01:53:39 +0000 (UTC) (envelope-from numardbsd@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so702630rvf.43 for ; Wed, 26 Nov 2008 17:53:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:in-reply-to:references:x-mailer:face:mime-version :content-type:content-transfer-encoding; bh=cscC13nN8gDuIE1hb/7S44rztaAw2D+Hhh0qEdPIYkY=; b=d0BGZZvC+eqe7hDh+6UtxU+Q/1ZPvyigi9bLAQc1vib5T9JPeJUXjaPLvnsltJzWov 4WquqKyb5LdWWzmp1DkIWX3FY+/5hoGF0mxUU3dVhRJToSGekPZ8lAjqHoEjSaVh+ao5 wFFUFNoTG1HmhlpPfdsTVrTOWJdUXeSshOXQA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :face:mime-version:content-type:content-transfer-encoding; b=XKGIUoOzUB/H7RYJGYq46FBOnbjaKEYZBI4GJja5Mxm/b/I4yYLtWbKWLrrS91/RGg o480Vlsl4JZkdlt0dKm7LzkzKE+h1IP6L9UQXztETXdhxTngn8yMqi8McOnd2n9lxyGP G2kYTweXqY7wMFRmAI5txZoe/FvnC2HbMyyVM= Received: by 10.142.200.20 with SMTP id x20mr1561321wff.103.1227750819457; Wed, 26 Nov 2008 17:53:39 -0800 (PST) Received: from ayiin (124-170-24-179.dyn.iinet.net.au [124.170.24.179]) by mx.google.com with ESMTPS id 31sm467411wff.3.2008.11.26.17.53.36 (version=SSLv3 cipher=RC4-MD5); Wed, 26 Nov 2008 17:53:38 -0800 (PST) Date: Thu, 27 Nov 2008 12:53:30 +1100 From: Norberto Meijome To: freebsd-questions@freebsd.org Message-ID: <20081127125330.74268ddc@ayiin> In-Reply-To: <492D51CB.9000201@a1poweruser.com> References: <492D51CB.9000201@a1poweruser.com> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.1) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 01:53:40 -0000 On Wed, 26 Nov 2008 21:40:27 +0800 Fbsd1 wrote: > I have inclusive firewall rule set which means only packets matching > the rules are passed through. The inbound hight port numbers are > blocked by design. > > How do other firewall users code rules to allow limewire to work? Hi, i think there are a few interesting posts in this thread (and several corrections about p2p 'evilness', which is good :P ). A thread that may be of interest was started on net@ earlier in the year - look for : From: Mike Makonnen To: freebsd-net@freebsd.org Subject: Application layer classifier for ipfw Date: Thu, 31 Jul 2008 13:02:29 +0300 - it refers to ipfw, not pf. - I think there was at least another thread following up on this with working code,etc. of course, DPI-style checks won't work (at all, or in a scalable fashion) as soon as users start encrypting their packets :P b _________________________ {Beto|Norberto|Numard} Meijome "I didn't attend the funeral, but I sent a nice letter saying I approved of it." Mark Twain I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 03:38:38 2008 Return-Path: Delivered-To: questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7282F106564A for ; Thu, 27 Nov 2008 03:38:38 +0000 (UTC) (envelope-from rtan_01@yahoo.com) Received: from web56507.mail.re3.yahoo.com (web56507.mail.re3.yahoo.com [66.196.97.36]) by mx1.freebsd.org (Postfix) with SMTP id 2D13D8FC19 for ; Thu, 27 Nov 2008 03:38:37 +0000 (UTC) (envelope-from rtan_01@yahoo.com) Received: (qmail 94522 invoked by uid 60001); 27 Nov 2008 03:11:56 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type:Message-ID; b=rjzhe4ud2aQM1JZtVsHE1e2Ffq1RWujcSbJ25nedsHsbsHBCI60OuMLHMUhR8ZxE8bd+EevFF/6SHB3j9wo5lHJBZFjIGnOQJhy2D8Y8IYQeR/600VE7IMK8IdUDlQcoFU514j8WC3kh8R9Te6jtITj65/5usIYluSYNkt6/p24=; X-YMail-OSG: zC1M.gsVM1ksTmLs5D7rqglaaFv.zO0XOJkMIUJDm0rlIccaTvEaLmAbfsruz18iSfvXDoMNt5dIWbA5j7au.pNhDxZbqritzIJQiPvptK6kyK1RqHY4tbR1DX5wLIXBULtyHCgr0d2CQCcg0XNBSAuk7khGQqTWoKM5PIirabqyhpphDviBWiw7CGo- Received: from [218.186.12.215] by web56507.mail.re3.yahoo.com via HTTP; Wed, 26 Nov 2008 19:11:56 PST X-Mailer: YahooMailWebService/0.7.260.1 Date: Wed, 26 Nov 2008 19:11:56 -0800 (PST) From: Rommel Tan To: "questions@FreeBSD.org" MIME-Version: 1.0 Message-ID: <574653.94484.qm@web56507.mail.re3.yahoo.com> X-Mailman-Approved-At: Thu, 27 Nov 2008 04:10:06 +0000 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Installing FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: rtan_01@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 03:38:38 -0000 questions@FreeBSD.org questions@FreeBSD.org Dear Sir/Madam: Pleasant day! First of all, sorry if this enquiry shouldn=92t be directed to you, please = help me direct to the right person. Few months ago I=92ve purchase a FreeBSD book which includes an installatio= n DVD for FreeBSD 6.1. I tried to install it in my Toshiba Satellite, Intel= Centrino with current Windows XP SP3 OS after doing some partition. But, I= =92m stock with boot error; sorry I=92m very new to this system; I tried to= search for an answer but no to avail. Here is the last part of the error: ..... Pci6: on pcib2 Pci6: at device 2.0 (no driver attached) Cbb0: eme 0x8007000-0xb8007fff irq 16 at device 4.0 on= pci6 Cardbus0: on cbb0 Pccard0: <16-bit PCCard> on cbb0 Fwohci0: <1394 Open Host Controller Interface> mem 0xb8008000-0xb80087ff,0x= b800000-0xb8003fff irq 18 at device 4.2 on pci6 Fwohci0: OHCI version 1.10 (ROM=3D0) Fwohci0: No. Of Isochronous channels is 4. Fwohci0: EUI64 00:02:3f:58:69:40:a5:e6 NMI ISA b0, EISA ff RAM parity error, likely hardware failure. Fatal trap 19: non-maskable interrupt trap while in kernel mode Instruction pointer=A0=A0=A0=A0=A0=A0=A0=A0=A0 =3D 0x20:0xc0528586 Stack pointer=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 = =3D 0x28:0xc10209c4 Frame pointer=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 =3D 0x2= 8:0xc10209d8 Code segment=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 =3D base 0x= 0, limit 0xfffff, type 0x1b =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 =3D DPL = 0, pres 1, def32 1, gran 1 Processor eflags=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 =3D interrupt en= able, IOPL =3D 0 Current process=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 =3D 0 (swapper) Trap number=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 = =3D 19 Panic: non-maskable interrupt trap Uptime: 1s Automatic reboot in 15 seconds =96 press a key on the console to abort=20 =A0 Hope you can enlighten me on this matter. Thank you and more power! Best Regards, RommelTan ---------------------------------------------------------------------------= ---- =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The information contained in this Internet message is confidential and intended only for the use of the individual or entity identified. If=20 the reader of this message is not the intended recipient, any=20 dissemination, distribution or copying of the information contained in=20 this Internet message is strictly prohibited. If you received this=20 message in error, please notify the sender (rtan_01@yahoo.com) immediately.= =0A=0A=0A From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 04:13:47 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5C7A1065676 for ; Thu, 27 Nov 2008 04:13:47 +0000 (UTC) (envelope-from espartano.mail@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.187]) by mx1.freebsd.org (Postfix) with ESMTP id 53B518FC0A for ; Thu, 27 Nov 2008 04:13:47 +0000 (UTC) (envelope-from espartano.mail@gmail.com) Received: by mu-out-0910.google.com with SMTP id i2so667879mue.3 for ; Wed, 26 Nov 2008 20:13:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=WTS8SLQYvsfK4lHEdYhbft1Guap44MMAjrJTl9kicEU=; b=fiOdwNCVpGFO15fJJGxejGs5+qS64ArWNyrhMHMtyKVZ4fbbpVJAFK/oKE/HRpuIhq bxyU800p5ZKUNHHoEr+Oq3rFXyC7XIN447WvHchPWs1FYMFQskG2xGZ2mN6mCfizEOkn 9Wl4nHX5t6bPsFz90rwKUT70wP4+U3ltnNiZs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=VTFTIAumWCs/LawXK6baVBZvHUROmubHQyOYQSXGE+8qOa6bStajgjwoJgdGixRSP/ k8iMs82FaSny9vab5fBuq+JViqk69V7MVdyXvTp1lsSlsMxRIBa6xjJ0Z2NoMeTL2s4Z mdN8zcK16ocpa6s+rolGW+UfFAdIHMrTKYteA= Received: by 10.103.198.15 with SMTP id a15mr2438746muq.60.1227757882087; Wed, 26 Nov 2008 19:51:22 -0800 (PST) Received: by 10.103.221.14 with HTTP; Wed, 26 Nov 2008 19:51:22 -0800 (PST) Message-ID: Date: Wed, 26 Nov 2008 21:51:22 -0600 From: Espartano To: "=?ISO-8859-1?Q?Tom=E1s_Rodriguez?=" In-Reply-To: <121308.75779.qm@web56502.mail.re3.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <121308.75779.qm@web56502.mail.re3.yahoo.com> Cc: freebsd-questions@freebsd.org Subject: Re: update unix freebsd 6.1 to freebsd 6.3 or wtherever other version X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 04:13:47 -0000 On Wed, Nov 26, 2008 at 7:08 PM, Tom=E1s Rodriguez w= rote: > Hi friends. > > I have some years of experience in unix and linux red hat, but I never ca= 'nt update from one version to other version, and now I wanna update my uni= x 6.1 to 6.3 or 7.0 without start over again. > somebody here could help me with thath, please. > thanks > sincerely > TOMAS > sorry for my bad english, you need to read this article: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/updating-freebsdu= pdate.html --=20 "Linux is for people who hate Windows, BSD is for people who love UNIX". "Social Engineer -> Because there is no patch for human stupidity" "The Unix Guru's View of Sex unzip ; strip ; touch ; grep ; finger ; mount ; fsck ; more ; yes ; umount ; sleep." "Documentation is like sex: when it is good, it is very, very good; and when it is bad, it is better than nothing." From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 04:44:11 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8092106564A for ; Thu, 27 Nov 2008 04:44:11 +0000 (UTC) (envelope-from ijeff@sandbox.ca) Received: from sandbox.ca (zaphod.sandbox.ca [199.246.50.125]) by mx1.freebsd.org (Postfix) with ESMTP id 57E0C8FC14 for ; Thu, 27 Nov 2008 04:44:11 +0000 (UTC) (envelope-from ijeff@sandbox.ca) Received: from sandbox.ca (localhost.sandbox.ca [127.0.0.1]) by sandbox.ca (8.12.6/8.12.6) with ESMTP id mAR4i7SK070547 for ; Wed, 26 Nov 2008 23:44:07 -0500 (EST) (envelope-from ijeff@sandbox.ca) Received: from localhost (ijeff@localhost) by sandbox.ca (8.12.6/8.12.6/Submit) with ESMTP id mAR4i7K0070544 for ; Wed, 26 Nov 2008 23:44:07 -0500 (EST) Date: Wed, 26 Nov 2008 23:44:07 -0500 (EST) From: Ian Jefferson To: FreeBSD Mailing List In-Reply-To: Message-ID: <20081126233453.H70464@sandbox.ca> References: <8675CD0C-6DDC-4472-A3CA-B3EA3F4A43C7@sandbox.ca> <20081124235456.Y55229@sandbox.ca> <20081125051925.GB31920@ayn.mi.celestial.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Status: No, score=-98.1 required=5.0 tests=BAYES_50, DNS_FROM_SECURITYSAGE,FORGED_RCVD_HELO,FUZZY_VLIUM,SPF_HELO_PASS, SPF_PASS,USER_IN_WHITELIST autolearn=no version=3.1.0-igj_main_2005_08_07 X-Spam-Checker-Version: SpamAssassin 3.1.0-igj_main_2005_08_07 (2005-09-13) on zaphod.sandbox.ca Subject: Re: FreeBSD on a Mac Mini Intel? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 04:44:11 -0000 On Tue, 25 Nov 2008, Tom Marchand wrote: > >>> Ian, > >>> > >>> You could always test it using VMWare Fusion........and then let > >>> us know > >> > >> Er, Gee thanks. I'll just have a word with the VMware guys about > >> fully > >> abastracting the mini in software... back in a jiffy.... ;-) > > > > Actually VMWare has a Mac Version which is what the poster was > probably referring to. > _______________________________________________ FreeBSD 6.x installs and runs well as far as I can tell on VM-Ware Fusion. This I Have done but I don't recall any specifics. I'm pretty sure I tried 6.1 and 6.3 but I forget which processor (amd64 vs i386). However personal preference: I'd rather run the box native FreeBSD and not have to bother with Mac OS X. I was actually musing that this (VM) might be a nice way to pre-install a complete custom system. Install, configure, add packages, tweak your fav kernel stuff, etc then dump/restore to a real disk and pop in to a physical system. I used to so something like this with NeXT systems. Twerked good. It all sounds promising enough to buy a new toy. I'll let you all know "real soon now" if/how I get it running. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 05:25:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F83C1065676 for ; Thu, 27 Nov 2008 05:25:23 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: from fk-out-0910.google.com (fk-out-0910.google.com [209.85.128.191]) by mx1.freebsd.org (Postfix) with ESMTP id C9ACF8FC18 for ; Thu, 27 Nov 2008 05:25:22 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: by fk-out-0910.google.com with SMTP id k31so784940fkk.11 for ; Wed, 26 Nov 2008 21:25:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=ngxMR4G3AA8thtZEnWFUVUEAAIZ+Z5IWGXq71lthMs4=; b=BAP5Qz8O4kUjX3FYNHWd1Nt2TeD3wdr5DhvAL4iBQQTTh+n/16nq91aLet4+EYNG6x kJjby55+/sDMWSzbrLsyBJ4KsUoBMdkjuNFaxjQA1wZ7t1FQ8yCm6ImI7q7PXik902PU 2+eyIvhF8IOL8iw+hJDAhANq6edk1KgY0+ElA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=WzBNACqFk24ywhLq6VfRhfX7Meo70a7WNjmoZMZ0KlXOtiUFfbU7ztWFO882dAlblo 7bZDzIwRx8NMJEpgWub0QYUASY1PwiuWSI0xIKEBUnMKZ96S67d0npCAUuRBc0mkTriF KcYWmQWOWO8LhtbsJ54Se23w+ZXKiohXUMyyo= Received: by 10.103.238.4 with SMTP id p4mr2460409mur.68.1227763521436; Wed, 26 Nov 2008 21:25:21 -0800 (PST) Received: by 10.103.228.17 with HTTP; Wed, 26 Nov 2008 21:25:21 -0800 (PST) Message-ID: Date: Wed, 26 Nov 2008 23:25:21 -0600 From: "Andrew Gould" To: Fbsd1 In-Reply-To: <492DEC60.9070105@a1poweruser.com> MIME-Version: 1.0 References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> <20081126194804.26273396.dick@nagual.nl> <492DEC60.9070105@a1poweruser.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 05:25:23 -0000 On Wed, Nov 26, 2008 at 6:40 PM, Fbsd1 wrote: > dick hoogendijk wrote: > > >>>> My unofficial take on it is that limewire is a peer-to-peer sharing >>> application used by Windows, Mac OS X and Linux users to share files, >>> usually music, often copyrighted, over the internet. It is one of the >>> fastest, most effective ways to spread viruses, trojans, spyware, etc. >>> >> >> Is this your FreeBSD POV or more windows oriented? >> >> The program does not use fixed ports, so the services are hard to >>> block. In essence, the program gets the user to bypass security >>> measures from the inside. >>> >> >> I have never needed a block on limewire. Firstly, all main conmputers >> run solaris and therefore also limewire on solaris and secondly, all >> windows machines are virtual. So -IF- one of them is infected I just >> put a recent snapshot ;-) >> >> > Limewire is a windows only application. > So how can you say it runs on solaris which is a flavor Unix? The Limewire website says it has versions for Windows, Mac OS X, Linux and others, including OS/2 and Solaris. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 05:40:24 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B53C8106564A for ; Thu, 27 Nov 2008 05:40:23 +0000 (UTC) (envelope-from michael.copeland@gmail.com) Received: from mail-qy0-f18.google.com (mail-qy0-f18.google.com [209.85.221.18]) by mx1.freebsd.org (Postfix) with ESMTP id 7E40E8FC1B for ; Thu, 27 Nov 2008 05:40:23 +0000 (UTC) (envelope-from michael.copeland@gmail.com) Received: by qyk11 with SMTP id 11so1113824qyk.19 for ; Wed, 26 Nov 2008 21:40:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=EMifUqBl0RBzKCdX4NmpvVbbMWJItAofq4PmA2b/TPc=; b=fb4H+l2E8TzQiW+N03akumakiT1X7PxdQhm7xa37o8zJDapxoZsN0DDMB+P09bbqoL qJEa9GppZjpjlMkZF2Qh+MLAOjaWCxzoL4eft31ZHc9yhlLtc61OXAdBUwYBu1bTaTBs iUfojv7YOiFzQimNcuVbdeiPZVtHmuUo/d+zs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=enQnFAelNXcqj42wdpMyma6rlC/cusZqGlw+2PQc8ndXByPasCgIG1cRcX07f2GqW4 hEnP4ovpegW4S+l/eHntPJ5whR0+tn93DNmUsRWLPclpnG8bsiPAHU6sfHyKmvmbYAHY MZFdJNFGuOZ30lSuVU+us0x7SRKXRKJ0DfcOE= Received: by 10.215.101.10 with SMTP id d10mr6388537qam.225.1227764422550; Wed, 26 Nov 2008 21:40:22 -0800 (PST) Received: from ?192.168.1.148? (adsl-074-245-053-043.sip.jax.bellsouth.net [74.245.53.43]) by mx.google.com with ESMTPS id 7sm1522532ywo.7.2008.11.26.21.40.21 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 26 Nov 2008 21:40:21 -0800 (PST) Message-ID: <492E32C5.9070204@gmail.com> Date: Thu, 27 Nov 2008 00:40:21 -0500 From: michael User-Agent: Thunderbird 2.0.0.17 (X11/20080925) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: make release of current X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 05:40:24 -0000 will make release work for current? i've built a nice working system that i would like to be able to install on several identical machines. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 06:30:05 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08EA1106564A for ; Thu, 27 Nov 2008 06:30:05 +0000 (UTC) (envelope-from apseudoutopia@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.232]) by mx1.freebsd.org (Postfix) with ESMTP id D203B8FC1C for ; Thu, 27 Nov 2008 06:30:04 +0000 (UTC) (envelope-from apseudoutopia@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so783282rvf.43 for ; Wed, 26 Nov 2008 22:30:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=IcMQXWAPI52m1BTeBmP0cLOm50FZR9zjCHvYFbDGgm0=; b=k7qgcxhh1jeKEh0KywRvqUGVsxMS/+AuYF95zDH8oTA23SDo90JIiIiOXBBPzhlgQH +kRn2q2uQPT4tbfRc1KsC23DwuGEmZYUvQTcgQ9rnHlACgcMbow/0WTOR1oBiZmGImH9 Bb5RViu7H2ZJdkupGox7BsAcaOTrdWK/ObWAw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=N8PTzyFV3Mscew8CiymZGCy0awyYatqV+vxYXEMNNW9JPM8Mpp0Xayh5ZANYxIFSW/ Li7NGBZKvuXVPiywkVBjqbltFLS3XlTe1H0WJrfZ4F6VKakm9U7BkzM6JRKoVCIF+eHg ADYtKTpIbj8fWrPZeljMIcfmXeO+lRPcpcui4= Received: by 10.142.158.17 with SMTP id g17mr2874887wfe.120.1227767404381; Wed, 26 Nov 2008 22:30:04 -0800 (PST) Received: by 10.143.115.9 with HTTP; Wed, 26 Nov 2008 22:30:04 -0800 (PST) Message-ID: <27ade5280811262230x319bff2ajc65b8df771c9143f@mail.gmail.com> Date: Thu, 27 Nov 2008 01:30:04 -0500 From: APseudoUtopia To: "Andrew Gould" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> <20081126194804.26273396.dick@nagual.nl> <492DEC60.9070105@a1poweruser.com> Cc: freebsd-questions@freebsd.org, Fbsd1 Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 06:30:05 -0000 On Thu, Nov 27, 2008 at 12:25 AM, Andrew Gould wrote: > On Wed, Nov 26, 2008 at 6:40 PM, Fbsd1 wrote: > >> dick hoogendijk wrote: >> >> >>>>> My unofficial take on it is that limewire is a peer-to-peer sharing >>>> application used by Windows, Mac OS X and Linux users to share files, >>>> usually music, often copyrighted, over the internet. It is one of the >>>> fastest, most effective ways to spread viruses, trojans, spyware, etc. >>>> >>> >>> Is this your FreeBSD POV or more windows oriented? >>> >>> The program does not use fixed ports, so the services are hard to >>>> block. In essence, the program gets the user to bypass security >>>> measures from the inside. >>>> >>> >>> I have never needed a block on limewire. Firstly, all main conmputers >>> run solaris and therefore also limewire on solaris and secondly, all >>> windows machines are virtual. So -IF- one of them is infected I just >>> put a recent snapshot ;-) >>> >>> >> Limewire is a windows only application. >> So how can you say it runs on solaris which is a flavor Unix? > > > The Limewire website says it has versions for Windows, Mac OS X, Linux and > others, including OS/2 and Solaris. Yeah. Limewire is written in Java (iirc), which makes it extremely easy to port it to any system that can run java. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 06:36:16 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E77ED1065673 for ; Thu, 27 Nov 2008 06:36:16 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from bsdevel.alaskaparadise.com (bsdevel.alaskaparadise.com [208.86.224.193]) by mx1.freebsd.org (Postfix) with ESMTP id CAF8F8FC08 for ; Thu, 27 Nov 2008 06:36:16 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from stargate.alaskaparadise.com (172-67-237-24.gci.net [24.237.67.172]) by bsdevel.alaskaparadise.com (Postfix) with ESMTP id 51A2B28E1281; Thu, 27 Nov 2008 06:20:59 +0000 (UTC) From: Beech Rintoul To: freebsd-questions@freebsd.org Date: Wed, 26 Nov 2008 21:20:58 -0900 User-Agent: KMail/1.10.1 (FreeBSD/8.0-CURRENT; KDE/4.1.1; i386; ; ) References: <492E32C5.9070204@gmail.com> In-Reply-To: <492E32C5.9070204@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811262120.58753.> Cc: michael Subject: Re: make release of current X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 06:36:17 -0000 On Wednesday 26 November 2008 20:40:21 michael wrote: > will make release work for current? i've built a nice working system > that i would like to be able to install on several identical machines. Yes, but read all the docs completely there are a number of options you need, like telling it to use your source tree instead of CVS and if you want to build packages etc. Beech From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 07:32:39 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10A5B1065673 for ; Thu, 27 Nov 2008 07:32:39 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 7DBE28FC16 for ; Thu, 27 Nov 2008 07:32:38 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.3/8.14.3) with ESMTP id mAR7WTLJ056489; Thu, 27 Nov 2008 07:32:30 GMT (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.7.2 smtp.infracaninophile.co.uk mAR7WTLJ056489 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=infracaninophile.co.uk; s=200708; t=1227771150; bh=U3sREnxh9CAvsq hJ8CKjiWFwH95Kh8ug33lxm2MB8L4=; h=Message-ID:Date:From:MIME-Version: To:CC:Subject:References:In-Reply-To:Content-Type:Cc:Content-Type: Date:From:In-Reply-To:Message-ID:Mime-Version:References:To; z=Mes sage-ID:=20<492E4D07.8030908@infracaninophile.co.uk>|Date:=20Thu,=2 027=20Nov=202008=2007:32:23=20+0000|From:=20Matthew=20Seaman=20|Organization:=20Infracaninophile|User -Agent:=20Thunderbird=202.0.0.18=20(X11/20081125)|MIME-Version:=201 .0|To:=20"Paul=20B.=20Mahol"=20|CC:=20freebsd-que stions@freebsd.org|Subject:=20Re:=20large=20binary,=20why=20not=20s trip=20?|References:=20=09=20<20081116125622.E24752@wojtek.tensor.gdynia.p l>=09=20<20081117172100.GB43367@hub.freebsd.org>=09=20=09=20<200811172106 49.GE63818@hub.freebsd.org>=09=20<49226AFD.6060505@infracaninophile .co.uk>=09=20<492D7E03.3070500@infracaninophile.co.uk>=20<3a142e750 811260901j134e9ff9pa334fc50c52fadd2@mail.gmail.com>|In-Reply-To:=20 <3a142e750811260901j134e9ff9pa334fc50c52fadd2@mail.gmail.com>|X-Eni gmail-Version:=200.95.6|Content-Type:=20multipart/signed=3B=20mical g=3Dpgp-sha256=3B=0D=0A=20protocol=3D"application/pgp-signature"=3B =0D=0A=20boundary=3D"------------enig67C1205D101BFC54F10AA781"; b=D G+MC8MXvlWDujbiCLH3SSANLGKaLSiRVeNfPI1eFHUTX2+Go65yDjrwTmu+5wGJjHvJ F7/AXQv4Ut7EZD5NDMAlDumec97JaV8KagQeW8qyuqdBOZdefEfW81iZi2B+0q6oQ4S j/CoGooBidgV1bTjyNx/75HJNC8IpEEIcumU= Message-ID: <492E4D07.8030908@infracaninophile.co.uk> Date: Thu, 27 Nov 2008 07:32:23 +0000 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.18 (X11/20081125) MIME-Version: 1.0 To: "Paul B. Mahol" References: <20081116125622.E24752@wojtek.tensor.gdynia.pl> <20081117172100.GB43367@hub.freebsd.org> <20081117210649.GE63818@hub.freebsd.org> <49226AFD.6060505@infracaninophile.co.uk> <492D7E03.3070500@infracaninophile.co.uk> <3a142e750811260901j134e9ff9pa334fc50c52fadd2@mail.gmail.com> In-Reply-To: <3a142e750811260901j134e9ff9pa334fc50c52fadd2@mail.gmail.com> X-Enigmail-Version: 0.95.6 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig67C1205D101BFC54F10AA781" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (smtp.infracaninophile.co.uk [IPv6:::1]); Thu, 27 Nov 2008 07:32:30 +0000 (GMT) X-Virus-Scanned: ClamAV 0.94.1/8685/Thu Nov 27 01:55:04 2008 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.9 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-questions@freebsd.org Subject: Re: large binary, why not strip ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 07:32:39 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig67C1205D101BFC54F10AA781 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Paul B. Mahol wrote: > On 11/26/08, Matthew Seaman wrote: >> Matthew Seaman wrote: >>> Kris Kennaway wrote: >>> >>>> Bonus points if you come up with a patch to do this: in most cases i= t >>>> will be a simple matter of changing the port's do-install: target to= >>>> use INSTALL_* macros instead of cp/bsdtar etc. This would be a good= >>>> project to get some familiarity with the ports tree. >>> Would it be worthwhile to add a test and warning that all installed >>> binaries >>> have not been stripped to the 'security-check' target in bsd.port.mk?= >>> That's >>> not really what that target was intended for (feeping creaturism aler= t!) >>> but >>> it's the obvious place to put such a test. >>> >>> Probably cleaner to create a whole new target, but that's going to >>> duplicate >>> some code. >>> >>> Hmmmm... I shall work up some patches, probably over the weekend, so >>> there's >>> something substantive to talk about. >> Done: ports/129210 >> >> For the record, I also discovered that, contrary to what I said earlie= r, >> there is apparently one class of binary object that will not work cor= rectly >> if stripped: kernel loadable modules. >=20 > Kernel loadable modules are already stripped (--strip-debug). >=20 KLDs aren't stripped in a way that file(1) recognises: happy-idiot-talk:/boot/kernel:% file if_em.ko=20 if_em.ko: ELF 32-bit LSB shared object, Intel 80386, version 1 (FreeBSD),= dynamically linked, not stripped Unfortunately file(1) seems to be about the only tool available to test a priori whether a binary object is stripped or not. It's possible that objdump(1) or readelf(1) could do a similar thing, but I can't work it out from those man pages. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enig67C1205D101BFC54F10AA781 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkkuTQ0ACgkQ8Mjk52CukIxrEwCfaQjjWeZQ/qnGCp81H34gveXt AeIAoJGs+X6HOsYSxypwxTXc8ptXa+ga =NK0p -----END PGP SIGNATURE----- --------------enig67C1205D101BFC54F10AA781-- From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 07:42:50 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2609106564A for ; Thu, 27 Nov 2008 07:42:50 +0000 (UTC) (envelope-from gandalf@shopzeus.com) Received: from viefep18-int.chello.at (viefep18-int.chello.at [213.46.255.22]) by mx1.freebsd.org (Postfix) with ESMTP id 07A6D8FC16 for ; Thu, 27 Nov 2008 07:42:49 +0000 (UTC) (envelope-from gandalf@shopzeus.com) Received: from edge02.upc.biz ([192.168.13.237]) by viefep18-int.chello.at (InterMail vM.7.08.02.00 201-2186-121-20061213) with ESMTP id <20081127074248.KKWC13786.viefep18-int.chello.at@edge02.upc.biz> for ; Thu, 27 Nov 2008 08:42:48 +0100 Received: from [192.168.0.100] ([89.134.230.181]) by edge02.upc.biz with edge id k7im1a02R3vUdip027inbB; Thu, 27 Nov 2008 08:42:48 +0100 X-SourceIP: 89.134.230.181 Message-ID: <492E4F79.7090309@shopzeus.com> Date: Thu, 27 Nov 2008 08:42:49 +0100 From: Laszlo Nagy User-Agent: Thunderbird 2.0.0.17 (X11/20080925) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Subject: CUPS: cannot see printer from various program X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 07:42:50 -0000 The printer is Epson Stylus Photo R265. I'm using gutenprint 5 and CUPS. The test page prints well from CUPS. I can also print images and web pages from firefox, because the "CUPS/R265" printer can be selected in the print dialog of firefox. However, when I open an image from eog (eye of gnome), the only printer destination I can choose is "LPR". Which is bad, because this is a printer server with diskless clients, and the users must be able to select print options from the GUI. The system is FreeBSD 7.0. My girlfriend had the same problem with Ubuntu before, but not with kiwi, so it might not be related to FreeBSD. Thanks, Laci From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 07:54:36 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B96F01065670 for ; Thu, 27 Nov 2008 07:54:36 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.freebsd.org (Postfix) with ESMTP id 4AA6E8FC23 for ; Thu, 27 Nov 2008 07:54:36 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so444371nfh.33 for ; Wed, 26 Nov 2008 23:54:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=UJrJg63wgdsxn1k7eIIaGQVEdY1jkn0YhM5YB+lurys=; b=mPSJ+NGnl2zfndSN7CWs383Qo+iWY6+oaBqDIssIKztNUwfXdOtPh/dPqAM0HoqCcP chhfVoc9MrLtCfltYMS7L1k1Kbs+qd0+ya2N70Ey4BdFC19tyuXSpnjvZuesfsVk97GZ yfF4bqurIJWtSgrSr9BFRnOec95GxZQ7N+h6Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=tWBbnnLRkmYnf8oIkPelZrAM1wo4UeslbcOdNr9V2l0o7KqDy4ai9M5zbFk6sIL/bc i5g0giubT1mc8szRHmZOOgWp5xoMb3MYMAhKfXj+8MYlXB47rwpH9V0IBO5OYqHbt2vI NBAInP5D4EAxkNf1vkC/6OAYuLw1sy3zco9rE= Received: by 10.210.66.13 with SMTP id o13mr3877198eba.176.1227772475145; Wed, 26 Nov 2008 23:54:35 -0800 (PST) Received: by 10.210.117.7 with HTTP; Wed, 26 Nov 2008 23:54:35 -0800 (PST) Message-ID: <139b44430811262354y57e2973aja5f6e5c74ac59c34@mail.gmail.com> Date: Thu, 27 Nov 2008 09:54:35 +0200 From: "Valentin Bud" To: "Beech Rintoul" In-Reply-To: <5890464391241330485@unknownmsgid> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <492E32C5.9070204@gmail.com> <5890464391241330485@unknownmsgid> Cc: michael , freebsd-questions@freebsd.org Subject: Re: make release of current X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 07:54:36 -0000 Hello Beech, Could you be more specific on what documentation to read. thank you and a great day, v On Thu, Nov 27, 2008 at 8:20 AM, Beech Rintoul wrote: > On Wednesday 26 November 2008 20:40:21 michael wrote: >> will make release work for current? i've built a nice working system >> that i would like to be able to install on several identical machines. > > Yes, but read all the docs completely there are a number of options you need, > like telling it to use your source tree instead of CVS and if you want to > build packages etc. > > Beech > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 07:56:56 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BA161065674 for ; Thu, 27 Nov 2008 07:56:56 +0000 (UTC) (envelope-from fullblaststorm@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.239]) by mx1.freebsd.org (Postfix) with ESMTP id D42D08FC1A for ; Thu, 27 Nov 2008 07:56:55 +0000 (UTC) (envelope-from fullblaststorm@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so807204rvf.43 for ; Wed, 26 Nov 2008 23:56:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=EAc6pGOumG3PnEYxILqWn6WkOAjG6kVvYjcmbT2r4kw=; b=reqLf2yNJVYYHXhsIRqTZEJpHQPISVtzuazIbCESBvsz2gJgGffWKZka1jfjG+Vnhs ZH4Ym9vw+mCyYga1SG3AG287tQw/cfhisfB5HL/HBVmAudBllkc1BEFaE8ejw70hvXWd +TXlMrq3Gh/3usfv2Y3medVMM7iLLJBIiDDDg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=OfWDhbUDxt/RoXuvQH+4xnWZzBQG72pErloV8Adp7Z5QgPedLDtJPgai/XXwK4kYeQ A0CP4CnA0unO5UB42wr7Ijg8Ez5gWG1gowdddnjegrGgWjJoj8Jp3i4CQSBSI8Xp2isY 2wRzx/Fia5UR2RY8IXwrKNFFXYO57TgGigQ4w= Received: by 10.142.135.16 with SMTP id i16mr2876531wfd.272.1227771280966; Wed, 26 Nov 2008 23:34:40 -0800 (PST) Received: by 10.143.58.3 with HTTP; Wed, 26 Nov 2008 23:34:40 -0800 (PST) Message-ID: <6c51dbb10811262334q4bfa044eia7b2167568396861@mail.gmail.com> Date: Thu, 27 Nov 2008 12:34:40 +0500 From: FuLLBLaSTstorm To: freebsd-questions@freebsd.org In-Reply-To: <6c51dbb10811262310u17540891nb2f9889c3fbe3180@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6c51dbb10811262310u17540891nb2f9889c3fbe3180@mail.gmail.com> Subject: gd-2.0.35 won't install on FreeBSD 6.0-RELEASE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 07:56:56 -0000 Hello, GD-2.0.35 fails to install on my production server saying that GD_FONTS not found. How can I solve this problem? Regards, Victor. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 07:59:37 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A1521065672 for ; Thu, 27 Nov 2008 07:59:37 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from bsdevel.alaskaparadise.com (bsdevel.alaskaparadise.com [208.86.224.193]) by mx1.freebsd.org (Postfix) with ESMTP id 1497C8FC18 for ; Thu, 27 Nov 2008 07:59:37 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from stargate.alaskaparadise.com (172-67-237-24.gci.net [24.237.67.172]) by bsdevel.alaskaparadise.com (Postfix) with ESMTP id 8633228E1281; Thu, 27 Nov 2008 07:59:36 +0000 (UTC) From: Beech Rintoul Organization: FreeBSD To: freebsd-questions@freebsd.org Date: Wed, 26 Nov 2008 22:59:35 -0900 User-Agent: KMail/1.10.1 (FreeBSD/8.0-CURRENT; KDE/4.1.1; i386; ; ) References: <492E32C5.9070204@gmail.com> <5890464391241330485@unknownmsgid> <139b44430811262354y57e2973aja5f6e5c74ac59c34@mail.gmail.com> In-Reply-To: <139b44430811262354y57e2973aja5f6e5c74ac59c34@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811262259.35968.beech@freebsd.org> Cc: michael , Valentin Bud Subject: Re: make release of current X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 07:59:37 -0000 On Wednesday 26 November 2008 22:54:35 Valentin Bud wrote: > Hello Beech, > > Could you be more specific on what documentation to read. > > thank you and a great day, > v > > On Thu, Nov 27, 2008 at 8:20 AM, Beech Rintoul wrote: > > On Wednesday 26 November 2008 20:40:21 michael wrote: > >> will make release work for current? i've built a nice working system > >> that i would like to be able to install on several identical machines. > > > > Yes, but read all the docs completely there are a number of options you > > need, like telling it to use your source tree instead of CVS and if you > > want to build packages etc. > > > > Beech A good place to start is man (7) release. Beech -- --------------------------------------------------------------------------------------- Beech Rintoul - FreeBSD Developer - beech@FreeBSD.org /"\ ASCII Ribbon Campaign | FreeBSD Since 4.x \ / - NO HTML/RTF in e-mail | http://people.freebsd.org/~beech X - NO Word docs in e-mail | Skype: akbeech / \ - http://www.FreeBSD.org/releases/7.0R/announce.html --------------------------------------------------------------------------------------- From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 08:55:33 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A8C431065672 for ; Thu, 27 Nov 2008 08:55:33 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 96F9F8FC0A for ; Thu, 27 Nov 2008 08:55:33 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from [10.0.10.6] ([202.69.174.141]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 27 Nov 2008 00:54:22 -0800 Message-ID: <492E60A8.6080105@a1poweruser.com> Date: Thu, 27 Nov 2008 16:56:08 +0800 From: Fbsd1 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 27 Nov 2008 08:54:22.0491 (UTC) FILETIME=[BDEDDEB0:01C9506D] X-Sender: fbsd1@a1poweruser.com Subject: pf or ipf rules to allow p2p Limewire through X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 08:55:33 -0000 What pf or ipf firewall keep-state rules needed to allow p2p application such as limewire through? Using same firewall rules as in handbook example. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 09:02:24 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8028C106564A for ; Thu, 27 Nov 2008 09:02:24 +0000 (UTC) (envelope-from bruce@cran.org.uk) Received: from muon.cran.org.uk (muon.cran.org.uk [66.246.138.153]) by mx1.freebsd.org (Postfix) with ESMTP id 3C9398FC1F for ; Thu, 27 Nov 2008 09:02:24 +0000 (UTC) (envelope-from bruce@cran.org.uk) Received: from muon.cran.org.uk (localhost [127.0.0.1]) by muon.cran.org.uk (Postfix) with ESMTP id 02AAC1900E; Thu, 27 Nov 2008 04:02:23 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on muon X-Spam-Level: X-Spam-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,RDNS_NONE autolearn=no version=3.2.5 Received: from tau.draftnet (unknown [66.45.161.67]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by muon.cran.org.uk (Postfix) with ESMTPSA; Thu, 27 Nov 2008 04:02:22 -0500 (EST) Date: Thu, 27 Nov 2008 00:59:47 -0800 From: Bruce Cran To: Matthew Seaman Message-ID: <20081127005947.1f74b224@tau.draftnet> In-Reply-To: <492E4D07.8030908@infracaninophile.co.uk> References: <20081116125622.E24752@wojtek.tensor.gdynia.pl> <20081117172100.GB43367@hub.freebsd.org> <20081117210649.GE63818@hub.freebsd.org> <49226AFD.6060505@infracaninophile.co.uk> <492D7E03.3070500@infracaninophile.co.uk> <3a142e750811260901j134e9ff9pa334fc50c52fadd2@mail.gmail.com> <492E4D07.8030908@infracaninophile.co.uk> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; amd64-portbld-freebsd7.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: "Paul B. Mahol" , freebsd-questions@freebsd.org Subject: Re: large binary, why not strip ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 09:02:24 -0000 On Thu, 27 Nov 2008 07:32:23 +0000 Matthew Seaman wrote: > Paul B. Mahol wrote: > > On 11/26/08, Matthew Seaman wrote: > >> Matthew Seaman wrote: > >>> Kris Kennaway wrote: > >>> > >>>> Bonus points if you come up with a patch to do this: in most > >>>> cases it will be a simple matter of changing the port's > >>>> do-install: target to use INSTALL_* macros instead of cp/bsdtar > >>>> etc. This would be a good project to get some familiarity with > >>>> the ports tree. > >>> Would it be worthwhile to add a test and warning that all > >>> installed binaries > >>> have not been stripped to the 'security-check' target in > >>> bsd.port.mk? That's > >>> not really what that target was intended for (feeping creaturism > >>> alert!) but > >>> it's the obvious place to put such a test. > >>> > >>> Probably cleaner to create a whole new target, but that's going to > >>> duplicate > >>> some code. > >>> > >>> Hmmmm... I shall work up some patches, probably over the weekend, > >>> so there's > >>> something substantive to talk about. > >> Done: ports/129210 > >> > >> For the record, I also discovered that, contrary to what I said > >> earlier, there is apparently one class of binary object that will > >> not work correctly if stripped: kernel loadable modules. > > > > Kernel loadable modules are already stripped (--strip-debug). > > > > KLDs aren't stripped in a way that file(1) recognises: > > happy-idiot-talk:/boot/kernel:% file if_em.ko > if_em.ko: ELF 32-bit LSB shared object, Intel 80386, version 1 > (FreeBSD), dynamically linked, not stripped > > Unfortunately file(1) seems to be about the only tool available to > test a priori whether a binary object is stripped or not. It's > possible that objdump(1) or readelf(1) could do a similar thing, but > I can't work it out from those man pages. It seems nm also tells you fairly simply whether a file contains symbols or not: > nm /bin/ls nm: /bin/ls: no symbols > nm /usr/local/bin/a2p 00000000004030d0 T Myfatal 0000000000510308 D No 000000000051a200 B Str 0000000000510300 D Yes 0000000000519e00 A _DYNAMIC [...] KLD .ko files are built with full debug data but the source information (filenames, line numbers etc.) is stripped out into separate .ko.symbols files, in a similar way that Windows uses .PDB files; it lets you store the debug information separately and only match them up if something goes wrong. To see if a binary contains source data, you can run 'readelf -w'; no output seems to mean it couldn't find any data. -- Bruce Cran From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 09:19:34 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EBB51065678; Thu, 27 Nov 2008 09:19:34 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 5E0CF8FC14; Thu, 27 Nov 2008 09:19:33 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from [10.0.10.6] ([202.69.174.141]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 27 Nov 2008 01:18:22 -0800 Message-ID: <492E6648.7050403@a1poweruser.com> Date: Thu, 27 Nov 2008 17:20:08 +0800 From: Fbsd1 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: freebsd-questions@freebsd.org, ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 27 Nov 2008 09:18:22.0488 (UTC) FILETIME=[183BF980:01C95071] X-Sender: fbsd1@a1poweruser.com Cc: Subject: Limewire package install error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 09:19:34 -0000 Tried to pkg_add -r limewire. Dependant diablo-jdk-1.6.0.07.02.tbz File unavailable. The package diablo-jdk is not on 7.0 or 7.1 pkg server. Looking up diablo-jdk on the ports website, the long description points to here http://www.freebsdfoundation.org/downloads/java.shtml How am i to get these mis-matched package names to fulfill the limewire dependent name? From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 09:33:46 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7A2F1065673 for ; Thu, 27 Nov 2008 09:33:46 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id 62E388FC14 for ; Thu, 27 Nov 2008 09:33:45 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id DAE20FD38E for ; Thu, 27 Nov 2008 11:33:44 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id D94A9FD38D; Thu, 27 Nov 2008 11:33:44 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: *** X-Spam-Guessed-Language: X-Spam-Status: No, score=3.1 required=5.0 tests=BAYES_50,RDNS_DYNAMIC, SPF_SOFTFAIL X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.1.64] (87-119-181-26.tll.elisa.ee [87.119.181.26]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id 5BA0EFD2D1 for ; Thu, 27 Nov 2008 11:33:42 +0200 (EET) Message-ID: <492E6973.3050708@zzz.ee> Date: Thu, 27 Nov 2008 11:33:39 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <492E6648.7050403@a1poweruser.com> In-Reply-To: <492E6648.7050403@a1poweruser.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee Subject: Re: Limewire package install error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 09:33:46 -0000 Fbsd1 wrote: > Tried to pkg_add -r limewire. Dependant diablo-jdk-1.6.0.07.02.tbz > File unavailable. The package diablo-jdk is not on 7.0 or 7.1 pkg > server. > > Looking up diablo-jdk on the ports website, the long description > points to here http://www.freebsdfoundation.org/downloads/java.shtml Just tried to install from ports. Try to install diablo-jdk first from ports. There is a file tzupdater-1_3_9-2008g.zip which should be downloaded directly from Sun, first creating your personal account @Sun. If diablo-jdk is OK, Limewire should be no problem. Check: # pkg_version -v|grep diablo diablo-jdk-1.6.0.07.02_2 = up-to-date with port ------------------------------------------------------------------------------------------------- # cd /usr/ports/net-p2p/limewire # make ===> Vulnerability check disabled, database not found => LimeWireOther.zip doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from http://www10.limewire.com/download/. LimeWireOther.zip 100% of 9 MB 315 kBps 00m00s ===> Extracting for limewire-4.18.8,1 => MD5 Checksum OK for LimeWireOther.zip. => SHA256 Checksum OK for LimeWireOther.zip. ===> limewire-4.18.8,1 depends on executable: unzip - found ===> Patching for limewire-4.18.8,1 ===> Configuring for limewire-4.18.8,1 # make install ===> Installing for limewire-4.18.8,1 ===> limewire-4.18.8,1 depends on executable: java - found ===> limewire-4.18.8,1 depends on file: /usr/local/diablo-jdk1.6.0/bin/java - found ===> Generating temporary packing list ===> Checking if net-p2p/limewire already installed install -o root -g wheel -m 555 /usr/ports/net-p2p/limewire/work/limewire.sh /usr/local/bin/limewire /bin/mkdir -p /usr/local/share/java/limewire /bin/cp -R /usr/ports/net-p2p/limewire/work/LimeWire/* /usr/local/share/java/limewire/ /bin/mkdir -p /usr/local/share/doc/limewire install -o root -g wheel -m 444 /usr/ports/net-p2p/limewire/work/README.txt /usr/local/share/doc/limewire/ ===> Registering installation for limewire-4.18.8,1 Greetings, O.K. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 09:51:22 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4A27106564A for ; Thu, 27 Nov 2008 09:51:22 +0000 (UTC) (envelope-from andrewd@webzone.net.au) Received: from smtp.webzone.net.au (smtp.webzone.net.au [210.8.36.14]) by mx1.freebsd.org (Postfix) with ESMTP id 970CB8FC13 for ; Thu, 27 Nov 2008 09:51:22 +0000 (UTC) (envelope-from andrewd@webzone.net.au) Received: from ppp121-45-158-252.lns11.adl6.internode.on.net ([121.45.158.252] helo=[192.168.202.99]) by smtp.webzone.net.au with esmtpa (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L5dWp-000Pqg-Dv; Thu, 27 Nov 2008 20:21:19 +1030 Message-ID: <492E6D88.5080201@webzone.net.au> Date: Thu, 27 Nov 2008 20:21:04 +1030 From: Andrew D User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Fbsd1 References: <492E6648.7050403@a1poweruser.com> In-Reply-To: <492E6648.7050403@a1poweruser.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AUTH-WEBZONE: andrewd@webzone.net.au successfully authed as username:andrewd Cc: FreeBSD Questions Subject: Re: Limewire package install error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 09:51:22 -0000 Fbsd1 wrote: > Tried to pkg_add -r limewire. Dependant diablo-jdk-1.6.0.07.02.tbz File > unavailable. The package diablo-jdk is not on 7.0 or 7.1 pkg server. > > Looking up diablo-jdk on the ports website, the long description points > to here http://www.freebsdfoundation.org/downloads/java.shtml > > How am i to get these mis-matched package names to fulfill the limewire > dependent name? > You do realise you don't have to install it using a pkg. you can 'make install' it in /usr/ports/java/diablo-jdk16 :) > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 10:57:00 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09F2B106564A for ; Thu, 27 Nov 2008 10:57:00 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id E9F228FC19 for ; Thu, 27 Nov 2008 10:56:59 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from [10.0.10.6] ([202.69.174.141]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 27 Nov 2008 02:55:48 -0800 Message-ID: <492E7D1E.3090308@a1poweruser.com> Date: Thu, 27 Nov 2008 18:57:34 +0800 From: Fbsd1 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Andrew D References: <492E6648.7050403@a1poweruser.com> <492E6D88.5080201@webzone.net.au> In-Reply-To: <492E6D88.5080201@webzone.net.au> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 27 Nov 2008 10:55:48.0592 (UTC) FILETIME=[B4C8A700:01C9507E] X-Sender: fbsd1@a1poweruser.com Cc: FreeBSD Questions Subject: Re: Limewire package install error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 10:57:00 -0000 Andrew D wrote: > Fbsd1 wrote: >> Tried to pkg_add -r limewire. Dependant diablo-jdk-1.6.0.07.02.tbz >> File unavailable. The package diablo-jdk is not on 7.0 or 7.1 pkg >> server. >> >> Looking up diablo-jdk on the ports website, the long description >> points to here http://www.freebsdfoundation.org/downloads/java.shtml >> >> How am i to get these mis-matched package names to fulfill the >> limewire dependent name? >> > > You do realise you don't have to install it using a pkg. you can 'make > install' it in /usr/ports/java/diablo-jdk16 > > :) > You do realize that I don't want to full around with compiling port source. That is the whole reason behind the package system. I am looking for answer to error in the package install of limewire and it's dependent diablo-jdk. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 11:06:55 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EAC14106564A for ; Thu, 27 Nov 2008 11:06:55 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 2B1988FC16 for ; Thu, 27 Nov 2008 11:06:54 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mARB6mBW001763; Thu, 27 Nov 2008 12:06:48 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mARB6l8l001760; Thu, 27 Nov 2008 12:06:48 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 27 Nov 2008 12:06:47 +0100 (CET) From: Wojciech Puchar To: Norberto Meijome In-Reply-To: <20081127115225.64d3e32f@ayiin> Message-ID: <20081127120610.R1759@wojtek.tensor.gdynia.pl> References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> <20081126185216.7ab011ac@gumby.homeunix.com> <20081127115225.64d3e32f@ayiin> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 11:06:56 -0000 >> because historically ISPs used those ports for throttling. > > +1 . skype does the same thing. and it's "p2p" too , although a lot less so than limewire. well ther are excellent method to block skype when using HTTP proxy not NAT ;) (skype can do through proxy) From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 11:08:00 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 952181065675 for ; Thu, 27 Nov 2008 11:08:00 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id D2CB38FC1A for ; Thu, 27 Nov 2008 11:07:59 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mARB7osC001770; Thu, 27 Nov 2008 12:07:50 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mARB7ods001767; Thu, 27 Nov 2008 12:07:50 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 27 Nov 2008 12:07:50 +0100 (CET) From: Wojciech Puchar To: APseudoUtopia In-Reply-To: <27ade5280811262230x319bff2ajc65b8df771c9143f@mail.gmail.com> Message-ID: <20081127120731.P1759@wojtek.tensor.gdynia.pl> References: <492D51CB.9000201@a1poweruser.com> <20081126081306.17qwm4xcthtwcgw0o@intranet.casasponti.net> <20081126174157.C66781@wojtek.tensor.gdynia.pl> <20081126194804.26273396.dick@nagual.nl> <492DEC60.9070105@a1poweruser.com> <27ade5280811262230x319bff2ajc65b8df771c9143f@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Andrew Gould , freebsd-questions@freebsd.org, Fbsd1 Subject: Re: firewall rules for bitlord, yahoo, limewire X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 11:08:00 -0000 > Yeah. Limewire is written in Java (iirc), which makes it extremely > easy to port it to any system that can run java. for P2P sharing rtorrent (/usr/ports/net-p2p/rtorrent) works excellent From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 11:26:54 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE6671065673 for ; Thu, 27 Nov 2008 11:26:54 +0000 (UTC) (envelope-from andrewd@webzone.net.au) Received: from smtp.webzone.net.au (smtp.webzone.net.au [210.8.36.14]) by mx1.freebsd.org (Postfix) with ESMTP id 89E0F8FC14 for ; Thu, 27 Nov 2008 11:26:54 +0000 (UTC) (envelope-from andrewd@webzone.net.au) Received: from ppp121-45-158-252.lns11.adl6.internode.on.net ([121.45.158.252] helo=[192.168.202.99]) by smtp.webzone.net.au with esmtpa (Exim 4.69 (FreeBSD)) (envelope-from ) id 1L5f1I-0002Q0-Hi; Thu, 27 Nov 2008 21:56:52 +1030 Message-ID: <492E83EC.5090309@webzone.net.au> Date: Thu, 27 Nov 2008 21:56:36 +1030 From: Andrew D User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Fbsd1 References: <492E6648.7050403@a1poweruser.com> <492E6D88.5080201@webzone.net.au> <492E7D1E.3090308@a1poweruser.com> In-Reply-To: <492E7D1E.3090308@a1poweruser.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AUTH-WEBZONE: andrewd@webzone.net.au successfully authed as username:andrewd Cc: FreeBSD Questions Subject: Re: Limewire package install error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 11:26:54 -0000 Fbsd1 wrote: > Andrew D wrote: >> Fbsd1 wrote: >>> Tried to pkg_add -r limewire. Dependant diablo-jdk-1.6.0.07.02.tbz >>> File unavailable. The package diablo-jdk is not on 7.0 or 7.1 pkg >>> server. >>> >>> Looking up diablo-jdk on the ports website, the long description >>> points to here http://www.freebsdfoundation.org/downloads/java.shtml >>> >>> How am i to get these mis-matched package names to fulfill the >>> limewire dependent name? >>> >> >> You do realise you don't have to install it using a pkg. you can >> 'make install' it in /usr/ports/java/diablo-jdk16 >> >> :) >> > > You do realize that I don't want to full around with compiling port > source. That is the whole reason behind the package system. I am looking > for answer to error in the package install of limewire and it's > dependent diablo-jdk. > I do now, with the cross-post It seemed like you wanted it done fairly quickly :) > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 12:10:29 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D672C1065677 for ; Thu, 27 Nov 2008 12:10:29 +0000 (UTC) (envelope-from m.wallace@peoplecompare.co.uk) Received: from mail55.e-shot.net (mail55.e-shot.net [195.217.60.55]) by mx1.freebsd.org (Postfix) with ESMTP id 2B19D8FC12 for ; Thu, 27 Nov 2008 12:10:28 +0000 (UTC) (envelope-from m.wallace@peoplecompare.co.uk) Received: from e-shot02 ([192.168.50.1]) by mail55.e-shot.net (StrongMail Enterprise 4.1.1.3(4.1.1.3-45945)); Thu, 27 Nov 2008 11:55:20 +0000 X-VirtualServer: Default, mail55.e-shot.net, 192.168.50.55 X-MailingID: 00000::00000::00000::00000::263:41:56076::156989 X-SMHeaderMap: mid="X-MailingID" X-Destination-ID: questions@freebsd.org X-SMFBL: cXVlc3Rpb25zQGZyZWVic2Qub3Jn DomainKey-Signature: a=rsa-sha1; c=nofws; s=eshot; d=peoplecompare.co.uk; q=dns; b=cVKzeo9JrxWLmLQkApKlRvT0aJE5ZivmUstTkFI9spRXxuVhSf223J9NnRVDnsrk7uID8AlTDtUm9yH+ngNCNyWvpDRgf0X9c9qBwz5VBWYL2UIl7rPba256F9LqbLzzDrROXpsx5+vvGCgCW83Sgnpn9fxcuyOK/ETo7sM5JIw= DKIM-Signature: v=1; a=rsa-sha1; c=simple; d=peoplecompare.co.uk; s=eshot; i=@peoplecompare.co.uk; h=From:To:Reply-To:Subject:Date: Message-ID:X-eshot:X-VirtualServerGroup:MIME-Version: Content-Type; bh=cN850rXeXWjDec3Tr7OcqTSg6xg=; b=dnbOPvV0rXr34Fy KUcCpv0s4TgnQUyeJwWTGWscE0r4mzTVY3lNQfTrJ5kKC45qPcZ8G1/pfQwGRKWu vz09UO2RWyp25obwbzlM+K9l+fzmqegavTgmiZ/etgKfBdvpn/YeDa5nNqdAJm2s KB3e7WU7pgi76kvXJWVAnzDlQWkg= From: "People Compare" To: "questions@freebsd.org" Date: Thu, 27 Nov 2008 11:55:13 -0000 Message-ID: <20081127-11551339-1540-0@e-shot02> X-eshot: 263:41:56076 X-VirtualServerGroup: Default MIME-Version: 1.0 Content-Type: text/plain;charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: November News X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: kevyn@peoplecompare.co.uk List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 12:10:30 -0000 Peoplecompare.co.uk - Call 0115 852 47 48 View this email in a web browser: http://newsletters.e-shot.net/viewwithtoken.asp?6B%2FFISoQvLulndO%2F%3F Forward to a friend: http://control.e-shot.net/ForwardToFriend.asp?6B%2FFISoQvLulndO%2F%3F ----------- November Newsletter 2008 VERSION 2 NOW LAUNCHES Version 2 of the peoplecompare site is now live. Aswell as the obvious visual improvements to the site there is new functionality being programmed as you read, including:- CV distribution, interim and contract account types, video media hosting and much more! http://control.e-shot.net//le35.asp?263:1:56076:41 WIN A TRIP TO THE BIG APPLE! To further encourage further traffic, Peoplecompare are offering a lucky winner the opportunity to win a trip to New York City! The client who posts the 10,000 job through the site to our network will win the break for 2 and £1000 spending money. This is a great incentive and proving popular amongst the users who have provided feedback. *linkpath* National TV Campaign hits the Screens! Its taken a while but at last the peoplecompare brand has hit TV screens across the UK. The first advert aired this weekend on Sky News and increased site traffic significantly resulting in many fresh enquiries. The promotion will also be showing on E4, Dave, Bloomberg, The Business Channel and Sky News in the coming week. If you want to preview the advert, please click the link below. http://control.e-shot.net//le35.asp?263:3:56076:41 Why not read our Blog? http://peoplecompare.blogspot.com/ ----------- People Compare Ltd, 15 Wheeler Gate, Nottingham NG1 2NE. Registered in England & Wales: 06546591 Tel: 0845 652 1634 This message was sent to questions@freebsd.org; We hope you found it relevant. However, if you'd rather not receive future e-mails from us, please visit the opt-out link by clicking http://control.e-shot.net/ManageProfile.asp?6B%2FFISoQvLulndO%2F%3F From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 04:45:35 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA0021065672 for ; Thu, 27 Nov 2008 04:45:35 +0000 (UTC) (envelope-from ipfreak@yahoo.com) Received: from web52112.mail.re2.yahoo.com (web52112.mail.re2.yahoo.com [206.190.48.115]) by mx1.freebsd.org (Postfix) with SMTP id 913818FC18 for ; Thu, 27 Nov 2008 04:45:35 +0000 (UTC) (envelope-from ipfreak@yahoo.com) Received: (qmail 1843 invoked by uid 60001); 27 Nov 2008 04:45:34 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type:Message-ID; b=3Kyo25j727tn+XSzHxGHGZDT9xOqChxG03z8r22oCVcdrllhS04uokFHNFcy92Dsofw+8Wv+O4kD137hKlEMNTvvxDuspH9gngXYS5+qlWL650ofPiS7TgHoEV7VHU11eGZdeL03/4PeMvHapCIqioNbjxqS32JYOPyOnUek3ZI=; X-YMail-OSG: .0MVd4IVM1kBOGpldoIqexAqOZXrkjXarNcdKz20zrybUdPSErk.wCNZJn9k2D7tO1zgmc1.coAf470W_6Ca0MFzS3O1njXPMKjC60VNyUvUr.TA6k7jwaRqMeflQ68uwVNPM.26KZg8EsEuRdEjuvMjKmsSL5GjzbK7ciPDfEqr7OOhCHmm6Lq8q2Ek Received: from [98.169.13.4] by web52112.mail.re2.yahoo.com via HTTP; Wed, 26 Nov 2008 20:45:34 PST X-Mailer: YahooMailWebService/0.7.260.1 Date: Wed, 26 Nov 2008 20:45:34 -0800 (PST) From: gahn To: freebsd general questions , free bsd MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-ID: <742029.598.qm@web52112.mail.re2.yahoo.com> X-Mailman-Approved-At: Thu, 27 Nov 2008 12:20:41 +0000 Cc: Subject: freebsd-update X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ipfreak@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 04:45:36 -0000 Hi, all: i did "freebsd-update fetch" and i got message: "No updates needed to update system to 6.3-RELEASE-p6" what does that suppose to mean? My current system (this one is online) is p4. Thanks all. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 12:46:53 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B32AD1065670 for ; Thu, 27 Nov 2008 12:46:53 +0000 (UTC) (envelope-from glavoie@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.236]) by mx1.freebsd.org (Postfix) with ESMTP id 821F18FC1F for ; Thu, 27 Nov 2008 12:46:53 +0000 (UTC) (envelope-from glavoie@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so901883rvf.43 for ; Thu, 27 Nov 2008 04:46:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=wz2KPyoHkyTw6/hav84tsQqghjadcxCMQcUZzoNA4SQ=; b=RJy8ta/T14mI1L0od92VRkwiM711uIKkKip67UmpPmbSmE+RKPpOEwzDLDkL1gPkAw dJoptC8XDdLSbOZbfZu0PFjm5jPm4MGyyBoHDMulnrADhjkpYJ3+nlpmATTHimziMTvc hDEgk3Oz+kdMRUbeuIdL3htZd3ZpMvTrxWduU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=MgFW91oZo8zNxOWibDidb899l2RUlrU9lF4IsCnwfEzqAlorAGD57G60dPEIkUJynA c1o/C0VXtWDTAzwAH0uFowaTcc4hx0aR6BPWEBrgirRMEb474dWh9nxIyiwjAwz7Dy00 UHyL11e0u44dTZD0t2k+Ig9MD+VZVPhzxE+kM= Received: by 10.140.158.4 with SMTP id g4mr3381332rve.160.1227790012361; Thu, 27 Nov 2008 04:46:52 -0800 (PST) Received: by 10.141.168.6 with HTTP; Thu, 27 Nov 2008 04:46:52 -0800 (PST) Message-ID: Date: Thu, 27 Nov 2008 07:46:52 -0500 From: "Gabriel Lavoie" To: ipfreak@yahoo.com In-Reply-To: <742029.598.qm@web52112.mail.re2.yahoo.com> MIME-Version: 1.0 References: <742029.598.qm@web52112.mail.re2.yahoo.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: free bsd , freebsd general questions Subject: Re: freebsd-update X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 12:46:53 -0000 I've also got some problem with freebsd-update, under 7.0. I installed them to update to 7.0-RELEASE-p6 and when I fetch them again I get the following: [root@headless /home/wildchild]# freebsd-update fetch Looking up update.FreeBSD.org mirrors... 1 mirrors found. Fetching metadata signature for 7.0-RELEASE from update1.FreeBSD.org... done. Fetching metadata index... done. Inspecting system... done. Preparing to download files... done. The following files will be updated as part of updating to 7.0-RELEASE-p6: /boot/kernel/linker.hints If I install and fetch them over and over again, this file will always appear as needing an update. Gabriel 2008/11/26 gahn > Hi, all: > > i did "freebsd-update fetch" and i got message: > > "No updates needed to update system to 6.3-RELEASE-p6" > > what does that suppose to mean? My current system (this one is online) is > p4. > > Thanks all. > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > -- Gabriel Lavoie glavoie@gmail.com From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 12:51:27 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B5F11065677 for ; Thu, 27 Nov 2008 12:51:27 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr12.xs4all.nl (smtp-vbr12.xs4all.nl [194.109.24.32]) by mx1.freebsd.org (Postfix) with ESMTP id 1740C8FC0A for ; Thu, 27 Nov 2008 12:51:26 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr12.xs4all.nl (8.13.8/8.13.8) with ESMTP id mARCpODt062602; Thu, 27 Nov 2008 13:51:25 +0100 (CET) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id ABF4ABA8C; Thu, 27 Nov 2008 13:51:24 +0100 (CET) Date: Thu, 27 Nov 2008 13:51:24 +0100 From: Roland Smith To: Rommel Tan Message-ID: <20081127125124.GA8902@slackbox.xs4all.nl> References: <574653.94484.qm@web56507.mail.re3.yahoo.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pf9I7BMVVzbSWLtt" Content-Disposition: inline In-Reply-To: <574653.94484.qm@web56507.mail.re3.yahoo.com> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.18 (2008-05-17) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: "questions@FreeBSD.org" Subject: Re: Installing FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 12:51:27 -0000 --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Nov 26, 2008 at 07:11:56PM -0800, Rommel Tan wrote: > questions@FreeBSD.org questions@FreeBSD.org > Dear Sir/Madam: > Pleasant day! > First of all, sorry if this enquiry shouldn=E2=80=99t be directed to you, > please help me direct to the right person.=20 The questions mailing list is OK. > Few months ago I=E2=80=99ve purchase a FreeBSD book which includes an > installation DVD for FreeBSD 6.1. I tried to install it in my Toshiba > Satellite, Intel Centrino with current Windows XP SP3 OS after doing > some partition. But, I=E2=80=99m stock with boot error; sorry I=E2=80=99m= very new to > this system; I tried to search for an answer but no to avail. > Here is the last part of the error: > ..... > Pci6: on pcib2 > Pci6: at device 2.0 (no driver attached) > Cbb0: eme 0x8007000-0xb8007fff irq 16 at device 4.0 = on pci6 > Cardbus0: on cbb0 > Pccard0: <16-bit PCCard> on cbb0 > Fwohci0: <1394 Open Host Controller Interface> mem 0xb8008000-0xb80087ff,= 0xb800000-0xb8003fff irq 18 at device 4.2 on pci6 > Fwohci0: OHCI version 1.10 (ROM=3D0) > Fwohci0: No. Of Isochronous channels is 4. > Fwohci0: EUI64 00:02:3f:58:69:40:a5:e6 > NMI ISA b0, EISA ff Have a look at the following line. It tells you what is wrong. > RAM parity error, likely hardware failure. Your Random Access Memory is broken. This is a hardware failure and not something that FreeBSD can fix. Try replacing the RAM modules. Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --pf9I7BMVVzbSWLtt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkul8wACgkQEnfvsMMhpyU2dACdE9B2WOSegmq1SW0ovNio+WXS 46kAniiZbanJh23ogtvbBoJm2I/QoOdm =9rpB -----END PGP SIGNATURE----- --pf9I7BMVVzbSWLtt-- From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 13:05:44 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B68931065673 for ; Thu, 27 Nov 2008 13:05:44 +0000 (UTC) (envelope-from gpbuono@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.171]) by mx1.freebsd.org (Postfix) with ESMTP id 8AF3C8FC0C for ; Thu, 27 Nov 2008 13:05:44 +0000 (UTC) (envelope-from gpbuono@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so1003758wfg.7 for ; Thu, 27 Nov 2008 05:05:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=1VX4pf0FN9LbzqEAUXH9L5ZZdxUt0FCz7R2dNLgtS8E=; b=HhMFOhByJVvkw+zt37vMOw1lRqLS+NZEZypLP6+aPNuy8yQnK48UT6TyGjAXsahaD9 zThk/rFO6nBNvO9IyeqvnI7dy7fJfHeQ7MLCx+HAYHX7h7FEFaJk2i1dup6Hu4r0VDuX Kosr19JaxHc0eNIWGeVkP3CwMZHryHSVVmRQo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=BmNxPDfj4mxBy9naQjpffcho8ODBA/WQv7Wck6uy+Ft0fK2yQ2H80Jd9w67Hgh4zoa CGK9ynVW//qO7zvfGItHvKl6pmZ9PzngIv8nazHYFYrffMH7LvBHzT1xQm2LNNu/Yg6Y Gxgw7WpwKAWWH3LJtj3SUZA6BTil0uKNdqdJg= Received: by 10.142.125.9 with SMTP id x9mr2986795wfc.38.1227791144240; Thu, 27 Nov 2008 05:05:44 -0800 (PST) Received: by 10.142.139.15 with HTTP; Thu, 27 Nov 2008 05:05:44 -0800 (PST) Message-ID: Date: Thu, 27 Nov 2008 14:05:44 +0100 From: "Gian Paolo Buono" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: process always running X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 13:05:44 -0000 Hi, there is a method in freebsd for restart process whenever it terminates ? I use in linux respawn in inittab... Thanks ...bye From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 13:13:02 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE624106564A for ; Thu, 27 Nov 2008 13:13:02 +0000 (UTC) (envelope-from Rick.Janssen@phil.uu.nl) Received: from smtp1.admin.phil.uu.nl (smtp1.admin.phil.uu.nl [131.211.140.13]) by mx1.freebsd.org (Postfix) with ESMTP id 786F68FC19 for ; Thu, 27 Nov 2008 13:13:02 +0000 (UTC) (envelope-from Rick.Janssen@phil.uu.nl) Received: from webmail.students.phil.uu.nl (foucault.leper.phil.uu.nl [131.211.141.209]) by smtp1.admin.phil.uu.nl (Postfix) with ESMTP id 3A09FA81E for ; Thu, 27 Nov 2008 14:17:57 +0100 (MET) Received: from gnt-cfa2.adsl.wanadoo.nl ([81.68.237.162]) (SquirrelMail authenticated user janssen) by webmail-students.phil.uu.nl with HTTP; Thu, 27 Nov 2008 14:11:40 +0100 (CET) Message-ID: In-Reply-To: <492E32C5.9070204@gmail.com> References: <492E32C5.9070204@gmail.com> Date: Thu, 27 Nov 2008 14:11:40 +0100 (CET) From: "Rick Janssen" To: "freebsd-questions@freebsd.org" User-Agent: SquirrelMail/1.4.16 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: Filesystem problems at boot and shutdown? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 13:13:03 -0000 >Rick Janssen wrote: >> I've been playing around with FreeBSD for some time now, still being >> unable to solve some problems. Let me explain. >> >> I'm trying to run a webserver on the machine. Just basic, nothing too >> fancy. Problem concerns the following: The website served is speedy as >> expected when accessed from local LAN, but when accessed from WAN via >> router, it's realy slow. So, to do some tests, this afternoon I requested >> some pages from an computer outside my LAN. Server was very slow again, >> even ssh slowed to a crawl. Suddenly, without reason I know off, >> everything sped up. I issued a reboot to check if the problem might have >> been 'solved'. This took a long time. >> >> Back home I checked the logs. It now appeared the long reboot-time was >> caused by a Syncing disk anomaly, which happens when the system prepares >> for shutting down. >> >> Nov 26 22:38:12 server kernel: Syncing disks, vnodes remaining...1 1 1 1 >> 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 >> 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 timed out >> Nov 26 22:38:12 server kernel: Waiting (max 60 seconds) for system process >> `bufdaemon' to stop...done >> Nov 26 22:38:12 server kernel: Syncing disks, buffers remaining... 184 185 >> 186 1 185 185 185 185 184 184 185 185 185 184 184 185 1 184 184 184 184 >> 185 185 185 1 184 184 184 184 184 185 184 184 185 185 1 185 184 184 184 >> 184 184 184 1 185 184 184 184 184 185 184 184 185 1 185 184 184 184 184 >> 184 184 185 1 184 184 185 184 184 184 184 185 184 184 185 1 185 185 184 >> 184 184 185 184 184 184 185 1 184 184 185 184 184 185 184 184 185 185 184 >> 184 184 184 184 1 184 184 184 1 184 184 185 1 185 184 184 1 184 185 184 >> 184 185 185 184 184 ... etc etc... >> Nov 26 22:38:12 server kernel: Final sync complete >> >> So I figured, might as well run fschk -y in single user mode to fix >> potential problems. Now I got some new errors: >> >> Nov 26 20:48:11 server kernel: ad4: WARNING - WRITE_DMA48 UDMA ICRC error >> (retrying request) LBA=1364750271 >> Nov 26 20:48:11 server kernel: ad4: FAILURE - WRITE_DMA48 >> status=51 error=4 LBA=1364750271 >> Nov 26 20:48:11 server kernel: >> g_vfs_done():ad4s1g[WRITE(offset=682932174848, length=131072)]error = 5 >> >> So far, nothing serious has followed from these errors I know off. They >> only happen sporadically, during reboots. >> >> Are these to problems even related, or am I just unlucky? Anyone has some >> suggestions to fix them? >> >> Regards, >> Rick >> >> >Unless there is some incompatibility between FreeBSD -> Your disk >controller -> Your disk, my best guess is you have a failing disk. I >would also suggest you check cables, connections (I guess this is an >ATA disk so you may wish the check whether the flat cable is the >80-conductor type and is plugged in correctly). The disk is a new SATA model (1TB Samsung), so that lessens the chances of the disk itself being defective somewhat. The mainboard is a MSI K9A2VM-F (AMD 780V / AMD SB700 chipsets) >Hopefully, if you are >just playing with the system, you don't have any critical data in there, >otherwise I would suggest you back up immediately. Do you have a spare >disk to try and see what happens? The thing is, the problem only surfaced yesterday. I've been doing lots of stuff the last few weeks with the machine, including many reboots and file system activity. I think a new FreeBSD install on the current disk will also run fine initially. It seems to me problem 2 (filesystem) was triggered by problem 1 (webserver performance) somehow, and now it persists. It's not easily testable. >Whether your other problem depends on this: It could be, since your >webserver might be trying to read from a faulty area and keep retrying. >Or indeed there is some incompatibility and the disk is constantly >under-performing. But that wouldn't explain why LAN performance is excellent. Why only WAN? Also, via samba or FTP disk speed is as expected. >You did not mention the speed of you WAN connection, but FWIW I am >running a webserver behind a 1Mbps/256Kbps ADSL line and response is >good enough. SSH is definitely good enough to use in long vi sessions, >with lengthy documents. The connection is something similar. Should be no cause for the slowness. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 13:25:35 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97CFC1065679 for ; Thu, 27 Nov 2008 13:25:35 +0000 (UTC) (envelope-from rock_on_the_web@comcen.com.au) Received: from mail.unitedinsong.com.au (202-172-126-254.cpe.qld-1.comcen.com.au [202.172.126.254]) by mx1.freebsd.org (Postfix) with ESMTP id 4AD9D8FC1E for ; Thu, 27 Nov 2008 13:25:35 +0000 (UTC) (envelope-from rock_on_the_web@comcen.com.au) Received: from [192.168.0.175] (unknown [192.168.0.175]) by mail.unitedinsong.com.au (Postfix) with ESMTP id 6CBDA406C for ; Thu, 27 Nov 2008 23:26:06 +1000 (EST) From: Da Rock To: freebsd-questions@freebsd.org Content-Type: text/plain Date: Thu, 27 Nov 2008 23:25:54 +1000 Message-Id: <1227792354.3603.21.camel@laptop1.herveybayaustralia.com.au> Mime-Version: 1.0 X-Mailer: Evolution 2.12.3 (2.12.3-5.fc8) Content-Transfer-Encoding: 7bit Subject: APIC error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 13:25:35 -0000 This is occurring on a linux system, but from my investigations it wouldn't be limited to just this OS. Therefore, I come seeking wisdom from some real gurus... only kidding. But the collective experience here in sysadmin is greater than the experience of desktop users found on linux lists. I checked my dmesg today on a system which I know is failing, and found a message regarding an apic error on cpu1 00(40). The system is a dual core pentium. I know the system is failing because I'm getting usb enumeration errors (something that has come up twice before on dying systems, and has disappeared as soon as I bought a new one), plus acpi errors in the form of being unable to attach device data. I understand this software unable to cope with interrupts at the cpu, and can mean hardware failure or bad software. But given my hardware issues I'm fairly certain its the former. My biggest question is where? How does it come up with something like that? Can anyone shed some light on the details of this? I'll be greatful for whatever I can get- information is power after all. For reference, this is an ASUS notebook which is only a few months old. I rang the warranty support and started telling them what was going wrong with it, but I was interrupted by the guy telling me that unless window$ was on it they weren't even going to touch it. Needless to say I told him to shove that philosophy where the sun don't shine, but I thought this was strange coming from a company which has pioneered the use of linux in the user range through the eeepc range... Fair enough if they want window$ but they can put it on and not waste my time further AND leave me without a machine to work with. What I can't work out is how they are going to be able to diagnose a problem like this easier with an OS which is a black box (almost). And their words were that they couldn't test the device properly without window$! From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 13:33:02 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30E79106564A for ; Thu, 27 Nov 2008 13:33:02 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id A8C138FC19 for ; Thu, 27 Nov 2008 13:33:01 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1L5gzL-00054u-Bf for freebsd-questions@freebsd.org; Thu, 27 Nov 2008 13:32:59 +0000 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 27 Nov 2008 13:32:59 +0000 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 27 Nov 2008 13:32:59 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Ivan Voras Date: Thu, 27 Nov 2008 14:32:55 +0100 Lines: 47 Message-ID: References: <1227792354.3603.21.camel@laptop1.herveybayaustralia.com.au> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigFF43CF15022E48D9E9AD0E74" X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Thunderbird 2.0.0.18 (X11/20081125) In-Reply-To: <1227792354.3603.21.camel@laptop1.herveybayaustralia.com.au> X-Enigmail-Version: 0.95.0 Sender: news Subject: Re: APIC error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 13:33:02 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigFF43CF15022E48D9E9AD0E74 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Da Rock wrote: > I know the system is failing because I'm getting usb enumeration errors= > (something that has come up twice before on dying systems, and has > disappeared as soon as I bought a new one), plus acpi errors in the for= m > of being unable to attach device data. >=20 > I understand this software unable to cope with interrupts at the cpu, > and can mean hardware failure or bad software. But given my hardware > issues I'm fairly certain its the former. My biggest question is where?= > How does it come up with something like that? >=20 > Can anyone shed some light on the details of this? I'll be greatful for= > whatever I can get- information is power after all. This is too little information for general troubleshooting, except if someone has encountered this exact problem before. =46rom your description, especially since you're suggesting a hardware failure, it could be anything from BIOS or BIOS "CMOS" error (or battery) to real hardware problems in the conductors to the buses. --------------enigFF43CF15022E48D9E9AD0E74 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJLqGHldnAQVacBcgRAmI6AKDBRbrF1rFAFGc4Ak6bMFzgd0sd7gCgmv+1 CmUSWHY7VyKPmF9xzU7Yuj4= =qeJD -----END PGP SIGNATURE----- --------------enigFF43CF15022E48D9E9AD0E74-- From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 13:36:03 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5079D106564A for ; Thu, 27 Nov 2008 13:36:03 +0000 (UTC) (envelope-from eforezz@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.29]) by mx1.freebsd.org (Postfix) with ESMTP id 0B6398FC18 for ; Thu, 27 Nov 2008 13:36:02 +0000 (UTC) (envelope-from eforezz@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so442621yxb.13 for ; Thu, 27 Nov 2008 05:36:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:mime-version:content-type:content-transfer-encoding :content-disposition; bh=zumT7V4iiOKZsDAWOHiOCu9sIM8Ambc294lzaEV9HiY=; b=vvFdUFQyYM3alTwOc7RZmixGrGs77KjVgl1UthW7vQuRKv8b/lqOeP/S2RLYTeMhfb AWT/aK0WxhXftgU/Q8mHL30uzre/YCwrI4L99rntgBDYgn9ZHfdUE2MvT3qRbaXfuWcf CXKavxXC5Mx1H6Hhe1tw5rksepp7dOuGzcuSY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:mime-version:content-type :content-transfer-encoding:content-disposition; b=vHsotZh2XyiGM0tp/N9C2Og+Y8nJyQycIxKCWor41W99c91whb4cqTWZ0exD1mk1YK iDqkW1YBfvNsQLKPWIa9Dz3A5EiV0PJfnNlUbZJu56R0D1QZq2/jfzw6ihVDahR4vbY3 Qil3LUp6MAsboHME8+Nitvjo7pPQ9hNT70OGU= Received: by 10.65.51.16 with SMTP id d16mr7487028qbk.41.1227792961713; Thu, 27 Nov 2008 05:36:01 -0800 (PST) Received: by 10.65.155.3 with HTTP; Thu, 27 Nov 2008 05:36:01 -0800 (PST) Message-ID: Date: Thu, 27 Nov 2008 15:36:01 +0200 From: EforeZZ To: ansarm@gmail.com MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: freebsd-questions@freebsd.org Subject: realtime network replication X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 13:36:03 -0000 Ansar Mohammed wrote: >Hello all, >I need to replicate /home between two freebsd servers in real time (no >scheduled rsyncs) >What are my options? Hi, The following configuration seems to do what you ask for: Two NFS servers, each of them provides access to a huge equal-sized file-container. Third server mounts directories with files-containers from the prevoius two servers. GEOM RAID1 mirroring is used on the third server to create a /home filesystem backed by two huge file-containers. You will have a copy of your /home inside the GEOM file-container on each of the two servers. You will get realtime data replication. Drop a note if the performance of such configuration is acceptable :) Best regards, EforeZZ From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 13:42:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 494F6106564A for ; Thu, 27 Nov 2008 13:42:45 +0000 (UTC) (envelope-from eforezz@gmail.com) Received: from rn-out-0910.google.com (rn-out-0910.google.com [64.233.170.186]) by mx1.freebsd.org (Postfix) with ESMTP id 04B7E8FC19 for ; Thu, 27 Nov 2008 13:42:44 +0000 (UTC) (envelope-from eforezz@gmail.com) Received: by rn-out-0910.google.com with SMTP id j71so837152rne.12 for ; Thu, 27 Nov 2008 05:42:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=7T2lpk3tNVU16JHoJ0+cXNOdn1os0arjR/prQ8qttl8=; b=aXb/KMit35LjETpLb5wTzFukHwa1UqZNmspOqHSu7kYivXY5KJnyQHUiTqivq2EnES nZ2BjQjbUjftw69Y1xnxDSvuNpj1tdhjbu/O/olHMsBnTEMXdP/Dd9Fp/i7A7DLnmmAb Hy6BvIW0s0V3RXiJsVmm5a6tG2za6YOHHb39g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=WLUMqTdu6impA7Tai6uilsJXwSFgaEsWHXfPnlxUgmAaun1x2iVQ+L5lUbL4AmjfF8 3TiVXx89xzNzn9XhfVdsGKVFwiNCrEx9NQRfLMgCvljJwgz31c+vwEbImUPSH0opnP4y wcpTRgkHf3UOzgn/Fe4+eAQdjh2PQ2r834BoU= Received: by 10.65.20.20 with SMTP id x20mr7467697qbi.63.1227791784802; Thu, 27 Nov 2008 05:16:24 -0800 (PST) Received: by 10.65.155.3 with HTTP; Thu, 27 Nov 2008 05:16:24 -0800 (PST) Message-ID: Date: Thu, 27 Nov 2008 15:16:24 +0200 From: EforeZZ To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: A2DP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 13:42:45 -0000 Hello, I noticed that pulseaudio port supports A2DP profile. Is it possible to use it with FreeBSD bluetooth stack to transmit audio using the SBC codec? Best regards, EforeZZ From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 13:43:13 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 860D31065678 for ; Thu, 27 Nov 2008 13:43:13 +0000 (UTC) (envelope-from anthony.rasat@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.28]) by mx1.freebsd.org (Postfix) with ESMTP id 3D70A8FC1D for ; Thu, 27 Nov 2008 13:43:12 +0000 (UTC) (envelope-from anthony.rasat@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so442454ywe.13 for ; Thu, 27 Nov 2008 05:43:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:x-rim-org-msg-ref-id :return-receipt-to:message-id:reply-to:x-priority:sensitivity :importance:to:subject:from:date:content-type:mime-version; bh=CIWYTkRF9r611BubagzCJDYGx3SNYmULJyesOksVl9o=; b=Nqu0Qns8y80XCyy70p5jkEB4NLmHrvSXEUgLssFnDfALhMNv21+NbFwxEBafeYWyn6 09JWN4y6ACmrYK9MrY0fBimkYLSJDuGpxLYYrWNl7di4ExDzRu2EP6ic3VSL1hIGKt3P jviNZiyjn/qjB3R3O+1DQIQkybbsoYdQAlpTE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=x-rim-org-msg-ref-id:return-receipt-to:message-id:reply-to :x-priority:sensitivity:importance:to:subject:from:date:content-type :mime-version; b=CLIJQY8G7wDm1HrkFukAYDWGIPnMAqXb0uBoPGIe84zmBB98jOQ61Vse2PzYZtdJM5 PEapZt9LRKDGU7Q5gGGt9tu8gWx9J4CCJ7OlnUoUg5TyiE5/m6z6gBa7D+Qipa4tHs14 b0NbpEgSKR+hPpv5xmcfQEvYBc0rx5kZaGetE= Received: by 10.65.163.8 with SMTP id q8mr7491448qbo.55.1227793391134; Thu, 27 Nov 2008 05:43:11 -0800 (PST) Received: from bda011.bisx.prodap.on.blackberry (bda011.bis.ap.blackberry.com [216.9.247.139]) by mx.google.com with ESMTPS id k8sm3363631qba.5.2008.11.27.05.43.09 (version=SSLv3 cipher=RC4-MD5); Thu, 27 Nov 2008 05:43:10 -0800 (PST) X-rim-org-msg-ref-id: 896150446 Message-ID: <896150446-1227793387-cardhu_decombobulator_blackberry.rim.net-487275677-@bxe002.bisx.prodap.on.blackberry> X-Priority: Normal Sensitivity: Normal Importance: Normal To: freebsd-questions@freebsd.org From: "Anthony M. Rasat" Date: Thu, 27 Nov 2008 13:42:45 +0000 Content-Type: text/plain MIME-Version: 1.0 Subject: Re: process always running X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: anthony.rasat@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 13:43:13 -0000 >there is a method in freebsd for >restart process whenever it >terminates ? I >use in linux respawn in inittab... I'm still a big fan of Daniel J. Bernstein's daemontools. Go grab it from http://cr.yp.to/daemontools.html and be sure to read instructions. Not exactly configure-make-install kinda thingy. I don't recall daemontools in FreeBSD ports though, maybe there is. Oh almost forgot, just to save your not-itchy hair, daemontools require your application to be running on foreground. Find a way to do so but if you haven't found it, there is a tool to do so. Once again, read instructions thoroughly. -- Regards, Anthony M. Rasat Manager - Technical, Network and Support Division PT. Jawa Pos National Network Graha Pena Jawa Pos Group Building, 5th floor Jln. Raya Kebayoran Lama 12, Jakarta Barat 12210 Indonesia.- Phone 02132185562 Phone 081574217035 Fax 02153651465 Web http://www.jpnn.com From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 13:44:08 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E00E91065677 for ; Thu, 27 Nov 2008 13:44:07 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: from ik-out-1112.google.com (ik-out-1112.google.com [66.249.90.181]) by mx1.freebsd.org (Postfix) with ESMTP id 66EF18FC25 for ; Thu, 27 Nov 2008 13:44:07 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: by ik-out-1112.google.com with SMTP id c21so917856ika.3 for ; Thu, 27 Nov 2008 05:44:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=Cu7N8mN1MD6eWjD432GBWQd0P+foDU4iXkTb5+06AiI=; b=in0fOe74IarwhqZEVqWnjfRIU54xbhtNGkPX8jLy0Zjld+ClDwUFCxGvxztbyf2/XT D0fPs97Qu4/U9bCWMqAPH2kgYS8MhdfafE1CdMlw9AffWBcsrHO+Uay8q89a0z7ztFw4 rZvflp2b39UdNVHtkIJBT7j9QdX54Igbt7LAY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=B9+9yEcSHYBhCFPNwZYbfiFFc4A07W8DnW8f65dlEV0CARM9/0UGYAgsyL43odXks0 F2xEBMbbZLTW1dZ7pf2KPwDaqwa/lOz07CxRxIl1JsfTqQpC39lrI2TH33N6WUg2iu6b 5eiSLdHU/pXstegv8jh5JABQSvnq6n7afgiuU= Received: by 10.210.58.17 with SMTP id g17mr7451971eba.130.1227793445958; Thu, 27 Nov 2008 05:44:05 -0800 (PST) Received: from atlantis.dyndns.org (athedsl-310702.home.otenet.gr [85.72.69.76]) by mx.google.com with ESMTPS id i4sm219290nfh.1.2008.11.27.05.44.03 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 27 Nov 2008 05:44:04 -0800 (PST) Message-ID: <492EA421.8090800@gmail.com> Date: Thu, 27 Nov 2008 15:44:01 +0200 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.17 (X11/20081011) MIME-Version: 1.0 To: Rick Janssen References: <492E32C5.9070204@gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "freebsd-questions@freebsd.org" Subject: Re: Filesystem problems at boot and shutdown? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 13:44:08 -0000 Rick Janssen wrote: >> Rick Janssen wrote: >> >>> I've been playing around with FreeBSD for some time now, still being >>> unable to solve some problems. Let me explain. >>> >>> I'm trying to run a webserver on the machine. Just basic, nothing too >>> fancy. Problem concerns the following: The website served is speedy as >>> expected when accessed from local LAN, but when accessed from WAN via >>> router, it's realy slow. So, to do some tests, this afternoon I requested >>> some pages from an computer outside my LAN. Server was very slow again, >>> even ssh slowed to a crawl. Suddenly, without reason I know off, >>> everything sped up. I issued a reboot to check if the problem might have >>> been 'solved'. This took a long time. >>> >>> Back home I checked the logs. It now appeared the long reboot-time was >>> caused by a Syncing disk anomaly, which happens when the system prepares >>> for shutting down. >>> >>> Nov 26 22:38:12 server kernel: Syncing disks, vnodes remaining...1 1 1 1 >>> 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 >>> 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 timed out >>> Nov 26 22:38:12 server kernel: Waiting (max 60 seconds) for system process >>> `bufdaemon' to stop...done >>> Nov 26 22:38:12 server kernel: Syncing disks, buffers remaining... 184 185 >>> 186 1 185 185 185 185 184 184 185 185 185 184 184 185 1 184 184 184 184 >>> 185 185 185 1 184 184 184 184 184 185 184 184 185 185 1 185 184 184 184 >>> 184 184 184 1 185 184 184 184 184 185 184 184 185 1 185 184 184 184 184 >>> 184 184 185 1 184 184 185 184 184 184 184 185 184 184 185 1 185 185 184 >>> 184 184 185 184 184 184 185 1 184 184 185 184 184 185 184 184 185 185 184 >>> 184 184 184 184 1 184 184 184 1 184 184 185 1 185 184 184 1 184 185 184 >>> 184 185 185 184 184 ... etc etc... >>> Nov 26 22:38:12 server kernel: Final sync complete >>> >>> So I figured, might as well run fschk -y in single user mode to fix >>> potential problems. Now I got some new errors: >>> >>> Nov 26 20:48:11 server kernel: ad4: WARNING - WRITE_DMA48 UDMA ICRC error >>> (retrying request) LBA=1364750271 >>> Nov 26 20:48:11 server kernel: ad4: FAILURE - WRITE_DMA48 >>> status=51 error=4 LBA=1364750271 >>> Nov 26 20:48:11 server kernel: >>> g_vfs_done():ad4s1g[WRITE(offset=682932174848, length=131072)]error = 5 >>> >>> So far, nothing serious has followed from these errors I know off. They >>> only happen sporadically, during reboots. >>> >>> Are these to problems even related, or am I just unlucky? Anyone has some >>> suggestions to fix them? >>> >>> Regards, >>> Rick >>> >>> >>> >> Unless there is some incompatibility between FreeBSD -> Your disk >> controller -> Your disk, my best guess is you have a failing disk. I >> would also suggest you check cables, connections (I guess this is an >> ATA disk so you may wish the check whether the flat cable is the >> 80-conductor type and is plugged in correctly). >> > > The disk is a new SATA model (1TB Samsung), so that lessens the chances of > the disk itself being defective somewhat. The mainboard is a MSI K9A2VM-F > (AMD 780V / AMD SB700 chipsets) > > In fact, new disks *can* be faulty. Usually, the faults surface few days / weeks after initial use. I don't really trust a new disk on my system until it runs for a couple of months. It will then run for years until it reaches end-of-life due to wear. I still suggest you try testing it with some programs like sysutils/smartmontools >> You did not mention the speed of you WAN connection, but FWIW I am >> running a webserver behind a 1Mbps/256Kbps ADSL line and response is >> good enough. SSH is definitely good enough to use in long vi sessions, >> with lengthy documents. >> > > The connection is something similar. Should be no cause for the slowness. > Since it works fine on the LAN, you need to check the router though. Maybe some setting is slowing it down. Is it one of these cheap DSL routers? You may want to turn off various features on the router like firewalls, intrusion detections and so on (it goes without saying that you will secure your FreeBSD system instead) From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 13:44:19 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 813E21065674 for ; Thu, 27 Nov 2008 13:44:19 +0000 (UTC) (envelope-from michael.copeland@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.24]) by mx1.freebsd.org (Postfix) with ESMTP id 315558FC2B for ; Thu, 27 Nov 2008 13:44:19 +0000 (UTC) (envelope-from michael.copeland@gmail.com) Received: by qw-out-2122.google.com with SMTP id 9so253235qwb.7 for ; Thu, 27 Nov 2008 05:44:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type; bh=SDfotpY0YHeWeJDSd07LSz0sXqySlnNHcGUUzGdeaMw=; b=tdBike6jMPBD6VDzPpjbXWW1hSBmnMvJD6Dow6fiyCrWp0o+vxXiZ3YeNQZHoJhC35 NjF3Y9dilUrBUBDCqF1r/f2u2AlQPpf6Hp9jdoxU4+rtYlGA0sbsYBLBxZu9E8I3D0MI SfTYhlnGtfQrBSC3m5pmFJD0ufvsh5rrAJ9S4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type; b=t7Cdk6/2Hi+iNLRR9/ATqxKc5yR3AjJdPSXPeDrwkcEncFUhkMcHJXbeHH3UYULl/F ewQ/m/OAXsQQM2nAWk9ExAfOQ1hdCP774x3V/++YomCcgNSqzd48/YfiLa9WcSNQKW7f sYyZ0j0yVXGHxCNXcRvx+G66TEIcnassBDGA4= Received: by 10.214.81.5 with SMTP id e5mr6795729qab.305.1227793458534; Thu, 27 Nov 2008 05:44:18 -0800 (PST) Received: from ?192.168.1.148? (adsl-074-245-053-043.sip.jax.bellsouth.net [74.245.53.43]) by mx.google.com with ESMTPS id 6sm1926056ywn.0.2008.11.27.05.44.17 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 27 Nov 2008 05:44:17 -0800 (PST) Message-ID: <492EA433.7060507@gmail.com> Date: Thu, 27 Nov 2008 08:44:19 -0500 From: michael User-Agent: Thunderbird 2.0.0.17 (X11/20080925) MIME-Version: 1.0 To: Beech Rintoul References: <492E32C5.9070204@gmail.com> <200811262120.58753.> In-Reply-To: <200811262120.58753.> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: make release of current X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 13:44:19 -0000 Beech Rintoul wrote: > On Wednesday 26 November 2008 20:40:21 michael wrote: > >> will make release work for current? i've built a nice working system >> that i would like to be able to install on several identical machines. >> > > Yes, but read all the docs completely there are a number of options you need, > like telling it to use your source tree instead of CVS and if you want to > build packages etc. > > Beech > Thanks, I've made a release before.. a long while ago in a galaxy far away... I was just wondering if current would work the same. Also, is it possible to make an iso containing a multi release? ie: i386 and amd64? From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 14:03:27 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C29E1065676 for ; Thu, 27 Nov 2008 14:03:27 +0000 (UTC) (envelope-from dominik@meisternet.ch) Received: from mercury.meisternet.ch (mercury.meisternet.ch [62.65.147.122]) by mx1.freebsd.org (Postfix) with ESMTP id 6F2C58FC36 for ; Thu, 27 Nov 2008 14:03:26 +0000 (UTC) (envelope-from dominik@meisternet.ch) Received: by mercury.meisternet.ch (Postfix, from userid 1001) id C7706B841; Thu, 27 Nov 2008 14:46:58 +0100 (CET) Date: Thu, 27 Nov 2008 14:46:58 +0100 From: Dominik Meister To: freebsd-questions@freebsd.org Message-ID: <20081127134658.GA31551@mercury.meisternet.ch> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6c2NcOVqGQ03X4Wi" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Re: process always running X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 14:03:27 -0000 --6c2NcOVqGQ03X4Wi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi Gian Paolo Buono [Thu, Nov 27, 2008 at 02:05:44PM +0100]: > there is a method in freebsd for restart process whenever it terminates = ? I > use in linux respawn in inittab... One possibility that comes to mind is using daemontools [0]. Should be in ports but there are probably easier ways to achieve this. [0] http://cr.yp.to/daemontools.html --=20 Dominik Meister My public GnuPG key is available at http://www.meisternet.ch/gpg.txt --6c2NcOVqGQ03X4Wi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAkkupNIACgkQVD1CCgD/XK2n+wCeL5T1qs1yTjtDzte5qOOsB+Gm 79EAn1/rNeGzpfHSmWJh3McV4RRgeu2g =OQN/ -----END PGP SIGNATURE----- --6c2NcOVqGQ03X4Wi-- From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 14:05:31 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D82E6106564A for ; Thu, 27 Nov 2008 14:05:31 +0000 (UTC) (envelope-from masoom.shaikh@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.230]) by mx1.freebsd.org (Postfix) with ESMTP id A960E8FC12 for ; Thu, 27 Nov 2008 14:05:31 +0000 (UTC) (envelope-from masoom.shaikh@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so927207rvf.43 for ; Thu, 27 Nov 2008 06:05:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=JHJNqWYvY64LV4H1ZIMeh8L2eTnlwEw6PjZh/3xpLAE=; b=mvvA1ZLocK5rdAJWFpTYCUm+TK12v/NOgqYJUsjdDw/mH89Ttvya1lkbazUxchhZ88 uxdOjVBLlt8ifGmUBuMmPP4WrlgzyYGZCKWuMxEQHQVpaZHRf3qmFQj2vDJyDA8RdIKo PFd1TRgUh9OJl5IYjQ6iGIdxsPY+PNqDrbmiI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=Khl4w+NkAhAqki8vx8turxOIS5yLx/s1CqLsngdoW948rUW4RlXaz7aSzKIuKNe4dV ITypVw0nGiVxF+tQOKGHnV+qGTd7gqcnKd3WxV79+/JLWxp2WDa4MxdnCzjbxdLAYq7I +wrz+q4TV6WYiN9GUGBchETTbTsYV2Nc9Ydg0= Received: by 10.140.162.20 with SMTP id k20mr3391391rve.218.1227794731330; Thu, 27 Nov 2008 06:05:31 -0800 (PST) Received: by 10.141.136.16 with HTTP; Thu, 27 Nov 2008 06:05:31 -0800 (PST) Message-ID: Date: Thu, 27 Nov 2008 14:05:31 +0000 From: "Masoom Shaikh" To: rtan_01@yahoo.com In-Reply-To: <574653.94484.qm@web56507.mail.re3.yahoo.com> MIME-Version: 1.0 References: <574653.94484.qm@web56507.mail.re3.yahoo.com> Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "questions@FreeBSD.org" Subject: Re: Installing FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 14:05:31 -0000 On Thu, Nov 27, 2008 at 3:11 AM, Rommel Tan wrote: > questions@FreeBSD.org questions@FreeBSD.org > Dear Sir/Madam: > Pleasant day! > First of all, sorry if this enquiry shouldn't be directed to you, please > help me direct to the right person. > Few months ago I've purchase a FreeBSD book which includes an installatio= n > DVD for FreeBSD 6.1. I tried to install it in my Toshiba Satellite, Intel > Centrino with current Windows XP SP3 OS after doing some partition. But, = I'm > stock with boot error; sorry I'm very new to this system; I tried to sear= ch > for an answer but no to avail. > Here is the last part of the error: > ..... > Pci6: on pcib2 > Pci6: at device 2.0 (no driver attached) > Cbb0: eme 0x8007000-0xb8007fff irq 16 at device 4.0 = on > pci6 > Cardbus0: on cbb0 > Pccard0: <16-bit PCCard> on cbb0 > Fwohci0: <1394 Open Host Controller Interface> mem > 0xb8008000-0xb80087ff,0xb800000-0xb8003fff irq 18 at device 4.2 on pci6 > Fwohci0: OHCI version 1.10 (ROM=3D0) > Fwohci0: No. Of Isochronous channels is 4. > Fwohci0: EUI64 00:02:3f:58:69:40:a5:e6 > NMI ISA b0, EISA ff > RAM parity error, likely hardware failure. the above line is very clear to me. RAM is gone. Then it implies u cannot boot XP on this machine, can you ? > > Fatal trap 19: non-maskable interrupt trap while in kernel mode > Instruction pointer =3D 0x20:0xc0528586 > Stack pointer =3D 0x28:0xc10209c4 > Frame pointer =3D 0x28:0xc10209d8 > Code segment =3D base 0x0, limit 0xfffff, type 0x1b > =3D DPL 0, pres 1, def32 = 1, > gran 1 > Processor eflags =3D interrupt enable, IOPL =3D 0 > Current process =3D 0 (swapper) > Trap number =3D 19 > Panic: non-maskable interrupt trap > Uptime: 1s > Automatic reboot in 15 seconds =96 press a key on the console to abort > > Hope you can enlighten me on this matter. > Thank you and more power! > > Best Regards, > RommelTan > > > -------------------------------------------------------------------------= ------ > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > The information contained in this Internet message is confidential and > intended only for the use of the individual or entity identified. If > the reader of this message is not the intended recipient, any > dissemination, distribution or copying of the information contained in > this Internet message is strictly prohibited. If you received this > message in error, please notify the sender (rtan_01@yahoo.com) > immediately. > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 14:10:22 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53E3C1065674 for ; Thu, 27 Nov 2008 14:10:22 +0000 (UTC) (envelope-from rock_on_the_web@comcen.com.au) Received: from mail.unitedinsong.com.au (202-172-126-254.cpe.qld-1.comcen.com.au [202.172.126.254]) by mx1.freebsd.org (Postfix) with ESMTP id 084128FC1F for ; Thu, 27 Nov 2008 14:10:21 +0000 (UTC) (envelope-from rock_on_the_web@comcen.com.au) Received: from [192.168.0.175] (unknown [192.168.0.175]) by mail.unitedinsong.com.au (Postfix) with ESMTP id 72BEA407A for ; Fri, 28 Nov 2008 00:10:54 +1000 (EST) From: Da Rock To: freebsd-questions@freebsd.org In-Reply-To: References: <1227792354.3603.21.camel@laptop1.herveybayaustralia.com.au> Content-Type: text/plain Date: Fri, 28 Nov 2008 00:10:42 +1000 Message-Id: <1227795042.3603.26.camel@laptop1.herveybayaustralia.com.au> Mime-Version: 1.0 X-Mailer: Evolution 2.12.3 (2.12.3-5.fc8) Content-Transfer-Encoding: 7bit Subject: Re: APIC error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 14:10:22 -0000 On Thu, 2008-11-27 at 14:32 +0100, Ivan Voras wrote: > Da Rock wrote: > > > I know the system is failing because I'm getting usb enumeration errors > > (something that has come up twice before on dying systems, and has > > disappeared as soon as I bought a new one), plus acpi errors in the form > > of being unable to attach device data. > > > > I understand this software unable to cope with interrupts at the cpu, > > and can mean hardware failure or bad software. But given my hardware > > issues I'm fairly certain its the former. My biggest question is where? > > How does it come up with something like that? > > > > Can anyone shed some light on the details of this? I'll be greatful for > > whatever I can get- information is power after all. > > This is too little information for general troubleshooting, except if > someone has encountered this exact problem before. > > From your description, especially since you're suggesting a hardware > failure, it could be anything from BIOS or BIOS "CMOS" error (or > battery) to real hardware problems in the conductors to the buses. > Would this be in the cpu itself or in the mainboard (best guess)? If its the cpu it could be from overheating (could the cpu alone cause all these errors?), but mainboard would mean an inherent communication problem wouldn't it? This really is a hardware issue any way you look at it I know, but a better understanding of what is going on might clarify what we're up against here... cheers guys :) From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 14:14:46 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0ED611065670 for ; Thu, 27 Nov 2008 14:14:46 +0000 (UTC) (envelope-from alex34live@gmail.com) Received: from ti-out-0910.google.com (ti-out-0910.google.com [209.85.142.188]) by mx1.freebsd.org (Postfix) with ESMTP id 93BB28FC14 for ; Thu, 27 Nov 2008 14:14:45 +0000 (UTC) (envelope-from alex34live@gmail.com) Received: by ti-out-0910.google.com with SMTP id a1so669674tib.3 for ; Thu, 27 Nov 2008 06:14:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :mime-version:content-type:x-mailer:thread-index:x-mimeole :message-id; bh=hjwi4S+sIOgJjtzD2qAQykKRzjwIb0nWH2tW4lqkZRA=; b=DT9ebHW8hT3wVJldmUOrIjfb6WLzto1+fAT3NIIRrxESjnjRyQIwiMDdq8lRKJXL1Q X8fjO4I+6ztR9dQQNeoczgU2VTQES6AqqPuElB5AzE/4dWOTmU5vZxj8ozj4Wyh1dKJJ Qh8P6TSOUE9TOlolxIx9tgyn7kgGW2kauFH5o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:mime-version:content-type:x-mailer :thread-index:x-mimeole:message-id; b=mW8KHqn1sT0sreekAyfPODXF/2dXOGz8LB7CjX1j3B3xzi8nItyuJAMpJuw4VgRvS4 /+wvkVsY8gxyCpLm1h9VrmICLAOScy4uALedegEr+YEpZfWCE2y+gKc7kjvKckSCHeZz yBQqPOQzs2E/EYKhSKr7eazDrDs8bbhQB+B3o= Received: by 10.110.47.9 with SMTP id u9mr10324524tiu.51.1227795284194; Thu, 27 Nov 2008 06:14:44 -0800 (PST) Received: from inb ([123.113.97.90]) by mx.google.com with ESMTPS id 22sm971824tim.7.2008.11.27.06.14.42 (version=SSLv3 cipher=RC4-MD5); Thu, 27 Nov 2008 06:14:43 -0800 (PST) From: "Alex" To: "'Questions'" Date: Thu, 27 Nov 2008 22:14:40 +0800 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AclQmnyR5Tr8YInsRJOCZbMGBNk4bg== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3350 Message-ID: <492eab53.160d6e0a.754a.772a@mx.google.com> Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: How to install RPM file on FreeBSD? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 14:14:46 -0000 Hi. Dear All Could you pls let me know how to install file that the format is RPM on FreeBSD. Because I want to install a Virtual Machine which name is "VMware Workstation for Linux" on FreeBSD? But there only RPM has been published. So pls kindly help me deal with this case. Thanks. BR Alex From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 14:23:33 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDCE8106564A for ; Thu, 27 Nov 2008 14:23:33 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id A0B7D8FC17 for ; Thu, 27 Nov 2008 14:23:33 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1L5hmD-0006r3-6j for freebsd-questions@freebsd.org; Thu, 27 Nov 2008 14:23:29 +0000 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 27 Nov 2008 14:23:29 +0000 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 27 Nov 2008 14:23:29 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Ivan Voras Date: Thu, 27 Nov 2008 15:23:20 +0100 Lines: 33 Message-ID: References: <1227792354.3603.21.camel@laptop1.herveybayaustralia.com.au> <1227795042.3603.26.camel@laptop1.herveybayaustralia.com.au> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig8DA2BC206BC01B01208AD88E" X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Thunderbird 2.0.0.18 (X11/20081125) In-Reply-To: <1227795042.3603.26.camel@laptop1.herveybayaustralia.com.au> X-Enigmail-Version: 0.95.0 Sender: news Subject: Re: APIC error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 14:23:34 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig8DA2BC206BC01B01208AD88E Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Da Rock wrote: > Would this be in the cpu itself or in the mainboard (best guess)? If it= s > the cpu it could be from overheating (could the cpu alone cause all > these errors?), but mainboard would mean an inherent communication > problem wouldn't it? If you can look up the CPU temperature in your BIOS setup, you can easily see if the CPU is overheating - reboot and look it up immediately after the problems start. --------------enig8DA2BC206BC01B01208AD88E Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJLq1YldnAQVacBcgRAuTKAKDHIssS+xWl//983FghVK/8lr3FWACghI+K cwtHQWuKzkSocXyXDGkiQqA= =QZLv -----END PGP SIGNATURE----- --------------enig8DA2BC206BC01B01208AD88E-- From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 14:23:39 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8AFE1065673 for ; Thu, 27 Nov 2008 14:23:39 +0000 (UTC) (envelope-from jonathan@hst.org.za) Received: from hermes.hst.org.za (onix.hst.org.za [209.203.2.133]) by mx1.freebsd.org (Postfix) with ESMTP id 10DEC8FC18 for ; Thu, 27 Nov 2008 14:23:38 +0000 (UTC) (envelope-from jonathan@hst.org.za) Received: from sysadmin.hst.org.za (sysadmin.int.dbn.hst.org.za [10.1.1.20]) (authenticated bits=0) by hermes.hst.org.za (8.13.8/8.13.8) with ESMTP id mARECBRA086093 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 27 Nov 2008 16:12:12 +0200 (SAST) (envelope-from jonathan@hst.org.za) From: Jonathan McKeown Organization: Health Systems Trust To: freebsd-questions@freebsd.org Date: Thu, 27 Nov 2008 16:23:48 +0200 User-Agent: KMail/1.9.7 References: <20081127134658.GA31551@mercury.meisternet.ch> In-Reply-To: <20081127134658.GA31551@mercury.meisternet.ch> X-Face: $@VrUx^RHy/}yu]jKf/<4T%/d|F+$j-Ol2"2J$q+%OK1]&/G_S9(=?utf-8?q?HkaQ*=60!=3FYOK=3FY!=27M=60C=0A=09aP=5C9nVPF8Q=7DCilHH8l=3B=7E!4?= =?utf-8?q?2HK6=273lg4J=7Daz?=@1Dqqh:J]M^"YPn*2IWrZON$1+G?oX3@ =?utf-8?q?k=230=0A=0954XDRg=3DYn=5FF-etwot4U=24b?=dTS{i X-Spam-Score: -4.21 () ALL_TRUSTED,AWL,BAYES_00 X-Scanned-By: MIMEDefang 2.61 on 209.203.2.133 Subject: Re: process always running X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 14:23:39 -0000 On Thursday 27 November 2008 15:46:58 Dominik Meister wrote: > Hi > > Gian Paolo Buono [Thu, Nov 27, 2008 at 02:05:44PM +0100]: > > there is a method in freebsd for restart process whenever it terminates > > ? I use in linux respawn in inittab... > > One possibility that comes to mind is using daemontools [0]. Should be > in ports but there are probably easier ways to achieve this. I've never tried it, but according to the manpage for init(8) you can get the same effect as a respawn entry in a sysV inittab by putting the command in /etc/ttys. Perhaps someone who's done it could comment? Jonathan From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 14:28:05 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31A931065677 for ; Thu, 27 Nov 2008 14:28:05 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from bsdevel.alaskaparadise.com (bsdevel.alaskaparadise.com [208.86.224.193]) by mx1.freebsd.org (Postfix) with ESMTP id 0D4A88FC18 for ; Thu, 27 Nov 2008 14:28:05 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from stargate.alaskaparadise.com (172-67-237-24.gci.net [24.237.67.172]) by bsdevel.alaskaparadise.com (Postfix) with ESMTP id 8D5EA28E1281; Thu, 27 Nov 2008 14:28:04 +0000 (UTC) From: Beech Rintoul Organization: FreeBSD To: michael Date: Thu, 27 Nov 2008 05:28:03 -0900 User-Agent: KMail/1.10.1 (FreeBSD/8.0-CURRENT; KDE/4.1.1; i386; ; ) References: <492E32C5.9070204@gmail.com> <200811262120.58753.> <492EA433.7060507@gmail.com> In-Reply-To: <492EA433.7060507@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811270528.03987.beech@freebsd.org> Cc: freebsd-questions@freebsd.org Subject: Re: make release of current X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 14:28:05 -0000 On Thursday 27 November 2008 04:44:19 michael wrote: > Beech Rintoul wrote: > > On Wednesday 26 November 2008 20:40:21 michael wrote: > >> will make release work for current? i've built a nice working system > >> that i would like to be able to install on several identical machines. > > > > Yes, but read all the docs completely there are a number of options you > > need, like telling it to use your source tree instead of CVS and if you > > want to build packages etc. > > > > Beech > > Thanks, I've made a release before.. a long while ago in a galaxy far > away... I was just wondering if current would work the same. > Also, is it possible to make an iso containing a multi release? ie: i386 > and amd64? Technically, but you'd have to burn it to a DVD and figure out how to choose which to boot from. There are people combining all three to a DVD, but I haven't built a release in awhile myself and have never tried making it into a DVD. Burning a -CURRENT release is no problem, just source it from your src tree. It's really no different than burning a regular release. There's no problem burning both iso's the problem will be the boot sector. Beech -- --------------------------------------------------------------------------------------- Beech Rintoul - FreeBSD Developer - beech@FreeBSD.org /"\ ASCII Ribbon Campaign | FreeBSD Since 4.x \ / - NO HTML/RTF in e-mail | http://people.freebsd.org/~beech X - NO Word docs in e-mail | Skype: akbeech / \ - http://www.FreeBSD.org/releases/7.0R/announce.html --------------------------------------------------------------------------------------- From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 14:42:56 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14555106564A for ; Thu, 27 Nov 2008 14:42:56 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail6.sea5.speakeasy.net (mail6.sea5.speakeasy.net [69.17.117.8]) by mx1.freebsd.org (Postfix) with ESMTP id DFC1F8FC08 for ; Thu, 27 Nov 2008 14:42:55 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 6433 invoked from network); 27 Nov 2008 14:42:55 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail6.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 27 Nov 2008 14:42:55 -0000 Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.6]) by be-well.ilk.org (Postfix) with ESMTP id 9892D50822; Thu, 27 Nov 2008 09:42:51 -0500 (EST) Received: by lowell-desk.lan (Postfix, from userid 1147) id 7DFAB1D008; Thu, 27 Nov 2008 09:42:50 -0500 (EST) To: "Davenport\, Steve M" References: From: Lowell Gilbert Date: Thu, 27 Nov 2008 09:42:50 -0500 In-Reply-To: (Steve M. Davenport's message of "Tue\, 25 Nov 2008 12\:01\:26 -0500") Message-ID: <44zljl9qmt.fsf@lowell-desk.lan> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: SNMPD Consuming Swap Space X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 14:42:56 -0000 "Davenport, Steve M" writes: > Hello, > > I am running snmpd 5.4.1.2 built from a port on 7-Release, hardware is > Sun V100, 512Mb total memory, 381Mb free. The daemon starts fine. When a > snmpwalk is done from another system all is well until the interface > table and then I see: > > interfaces.ifTable.ifEntry.ifSpeed.1 : Gauge32: 10000000 > interfaces.ifTable.ifEntry.ifSpeed.2 : Gauge32: 0 > interfaces.ifTable.ifEntry.ifSpeed.3 : Gauge32: 0 > snmpwalk: No response arrived before timeout. > > After the timeout happens, looking at "swapinfo -k" shows that swap > space is continually consumed until empty at which point the snmpd > daemon is stopped: > > fbsdh# swap_pager: out of swap space > swap_pager_getswapspace(16): failed > Nov 25 11:44:08 fbsdh kernel: pid 84674 (snmpd), uid 0, was killed: out > of swap space > > Now the swap space is freeded: > fbsdh# swapinfo -k > Device 1K-blocks Used Avail Capacity > /dev/ad0b 2099160 26456 2072704 1% > > Has anyone seen this issue or know of a solution. Since you're running the SNMP daemon from a port, not the one from the base system, you may need developers' assistance for this sort of bug. Problems like this are often caused by wraparound bugs or infinite loops in my experience, although there are lots of other possibilities. If you can get a stack traceback when it crashes, that will is quite likely to give a solid clue. -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 14:52:50 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FC37106564A for ; Thu, 27 Nov 2008 14:52:50 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail6.sea5.speakeasy.net (mail6.sea5.speakeasy.net [69.17.117.8]) by mx1.freebsd.org (Postfix) with ESMTP id 665518FC14 for ; Thu, 27 Nov 2008 14:52:50 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 1765 invoked from network); 27 Nov 2008 14:52:48 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail6.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 27 Nov 2008 14:52:48 -0000 Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.6]) by be-well.ilk.org (Postfix) with ESMTP id 46DD55087F; Thu, 27 Nov 2008 09:52:45 -0500 (EST) Received: by lowell-desk.lan (Postfix, from userid 1147) id 9B3E41CE25; Thu, 27 Nov 2008 09:52:44 -0500 (EST) To: FuLLBLaSTstorm References: <6c51dbb10811262310u17540891nb2f9889c3fbe3180@mail.gmail.com> <6c51dbb10811262334q4bfa044eia7b2167568396861@mail.gmail.com> From: Lowell Gilbert Date: Thu, 27 Nov 2008 09:52:44 -0500 In-Reply-To: <6c51dbb10811262334q4bfa044eia7b2167568396861@mail.gmail.com> (fullblaststorm@gmail.com's message of "Thu\, 27 Nov 2008 12\:34\:40 +0500") Message-ID: <44vdu99q6b.fsf@lowell-desk.lan> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: gd-2.0.35 won't install on FreeBSD 6.0-RELEASE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 14:52:50 -0000 FuLLBLaSTstorm writes: > GD-2.0.35 fails to install on my production server saying that > GD_FONTS not found. > How can I solve this problem? How were you trying to install gd? -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 15:12:38 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 656611065676 for ; Thu, 27 Nov 2008 15:12:38 +0000 (UTC) (envelope-from michael.copeland@gmail.com) Received: from mail-qy0-f18.google.com (mail-qy0-f18.google.com [209.85.221.18]) by mx1.freebsd.org (Postfix) with ESMTP id 04C478FC0A for ; Thu, 27 Nov 2008 15:12:37 +0000 (UTC) (envelope-from michael.copeland@gmail.com) Received: by qyk11 with SMTP id 11so1289047qyk.19 for ; Thu, 27 Nov 2008 07:12:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type; bh=3wv576mPfilvjMsgSE/Fc7Bh6nMdk0/iIjEW/ywtiMI=; b=MvOhE5aTBgahyuKGgAh9XVfX/CODa5jEwvIVZS6jufsuDyi8JtpWntYoqRZ32z7UZ4 20P5QayWI0Pz54rvlh6ZeR5ralr4lH9csCrwra7YTVCnnxhRox11yoFcFnWOHaGoUC8O y4LtroaB011Uhb27+5bIZT56boyA+HL8kITNs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type; b=PV3irf4stqLEiV72UrSfngVXIfifMSlyFq+rbeo8UCrNou00BeEI7acxXi5xtgxqo7 rWBYJV1R/RGtTPo/9mFEnT2j+iZFHlziz0T+a/KD7W4oHUSYKz+q2zvyrQuTH0NFDSP3 2A9Gbv4yD+tNCTD2PcfI4znAuHHjvJlNPMB3I= Received: by 10.215.12.13 with SMTP id p13mr6892556qai.281.1227798757152; Thu, 27 Nov 2008 07:12:37 -0800 (PST) Received: from ?192.168.1.148? (adsl-074-245-053-043.sip.jax.bellsouth.net [74.245.53.43]) by mx.google.com with ESMTPS id 6sm2055175ywi.1.2008.11.27.07.12.35 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 27 Nov 2008 07:12:36 -0800 (PST) Message-ID: <492EB8E5.8030901@gmail.com> Date: Thu, 27 Nov 2008 10:12:37 -0500 From: michael User-Agent: Thunderbird 2.0.0.17 (X11/20080925) MIME-Version: 1.0 To: Beech Rintoul References: <492E32C5.9070204@gmail.com> <200811262120.58753.> <492EA433.7060507@gmail.com> <200811270528.03987.beech@freebsd.org> In-Reply-To: <200811270528.03987.beech@freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: make release of current X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 15:12:38 -0000 Beech Rintoul wrote: > On Thursday 27 November 2008 04:44:19 michael wrote: > >> Beech Rintoul wrote: >> >>> On Wednesday 26 November 2008 20:40:21 michael wrote: >>> >>>> will make release work for current? i've built a nice working system >>>> that i would like to be able to install on several identical machines. >>>> >>> Yes, but read all the docs completely there are a number of options you >>> need, like telling it to use your source tree instead of CVS and if you >>> want to build packages etc. >>> >>> Beech >>> >> Thanks, I've made a release before.. a long while ago in a galaxy far >> away... I was just wondering if current would work the same. >> Also, is it possible to make an iso containing a multi release? ie: i386 >> and amd64? >> > > Technically, but you'd have to burn it to a DVD and figure out how to choose > which to boot from. There are people combining all three to a DVD, but I > haven't built a release in awhile myself and have never tried making it into a > DVD. Burning a -CURRENT release is no problem, just source it from your src > tree. It's really no different than burning a regular release. There's no > problem burning both iso's the problem will be the boot sector. > > Beech > What do you think about using a different loader on the iso, one that will allow selection of a specific architecture? From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 15:28:00 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76BA91065674 for ; Thu, 27 Nov 2008 15:28:00 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from bsdevel.alaskaparadise.com (bsdevel.alaskaparadise.com [208.86.224.193]) by mx1.freebsd.org (Postfix) with ESMTP id 544318FC1B for ; Thu, 27 Nov 2008 15:28:00 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from stargate.alaskaparadise.com (172-67-237-24.gci.net [24.237.67.172]) by bsdevel.alaskaparadise.com (Postfix) with ESMTP id B481328E1281; Thu, 27 Nov 2008 15:27:59 +0000 (UTC) From: Beech Rintoul Organization: FreeBSD To: michael Date: Thu, 27 Nov 2008 06:27:59 -0900 User-Agent: KMail/1.10.1 (FreeBSD/8.0-CURRENT; KDE/4.1.1; i386; ; ) References: <492E32C5.9070204@gmail.com> <200811270528.03987.beech@freebsd.org> <492EB8E5.8030901@gmail.com> In-Reply-To: <492EB8E5.8030901@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811270627.59161.beech@freebsd.org> Cc: freebsd-questions@freebsd.org Subject: Re: make release of current X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 15:28:00 -0000 On Thursday 27 November 2008 06:12:37 michael wrote: > Beech Rintoul wrote: > > On Thursday 27 November 2008 04:44:19 michael wrote: > >> Beech Rintoul wrote: > >>> On Wednesday 26 November 2008 20:40:21 michael wrote: > >>>> will make release work for current? i've built a nice working system > >>>> that i would like to be able to install on several identical machines. > >>> > >>> Yes, but read all the docs completely there are a number of options you > >>> need, like telling it to use your source tree instead of CVS and if you > >>> want to build packages etc. > >>> > >>> Beech > >> > >> Thanks, I've made a release before.. a long while ago in a galaxy far > >> away... I was just wondering if current would work the same. > >> Also, is it possible to make an iso containing a multi release? ie: i386 > >> and amd64? > > > > Technically, but you'd have to burn it to a DVD and figure out how to > > choose which to boot from. There are people combining all three to a DVD, > > but I haven't built a release in awhile myself and have never tried > > making it into a DVD. Burning a -CURRENT release is no problem, just > > source it from your src tree. It's really no different than burning a > > regular release. There's no problem burning both iso's the problem will > > be the boot sector. > > > > Beech > > What do you think about using a different loader on the iso, one that > will allow selection of a specific architecture? That pretty much exactly what you would need to do. But I'm sure it could be done. I just don't have any experience making a multi-boot CD. Beech -- --------------------------------------------------------------------------------------- Beech Rintoul - FreeBSD Developer - beech@FreeBSD.org /"\ ASCII Ribbon Campaign | FreeBSD Since 4.x \ / - NO HTML/RTF in e-mail | http://people.freebsd.org/~beech X - NO Word docs in e-mail | Skype: akbeech / \ - http://www.FreeBSD.org/releases/7.0R/announce.html --------------------------------------------------------------------------------------- From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 16:05:40 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5AC4E106564A for ; Thu, 27 Nov 2008 16:05:40 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail8.sea5.speakeasy.net (mail8.sea5.speakeasy.net [69.17.117.10]) by mx1.freebsd.org (Postfix) with ESMTP id 33F9A8FC16 for ; Thu, 27 Nov 2008 16:05:40 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 8243 invoked from network); 27 Nov 2008 16:05:39 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail8.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 27 Nov 2008 16:05:39 -0000 Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.6]) by be-well.ilk.org (Postfix) with ESMTP id 6C3A450822; Thu, 27 Nov 2008 11:05:36 -0500 (EST) Received: by lowell-desk.lan (Postfix, from userid 1147) id CDAC01D008; Thu, 27 Nov 2008 11:05:34 -0500 (EST) To: Xavier Otazu References: <20081121120023.D64301065720@hub.freebsd.org> <44ej0z4lo4.fsf@be-well.ilk.org> <20081125212213.6fd1dcc1@cvc131.uab.es> From: Lowell Gilbert Date: Thu, 27 Nov 2008 11:05:34 -0500 In-Reply-To: <20081125212213.6fd1dcc1@cvc131.uab.es> (Xavier Otazu's message of "Tue\, 25 Nov 2008 21\:22\:13 +0100") Message-ID: <44r64xkvch.fsf@lowell-desk.lan> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: stas@freebsd.org, freebsd-questions@freebsd.org Subject: Re: gcc cross-compiler for linux X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 16:05:40 -0000 Xavier Otazu writes: > Thanks a lot for this link. Now I see that I need to use the > cross-gcc compiler. I've never done it; I just looked it up. I'm sure there's more information in the archives of the mailing lists, and you can always try to consult the port maintainer. > I am using Matlab inside the linux emulator, and I nedd to create some > "mex" files from matlab. In order to create these mes files, matlab > needs access to a gcc compiler that produces linux elf files. I think I > cannot use the gentoo-stage3 port, because in order to use I would need > to chroot and it is not so easy from matlab. Also, when using this > compiler I should be able to acces to the "linux"-matlab header files, > but if I "chroot" to the gentoo port I won't be able to access them. They should be inside the compat/linux tree, and therefore accessible. > I tried to install the devel/cross-gcc port, but I get errors when > compiling it. Um, fix the errors? > I have some doubts about the wiki link you sent me: > > 1) What really means "null-mount the home directory"? I google-d some > info, but I didn't find good information. What really exactly means > "corresponding entries in the passwd and shadow files are required > then"? a) "man mount_nullfs" b) I would guess that /compat/linux/etc/{passwd,shadow} need to have entries to match your /etc/master.passwd. I can't check for sure > 2) What really means "All you have to do is to compile the ports and > add includes and libs from the linux system your target in your > development"? Do I have to include the linux headers during > devel/cross-gcc port building? Or do I have to include them when > cross-compiling my code? Logically, I would think that would apply to compiling *your* code. Anything that's need to build the port should be handled by the port itself. > What options do I have to use when building the linux gcc > cross-compiler? I use I don't know; all I can tell you is that you seem to be on the right path here. > make TGTARCH=i386 TGTABI=linux install clean > > Thanks a lot for your help > > Cheers > > Xavier > > On Tue, 25 Nov 2008 15:04:27 -0500 > Lowell Gilbert wrote: > >> Xavier Otazu writes: >> >> > I would like to compile a C++ code to be executed within the linux >> > emulator. >> >> http://wiki.freebsd.org/linux-xdev Good luck. -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 16:07:36 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D253E1065672 for ; Thu, 27 Nov 2008 16:07:36 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.156]) by mx1.freebsd.org (Postfix) with ESMTP id 5E33A8FC08 for ; Thu, 27 Nov 2008 16:07:36 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so660213fgb.35 for ; Thu, 27 Nov 2008 08:07:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=oP8553QbjTJNyjo7JFQ8c7KqAeI1S9qjXtl1KdYOBts=; b=W0WUAAjLDmBg5SnwGZ8uY53mrOLsDlH594/oylXDs25CxQqmqVTIolwNR7WEfAsWcv tt8ZJn9buOf8SRljQKiyRsRaXXc2yeTrXySIKjAGx5IGMnWbDXb15wgYssAGFqRSGdxP 4UK9ns1fUu3IGws4h22nHd1c2fKuRWP1Qqk3I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=ktPXKGsi8WIkXsI1m3Wni7I5zXCFkEt6l+bA4E7yAdBNk/OpRwR1QxVxCoL0qpn81r ++9F+AAZd2m20Z8LEocWw+7zV3CKTkDlXni0b3KdXPQtcngMQz1IxjQdcs/7h3lb/CW+ tM1QJmlChDD+rfneH6Sb+33K1VJ41gtlgBcIs= Received: by 10.181.154.16 with SMTP id g16mr2384433bko.179.1227802054696; Thu, 27 Nov 2008 08:07:34 -0800 (PST) Received: by 10.181.31.13 with HTTP; Thu, 27 Nov 2008 08:07:34 -0800 (PST) Message-ID: <28283d910811270807h175e630eh2ba48f91d40fcd8e@mail.gmail.com> Date: Thu, 27 Nov 2008 11:07:34 -0500 From: "matt donovan" To: Alex In-Reply-To: <492eab53.160d6e0a.754a.772a@mx.google.com> MIME-Version: 1.0 References: <492eab53.160d6e0a.754a.772a@mx.google.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Questions Subject: Re: How to install RPM file on FreeBSD? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 16:07:36 -0000 On Thu, Nov 27, 2008 at 9:14 AM, Alex wrote: > Hi. Dear All > > > > Could you pls let me know how to install file that the format is RPM on > FreeBSD. > > Because I want to install a Virtual Machine which name is "VMware > Workstation for Linux" on FreeBSD? But there only RPM has been published. > So > pls kindly help me deal with this case. Thanks. > > > > BR > > Alex > > > > > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" newer VMware Workstations do not work on FreeBSD. Have to use an older one of use virtualbox which works to a point. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 16:14:58 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 592101065672 for ; Thu, 27 Nov 2008 16:14:58 +0000 (UTC) (envelope-from eitanadlerlist@gmail.com) Received: from rn-out-0910.google.com (rn-out-0910.google.com [64.233.170.189]) by mx1.freebsd.org (Postfix) with ESMTP id 03DDF8FC12 for ; Thu, 27 Nov 2008 16:14:57 +0000 (UTC) (envelope-from eitanadlerlist@gmail.com) Received: by rn-out-0910.google.com with SMTP id j71so881872rne.12 for ; Thu, 27 Nov 2008 08:14:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:user-agent :mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:openpgp:content-type:content-transfer-encoding :from; bh=EfQG6gP2Y5qMl0Z/5FcWFjKafZVjHh3qH2eRzIst2NM=; b=W1oCUCPklGJKfnr1JOTZ4cMkFPTEA3t8ErXwb8JMwr6fvhPm7A0XqsnEMJ1jzD5xDY HFQdc6du9a0PdTUrHBO8hI7T9Zqh73otbO8rKkhYbyDmyis3ezue3CEAjTj8fjcFtPlx 0W6Jjdgqq71VGCEjplQjeWEWSs9aIcSpplLPM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:user-agent:mime-version:to:cc:subject:references :in-reply-to:x-enigmail-version:openpgp:content-type :content-transfer-encoding:from; b=FJNfpRetuTruBBAucKJjIkm5sUdnf/6/EaeOazlHoN90o398ceUFlW2WGBzGxQm4fI 1a2x4cJCfvmjdRQgogKx67l8/yJ3z5f1n+qi8z+YPVat8JfExUW01afknNxKc9ou0IjE H0Kip8vN2RPLSRjG57/7z/O/OrLLtoA6cOgXA= Received: by 10.90.71.16 with SMTP id t16mr4058136aga.26.1227802496906; Thu, 27 Nov 2008 08:14:56 -0800 (PST) Received: from ?192.168.1.101? (ool-182d26f3.dyn.optonline.net [24.45.38.243]) by mx.google.com with ESMTPS id 9sm5770agc.31.2008.11.27.08.14.55 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 27 Nov 2008 08:14:56 -0800 (PST) Message-ID: <492EC77A.5050403@gmail.com> Date: Thu, 27 Nov 2008 11:14:50 -0500 User-Agent: Mozilla (X11; U; FreeBSD i386; en-US; ) Gecko Thunderbird Mnenhy/0.7.5.666 MIME-Version: 1.0 To: Kris Kennaway References: <20081116125622.E24752@wojtek.tensor.gdynia.pl> <20081117172100.GB43367@hub.freebsd.org> <20081117210649.GE63818@hub.freebsd.org> In-Reply-To: <20081117210649.GE63818@hub.freebsd.org> X-Enigmail-Version: 0.95.7 OpenPGP: id=E9C2CCD1; url=pgp.mit.edu Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit From: Eitan Adler Cc: Wojciech Puchar , Masoom Shaikh , freebsd-questions@freebsd.org Subject: Re: large binary, why not strip ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 16:14:58 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Kris Kennaway wrote: > On Mon, Nov 17, 2008 at 06:40:34PM +0000, Masoom Shaikh wrote: >> On Mon, Nov 17, 2008 at 5:21 PM, Kris Kennaway wrote: >> >>> On Sun, Nov 16, 2008 at 12:56:31PM +0100, Wojciech Puchar wrote: >>>>> most of the programs installed from ports have large binary size on disk >>>>> >>>>> stripping em all reduces their size dramatically >>>>> >>>>> I cannot see the reason for not stripping them by default ? >>>> me too >>>>> do I miss anything ? >>>> no. >>> I am confused why both of you are seeing "most" of the programs >>> installed this way. Can you confirm that this is true and not just an >>> exaggeration? >>> >>> As Matthew says, there are some ports that fail to strip their >>> binaries because of how they install files (using cp etc). These are >>> bugs that should be reported to their maintainers on a case by case >>> basis. >>> >>> Kris >>> >>> -- >>> In God we Trust -- all others must submit an X.509 certificate. >>> -- Charles Forsythe >>> >> Before sending mail I manually stripped * in /usr/local/bin >> >> else I cud send u the o/p of `ls -lhS` >> >> yes, "most" is bit exaggerated...I perhaps was talking about first five >> >> binaries listed in increasing order of size... > > Yeah the largest binaries are likely to be unstripped. You can use > pkg_which (part of portupgrade) to work out which ports they came > from, then send the mainainer a polite email and/or PR request that > they be installed stripped. > > Bonus points if you come up with a patch to do this: in most cases it > will be a simple matter of changing the port's do-install: target to > use INSTALL_* macros instead of cp/bsdtar etc. This would be a good > project to get some familiarity with the ports tree. > I was going to do some work on this except $file *|grep "not stripped" $ - -- Eitan Adler GNU Key fingerptrint: 2E13 BC16 5F54 0FBD 62ED 42B6 B65F 24AB E9C2 CCD1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkux3oACgkQtl8kq+nCzNEWwgCglRkz0Il3/bLJazVszuRf69f1 pegAoI/paoyYAz4hqRZhdWuUb6WJk+tK =fGB3 -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 16:23:32 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C91051065672 for ; Thu, 27 Nov 2008 16:23:32 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id F0D688FC1A for ; Thu, 27 Nov 2008 16:23:31 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mARGNMO6001840; Thu, 27 Nov 2008 17:23:22 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mARGNKMB001837; Thu, 27 Nov 2008 17:23:22 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 27 Nov 2008 17:23:20 +0100 (CET) From: Wojciech Puchar To: Manolis Kiagias In-Reply-To: <492EA421.8090800@gmail.com> Message-ID: <20081127172240.S1834@wojtek.tensor.gdynia.pl> References: <492E32C5.9070204@gmail.com> <492EA421.8090800@gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Rick Janssen , "freebsd-questions@freebsd.org" Subject: Re: Filesystem problems at boot and shutdown? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 16:23:32 -0000 >>>> Nov 26 20:48:11 server kernel: ad4: WARNING - WRITE_DMA48 UDMA ICRC error >>>> (retrying request) LBA=1364750271 >>>> Nov 26 20:48:11 server kernel: ad4: FAILURE - WRITE_DMA48 >>>> status=51 error=4 LBA=1364750271 >>>> Nov 26 20:48:11 server kernel: >>>> g_vfs_done():ad4s1g[WRITE(offset=682932174848, length=131072)]error = 5 cabling problems or disk overheating (or controller) or failed disk. ICRC error suggest that it's rather cabling problem. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 16:39:17 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F227B1065670 for ; Thu, 27 Nov 2008 16:39:17 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7]) by mx1.freebsd.org (Postfix) with ESMTP id CBEF88FC16 for ; Thu, 27 Nov 2008 16:39:17 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 1509 invoked from network); 27 Nov 2008 16:39:17 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 27 Nov 2008 16:39:17 -0000 Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.6]) by be-well.ilk.org (Postfix) with ESMTP id C870250822; Thu, 27 Nov 2008 11:39:12 -0500 (EST) Received: by lowell-desk.lan (Postfix, from userid 1147) id 2C6851CE69; Thu, 27 Nov 2008 11:39:11 -0500 (EST) To: "Andrew Gould" References: From: Lowell Gilbert Date: Thu, 27 Nov 2008 11:39:11 -0500 In-Reply-To: (Andrew Gould's message of "Tue\, 25 Nov 2008 14\:24\:22 -0600") Message-ID: <44myflktsg.fsf@lowell-desk.lan> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: FreeBSD Questions Mailing List Subject: Re: port/package versions related to 7.1 RELEASE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD Questions Mailing List List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 16:39:18 -0000 "Andrew Gould" writes: > I noted that port packages are already on FreeBSD's ftp sites for 7.1 > RELEASE. > > Does this mean that the ports and packages included in 7.1 BETA2 > installation CD's will be the same ones distributed with 7.1 RELEASE? Or > will the ports remain a moving target until RELEASE? The ports tree has been "tagged" for the 7.1 release. This doesn't mean that the tags can't be moved if there's a good enough reason before the release, but by and large the ports that will go out with 7.1 won't change. -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 16:42:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 371D91065673 for ; Thu, 27 Nov 2008 16:42:45 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail4.sea5.speakeasy.net (mail4.sea5.speakeasy.net [69.17.117.6]) by mx1.freebsd.org (Postfix) with ESMTP id 10E488FC2D for ; Thu, 27 Nov 2008 16:42:45 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 12767 invoked from network); 27 Nov 2008 16:42:44 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail4.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 27 Nov 2008 16:42:44 -0000 Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.6]) by be-well.ilk.org (Postfix) with ESMTP id 4AE0050822; Thu, 27 Nov 2008 11:42:40 -0500 (EST) Received: by lowell-desk.lan (Postfix, from userid 1147) id F33FE1CE25; Thu, 27 Nov 2008 11:42:38 -0500 (EST) to: Pieter Donche References: From: Lowell Gilbert Date: Thu, 27 Nov 2008 11:42:38 -0500 In-Reply-To: (Pieter Donche's message of "Wed\, 26 Nov 2008 16\:59\:40 +0100 \(CET\)") Message-ID: <44fxldktmp.fsf@lowell-desk.lan> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: KDM stopping X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 16:42:45 -0000 Pieter Donche writes: > FreeBSD-7.0-RELEASE, with KDE as desktop environment and KDM as > display manager. > > I have 2 users, say user1 and user2. > Boot, KDM login as user1, OK. > Then I do a close session. > OK, KDM presents me again with the KDM login screen, login as user2, OK. > Then again, close session. > Now, the KDM login screen does not come back. I am stuck with > a cursor blinking at the upper left corner. > Ctrl-Alt-F1 brings me to the console, Ctrl-Alt-F7: no X, just a > login:prompt > > If I reboot and do the same thing, but now first with user2, then user1 > -> exactly same behaviour (X dies at the second close session). So, > it's not connected with user2. > > Anyone a idea what could be wrong? Below are some log details: Does this happen with xdm as well? Have you checked with the FreeBSD kde mailing list? > > The /var/log/kdm-log shows: > ------ > ... > X.Org X Server 1.4.0 > Release Date: 5 September 2007 > X Protocol Version 11, Revision 0 > Build Operating System: FreeBSD 7.0-RELEASE i386 > Current Operating System: FreeBSD pclinwi74.cmi.ua.ac.be 7.0-RELEASE FreeBSD 7. > 0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 root@logan.cse.buffalo.edu:/usr/ > obj/usr/src/sys/GENERIC i386 > Build Date: 13 February 2008 05:50:12PM > > Before reporting problems, check http://wiki.x.org > to make sure that you have the latest version. > Module Loader present > Markers: (--) probed, (**) from config file, (==) default setting, > (++) from command line, (!!) notice, (II) informational, > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. > (==) Log file: "/var/log/Xorg.0.log", Time: Wed Nov 26 16:27:31 2008 > (EE) Unable to locate/open config file > New driver is "i810" > (==) Using default built-in configuration (55 lines) > (EE) Failed to load module "fbdev" (module does not exist, 0) > (II) Module "ddc" already built-in > (II) Module "ramdac" already built-in > FreeFontPath: FPE "/usr/local/lib/X11/fonts/misc/" refcount is 2, should be 1; > fixing. > FreeFontPath: FPE "/usr/local/lib/X11/fonts/misc/" refcount is 2, should be 1; > fixing. > (EE) I810(0): V_BIOS address 0x0 out of range > > Fatal server error: > Caught signal 11. Server aborting > > > X.Org X Server 1.4.0 > Release Date: 5 September 2007 > X Protocol Version 11, Revision 0 > Build Operating System: FreeBSD 7.0-RELEASE i386 > Current Operating System: FreeBSD pclinwi74.cmi.ua.ac.be 7.0-RELEASE FreeBSD 7. > 0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 root@logan.cse.buffalo.edu:/usr/ > obj/usr/src/sys/GENERIC i386 > Build Date: 13 February 2008 05:50:12PM > > > Before reporting problems, check http://wiki.x.org > to make sure that you have the latest version. > Module Loader present > Markers: (--) probed, (**) from config file, (==) default setting, > (++) from command line, (!!) notice, (II) informational, > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. > (==) Log file: "/var/log/Xorg.0.log", Time: Wed Nov 26 16:43:42 2008 > (EE) Unable to locate/open config file > New driver is "i810" > (==) Using default built-in configuration (55 lines) > (EE) Failed to load module "fbdev" (module does not exist, 0) > (EE) I810(0): V_BIOS address 0x0 out of range > (EE) I810(0): VBE initialization failed. > (EE) Screen(s) found, but none have a usable configuration. > > Fatal server error: > no screens found > ------- > > /var/log/messages contains: > ---------- > ...... > Nov 26 16:29:03 pclinwi74 kernel: pid 853 (Xorg), uid 0: exited on signal 11 (c > ore dumped) > Nov 26 16:29:03 pclinwi74 kdm-bin[850]: X server for display :0 terminated unex > pectedly > Nov 26 16:29:03 pclinwi74 kdm-bin: :0[1137]: IO Error in XOpenDisplay > Nov 26 16:29:03 pclinwi74 kdm-bin[850]: Display :0 cannot be opened > Nov 26 16:29:03 pclinwi74 kdm-bin[850]: Unable to fire up local display :0; dis > abling. > Nov 26 16:29:30 pclinwi74 login: ROOT LOGIN (root) ON ttyv0 > Nov 26 16:43:40 pclinwi74 shutdown: reboot by root: > Nov 26 16:43:42 pclinwi74 kdm-bin[850]: X server for display :0 terminated unex > pectedly > Nov 26 16:43:42 pclinwi74 kdm-bin[850]: Unable to fire up local display :0; dis > abling. > Nov 26 16:43:42 pclinwi74 syslogd: exiting on signal 15 > -------- > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 17:27:12 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BBE31065672 for ; Thu, 27 Nov 2008 17:27:12 +0000 (UTC) (envelope-from apseudoutopia@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.174]) by mx1.freebsd.org (Postfix) with ESMTP id 144588FC17 for ; Thu, 27 Nov 2008 17:27:11 +0000 (UTC) (envelope-from apseudoutopia@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so1095546wfg.7 for ; Thu, 27 Nov 2008 09:27:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=3NUVhSxmSllqxJ+5R3gAl9ELWXD/owKHWFdcTV5L/kY=; b=Iu459H75SEfzOgzkpTD4ELA0XW05qUgZ1mYyCmUJTvsirylEP4NSGzKaSdNjbeVhI2 5CHhBJu0fsrL/7CYYq6c7gnVUj+xvgdGoBGSjc4i91YXBBM/cB/LS0aEgojlDeZOdfdj nCQDZ9ad4qJXlgGa3CISmdJwqa/W3nceztyF4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=G8v1SFpd4HLCncqTWkx37qiIXiTmX1LyLQOsGvWYvoagXpH8wyncxN3/AkhGptUSdj uhQfvOWPdy3oMQ9FbdmLx0NrH9KlM0GdGuh9ZDs5ikRJtv46xu9epXmdCtpz14X1ZPUG 1OHvQHA2QaWGL/x45bIkh2zwso9K9u3eH3vt4= Received: by 10.142.172.12 with SMTP id u12mr3025840wfe.285.1227806831573; Thu, 27 Nov 2008 09:27:11 -0800 (PST) Received: by 10.143.115.9 with HTTP; Thu, 27 Nov 2008 09:27:06 -0800 (PST) Message-ID: <27ade5280811270927o1aa1bdeem320ffba24e70814d@mail.gmail.com> Date: Thu, 27 Nov 2008 12:27:06 -0500 From: APseudoUtopia To: Fbsd1 In-Reply-To: <492E60A8.6080105@a1poweruser.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <492E60A8.6080105@a1poweruser.com> Cc: freebsd-questions@freebsd.org Subject: Re: pf or ipf rules to allow p2p Limewire through X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 17:27:12 -0000 On Thu, Nov 27, 2008 at 3:56 AM, Fbsd1 wrote: > What pf or ipf firewall keep-state rules needed to allow p2p application > such as limewire through? Using same firewall rules as in handbook example. Well, what port does limewire use? You need to figure out what port each application uses, then open the port in your firewall rules. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 17:31:08 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96C64106564A for ; Thu, 27 Nov 2008 17:31:08 +0000 (UTC) (envelope-from jlalarcon@gawab.com) Received: from info15.gawab.com (mailhost13.gawab.com [66.220.20.13]) by mx1.freebsd.org (Postfix) with SMTP id 720968FC12 for ; Thu, 27 Nov 2008 17:31:08 +0000 (UTC) (envelope-from jlalarcon@gawab.com) Received: (qmail 9354 invoked by uid 1004); 27 Nov 2008 17:04:27 -0000 Received: from unknown (HELO Atlantis.lordofunix.org) (jlalarcon@gawab.com@89.131.189.24) by gawab.com with SMTP; 27 Nov 2008 17:04:27 -0000 X-Trusted: Whitelisted Date: Thu, 27 Nov 2008 18:04:19 +0100 From: Jose Luis Alarcon Sanchez To: freebsd-questions@freebsd.org Message-Id: <20081127180419.363ad2e2.jlalarcon@gawab.com> X-Mailer: Sylpheed 2.5.0 (GTK+ 2.12.11; i386-portbld-freebsd6.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Enlightenment 17 and KDM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 17:31:08 -0000 Hi There. I use FreeBSD 6.3-RELEASE and i use KDM like display manager. When i try to boot e17 (Enlightenment), a message is shown telling that i am executing the binary 'enlightenment', and this is dangerous. The message says that the binary must be executed is 'start_enlightenment', and i want to ask you: How can i tell KDM that boot with the binary 'start_enlightenment' and not with 'enlightenment'?. Thanks you very much, in advance. Regards. Jose. -- http://www.lordofunix.org/ Not Registered GNU/Hurd User. Registered BSD User 51101. Registered Linux User #213309. Memories..... You are talking about memories. Rick Deckard. Blade Runner. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 17:33:25 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A50C1065672 for ; Thu, 27 Nov 2008 17:33:25 +0000 (UTC) (envelope-from goksin.akdeniz@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.190]) by mx1.freebsd.org (Postfix) with ESMTP id A652A8FC1C for ; Thu, 27 Nov 2008 17:33:24 +0000 (UTC) (envelope-from goksin.akdeniz@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so575009nfh.33 for ; Thu, 27 Nov 2008 09:33:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:organization:to:subject :date:user-agent:references:in-reply-to:mime-version:content-type :content-transfer-encoding:message-id; bh=bcE7nJJOpd3pR5WHCu9upUWoYLX0T3GvFpGGvdoXYLc=; b=QzsKToZmIuqAfMF4zrnPGBOFMiuAoH6ldV5VFAfe0s2ZIQzpzITNs6A1Cl0Y3+4vta Jk4d9m/nWKqX35VhPrp1Vdmo7IS/uMp2hLsFYeI/5MtMpL/hllhVk3861jpNfPWT0Z39 4m1jG18t5zUETAy/EdNKF0DotnZhKZr8hRlK4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:organization:to:subject:date:user-agent:references:in-reply-to :mime-version:content-type:content-transfer-encoding:message-id; b=DlRM1o1oP9LjZCY4lPFAcPEJdRt6WvoFICVxRrLU8hDk9ABswrzIOXtDcqxklA6JND /onvp0hCoH2RTu5Lvb4IOyXKjh4wsbRcm/AOUdfR7A/iX3XhA5f34F1EgCiLrXGvVLzE V/K3UtByLV+6XylhFksCcI5LH5inSiA3lHCRc= Received: by 10.210.119.16 with SMTP id r16mr2431350ebc.127.1227807202946; Thu, 27 Nov 2008 09:33:22 -0800 (PST) Received: from ?192.168.7.4? ([88.229.177.3]) by mx.google.com with ESMTPS id f3sm298905nfh.2.2008.11.27.09.33.21 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 27 Nov 2008 09:33:21 -0800 (PST) From: Goksin Akdeniz Organization: Enixma.org To: freebsd-questions@freebsd.org Date: Thu, 27 Nov 2008 19:33:13 +0000 User-Agent: KMail/1.9.10 References: <492eab53.160d6e0a.754a.772a@mx.google.com> In-Reply-To: <492eab53.160d6e0a.754a.772a@mx.google.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2093045.eoAJHFGnV0"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200811271933.16526.goksin.akdeniz@gmail.com> Subject: Re: How to install RPM file on FreeBSD? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 17:33:25 -0000 --nextPart2093045.eoAJHFGnV0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thursday 27 November 2008 14:14:40 Alex wrote: > > Because I want to install a Virtual Machine which name is "VMware > Workstation for Linux" on FreeBSD? But there only RPM has been published. > So pls kindly help me deal with this case. Thanks. Hello Alex, The RPM file you have mentioned are build to be installed on Linux, so that= =20 you can install and run a virtual system on Linux, not on freeBSD. Goksin Akdeniz =2D-=20 http://www.enixma.org --nextPart2093045.eoAJHFGnV0 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEABECAAYFAkku9fwACgkQkMt0naY0G+twVgCgwZZeFyro12oKbz/dfheKCN1k BE4Anjt/BCHxijM6Qi2/acCjrnh2f2RH =hyQG -----END PGP SIGNATURE----- --nextPart2093045.eoAJHFGnV0-- From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 17:39:41 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00C801065670 for ; Thu, 27 Nov 2008 17:39:41 +0000 (UTC) (envelope-from lars.stokholm@gmail.com) Received: from fk-out-0910.google.com (fk-out-0910.google.com [209.85.128.186]) by mx1.freebsd.org (Postfix) with ESMTP id 877318FC12 for ; Thu, 27 Nov 2008 17:39:40 +0000 (UTC) (envelope-from lars.stokholm@gmail.com) Received: by fk-out-0910.google.com with SMTP id k31so1055296fkk.11 for ; Thu, 27 Nov 2008 09:39:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=doBeojcZQuLt83rDgfcc2+2kclkQ5tfG1z3N9FYQOAk=; b=ALljvsXKf9YHgs7nr984Q9aC7EUTMIQgb4yNkUWL/EFYC/y8CsdtcGkY/rTSA6RHcO 7j/cIIIv1pVAHl9Vmt06ezUw8AYx74yszgCAshyuPF97WKDxuHdEIMIwCuI9ivB4NzEP /VhlwCGMAyAi6PAy4gpLHIIXDi6ZYwWu4G5yQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=Mb5QkB3YU11GH0PfvH95ZuBdi8uEFJEi4SKc7fUsocPQd5a+sYuTaDoMOSDRz3DNV4 sIjcKy2XP2PxryqvynRy8USA4GQ5T0sGb80Of8WWcEw/Vv6nNHVYL5zmSGDwHuHy5kfE g7O/+4xdXpwjQwkjNMOLzmfI59mwraUM4My2g= Received: by 10.181.145.6 with SMTP id x6mr2411121bkn.41.1227805754986; Thu, 27 Nov 2008 09:09:14 -0800 (PST) Received: by 10.181.209.6 with HTTP; Thu, 27 Nov 2008 09:09:14 -0800 (PST) Message-ID: Date: Thu, 27 Nov 2008 18:09:14 +0100 From: "Lars Stokholm" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Pidgin and Vagalume (DBUS problem?) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 17:39:41 -0000 Hi Vagalume (audio/vagalume) has an option to display the currently playing track in Pidgin's status message. It doesn't work though, so I was hoping someone in here could help me. I don't know if it's the same issue or not, but purple-remote can't seem to communicate with Pidgin either: %purple-remote "setstatus?status=away&message=test" No existing libpurple instance detected. Lars From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 18:49:55 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C09241065672 for ; Thu, 27 Nov 2008 18:49:55 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from mailrelay006.isp.belgacom.be (mailrelay006.isp.belgacom.be [195.238.6.172]) by mx1.freebsd.org (Postfix) with ESMTP id 63F7A8FC0C for ; Thu, 27 Nov 2008 18:49:54 +0000 (UTC) (envelope-from tijl@ulyssis.org) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AtsEAHx5LklR9Teh/2dsb2JhbACBbdAugn0 Received: from 161.55-245-81.adsl-dyn.isp.belgacom.be (HELO kalimero.kotnet.org) ([81.245.55.161]) by relay.skynet.be with ESMTP; 27 Nov 2008 19:49:52 +0100 Received: from kalimero.kotnet.org (kalimero.kotnet.org [127.0.0.1]) by kalimero.kotnet.org (8.14.3/8.14.3) with ESMTP id mARInglq005248; Thu, 27 Nov 2008 19:49:42 +0100 (CET) (envelope-from tijl@ulyssis.org) From: Tijl Coosemans To: Xavier Otazu , freebsd-questions@freebsd.org Date: Thu, 27 Nov 2008 19:49:40 +0100 User-Agent: KMail/1.9.10 References: <20081121120023.D64301065720@hub.freebsd.org> <200811252331.11497.tijl@ulyssis.org> <20081126184839.0de97327@cvc131.uab.es> In-Reply-To: <20081126184839.0de97327@cvc131.uab.es> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811271949.41731.tijl@ulyssis.org> Cc: Subject: Re: gcc cross-compiler for linux X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 18:49:55 -0000 On Wednesday 26 November 2008 18:48:39 Xavier Otazu wrote: > On Tue, 25 Nov 2008 23:31:10 +0100 Tijl Coosemans wrote: >> From that error message I'd say you probably need to populate >> /usr/local/i386-linux/include with glibc and linux kernel headers. > > How can I populate it with them? Manually installing them in this > directory? May be the devel/cross-binutils port should do it? Is there > any port that can populate it? I don't think there's a port. I'd start with a glibc-headers and kernel-headers RPM from the linux_base port you've installed. http://rpmfind.net/linux/rpm2html/search.php?query=glibc-headers http://rpmfind.net/linux/rpm2html/search.php?query=kernel-headers From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 19:33:08 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EB381065674 for ; Thu, 27 Nov 2008 19:33:08 +0000 (UTC) (envelope-from eitanadlerlist@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.28]) by mx1.freebsd.org (Postfix) with ESMTP id EE4BF8FC0C for ; Thu, 27 Nov 2008 19:33:07 +0000 (UTC) (envelope-from eitanadlerlist@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so494736yxb.13 for ; Thu, 27 Nov 2008 11:33:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:user-agent :mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:openpgp:content-type:content-transfer-encoding :from; bh=mD/isr0YyMcVj7VwHHZPanA1yoHirATfLmEAhrOa9EE=; b=iuT/3/rKVs3puX+5ihYVASFea0HRsrZCWnPHwrkjQKtJlTjs03vKh/9A4gqw4pkfc/ L2LrO3CDtGbht/vTlNd1v1hnJnlG5vfQ0KOjpb8tKcE8jkPWFb9xVuT7L5WND/L36Gd2 gMcXPvs1hTMuJOStypdO2HgeTAjl/lkDRZ/uM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:user-agent:mime-version:to:cc:subject:references :in-reply-to:x-enigmail-version:openpgp:content-type :content-transfer-encoding:from; b=HkPWCAEFooFZOB/8UURtw9wGpEDHwOYxIIY9fQGeoAYwGLxZNU7zaVqz7msNagrCRb c3yDefIz76ocnFc31F0J0stejdLcYlgZnHeV9036Mam2ji903O3KBDVd2o/TsXLfybzH IQf+ZVLcsfHznyNqOkJpKBuvaGqUVqwV9uiEc= Received: by 10.90.34.11 with SMTP id h11mr4080043agh.114.1227814387366; Thu, 27 Nov 2008 11:33:07 -0800 (PST) Received: from aargh.lan (ool-182d26f3.dyn.optonline.net [24.45.38.243]) by mx.google.com with ESMTPS id 20sm179673agb.16.2008.11.27.11.33.05 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 27 Nov 2008 11:33:06 -0800 (PST) Message-ID: <492EF5EC.1020300@gmail.com> Date: Thu, 27 Nov 2008 14:33:00 -0500 User-Agent: Mozilla (X11; U; FreeBSD i386; en-US; ) Gecko Thunderbird Mnenhy/0.7.5.666 MIME-Version: 1.0 To: Mats Lindberg References: <1227553816.6695.3.camel@dell> In-Reply-To: <1227553816.6695.3.camel@dell> X-Enigmail-Version: 0.95.7 OpenPGP: id=E9C2CCD1; url=pgp.mit.edu Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit From: Eitan Adler Cc: freebsd-questions@freebsd.org Subject: Re: compat libs in FreeBSD 7.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 19:33:08 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Mats Lindberg wrote: > Hi > What happened to the compatibility libraries in FreeBSD 7.0 release > Need to run some FreeBSD-5.4 binaries on a 7.0 System. > Can't find the libs any longer > > Mats You need the port misc/compat5x from pkg-descr This package allows you to install the compat5x libraries on your system, so you can use legacy binaries that depend on them. - -- Eitan Adler GNU Key fingerptrint: 2E13 BC16 5F54 0FBD 62ED 42B6 B65F 24AB E9C2 CCD1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkku9ewACgkQtl8kq+nCzNE44wCgkD+kzSZBCxAozeXHimkJUd2g LpAAoI1JauSNTwMraSqEMStbTga0HjZ2 =xi3R -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 20:05:03 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A92A71065678 for ; Thu, 27 Nov 2008 20:05:03 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 6F00C8FC1B for ; Thu, 27 Nov 2008 20:05:03 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-196-24-200.dynamic.qsc.de [92.196.24.200]) by mx02.qsc.de (Postfix) with ESMTP id A68F516C0109; Thu, 27 Nov 2008 21:05:01 +0100 (CET) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id mARK50Bk001740; Thu, 27 Nov 2008 21:05:00 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Thu, 27 Nov 2008 21:05:00 +0100 From: Polytropon To: Mel Message-Id: <20081127210500.7a792dfe.freebsd@edvax.de> In-Reply-To: <200811262014.02717.fbsd.questions@rachie.is-a-geek.net> References: <903701.74203.qm@web57001.mail.re3.yahoo.com> <200811262014.02717.fbsd.questions@rachie.is-a-geek.net> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: unga888@yahoo.com, freebsd-questions@freebsd.org Subject: Re: getpriority(2) and rtprio(2) implementation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 20:05:03 -0000 On Wed, 26 Nov 2008 20:14:02 +0100, Mel wrote: > For future ref: > > find /usr/src/sys -name '*.c' -exec grep kern_$name_of_syscall {} + > > will catch 99% of the cases. I did check with the Midnight Commander's Meta-? (find): Search from /usr/src in *.c containing "getpriority", refined "getpriority(int" to get the function's prototype and implementation. I'm a lazy guy. :-) -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 20:52:46 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8D131065670 for ; Thu, 27 Nov 2008 20:52:46 +0000 (UTC) (envelope-from dan-freebsd-questions@ourbrains.org) Received: from ourbrains.org (li48-221.members.linode.com [66.246.76.221]) by mx1.freebsd.org (Postfix) with SMTP id 946398FC16 for ; Thu, 27 Nov 2008 20:52:46 +0000 (UTC) (envelope-from dan-freebsd-questions@ourbrains.org) Received: (qmail 11982 invoked by uid 1000); 27 Nov 2008 20:53:06 -0000 Date: Thu, 27 Nov 2008 15:53:06 -0500 From: Dan To: freebsd-questions@freebsd.org Message-ID: <20081127205306.GA11965@ourbrains.org> Mail-Followup-To: freebsd-questions@freebsd.org References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Re: process always running X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 20:52:46 -0000 Gian Paolo Buono(gpbuono@gmail.com)@2008.11.27 14:05:44 +0100: > Hi, > there is a method in freebsd for restart process whenever it terminates ? I > use in linux respawn in inittab... > > Thanks ...bye Daemontools or runit is your best bet. Init does not cut it. From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 20:58:50 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 22A9C1065674 for ; Thu, 27 Nov 2008 20:58:50 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CD2248FC0A; Thu, 27 Nov 2008 20:58:49 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <492F0A46.2050402@FreeBSD.org> Date: Thu, 27 Nov 2008 12:59:50 -0800 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.18 (Macintosh/20081105) MIME-Version: 1.0 To: akberos@math.berkeley.edu References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@FreeBSD.org, "Alexander K. Beros" Subject: Re: GIANT_LOCK in release7.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 20:58:50 -0000 Alexander K. Beros wrote: > > I have not been able to find any discussion of the following issue. Ever > since I upgraded to release 7.0, whenever I print to my network printer (I > am using Samba) I get the following output to ttyv0: > > lpt0: [GIANT-LOCKED] > lpt0: [ITHREAD] > lpt0: [GIANT-LOCKED] > lpt0: [ITHREAD] > lpt0: [GIANT-LOCKED] > lpt0: [ITHREAD] > lpt0: [GIANT-LOCKED] > lpt0: [ITHREAD] > lpt0: [GIANT-LOCKED] > lpt0: [ITHREAD] > > ... this can continue for a very long time depending on the size of the > queue > > The actual printing is fine, and since I am rarely at the terminal it isn't > a serious problem. In fact, if I am working at the server and someone else > is sending jobs to the printer I switch over to ttyv1, so there is really no > inconvenience. > > On the other hand, I thought that release 7 is GIANT_LOCK free, so this is > rather unexpected. I would appreciate any information or explanation. That's not a correct statement. The giant lock is not invoked in most code pathways, but it is still present in some corners of the kernel, for example in some drivers. It's not important for drivers like lpt which are low performance devices. Do you get any additional diagnostics when you boot in verbose mode (boot -v from loader, or use the menu option)? It might be that lpt is encountering an error frequently and resetting itself during I/O. Also please follow up with your entire dmesg. Kris From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 22:10:19 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93D941065672 for ; Thu, 27 Nov 2008 22:10:19 +0000 (UTC) (envelope-from sebastian.tymkow@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.24]) by mx1.freebsd.org (Postfix) with ESMTP id 1AD1B8FC1E for ; Thu, 27 Nov 2008 22:10:18 +0000 (UTC) (envelope-from sebastian.tymkow@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so482066eyi.7 for ; Thu, 27 Nov 2008 14:10:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=L743lU7DVYOvflywoZdfeLgJHCk5q3IXHYypTenoP9Y=; b=XmpqZ0gV+ZSw340tZqChqK0GK8BGBd+0o4ON5C8LGFbpAEOQhWsaeZW94DPIrGKuTY AV8r3oMmoY8ub3kzc5PUjmEZhg3yhk9jdmRIQnC8HVmOlztNdWWQdeBQVfF9603czIMq nZmkQOxFl6A33DDEZaWT894VxOW1hxRzbxvxY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=mSnQzNoJ+lX8DEfcTHLnEholZkWJP6DQuiniuK7ZZ0bfBGzyVNjPLLyOyo78X/pBXJ CrsJ3cJvNOXuCdc/31pH1/HSAPbmquL6ngb+Rd7X1a8LvF3qL4jfY/3Eban//Xr8LWp1 B6SCd4yQjJCCltPyDLGvYLxCXvva6cVt3hxrM= Received: by 10.210.22.16 with SMTP id 16mr8019144ebv.53.1227823817639; Thu, 27 Nov 2008 14:10:17 -0800 (PST) Received: by 10.210.45.16 with HTTP; Thu, 27 Nov 2008 14:10:17 -0800 (PST) Message-ID: <692660060811271410y1db64edbnfbe73c16a2532d77@mail.gmail.com> Date: Thu, 27 Nov 2008 23:10:17 +0100 From: "=?ISO-8859-1?Q?Sebastian_Tymk=F3w?=" To: "Jonathan McKeown" In-Reply-To: <200811271623.48890.jonathan@hst.org.za> MIME-Version: 1.0 References: <20081127134658.GA31551@mercury.meisternet.ch> <200811271623.48890.jonathan@hst.org.za> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: process always running X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 22:10:19 -0000 Hi, I use it and it works fine for me. I don't need any third party software to run/restart process. Recently I used daemontools for respawn process but it was uncomfortable to install and configure for me. Best regards, Sebastian Tymkow 2008/11/27 Jonathan McKeown > On Thursday 27 November 2008 15:46:58 Dominik Meister wrote: > > Hi > > > > Gian Paolo Buono [Thu, Nov 27, 2008 at 02:05:44PM +0100]: > > > there is a method in freebsd for restart process whenever it > terminates > > > ? I use in linux respawn in inittab... > > > > One possibility that comes to mind is using daemontools [0]. Should be > > in ports but there are probably easier ways to achieve this. > > I've never tried it, but according to the manpage for init(8) you can get > the > same effect as a respawn entry in a sysV inittab by putting the command > in /etc/ttys. Perhaps someone who's done it could comment? > > Jonathan > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 23:32:24 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A2FE21065670 for ; Thu, 27 Nov 2008 23:32:24 +0000 (UTC) (envelope-from rock_on_the_web@comcen.com.au) Received: from mail.unitedinsong.com.au (202-172-126-254.cpe.qld-1.comcen.com.au [202.172.126.254]) by mx1.freebsd.org (Postfix) with ESMTP id 558858FC0A for ; Thu, 27 Nov 2008 23:32:24 +0000 (UTC) (envelope-from rock_on_the_web@comcen.com.au) Received: from [192.168.0.175] (unknown [192.168.0.175]) by mail.unitedinsong.com.au (Postfix) with ESMTP id BCDB74065 for ; Fri, 28 Nov 2008 09:32:56 +1000 (EST) From: Da Rock To: freebsd-questions@freebsd.org In-Reply-To: References: <1227792354.3603.21.camel@laptop1.herveybayaustralia.com.au> <1227795042.3603.26.camel@laptop1.herveybayaustralia.com.au> Content-Type: text/plain Date: Fri, 28 Nov 2008 09:32:46 +1000 Message-Id: <1227828766.3603.41.camel@laptop1.herveybayaustralia.com.au> Mime-Version: 1.0 X-Mailer: Evolution 2.12.3 (2.12.3-5.fc8) Content-Transfer-Encoding: 7bit Subject: Re: APIC error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 23:32:24 -0000 On Thu, 2008-11-27 at 15:23 +0100, Ivan Voras wrote: > Da Rock wrote: > > > Would this be in the cpu itself or in the mainboard (best guess)? If its > > the cpu it could be from overheating (could the cpu alone cause all > > these errors?), but mainboard would mean an inherent communication > > problem wouldn't it? > > If you can look up the CPU temperature in your BIOS setup, you can > easily see if the CPU is overheating - reboot and look it up immediately > after the problems start. > I'm not sure I expressed myself too clearly; I meant cpu failure due to it running too hot for extended periods of time, not causing immediate problems while this occurring but making the problem apparent later when the now damaged component on the chip is used. Thinking about it, though, it would seem more likely that one of the bridges (north bridge?)(which would mean their cooling mechs aren't doing very well in the laptop chassis) would be in its death throws because the cpu is less involved when data is transferred between components like disks, usb, and video. The cpu is only dragged into the action to start the process and monitor that it has been completed, or to handle something the component can't handle like decoding or encoding. Does that make sense or am I talking gibberish? From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 02:00:00 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A7C21065674 for ; Fri, 28 Nov 2008 02:00:00 +0000 (UTC) (envelope-from yury.michurin@gmail.com) Received: from rn-out-0910.google.com (rn-out-0910.google.com [64.233.170.185]) by mx1.freebsd.org (Postfix) with ESMTP id 6FE1B8FC08 for ; Fri, 28 Nov 2008 01:59:59 +0000 (UTC) (envelope-from yury.michurin@gmail.com) Received: by rn-out-0910.google.com with SMTP id j71so998962rne.12 for ; Thu, 27 Nov 2008 17:59:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=VLuhlfEFghxBrEx8QvjftPcsbrWBinzhLCQHFCcwv1w=; b=E0NjracSfPNPv9g4oMBZ9yDzon58oBiZJfbxhhI7b1wlD0dDTbuWF7DweBlJK11mLY LTlL2/Ltfz22OYzygLqwWDOUo4yWzoOLSe3mpmgrf+yWd2FCDzcX4MlYxXLr3CRhGOAl UXwYtosuexkm7U1ELLOtZ5DxBBf73V8OHpQuY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=D6z7fP47EEMyAB58QH3wyTFfEoH3Tydu9J4b0zlrUmew6PHeK7Bk6NKU5ysq9Xeh3k VIeL1IHIOmiaCVDpo4EP+IBILQoD9FFkbYj5OwgOo06VLcLc0/L3OgffiJcXdKZSG3XM GX+MQxJajSvUPeFTHEH+6Uv1Q49MulzSzP3x8= Received: by 10.64.183.6 with SMTP id g6mr8110630qbf.17.1227837597893; Thu, 27 Nov 2008 17:59:57 -0800 (PST) Received: by 10.64.204.14 with HTTP; Thu, 27 Nov 2008 17:59:57 -0800 (PST) Message-ID: <692c9a9f0811271759o25d0108ha1f797823abd0027@mail.gmail.com> Date: Fri, 28 Nov 2008 03:59:57 +0200 From: "Yury Michurin" To: "FreeBSD Questions" MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_30350_10696254.1227837597866" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: mydns fails to build X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 02:00:00 -0000 ------=_Part_30350_10696254.1227837597866 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello, I were trying to build /usr/ports/dns/mydns , the build failed with: ---snip--- /bin/sh ../../libtool --mode=link cc -O2 -fno-strict-aliasing -pipe -fomit-frame-pointer -finline-functions -ffast-math -funsigned-char -rpath=/usr/lib:/usr/local/lib -static -o mydns alias.o axfr.o cache.o conf.o data.o db.o encode.o error.o listen.o main.o queue.o recursive.o reply.o resolve.o rr.o sort.o status.o task.o tcp.o udp.o update.o ../../src/lib/libmydns.a ../../lib/libmydnsutil.a /usr/local/lib/libintl.so -L/usr/local/lib /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib -L/usr/local/lib/mysql -lmysqlclient -L/usr/lib -lz -L/usr/lib -lssl -lcrypto -lm mkdir .libs libtool: link: cannot find the library `' *** Error code 1 Stop in /usr/ports/dns/mydns/work/mydns-1.1.0/src/mydns. *** Error code 1 Stop in /usr/ports/dns/mydns/work/mydns-1.1.0/src. *** Error code 1 Stop in /usr/ports/dns/mydns/work/mydns-1.1.0. *** Error code 1 Stop in /usr/ports/dns/mydns/work/mydns-1.1.0. *** Error code 1 Stop in /usr/ports/dns/mydns. ---snip--- After that happened, if i perform: cd work/mydns-1.1.0/ rm libtool ln -s /usr/local/bin/libtool libtool and return to the build it completes succefully. Is anyone encountered such behavior or it's just my bad luck? system is: FreeBSD delta.somedomain 7.1-PRERELEASE FreeBSD 7.1-PRERELEASE #1: Thu Nov 27 21:54:38 IST 2008 yury@delta.somedomain:/usr/obj/usr/src/sys/delta amd64 phenom 9650 if it's matter. Best regards, Yury. config.log attached. ------=_Part_30350_10696254.1227837597866 Content-Type: application/octet-stream; name=config.log Content-Transfer-Encoding: base64 X-Attachment-Id: f_fo26sajd1 Content-Disposition: attachment; filename=config.log VGhpcyBmaWxlIGNvbnRhaW5zIGFueSBtZXNzYWdlcyBwcm9kdWNlZCBieSBjb21waWxlcnMgd2hp bGUKcnVubmluZyBjb25maWd1cmUsIHRvIGFpZCBkZWJ1Z2dpbmcgaWYgY29uZmlndXJlIG1ha2Vz IGEgbWlzdGFrZS4KCkl0IHdhcyBjcmVhdGVkIGJ5IG15ZG5zIGNvbmZpZ3VyZSAxLjEuMCwgd2hp Y2ggd2FzCmdlbmVyYXRlZCBieSBHTlUgQXV0b2NvbmYgMi41OS4gIEludm9jYXRpb24gY29tbWFu ZCBsaW5lIHdhcwoKICAkIC4vY29uZmlndXJlIC0td2l0aC1jb25mZGlyPS91c3IvbG9jYWwvZXRj IC0td2l0aC1vcGVuc3NsIC0td2l0aC1vcGVuc3NsLWluY2x1ZGU9L3Vzci9pbmNsdWRlIC0td2l0 aC1vcGVuc3NsLWxpYj0vdXNyL2xpYiAtLXdpdGhvdXQtcGdzcWwgLS13aXRoLW15c3FsLWluY2x1 ZGU9L3Vzci9sb2NhbC9pbmNsdWRlL215c3FsIC0td2l0aC1teXNxbC1saWI9L3Vzci9sb2NhbC9s aWIvbXlzcWwgLS1wcmVmaXg9L3Vzci9sb2NhbCAtLW1hbmRpcj0vdXNyL2xvY2FsL21hbiAtLWlu Zm9kaXI9L3Vzci9sb2NhbC9pbmZvLyAtLWJ1aWxkPWFtZDY0LXBvcnRibGQtZnJlZWJzZDcuMQoK IyMgLS0tLS0tLS0tICMjCiMjIFBsYXRmb3JtLiAjIwojIyAtLS0tLS0tLS0gIyMKCmhvc3RuYW1l ID0gZGVsdGEuc29tZWRvbWFpbgp1bmFtZSAtbSA9IGFtZDY0CnVuYW1lIC1yID0gNy4xLVBSRVJF TEVBU0UKdW5hbWUgLXMgPSBGcmVlQlNECnVuYW1lIC12ID0gRnJlZUJTRCA3LjEtUFJFUkVMRUFT RSAjMTogVGh1IE5vdiAyNyAyMTo1NDozOCBJU1QgMjAwOCAgICAgeXVyeUBkZWx0YS5zb21lZG9t YWluOi91c3Ivb2JqL3Vzci9zcmMvc3lzL2RlbHRhIAoKL3Vzci9iaW4vdW5hbWUgLXAgPSBhbWQ2 NAovYmluL3VuYW1lIC1YICAgICA9IHVua25vd24KCi9iaW4vYXJjaCAgICAgICAgICAgICAgPSB1 bmtub3duCi91c3IvYmluL2FyY2ggLWsgICAgICAgPSB1bmtub3duCi91c3IvY29udmV4L2dldHN5 c2luZm8gPSB1bmtub3duCmhvc3RpbmZvICAgICAgICAgICAgICAgPSB1bmtub3duCi9iaW4vbWFj aGluZSAgICAgICAgICAgPSB1bmtub3duCi91c3IvYmluL29zbGV2ZWwgICAgICAgPSB1bmtub3du Ci9iaW4vdW5pdmVyc2UgICAgICAgICAgPSB1bmtub3duCgpQQVRIOiAvc2JpbgpQQVRIOiAvYmlu ClBBVEg6IC91c3Ivc2JpbgpQQVRIOiAvdXNyL2JpbgpQQVRIOiAvdXNyL2dhbWVzClBBVEg6IC91 c3IvbG9jYWwvc2JpbgpQQVRIOiAvdXNyL2xvY2FsL2JpbgpQQVRIOiAvcm9vdC9iaW4KCgojIyAt LS0tLS0tLS0tLSAjIwojIyBDb3JlIHRlc3RzLiAjIwojIyAtLS0tLS0tLS0tLSAjIwoKY29uZmln dXJlOjE1NjA6IGNoZWNraW5nIGZvciBhIEJTRC1jb21wYXRpYmxlIGluc3RhbGwKY29uZmlndXJl OjE2MTU6IHJlc3VsdDogL3Vzci9iaW4vaW5zdGFsbCAtYyAtbyByb290IC1nIHdoZWVsCmNvbmZp Z3VyZToxNjI2OiBjaGVja2luZyB3aGV0aGVyIGJ1aWxkIGVudmlyb25tZW50IGlzIHNhbmUKY29u ZmlndXJlOjE2Njk6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxNzM0OiBjaGVja2luZyBmb3IgZ2F3 awpjb25maWd1cmU6MTc2MzogcmVzdWx0OiBubwpjb25maWd1cmU6MTczNDogY2hlY2tpbmcgZm9y IG1hd2sKY29uZmlndXJlOjE3NjM6IHJlc3VsdDogbm8KY29uZmlndXJlOjE3MzQ6IGNoZWNraW5n IGZvciBuYXdrCmNvbmZpZ3VyZToxNzUwOiBmb3VuZCAvdXNyL2Jpbi9uYXdrCmNvbmZpZ3VyZTox NzYwOiByZXN1bHQ6IG5hd2sKY29uZmlndXJlOjE3NzA6IGNoZWNraW5nIHdoZXRoZXIgbWFrZSBz ZXRzICQoTUFLRSkKY29uZmlndXJlOjE3OTA6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxOTY2OiBj aGVja2luZyBmb3IgZ2F3awpjb25maWd1cmU6MTk5MjogcmVzdWx0OiBuYXdrCmNvbmZpZ3VyZToy MDQ4OiBjaGVja2luZyBmb3IgZ2NjCmNvbmZpZ3VyZToyMDc0OiByZXN1bHQ6IGNjCmNvbmZpZ3Vy ZToyMzE4OiBjaGVja2luZyBmb3IgQyBjb21waWxlciB2ZXJzaW9uCmNvbmZpZ3VyZToyMzIxOiBj YyAtLXZlcnNpb24gPC9kZXYvbnVsbCA+JjUKY2MgKEdDQykgNC4yLjEgMjAwNzA3MTkgIFtGcmVl QlNEXQpDb3B5cmlnaHQgKEMpIDIwMDcgRnJlZSBTb2Z0d2FyZSBGb3VuZGF0aW9uLCBJbmMuClRo aXMgaXMgZnJlZSBzb2Z0d2FyZTsgc2VlIHRoZSBzb3VyY2UgZm9yIGNvcHlpbmcgY29uZGl0aW9u cy4gIFRoZXJlIGlzIE5PCndhcnJhbnR5OyBub3QgZXZlbiBmb3IgTUVSQ0hBTlRBQklMSVRZIG9y IEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFLgoKY29uZmlndXJlOjIzMjQ6ICQ/ID0g MApjb25maWd1cmU6MjMyNjogY2MgLXYgPC9kZXYvbnVsbCA+JjUKVXNpbmcgYnVpbHQtaW4gc3Bl Y3MuClRhcmdldDogYW1kNjQtdW5kZXJteWRlc2stZnJlZWJzZApDb25maWd1cmVkIHdpdGg6IEZy ZWVCU0QvYW1kNjQgc3lzdGVtIGNvbXBpbGVyClRocmVhZCBtb2RlbDogcG9zaXgKZ2NjIHZlcnNp b24gNC4yLjEgMjAwNzA3MTkgIFtGcmVlQlNEXQpjb25maWd1cmU6MjMyOTogJD8gPSAwCmNvbmZp Z3VyZToyMzMxOiBjYyAtViA8L2Rldi9udWxsID4mNQpjYzogJy1WJyBvcHRpb24gbXVzdCBoYXZl IGFyZ3VtZW50CmNvbmZpZ3VyZToyMzM0OiAkPyA9IDEKY29uZmlndXJlOjIzNTc6IGNoZWNraW5n IGZvciBDIGNvbXBpbGVyIGRlZmF1bHQgb3V0cHV0IGZpbGUgbmFtZQpjb25maWd1cmU6MjM2MDog Y2MgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICAgLXJwYXRoPS91c3IvbGliOi91c3Iv bG9jYWwvbGliIGNvbmZ0ZXN0LmMgID4mNQpjb25maWd1cmU6MjM2MzogJD8gPSAwCmNvbmZpZ3Vy ZToyNDA5OiByZXN1bHQ6IGEub3V0CmNvbmZpZ3VyZToyNDE0OiBjaGVja2luZyB3aGV0aGVyIHRo ZSBDIGNvbXBpbGVyIHdvcmtzCmNvbmZpZ3VyZToyNDIwOiAuL2Eub3V0CmNvbmZpZ3VyZToyNDIz OiAkPyA9IDAKY29uZmlndXJlOjI0NDA6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToyNDQ3OiBjaGVj a2luZyB3aGV0aGVyIHdlIGFyZSBjcm9zcyBjb21waWxpbmcKY29uZmlndXJlOjI0NDk6IHJlc3Vs dDogbm8KY29uZmlndXJlOjI0NTI6IGNoZWNraW5nIGZvciBzdWZmaXggb2YgZXhlY3V0YWJsZXMK Y29uZmlndXJlOjI0NTQ6IGNjIC1vIGNvbmZ0ZXN0IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAt cGlwZSAgIC1ycGF0aD0vdXNyL2xpYjovdXNyL2xvY2FsL2xpYiBjb25mdGVzdC5jICA+JjUKY29u ZmlndXJlOjI0NTc6ICQ/ID0gMApjb25maWd1cmU6MjQ4MjogcmVzdWx0OiAKY29uZmlndXJlOjI0 ODg6IGNoZWNraW5nIGZvciBzdWZmaXggb2Ygb2JqZWN0IGZpbGVzCmNvbmZpZ3VyZToyNTA5OiBj YyAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZp Z3VyZToyNTEyOiAkPyA9IDAKY29uZmlndXJlOjI1MzQ6IHJlc3VsdDogbwpjb25maWd1cmU6MjUz ODogY2hlY2tpbmcgd2hldGhlciB3ZSBhcmUgdXNpbmcgdGhlIEdOVSBDIGNvbXBpbGVyCmNvbmZp Z3VyZToyNTYyOiBjYyAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgIGNvbmZ0ZXN0 LmMgPiY1CmNvbmZpZ3VyZToyNTY4OiAkPyA9IDAKY29uZmlndXJlOjI1NzI6IHRlc3QgLXogCgkJ CSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToyNTc1OiAkPyA9IDAKY29uZmln dXJlOjI1Nzg6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6MjU4MTogJD8gPSAwCmNvbmZp Z3VyZToyNTk0OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MjYwMDogY2hlY2tpbmcgd2hldGhlciBj YyBhY2NlcHRzIC1nCmNvbmZpZ3VyZToyNjIxOiBjYyAtYyAtZyAgY29uZnRlc3QuYyA+JjUKY29u ZmlndXJlOjI2Mjc6ICQ/ID0gMApjb25maWd1cmU6MjYzMTogdGVzdCAteiAKCQkJIHx8IHRlc3Qg ISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjI2MzQ6ICQ/ID0gMApjb25maWd1cmU6MjYzNzog dGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3VyZToyNjQwOiAkPyA9IDAKY29uZmlndXJlOjI2NTE6 IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToyNjY4OiBjaGVja2luZyBmb3IgY2Mgb3B0aW9uIHRvIGFj Y2VwdCBBTlNJIEMKY29uZmlndXJlOjI3Mzg6IGNjICAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNp bmcgLXBpcGUgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZToyNzQ0OiAkPyA9IDAKY29uZmlndXJl OjI3NDg6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToy NzUxOiAkPyA9IDAKY29uZmlndXJlOjI3NTQ6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6 Mjc1NzogJD8gPSAwCmNvbmZpZ3VyZToyNzc1OiByZXN1bHQ6IG5vbmUgbmVlZGVkCmNvbmZpZ3Vy ZToyNzkzOiBjYyAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgIGNvbmZ0ZXN0LmMg PiY1CmNvbmZ0ZXN0LmM6MjogZXJyb3I6IGV4cGVjdGVkICc9JywgJywnLCAnOycsICdhc20nIG9y ICdfX2F0dHJpYnV0ZV9fJyBiZWZvcmUgJ21lJwpjb25maWd1cmU6Mjc5OTogJD8gPSAxCmNvbmZp Z3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOgp8ICNpZm5kZWYgX19jcGx1c3BsdXMKfCAgIGNob2tl IG1lCnwgI2VuZGlmCmNvbmZpZ3VyZToyOTQzOiBjaGVja2luZyBmb3Igc3R5bGUgb2YgaW5jbHVk ZSB1c2VkIGJ5IG1ha2UKY29uZmlndXJlOjI5NzE6IHJlc3VsdDogR05VCmNvbmZpZ3VyZToyOTk5 OiBjaGVja2luZyBkZXBlbmRlbmN5IHN0eWxlIG9mIGNjCmNvbmZpZ3VyZTozMDg5OiByZXN1bHQ6 IGdjYzMKY29uZmlndXJlOjMxMTk6IGNoZWNraW5nIGZvciBhIEJTRC1jb21wYXRpYmxlIGluc3Rh bGwKY29uZmlndXJlOjMxNzQ6IHJlc3VsdDogL3Vzci9iaW4vaW5zdGFsbCAtYyAtbyByb290IC1n IHdoZWVsCmNvbmZpZ3VyZTozMTg1OiBjaGVja2luZyB3aGV0aGVyIGxuIC1zIHdvcmtzCmNvbmZp Z3VyZTozMTg5OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MzI2ODogY2hlY2tpbmcgYnVpbGQgc3lz dGVtIHR5cGUKY29uZmlndXJlOjMyODY6IHJlc3VsdDogYW1kNjQtcG9ydGJsZC1mcmVlYnNkNy4x CmNvbmZpZ3VyZTozMjk0OiBjaGVja2luZyBob3N0IHN5c3RlbSB0eXBlCmNvbmZpZ3VyZTozMzA4 OiByZXN1bHQ6IGFtZDY0LXBvcnRibGQtZnJlZWJzZDcuMQpjb25maWd1cmU6MzMzODogY2hlY2tp bmcgZm9yIGxkIHVzZWQgYnkgR0NDCmNvbmZpZ3VyZTozNDAxOiByZXN1bHQ6IC91c3IvYmluL2xk CmNvbmZpZ3VyZTozNDEwOiBjaGVja2luZyBpZiB0aGUgbGlua2VyICgvdXNyL2Jpbi9sZCkgaXMg R05VIGxkCkdOVSBsZCB2ZXJzaW9uIDIuMTUgW0ZyZWVCU0RdIDIwMDQtMDUtMjMKY29uZmlndXJl OjM0MjI6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZTozNDI3OiBjaGVja2luZyBmb3IgL3Vzci9iaW4v bGQgb3B0aW9uIHRvIHJlbG9hZCBvYmplY3QgZmlsZXMKY29uZmlndXJlOjM0MzQ6IHJlc3VsdDog LXIKY29uZmlndXJlOjM0Mzk6IGNoZWNraW5nIGZvciBCU0QtY29tcGF0aWJsZSBubQpjb25maWd1 cmU6MzQ3NTogcmVzdWx0OiAvdXNyL2Jpbi9ubSAtQgpjb25maWd1cmU6MzQ3ODogY2hlY2tpbmcg aG93IHRvIHJlY29nbmlzZSBkZXBlbmRhbnQgbGlicmFyaWVzCmNvbmZpZ3VyZTozNjU2OiByZXN1 bHQ6IHBhc3NfYWxsCmNvbmZpZ3VyZTozNjY5OiBjaGVja2luZyBjb21tYW5kIHRvIHBhcnNlIC91 c3IvYmluL25tIC1CIG91dHB1dApjb25maWd1cmU6Mzc1MDogY2MgLWMgLU8yIC1mbm8tc3RyaWN0 LWFsaWFzaW5nIC1waXBlICBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6Mzc1MzogJD8gPSAwCmNv bmZpZ3VyZTozNzU3OiAvdXNyL2Jpbi9ubSAtQiBjb25mdGVzdC5vIFx8IHNlZCAtbiAtZSAncy9e LipbIAldXChbQUJDREdJU1RXXVtBQkNER0lTVFddKlwpWyAJXVsgCV0qXChcKVwoW19BLVphLXpd W19BLVphLXowLTldKlwpJC9cMSBcMlwzIFwzL3AnIFw+IGNvbmZ0ZXN0Lm5tCmNvbmZpZ3VyZToz NzYwOiAkPyA9IDAKY29uZmlndXJlOjM4MTI6IGNjIC1vIGNvbmZ0ZXN0IC1PMiAtZm5vLXN0cmlj dC1hbGlhc2luZyAtcGlwZSAgIC1ycGF0aD0vdXNyL2xpYjovdXNyL2xvY2FsL2xpYiBjb25mdGVz dC5jIGNvbmZ0c3RtLm8gPiY1CmNvbmZpZ3VyZTozODE1OiAkPyA9IDAKY29uZmlndXJlOjM4NTk6 IHJlc3VsdDogb2sKY29uZmlndXJlOjM4Njg6IGNoZWNraW5nIGhvdyB0byBydW4gdGhlIEMgcHJl cHJvY2Vzc29yCmNvbmZpZ3VyZTozOTAzOiBjYyAtRSAgY29uZnRlc3QuYwpjb25maWd1cmU6Mzkw OTogJD8gPSAwCmNvbmZpZ3VyZTozOTQxOiBjYyAtRSAgY29uZnRlc3QuYwpjb25mdGVzdC5jOjEx OjI4OiBlcnJvcjogYWNfbm9uZXhpc3RlbnQuaDogTm8gc3VjaCBmaWxlIG9yIGRpcmVjdG9yeQpj b25maWd1cmU6Mzk0NzogJD8gPSAxCmNvbmZpZ3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOgp8IC8q IGNvbmZkZWZzLmguICAqLwp8IAp8ICNkZWZpbmUgUEFDS0FHRV9OQU1FICJteWRucyIKfCAjZGVm aW5lIFBBQ0tBR0VfVEFSTkFNRSAibXlkbnMiCnwgI2RlZmluZSBQQUNLQUdFX1ZFUlNJT04gIjEu MS4wIgp8ICNkZWZpbmUgUEFDS0FHRV9TVFJJTkcgIm15ZG5zIDEuMS4wIgp8ICNkZWZpbmUgUEFD S0FHRV9CVUdSRVBPUlQgImJib3lAYmJveS5uZXQiCnwgI2RlZmluZSBQQUNLQUdFICJteWRucyIK fCAjZGVmaW5lIFZFUlNJT04gIjEuMS4wIgp8IC8qIGVuZCBjb25mZGVmcy5oLiAgKi8KfCAjaW5j bHVkZSA8YWNfbm9uZXhpc3RlbnQuaD4KY29uZmlndXJlOjM5ODY6IHJlc3VsdDogY2MgLUUKY29u ZmlndXJlOjQwMTA6IGNjIC1FICBjb25mdGVzdC5jCmNvbmZpZ3VyZTo0MDE2OiAkPyA9IDAKY29u ZmlndXJlOjQwNDg6IGNjIC1FICBjb25mdGVzdC5jCmNvbmZ0ZXN0LmM6MTE6Mjg6IGVycm9yOiBh Y19ub25leGlzdGVudC5oOiBObyBzdWNoIGZpbGUgb3IgZGlyZWN0b3J5CmNvbmZpZ3VyZTo0MDU0 OiAkPyA9IDEKY29uZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3YXM6CnwgLyogY29uZmRlZnMuaC4g ICovCnwgCnwgI2RlZmluZSBQQUNLQUdFX05BTUUgIm15ZG5zIgp8ICNkZWZpbmUgUEFDS0FHRV9U QVJOQU1FICJteWRucyIKfCAjZGVmaW5lIFBBQ0tBR0VfVkVSU0lPTiAiMS4xLjAiCnwgI2RlZmlu ZSBQQUNLQUdFX1NUUklORyAibXlkbnMgMS4xLjAiCnwgI2RlZmluZSBQQUNLQUdFX0JVR1JFUE9S VCAiYmJveUBiYm95Lm5ldCIKfCAjZGVmaW5lIFBBQ0tBR0UgIm15ZG5zIgp8ICNkZWZpbmUgVkVS U0lPTiAiMS4xLjAiCnwgLyogZW5kIGNvbmZkZWZzLmguICAqLwp8ICNpbmNsdWRlIDxhY19ub25l eGlzdGVudC5oPgpjb25maWd1cmU6NDA5ODogY2hlY2tpbmcgZm9yIGVncmVwCmNvbmZpZ3VyZTo0 MTA4OiByZXN1bHQ6IGdyZXAgLUUKY29uZmlndXJlOjQxMTM6IGNoZWNraW5nIGZvciBBTlNJIEMg aGVhZGVyIGZpbGVzCmNvbmZpZ3VyZTo0MTM4OiBjYyAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNp bmcgLXBpcGUgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZTo0MTQ0OiAkPyA9IDAKY29uZmlndXJl OjQxNDg6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZTo0 MTUxOiAkPyA9IDAKY29uZmlndXJlOjQxNTQ6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6 NDE1NzogJD8gPSAwCmNvbmZpZ3VyZTo0MjQ2OiBjYyAtbyBjb25mdGVzdCAtTzIgLWZuby1zdHJp Y3QtYWxpYXNpbmcgLXBpcGUgICAtcnBhdGg9L3Vzci9saWI6L3Vzci9sb2NhbC9saWIgY29uZnRl c3QuYyAgPiY1CmNvbmZ0ZXN0LmM6IEluIGZ1bmN0aW9uICdtYWluJzoKY29uZnRlc3QuYzoyODog d2FybmluZzogaW5jb21wYXRpYmxlIGltcGxpY2l0IGRlY2xhcmF0aW9uIG9mIGJ1aWx0LWluIGZ1 bmN0aW9uICdleGl0Jwpjb25maWd1cmU6NDI0OTogJD8gPSAwCmNvbmZpZ3VyZTo0MjUxOiAuL2Nv bmZ0ZXN0CmNvbmZpZ3VyZTo0MjU0OiAkPyA9IDAKY29uZmlndXJlOjQyNjk6IHJlc3VsdDogeWVz CmNvbmZpZ3VyZTo0MjkzOiBjaGVja2luZyBmb3Igc3lzL3R5cGVzLmgKY29uZmlndXJlOjQzMDk6 IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAgY29uZnRlc3QuYyA+JjUKY29u ZmlndXJlOjQzMTU6ICQ/ID0gMApjb25maWd1cmU6NDMxOTogdGVzdCAteiAKCQkJIHx8IHRlc3Qg ISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjQzMjI6ICQ/ID0gMApjb25maWd1cmU6NDMyNTog dGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3VyZTo0MzI4OiAkPyA9IDAKY29uZmlndXJlOjQzMzk6 IHJlc3VsdDogeWVzCmNvbmZpZ3VyZTo0MjkzOiBjaGVja2luZyBmb3Igc3lzL3N0YXQuaApjb25m aWd1cmU6NDMwOTogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICBjb25mdGVz dC5jID4mNQpjb25maWd1cmU6NDMxNTogJD8gPSAwCmNvbmZpZ3VyZTo0MzE5OiB0ZXN0IC16IAoJ CQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6NDMyMjogJD8gPSAwCmNvbmZp Z3VyZTo0MzI1OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjQzMjg6ICQ/ID0gMApjb25m aWd1cmU6NDMzOTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjQyOTM6IGNoZWNraW5nIGZvciBzdGRs aWIuaApjb25maWd1cmU6NDMwOTogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBl ICBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6NDMxNTogJD8gPSAwCmNvbmZpZ3VyZTo0MzE5OiB0 ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6NDMyMjogJD8g PSAwCmNvbmZpZ3VyZTo0MzI1OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjQzMjg6ICQ/ ID0gMApjb25maWd1cmU6NDMzOTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjQyOTM6IGNoZWNraW5n IGZvciBzdHJpbmcuaApjb25maWd1cmU6NDMwOTogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFz aW5nIC1waXBlICBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6NDMxNTogJD8gPSAwCmNvbmZpZ3Vy ZTo0MzE5OiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6 NDMyMjogJD8gPSAwCmNvbmZpZ3VyZTo0MzI1OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJl OjQzMjg6ICQ/ID0gMApjb25maWd1cmU6NDMzOTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjQyOTM6 IGNoZWNraW5nIGZvciBtZW1vcnkuaApjb25maWd1cmU6NDMwOTogY2MgLWMgLU8yIC1mbm8tc3Ry aWN0LWFsaWFzaW5nIC1waXBlICBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6NDMxNTogJD8gPSAw CmNvbmZpZ3VyZTo0MzE5OiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpj b25maWd1cmU6NDMyMjogJD8gPSAwCmNvbmZpZ3VyZTo0MzI1OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8K Y29uZmlndXJlOjQzMjg6ICQ/ID0gMApjb25maWd1cmU6NDMzOTogcmVzdWx0OiB5ZXMKY29uZmln dXJlOjQyOTM6IGNoZWNraW5nIGZvciBzdHJpbmdzLmgKY29uZmlndXJlOjQzMDk6IGNjIC1jIC1P MiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjQz MTU6ICQ/ID0gMApjb25maWd1cmU6NDMxOTogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25m dGVzdC5lcnIKY29uZmlndXJlOjQzMjI6ICQ/ID0gMApjb25maWd1cmU6NDMyNTogdGVzdCAtcyBj b25mdGVzdC5vCmNvbmZpZ3VyZTo0MzI4OiAkPyA9IDAKY29uZmlndXJlOjQzMzk6IHJlc3VsdDog eWVzCmNvbmZpZ3VyZTo0MjkzOiBjaGVja2luZyBmb3IgaW50dHlwZXMuaApjb25maWd1cmU6NDMw OTogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICBjb25mdGVzdC5jID4mNQpj b25maWd1cmU6NDMxNTogJD8gPSAwCmNvbmZpZ3VyZTo0MzE5OiB0ZXN0IC16IAoJCQkgfHwgdGVz dCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6NDMyMjogJD8gPSAwCmNvbmZpZ3VyZTo0MzI1 OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjQzMjg6ICQ/ID0gMApjb25maWd1cmU6NDMz OTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjQyOTM6IGNoZWNraW5nIGZvciBzdGRpbnQuaApjb25m aWd1cmU6NDMwOTogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICBjb25mdGVz dC5jID4mNQpjb25maWd1cmU6NDMxNTogJD8gPSAwCmNvbmZpZ3VyZTo0MzE5OiB0ZXN0IC16IAoJ CQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6NDMyMjogJD8gPSAwCmNvbmZp Z3VyZTo0MzI1OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjQzMjg6ICQ/ID0gMApjb25m aWd1cmU6NDMzOTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjQyOTM6IGNoZWNraW5nIGZvciB1bmlz dGQuaApjb25maWd1cmU6NDMwOTogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBl ICBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6NDMxNTogJD8gPSAwCmNvbmZpZ3VyZTo0MzE5OiB0 ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6NDMyMjogJD8g PSAwCmNvbmZpZ3VyZTo0MzI1OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjQzMjg6ICQ/ ID0gMApjb25maWd1cmU6NDMzOTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjQzNjU6IGNoZWNraW5n IGRsZmNuLmggdXNhYmlsaXR5CmNvbmZpZ3VyZTo0Mzc3OiBjYyAtYyAtTzIgLWZuby1zdHJpY3Qt YWxpYXNpbmcgLXBpcGUgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZTo0MzgzOiAkPyA9IDAKY29u ZmlndXJlOjQzODc6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZp Z3VyZTo0MzkwOiAkPyA9IDAKY29uZmlndXJlOjQzOTM6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25m aWd1cmU6NDM5NjogJD8gPSAwCmNvbmZpZ3VyZTo0NDA2OiByZXN1bHQ6IHllcwpjb25maWd1cmU6 NDQxMDogY2hlY2tpbmcgZGxmY24uaCBwcmVzZW5jZQpjb25maWd1cmU6NDQyMDogY2MgLUUgIGNv bmZ0ZXN0LmMKY29uZmlndXJlOjQ0MjY6ICQ/ID0gMApjb25maWd1cmU6NDQ0NjogcmVzdWx0OiB5 ZXMKY29uZmlndXJlOjQ0ODE6IGNoZWNraW5nIGZvciBkbGZjbi5oCmNvbmZpZ3VyZTo0NDg4OiBy ZXN1bHQ6IHllcwpjb25maWd1cmU6NDY4NTogY2hlY2tpbmcgZm9yIHJhbmxpYgpjb25maWd1cmU6 NDcwMTogZm91bmQgL3Vzci9iaW4vcmFubGliCmNvbmZpZ3VyZTo0NzEyOiByZXN1bHQ6IHJhbmxp Ygpjb25maWd1cmU6NDc2NTogY2hlY2tpbmcgZm9yIHN0cmlwCmNvbmZpZ3VyZTo0NzgxOiBmb3Vu ZCAvdXNyL2Jpbi9zdHJpcApjb25maWd1cmU6NDc5MjogcmVzdWx0OiBzdHJpcApjb25maWd1cmU6 NTAxNDogY2hlY2tpbmcgZm9yIG9iamRpcgpjb25maWd1cmU6NTAyNTogcmVzdWx0OiAubGlicwpj b25maWd1cmU6NTA0NjogY2hlY2tpbmcgZm9yIGNjIG9wdGlvbiB0byBwcm9kdWNlIFBJQwpjb25m aWd1cmU6NTIwOTogcmVzdWx0OiAtZlBJQwpjb25maWd1cmU6NTIxMzogY2hlY2tpbmcgaWYgY2Mg UElDIGZsYWcgLWZQSUMgd29ya3MKY29uZmlndXJlOjUyMzY6IGNjIC1jIC1PMiAtZm5vLXN0cmlj dC1hbGlhc2luZyAtcGlwZSAtZlBJQyAtRFBJQyAgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjUy NDI6ICQ/ID0gMApjb25maWd1cmU6NTI0NjogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25m dGVzdC5lcnIKY29uZmlndXJlOjUyNDk6ICQ/ID0gMApjb25maWd1cmU6NTI1MjogdGVzdCAtcyBj b25mdGVzdC5vCmNvbmZpZ3VyZTo1MjU1OiAkPyA9IDAKY29uZmlndXJlOjUyOTM6IHJlc3VsdDog eWVzCmNvbmZpZ3VyZTo1MzEzOiBjaGVja2luZyBpZiBjYyBzdGF0aWMgZmxhZyAtc3RhdGljIHdv cmtzCmNvbmZpZ3VyZTo1MzM3OiBjYyAtbyBjb25mdGVzdCAtTzIgLWZuby1zdHJpY3QtYWxpYXNp bmcgLXBpcGUgICAtcnBhdGg9L3Vzci9saWI6L3Vzci9sb2NhbC9saWIgLXN0YXRpYyBjb25mdGVz dC5jICA+JjUKY29uZmlndXJlOjUzNDM6ICQ/ID0gMApjb25maWd1cmU6NTM0NzogdGVzdCAteiAK CQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjUzNTA6ICQ/ID0gMApjb25m aWd1cmU6NTM1MzogdGVzdCAtcyBjb25mdGVzdApjb25maWd1cmU6NTM1NjogJD8gPSAwCmNvbmZp Z3VyZTo1MzczOiByZXN1bHQ6IHllcwpjb25maWd1cmU6NTM4OTogY2hlY2tpbmcgaWYgY2Mgc3Vw cG9ydHMgLWMgLW8gZmlsZS5vCmNvbmZpZ3VyZTo1NDA5OiBjYyAtYyAtTzIgLWZuby1zdHJpY3Qt YWxpYXNpbmcgLXBpcGUgLW8gb3V0L2NvbmZ0ZXN0Mi5vICBjb25mdGVzdC5jID4mNQpjb25maWd1 cmU6NTQzMzogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjU0Mzg6IGNoZWNraW5nIGlmIGNjIHN1cHBv cnRzIC1jIC1vIGZpbGUubG8KY29uZmlndXJlOjU0NjU6IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1h bGlhc2luZyAtcGlwZSAtYyAtbyBjb25mdGVzdC5sbyAgY29uZnRlc3QuYyA+JjUKY29uZmlndXJl OjU0NzE6ICQ/ID0gMApjb25maWd1cmU6NTQ3NTogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBj b25mdGVzdC5lcnIKY29uZmlndXJlOjU0Nzg6ICQ/ID0gMApjb25maWd1cmU6NTQ4MTogdGVzdCAt cyBjb25mdGVzdC5sbwpjb25maWd1cmU6NTQ4NDogJD8gPSAwCmNvbmZpZ3VyZTo1NTA2OiByZXN1 bHQ6IHllcwpjb25maWd1cmU6NTU0NTogY2hlY2tpbmcgaWYgY2Mgc3VwcG9ydHMgLWZuby1ydHRp IC1mbm8tZXhjZXB0aW9ucwpjb25maWd1cmU6NTU2NzogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFs aWFzaW5nIC1waXBlIC1mbm8tcnR0aSAtZm5vLWV4Y2VwdGlvbnMgLWMgY29uZnRlc3QuYyAgY29u ZnRlc3QuYyA+JjUKY2MxOiB3YXJuaW5nOiBjb21tYW5kIGxpbmUgb3B0aW9uICItZm5vLXJ0dGki IGlzIHZhbGlkIGZvciBDKysvT2JqQysrIGJ1dCBub3QgZm9yIEMKY2MxOiB3YXJuaW5nOiBjb21t YW5kIGxpbmUgb3B0aW9uICItZm5vLXJ0dGkiIGlzIHZhbGlkIGZvciBDKysvT2JqQysrIGJ1dCBu b3QgZm9yIEMKY29uZmlndXJlOjU1NzM6ICQ/ID0gMApjb25maWd1cmU6NTU3NzogdGVzdCAteiAK CQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjU1ODA6ICQ/ID0gMApjb25m aWd1cmU6NTU4MzogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3VyZTo1NTg2OiAkPyA9IDAKY29u ZmlndXJlOjU2MDM6IHJlc3VsdDogbm8KY29uZmlndXJlOjU2MTg6IGNoZWNraW5nIHdoZXRoZXIg dGhlIGxpbmtlciAoL3Vzci9iaW4vbGQpIHN1cHBvcnRzIHNoYXJlZCBsaWJyYXJpZXMKY29uZmln dXJlOjYyOTg6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZTo2MzA3OiBjaGVja2luZyBob3cgdG8gaGFy ZGNvZGUgbGlicmFyeSBwYXRocyBpbnRvIHByb2dyYW1zCmNvbmZpZ3VyZTo2MzMxOiByZXN1bHQ6 IGltbWVkaWF0ZQpjb25maWd1cmU6NjM0MDogY2hlY2tpbmcgd2hldGhlciBzdHJpcHBpbmcgbGli cmFyaWVzIGlzIHBvc3NpYmxlCmNvbmZpZ3VyZTo2MzQ1OiByZXN1bHQ6IHllcwpjb25maWd1cmU6 NjM2MDogY2hlY2tpbmcgZHluYW1pYyBsaW5rZXIgY2hhcmFjdGVyaXN0aWNzCmNvbmZpZ3VyZTo2 NzY1OiByZXN1bHQ6IGZyZWVic2Q3LjEgbGQuc28KY29uZmlndXJlOjY3NzQ6IGNoZWNraW5nIGlm IGxpYnRvb2wgc3VwcG9ydHMgc2hhcmVkIGxpYnJhcmllcwpjb25maWd1cmU6Njc3NjogcmVzdWx0 OiB5ZXMKY29uZmlndXJlOjY3ODM6IGNoZWNraW5nIHdoZXRoZXIgdG8gYnVpbGQgc2hhcmVkIGxp YnJhcmllcwpjb25maWd1cmU6NjgwNDogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjY4MTE6IGNoZWNr aW5nIHdoZXRoZXIgdG8gYnVpbGQgc3RhdGljIGxpYnJhcmllcwpjb25maWd1cmU6NjgxNTogcmVz dWx0OiB5ZXMKY29uZmlndXJlOjc1Njk6IGNoZWNraW5nIHdoZXRoZXIgLWxjIHNob3VsZCBiZSBl eHBsaWNpdGx5IGxpbmtlZCBpbgpjb25maWd1cmU6NzU3NzogY2MgLWMgLU8yIC1mbm8tc3RyaWN0 LWFsaWFzaW5nIC1waXBlICBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6NzU4MDogJD8gPSAwCmNv bmZpZ3VyZTo3NTk0OiBjYyAtc2hhcmVkIGNvbmZ0ZXN0Lm8gIC12IC1XbCwtc29uYW1lIC1XbCxj b25mdGVzdCAtbyBjb25mdGVzdCAyXD5cJjEgXHwgZ3JlcCAgLWxjICBcPi9kZXYvbnVsbCAyXD5c JjEKY29uZmlndXJlOjc1OTc6ICQ/ID0gMApjb25maWd1cmU6NzYxMjogcmVzdWx0OiBubwpjb25m aWd1cmU6ODIwNTogY2hlY2tpbmcgZm9yIG1zZ2ZtdApjb25maWd1cmU6ODIzMzogcmVzdWx0OiAv dXNyL2xvY2FsL2Jpbi9tc2dmbXQKY29uZmlndXJlOjgyNDI6IGNoZWNraW5nIGZvciBnbXNnZm10 CmNvbmZpZ3VyZTo4MjczOiByZXN1bHQ6IC91c3IvbG9jYWwvYmluL21zZ2ZtdApjb25maWd1cmU6 ODI4MzogY2hlY2tpbmcgZm9yIHhnZXR0ZXh0CmNvbmZpZ3VyZTo4MzExOiByZXN1bHQ6IC91c3Iv bG9jYWwvYmluL3hnZXR0ZXh0CmNvbmZpZ3VyZTo4MzIyOiBjaGVja2luZyBmb3IgbXNnbWVyZ2UK Y29uZmlndXJlOjgzNDk6IHJlc3VsdDogL3Vzci9sb2NhbC9iaW4vbXNnbWVyZ2UKY29uZmlndXJl Ojg0MjU6IGNoZWNraW5nIGZvciByYW5saWIKY29uZmlndXJlOjg0NTI6IHJlc3VsdDogcmFubGli CmNvbmZpZ3VyZTo4NDY0OiBjaGVja2luZyBmb3IgbGlicmFyeSBjb250YWluaW5nIHN0cmVycm9y CmNvbmZpZ3VyZTo4NDk0OiBjYyAtbyBjb25mdGVzdCAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcg LXBpcGUgICAtcnBhdGg9L3Vzci9saWI6L3Vzci9sb2NhbC9saWIgY29uZnRlc3QuYyAgPiY1CmNv bmZpZ3VyZTo4NTAwOiAkPyA9IDAKY29uZmlndXJlOjg1MDQ6IHRlc3QgLXogCgkJCSB8fCB0ZXN0 ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZTo4NTA3OiAkPyA9IDAKY29uZmlndXJlOjg1MTA6 IHRlc3QgLXMgY29uZnRlc3QKY29uZmlndXJlOjg1MTM6ICQ/ID0gMApjb25maWd1cmU6ODU4Mzog cmVzdWx0OiBub25lIHJlcXVpcmVkCmNvbmZpZ3VyZTo4NTkwOiBjaGVja2luZyBmb3IgYW4gQU5T SSBDLWNvbmZvcm1pbmcgY29uc3QKY29uZmlndXJlOjg2NTc6IGNjIC1jIC1PMiAtZm5vLXN0cmlj dC1hbGlhc2luZyAtcGlwZSAgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjg2NjM6ICQ/ID0gMApj b25maWd1cmU6ODY2NzogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29u ZmlndXJlOjg2NzA6ICQ/ID0gMApjb25maWd1cmU6ODY3MzogdGVzdCAtcyBjb25mdGVzdC5vCmNv bmZpZ3VyZTo4Njc2OiAkPyA9IDAKY29uZmlndXJlOjg2ODc6IHJlc3VsdDogeWVzCmNvbmZpZ3Vy ZTo4Njk3OiBjaGVja2luZyBmb3IgaW5saW5lCmNvbmZpZ3VyZTo4NzE4OiBjYyAtYyAtTzIgLWZu by1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZTo4NzI0OiAk PyA9IDAKY29uZmlndXJlOjg3Mjg6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3Qu ZXJyCmNvbmZpZ3VyZTo4NzMxOiAkPyA9IDAKY29uZmlndXJlOjg3MzQ6IHRlc3QgLXMgY29uZnRl c3Qubwpjb25maWd1cmU6ODczNzogJD8gPSAwCmNvbmZpZ3VyZTo4NzQ5OiByZXN1bHQ6IGlubGlu ZQpjb25maWd1cmU6ODc2ODogY2hlY2tpbmcgZm9yIG9mZl90CmNvbmZpZ3VyZTo4NzkyOiBjYyAt YyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3Vy ZTo4Nzk4OiAkPyA9IDAKY29uZmlndXJlOjg4MDI6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMg Y29uZnRlc3QuZXJyCmNvbmZpZ3VyZTo4ODA1OiAkPyA9IDAKY29uZmlndXJlOjg4MDg6IHRlc3Qg LXMgY29uZnRlc3Qubwpjb25maWd1cmU6ODgxMTogJD8gPSAwCmNvbmZpZ3VyZTo4ODIyOiByZXN1 bHQ6IHllcwpjb25maWd1cmU6ODgzNDogY2hlY2tpbmcgZm9yIHNpemVfdApjb25maWd1cmU6ODg1 ODogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICBjb25mdGVzdC5jID4mNQpj b25maWd1cmU6ODg2NDogJD8gPSAwCmNvbmZpZ3VyZTo4ODY4OiB0ZXN0IC16IAoJCQkgfHwgdGVz dCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6ODg3MTogJD8gPSAwCmNvbmZpZ3VyZTo4ODc0 OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjg4Nzc6ICQ/ID0gMApjb25maWd1cmU6ODg4 ODogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjg5MDI6IGNoZWNraW5nIGZvciB3b3JraW5nIGFsbG9j YS5oCmNvbmZpZ3VyZTo4OTIzOiBjYyAtbyBjb25mdGVzdCAtTzIgLWZuby1zdHJpY3QtYWxpYXNp bmcgLXBpcGUgICAtcnBhdGg9L3Vzci9saWI6L3Vzci9sb2NhbC9saWIgY29uZnRlc3QuYyAgPiY1 CmNvbmZ0ZXN0LmM6MjI6MjA6IGVycm9yOiBhbGxvY2EuaDogTm8gc3VjaCBmaWxlIG9yIGRpcmVj dG9yeQpjb25mdGVzdC5jOiBJbiBmdW5jdGlvbiAnbWFpbic6CmNvbmZ0ZXN0LmM6MjY6IHdhcm5p bmc6IGluY29tcGF0aWJsZSBpbXBsaWNpdCBkZWNsYXJhdGlvbiBvZiBidWlsdC1pbiBmdW5jdGlv biAnYWxsb2NhJwpjb25maWd1cmU6ODkyOTogJD8gPSAxCmNvbmZpZ3VyZTogZmFpbGVkIHByb2dy YW0gd2FzOgp8IC8qIGNvbmZkZWZzLmguICAqLwp8IAp8ICNkZWZpbmUgUEFDS0FHRV9OQU1FICJt eWRucyIKfCAjZGVmaW5lIFBBQ0tBR0VfVEFSTkFNRSAibXlkbnMiCnwgI2RlZmluZSBQQUNLQUdF X1ZFUlNJT04gIjEuMS4wIgp8ICNkZWZpbmUgUEFDS0FHRV9TVFJJTkcgIm15ZG5zIDEuMS4wIgp8 ICNkZWZpbmUgUEFDS0FHRV9CVUdSRVBPUlQgImJib3lAYmJveS5uZXQiCnwgI2RlZmluZSBQQUNL QUdFICJteWRucyIKfCAjZGVmaW5lIFZFUlNJT04gIjEuMS4wIgp8ICNkZWZpbmUgU1REQ19IRUFE RVJTIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1RZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfU1RB VF9IIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0ggMQp8ICNkZWZpbmUgSEFWRV9TVFJJTkdfSCAx CnwgI2RlZmluZSBIQVZFX01FTU9SWV9IIDEKfCAjZGVmaW5lIEhBVkVfU1RSSU5HU19IIDEKfCAj ZGVmaW5lIEhBVkVfSU5UVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX1NURElOVF9IIDEKfCAjZGVm aW5lIEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUgSEFWRV9ETEZDTl9IIDEKfCAvKiBlbmQgY29u ZmRlZnMuaC4gICovCnwgI2luY2x1ZGUgPGFsbG9jYS5oPgp8IGludAp8IG1haW4gKCkKfCB7Cnwg Y2hhciAqcCA9IChjaGFyICopIGFsbG9jYSAoMiAqIHNpemVvZiAoaW50KSk7CnwgICA7CnwgICBy ZXR1cm4gMDsKfCB9CmNvbmZpZ3VyZTo4OTU0OiByZXN1bHQ6IG5vCmNvbmZpZ3VyZTo4OTY0OiBj aGVja2luZyBmb3IgYWxsb2NhCmNvbmZpZ3VyZTo5MDA1OiBjYyAtbyBjb25mdGVzdCAtTzIgLWZu by1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgICAtcnBhdGg9L3Vzci9saWI6L3Vzci9sb2NhbC9saWIg Y29uZnRlc3QuYyAgPiY1CmNvbmZpZ3VyZTo5MDExOiAkPyA9IDAKY29uZmlndXJlOjkwMTU6IHRl c3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZTo5MDE4OiAkPyA9 IDAKY29uZmlndXJlOjkwMjE6IHRlc3QgLXMgY29uZnRlc3QKY29uZmlndXJlOjkwMjQ6ICQ/ID0g MApjb25maWd1cmU6OTAzNjogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjkyNjU6IGNoZWNraW5nIGZv ciBzdGRsaWIuaApjb25maWd1cmU6OTI3MDogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjkyNjU6IGNo ZWNraW5nIGZvciB1bmlzdGQuaApjb25maWd1cmU6OTI3MDogcmVzdWx0OiB5ZXMKY29uZmlndXJl Ojk0MTQ6IGNoZWNraW5nIGZvciBnZXRwYWdlc2l6ZQpjb25maWd1cmU6OTQ3MTogY2MgLW8gY29u ZnRlc3QgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICAgLXJwYXRoPS91c3IvbGliOi91 c3IvbG9jYWwvbGliIGNvbmZ0ZXN0LmMgID4mNQpjb25maWd1cmU6OTQ3NzogJD8gPSAwCmNvbmZp Z3VyZTo5NDgxOiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1 cmU6OTQ4NDogJD8gPSAwCmNvbmZpZ3VyZTo5NDg3OiB0ZXN0IC1zIGNvbmZ0ZXN0CmNvbmZpZ3Vy ZTo5NDkwOiAkPyA9IDAKY29uZmlndXJlOjk1MDI6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZTo5NTEy OiBjaGVja2luZyBmb3Igd29ya2luZyBtbWFwCmNvbmZpZ3VyZTo5NjU0OiBjYyAtbyBjb25mdGVz dCAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgICAtcnBhdGg9L3Vzci9saWI6L3Vzci9s b2NhbC9saWIgY29uZnRlc3QuYyAgPiY1CmNvbmZpZ3VyZTo5NjU3OiAkPyA9IDAKY29uZmlndXJl Ojk2NTk6IC4vY29uZnRlc3QKY29uZmlndXJlOjk2NjI6ICQ/ID0gMApjb25maWd1cmU6OTY3Njog cmVzdWx0OiB5ZXMKY29uZmlndXJlOjk2ODg6IGNoZWNraW5nIHdoZXRoZXIgd2UgYXJlIHVzaW5n IHRoZSBHTlUgQyBMaWJyYXJ5IDIuMSBvciBuZXdlcgpjb25mdGVzdC5jOjI4OjIyOiBlcnJvcjog ZmVhdHVyZXMuaDogTm8gc3VjaCBmaWxlIG9yIGRpcmVjdG9yeQpjb25maWd1cmU6OTcxOTogcmVz dWx0OiBubwpjb25maWd1cmU6OTcyNzogY2hlY2tpbmcgd2hldGhlciBpbnRlZ2VyIGRpdmlzaW9u IGJ5IHplcm8gcmFpc2VzIFNJR0ZQRQpjb25maWd1cmU6OTc4OTogY2MgLW8gY29uZnRlc3QgLU8y IC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICAgLXJwYXRoPS91c3IvbGliOi91c3IvbG9jYWwv bGliIGNvbmZ0ZXN0LmMgID4mNQpjb25maWd1cmU6OTc5MjogJD8gPSAwCmNvbmZpZ3VyZTo5Nzk0 OiAuL2NvbmZ0ZXN0CmNvbmZpZ3VyZTo5Nzk3OiAkPyA9IDAKY29uZmlndXJlOjk4MTI6IHJlc3Vs dDogeWVzCmNvbmZpZ3VyZTo5ODI1OiBjaGVja2luZyBmb3IgaW50dHlwZXMuaApjb25maWd1cmU6 OTg0NzogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICBjb25mdGVzdC5jID4m NQpjb25maWd1cmU6OTg1MzogJD8gPSAwCmNvbmZpZ3VyZTo5ODU3OiB0ZXN0IC16IAoJCQkgfHwg dGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6OTg2MDogJD8gPSAwCmNvbmZpZ3VyZTo5 ODYzOiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjk4NjY6ICQ/ID0gMApjb25maWd1cmU6 OTg3NzogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjk4ODg6IGNoZWNraW5nIGZvciBzdGRpbnQuaApj b25maWd1cmU6OTkxMDogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICBjb25m dGVzdC5jID4mNQpjb25maWd1cmU6OTkxNjogJD8gPSAwCmNvbmZpZ3VyZTo5OTIwOiB0ZXN0IC16 IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6OTkyMzogJD8gPSAwCmNv bmZpZ3VyZTo5OTI2OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjk5Mjk6ICQ/ID0gMApj b25maWd1cmU6OTk0MDogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjk5NTE6IGNoZWNraW5nIGZvciB1 bnNpZ25lZCBsb25nIGxvbmcKY29uZmlndXJlOjk5NzM6IGNjIC1vIGNvbmZ0ZXN0IC1PMiAtZm5v LXN0cmljdC1hbGlhc2luZyAtcGlwZSAgIC1ycGF0aD0vdXNyL2xpYjovdXNyL2xvY2FsL2xpYiBj b25mdGVzdC5jICA+JjUKY29uZmlndXJlOjk5Nzk6ICQ/ID0gMApjb25maWd1cmU6OTk4MzogdGVz dCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjk5ODY6ICQ/ID0g MApjb25maWd1cmU6OTk4OTogdGVzdCAtcyBjb25mdGVzdApjb25maWd1cmU6OTk5MjogJD8gPSAw CmNvbmZpZ3VyZToxMDAwNDogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEwMDMwOiBjaGVja2luZyBm b3IgaW50dHlwZXMuaApjb25maWd1cmU6MTAwNTM6IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1hbGlh c2luZyAtcGlwZSAgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjEwMDU5OiAkPyA9IDAKY29uZmln dXJlOjEwMDYzOiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1 cmU6MTAwNjY6ICQ/ID0gMApjb25maWd1cmU6MTAwNjk6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25m aWd1cmU6MTAwNzI6ICQ/ID0gMApjb25maWd1cmU6MTAwODQ6IHJlc3VsdDogeWVzCmNvbmZpZ3Vy ZToxMDA5NzogY2hlY2tpbmcgd2hldGhlciB0aGUgaW50dHlwZXMuaCBQUkl4Tk4gbWFjcm9zIGFy ZSBicm9rZW4KY29uZmlndXJlOjEwMTIzOiBjYyAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcg LXBpcGUgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZToxMDEyOTogJD8gPSAwCmNvbmZpZ3VyZTox MDEzMzogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjEw MTM2OiAkPyA9IDAKY29uZmlndXJlOjEwMTM5OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJl OjEwMTQyOiAkPyA9IDAKY29uZmlndXJlOjEwMTU0OiByZXN1bHQ6IG5vCmNvbmZpZ3VyZToxMDE5 MjogY2hlY2tpbmcgZm9yIGxkIHVzZWQgYnkgR0NDCmNvbmZpZ3VyZToxMDI1NTogcmVzdWx0OiAv dXNyL2Jpbi9sZApjb25maWd1cmU6MTAyNjQ6IGNoZWNraW5nIGlmIHRoZSBsaW5rZXIgKC91c3Iv YmluL2xkKSBpcyBHTlUgbGQKR05VIGxkIHZlcnNpb24gMi4xNSBbRnJlZUJTRF0gMjAwNC0wNS0y Mwpjb25maWd1cmU6MTAyNzY6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMDI4MjogY2hlY2tpbmcg Zm9yIHNoYXJlZCBsaWJyYXJ5IHJ1biBwYXRoIG9yaWdpbgpjb25maWd1cmU6MTAyOTU6IHJlc3Vs dDogZG9uZQpjb25maWd1cmU6MTA3MTQ6IGNoZWNraW5nIGFyZ3ouaCB1c2FiaWxpdHkKY29uZmln dXJlOjEwNzI2OiBjYyAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgIGNvbmZ0ZXN0 LmMgPiY1CmNvbmZ0ZXN0LmM6NjY6MTg6IGVycm9yOiBhcmd6Lmg6IE5vIHN1Y2ggZmlsZSBvciBk aXJlY3RvcnkKY29uZmlndXJlOjEwNzMyOiAkPyA9IDEKY29uZmlndXJlOiBmYWlsZWQgcHJvZ3Jh bSB3YXM6CnwgLyogY29uZmRlZnMuaC4gICovCnwgCnwgI2RlZmluZSBQQUNLQUdFX05BTUUgIm15 ZG5zIgp8ICNkZWZpbmUgUEFDS0FHRV9UQVJOQU1FICJteWRucyIKfCAjZGVmaW5lIFBBQ0tBR0Vf VkVSU0lPTiAiMS4xLjAiCnwgI2RlZmluZSBQQUNLQUdFX1NUUklORyAibXlkbnMgMS4xLjAiCnwg I2RlZmluZSBQQUNLQUdFX0JVR1JFUE9SVCAiYmJveUBiYm95Lm5ldCIKfCAjZGVmaW5lIFBBQ0tB R0UgIm15ZG5zIgp8ICNkZWZpbmUgVkVSU0lPTiAiMS4xLjAiCnwgI2RlZmluZSBTVERDX0hFQURF UlMgMQp8ICNkZWZpbmUgSEFWRV9TWVNfVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX1NZU19TVEFU X0ggMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1NUUklOR19IIDEK fCAjZGVmaW5lIEhBVkVfTUVNT1JZX0ggMQp8ICNkZWZpbmUgSEFWRV9TVFJJTkdTX0ggMQp8ICNk ZWZpbmUgSEFWRV9JTlRUWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfU1RESU5UX0ggMQp8ICNkZWZp bmUgSEFWRV9VTklTVERfSCAxCnwgI2RlZmluZSBIQVZFX0RMRkNOX0ggMQp8ICNkZWZpbmUgSEFW RV9BTExPQ0EgMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1VOSVNU RF9IIDEKfCAjZGVmaW5lIEhBVkVfR0VUUEFHRVNJWkUgMQp8ICNkZWZpbmUgSEFWRV9NTUFQIDEK fCAjZGVmaW5lIElOVERJVjBfUkFJU0VTX1NJR0ZQRSAxCnwgI2RlZmluZSBIQVZFX0lOVFRZUEVT X0hfV0lUSF9VSU5UTUFYIDEKfCAjZGVmaW5lIEhBVkVfU1RESU5UX0hfV0lUSF9VSU5UTUFYIDEK fCAjZGVmaW5lIEhBVkVfVU5TSUdORURfTE9OR19MT05HIDEKfCAjZGVmaW5lIEhBVkVfSU5UVFlQ RVNfSCAxCnwgLyogZW5kIGNvbmZkZWZzLmguICAqLwp8ICNpbmNsdWRlIDxzdGRpby5oPgp8ICNp ZiBIQVZFX1NZU19UWVBFU19ICnwgIyBpbmNsdWRlIDxzeXMvdHlwZXMuaD4KfCAjZW5kaWYKfCAj aWYgSEFWRV9TWVNfU1RBVF9ICnwgIyBpbmNsdWRlIDxzeXMvc3RhdC5oPgp8ICNlbmRpZgp8ICNp ZiBTVERDX0hFQURFUlMKfCAjIGluY2x1ZGUgPHN0ZGxpYi5oPgp8ICMgaW5jbHVkZSA8c3RkZGVm Lmg+CnwgI2Vsc2UKfCAjIGlmIEhBVkVfU1RETElCX0gKfCAjICBpbmNsdWRlIDxzdGRsaWIuaD4K fCAjIGVuZGlmCnwgI2VuZGlmCnwgI2lmIEhBVkVfU1RSSU5HX0gKfCAjIGlmICFTVERDX0hFQURF UlMgJiYgSEFWRV9NRU1PUllfSAp8ICMgIGluY2x1ZGUgPG1lbW9yeS5oPgp8ICMgZW5kaWYKfCAj IGluY2x1ZGUgPHN0cmluZy5oPgp8ICNlbmRpZgp8ICNpZiBIQVZFX1NUUklOR1NfSAp8ICMgaW5j bHVkZSA8c3RyaW5ncy5oPgp8ICNlbmRpZgp8ICNpZiBIQVZFX0lOVFRZUEVTX0gKfCAjIGluY2x1 ZGUgPGludHR5cGVzLmg+CnwgI2Vsc2UKfCAjIGlmIEhBVkVfU1RESU5UX0gKfCAjICBpbmNsdWRl IDxzdGRpbnQuaD4KfCAjIGVuZGlmCnwgI2VuZGlmCnwgI2lmIEhBVkVfVU5JU1REX0gKfCAjIGlu Y2x1ZGUgPHVuaXN0ZC5oPgp8ICNlbmRpZgp8ICNpbmNsdWRlIDxhcmd6Lmg+CmNvbmZpZ3VyZTox MDc1NTogcmVzdWx0OiBubwpjb25maWd1cmU6MTA3NTk6IGNoZWNraW5nIGFyZ3ouaCBwcmVzZW5j ZQpjb25maWd1cmU6MTA3Njk6IGNjIC1FICBjb25mdGVzdC5jCmNvbmZ0ZXN0LmM6MzI6MTg6IGVy cm9yOiBhcmd6Lmg6IE5vIHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkKY29uZmlndXJlOjEwNzc1OiAk PyA9IDEKY29uZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3YXM6CnwgLyogY29uZmRlZnMuaC4gICov CnwgCnwgI2RlZmluZSBQQUNLQUdFX05BTUUgIm15ZG5zIgp8ICNkZWZpbmUgUEFDS0FHRV9UQVJO QU1FICJteWRucyIKfCAjZGVmaW5lIFBBQ0tBR0VfVkVSU0lPTiAiMS4xLjAiCnwgI2RlZmluZSBQ QUNLQUdFX1NUUklORyAibXlkbnMgMS4xLjAiCnwgI2RlZmluZSBQQUNLQUdFX0JVR1JFUE9SVCAi YmJveUBiYm95Lm5ldCIKfCAjZGVmaW5lIFBBQ0tBR0UgIm15ZG5zIgp8ICNkZWZpbmUgVkVSU0lP TiAiMS4xLjAiCnwgI2RlZmluZSBTVERDX0hFQURFUlMgMQp8ICNkZWZpbmUgSEFWRV9TWVNfVFlQ RVNfSCAxCnwgI2RlZmluZSBIQVZFX1NZU19TVEFUX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJf SCAxCnwgI2RlZmluZSBIQVZFX1NUUklOR19IIDEKfCAjZGVmaW5lIEhBVkVfTUVNT1JZX0ggMQp8 ICNkZWZpbmUgSEFWRV9TVFJJTkdTX0ggMQp8ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IIDEKfCAj ZGVmaW5lIEhBVkVfU1RESU5UX0ggMQp8ICNkZWZpbmUgSEFWRV9VTklTVERfSCAxCnwgI2RlZmlu ZSBIQVZFX0RMRkNOX0ggMQp8ICNkZWZpbmUgSEFWRV9BTExPQ0EgMQp8ICNkZWZpbmUgSEFWRV9T VERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1VOSVNURF9IIDEKfCAjZGVmaW5lIEhBVkVfR0VUUEFH RVNJWkUgMQp8ICNkZWZpbmUgSEFWRV9NTUFQIDEKfCAjZGVmaW5lIElOVERJVjBfUkFJU0VTX1NJ R0ZQRSAxCnwgI2RlZmluZSBIQVZFX0lOVFRZUEVTX0hfV0lUSF9VSU5UTUFYIDEKfCAjZGVmaW5l IEhBVkVfU1RESU5UX0hfV0lUSF9VSU5UTUFYIDEKfCAjZGVmaW5lIEhBVkVfVU5TSUdORURfTE9O R19MT05HIDEKfCAjZGVmaW5lIEhBVkVfSU5UVFlQRVNfSCAxCnwgLyogZW5kIGNvbmZkZWZzLmgu ICAqLwp8ICNpbmNsdWRlIDxhcmd6Lmg+CmNvbmZpZ3VyZToxMDc5NTogcmVzdWx0OiBubwpjb25m aWd1cmU6MTA4MzA6IGNoZWNraW5nIGZvciBhcmd6LmgKY29uZmlndXJlOjEwODM3OiByZXN1bHQ6 IG5vCmNvbmZpZ3VyZToxMDcxNDogY2hlY2tpbmcgbGltaXRzLmggdXNhYmlsaXR5CmNvbmZpZ3Vy ZToxMDcyNjogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICBjb25mdGVzdC5j ID4mNQpjb25maWd1cmU6MTA3MzI6ICQ/ID0gMApjb25maWd1cmU6MTA3MzY6IHRlc3QgLXogCgkJ CSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToxMDczOTogJD8gPSAwCmNvbmZp Z3VyZToxMDc0MjogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3VyZToxMDc0NTogJD8gPSAwCmNv bmZpZ3VyZToxMDc1NTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEwNzU5OiBjaGVja2luZyBsaW1p dHMuaCBwcmVzZW5jZQpjb25maWd1cmU6MTA3Njk6IGNjIC1FICBjb25mdGVzdC5jCmNvbmZpZ3Vy ZToxMDc3NTogJD8gPSAwCmNvbmZpZ3VyZToxMDc5NTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEw ODMwOiBjaGVja2luZyBmb3IgbGltaXRzLmgKY29uZmlndXJlOjEwODM3OiByZXN1bHQ6IHllcwpj b25maWd1cmU6MTA3MTQ6IGNoZWNraW5nIGxvY2FsZS5oIHVzYWJpbGl0eQpjb25maWd1cmU6MTA3 MjY6IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAgY29uZnRlc3QuYyA+JjUK Y29uZmlndXJlOjEwNzMyOiAkPyA9IDAKY29uZmlndXJlOjEwNzM2OiB0ZXN0IC16IAoJCQkgfHwg dGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MTA3Mzk6ICQ/ID0gMApjb25maWd1cmU6 MTA3NDI6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6MTA3NDU6ICQ/ID0gMApjb25maWd1 cmU6MTA3NTU6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMDc1OTogY2hlY2tpbmcgbG9jYWxlLmgg cHJlc2VuY2UKY29uZmlndXJlOjEwNzY5OiBjYyAtRSAgY29uZnRlc3QuYwpjb25maWd1cmU6MTA3 NzU6ICQ/ID0gMApjb25maWd1cmU6MTA3OTU6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMDgzMDog Y2hlY2tpbmcgZm9yIGxvY2FsZS5oCmNvbmZpZ3VyZToxMDgzNzogcmVzdWx0OiB5ZXMKY29uZmln dXJlOjEwNzE0OiBjaGVja2luZyBubF90eXBlcy5oIHVzYWJpbGl0eQpjb25maWd1cmU6MTA3MjY6 IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAgY29uZnRlc3QuYyA+JjUKY29u ZmlndXJlOjEwNzMyOiAkPyA9IDAKY29uZmlndXJlOjEwNzM2OiB0ZXN0IC16IAoJCQkgfHwgdGVz dCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MTA3Mzk6ICQ/ID0gMApjb25maWd1cmU6MTA3 NDI6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6MTA3NDU6ICQ/ID0gMApjb25maWd1cmU6 MTA3NTU6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMDc1OTogY2hlY2tpbmcgbmxfdHlwZXMuaCBw cmVzZW5jZQpjb25maWd1cmU6MTA3Njk6IGNjIC1FICBjb25mdGVzdC5jCmNvbmZpZ3VyZToxMDc3 NTogJD8gPSAwCmNvbmZpZ3VyZToxMDc5NTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEwODMwOiBj aGVja2luZyBmb3IgbmxfdHlwZXMuaApjb25maWd1cmU6MTA4Mzc6IHJlc3VsdDogeWVzCmNvbmZp Z3VyZToxMDcxNDogY2hlY2tpbmcgbWFsbG9jLmggdXNhYmlsaXR5CmNvbmZpZ3VyZToxMDcyNjog Y2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICBjb25mdGVzdC5jID4mNQpJbiBm aWxlIGluY2x1ZGVkIGZyb20gY29uZnRlc3QuYzo2OToKL3Vzci9pbmNsdWRlL21hbGxvYy5oOjM6 MjogZXJyb3I6ICNlcnJvciAiPG1hbGxvYy5oPiBoYXMgYmVlbiByZXBsYWNlZCBieSA8c3RkbGli Lmg+Igpjb25maWd1cmU6MTA3MzI6ICQ/ID0gMQpjb25maWd1cmU6IGZhaWxlZCBwcm9ncmFtIHdh czoKfCAvKiBjb25mZGVmcy5oLiAgKi8KfCAKfCAjZGVmaW5lIFBBQ0tBR0VfTkFNRSAibXlkbnMi CnwgI2RlZmluZSBQQUNLQUdFX1RBUk5BTUUgIm15ZG5zIgp8ICNkZWZpbmUgUEFDS0FHRV9WRVJT SU9OICIxLjEuMCIKfCAjZGVmaW5lIFBBQ0tBR0VfU1RSSU5HICJteWRucyAxLjEuMCIKfCAjZGVm aW5lIFBBQ0tBR0VfQlVHUkVQT1JUICJiYm95QGJib3kubmV0Igp8ICNkZWZpbmUgUEFDS0FHRSAi bXlkbnMiCnwgI2RlZmluZSBWRVJTSU9OICIxLjEuMCIKfCAjZGVmaW5lIFNURENfSEVBREVSUyAx CnwgI2RlZmluZSBIQVZFX1NZU19UWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1NUQVRfSCAx CnwgI2RlZmluZSBIQVZFX1NURExJQl9IIDEKfCAjZGVmaW5lIEhBVkVfU1RSSU5HX0ggMQp8ICNk ZWZpbmUgSEFWRV9NRU1PUllfSCAxCnwgI2RlZmluZSBIQVZFX1NUUklOR1NfSCAxCnwgI2RlZmlu ZSBIQVZFX0lOVFRZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERJTlRfSCAxCnwgI2RlZmluZSBI QVZFX1VOSVNURF9IIDEKfCAjZGVmaW5lIEhBVkVfRExGQ05fSCAxCnwgI2RlZmluZSBIQVZFX0FM TE9DQSAxCnwgI2RlZmluZSBIQVZFX1NURExJQl9IIDEKfCAjZGVmaW5lIEhBVkVfVU5JU1REX0gg MQp8ICNkZWZpbmUgSEFWRV9HRVRQQUdFU0laRSAxCnwgI2RlZmluZSBIQVZFX01NQVAgMQp8ICNk ZWZpbmUgSU5URElWMF9SQUlTRVNfU0lHRlBFIDEKfCAjZGVmaW5lIEhBVkVfSU5UVFlQRVNfSF9X SVRIX1VJTlRNQVggMQp8ICNkZWZpbmUgSEFWRV9TVERJTlRfSF9XSVRIX1VJTlRNQVggMQp8ICNk ZWZpbmUgSEFWRV9VTlNJR05FRF9MT05HX0xPTkcgMQp8ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19I IDEKfCAjZGVmaW5lIEhBVkVfTElNSVRTX0ggMQp8ICNkZWZpbmUgSEFWRV9MT0NBTEVfSCAxCnwg I2RlZmluZSBIQVZFX05MX1RZUEVTX0ggMQp8IC8qIGVuZCBjb25mZGVmcy5oLiAgKi8KfCAjaW5j bHVkZSA8c3RkaW8uaD4KfCAjaWYgSEFWRV9TWVNfVFlQRVNfSAp8ICMgaW5jbHVkZSA8c3lzL3R5 cGVzLmg+CnwgI2VuZGlmCnwgI2lmIEhBVkVfU1lTX1NUQVRfSAp8ICMgaW5jbHVkZSA8c3lzL3N0 YXQuaD4KfCAjZW5kaWYKfCAjaWYgU1REQ19IRUFERVJTCnwgIyBpbmNsdWRlIDxzdGRsaWIuaD4K fCAjIGluY2x1ZGUgPHN0ZGRlZi5oPgp8ICNlbHNlCnwgIyBpZiBIQVZFX1NURExJQl9ICnwgIyAg aW5jbHVkZSA8c3RkbGliLmg+CnwgIyBlbmRpZgp8ICNlbmRpZgp8ICNpZiBIQVZFX1NUUklOR19I CnwgIyBpZiAhU1REQ19IRUFERVJTICYmIEhBVkVfTUVNT1JZX0gKfCAjICBpbmNsdWRlIDxtZW1v cnkuaD4KfCAjIGVuZGlmCnwgIyBpbmNsdWRlIDxzdHJpbmcuaD4KfCAjZW5kaWYKfCAjaWYgSEFW RV9TVFJJTkdTX0gKfCAjIGluY2x1ZGUgPHN0cmluZ3MuaD4KfCAjZW5kaWYKfCAjaWYgSEFWRV9J TlRUWVBFU19ICnwgIyBpbmNsdWRlIDxpbnR0eXBlcy5oPgp8ICNlbHNlCnwgIyBpZiBIQVZFX1NU RElOVF9ICnwgIyAgaW5jbHVkZSA8c3RkaW50Lmg+CnwgIyBlbmRpZgp8ICNlbmRpZgp8ICNpZiBI QVZFX1VOSVNURF9ICnwgIyBpbmNsdWRlIDx1bmlzdGQuaD4KfCAjZW5kaWYKfCAjaW5jbHVkZSA8 bWFsbG9jLmg+CmNvbmZpZ3VyZToxMDc1NTogcmVzdWx0OiBubwpjb25maWd1cmU6MTA3NTk6IGNo ZWNraW5nIG1hbGxvYy5oIHByZXNlbmNlCmNvbmZpZ3VyZToxMDc2OTogY2MgLUUgIGNvbmZ0ZXN0 LmMKSW4gZmlsZSBpbmNsdWRlZCBmcm9tIGNvbmZ0ZXN0LmM6MzU6Ci91c3IvaW5jbHVkZS9tYWxs b2MuaDozOjI6IGVycm9yOiAjZXJyb3IgIjxtYWxsb2MuaD4gaGFzIGJlZW4gcmVwbGFjZWQgYnkg PHN0ZGxpYi5oPiIKY29uZmlndXJlOjEwNzc1OiAkPyA9IDEKY29uZmlndXJlOiBmYWlsZWQgcHJv Z3JhbSB3YXM6CnwgLyogY29uZmRlZnMuaC4gICovCnwgCnwgI2RlZmluZSBQQUNLQUdFX05BTUUg Im15ZG5zIgp8ICNkZWZpbmUgUEFDS0FHRV9UQVJOQU1FICJteWRucyIKfCAjZGVmaW5lIFBBQ0tB R0VfVkVSU0lPTiAiMS4xLjAiCnwgI2RlZmluZSBQQUNLQUdFX1NUUklORyAibXlkbnMgMS4xLjAi CnwgI2RlZmluZSBQQUNLQUdFX0JVR1JFUE9SVCAiYmJveUBiYm95Lm5ldCIKfCAjZGVmaW5lIFBB Q0tBR0UgIm15ZG5zIgp8ICNkZWZpbmUgVkVSU0lPTiAiMS4xLjAiCnwgI2RlZmluZSBTVERDX0hF QURFUlMgMQp8ICNkZWZpbmUgSEFWRV9TWVNfVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX1NZU19T VEFUX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1NUUklOR19I IDEKfCAjZGVmaW5lIEhBVkVfTUVNT1JZX0ggMQp8ICNkZWZpbmUgSEFWRV9TVFJJTkdTX0ggMQp8 ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfU1RESU5UX0ggMQp8ICNk ZWZpbmUgSEFWRV9VTklTVERfSCAxCnwgI2RlZmluZSBIQVZFX0RMRkNOX0ggMQp8ICNkZWZpbmUg SEFWRV9BTExPQ0EgMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1VO SVNURF9IIDEKfCAjZGVmaW5lIEhBVkVfR0VUUEFHRVNJWkUgMQp8ICNkZWZpbmUgSEFWRV9NTUFQ IDEKfCAjZGVmaW5lIElOVERJVjBfUkFJU0VTX1NJR0ZQRSAxCnwgI2RlZmluZSBIQVZFX0lOVFRZ UEVTX0hfV0lUSF9VSU5UTUFYIDEKfCAjZGVmaW5lIEhBVkVfU1RESU5UX0hfV0lUSF9VSU5UTUFY IDEKfCAjZGVmaW5lIEhBVkVfVU5TSUdORURfTE9OR19MT05HIDEKfCAjZGVmaW5lIEhBVkVfSU5U VFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX0xJTUlUU19IIDEKfCAjZGVmaW5lIEhBVkVfTE9DQUxF X0ggMQp8ICNkZWZpbmUgSEFWRV9OTF9UWVBFU19IIDEKfCAvKiBlbmQgY29uZmRlZnMuaC4gICov CnwgI2luY2x1ZGUgPG1hbGxvYy5oPgpjb25maWd1cmU6MTA3OTU6IHJlc3VsdDogbm8KY29uZmln dXJlOjEwODMwOiBjaGVja2luZyBmb3IgbWFsbG9jLmgKY29uZmlndXJlOjEwODM3OiByZXN1bHQ6 IG5vCmNvbmZpZ3VyZToxMDcxNDogY2hlY2tpbmcgc3RkZGVmLmggdXNhYmlsaXR5CmNvbmZpZ3Vy ZToxMDcyNjogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICBjb25mdGVzdC5j ID4mNQpjb25maWd1cmU6MTA3MzI6ICQ/ID0gMApjb25maWd1cmU6MTA3MzY6IHRlc3QgLXogCgkJ CSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToxMDczOTogJD8gPSAwCmNvbmZp Z3VyZToxMDc0MjogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3VyZToxMDc0NTogJD8gPSAwCmNv bmZpZ3VyZToxMDc1NTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEwNzU5OiBjaGVja2luZyBzdGRk ZWYuaCBwcmVzZW5jZQpjb25maWd1cmU6MTA3Njk6IGNjIC1FICBjb25mdGVzdC5jCmNvbmZpZ3Vy ZToxMDc3NTogJD8gPSAwCmNvbmZpZ3VyZToxMDc5NTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEw ODMwOiBjaGVja2luZyBmb3Igc3RkZGVmLmgKY29uZmlndXJlOjEwODM3OiByZXN1bHQ6IHllcwpj b25maWd1cmU6MTA3MDU6IGNoZWNraW5nIGZvciBzdGRsaWIuaApjb25maWd1cmU6MTA3MTA6IHJl c3VsdDogeWVzCmNvbmZpZ3VyZToxMDcwNTogY2hlY2tpbmcgZm9yIHN0cmluZy5oCmNvbmZpZ3Vy ZToxMDcxMDogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEwNzA1OiBjaGVja2luZyBmb3IgdW5pc3Rk LmgKY29uZmlndXJlOjEwNzEwOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTA3MTQ6IGNoZWNraW5n IHN5cy9wYXJhbS5oIHVzYWJpbGl0eQpjb25maWd1cmU6MTA3MjY6IGNjIC1jIC1PMiAtZm5vLXN0 cmljdC1hbGlhc2luZyAtcGlwZSAgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjEwNzMyOiAkPyA9 IDAKY29uZmlndXJlOjEwNzM2OiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVy cgpjb25maWd1cmU6MTA3Mzk6ICQ/ID0gMApjb25maWd1cmU6MTA3NDI6IHRlc3QgLXMgY29uZnRl c3Qubwpjb25maWd1cmU6MTA3NDU6ICQ/ID0gMApjb25maWd1cmU6MTA3NTU6IHJlc3VsdDogeWVz CmNvbmZpZ3VyZToxMDc1OTogY2hlY2tpbmcgc3lzL3BhcmFtLmggcHJlc2VuY2UKY29uZmlndXJl OjEwNzY5OiBjYyAtRSAgY29uZnRlc3QuYwpjb25maWd1cmU6MTA3NzU6ICQ/ID0gMApjb25maWd1 cmU6MTA3OTU6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMDgzMDogY2hlY2tpbmcgZm9yIHN5cy9w YXJhbS5oCmNvbmZpZ3VyZToxMDgzNzogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEwODc2OiBjaGVj a2luZyBmb3IgZmVvZl91bmxvY2tlZApjb25maWd1cmU6MTA5MzM6IGNjIC1vIGNvbmZ0ZXN0IC1P MiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAgIC1ycGF0aD0vdXNyL2xpYjovdXNyL2xvY2Fs L2xpYiBjb25mdGVzdC5jICA+JjUKY29uZmlndXJlOjEwOTM5OiAkPyA9IDAKY29uZmlndXJlOjEw OTQzOiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MTA5 NDY6ICQ/ID0gMApjb25maWd1cmU6MTA5NDk6IHRlc3QgLXMgY29uZnRlc3QKY29uZmlndXJlOjEw OTUyOiAkPyA9IDAKY29uZmlndXJlOjEwOTY0OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTA4NzY6 IGNoZWNraW5nIGZvciBmZ2V0c191bmxvY2tlZApjb25maWd1cmU6MTA5MzM6IGNjIC1vIGNvbmZ0 ZXN0IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAgIC1ycGF0aD0vdXNyL2xpYjovdXNy L2xvY2FsL2xpYiBjb25mdGVzdC5jICA+JjUKL3Zhci90bXAvL2NjckNrY2F3Lm8oLnRleHQrMHg5 KTogSW4gZnVuY3Rpb24gYG1haW4nOgo6IHVuZGVmaW5lZCByZWZlcmVuY2UgdG8gYGZnZXRzX3Vu bG9ja2VkJwovdmFyL3RtcC8vY2NyQ2tjYXcubyguZGF0YSsweDApOiB1bmRlZmluZWQgcmVmZXJl bmNlIHRvIGBmZ2V0c191bmxvY2tlZCcKY29uZmlndXJlOjEwOTM5OiAkPyA9IDEKY29uZmlndXJl OiBmYWlsZWQgcHJvZ3JhbSB3YXM6CnwgLyogY29uZmRlZnMuaC4gICovCnwgCnwgI2RlZmluZSBQ QUNLQUdFX05BTUUgIm15ZG5zIgp8ICNkZWZpbmUgUEFDS0FHRV9UQVJOQU1FICJteWRucyIKfCAj ZGVmaW5lIFBBQ0tBR0VfVkVSU0lPTiAiMS4xLjAiCnwgI2RlZmluZSBQQUNLQUdFX1NUUklORyAi bXlkbnMgMS4xLjAiCnwgI2RlZmluZSBQQUNLQUdFX0JVR1JFUE9SVCAiYmJveUBiYm95Lm5ldCIK fCAjZGVmaW5lIFBBQ0tBR0UgIm15ZG5zIgp8ICNkZWZpbmUgVkVSU0lPTiAiMS4xLjAiCnwgI2Rl ZmluZSBTVERDX0hFQURFUlMgMQp8ICNkZWZpbmUgSEFWRV9TWVNfVFlQRVNfSCAxCnwgI2RlZmlu ZSBIQVZFX1NZU19TVEFUX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBI QVZFX1NUUklOR19IIDEKfCAjZGVmaW5lIEhBVkVfTUVNT1JZX0ggMQp8ICNkZWZpbmUgSEFWRV9T VFJJTkdTX0ggMQp8ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfU1RE SU5UX0ggMQp8ICNkZWZpbmUgSEFWRV9VTklTVERfSCAxCnwgI2RlZmluZSBIQVZFX0RMRkNOX0gg MQp8ICNkZWZpbmUgSEFWRV9BTExPQ0EgMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2Rl ZmluZSBIQVZFX1VOSVNURF9IIDEKfCAjZGVmaW5lIEhBVkVfR0VUUEFHRVNJWkUgMQp8ICNkZWZp bmUgSEFWRV9NTUFQIDEKfCAjZGVmaW5lIElOVERJVjBfUkFJU0VTX1NJR0ZQRSAxCnwgI2RlZmlu ZSBIQVZFX0lOVFRZUEVTX0hfV0lUSF9VSU5UTUFYIDEKfCAjZGVmaW5lIEhBVkVfU1RESU5UX0hf V0lUSF9VSU5UTUFYIDEKfCAjZGVmaW5lIEhBVkVfVU5TSUdORURfTE9OR19MT05HIDEKfCAjZGVm aW5lIEhBVkVfSU5UVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX0xJTUlUU19IIDEKfCAjZGVmaW5l IEhBVkVfTE9DQUxFX0ggMQp8ICNkZWZpbmUgSEFWRV9OTF9UWVBFU19IIDEKfCAjZGVmaW5lIEhB VkVfU1REREVGX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1NU UklOR19IIDEKfCAjZGVmaW5lIEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfUEFS QU1fSCAxCnwgI2RlZmluZSBIQVZFX0ZFT0ZfVU5MT0NLRUQgMQp8IC8qIGVuZCBjb25mZGVmcy5o LiAgKi8KfCAvKiBEZWZpbmUgZmdldHNfdW5sb2NrZWQgdG8gYW4gaW5ub2N1b3VzIHZhcmlhbnQs IGluIGNhc2UgPGxpbWl0cy5oPiBkZWNsYXJlcyBmZ2V0c191bmxvY2tlZC4KfCAgICBGb3IgZXhh bXBsZSwgSFAtVVggMTFpIDxsaW1pdHMuaD4gZGVjbGFyZXMgZ2V0dGltZW9mZGF5LiAgKi8KfCAj ZGVmaW5lIGZnZXRzX3VubG9ja2VkIGlubm9jdW91c19mZ2V0c191bmxvY2tlZAp8IAp8IC8qIFN5 c3RlbSBoZWFkZXIgdG8gZGVmaW5lIF9fc3R1YiBtYWNyb3MgYW5kIGhvcGVmdWxseSBmZXcgcHJv dG90eXBlcywKfCAgICAgd2hpY2ggY2FuIGNvbmZsaWN0IHdpdGggY2hhciBmZ2V0c191bmxvY2tl ZCAoKTsgYmVsb3cuCnwgICAgIFByZWZlciA8bGltaXRzLmg+IHRvIDxhc3NlcnQuaD4gaWYgX19T VERDX18gaXMgZGVmaW5lZCwgc2luY2UKfCAgICAgPGxpbWl0cy5oPiBleGlzdHMgZXZlbiBvbiBm cmVlc3RhbmRpbmcgY29tcGlsZXJzLiAgKi8KfCAKfCAjaWZkZWYgX19TVERDX18KfCAjIGluY2x1 ZGUgPGxpbWl0cy5oPgp8ICNlbHNlCnwgIyBpbmNsdWRlIDxhc3NlcnQuaD4KfCAjZW5kaWYKfCAK fCAjdW5kZWYgZmdldHNfdW5sb2NrZWQKfCAKfCAvKiBPdmVycmlkZSBhbnkgZ2NjMiBpbnRlcm5h bCBwcm90b3R5cGUgdG8gYXZvaWQgYW4gZXJyb3IuICAqLwp8ICNpZmRlZiBfX2NwbHVzcGx1cwp8 IGV4dGVybiAiQyIKfCB7CnwgI2VuZGlmCnwgLyogV2UgdXNlIGNoYXIgYmVjYXVzZSBpbnQgbWln aHQgbWF0Y2ggdGhlIHJldHVybiB0eXBlIG9mIGEgZ2NjMgp8ICAgIGJ1aWx0aW4gYW5kIHRoZW4g aXRzIGFyZ3VtZW50IHByb3RvdHlwZSB3b3VsZCBzdGlsbCBhcHBseS4gICovCnwgY2hhciBmZ2V0 c191bmxvY2tlZCAoKTsKfCAvKiBUaGUgR05VIEMgbGlicmFyeSBkZWZpbmVzIHRoaXMgZm9yIGZ1 bmN0aW9ucyB3aGljaCBpdCBpbXBsZW1lbnRzCnwgICAgIHRvIGFsd2F5cyBmYWlsIHdpdGggRU5P U1lTLiAgU29tZSBmdW5jdGlvbnMgYXJlIGFjdHVhbGx5IG5hbWVkCnwgICAgIHNvbWV0aGluZyBz dGFydGluZyB3aXRoIF9fIGFuZCB0aGUgbm9ybWFsIG5hbWUgaXMgYW4gYWxpYXMuICAqLwp8ICNp ZiBkZWZpbmVkIChfX3N0dWJfZmdldHNfdW5sb2NrZWQpIHx8IGRlZmluZWQgKF9fc3R1Yl9fX2Zn ZXRzX3VubG9ja2VkKQp8IGNob2tlIG1lCnwgI2Vsc2UKfCBjaGFyICgqZikgKCkgPSBmZ2V0c191 bmxvY2tlZDsKfCAjZW5kaWYKfCAjaWZkZWYgX19jcGx1c3BsdXMKfCB9CnwgI2VuZGlmCnwgCnwg aW50CnwgbWFpbiAoKQp8IHsKfCByZXR1cm4gZiAhPSBmZ2V0c191bmxvY2tlZDsKfCAgIDsKfCAg IHJldHVybiAwOwp8IH0KY29uZmlndXJlOjEwOTY0OiByZXN1bHQ6IG5vCmNvbmZpZ3VyZToxMDg3 NjogY2hlY2tpbmcgZm9yIGdldGNfdW5sb2NrZWQKY29uZmlndXJlOjEwOTMzOiBjYyAtbyBjb25m dGVzdCAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgICAtcnBhdGg9L3Vzci9saWI6L3Vz ci9sb2NhbC9saWIgY29uZnRlc3QuYyAgPiY1CmNvbmZpZ3VyZToxMDkzOTogJD8gPSAwCmNvbmZp Z3VyZToxMDk0MzogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmln dXJlOjEwOTQ2OiAkPyA9IDAKY29uZmlndXJlOjEwOTQ5OiB0ZXN0IC1zIGNvbmZ0ZXN0CmNvbmZp Z3VyZToxMDk1MjogJD8gPSAwCmNvbmZpZ3VyZToxMDk2NDogcmVzdWx0OiB5ZXMKY29uZmlndXJl OjEwODc2OiBjaGVja2luZyBmb3IgZ2V0Y3dkCmNvbmZpZ3VyZToxMDkzMzogY2MgLW8gY29uZnRl c3QgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICAgLXJwYXRoPS91c3IvbGliOi91c3Iv bG9jYWwvbGliIGNvbmZ0ZXN0LmMgID4mNQpjb25maWd1cmU6MTA5Mzk6ICQ/ID0gMApjb25maWd1 cmU6MTA5NDM6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3Vy ZToxMDk0NjogJD8gPSAwCmNvbmZpZ3VyZToxMDk0OTogdGVzdCAtcyBjb25mdGVzdApjb25maWd1 cmU6MTA5NTI6ICQ/ID0gMApjb25maWd1cmU6MTA5NjQ6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZTox MDg3NjogY2hlY2tpbmcgZm9yIGdldGVnaWQKY29uZmlndXJlOjEwOTMzOiBjYyAtbyBjb25mdGVz dCAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgICAtcnBhdGg9L3Vzci9saWI6L3Vzci9s b2NhbC9saWIgY29uZnRlc3QuYyAgPiY1CmNvbmZpZ3VyZToxMDkzOTogJD8gPSAwCmNvbmZpZ3Vy ZToxMDk0MzogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJl OjEwOTQ2OiAkPyA9IDAKY29uZmlndXJlOjEwOTQ5OiB0ZXN0IC1zIGNvbmZ0ZXN0CmNvbmZpZ3Vy ZToxMDk1MjogJD8gPSAwCmNvbmZpZ3VyZToxMDk2NDogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEw ODc2OiBjaGVja2luZyBmb3IgZ2V0ZXVpZApjb25maWd1cmU6MTA5MzM6IGNjIC1vIGNvbmZ0ZXN0 IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAgIC1ycGF0aD0vdXNyL2xpYjovdXNyL2xv Y2FsL2xpYiBjb25mdGVzdC5jICA+JjUKY29uZmlndXJlOjEwOTM5OiAkPyA9IDAKY29uZmlndXJl OjEwOTQzOiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6 MTA5NDY6ICQ/ID0gMApjb25maWd1cmU6MTA5NDk6IHRlc3QgLXMgY29uZnRlc3QKY29uZmlndXJl OjEwOTUyOiAkPyA9IDAKY29uZmlndXJlOjEwOTY0OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTA4 NzY6IGNoZWNraW5nIGZvciBnZXRnaWQKY29uZmlndXJlOjEwOTMzOiBjYyAtbyBjb25mdGVzdCAt TzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgICAtcnBhdGg9L3Vzci9saWI6L3Vzci9sb2Nh bC9saWIgY29uZnRlc3QuYyAgPiY1CmNvbmZpZ3VyZToxMDkzOTogJD8gPSAwCmNvbmZpZ3VyZTox MDk0MzogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjEw OTQ2OiAkPyA9IDAKY29uZmlndXJlOjEwOTQ5OiB0ZXN0IC1zIGNvbmZ0ZXN0CmNvbmZpZ3VyZTox MDk1MjogJD8gPSAwCmNvbmZpZ3VyZToxMDk2NDogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEwODc2 OiBjaGVja2luZyBmb3IgZ2V0dWlkCmNvbmZpZ3VyZToxMDkzMzogY2MgLW8gY29uZnRlc3QgLU8y IC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICAgLXJwYXRoPS91c3IvbGliOi91c3IvbG9jYWwv bGliIGNvbmZ0ZXN0LmMgID4mNQpjb25maWd1cmU6MTA5Mzk6ICQ/ID0gMApjb25maWd1cmU6MTA5 NDM6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToxMDk0 NjogJD8gPSAwCmNvbmZpZ3VyZToxMDk0OTogdGVzdCAtcyBjb25mdGVzdApjb25maWd1cmU6MTA5 NTI6ICQ/ID0gMApjb25maWd1cmU6MTA5NjQ6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMDg3Njog Y2hlY2tpbmcgZm9yIG1lbXBjcHkKY29uZmlndXJlOjEwOTMzOiBjYyAtbyBjb25mdGVzdCAtTzIg LWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgICAtcnBhdGg9L3Vzci9saWI6L3Vzci9sb2NhbC9s aWIgY29uZnRlc3QuYyAgPiY1CmNvbmZ0ZXN0LmM6NzE6IHdhcm5pbmc6IGNvbmZsaWN0aW5nIHR5 cGVzIGZvciBidWlsdC1pbiBmdW5jdGlvbiAnbWVtcGNweScKL3Zhci90bXAvL2NjRUdNMlNMLm8o LnRleHQrMHg5KTogSW4gZnVuY3Rpb24gYG1haW4nOgo6IHVuZGVmaW5lZCByZWZlcmVuY2UgdG8g YG1lbXBjcHknCi92YXIvdG1wLy9jY0VHTTJTTC5vKC5kYXRhKzB4MCk6IHVuZGVmaW5lZCByZWZl cmVuY2UgdG8gYG1lbXBjcHknCmNvbmZpZ3VyZToxMDkzOTogJD8gPSAxCmNvbmZpZ3VyZTogZmFp bGVkIHByb2dyYW0gd2FzOgp8IC8qIGNvbmZkZWZzLmguICAqLwp8IAp8ICNkZWZpbmUgUEFDS0FH RV9OQU1FICJteWRucyIKfCAjZGVmaW5lIFBBQ0tBR0VfVEFSTkFNRSAibXlkbnMiCnwgI2RlZmlu ZSBQQUNLQUdFX1ZFUlNJT04gIjEuMS4wIgp8ICNkZWZpbmUgUEFDS0FHRV9TVFJJTkcgIm15ZG5z IDEuMS4wIgp8ICNkZWZpbmUgUEFDS0FHRV9CVUdSRVBPUlQgImJib3lAYmJveS5uZXQiCnwgI2Rl ZmluZSBQQUNLQUdFICJteWRucyIKfCAjZGVmaW5lIFZFUlNJT04gIjEuMS4wIgp8ICNkZWZpbmUg U1REQ19IRUFERVJTIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1RZUEVTX0ggMQp8ICNkZWZpbmUgSEFW RV9TWVNfU1RBVF9IIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0ggMQp8ICNkZWZpbmUgSEFWRV9T VFJJTkdfSCAxCnwgI2RlZmluZSBIQVZFX01FTU9SWV9IIDEKfCAjZGVmaW5lIEhBVkVfU1RSSU5H U19IIDEKfCAjZGVmaW5lIEhBVkVfSU5UVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX1NURElOVF9I IDEKfCAjZGVmaW5lIEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUgSEFWRV9ETEZDTl9IIDEKfCAj ZGVmaW5lIEhBVkVfQUxMT0NBIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0ggMQp8ICNkZWZpbmUg SEFWRV9VTklTVERfSCAxCnwgI2RlZmluZSBIQVZFX0dFVFBBR0VTSVpFIDEKfCAjZGVmaW5lIEhB VkVfTU1BUCAxCnwgI2RlZmluZSBJTlRESVYwX1JBSVNFU19TSUdGUEUgMQp8ICNkZWZpbmUgSEFW RV9JTlRUWVBFU19IX1dJVEhfVUlOVE1BWCAxCnwgI2RlZmluZSBIQVZFX1NURElOVF9IX1dJVEhf VUlOVE1BWCAxCnwgI2RlZmluZSBIQVZFX1VOU0lHTkVEX0xPTkdfTE9ORyAxCnwgI2RlZmluZSBI QVZFX0lOVFRZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9MSU1JVFNfSCAxCnwgI2RlZmluZSBIQVZF X0xPQ0FMRV9IIDEKfCAjZGVmaW5lIEhBVkVfTkxfVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX1NU RERFRl9IIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0ggMQp8ICNkZWZpbmUgSEFWRV9TVFJJTkdf SCAxCnwgI2RlZmluZSBIQVZFX1VOSVNURF9IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1BBUkFNX0gg MQp8ICNkZWZpbmUgSEFWRV9GRU9GX1VOTE9DS0VEIDEKfCAjZGVmaW5lIEhBVkVfR0VUQ19VTkxP Q0tFRCAxCnwgI2RlZmluZSBIQVZFX0dFVENXRCAxCnwgI2RlZmluZSBIQVZFX0dFVEVHSUQgMQp8 ICNkZWZpbmUgSEFWRV9HRVRFVUlEIDEKfCAjZGVmaW5lIEhBVkVfR0VUR0lEIDEKfCAjZGVmaW5l IEhBVkVfR0VUVUlEIDEKfCAvKiBlbmQgY29uZmRlZnMuaC4gICovCnwgLyogRGVmaW5lIG1lbXBj cHkgdG8gYW4gaW5ub2N1b3VzIHZhcmlhbnQsIGluIGNhc2UgPGxpbWl0cy5oPiBkZWNsYXJlcyBt ZW1wY3B5Lgp8ICAgIEZvciBleGFtcGxlLCBIUC1VWCAxMWkgPGxpbWl0cy5oPiBkZWNsYXJlcyBn ZXR0aW1lb2ZkYXkuICAqLwp8ICNkZWZpbmUgbWVtcGNweSBpbm5vY3VvdXNfbWVtcGNweQp8IAp8 IC8qIFN5c3RlbSBoZWFkZXIgdG8gZGVmaW5lIF9fc3R1YiBtYWNyb3MgYW5kIGhvcGVmdWxseSBm ZXcgcHJvdG90eXBlcywKfCAgICAgd2hpY2ggY2FuIGNvbmZsaWN0IHdpdGggY2hhciBtZW1wY3B5 ICgpOyBiZWxvdy4KfCAgICAgUHJlZmVyIDxsaW1pdHMuaD4gdG8gPGFzc2VydC5oPiBpZiBfX1NU RENfXyBpcyBkZWZpbmVkLCBzaW5jZQp8ICAgICA8bGltaXRzLmg+IGV4aXN0cyBldmVuIG9uIGZy ZWVzdGFuZGluZyBjb21waWxlcnMuICAqLwp8IAp8ICNpZmRlZiBfX1NURENfXwp8ICMgaW5jbHVk ZSA8bGltaXRzLmg+CnwgI2Vsc2UKfCAjIGluY2x1ZGUgPGFzc2VydC5oPgp8ICNlbmRpZgp8IAp8 ICN1bmRlZiBtZW1wY3B5CnwgCnwgLyogT3ZlcnJpZGUgYW55IGdjYzIgaW50ZXJuYWwgcHJvdG90 eXBlIHRvIGF2b2lkIGFuIGVycm9yLiAgKi8KfCAjaWZkZWYgX19jcGx1c3BsdXMKfCBleHRlcm4g IkMiCnwgewp8ICNlbmRpZgp8IC8qIFdlIHVzZSBjaGFyIGJlY2F1c2UgaW50IG1pZ2h0IG1hdGNo IHRoZSByZXR1cm4gdHlwZSBvZiBhIGdjYzIKfCAgICBidWlsdGluIGFuZCB0aGVuIGl0cyBhcmd1 bWVudCBwcm90b3R5cGUgd291bGQgc3RpbGwgYXBwbHkuICAqLwp8IGNoYXIgbWVtcGNweSAoKTsK fCAvKiBUaGUgR05VIEMgbGlicmFyeSBkZWZpbmVzIHRoaXMgZm9yIGZ1bmN0aW9ucyB3aGljaCBp dCBpbXBsZW1lbnRzCnwgICAgIHRvIGFsd2F5cyBmYWlsIHdpdGggRU5PU1lTLiAgU29tZSBmdW5j dGlvbnMgYXJlIGFjdHVhbGx5IG5hbWVkCnwgICAgIHNvbWV0aGluZyBzdGFydGluZyB3aXRoIF9f IGFuZCB0aGUgbm9ybWFsIG5hbWUgaXMgYW4gYWxpYXMuICAqLwp8ICNpZiBkZWZpbmVkIChfX3N0 dWJfbWVtcGNweSkgfHwgZGVmaW5lZCAoX19zdHViX19fbWVtcGNweSkKfCBjaG9rZSBtZQp8ICNl bHNlCnwgY2hhciAoKmYpICgpID0gbWVtcGNweTsKfCAjZW5kaWYKfCAjaWZkZWYgX19jcGx1c3Bs dXMKfCB9CnwgI2VuZGlmCnwgCnwgaW50CnwgbWFpbiAoKQp8IHsKfCByZXR1cm4gZiAhPSBtZW1w Y3B5Owp8ICAgOwp8ICAgcmV0dXJuIDA7CnwgfQpjb25maWd1cmU6MTA5NjQ6IHJlc3VsdDogbm8K Y29uZmlndXJlOjEwODc2OiBjaGVja2luZyBmb3IgbXVubWFwCmNvbmZpZ3VyZToxMDkzMzogY2Mg LW8gY29uZnRlc3QgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICAgLXJwYXRoPS91c3Iv bGliOi91c3IvbG9jYWwvbGliIGNvbmZ0ZXN0LmMgID4mNQpjb25maWd1cmU6MTA5Mzk6ICQ/ID0g MApjb25maWd1cmU6MTA5NDM6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJy CmNvbmZpZ3VyZToxMDk0NjogJD8gPSAwCmNvbmZpZ3VyZToxMDk0OTogdGVzdCAtcyBjb25mdGVz dApjb25maWd1cmU6MTA5NTI6ICQ/ID0gMApjb25maWd1cmU6MTA5NjQ6IHJlc3VsdDogeWVzCmNv bmZpZ3VyZToxMDg3NjogY2hlY2tpbmcgZm9yIHB1dGVudgpjb25maWd1cmU6MTA5MzM6IGNjIC1v IGNvbmZ0ZXN0IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAgIC1ycGF0aD0vdXNyL2xp YjovdXNyL2xvY2FsL2xpYiBjb25mdGVzdC5jICA+JjUKY29uZmlndXJlOjEwOTM5OiAkPyA9IDAK Y29uZmlndXJlOjEwOTQzOiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpj b25maWd1cmU6MTA5NDY6ICQ/ID0gMApjb25maWd1cmU6MTA5NDk6IHRlc3QgLXMgY29uZnRlc3QK Y29uZmlndXJlOjEwOTUyOiAkPyA9IDAKY29uZmlndXJlOjEwOTY0OiByZXN1bHQ6IHllcwpjb25m aWd1cmU6MTA4NzY6IGNoZWNraW5nIGZvciBzZXRlbnYKY29uZmlndXJlOjEwOTMzOiBjYyAtbyBj b25mdGVzdCAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgICAtcnBhdGg9L3Vzci9saWI6 L3Vzci9sb2NhbC9saWIgY29uZnRlc3QuYyAgPiY1CmNvbmZpZ3VyZToxMDkzOTogJD8gPSAwCmNv bmZpZ3VyZToxMDk0MzogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29u ZmlndXJlOjEwOTQ2OiAkPyA9IDAKY29uZmlndXJlOjEwOTQ5OiB0ZXN0IC1zIGNvbmZ0ZXN0CmNv bmZpZ3VyZToxMDk1MjogJD8gPSAwCmNvbmZpZ3VyZToxMDk2NDogcmVzdWx0OiB5ZXMKY29uZmln dXJlOjEwODc2OiBjaGVja2luZyBmb3Igc2V0bG9jYWxlCmNvbmZpZ3VyZToxMDkzMzogY2MgLW8g Y29uZnRlc3QgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICAgLXJwYXRoPS91c3IvbGli Oi91c3IvbG9jYWwvbGliIGNvbmZ0ZXN0LmMgID4mNQpjb25maWd1cmU6MTA5Mzk6ICQ/ID0gMApj b25maWd1cmU6MTA5NDM6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNv bmZpZ3VyZToxMDk0NjogJD8gPSAwCmNvbmZpZ3VyZToxMDk0OTogdGVzdCAtcyBjb25mdGVzdApj b25maWd1cmU6MTA5NTI6ICQ/ID0gMApjb25maWd1cmU6MTA5NjQ6IHJlc3VsdDogeWVzCmNvbmZp Z3VyZToxMDg3NjogY2hlY2tpbmcgZm9yIHN0cGNweQpjb25maWd1cmU6MTA5MzM6IGNjIC1vIGNv bmZ0ZXN0IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAgIC1ycGF0aD0vdXNyL2xpYjov dXNyL2xvY2FsL2xpYiBjb25mdGVzdC5jICA+JjUKY29uZnRlc3QuYzo3NTogd2FybmluZzogY29u ZmxpY3RpbmcgdHlwZXMgZm9yIGJ1aWx0LWluIGZ1bmN0aW9uICdzdHBjcHknCmNvbmZpZ3VyZTox MDkzOTogJD8gPSAwCmNvbmZpZ3VyZToxMDk0MzogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBj b25mdGVzdC5lcnIKY29uZmlndXJlOjEwOTQ2OiAkPyA9IDAKY29uZmlndXJlOjEwOTQ5OiB0ZXN0 IC1zIGNvbmZ0ZXN0CmNvbmZpZ3VyZToxMDk1MjogJD8gPSAwCmNvbmZpZ3VyZToxMDk2NDogcmVz dWx0OiB5ZXMKY29uZmlndXJlOjEwODc2OiBjaGVja2luZyBmb3Igc3RyY2FzZWNtcApjb25maWd1 cmU6MTA5MzM6IGNjIC1vIGNvbmZ0ZXN0IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAg IC1ycGF0aD0vdXNyL2xpYjovdXNyL2xvY2FsL2xpYiBjb25mdGVzdC5jICA+JjUKY29uZnRlc3Qu Yzo3Njogd2FybmluZzogY29uZmxpY3RpbmcgdHlwZXMgZm9yIGJ1aWx0LWluIGZ1bmN0aW9uICdz dHJjYXNlY21wJwpjb25maWd1cmU6MTA5Mzk6ICQ/ID0gMApjb25maWd1cmU6MTA5NDM6IHRlc3Qg LXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToxMDk0NjogJD8gPSAw CmNvbmZpZ3VyZToxMDk0OTogdGVzdCAtcyBjb25mdGVzdApjb25maWd1cmU6MTA5NTI6ICQ/ID0g MApjb25maWd1cmU6MTA5NjQ6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMDg3NjogY2hlY2tpbmcg Zm9yIHN0cmR1cApjb25maWd1cmU6MTA5MzM6IGNjIC1vIGNvbmZ0ZXN0IC1PMiAtZm5vLXN0cmlj dC1hbGlhc2luZyAtcGlwZSAgIC1ycGF0aD0vdXNyL2xpYjovdXNyL2xvY2FsL2xpYiBjb25mdGVz dC5jICA+JjUKY29uZnRlc3QuYzo3Nzogd2FybmluZzogY29uZmxpY3RpbmcgdHlwZXMgZm9yIGJ1 aWx0LWluIGZ1bmN0aW9uICdzdHJkdXAnCmNvbmZpZ3VyZToxMDkzOTogJD8gPSAwCmNvbmZpZ3Vy ZToxMDk0MzogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJl OjEwOTQ2OiAkPyA9IDAKY29uZmlndXJlOjEwOTQ5OiB0ZXN0IC1zIGNvbmZ0ZXN0CmNvbmZpZ3Vy ZToxMDk1MjogJD8gPSAwCmNvbmZpZ3VyZToxMDk2NDogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEw ODc2OiBjaGVja2luZyBmb3Igc3RydG91bApjb25maWd1cmU6MTA5MzM6IGNjIC1vIGNvbmZ0ZXN0 IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAgIC1ycGF0aD0vdXNyL2xpYjovdXNyL2xv Y2FsL2xpYiBjb25mdGVzdC5jICA+JjUKY29uZmlndXJlOjEwOTM5OiAkPyA9IDAKY29uZmlndXJl OjEwOTQzOiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6 MTA5NDY6ICQ/ID0gMApjb25maWd1cmU6MTA5NDk6IHRlc3QgLXMgY29uZnRlc3QKY29uZmlndXJl OjEwOTUyOiAkPyA9IDAKY29uZmlndXJlOjEwOTY0OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTA4 NzY6IGNoZWNraW5nIGZvciB0c2VhcmNoCmNvbmZpZ3VyZToxMDkzMzogY2MgLW8gY29uZnRlc3Qg LU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICAgLXJwYXRoPS91c3IvbGliOi91c3IvbG9j YWwvbGliIGNvbmZ0ZXN0LmMgID4mNQpjb25maWd1cmU6MTA5Mzk6ICQ/ID0gMApjb25maWd1cmU6 MTA5NDM6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZTox MDk0NjogJD8gPSAwCmNvbmZpZ3VyZToxMDk0OTogdGVzdCAtcyBjb25mdGVzdApjb25maWd1cmU6 MTA5NTI6ICQ/ID0gMApjb25maWd1cmU6MTA5NjQ6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMDg3 NjogY2hlY2tpbmcgZm9yIF9fYXJnel9jb3VudApjb25maWd1cmU6MTA5MzM6IGNjIC1vIGNvbmZ0 ZXN0IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAgIC1ycGF0aD0vdXNyL2xpYjovdXNy L2xvY2FsL2xpYiBjb25mdGVzdC5jICA+JjUKL3Zhci90bXAvL2NjYndrVnZwLm8oLnRleHQrMHg5 KTogSW4gZnVuY3Rpb24gYG1haW4nOgo6IHVuZGVmaW5lZCByZWZlcmVuY2UgdG8gYF9fYXJnel9j b3VudCcKL3Zhci90bXAvL2NjYndrVnZwLm8oLmRhdGErMHgwKTogdW5kZWZpbmVkIHJlZmVyZW5j ZSB0byBgX19hcmd6X2NvdW50Jwpjb25maWd1cmU6MTA5Mzk6ICQ/ID0gMQpjb25maWd1cmU6IGZh aWxlZCBwcm9ncmFtIHdhczoKfCAvKiBjb25mZGVmcy5oLiAgKi8KfCAKfCAjZGVmaW5lIFBBQ0tB R0VfTkFNRSAibXlkbnMiCnwgI2RlZmluZSBQQUNLQUdFX1RBUk5BTUUgIm15ZG5zIgp8ICNkZWZp bmUgUEFDS0FHRV9WRVJTSU9OICIxLjEuMCIKfCAjZGVmaW5lIFBBQ0tBR0VfU1RSSU5HICJteWRu cyAxLjEuMCIKfCAjZGVmaW5lIFBBQ0tBR0VfQlVHUkVQT1JUICJiYm95QGJib3kubmV0Igp8ICNk ZWZpbmUgUEFDS0FHRSAibXlkbnMiCnwgI2RlZmluZSBWRVJTSU9OICIxLjEuMCIKfCAjZGVmaW5l IFNURENfSEVBREVSUyAxCnwgI2RlZmluZSBIQVZFX1NZU19UWVBFU19IIDEKfCAjZGVmaW5lIEhB VkVfU1lTX1NUQVRfSCAxCnwgI2RlZmluZSBIQVZFX1NURExJQl9IIDEKfCAjZGVmaW5lIEhBVkVf U1RSSU5HX0ggMQp8ICNkZWZpbmUgSEFWRV9NRU1PUllfSCAxCnwgI2RlZmluZSBIQVZFX1NUUklO R1NfSCAxCnwgI2RlZmluZSBIQVZFX0lOVFRZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERJTlRf SCAxCnwgI2RlZmluZSBIQVZFX1VOSVNURF9IIDEKfCAjZGVmaW5lIEhBVkVfRExGQ05fSCAxCnwg I2RlZmluZSBIQVZFX0FMTE9DQSAxCnwgI2RlZmluZSBIQVZFX1NURExJQl9IIDEKfCAjZGVmaW5l IEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUgSEFWRV9HRVRQQUdFU0laRSAxCnwgI2RlZmluZSBI QVZFX01NQVAgMQp8ICNkZWZpbmUgSU5URElWMF9SQUlTRVNfU0lHRlBFIDEKfCAjZGVmaW5lIEhB VkVfSU5UVFlQRVNfSF9XSVRIX1VJTlRNQVggMQp8ICNkZWZpbmUgSEFWRV9TVERJTlRfSF9XSVRI X1VJTlRNQVggMQp8ICNkZWZpbmUgSEFWRV9VTlNJR05FRF9MT05HX0xPTkcgMQp8ICNkZWZpbmUg SEFWRV9JTlRUWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfTElNSVRTX0ggMQp8ICNkZWZpbmUgSEFW RV9MT0NBTEVfSCAxCnwgI2RlZmluZSBIQVZFX05MX1RZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9T VERERUZfSCAxCnwgI2RlZmluZSBIQVZFX1NURExJQl9IIDEKfCAjZGVmaW5lIEhBVkVfU1RSSU5H X0ggMQp8ICNkZWZpbmUgSEFWRV9VTklTVERfSCAxCnwgI2RlZmluZSBIQVZFX1NZU19QQVJBTV9I IDEKfCAjZGVmaW5lIEhBVkVfRkVPRl9VTkxPQ0tFRCAxCnwgI2RlZmluZSBIQVZFX0dFVENfVU5M T0NLRUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRDV0QgMQp8ICNkZWZpbmUgSEFWRV9HRVRFR0lEIDEK fCAjZGVmaW5lIEhBVkVfR0VURVVJRCAxCnwgI2RlZmluZSBIQVZFX0dFVEdJRCAxCnwgI2RlZmlu ZSBIQVZFX0dFVFVJRCAxCnwgI2RlZmluZSBIQVZFX01VTk1BUCAxCnwgI2RlZmluZSBIQVZFX1BV VEVOViAxCnwgI2RlZmluZSBIQVZFX1NFVEVOViAxCnwgI2RlZmluZSBIQVZFX1NFVExPQ0FMRSAx CnwgI2RlZmluZSBIQVZFX1NUUENQWSAxCnwgI2RlZmluZSBIQVZFX1NUUkNBU0VDTVAgMQp8ICNk ZWZpbmUgSEFWRV9TVFJEVVAgMQp8ICNkZWZpbmUgSEFWRV9TVFJUT1VMIDEKfCAjZGVmaW5lIEhB VkVfVFNFQVJDSCAxCnwgLyogZW5kIGNvbmZkZWZzLmguICAqLwp8IC8qIERlZmluZSBfX2FyZ3pf Y291bnQgdG8gYW4gaW5ub2N1b3VzIHZhcmlhbnQsIGluIGNhc2UgPGxpbWl0cy5oPiBkZWNsYXJl cyBfX2FyZ3pfY291bnQuCnwgICAgRm9yIGV4YW1wbGUsIEhQLVVYIDExaSA8bGltaXRzLmg+IGRl Y2xhcmVzIGdldHRpbWVvZmRheS4gICovCnwgI2RlZmluZSBfX2FyZ3pfY291bnQgaW5ub2N1b3Vz X19fYXJnel9jb3VudAp8IAp8IC8qIFN5c3RlbSBoZWFkZXIgdG8gZGVmaW5lIF9fc3R1YiBtYWNy b3MgYW5kIGhvcGVmdWxseSBmZXcgcHJvdG90eXBlcywKfCAgICAgd2hpY2ggY2FuIGNvbmZsaWN0 IHdpdGggY2hhciBfX2FyZ3pfY291bnQgKCk7IGJlbG93Lgp8ICAgICBQcmVmZXIgPGxpbWl0cy5o PiB0byA8YXNzZXJ0Lmg+IGlmIF9fU1REQ19fIGlzIGRlZmluZWQsIHNpbmNlCnwgICAgIDxsaW1p dHMuaD4gZXhpc3RzIGV2ZW4gb24gZnJlZXN0YW5kaW5nIGNvbXBpbGVycy4gICovCnwgCnwgI2lm ZGVmIF9fU1REQ19fCnwgIyBpbmNsdWRlIDxsaW1pdHMuaD4KfCAjZWxzZQp8ICMgaW5jbHVkZSA8 YXNzZXJ0Lmg+CnwgI2VuZGlmCnwgCnwgI3VuZGVmIF9fYXJnel9jb3VudAp8IAp8IC8qIE92ZXJy aWRlIGFueSBnY2MyIGludGVybmFsIHByb3RvdHlwZSB0byBhdm9pZCBhbiBlcnJvci4gICovCnwg I2lmZGVmIF9fY3BsdXNwbHVzCnwgZXh0ZXJuICJDIgp8IHsKfCAjZW5kaWYKfCAvKiBXZSB1c2Ug Y2hhciBiZWNhdXNlIGludCBtaWdodCBtYXRjaCB0aGUgcmV0dXJuIHR5cGUgb2YgYSBnY2MyCnwg ICAgYnVpbHRpbiBhbmQgdGhlbiBpdHMgYXJndW1lbnQgcHJvdG90eXBlIHdvdWxkIHN0aWxsIGFw cGx5LiAgKi8KfCBjaGFyIF9fYXJnel9jb3VudCAoKTsKfCAvKiBUaGUgR05VIEMgbGlicmFyeSBk ZWZpbmVzIHRoaXMgZm9yIGZ1bmN0aW9ucyB3aGljaCBpdCBpbXBsZW1lbnRzCnwgICAgIHRvIGFs d2F5cyBmYWlsIHdpdGggRU5PU1lTLiAgU29tZSBmdW5jdGlvbnMgYXJlIGFjdHVhbGx5IG5hbWVk CnwgICAgIHNvbWV0aGluZyBzdGFydGluZyB3aXRoIF9fIGFuZCB0aGUgbm9ybWFsIG5hbWUgaXMg YW4gYWxpYXMuICAqLwp8ICNpZiBkZWZpbmVkIChfX3N0dWJfX19hcmd6X2NvdW50KSB8fCBkZWZp bmVkIChfX3N0dWJfX19fX2FyZ3pfY291bnQpCnwgY2hva2UgbWUKfCAjZWxzZQp8IGNoYXIgKCpm KSAoKSA9IF9fYXJnel9jb3VudDsKfCAjZW5kaWYKfCAjaWZkZWYgX19jcGx1c3BsdXMKfCB9Cnwg I2VuZGlmCnwgCnwgaW50CnwgbWFpbiAoKQp8IHsKfCByZXR1cm4gZiAhPSBfX2FyZ3pfY291bnQ7 CnwgICA7CnwgICByZXR1cm4gMDsKfCB9CmNvbmZpZ3VyZToxMDk2NDogcmVzdWx0OiBubwpjb25m aWd1cmU6MTA4NzY6IGNoZWNraW5nIGZvciBfX2FyZ3pfc3RyaW5naWZ5CmNvbmZpZ3VyZToxMDkz MzogY2MgLW8gY29uZnRlc3QgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlICAgLXJwYXRo PS91c3IvbGliOi91c3IvbG9jYWwvbGliIGNvbmZ0ZXN0LmMgID4mNQovdmFyL3RtcC8vY2N0MVZp TjEubygudGV4dCsweDkpOiBJbiBmdW5jdGlvbiBgbWFpbic6CjogdW5kZWZpbmVkIHJlZmVyZW5j ZSB0byBgX19hcmd6X3N0cmluZ2lmeScKL3Zhci90bXAvL2NjdDFWaU4xLm8oLmRhdGErMHgwKTog dW5kZWZpbmVkIHJlZmVyZW5jZSB0byBgX19hcmd6X3N0cmluZ2lmeScKY29uZmlndXJlOjEwOTM5 OiAkPyA9IDEKY29uZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3YXM6CnwgLyogY29uZmRlZnMuaC4g ICovCnwgCnwgI2RlZmluZSBQQUNLQUdFX05BTUUgIm15ZG5zIgp8ICNkZWZpbmUgUEFDS0FHRV9U QVJOQU1FICJteWRucyIKfCAjZGVmaW5lIFBBQ0tBR0VfVkVSU0lPTiAiMS4xLjAiCnwgI2RlZmlu ZSBQQUNLQUdFX1NUUklORyAibXlkbnMgMS4xLjAiCnwgI2RlZmluZSBQQUNLQUdFX0JVR1JFUE9S VCAiYmJveUBiYm95Lm5ldCIKfCAjZGVmaW5lIFBBQ0tBR0UgIm15ZG5zIgp8ICNkZWZpbmUgVkVS U0lPTiAiMS4xLjAiCnwgI2RlZmluZSBTVERDX0hFQURFUlMgMQp8ICNkZWZpbmUgSEFWRV9TWVNf VFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX1NZU19TVEFUX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERM SUJfSCAxCnwgI2RlZmluZSBIQVZFX1NUUklOR19IIDEKfCAjZGVmaW5lIEhBVkVfTUVNT1JZX0gg MQp8ICNkZWZpbmUgSEFWRV9TVFJJTkdTX0ggMQp8ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IIDEK fCAjZGVmaW5lIEhBVkVfU1RESU5UX0ggMQp8ICNkZWZpbmUgSEFWRV9VTklTVERfSCAxCnwgI2Rl ZmluZSBIQVZFX0RMRkNOX0ggMQp8ICNkZWZpbmUgSEFWRV9BTExPQ0EgMQp8ICNkZWZpbmUgSEFW RV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1VOSVNURF9IIDEKfCAjZGVmaW5lIEhBVkVfR0VU UEFHRVNJWkUgMQp8ICNkZWZpbmUgSEFWRV9NTUFQIDEKfCAjZGVmaW5lIElOVERJVjBfUkFJU0VT X1NJR0ZQRSAxCnwgI2RlZmluZSBIQVZFX0lOVFRZUEVTX0hfV0lUSF9VSU5UTUFYIDEKfCAjZGVm aW5lIEhBVkVfU1RESU5UX0hfV0lUSF9VSU5UTUFYIDEKfCAjZGVmaW5lIEhBVkVfVU5TSUdORURf TE9OR19MT05HIDEKfCAjZGVmaW5lIEhBVkVfSU5UVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX0xJ TUlUU19IIDEKfCAjZGVmaW5lIEhBVkVfTE9DQUxFX0ggMQp8ICNkZWZpbmUgSEFWRV9OTF9UWVBF U19IIDEKfCAjZGVmaW5lIEhBVkVfU1REREVGX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAx CnwgI2RlZmluZSBIQVZFX1NUUklOR19IIDEKfCAjZGVmaW5lIEhBVkVfVU5JU1REX0ggMQp8ICNk ZWZpbmUgSEFWRV9TWVNfUEFSQU1fSCAxCnwgI2RlZmluZSBIQVZFX0ZFT0ZfVU5MT0NLRUQgMQp8 ICNkZWZpbmUgSEFWRV9HRVRDX1VOTE9DS0VEIDEKfCAjZGVmaW5lIEhBVkVfR0VUQ1dEIDEKfCAj ZGVmaW5lIEhBVkVfR0VURUdJRCAxCnwgI2RlZmluZSBIQVZFX0dFVEVVSUQgMQp8ICNkZWZpbmUg SEFWRV9HRVRHSUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRVSUQgMQp8ICNkZWZpbmUgSEFWRV9NVU5N QVAgMQp8ICNkZWZpbmUgSEFWRV9QVVRFTlYgMQp8ICNkZWZpbmUgSEFWRV9TRVRFTlYgMQp8ICNk ZWZpbmUgSEFWRV9TRVRMT0NBTEUgMQp8ICNkZWZpbmUgSEFWRV9TVFBDUFkgMQp8ICNkZWZpbmUg SEFWRV9TVFJDQVNFQ01QIDEKfCAjZGVmaW5lIEhBVkVfU1RSRFVQIDEKfCAjZGVmaW5lIEhBVkVf U1RSVE9VTCAxCnwgI2RlZmluZSBIQVZFX1RTRUFSQ0ggMQp8IC8qIGVuZCBjb25mZGVmcy5oLiAg Ki8KfCAvKiBEZWZpbmUgX19hcmd6X3N0cmluZ2lmeSB0byBhbiBpbm5vY3VvdXMgdmFyaWFudCwg aW4gY2FzZSA8bGltaXRzLmg+IGRlY2xhcmVzIF9fYXJnel9zdHJpbmdpZnkuCnwgICAgRm9yIGV4 YW1wbGUsIEhQLVVYIDExaSA8bGltaXRzLmg+IGRlY2xhcmVzIGdldHRpbWVvZmRheS4gICovCnwg I2RlZmluZSBfX2FyZ3pfc3RyaW5naWZ5IGlubm9jdW91c19fX2FyZ3pfc3RyaW5naWZ5CnwgCnwg LyogU3lzdGVtIGhlYWRlciB0byBkZWZpbmUgX19zdHViIG1hY3JvcyBhbmQgaG9wZWZ1bGx5IGZl dyBwcm90b3R5cGVzLAp8ICAgICB3aGljaCBjYW4gY29uZmxpY3Qgd2l0aCBjaGFyIF9fYXJnel9z dHJpbmdpZnkgKCk7IGJlbG93Lgp8ICAgICBQcmVmZXIgPGxpbWl0cy5oPiB0byA8YXNzZXJ0Lmg+ IGlmIF9fU1REQ19fIGlzIGRlZmluZWQsIHNpbmNlCnwgICAgIDxsaW1pdHMuaD4gZXhpc3RzIGV2 ZW4gb24gZnJlZXN0YW5kaW5nIGNvbXBpbGVycy4gICovCnwgCnwgI2lmZGVmIF9fU1REQ19fCnwg IyBpbmNsdWRlIDxsaW1pdHMuaD4KfCAjZWxzZQp8ICMgaW5jbHVkZSA8YXNzZXJ0Lmg+CnwgI2Vu ZGlmCnwgCnwgI3VuZGVmIF9fYXJnel9zdHJpbmdpZnkKfCAKfCAvKiBPdmVycmlkZSBhbnkgZ2Nj MiBpbnRlcm5hbCBwcm90b3R5cGUgdG8gYXZvaWQgYW4gZXJyb3IuICAqLwp8ICNpZmRlZiBfX2Nw bHVzcGx1cwp8IGV4dGVybiAiQyIKfCB7CnwgI2VuZGlmCnwgLyogV2UgdXNlIGNoYXIgYmVjYXVz ZSBpbnQgbWlnaHQgbWF0Y2ggdGhlIHJldHVybiB0eXBlIG9mIGEgZ2NjMgp8ICAgIGJ1aWx0aW4g YW5kIHRoZW4gaXRzIGFyZ3VtZW50IHByb3RvdHlwZSB3b3VsZCBzdGlsbCBhcHBseS4gICovCnwg Y2hhciBfX2FyZ3pfc3RyaW5naWZ5ICgpOwp8IC8qIFRoZSBHTlUgQyBsaWJyYXJ5IGRlZmluZXMg dGhpcyBmb3IgZnVuY3Rpb25zIHdoaWNoIGl0IGltcGxlbWVudHMKfCAgICAgdG8gYWx3YXlzIGZh aWwgd2l0aCBFTk9TWVMuICBTb21lIGZ1bmN0aW9ucyBhcmUgYWN0dWFsbHkgbmFtZWQKfCAgICAg c29tZXRoaW5nIHN0YXJ0aW5nIHdpdGggX18gYW5kIHRoZSBub3JtYWwgbmFtZSBpcyBhbiBhbGlh cy4gICovCnwgI2lmIGRlZmluZWQgKF9fc3R1Yl9fX2FyZ3pfc3RyaW5naWZ5KSB8fCBkZWZpbmVk IChfX3N0dWJfX19fX2FyZ3pfc3RyaW5naWZ5KQp8IGNob2tlIG1lCnwgI2Vsc2UKfCBjaGFyICgq ZikgKCkgPSBfX2FyZ3pfc3RyaW5naWZ5Owp8ICNlbmRpZgp8ICNpZmRlZiBfX2NwbHVzcGx1cwp8 IH0KfCAjZW5kaWYKfCAKfCBpbnQKfCBtYWluICgpCnwgewp8IHJldHVybiBmICE9IF9fYXJnel9z dHJpbmdpZnk7CnwgICA7CnwgICByZXR1cm4gMDsKfCB9CmNvbmZpZ3VyZToxMDk2NDogcmVzdWx0 OiBubwpjb25maWd1cmU6MTA4NzY6IGNoZWNraW5nIGZvciBfX2FyZ3pfbmV4dApjb25maWd1cmU6 MTA5MzM6IGNjIC1vIGNvbmZ0ZXN0IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAgIC1y cGF0aD0vdXNyL2xpYjovdXNyL2xvY2FsL2xpYiBjb25mdGVzdC5jICA+JjUKL3Zhci90bXAvL2Nj eENHRnNxLm8oLnRleHQrMHg5KTogSW4gZnVuY3Rpb24gYG1haW4nOgo6IHVuZGVmaW5lZCByZWZl cmVuY2UgdG8gYF9fYXJnel9uZXh0JwovdmFyL3RtcC8vY2N4Q0dGc3EubyguZGF0YSsweDApOiB1 bmRlZmluZWQgcmVmZXJlbmNlIHRvIGBfX2FyZ3pfbmV4dCcKY29uZmlndXJlOjEwOTM5OiAkPyA9 IDEKY29uZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3YXM6CnwgLyogY29uZmRlZnMuaC4gICovCnwg CnwgI2RlZmluZSBQQUNLQUdFX05BTUUgIm15ZG5zIgp8ICNkZWZpbmUgUEFDS0FHRV9UQVJOQU1F ICJteWRucyIKfCAjZGVmaW5lIFBBQ0tBR0VfVkVSU0lPTiAiMS4xLjAiCnwgI2RlZmluZSBQQUNL QUdFX1NUUklORyAibXlkbnMgMS4xLjAiCnwgI2RlZmluZSBQQUNLQUdFX0JVR1JFUE9SVCAiYmJv eUBiYm95Lm5ldCIKfCAjZGVmaW5lIFBBQ0tBR0UgIm15ZG5zIgp8ICNkZWZpbmUgVkVSU0lPTiAi MS4xLjAiCnwgI2RlZmluZSBTVERDX0hFQURFUlMgMQp8ICNkZWZpbmUgSEFWRV9TWVNfVFlQRVNf SCAxCnwgI2RlZmluZSBIQVZFX1NZU19TVEFUX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAx CnwgI2RlZmluZSBIQVZFX1NUUklOR19IIDEKfCAjZGVmaW5lIEhBVkVfTUVNT1JZX0ggMQp8ICNk ZWZpbmUgSEFWRV9TVFJJTkdTX0ggMQp8ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IIDEKfCAjZGVm aW5lIEhBVkVfU1RESU5UX0ggMQp8ICNkZWZpbmUgSEFWRV9VTklTVERfSCAxCnwgI2RlZmluZSBI QVZFX0RMRkNOX0ggMQp8ICNkZWZpbmUgSEFWRV9BTExPQ0EgMQp8ICNkZWZpbmUgSEFWRV9TVERM SUJfSCAxCnwgI2RlZmluZSBIQVZFX1VOSVNURF9IIDEKfCAjZGVmaW5lIEhBVkVfR0VUUEFHRVNJ WkUgMQp8ICNkZWZpbmUgSEFWRV9NTUFQIDEKfCAjZGVmaW5lIElOVERJVjBfUkFJU0VTX1NJR0ZQ RSAxCnwgI2RlZmluZSBIQVZFX0lOVFRZUEVTX0hfV0lUSF9VSU5UTUFYIDEKfCAjZGVmaW5lIEhB VkVfU1RESU5UX0hfV0lUSF9VSU5UTUFYIDEKfCAjZGVmaW5lIEhBVkVfVU5TSUdORURfTE9OR19M T05HIDEKfCAjZGVmaW5lIEhBVkVfSU5UVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX0xJTUlUU19I IDEKfCAjZGVmaW5lIEhBVkVfTE9DQUxFX0ggMQp8ICNkZWZpbmUgSEFWRV9OTF9UWVBFU19IIDEK fCAjZGVmaW5lIEhBVkVfU1REREVGX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2Rl ZmluZSBIQVZFX1NUUklOR19IIDEKfCAjZGVmaW5lIEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUg SEFWRV9TWVNfUEFSQU1fSCAxCnwgI2RlZmluZSBIQVZFX0ZFT0ZfVU5MT0NLRUQgMQp8ICNkZWZp bmUgSEFWRV9HRVRDX1VOTE9DS0VEIDEKfCAjZGVmaW5lIEhBVkVfR0VUQ1dEIDEKfCAjZGVmaW5l IEhBVkVfR0VURUdJRCAxCnwgI2RlZmluZSBIQVZFX0dFVEVVSUQgMQp8ICNkZWZpbmUgSEFWRV9H RVRHSUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRVSUQgMQp8ICNkZWZpbmUgSEFWRV9NVU5NQVAgMQp8 ICNkZWZpbmUgSEFWRV9QVVRFTlYgMQp8ICNkZWZpbmUgSEFWRV9TRVRFTlYgMQp8ICNkZWZpbmUg SEFWRV9TRVRMT0NBTEUgMQp8ICNkZWZpbmUgSEFWRV9TVFBDUFkgMQp8ICNkZWZpbmUgSEFWRV9T VFJDQVNFQ01QIDEKfCAjZGVmaW5lIEhBVkVfU1RSRFVQIDEKfCAjZGVmaW5lIEhBVkVfU1RSVE9V TCAxCnwgI2RlZmluZSBIQVZFX1RTRUFSQ0ggMQp8IC8qIGVuZCBjb25mZGVmcy5oLiAgKi8KfCAv KiBEZWZpbmUgX19hcmd6X25leHQgdG8gYW4gaW5ub2N1b3VzIHZhcmlhbnQsIGluIGNhc2UgPGxp bWl0cy5oPiBkZWNsYXJlcyBfX2FyZ3pfbmV4dC4KfCAgICBGb3IgZXhhbXBsZSwgSFAtVVggMTFp IDxsaW1pdHMuaD4gZGVjbGFyZXMgZ2V0dGltZW9mZGF5LiAgKi8KfCAjZGVmaW5lIF9fYXJnel9u ZXh0IGlubm9jdW91c19fX2FyZ3pfbmV4dAp8IAp8IC8qIFN5c3RlbSBoZWFkZXIgdG8gZGVmaW5l IF9fc3R1YiBtYWNyb3MgYW5kIGhvcGVmdWxseSBmZXcgcHJvdG90eXBlcywKfCAgICAgd2hpY2gg Y2FuIGNvbmZsaWN0IHdpdGggY2hhciBfX2FyZ3pfbmV4dCAoKTsgYmVsb3cuCnwgICAgIFByZWZl ciA8bGltaXRzLmg+IHRvIDxhc3NlcnQuaD4gaWYgX19TVERDX18gaXMgZGVmaW5lZCwgc2luY2UK fCAgICAgPGxpbWl0cy5oPiBleGlzdHMgZXZlbiBvbiBmcmVlc3RhbmRpbmcgY29tcGlsZXJzLiAg Ki8KfCAKfCAjaWZkZWYgX19TVERDX18KfCAjIGluY2x1ZGUgPGxpbWl0cy5oPgp8ICNlbHNlCnwg IyBpbmNsdWRlIDxhc3NlcnQuaD4KfCAjZW5kaWYKfCAKfCAjdW5kZWYgX19hcmd6X25leHQKfCAK fCAvKiBPdmVycmlkZSBhbnkgZ2NjMiBpbnRlcm5hbCBwcm90b3R5cGUgdG8gYXZvaWQgYW4gZXJy b3IuICAqLwp8ICNpZmRlZiBfX2NwbHVzcGx1cwp8IGV4dGVybiAiQyIKfCB7CnwgI2VuZGlmCnwg LyogV2UgdXNlIGNoYXIgYmVjYXVzZSBpbnQgbWlnaHQgbWF0Y2ggdGhlIHJldHVybiB0eXBlIG9m IGEgZ2NjMgp8ICAgIGJ1aWx0aW4gYW5kIHRoZW4gaXRzIGFyZ3VtZW50IHByb3RvdHlwZSB3b3Vs ZCBzdGlsbCBhcHBseS4gICovCnwgY2hhciBfX2FyZ3pfbmV4dCAoKTsKfCAvKiBUaGUgR05VIEMg bGlicmFyeSBkZWZpbmVzIHRoaXMgZm9yIGZ1bmN0aW9ucyB3aGljaCBpdCBpbXBsZW1lbnRzCnwg ICAgIHRvIGFsd2F5cyBmYWlsIHdpdGggRU5PU1lTLiAgU29tZSBmdW5jdGlvbnMgYXJlIGFjdHVh bGx5IG5hbWVkCnwgICAgIHNvbWV0aGluZyBzdGFydGluZyB3aXRoIF9fIGFuZCB0aGUgbm9ybWFs IG5hbWUgaXMgYW4gYWxpYXMuICAqLwp8ICNpZiBkZWZpbmVkIChfX3N0dWJfX19hcmd6X25leHQp IHx8IGRlZmluZWQgKF9fc3R1Yl9fX19fYXJnel9uZXh0KQp8IGNob2tlIG1lCnwgI2Vsc2UKfCBj aGFyICgqZikgKCkgPSBfX2FyZ3pfbmV4dDsKfCAjZW5kaWYKfCAjaWZkZWYgX19jcGx1c3BsdXMK fCB9CnwgI2VuZGlmCnwgCnwgaW50CnwgbWFpbiAoKQp8IHsKfCByZXR1cm4gZiAhPSBfX2FyZ3pf bmV4dDsKfCAgIDsKfCAgIHJldHVybiAwOwp8IH0KY29uZmlndXJlOjEwOTY0OiByZXN1bHQ6IG5v CmNvbmZpZ3VyZToxMTAwNTogY2hlY2tpbmcgZm9yIGljb252CmNvbmZpZ3VyZToxMTAzMjogY2Mg LW8gY29uZnRlc3QgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9p bmNsdWRlICAtcnBhdGg9L3Vzci9saWI6L3Vzci9sb2NhbC9saWIgY29uZnRlc3QuYyAgPiY1Ci92 YXIvdG1wLy9jY3dLTUhnVi5vKC50ZXh0KzB4YSk6IEluIGZ1bmN0aW9uIGBtYWluJzoKOiB1bmRl ZmluZWQgcmVmZXJlbmNlIHRvIGBsaWJpY29udl9vcGVuJwovdmFyL3RtcC8vY2N3S01IZ1Yubygu dGV4dCsweDFlKTogSW4gZnVuY3Rpb24gYG1haW4nOgo6IHVuZGVmaW5lZCByZWZlcmVuY2UgdG8g YGxpYmljb252JwovdmFyL3RtcC8vY2N3S01IZ1YubygudGV4dCsweDI2KTogSW4gZnVuY3Rpb24g YG1haW4nOgo6IHVuZGVmaW5lZCByZWZlcmVuY2UgdG8gYGxpYmljb252X2Nsb3NlJwpjb25maWd1 cmU6MTEwMzg6ICQ/ID0gMQpjb25maWd1cmU6IGZhaWxlZCBwcm9ncmFtIHdhczoKfCAvKiBjb25m ZGVmcy5oLiAgKi8KfCAKfCAjZGVmaW5lIFBBQ0tBR0VfTkFNRSAibXlkbnMiCnwgI2RlZmluZSBQ QUNLQUdFX1RBUk5BTUUgIm15ZG5zIgp8ICNkZWZpbmUgUEFDS0FHRV9WRVJTSU9OICIxLjEuMCIK fCAjZGVmaW5lIFBBQ0tBR0VfU1RSSU5HICJteWRucyAxLjEuMCIKfCAjZGVmaW5lIFBBQ0tBR0Vf QlVHUkVQT1JUICJiYm95QGJib3kubmV0Igp8ICNkZWZpbmUgUEFDS0FHRSAibXlkbnMiCnwgI2Rl ZmluZSBWRVJTSU9OICIxLjEuMCIKfCAjZGVmaW5lIFNURENfSEVBREVSUyAxCnwgI2RlZmluZSBI QVZFX1NZU19UWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1NUQVRfSCAxCnwgI2RlZmluZSBI QVZFX1NURExJQl9IIDEKfCAjZGVmaW5lIEhBVkVfU1RSSU5HX0ggMQp8ICNkZWZpbmUgSEFWRV9N RU1PUllfSCAxCnwgI2RlZmluZSBIQVZFX1NUUklOR1NfSCAxCnwgI2RlZmluZSBIQVZFX0lOVFRZ UEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERJTlRfSCAxCnwgI2RlZmluZSBIQVZFX1VOSVNURF9I IDEKfCAjZGVmaW5lIEhBVkVfRExGQ05fSCAxCnwgI2RlZmluZSBIQVZFX0FMTE9DQSAxCnwgI2Rl ZmluZSBIQVZFX1NURExJQl9IIDEKfCAjZGVmaW5lIEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUg SEFWRV9HRVRQQUdFU0laRSAxCnwgI2RlZmluZSBIQVZFX01NQVAgMQp8ICNkZWZpbmUgSU5URElW MF9SQUlTRVNfU0lHRlBFIDEKfCAjZGVmaW5lIEhBVkVfSU5UVFlQRVNfSF9XSVRIX1VJTlRNQVgg MQp8ICNkZWZpbmUgSEFWRV9TVERJTlRfSF9XSVRIX1VJTlRNQVggMQp8ICNkZWZpbmUgSEFWRV9V TlNJR05FRF9MT05HX0xPTkcgMQp8ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IIDEKfCAjZGVmaW5l IEhBVkVfTElNSVRTX0ggMQp8ICNkZWZpbmUgSEFWRV9MT0NBTEVfSCAxCnwgI2RlZmluZSBIQVZF X05MX1RZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERERUZfSCAxCnwgI2RlZmluZSBIQVZFX1NU RExJQl9IIDEKfCAjZGVmaW5lIEhBVkVfU1RSSU5HX0ggMQp8ICNkZWZpbmUgSEFWRV9VTklTVERf SCAxCnwgI2RlZmluZSBIQVZFX1NZU19QQVJBTV9IIDEKfCAjZGVmaW5lIEhBVkVfRkVPRl9VTkxP Q0tFRCAxCnwgI2RlZmluZSBIQVZFX0dFVENfVU5MT0NLRUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRD V0QgMQp8ICNkZWZpbmUgSEFWRV9HRVRFR0lEIDEKfCAjZGVmaW5lIEhBVkVfR0VURVVJRCAxCnwg I2RlZmluZSBIQVZFX0dFVEdJRCAxCnwgI2RlZmluZSBIQVZFX0dFVFVJRCAxCnwgI2RlZmluZSBI QVZFX01VTk1BUCAxCnwgI2RlZmluZSBIQVZFX1BVVEVOViAxCnwgI2RlZmluZSBIQVZFX1NFVEVO ViAxCnwgI2RlZmluZSBIQVZFX1NFVExPQ0FMRSAxCnwgI2RlZmluZSBIQVZFX1NUUENQWSAxCnwg I2RlZmluZSBIQVZFX1NUUkNBU0VDTVAgMQp8ICNkZWZpbmUgSEFWRV9TVFJEVVAgMQp8ICNkZWZp bmUgSEFWRV9TVFJUT1VMIDEKfCAjZGVmaW5lIEhBVkVfVFNFQVJDSCAxCnwgLyogZW5kIGNvbmZk ZWZzLmguICAqLwp8ICNpbmNsdWRlIDxzdGRsaWIuaD4KfCAjaW5jbHVkZSA8aWNvbnYuaD4KfCBp bnQKfCBtYWluICgpCnwgewp8IGljb252X3QgY2QgPSBpY29udl9vcGVuKCIiLCIiKTsKfCAgICAg ICAgaWNvbnYoY2QsTlVMTCxOVUxMLE5VTEwsTlVMTCk7CnwgICAgICAgIGljb252X2Nsb3NlKGNk KTsKfCAgIDsKfCAgIHJldHVybiAwOwp8IH0KY29uZmlndXJlOjExMDgzOiBjYyAtbyBjb25mdGVz dCAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgIC1y cGF0aD0vdXNyL2xpYjovdXNyL2xvY2FsL2xpYiBjb25mdGVzdC5jICAvdXNyL2xvY2FsL2xpYi9s aWJpY29udi5zbyAtV2wsLXJwYXRoIC1XbCwvdXNyL2xvY2FsL2xpYiA+JjUKY29uZmlndXJlOjEx MDg5OiAkPyA9IDAKY29uZmlndXJlOjExMDkzOiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNv bmZ0ZXN0LmVycgpjb25maWd1cmU6MTEwOTY6ICQ/ID0gMApjb25maWd1cmU6MTEwOTk6IHRlc3Qg LXMgY29uZnRlc3QKY29uZmlndXJlOjExMTAyOiAkPyA9IDAKY29uZmlndXJlOjExMTE3OiByZXN1 bHQ6IHllcwpjb25maWd1cmU6MTExMjc6IGNoZWNraW5nIGhvdyB0byBsaW5rIHdpdGggbGliaWNv bnYKY29uZmlndXJlOjExMTI5OiByZXN1bHQ6IC91c3IvbG9jYWwvbGliL2xpYmljb252LnNvIC1X bCwtcnBhdGggLVdsLC91c3IvbG9jYWwvbGliCmNvbmZpZ3VyZToxMTE0MDogY2hlY2tpbmcgZm9y IGljb252IGRlY2xhcmF0aW9uCmNvbmZpZ3VyZToxMTE3NDogY2MgLWMgLU8yIC1mbm8tc3RyaWN0 LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPiY1CmNvbmZ0 ZXN0LmM6NjU6IGVycm9yOiBjb25mbGljdGluZyB0eXBlcyBmb3IgJ2xpYmljb252JwovdXNyL2xv Y2FsL2luY2x1ZGUvaWNvbnYuaDo4MzogZXJyb3I6IHByZXZpb3VzIGRlY2xhcmF0aW9uIG9mICds aWJpY29udicgd2FzIGhlcmUKY29uZmlndXJlOjExMTgwOiAkPyA9IDEKY29uZmlndXJlOiBmYWls ZWQgcHJvZ3JhbSB3YXM6CnwgLyogY29uZmRlZnMuaC4gICovCnwgCnwgI2RlZmluZSBQQUNLQUdF X05BTUUgIm15ZG5zIgp8ICNkZWZpbmUgUEFDS0FHRV9UQVJOQU1FICJteWRucyIKfCAjZGVmaW5l IFBBQ0tBR0VfVkVSU0lPTiAiMS4xLjAiCnwgI2RlZmluZSBQQUNLQUdFX1NUUklORyAibXlkbnMg MS4xLjAiCnwgI2RlZmluZSBQQUNLQUdFX0JVR1JFUE9SVCAiYmJveUBiYm95Lm5ldCIKfCAjZGVm aW5lIFBBQ0tBR0UgIm15ZG5zIgp8ICNkZWZpbmUgVkVSU0lPTiAiMS4xLjAiCnwgI2RlZmluZSBT VERDX0hFQURFUlMgMQp8ICNkZWZpbmUgSEFWRV9TWVNfVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZF X1NZU19TVEFUX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1NU UklOR19IIDEKfCAjZGVmaW5lIEhBVkVfTUVNT1JZX0ggMQp8ICNkZWZpbmUgSEFWRV9TVFJJTkdT X0ggMQp8ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfU1RESU5UX0gg MQp8ICNkZWZpbmUgSEFWRV9VTklTVERfSCAxCnwgI2RlZmluZSBIQVZFX0RMRkNOX0ggMQp8ICNk ZWZpbmUgSEFWRV9BTExPQ0EgMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBI QVZFX1VOSVNURF9IIDEKfCAjZGVmaW5lIEhBVkVfR0VUUEFHRVNJWkUgMQp8ICNkZWZpbmUgSEFW RV9NTUFQIDEKfCAjZGVmaW5lIElOVERJVjBfUkFJU0VTX1NJR0ZQRSAxCnwgI2RlZmluZSBIQVZF X0lOVFRZUEVTX0hfV0lUSF9VSU5UTUFYIDEKfCAjZGVmaW5lIEhBVkVfU1RESU5UX0hfV0lUSF9V SU5UTUFYIDEKfCAjZGVmaW5lIEhBVkVfVU5TSUdORURfTE9OR19MT05HIDEKfCAjZGVmaW5lIEhB VkVfSU5UVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX0xJTUlUU19IIDEKfCAjZGVmaW5lIEhBVkVf TE9DQUxFX0ggMQp8ICNkZWZpbmUgSEFWRV9OTF9UWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfU1RE REVGX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1NUUklOR19I IDEKfCAjZGVmaW5lIEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfUEFSQU1fSCAx CnwgI2RlZmluZSBIQVZFX0ZFT0ZfVU5MT0NLRUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRDX1VOTE9D S0VEIDEKfCAjZGVmaW5lIEhBVkVfR0VUQ1dEIDEKfCAjZGVmaW5lIEhBVkVfR0VURUdJRCAxCnwg I2RlZmluZSBIQVZFX0dFVEVVSUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRHSUQgMQp8ICNkZWZpbmUg SEFWRV9HRVRVSUQgMQp8ICNkZWZpbmUgSEFWRV9NVU5NQVAgMQp8ICNkZWZpbmUgSEFWRV9QVVRF TlYgMQp8ICNkZWZpbmUgSEFWRV9TRVRFTlYgMQp8ICNkZWZpbmUgSEFWRV9TRVRMT0NBTEUgMQp8 ICNkZWZpbmUgSEFWRV9TVFBDUFkgMQp8ICNkZWZpbmUgSEFWRV9TVFJDQVNFQ01QIDEKfCAjZGVm aW5lIEhBVkVfU1RSRFVQIDEKfCAjZGVmaW5lIEhBVkVfU1RSVE9VTCAxCnwgI2RlZmluZSBIQVZF X1RTRUFSQ0ggMQp8ICNkZWZpbmUgSEFWRV9JQ09OViAxCnwgLyogZW5kIGNvbmZkZWZzLmguICAq Lwp8IAp8ICNpbmNsdWRlIDxzdGRsaWIuaD4KfCAjaW5jbHVkZSA8aWNvbnYuaD4KfCBleHRlcm4K fCAjaWZkZWYgX19jcGx1c3BsdXMKfCAiQyIKfCAjZW5kaWYKfCAjaWYgZGVmaW5lZChfX1NURENf XykgfHwgZGVmaW5lZChfX2NwbHVzcGx1cykKfCBzaXplX3QgaWNvbnYgKGljb252X3QgY2QsIGNo YXIgKiAqaW5idWYsIHNpemVfdCAqaW5ieXRlc2xlZnQsIGNoYXIgKiAqb3V0YnVmLCBzaXplX3Qg Km91dGJ5dGVzbGVmdCk7CnwgI2Vsc2UKfCBzaXplX3QgaWNvbnYoKTsKfCAjZW5kaWYKfCAKfCBp bnQKfCBtYWluICgpCnwgewp8IAp8ICAgOwp8ICAgcmV0dXJuIDA7CnwgfQpjb25maWd1cmU6MTEy MDc6IHJlc3VsdDogCiAgICAgICAgIGV4dGVybiBzaXplX3QgaWNvbnYgKGljb252X3QgY2QsIGNv bnN0IGNoYXIgKiAqaW5idWYsIHNpemVfdCAqaW5ieXRlc2xlZnQsIGNoYXIgKiAqb3V0YnVmLCBz aXplX3QgKm91dGJ5dGVzbGVmdCk7CmNvbmZpZ3VyZToxMTIxOTogY2hlY2tpbmcgZm9yIG5sX2xh bmdpbmZvIGFuZCBDT0RFU0VUCmNvbmZpZ3VyZToxMTI0MDogY2MgLW8gY29uZnRlc3QgLU8yIC1m bm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9pbmNsdWRlICAtcnBhdGg9L3Vz ci9saWI6L3Vzci9sb2NhbC9saWIgY29uZnRlc3QuYyAgPiY1CmNvbmZpZ3VyZToxMTI0NjogJD8g PSAwCmNvbmZpZ3VyZToxMTI1MDogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5l cnIKY29uZmlndXJlOjExMjUzOiAkPyA9IDAKY29uZmlndXJlOjExMjU2OiB0ZXN0IC1zIGNvbmZ0 ZXN0CmNvbmZpZ3VyZToxMTI1OTogJD8gPSAwCmNvbmZpZ3VyZToxMTI3MjogcmVzdWx0OiB5ZXMK Y29uZmlndXJlOjExMjg0OiBjaGVja2luZyBmb3IgTENfTUVTU0FHRVMKY29uZmlndXJlOjExMzA1 OiBjYyAtbyBjb25mdGVzdCAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgLUkvdXNyL2xv Y2FsL2luY2x1ZGUgIC1ycGF0aD0vdXNyL2xpYjovdXNyL2xvY2FsL2xpYiBjb25mdGVzdC5jICA+ JjUKY29uZmlndXJlOjExMzExOiAkPyA9IDAKY29uZmlndXJlOjExMzE1OiB0ZXN0IC16IAoJCQkg fHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MTEzMTg6ICQ/ID0gMApjb25maWd1 cmU6MTEzMjE6IHRlc3QgLXMgY29uZnRlc3QKY29uZmlndXJlOjExMzI0OiAkPyA9IDAKY29uZmln dXJlOjExMzM2OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTEzNTI6IGNoZWNraW5nIGZvciBiaXNv bgpjb25maWd1cmU6MTEzODE6IHJlc3VsdDogbm8KY29uZmlndXJlOjExNDIxOiBjaGVja2luZyB3 aGV0aGVyIE5MUyBpcyByZXF1ZXN0ZWQKY29uZmlndXJlOjExNDMwOiByZXN1bHQ6IHllcwpjb25m aWd1cmU6MTE0NDU6IGNoZWNraW5nIHdoZXRoZXIgaW5jbHVkZWQgZ2V0dGV4dCBpcyByZXF1ZXN0 ZWQKY29uZmlndXJlOjExNDU1OiByZXN1bHQ6IG5vCmNvbmZpZ3VyZToxMTQ2NjogY2hlY2tpbmcg Zm9yIEdOVSBnZXR0ZXh0IGluIGxpYmMKY29uZmlndXJlOjExNDkwOiBjYyAtbyBjb25mdGVzdCAt TzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgIC1ycGF0 aD0vdXNyL2xpYjovdXNyL2xvY2FsL2xpYiBjb25mdGVzdC5jICA+JjUKY29uZnRlc3QuYzogSW4g ZnVuY3Rpb24gJ21haW4nOgpjb25mdGVzdC5jOjY3OiB3YXJuaW5nOiBjYXN0IGZyb20gcG9pbnRl ciB0byBpbnRlZ2VyIG9mIGRpZmZlcmVudCBzaXplCi92YXIvdG1wLy9jYzBYVW9ITC5vKC50ZXh0 KzB4ZCk6IEluIGZ1bmN0aW9uIGBtYWluJzoKOiB1bmRlZmluZWQgcmVmZXJlbmNlIHRvIGBsaWJp bnRsX2JpbmR0ZXh0ZG9tYWluJwovdmFyL3RtcC8vY2MwWFVvSEwubygudGV4dCsweDE3KTogSW4g ZnVuY3Rpb24gYG1haW4nOgo6IHVuZGVmaW5lZCByZWZlcmVuY2UgdG8gYGxpYmludGxfZ2V0dGV4 dCcKL3Zhci90bXAvL2NjMFhVb0hMLm8oLnRleHQrMHgxZSk6IEluIGZ1bmN0aW9uIGBtYWluJzoK OiB1bmRlZmluZWQgcmVmZXJlbmNlIHRvIGBfbmxfZG9tYWluX2JpbmRpbmdzJwovdmFyL3RtcC8v Y2MwWFVvSEwubygudGV4dCsweDI3KTogSW4gZnVuY3Rpb24gYG1haW4nOgo6IHVuZGVmaW5lZCBy ZWZlcmVuY2UgdG8gYF9ubF9tc2dfY2F0X2NudHInCmNvbmZpZ3VyZToxMTQ5NjogJD8gPSAxCmNv bmZpZ3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOgp8IC8qIGNvbmZkZWZzLmguICAqLwp8IAp8ICNk ZWZpbmUgUEFDS0FHRV9OQU1FICJteWRucyIKfCAjZGVmaW5lIFBBQ0tBR0VfVEFSTkFNRSAibXlk bnMiCnwgI2RlZmluZSBQQUNLQUdFX1ZFUlNJT04gIjEuMS4wIgp8ICNkZWZpbmUgUEFDS0FHRV9T VFJJTkcgIm15ZG5zIDEuMS4wIgp8ICNkZWZpbmUgUEFDS0FHRV9CVUdSRVBPUlQgImJib3lAYmJv eS5uZXQiCnwgI2RlZmluZSBQQUNLQUdFICJteWRucyIKfCAjZGVmaW5lIFZFUlNJT04gIjEuMS4w Igp8ICNkZWZpbmUgU1REQ19IRUFERVJTIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1RZUEVTX0ggMQp8 ICNkZWZpbmUgSEFWRV9TWVNfU1RBVF9IIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0ggMQp8ICNk ZWZpbmUgSEFWRV9TVFJJTkdfSCAxCnwgI2RlZmluZSBIQVZFX01FTU9SWV9IIDEKfCAjZGVmaW5l IEhBVkVfU1RSSU5HU19IIDEKfCAjZGVmaW5lIEhBVkVfSU5UVFlQRVNfSCAxCnwgI2RlZmluZSBI QVZFX1NURElOVF9IIDEKfCAjZGVmaW5lIEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUgSEFWRV9E TEZDTl9IIDEKfCAjZGVmaW5lIEhBVkVfQUxMT0NBIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0gg MQp8ICNkZWZpbmUgSEFWRV9VTklTVERfSCAxCnwgI2RlZmluZSBIQVZFX0dFVFBBR0VTSVpFIDEK fCAjZGVmaW5lIEhBVkVfTU1BUCAxCnwgI2RlZmluZSBJTlRESVYwX1JBSVNFU19TSUdGUEUgMQp8 ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IX1dJVEhfVUlOVE1BWCAxCnwgI2RlZmluZSBIQVZFX1NU RElOVF9IX1dJVEhfVUlOVE1BWCAxCnwgI2RlZmluZSBIQVZFX1VOU0lHTkVEX0xPTkdfTE9ORyAx CnwgI2RlZmluZSBIQVZFX0lOVFRZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9MSU1JVFNfSCAxCnwg I2RlZmluZSBIQVZFX0xPQ0FMRV9IIDEKfCAjZGVmaW5lIEhBVkVfTkxfVFlQRVNfSCAxCnwgI2Rl ZmluZSBIQVZFX1NURERFRl9IIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0ggMQp8ICNkZWZpbmUg SEFWRV9TVFJJTkdfSCAxCnwgI2RlZmluZSBIQVZFX1VOSVNURF9IIDEKfCAjZGVmaW5lIEhBVkVf U1lTX1BBUkFNX0ggMQp8ICNkZWZpbmUgSEFWRV9GRU9GX1VOTE9DS0VEIDEKfCAjZGVmaW5lIEhB VkVfR0VUQ19VTkxPQ0tFRCAxCnwgI2RlZmluZSBIQVZFX0dFVENXRCAxCnwgI2RlZmluZSBIQVZF X0dFVEVHSUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRFVUlEIDEKfCAjZGVmaW5lIEhBVkVfR0VUR0lE IDEKfCAjZGVmaW5lIEhBVkVfR0VUVUlEIDEKfCAjZGVmaW5lIEhBVkVfTVVOTUFQIDEKfCAjZGVm aW5lIEhBVkVfUFVURU5WIDEKfCAjZGVmaW5lIEhBVkVfU0VURU5WIDEKfCAjZGVmaW5lIEhBVkVf U0VUTE9DQUxFIDEKfCAjZGVmaW5lIEhBVkVfU1RQQ1BZIDEKfCAjZGVmaW5lIEhBVkVfU1RSQ0FT RUNNUCAxCnwgI2RlZmluZSBIQVZFX1NUUkRVUCAxCnwgI2RlZmluZSBIQVZFX1NUUlRPVUwgMQp8 ICNkZWZpbmUgSEFWRV9UU0VBUkNIIDEKfCAjZGVmaW5lIEhBVkVfSUNPTlYgMQp8ICNkZWZpbmUg SUNPTlZfQ09OU1QgY29uc3QKfCAjZGVmaW5lIEhBVkVfTEFOR0lORk9fQ09ERVNFVCAxCnwgI2Rl ZmluZSBIQVZFX0xDX01FU1NBR0VTIDEKfCAvKiBlbmQgY29uZmRlZnMuaC4gICovCnwgI2luY2x1 ZGUgPGxpYmludGwuaD4KfCBleHRlcm4gaW50IF9ubF9tc2dfY2F0X2NudHI7CnwgZXh0ZXJuIGlu dCAqX25sX2RvbWFpbl9iaW5kaW5nczsKfCBpbnQKfCBtYWluICgpCnwgewp8IGJpbmR0ZXh0ZG9t YWluICgiIiwgIiIpOwp8IHJldHVybiAoaW50KSBnZXR0ZXh0ICgiIikgKyBfbmxfbXNnX2NhdF9j bnRyICsgKl9ubF9kb21haW5fYmluZGluZ3MKfCAgIDsKfCAgIHJldHVybiAwOwp8IH0KY29uZmln dXJlOjExNTIxOiByZXN1bHQ6IG5vCmNvbmZpZ3VyZToxMTkwMjogY2hlY2tpbmcgZm9yIEdOVSBn ZXR0ZXh0IGluIGxpYmludGwKY29uZmlndXJlOjExOTM0OiBjYyAtbyBjb25mdGVzdCAtTzIgLWZu by1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgICAtcnBhdGg9L3Vz ci9saWI6L3Vzci9sb2NhbC9saWIgY29uZnRlc3QuYyAgL3Vzci9sb2NhbC9saWIvbGliaW50bC5z byAtTC91c3IvbG9jYWwvbGliIC91c3IvbG9jYWwvbGliL2xpYmljb252LnNvIC1XbCwtcnBhdGgg LVdsLC91c3IvbG9jYWwvbGliID4mNQpjb25mdGVzdC5jOiBJbiBmdW5jdGlvbiAnbWFpbic6CmNv bmZ0ZXN0LmM6NzE6IHdhcm5pbmc6IGNhc3QgZnJvbSBwb2ludGVyIHRvIGludGVnZXIgb2YgZGlm ZmVyZW50IHNpemUKY29uZmlndXJlOjExOTQwOiAkPyA9IDAKY29uZmlndXJlOjExOTQ0OiB0ZXN0 IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MTE5NDc6ICQ/ID0g MApjb25maWd1cmU6MTE5NTA6IHRlc3QgLXMgY29uZnRlc3QKY29uZmlndXJlOjExOTUzOiAkPyA9 IDAKY29uZmlndXJlOjEyMDI1OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTIwNzY6IGNoZWNraW5n IGhvdyB0byBsaW5rIHdpdGggbGliaW50bApjb25maWd1cmU6MTIwNzg6IHJlc3VsdDogL3Vzci9s b2NhbC9saWIvbGliaW50bC5zbyAtTC91c3IvbG9jYWwvbGliIC91c3IvbG9jYWwvbGliL2xpYmlj b252LnNvIC1XbCwtcnBhdGggLVdsLC91c3IvbG9jYWwvbGliCmNvbmZpZ3VyZToxMjE1NjogY2hl Y2tpbmcgZm9yIEFOU0kgQyBoZWFkZXIgZmlsZXMKY29uZmlndXJlOjEyMzEyOiByZXN1bHQ6IHll cwpjb25maWd1cmU6MTIzNDQ6IGNoZWNraW5nIGZjbnRsLmggdXNhYmlsaXR5CmNvbmZpZ3VyZTox MjM1NjogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9p bmNsdWRlIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZToxMjM2MjogJD8gPSAwCmNvbmZpZ3VyZTox MjM2NjogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjEy MzY5OiAkPyA9IDAKY29uZmlndXJlOjEyMzcyOiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJl OjEyMzc1OiAkPyA9IDAKY29uZmlndXJlOjEyMzg1OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTIz ODk6IGNoZWNraW5nIGZjbnRsLmggcHJlc2VuY2UKY29uZmlndXJlOjEyMzk5OiBjYyAtRSAtSS91 c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jCmNvbmZpZ3VyZToxMjQwNTogJD8gPSAwCmNvbmZp Z3VyZToxMjQyNTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEyNDYwOiBjaGVja2luZyBmb3IgZmNu dGwuaApjb25maWd1cmU6MTI0Njc6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMjM0NDogY2hlY2tp bmcgZ2V0b3B0LmggdXNhYmlsaXR5CmNvbmZpZ3VyZToxMjM1NjogY2MgLWMgLU8yIC1mbm8tc3Ry aWN0LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPiY1CmNv bmZpZ3VyZToxMjM2MjogJD8gPSAwCmNvbmZpZ3VyZToxMjM2NjogdGVzdCAteiAKCQkJIHx8IHRl c3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjEyMzY5OiAkPyA9IDAKY29uZmlndXJlOjEy MzcyOiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjEyMzc1OiAkPyA9IDAKY29uZmlndXJl OjEyMzg1OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTIzODk6IGNoZWNraW5nIGdldG9wdC5oIHBy ZXNlbmNlCmNvbmZpZ3VyZToxMjM5OTogY2MgLUUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgY29uZnRl c3QuYwpjb25maWd1cmU6MTI0MDU6ICQ/ID0gMApjb25maWd1cmU6MTI0MjU6IHJlc3VsdDogeWVz CmNvbmZpZ3VyZToxMjQ2MDogY2hlY2tpbmcgZm9yIGdldG9wdC5oCmNvbmZpZ3VyZToxMjQ2Nzog cmVzdWx0OiB5ZXMKY29uZmlndXJlOjEyMzQ0OiBjaGVja2luZyBsaWJpbnRsLmggdXNhYmlsaXR5 CmNvbmZpZ3VyZToxMjM1NjogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlIC1J L3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZToxMjM2MjogJD8gPSAw CmNvbmZpZ3VyZToxMjM2NjogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIK Y29uZmlndXJlOjEyMzY5OiAkPyA9IDAKY29uZmlndXJlOjEyMzcyOiB0ZXN0IC1zIGNvbmZ0ZXN0 Lm8KY29uZmlndXJlOjEyMzc1OiAkPyA9IDAKY29uZmlndXJlOjEyMzg1OiByZXN1bHQ6IHllcwpj b25maWd1cmU6MTIzODk6IGNoZWNraW5nIGxpYmludGwuaCBwcmVzZW5jZQpjb25maWd1cmU6MTIz OTk6IGNjIC1FIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMKY29uZmlndXJlOjEyNDA1 OiAkPyA9IDAKY29uZmlndXJlOjEyNDI1OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTI0NjA6IGNo ZWNraW5nIGZvciBsaWJpbnRsLmgKY29uZmlndXJlOjEyNDY3OiByZXN1bHQ6IHllcwpjb25maWd1 cmU6MTIzNDQ6IGNoZWNraW5nIG5ldGRiLmggdXNhYmlsaXR5CmNvbmZpZ3VyZToxMjM1NjogY2Mg LWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNv bmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZToxMjM2MjogJD8gPSAwCmNvbmZpZ3VyZToxMjM2NjogdGVz dCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjEyMzY5OiAkPyA9 IDAKY29uZmlndXJlOjEyMzcyOiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjEyMzc1OiAk PyA9IDAKY29uZmlndXJlOjEyMzg1OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTIzODk6IGNoZWNr aW5nIG5ldGRiLmggcHJlc2VuY2UKY29uZmlndXJlOjEyMzk5OiBjYyAtRSAtSS91c3IvbG9jYWwv aW5jbHVkZSBjb25mdGVzdC5jCmNvbmZpZ3VyZToxMjQwNTogJD8gPSAwCmNvbmZpZ3VyZToxMjQy NTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEyNDYwOiBjaGVja2luZyBmb3IgbmV0ZGIuaApjb25m aWd1cmU6MTI0Njc6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMjM0NDogY2hlY2tpbmcgcHdkLmgg dXNhYmlsaXR5CmNvbmZpZ3VyZToxMjM1NjogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5n IC1waXBlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZToxMjM2 MjogJD8gPSAwCmNvbmZpZ3VyZToxMjM2NjogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25m dGVzdC5lcnIKY29uZmlndXJlOjEyMzY5OiAkPyA9IDAKY29uZmlndXJlOjEyMzcyOiB0ZXN0IC1z IGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjEyMzc1OiAkPyA9IDAKY29uZmlndXJlOjEyMzg1OiByZXN1 bHQ6IHllcwpjb25maWd1cmU6MTIzODk6IGNoZWNraW5nIHB3ZC5oIHByZXNlbmNlCmNvbmZpZ3Vy ZToxMjM5OTogY2MgLUUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgY29uZnRlc3QuYwpjb25maWd1cmU6 MTI0MDU6ICQ/ID0gMApjb25maWd1cmU6MTI0MjU6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMjQ2 MDogY2hlY2tpbmcgZm9yIHB3ZC5oCmNvbmZpZ3VyZToxMjQ2NzogcmVzdWx0OiB5ZXMKY29uZmln dXJlOjEyMzQ0OiBjaGVja2luZyBzaWduYWwuaCB1c2FiaWxpdHkKY29uZmlndXJlOjEyMzU2OiBj YyAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgLUkvdXNyL2xvY2FsL2luY2x1ZGUg Y29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjEyMzYyOiAkPyA9IDAKY29uZmlndXJlOjEyMzY2OiB0 ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MTIzNjk6ICQ/ ID0gMApjb25maWd1cmU6MTIzNzI6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6MTIzNzU6 ICQ/ID0gMApjb25maWd1cmU6MTIzODU6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMjM4OTogY2hl Y2tpbmcgc2lnbmFsLmggcHJlc2VuY2UKY29uZmlndXJlOjEyMzk5OiBjYyAtRSAtSS91c3IvbG9j YWwvaW5jbHVkZSBjb25mdGVzdC5jCmNvbmZpZ3VyZToxMjQwNTogJD8gPSAwCmNvbmZpZ3VyZTox MjQyNTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEyNDYwOiBjaGVja2luZyBmb3Igc2lnbmFsLmgK Y29uZmlndXJlOjEyNDY3OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTIzNDQ6IGNoZWNraW5nIHN0 ZGFyZy5oIHVzYWJpbGl0eQpjb25maWd1cmU6MTIzNTY6IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1h bGlhc2luZyAtcGlwZSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jID4mNQpjb25maWd1 cmU6MTIzNjI6ICQ/ID0gMApjb25maWd1cmU6MTIzNjY6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEg LXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToxMjM2OTogJD8gPSAwCmNvbmZpZ3VyZToxMjM3Mjog dGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3VyZToxMjM3NTogJD8gPSAwCmNvbmZpZ3VyZToxMjM4 NTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEyMzg5OiBjaGVja2luZyBzdGRhcmcuaCBwcmVzZW5j ZQpjb25maWd1cmU6MTIzOTk6IGNjIC1FIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMK Y29uZmlndXJlOjEyNDA1OiAkPyA9IDAKY29uZmlndXJlOjEyNDI1OiByZXN1bHQ6IHllcwpjb25m aWd1cmU6MTI0NjA6IGNoZWNraW5nIGZvciBzdGRhcmcuaApjb25maWd1cmU6MTI0Njc6IHJlc3Vs dDogeWVzCmNvbmZpZ3VyZToxMjM0NDogY2hlY2tpbmcgdGVybWlvcy5oIHVzYWJpbGl0eQpjb25m aWd1cmU6MTIzNTY6IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAtSS91c3Iv bG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6MTIzNjI6ICQ/ID0gMApjb25m aWd1cmU6MTIzNjY6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZp Z3VyZToxMjM2OTogJD8gPSAwCmNvbmZpZ3VyZToxMjM3MjogdGVzdCAtcyBjb25mdGVzdC5vCmNv bmZpZ3VyZToxMjM3NTogJD8gPSAwCmNvbmZpZ3VyZToxMjM4NTogcmVzdWx0OiB5ZXMKY29uZmln dXJlOjEyMzg5OiBjaGVja2luZyB0ZXJtaW9zLmggcHJlc2VuY2UKY29uZmlndXJlOjEyMzk5OiBj YyAtRSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jCmNvbmZpZ3VyZToxMjQwNTogJD8g PSAwCmNvbmZpZ3VyZToxMjQyNTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEyNDYwOiBjaGVja2lu ZyBmb3IgdGVybWlvcy5oCmNvbmZpZ3VyZToxMjQ2NzogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEy MzQ0OiBjaGVja2luZyB0aW1lLmggdXNhYmlsaXR5CmNvbmZpZ3VyZToxMjM1NjogY2MgLWMgLU8y IC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0 LmMgPiY1CmNvbmZpZ3VyZToxMjM2MjogJD8gPSAwCmNvbmZpZ3VyZToxMjM2NjogdGVzdCAteiAK CQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjEyMzY5OiAkPyA9IDAKY29u ZmlndXJlOjEyMzcyOiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjEyMzc1OiAkPyA9IDAK Y29uZmlndXJlOjEyMzg1OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTIzODk6IGNoZWNraW5nIHRp bWUuaCBwcmVzZW5jZQpjb25maWd1cmU6MTIzOTk6IGNjIC1FIC1JL3Vzci9sb2NhbC9pbmNsdWRl IGNvbmZ0ZXN0LmMKY29uZmlndXJlOjEyNDA1OiAkPyA9IDAKY29uZmlndXJlOjEyNDI1OiByZXN1 bHQ6IHllcwpjb25maWd1cmU6MTI0NjA6IGNoZWNraW5nIGZvciB0aW1lLmgKY29uZmlndXJlOjEy NDY3OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTI0OTc6IGNoZWNraW5nIHN5cy9mY250bC5oIHVz YWJpbGl0eQpjb25maWd1cmU6MTI1MDk6IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAt cGlwZSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6MTI1MTU6 ICQ/ID0gMApjb25maWd1cmU6MTI1MTk6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRl c3QuZXJyCmNvbmZpZ3VyZToxMjUyMjogJD8gPSAwCmNvbmZpZ3VyZToxMjUyNTogdGVzdCAtcyBj b25mdGVzdC5vCmNvbmZpZ3VyZToxMjUyODogJD8gPSAwCmNvbmZpZ3VyZToxMjUzODogcmVzdWx0 OiB5ZXMKY29uZmlndXJlOjEyNTQyOiBjaGVja2luZyBzeXMvZmNudGwuaCBwcmVzZW5jZQpjb25m aWd1cmU6MTI1NTI6IGNjIC1FIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMKY29uZmln dXJlOjEyNTU4OiAkPyA9IDAKY29uZmlndXJlOjEyNTc4OiByZXN1bHQ6IHllcwpjb25maWd1cmU6 MTI2MTM6IGNoZWNraW5nIGZvciBzeXMvZmNudGwuaApjb25maWd1cmU6MTI2MjA6IHJlc3VsdDog eWVzCmNvbmZpZ3VyZToxMjQ5NzogY2hlY2tpbmcgc3lzL2ZpbGUuaCB1c2FiaWxpdHkKY29uZmln dXJlOjEyNTA5OiBjYyAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgLUkvdXNyL2xv Y2FsL2luY2x1ZGUgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjEyNTE1OiAkPyA9IDAKY29uZmln dXJlOjEyNTE5OiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1 cmU6MTI1MjI6ICQ/ID0gMApjb25maWd1cmU6MTI1MjU6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25m aWd1cmU6MTI1Mjg6ICQ/ID0gMApjb25maWd1cmU6MTI1Mzg6IHJlc3VsdDogeWVzCmNvbmZpZ3Vy ZToxMjU0MjogY2hlY2tpbmcgc3lzL2ZpbGUuaCBwcmVzZW5jZQpjb25maWd1cmU6MTI1NTI6IGNj IC1FIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMKY29uZmlndXJlOjEyNTU4OiAkPyA9 IDAKY29uZmlndXJlOjEyNTc4OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTI2MTM6IGNoZWNraW5n IGZvciBzeXMvZmlsZS5oCmNvbmZpZ3VyZToxMjYyMDogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEy NDk3OiBjaGVja2luZyBzeXMvaW9jdGwuaCB1c2FiaWxpdHkKY29uZmlndXJlOjEyNTA5OiBjYyAt YyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgY29u ZnRlc3QuYyA+JjUKY29uZmlndXJlOjEyNTE1OiAkPyA9IDAKY29uZmlndXJlOjEyNTE5OiB0ZXN0 IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MTI1MjI6ICQ/ID0g MApjb25maWd1cmU6MTI1MjU6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6MTI1Mjg6ICQ/ ID0gMApjb25maWd1cmU6MTI1Mzg6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMjU0MjogY2hlY2tp bmcgc3lzL2lvY3RsLmggcHJlc2VuY2UKY29uZmlndXJlOjEyNTUyOiBjYyAtRSAtSS91c3IvbG9j YWwvaW5jbHVkZSBjb25mdGVzdC5jCmNvbmZpZ3VyZToxMjU1ODogJD8gPSAwCmNvbmZpZ3VyZTox MjU3ODogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEyNjEzOiBjaGVja2luZyBmb3Igc3lzL2lvY3Rs LmgKY29uZmlndXJlOjEyNjIwOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTI0OTc6IGNoZWNraW5n IHN5cy9yZXNvdXJjZS5oIHVzYWJpbGl0eQpjb25maWd1cmU6MTI1MDk6IGNjIC1jIC1PMiAtZm5v LXN0cmljdC1hbGlhc2luZyAtcGlwZSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jID4m NQpjb25maWd1cmU6MTI1MTU6ICQ/ID0gMApjb25maWd1cmU6MTI1MTk6IHRlc3QgLXogCgkJCSB8 fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToxMjUyMjogJD8gPSAwCmNvbmZpZ3Vy ZToxMjUyNTogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3VyZToxMjUyODogJD8gPSAwCmNvbmZp Z3VyZToxMjUzODogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEyNTQyOiBjaGVja2luZyBzeXMvcmVz b3VyY2UuaCBwcmVzZW5jZQpjb25maWd1cmU6MTI1NTI6IGNjIC1FIC1JL3Vzci9sb2NhbC9pbmNs dWRlIGNvbmZ0ZXN0LmMKY29uZmlndXJlOjEyNTU4OiAkPyA9IDAKY29uZmlndXJlOjEyNTc4OiBy ZXN1bHQ6IHllcwpjb25maWd1cmU6MTI2MTM6IGNoZWNraW5nIGZvciBzeXMvcmVzb3VyY2UuaApj b25maWd1cmU6MTI2MjA6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMjY1MDogY2hlY2tpbmcgc3lz L3NvY2tldC5oIHVzYWJpbGl0eQpjb25maWd1cmU6MTI2NjI6IGNjIC1jIC1PMiAtZm5vLXN0cmlj dC1hbGlhc2luZyAtcGlwZSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jID4mNQpjb25m aWd1cmU6MTI2Njg6ICQ/ID0gMApjb25maWd1cmU6MTI2NzI6IHRlc3QgLXogCgkJCSB8fCB0ZXN0 ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToxMjY3NTogJD8gPSAwCmNvbmZpZ3VyZToxMjY3 ODogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3VyZToxMjY4MTogJD8gPSAwCmNvbmZpZ3VyZTox MjY5MTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEyNjk1OiBjaGVja2luZyBzeXMvc29ja2V0Lmgg cHJlc2VuY2UKY29uZmlndXJlOjEyNzA1OiBjYyAtRSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25m dGVzdC5jCmNvbmZpZ3VyZToxMjcxMTogJD8gPSAwCmNvbmZpZ3VyZToxMjczMTogcmVzdWx0OiB5 ZXMKY29uZmlndXJlOjEyNzY2OiBjaGVja2luZyBmb3Igc3lzL3NvY2tldC5oCmNvbmZpZ3VyZTox Mjc3MzogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEyNjUwOiBjaGVja2luZyBzeXMvc29ja2lvLmgg dXNhYmlsaXR5CmNvbmZpZ3VyZToxMjY2MjogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5n IC1waXBlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZToxMjY2 ODogJD8gPSAwCmNvbmZpZ3VyZToxMjY3MjogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25m dGVzdC5lcnIKY29uZmlndXJlOjEyNjc1OiAkPyA9IDAKY29uZmlndXJlOjEyNjc4OiB0ZXN0IC1z IGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjEyNjgxOiAkPyA9IDAKY29uZmlndXJlOjEyNjkxOiByZXN1 bHQ6IHllcwpjb25maWd1cmU6MTI2OTU6IGNoZWNraW5nIHN5cy9zb2NraW8uaCBwcmVzZW5jZQpj b25maWd1cmU6MTI3MDU6IGNjIC1FIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMKY29u ZmlndXJlOjEyNzExOiAkPyA9IDAKY29uZmlndXJlOjEyNzMxOiByZXN1bHQ6IHllcwpjb25maWd1 cmU6MTI3NjY6IGNoZWNraW5nIGZvciBzeXMvc29ja2lvLmgKY29uZmlndXJlOjEyNzczOiByZXN1 bHQ6IHllcwpjb25maWd1cmU6MTI2NTA6IGNoZWNraW5nIHN5cy90aW1lLmggdXNhYmlsaXR5CmNv bmZpZ3VyZToxMjY2MjogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlIC1JL3Vz ci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZToxMjY2ODogJD8gPSAwCmNv bmZpZ3VyZToxMjY3MjogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29u ZmlndXJlOjEyNjc1OiAkPyA9IDAKY29uZmlndXJlOjEyNjc4OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8K Y29uZmlndXJlOjEyNjgxOiAkPyA9IDAKY29uZmlndXJlOjEyNjkxOiByZXN1bHQ6IHllcwpjb25m aWd1cmU6MTI2OTU6IGNoZWNraW5nIHN5cy90aW1lLmggcHJlc2VuY2UKY29uZmlndXJlOjEyNzA1 OiBjYyAtRSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jCmNvbmZpZ3VyZToxMjcxMTog JD8gPSAwCmNvbmZpZ3VyZToxMjczMTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEyNzY2OiBjaGVj a2luZyBmb3Igc3lzL3RpbWUuaApjb25maWd1cmU6MTI3NzM6IHJlc3VsdDogeWVzCmNvbmZpZ3Vy ZToxMjY1MDogY2hlY2tpbmcgc3lzL3dhaXQuaCB1c2FiaWxpdHkKY29uZmlndXJlOjEyNjYyOiBj YyAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgLUkvdXNyL2xvY2FsL2luY2x1ZGUg Y29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjEyNjY4OiAkPyA9IDAKY29uZmlndXJlOjEyNjcyOiB0 ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MTI2NzU6ICQ/ ID0gMApjb25maWd1cmU6MTI2Nzg6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6MTI2ODE6 ICQ/ID0gMApjb25maWd1cmU6MTI2OTE6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMjY5NTogY2hl Y2tpbmcgc3lzL3dhaXQuaCBwcmVzZW5jZQpjb25maWd1cmU6MTI3MDU6IGNjIC1FIC1JL3Vzci9s b2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMKY29uZmlndXJlOjEyNzExOiAkPyA9IDAKY29uZmlndXJl OjEyNzMxOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTI3NjY6IGNoZWNraW5nIGZvciBzeXMvd2Fp dC5oCmNvbmZpZ3VyZToxMjc3MzogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEyODAwOiBjaGVja2lu ZyBuZXRpbmV0L2luLmggdXNhYmlsaXR5CmNvbmZpZ3VyZToxMjgxMjogY2MgLWMgLU8yIC1mbm8t c3RyaWN0LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPiY1 CmNvbmZpZ3VyZToxMjgxODogJD8gPSAwCmNvbmZpZ3VyZToxMjgyMjogdGVzdCAteiAKCQkJIHx8 IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjEyODI1OiAkPyA9IDAKY29uZmlndXJl OjEyODI4OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjEyODMxOiAkPyA9IDAKY29uZmln dXJlOjEyODQxOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTI4NDU6IGNoZWNraW5nIG5ldGluZXQv aW4uaCBwcmVzZW5jZQpjb25maWd1cmU6MTI4NTU6IGNjIC1FIC1JL3Vzci9sb2NhbC9pbmNsdWRl IGNvbmZ0ZXN0LmMKY29uZmlndXJlOjEyODYxOiAkPyA9IDAKY29uZmlndXJlOjEyODgxOiByZXN1 bHQ6IHllcwpjb25maWd1cmU6MTI5MTY6IGNoZWNraW5nIGZvciBuZXRpbmV0L2luLmgKY29uZmln dXJlOjEyOTIzOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTI5NTA6IGNoZWNraW5nIG5ldC9pZi5o IHVzYWJpbGl0eQpjb25maWd1cmU6MTI5NjI6IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1hbGlhc2lu ZyAtcGlwZSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jID4mNQpJbiBmaWxlIGluY2x1 ZGVkIGZyb20gY29uZnRlc3QuYzoxMTY6Ci91c3IvaW5jbHVkZS9uZXQvaWYuaDoyOTI6IGVycm9y OiBmaWVsZCAnaWZydV9hZGRyJyBoYXMgaW5jb21wbGV0ZSB0eXBlCi91c3IvaW5jbHVkZS9uZXQv aWYuaDoyOTM6IGVycm9yOiBmaWVsZCAnaWZydV9kc3RhZGRyJyBoYXMgaW5jb21wbGV0ZSB0eXBl Ci91c3IvaW5jbHVkZS9uZXQvaWYuaDoyOTQ6IGVycm9yOiBmaWVsZCAnaWZydV9icm9hZGFkZHIn IGhhcyBpbmNvbXBsZXRlIHR5cGUKL3Vzci9pbmNsdWRlL25ldC9pZi5oOjMyNjogZXJyb3I6IGZp ZWxkICdpZnJhX2FkZHInIGhhcyBpbmNvbXBsZXRlIHR5cGUKL3Vzci9pbmNsdWRlL25ldC9pZi5o OjMyNzogZXJyb3I6IGZpZWxkICdpZnJhX2Jyb2FkYWRkcicgaGFzIGluY29tcGxldGUgdHlwZQov dXNyL2luY2x1ZGUvbmV0L2lmLmg6MzI4OiBlcnJvcjogZmllbGQgJ2lmcmFfbWFzaycgaGFzIGlu Y29tcGxldGUgdHlwZQovdXNyL2luY2x1ZGUvbmV0L2lmLmg6NDI2OiBlcnJvcjogZmllbGQgJ2Fk ZHInIGhhcyBpbmNvbXBsZXRlIHR5cGUKL3Vzci9pbmNsdWRlL25ldC9pZi5oOjQyNzogZXJyb3I6 IGZpZWxkICdkc3RhZGRyJyBoYXMgaW5jb21wbGV0ZSB0eXBlCmNvbmZpZ3VyZToxMjk2ODogJD8g PSAxCmNvbmZpZ3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOgp8IC8qIGNvbmZkZWZzLmguICAqLwp8 IAp8ICNkZWZpbmUgUEFDS0FHRV9OQU1FICJteWRucyIKfCAjZGVmaW5lIFBBQ0tBR0VfVEFSTkFN RSAibXlkbnMiCnwgI2RlZmluZSBQQUNLQUdFX1ZFUlNJT04gIjEuMS4wIgp8ICNkZWZpbmUgUEFD S0FHRV9TVFJJTkcgIm15ZG5zIDEuMS4wIgp8ICNkZWZpbmUgUEFDS0FHRV9CVUdSRVBPUlQgImJi b3lAYmJveS5uZXQiCnwgI2RlZmluZSBQQUNLQUdFICJteWRucyIKfCAjZGVmaW5lIFZFUlNJT04g IjEuMS4wIgp8ICNkZWZpbmUgU1REQ19IRUFERVJTIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1RZUEVT X0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfU1RBVF9IIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0gg MQp8ICNkZWZpbmUgSEFWRV9TVFJJTkdfSCAxCnwgI2RlZmluZSBIQVZFX01FTU9SWV9IIDEKfCAj ZGVmaW5lIEhBVkVfU1RSSU5HU19IIDEKfCAjZGVmaW5lIEhBVkVfSU5UVFlQRVNfSCAxCnwgI2Rl ZmluZSBIQVZFX1NURElOVF9IIDEKfCAjZGVmaW5lIEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUg SEFWRV9ETEZDTl9IIDEKfCAjZGVmaW5lIEhBVkVfQUxMT0NBIDEKfCAjZGVmaW5lIEhBVkVfU1RE TElCX0ggMQp8ICNkZWZpbmUgSEFWRV9VTklTVERfSCAxCnwgI2RlZmluZSBIQVZFX0dFVFBBR0VT SVpFIDEKfCAjZGVmaW5lIEhBVkVfTU1BUCAxCnwgI2RlZmluZSBJTlRESVYwX1JBSVNFU19TSUdG UEUgMQp8ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IX1dJVEhfVUlOVE1BWCAxCnwgI2RlZmluZSBI QVZFX1NURElOVF9IX1dJVEhfVUlOVE1BWCAxCnwgI2RlZmluZSBIQVZFX1VOU0lHTkVEX0xPTkdf TE9ORyAxCnwgI2RlZmluZSBIQVZFX0lOVFRZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9MSU1JVFNf SCAxCnwgI2RlZmluZSBIQVZFX0xPQ0FMRV9IIDEKfCAjZGVmaW5lIEhBVkVfTkxfVFlQRVNfSCAx CnwgI2RlZmluZSBIQVZFX1NURERFRl9IIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0ggMQp8ICNk ZWZpbmUgSEFWRV9TVFJJTkdfSCAxCnwgI2RlZmluZSBIQVZFX1VOSVNURF9IIDEKfCAjZGVmaW5l IEhBVkVfU1lTX1BBUkFNX0ggMQp8ICNkZWZpbmUgSEFWRV9GRU9GX1VOTE9DS0VEIDEKfCAjZGVm aW5lIEhBVkVfR0VUQ19VTkxPQ0tFRCAxCnwgI2RlZmluZSBIQVZFX0dFVENXRCAxCnwgI2RlZmlu ZSBIQVZFX0dFVEVHSUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRFVUlEIDEKfCAjZGVmaW5lIEhBVkVf R0VUR0lEIDEKfCAjZGVmaW5lIEhBVkVfR0VUVUlEIDEKfCAjZGVmaW5lIEhBVkVfTVVOTUFQIDEK fCAjZGVmaW5lIEhBVkVfUFVURU5WIDEKfCAjZGVmaW5lIEhBVkVfU0VURU5WIDEKfCAjZGVmaW5l IEhBVkVfU0VUTE9DQUxFIDEKfCAjZGVmaW5lIEhBVkVfU1RQQ1BZIDEKfCAjZGVmaW5lIEhBVkVf U1RSQ0FTRUNNUCAxCnwgI2RlZmluZSBIQVZFX1NUUkRVUCAxCnwgI2RlZmluZSBIQVZFX1NUUlRP VUwgMQp8ICNkZWZpbmUgSEFWRV9UU0VBUkNIIDEKfCAjZGVmaW5lIEhBVkVfSUNPTlYgMQp8ICNk ZWZpbmUgSUNPTlZfQ09OU1QgY29uc3QKfCAjZGVmaW5lIEhBVkVfTEFOR0lORk9fQ09ERVNFVCAx CnwgI2RlZmluZSBIQVZFX0xDX01FU1NBR0VTIDEKfCAjZGVmaW5lIEVOQUJMRV9OTFMgMQp8ICNk ZWZpbmUgSEFWRV9HRVRURVhUIDEKfCAjZGVmaW5lIEhBVkVfRENHRVRURVhUIDEKfCAjZGVmaW5l IFNURENfSEVBREVSUyAxCnwgI2RlZmluZSBIQVZFX0ZDTlRMX0ggMQp8ICNkZWZpbmUgSEFWRV9H RVRPUFRfSCAxCnwgI2RlZmluZSBIQVZFX0xJQklOVExfSCAxCnwgI2RlZmluZSBIQVZFX05FVERC X0ggMQp8ICNkZWZpbmUgSEFWRV9QV0RfSCAxCnwgI2RlZmluZSBIQVZFX1NJR05BTF9IIDEKfCAj ZGVmaW5lIEhBVkVfU1REQVJHX0ggMQp8ICNkZWZpbmUgSEFWRV9URVJNSU9TX0ggMQp8ICNkZWZp bmUgSEFWRV9USU1FX0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfRkNOVExfSCAxCnwgI2RlZmluZSBI QVZFX1NZU19GSUxFX0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfSU9DVExfSCAxCnwgI2RlZmluZSBI QVZFX1NZU19SRVNPVVJDRV9IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1NPQ0tFVF9IIDEKfCAjZGVm aW5lIEhBVkVfU1lTX1NPQ0tJT19IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1RJTUVfSCAxCnwgI2Rl ZmluZSBIQVZFX1NZU19XQUlUX0ggMQp8ICNkZWZpbmUgSEFWRV9ORVRJTkVUX0lOX0ggMQp8IC8q IGVuZCBjb25mZGVmcy5oLiAgKi8KfCAjaW5jbHVkZSA8c3RkaW8uaD4KfCAjaWYgSEFWRV9TWVNf VFlQRVNfSAp8ICMgaW5jbHVkZSA8c3lzL3R5cGVzLmg+CnwgI2VuZGlmCnwgI2lmIEhBVkVfU1lT X1NUQVRfSAp8ICMgaW5jbHVkZSA8c3lzL3N0YXQuaD4KfCAjZW5kaWYKfCAjaWYgU1REQ19IRUFE RVJTCnwgIyBpbmNsdWRlIDxzdGRsaWIuaD4KfCAjIGluY2x1ZGUgPHN0ZGRlZi5oPgp8ICNlbHNl CnwgIyBpZiBIQVZFX1NURExJQl9ICnwgIyAgaW5jbHVkZSA8c3RkbGliLmg+CnwgIyBlbmRpZgp8 ICNlbmRpZgp8ICNpZiBIQVZFX1NUUklOR19ICnwgIyBpZiAhU1REQ19IRUFERVJTICYmIEhBVkVf TUVNT1JZX0gKfCAjICBpbmNsdWRlIDxtZW1vcnkuaD4KfCAjIGVuZGlmCnwgIyBpbmNsdWRlIDxz dHJpbmcuaD4KfCAjZW5kaWYKfCAjaWYgSEFWRV9TVFJJTkdTX0gKfCAjIGluY2x1ZGUgPHN0cmlu Z3MuaD4KfCAjZW5kaWYKfCAjaWYgSEFWRV9JTlRUWVBFU19ICnwgIyBpbmNsdWRlIDxpbnR0eXBl cy5oPgp8ICNlbHNlCnwgIyBpZiBIQVZFX1NURElOVF9ICnwgIyAgaW5jbHVkZSA8c3RkaW50Lmg+ CnwgIyBlbmRpZgp8ICNlbmRpZgp8ICNpZiBIQVZFX1VOSVNURF9ICnwgIyBpbmNsdWRlIDx1bmlz dGQuaD4KfCAjZW5kaWYKfCAjaW5jbHVkZSA8bmV0L2lmLmg+CmNvbmZpZ3VyZToxMjk5MTogcmVz dWx0OiBubwpjb25maWd1cmU6MTI5OTU6IGNoZWNraW5nIG5ldC9pZi5oIHByZXNlbmNlCmNvbmZp Z3VyZToxMzAwNTogY2MgLUUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgY29uZnRlc3QuYwpjb25maWd1 cmU6MTMwMTE6ICQ/ID0gMApjb25maWd1cmU6MTMwMzE6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZTox MzA0NDogV0FSTklORzogbmV0L2lmLmg6IHByZXNlbnQgYnV0IGNhbm5vdCBiZSBjb21waWxlZApj b25maWd1cmU6MTMwNDY6IFdBUk5JTkc6IG5ldC9pZi5oOiAgICAgY2hlY2sgZm9yIG1pc3Npbmcg cHJlcmVxdWlzaXRlIGhlYWRlcnM/CmNvbmZpZ3VyZToxMzA0ODogV0FSTklORzogbmV0L2lmLmg6 IHNlZSB0aGUgQXV0b2NvbmYgZG9jdW1lbnRhdGlvbgpjb25maWd1cmU6MTMwNTA6IFdBUk5JTkc6 IG5ldC9pZi5oOiAgICAgc2VjdGlvbiAiUHJlc2VudCBCdXQgQ2Fubm90IEJlIENvbXBpbGVkIgpj b25maWd1cmU6MTMwNTI6IFdBUk5JTkc6IG5ldC9pZi5oOiBwcm9jZWVkaW5nIHdpdGggdGhlIHBy ZXByb2Nlc3NvcidzIHJlc3VsdApjb25maWd1cmU6MTMwNTQ6IFdBUk5JTkc6IG5ldC9pZi5oOiBp biB0aGUgZnV0dXJlLCB0aGUgY29tcGlsZXIgd2lsbCB0YWtlIHByZWNlZGVuY2UKY29uZmlndXJl OjEzMDY2OiBjaGVja2luZyBmb3IgbmV0L2lmLmgKY29uZmlndXJlOjEzMDczOiByZXN1bHQ6IHll cwpjb25maWd1cmU6MTMxMDA6IGNoZWNraW5nIGFycGEvaW5ldC5oIHVzYWJpbGl0eQpjb25maWd1 cmU6MTMxMTI6IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAtSS91c3IvbG9j YWwvaW5jbHVkZSBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6MTMxMTg6ICQ/ID0gMApjb25maWd1 cmU6MTMxMjI6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3Vy ZToxMzEyNTogJD8gPSAwCmNvbmZpZ3VyZToxMzEyODogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZp Z3VyZToxMzEzMTogJD8gPSAwCmNvbmZpZ3VyZToxMzE0MTogcmVzdWx0OiB5ZXMKY29uZmlndXJl OjEzMTQ1OiBjaGVja2luZyBhcnBhL2luZXQuaCBwcmVzZW5jZQpjb25maWd1cmU6MTMxNTU6IGNj IC1FIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMKY29uZmlndXJlOjEzMTYxOiAkPyA9 IDAKY29uZmlndXJlOjEzMTgxOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTMyMTY6IGNoZWNraW5n IGZvciBhcnBhL2luZXQuaApjb25maWd1cmU6MTMyMjM6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZTox MzI0MTogY2hlY2tpbmcgZm9yIGludHR5cGVzLmgKY29uZmlndXJlOjEzMjQ2OiByZXN1bHQ6IHll cwpjb25maWd1cmU6MTMzODg6IGNoZWNraW5nIGZvciBhbiBBTlNJIEMtY29uZm9ybWluZyBjb25z dApjb25maWd1cmU6MTM0ODU6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMzQ5NTogY2hlY2tpbmcg Zm9yIGlubGluZQpjb25maWd1cmU6MTM1NDc6IHJlc3VsdDogaW5saW5lCmNvbmZpZ3VyZToxMzU2 NjogY2hlY2tpbmcgZm9yIHVjaGFyCmNvbmZpZ3VyZToxMzU5MDogY2MgLWMgLU8yIC1mbm8tc3Ry aWN0LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPiY1CmNv bmZ0ZXN0LmM6IEluIGZ1bmN0aW9uICdtYWluJzoKY29uZnRlc3QuYzoxMjI6IGVycm9yOiAndWNo YXInIHVuZGVjbGFyZWQgKGZpcnN0IHVzZSBpbiB0aGlzIGZ1bmN0aW9uKQpjb25mdGVzdC5jOjEy MjogZXJyb3I6IChFYWNoIHVuZGVjbGFyZWQgaWRlbnRpZmllciBpcyByZXBvcnRlZCBvbmx5IG9u Y2UKY29uZnRlc3QuYzoxMjI6IGVycm9yOiBmb3IgZWFjaCBmdW5jdGlvbiBpdCBhcHBlYXJzIGlu LikKY29uZnRlc3QuYzoxMjI6IGVycm9yOiBleHBlY3RlZCBleHByZXNzaW9uIGJlZm9yZSAnKScg dG9rZW4KY29uZmlndXJlOjEzNTk2OiAkPyA9IDEKY29uZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3 YXM6CnwgLyogY29uZmRlZnMuaC4gICovCnwgCnwgI2RlZmluZSBQQUNLQUdFX05BTUUgIm15ZG5z Igp8ICNkZWZpbmUgUEFDS0FHRV9UQVJOQU1FICJteWRucyIKfCAjZGVmaW5lIFBBQ0tBR0VfVkVS U0lPTiAiMS4xLjAiCnwgI2RlZmluZSBQQUNLQUdFX1NUUklORyAibXlkbnMgMS4xLjAiCnwgI2Rl ZmluZSBQQUNLQUdFX0JVR1JFUE9SVCAiYmJveUBiYm95Lm5ldCIKfCAjZGVmaW5lIFBBQ0tBR0Ug Im15ZG5zIgp8ICNkZWZpbmUgVkVSU0lPTiAiMS4xLjAiCnwgI2RlZmluZSBTVERDX0hFQURFUlMg MQp8ICNkZWZpbmUgSEFWRV9TWVNfVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX1NZU19TVEFUX0gg MQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1NUUklOR19IIDEKfCAj ZGVmaW5lIEhBVkVfTUVNT1JZX0ggMQp8ICNkZWZpbmUgSEFWRV9TVFJJTkdTX0ggMQp8ICNkZWZp bmUgSEFWRV9JTlRUWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfU1RESU5UX0ggMQp8ICNkZWZpbmUg SEFWRV9VTklTVERfSCAxCnwgI2RlZmluZSBIQVZFX0RMRkNOX0ggMQp8ICNkZWZpbmUgSEFWRV9B TExPQ0EgMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1VOSVNURF9I IDEKfCAjZGVmaW5lIEhBVkVfR0VUUEFHRVNJWkUgMQp8ICNkZWZpbmUgSEFWRV9NTUFQIDEKfCAj ZGVmaW5lIElOVERJVjBfUkFJU0VTX1NJR0ZQRSAxCnwgI2RlZmluZSBIQVZFX0lOVFRZUEVTX0hf V0lUSF9VSU5UTUFYIDEKfCAjZGVmaW5lIEhBVkVfU1RESU5UX0hfV0lUSF9VSU5UTUFYIDEKfCAj ZGVmaW5lIEhBVkVfVU5TSUdORURfTE9OR19MT05HIDEKfCAjZGVmaW5lIEhBVkVfSU5UVFlQRVNf SCAxCnwgI2RlZmluZSBIQVZFX0xJTUlUU19IIDEKfCAjZGVmaW5lIEhBVkVfTE9DQUxFX0ggMQp8 ICNkZWZpbmUgSEFWRV9OTF9UWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfU1REREVGX0ggMQp8ICNk ZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1NUUklOR19IIDEKfCAjZGVmaW5l IEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfUEFSQU1fSCAxCnwgI2RlZmluZSBI QVZFX0ZFT0ZfVU5MT0NLRUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRDX1VOTE9DS0VEIDEKfCAjZGVm aW5lIEhBVkVfR0VUQ1dEIDEKfCAjZGVmaW5lIEhBVkVfR0VURUdJRCAxCnwgI2RlZmluZSBIQVZF X0dFVEVVSUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRHSUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRVSUQg MQp8ICNkZWZpbmUgSEFWRV9NVU5NQVAgMQp8ICNkZWZpbmUgSEFWRV9QVVRFTlYgMQp8ICNkZWZp bmUgSEFWRV9TRVRFTlYgMQp8ICNkZWZpbmUgSEFWRV9TRVRMT0NBTEUgMQp8ICNkZWZpbmUgSEFW RV9TVFBDUFkgMQp8ICNkZWZpbmUgSEFWRV9TVFJDQVNFQ01QIDEKfCAjZGVmaW5lIEhBVkVfU1RS RFVQIDEKfCAjZGVmaW5lIEhBVkVfU1RSVE9VTCAxCnwgI2RlZmluZSBIQVZFX1RTRUFSQ0ggMQp8 ICNkZWZpbmUgSEFWRV9JQ09OViAxCnwgI2RlZmluZSBJQ09OVl9DT05TVCBjb25zdAp8ICNkZWZp bmUgSEFWRV9MQU5HSU5GT19DT0RFU0VUIDEKfCAjZGVmaW5lIEhBVkVfTENfTUVTU0FHRVMgMQp8 ICNkZWZpbmUgRU5BQkxFX05MUyAxCnwgI2RlZmluZSBIQVZFX0dFVFRFWFQgMQp8ICNkZWZpbmUg SEFWRV9EQ0dFVFRFWFQgMQp8ICNkZWZpbmUgU1REQ19IRUFERVJTIDEKfCAjZGVmaW5lIEhBVkVf RkNOVExfSCAxCnwgI2RlZmluZSBIQVZFX0dFVE9QVF9IIDEKfCAjZGVmaW5lIEhBVkVfTElCSU5U TF9IIDEKfCAjZGVmaW5lIEhBVkVfTkVUREJfSCAxCnwgI2RlZmluZSBIQVZFX1BXRF9IIDEKfCAj ZGVmaW5lIEhBVkVfU0lHTkFMX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERBUkdfSCAxCnwgI2RlZmlu ZSBIQVZFX1RFUk1JT1NfSCAxCnwgI2RlZmluZSBIQVZFX1RJTUVfSCAxCnwgI2RlZmluZSBIQVZF X1NZU19GQ05UTF9IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX0ZJTEVfSCAxCnwgI2RlZmluZSBIQVZF X1NZU19JT0NUTF9IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1JFU09VUkNFX0ggMQp8ICNkZWZpbmUg SEFWRV9TWVNfU09DS0VUX0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfU09DS0lPX0ggMQp8ICNkZWZp bmUgSEFWRV9TWVNfVElNRV9IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1dBSVRfSCAxCnwgI2RlZmlu ZSBIQVZFX05FVElORVRfSU5fSCAxCnwgI2RlZmluZSBIQVZFX05FVF9JRl9IIDEKfCAjZGVmaW5l IEhBVkVfQVJQQV9JTkVUX0ggMQp8ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IIDEKfCAvKiBlbmQg Y29uZmRlZnMuaC4gICovCnwgI2luY2x1ZGUgPHN0ZGlvLmg+CnwgI2lmIEhBVkVfU1lTX1RZUEVT X0gKfCAjIGluY2x1ZGUgPHN5cy90eXBlcy5oPgp8ICNlbmRpZgp8ICNpZiBIQVZFX1NZU19TVEFU X0gKfCAjIGluY2x1ZGUgPHN5cy9zdGF0Lmg+CnwgI2VuZGlmCnwgI2lmIFNURENfSEVBREVSUwp8 ICMgaW5jbHVkZSA8c3RkbGliLmg+CnwgIyBpbmNsdWRlIDxzdGRkZWYuaD4KfCAjZWxzZQp8ICMg aWYgSEFWRV9TVERMSUJfSAp8ICMgIGluY2x1ZGUgPHN0ZGxpYi5oPgp8ICMgZW5kaWYKfCAjZW5k aWYKfCAjaWYgSEFWRV9TVFJJTkdfSAp8ICMgaWYgIVNURENfSEVBREVSUyAmJiBIQVZFX01FTU9S WV9ICnwgIyAgaW5jbHVkZSA8bWVtb3J5Lmg+CnwgIyBlbmRpZgp8ICMgaW5jbHVkZSA8c3RyaW5n Lmg+CnwgI2VuZGlmCnwgI2lmIEhBVkVfU1RSSU5HU19ICnwgIyBpbmNsdWRlIDxzdHJpbmdzLmg+ CnwgI2VuZGlmCnwgI2lmIEhBVkVfSU5UVFlQRVNfSAp8ICMgaW5jbHVkZSA8aW50dHlwZXMuaD4K fCAjZWxzZQp8ICMgaWYgSEFWRV9TVERJTlRfSAp8ICMgIGluY2x1ZGUgPHN0ZGludC5oPgp8ICMg ZW5kaWYKfCAjZW5kaWYKfCAjaWYgSEFWRV9VTklTVERfSAp8ICMgaW5jbHVkZSA8dW5pc3RkLmg+ CnwgI2VuZGlmCnwgaW50CnwgbWFpbiAoKQp8IHsKfCBpZiAoKHVjaGFyICopIDApCnwgICByZXR1 cm4gMDsKfCBpZiAoc2l6ZW9mICh1Y2hhcikpCnwgICByZXR1cm4gMDsKfCAgIDsKfCAgIHJldHVy biAwOwp8IH0KY29uZmlndXJlOjEzNjIwOiByZXN1bHQ6IG5vCmNvbmZpZ3VyZToxMzYzMDogY2hl Y2tpbmcgZm9yIHVpbnQKY29uZmlndXJlOjEzNjU0OiBjYyAtYyAtTzIgLWZuby1zdHJpY3QtYWxp YXNpbmcgLXBpcGUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgY29uZnRlc3QuYyA+JjUKY29uZmlndXJl OjEzNjYwOiAkPyA9IDAKY29uZmlndXJlOjEzNjY0OiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1z IGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MTM2Njc6ICQ/ID0gMApjb25maWd1cmU6MTM2NzA6IHRl c3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6MTM2NzM6ICQ/ID0gMApjb25maWd1cmU6MTM2ODQ6 IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMzY5NDogY2hlY2tpbmcgZm9yIHVpbnQ4X3QKY29uZmln dXJlOjEzNzE4OiBjYyAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgLUkvdXNyL2xv Y2FsL2luY2x1ZGUgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjEzNzI0OiAkPyA9IDAKY29uZmln dXJlOjEzNzI4OiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1 cmU6MTM3MzE6ICQ/ID0gMApjb25maWd1cmU6MTM3MzQ6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25m aWd1cmU6MTM3Mzc6ICQ/ID0gMApjb25maWd1cmU6MTM3NDg6IHJlc3VsdDogeWVzCmNvbmZpZ3Vy ZToxMzc1ODogY2hlY2tpbmcgZm9yIHVpbnQxNl90CmNvbmZpZ3VyZToxMzc4MjogY2MgLWMgLU8y IC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0 LmMgPiY1CmNvbmZpZ3VyZToxMzc4ODogJD8gPSAwCmNvbmZpZ3VyZToxMzc5MjogdGVzdCAteiAK CQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjEzNzk1OiAkPyA9IDAKY29u ZmlndXJlOjEzNzk4OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjEzODAxOiAkPyA9IDAK Y29uZmlndXJlOjEzODEyOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTM4MjI6IGNoZWNraW5nIGZv ciB1aW50MzJfdApjb25maWd1cmU6MTM4NDY6IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1hbGlhc2lu ZyAtcGlwZSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6MTM4 NTI6ICQ/ID0gMApjb25maWd1cmU6MTM4NTY6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29u ZnRlc3QuZXJyCmNvbmZpZ3VyZToxMzg1OTogJD8gPSAwCmNvbmZpZ3VyZToxMzg2MjogdGVzdCAt cyBjb25mdGVzdC5vCmNvbmZpZ3VyZToxMzg2NTogJD8gPSAwCmNvbmZpZ3VyZToxMzg3NjogcmVz dWx0OiB5ZXMKY29uZmlndXJlOjEzODk0OiBjaGVja2luZyBmb3Igc3RkbGliLmgKY29uZmlndXJl OjEzODk5OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTQwMzk6IGNoZWNraW5nIGZvciBHTlUgbGli YyBjb21wYXRpYmxlIG1hbGxvYwpjb25maWd1cmU6MTQwNjg6IGNjIC1vIGNvbmZ0ZXN0IC1PMiAt Zm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAgLXJwYXRoPS91 c3IvbGliOi91c3IvbG9jYWwvbGliIGNvbmZ0ZXN0LmMgID4mNQpjb25maWd1cmU6MTQwNzE6ICQ/ ID0gMApjb25maWd1cmU6MTQwNzM6IC4vY29uZnRlc3QKY29uZmlndXJlOjE0MDc2OiAkPyA9IDAK Y29uZmlndXJlOjE0MDkwOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTQxMjA6IGNoZWNraW5nIHJl dHVybiB0eXBlIG9mIHNpZ25hbCBoYW5kbGVycwpjb25maWd1cmU6MTQxNTE6IGNjIC1jIC1PMiAt Zm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5j ID4mNQpjb25maWd1cmU6MTQxNTc6ICQ/ID0gMApjb25maWd1cmU6MTQxNjE6IHRlc3QgLXogCgkJ CSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToxNDE2NDogJD8gPSAwCmNvbmZp Z3VyZToxNDE2NzogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3VyZToxNDE3MDogJD8gPSAwCmNv bmZpZ3VyZToxNDE4MTogcmVzdWx0OiB2b2lkCmNvbmZpZ3VyZToxNDE5MTogY2hlY2tpbmcgZm9y IHdvcmtpbmcgYWxsb2NhLmgKY29uZmlndXJlOjE0MjQzOiByZXN1bHQ6IG5vCmNvbmZpZ3VyZTox NDI1MzogY2hlY2tpbmcgZm9yIGFsbG9jYQpjb25maWd1cmU6MTQzMjU6IHJlc3VsdDogeWVzCmNv bmZpZ3VyZToxNDU1MzogY2hlY2tpbmcgZm9yIHN0ZGxpYi5oCmNvbmZpZ3VyZToxNDU1ODogcmVz dWx0OiB5ZXMKY29uZmlndXJlOjE0Njk4OiBjaGVja2luZyBmb3IgR05VIGxpYmMgY29tcGF0aWJs ZSByZWFsbG9jCmNvbmZpZ3VyZToxNDcyNzogY2MgLW8gY29uZnRlc3QgLU8yIC1mbm8tc3RyaWN0 LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9pbmNsdWRlICAtcnBhdGg9L3Vzci9saWI6L3Vz ci9sb2NhbC9saWIgY29uZnRlc3QuYyAgPiY1CmNvbmZpZ3VyZToxNDczMDogJD8gPSAwCmNvbmZp Z3VyZToxNDczMjogLi9jb25mdGVzdApjb25maWd1cmU6MTQ3MzU6ICQ/ID0gMApjb25maWd1cmU6 MTQ3NDk6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxNDc4ODogY2hlY2tpbmcgZm9yIG1lbXNldApj b25maWd1cmU6MTQ4NDU6IGNjIC1vIGNvbmZ0ZXN0IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAt cGlwZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAgLXJwYXRoPS91c3IvbGliOi91c3IvbG9jYWwvbGli IGNvbmZ0ZXN0LmMgID4mNQpjb25mdGVzdC5jOjExOTogd2FybmluZzogY29uZmxpY3RpbmcgdHlw ZXMgZm9yIGJ1aWx0LWluIGZ1bmN0aW9uICdtZW1zZXQnCmNvbmZpZ3VyZToxNDg1MTogJD8gPSAw CmNvbmZpZ3VyZToxNDg1NTogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIK Y29uZmlndXJlOjE0ODU4OiAkPyA9IDAKY29uZmlndXJlOjE0ODYxOiB0ZXN0IC1zIGNvbmZ0ZXN0 CmNvbmZpZ3VyZToxNDg2NDogJD8gPSAwCmNvbmZpZ3VyZToxNDg3NjogcmVzdWx0OiB5ZXMKY29u ZmlndXJlOjE0Nzg4OiBjaGVja2luZyBmb3IgZ2V0cHd1aWQKY29uZmlndXJlOjE0ODQ1OiBjYyAt byBjb25mdGVzdCAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgLUkvdXNyL2xvY2FsL2lu Y2x1ZGUgIC1ycGF0aD0vdXNyL2xpYjovdXNyL2xvY2FsL2xpYiBjb25mdGVzdC5jICA+JjUKY29u ZmlndXJlOjE0ODUxOiAkPyA9IDAKY29uZmlndXJlOjE0ODU1OiB0ZXN0IC16IAoJCQkgfHwgdGVz dCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MTQ4NTg6ICQ/ID0gMApjb25maWd1cmU6MTQ4 NjE6IHRlc3QgLXMgY29uZnRlc3QKY29uZmlndXJlOjE0ODY0OiAkPyA9IDAKY29uZmlndXJlOjE0 ODc2OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTQ3ODg6IGNoZWNraW5nIGZvciBzaHV0ZG93bgpj b25maWd1cmU6MTQ4NDU6IGNjIC1vIGNvbmZ0ZXN0IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAt cGlwZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAgLXJwYXRoPS91c3IvbGliOi91c3IvbG9jYWwvbGli IGNvbmZ0ZXN0LmMgID4mNQpjb25maWd1cmU6MTQ4NTE6ICQ/ID0gMApjb25maWd1cmU6MTQ4NTU6 IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToxNDg1ODog JD8gPSAwCmNvbmZpZ3VyZToxNDg2MTogdGVzdCAtcyBjb25mdGVzdApjb25maWd1cmU6MTQ4NjQ6 ICQ/ID0gMApjb25maWd1cmU6MTQ4NzY6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxNDc4ODogY2hl Y2tpbmcgZm9yIGluZXRfbnRvcApjb25maWd1cmU6MTQ4NDU6IGNjIC1vIGNvbmZ0ZXN0IC1PMiAt Zm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAgLXJwYXRoPS91 c3IvbGliOi91c3IvbG9jYWwvbGliIGNvbmZ0ZXN0LmMgID4mNQpjb25maWd1cmU6MTQ4NTE6ICQ/ ID0gMApjb25maWd1cmU6MTQ4NTU6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3Qu ZXJyCmNvbmZpZ3VyZToxNDg1ODogJD8gPSAwCmNvbmZpZ3VyZToxNDg2MTogdGVzdCAtcyBjb25m dGVzdApjb25maWd1cmU6MTQ4NjQ6ICQ/ID0gMApjb25maWd1cmU6MTQ4NzY6IHJlc3VsdDogeWVz CmNvbmZpZ3VyZToxNDc4ODogY2hlY2tpbmcgZm9yIGluZXRfcHRvbgpjb25maWd1cmU6MTQ4NDU6 IGNjIC1vIGNvbmZ0ZXN0IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAtSS91c3IvbG9j YWwvaW5jbHVkZSAgLXJwYXRoPS91c3IvbGliOi91c3IvbG9jYWwvbGliIGNvbmZ0ZXN0LmMgID4m NQpjb25maWd1cmU6MTQ4NTE6ICQ/ID0gMApjb25maWd1cmU6MTQ4NTU6IHRlc3QgLXogCgkJCSB8 fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToxNDg1ODogJD8gPSAwCmNvbmZpZ3Vy ZToxNDg2MTogdGVzdCAtcyBjb25mdGVzdApjb25maWd1cmU6MTQ4NjQ6ICQ/ID0gMApjb25maWd1 cmU6MTQ4NzY6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxNDc4ODogY2hlY2tpbmcgZm9yIHN0cnNl cApjb25maWd1cmU6MTQ4NDU6IGNjIC1vIGNvbmZ0ZXN0IC1PMiAtZm5vLXN0cmljdC1hbGlhc2lu ZyAtcGlwZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAgLXJwYXRoPS91c3IvbGliOi91c3IvbG9jYWwv bGliIGNvbmZ0ZXN0LmMgID4mNQpjb25maWd1cmU6MTQ4NTE6ICQ/ID0gMApjb25maWd1cmU6MTQ4 NTU6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToxNDg1 ODogJD8gPSAwCmNvbmZpZ3VyZToxNDg2MTogdGVzdCAtcyBjb25mdGVzdApjb25maWd1cmU6MTQ4 NjQ6ICQ/ID0gMApjb25maWd1cmU6MTQ4NzY6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxNDg4Nzog Y2hlY2tpbmcgZm9yIHNvY2tldCBpbiAtbHNvY2tldApjb25maWd1cmU6MTQ5MTc6IGNjIC1vIGNv bmZ0ZXN0IC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAtSS91c3IvbG9jYWwvaW5jbHVk ZSAgLXJwYXRoPS91c3IvbGliOi91c3IvbG9jYWwvbGliIGNvbmZ0ZXN0LmMgLWxzb2NrZXQgICA+ JjUKL3Vzci9iaW4vbGQ6IGNhbm5vdCBmaW5kIC1sc29ja2V0CmNvbmZpZ3VyZToxNDkyMzogJD8g PSAxCmNvbmZpZ3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOgp8IC8qIGNvbmZkZWZzLmguICAqLwp8 IAp8ICNkZWZpbmUgUEFDS0FHRV9OQU1FICJteWRucyIKfCAjZGVmaW5lIFBBQ0tBR0VfVEFSTkFN RSAibXlkbnMiCnwgI2RlZmluZSBQQUNLQUdFX1ZFUlNJT04gIjEuMS4wIgp8ICNkZWZpbmUgUEFD S0FHRV9TVFJJTkcgIm15ZG5zIDEuMS4wIgp8ICNkZWZpbmUgUEFDS0FHRV9CVUdSRVBPUlQgImJi b3lAYmJveS5uZXQiCnwgI2RlZmluZSBQQUNLQUdFICJteWRucyIKfCAjZGVmaW5lIFZFUlNJT04g IjEuMS4wIgp8ICNkZWZpbmUgU1REQ19IRUFERVJTIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1RZUEVT X0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfU1RBVF9IIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0gg MQp8ICNkZWZpbmUgSEFWRV9TVFJJTkdfSCAxCnwgI2RlZmluZSBIQVZFX01FTU9SWV9IIDEKfCAj ZGVmaW5lIEhBVkVfU1RSSU5HU19IIDEKfCAjZGVmaW5lIEhBVkVfSU5UVFlQRVNfSCAxCnwgI2Rl ZmluZSBIQVZFX1NURElOVF9IIDEKfCAjZGVmaW5lIEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUg SEFWRV9ETEZDTl9IIDEKfCAjZGVmaW5lIEhBVkVfQUxMT0NBIDEKfCAjZGVmaW5lIEhBVkVfU1RE TElCX0ggMQp8ICNkZWZpbmUgSEFWRV9VTklTVERfSCAxCnwgI2RlZmluZSBIQVZFX0dFVFBBR0VT SVpFIDEKfCAjZGVmaW5lIEhBVkVfTU1BUCAxCnwgI2RlZmluZSBJTlRESVYwX1JBSVNFU19TSUdG UEUgMQp8ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IX1dJVEhfVUlOVE1BWCAxCnwgI2RlZmluZSBI QVZFX1NURElOVF9IX1dJVEhfVUlOVE1BWCAxCnwgI2RlZmluZSBIQVZFX1VOU0lHTkVEX0xPTkdf TE9ORyAxCnwgI2RlZmluZSBIQVZFX0lOVFRZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9MSU1JVFNf SCAxCnwgI2RlZmluZSBIQVZFX0xPQ0FMRV9IIDEKfCAjZGVmaW5lIEhBVkVfTkxfVFlQRVNfSCAx CnwgI2RlZmluZSBIQVZFX1NURERFRl9IIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0ggMQp8ICNk ZWZpbmUgSEFWRV9TVFJJTkdfSCAxCnwgI2RlZmluZSBIQVZFX1VOSVNURF9IIDEKfCAjZGVmaW5l IEhBVkVfU1lTX1BBUkFNX0ggMQp8ICNkZWZpbmUgSEFWRV9GRU9GX1VOTE9DS0VEIDEKfCAjZGVm aW5lIEhBVkVfR0VUQ19VTkxPQ0tFRCAxCnwgI2RlZmluZSBIQVZFX0dFVENXRCAxCnwgI2RlZmlu ZSBIQVZFX0dFVEVHSUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRFVUlEIDEKfCAjZGVmaW5lIEhBVkVf R0VUR0lEIDEKfCAjZGVmaW5lIEhBVkVfR0VUVUlEIDEKfCAjZGVmaW5lIEhBVkVfTVVOTUFQIDEK fCAjZGVmaW5lIEhBVkVfUFVURU5WIDEKfCAjZGVmaW5lIEhBVkVfU0VURU5WIDEKfCAjZGVmaW5l IEhBVkVfU0VUTE9DQUxFIDEKfCAjZGVmaW5lIEhBVkVfU1RQQ1BZIDEKfCAjZGVmaW5lIEhBVkVf U1RSQ0FTRUNNUCAxCnwgI2RlZmluZSBIQVZFX1NUUkRVUCAxCnwgI2RlZmluZSBIQVZFX1NUUlRP VUwgMQp8ICNkZWZpbmUgSEFWRV9UU0VBUkNIIDEKfCAjZGVmaW5lIEhBVkVfSUNPTlYgMQp8ICNk ZWZpbmUgSUNPTlZfQ09OU1QgY29uc3QKfCAjZGVmaW5lIEhBVkVfTEFOR0lORk9fQ09ERVNFVCAx CnwgI2RlZmluZSBIQVZFX0xDX01FU1NBR0VTIDEKfCAjZGVmaW5lIEVOQUJMRV9OTFMgMQp8ICNk ZWZpbmUgSEFWRV9HRVRURVhUIDEKfCAjZGVmaW5lIEhBVkVfRENHRVRURVhUIDEKfCAjZGVmaW5l IFNURENfSEVBREVSUyAxCnwgI2RlZmluZSBIQVZFX0ZDTlRMX0ggMQp8ICNkZWZpbmUgSEFWRV9H RVRPUFRfSCAxCnwgI2RlZmluZSBIQVZFX0xJQklOVExfSCAxCnwgI2RlZmluZSBIQVZFX05FVERC X0ggMQp8ICNkZWZpbmUgSEFWRV9QV0RfSCAxCnwgI2RlZmluZSBIQVZFX1NJR05BTF9IIDEKfCAj ZGVmaW5lIEhBVkVfU1REQVJHX0ggMQp8ICNkZWZpbmUgSEFWRV9URVJNSU9TX0ggMQp8ICNkZWZp bmUgSEFWRV9USU1FX0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfRkNOVExfSCAxCnwgI2RlZmluZSBI QVZFX1NZU19GSUxFX0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfSU9DVExfSCAxCnwgI2RlZmluZSBI QVZFX1NZU19SRVNPVVJDRV9IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1NPQ0tFVF9IIDEKfCAjZGVm aW5lIEhBVkVfU1lTX1NPQ0tJT19IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1RJTUVfSCAxCnwgI2Rl ZmluZSBIQVZFX1NZU19XQUlUX0ggMQp8ICNkZWZpbmUgSEFWRV9ORVRJTkVUX0lOX0ggMQp8ICNk ZWZpbmUgSEFWRV9ORVRfSUZfSCAxCnwgI2RlZmluZSBIQVZFX0FSUEFfSU5FVF9IIDEKfCAjZGVm aW5lIEhBVkVfSU5UVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX1VJTlQgMQp8ICNkZWZpbmUgSEFW RV9VSU5UOF9UIDEKfCAjZGVmaW5lIEhBVkVfVUlOVDE2X1QgMQp8ICNkZWZpbmUgSEFWRV9VSU5U MzJfVCAxCnwgI2RlZmluZSBIQVZFX1NURExJQl9IIDEKfCAjZGVmaW5lIEhBVkVfTUFMTE9DIDEK fCAjZGVmaW5lIFJFVFNJR1RZUEUgdm9pZAp8ICNkZWZpbmUgSEFWRV9BTExPQ0EgMQp8ICNkZWZp bmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1JFQUxMT0MgMQp8ICNkZWZpbmUgSEFW RV9NRU1TRVQgMQp8ICNkZWZpbmUgSEFWRV9HRVRQV1VJRCAxCnwgI2RlZmluZSBIQVZFX1NIVVRE T1dOIDEKfCAjZGVmaW5lIEhBVkVfSU5FVF9OVE9QIDEKfCAjZGVmaW5lIEhBVkVfSU5FVF9QVE9O IDEKfCAjZGVmaW5lIEhBVkVfU1RSU0VQIDEKfCAvKiBlbmQgY29uZmRlZnMuaC4gICovCnwgCnwg LyogT3ZlcnJpZGUgYW55IGdjYzIgaW50ZXJuYWwgcHJvdG90eXBlIHRvIGF2b2lkIGFuIGVycm9y LiAgKi8KfCAjaWZkZWYgX19jcGx1c3BsdXMKfCBleHRlcm4gIkMiCnwgI2VuZGlmCnwgLyogV2Ug dXNlIGNoYXIgYmVjYXVzZSBpbnQgbWlnaHQgbWF0Y2ggdGhlIHJldHVybiB0eXBlIG9mIGEgZ2Nj Mgp8ICAgIGJ1aWx0aW4gYW5kIHRoZW4gaXRzIGFyZ3VtZW50IHByb3RvdHlwZSB3b3VsZCBzdGls bCBhcHBseS4gICovCnwgY2hhciBzb2NrZXQgKCk7CnwgaW50CnwgbWFpbiAoKQp8IHsKfCBzb2Nr ZXQgKCk7CnwgICA7CnwgICByZXR1cm4gMDsKfCB9CmNvbmZpZ3VyZToxNDk0OTogcmVzdWx0OiBu bwpjb25maWd1cmU6MTQ5NjI6IGNoZWNraW5nIGZvciBpbmV0X2FkZHIgaW4gLWxuc2wKY29uZmln dXJlOjE0OTkyOiBjYyAtbyBjb25mdGVzdCAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUg LUkvdXNyL2xvY2FsL2luY2x1ZGUgIC1ycGF0aD0vdXNyL2xpYjovdXNyL2xvY2FsL2xpYiBjb25m dGVzdC5jIC1sbnNsICAgPiY1Ci91c3IvYmluL2xkOiBjYW5ub3QgZmluZCAtbG5zbApjb25maWd1 cmU6MTQ5OTg6ICQ/ID0gMQpjb25maWd1cmU6IGZhaWxlZCBwcm9ncmFtIHdhczoKfCAvKiBjb25m ZGVmcy5oLiAgKi8KfCAKfCAjZGVmaW5lIFBBQ0tBR0VfTkFNRSAibXlkbnMiCnwgI2RlZmluZSBQ QUNLQUdFX1RBUk5BTUUgIm15ZG5zIgp8ICNkZWZpbmUgUEFDS0FHRV9WRVJTSU9OICIxLjEuMCIK fCAjZGVmaW5lIFBBQ0tBR0VfU1RSSU5HICJteWRucyAxLjEuMCIKfCAjZGVmaW5lIFBBQ0tBR0Vf QlVHUkVQT1JUICJiYm95QGJib3kubmV0Igp8ICNkZWZpbmUgUEFDS0FHRSAibXlkbnMiCnwgI2Rl ZmluZSBWRVJTSU9OICIxLjEuMCIKfCAjZGVmaW5lIFNURENfSEVBREVSUyAxCnwgI2RlZmluZSBI QVZFX1NZU19UWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1NUQVRfSCAxCnwgI2RlZmluZSBI QVZFX1NURExJQl9IIDEKfCAjZGVmaW5lIEhBVkVfU1RSSU5HX0ggMQp8ICNkZWZpbmUgSEFWRV9N RU1PUllfSCAxCnwgI2RlZmluZSBIQVZFX1NUUklOR1NfSCAxCnwgI2RlZmluZSBIQVZFX0lOVFRZ UEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERJTlRfSCAxCnwgI2RlZmluZSBIQVZFX1VOSVNURF9I IDEKfCAjZGVmaW5lIEhBVkVfRExGQ05fSCAxCnwgI2RlZmluZSBIQVZFX0FMTE9DQSAxCnwgI2Rl ZmluZSBIQVZFX1NURExJQl9IIDEKfCAjZGVmaW5lIEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUg SEFWRV9HRVRQQUdFU0laRSAxCnwgI2RlZmluZSBIQVZFX01NQVAgMQp8ICNkZWZpbmUgSU5URElW MF9SQUlTRVNfU0lHRlBFIDEKfCAjZGVmaW5lIEhBVkVfSU5UVFlQRVNfSF9XSVRIX1VJTlRNQVgg MQp8ICNkZWZpbmUgSEFWRV9TVERJTlRfSF9XSVRIX1VJTlRNQVggMQp8ICNkZWZpbmUgSEFWRV9V TlNJR05FRF9MT05HX0xPTkcgMQp8ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IIDEKfCAjZGVmaW5l IEhBVkVfTElNSVRTX0ggMQp8ICNkZWZpbmUgSEFWRV9MT0NBTEVfSCAxCnwgI2RlZmluZSBIQVZF X05MX1RZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERERUZfSCAxCnwgI2RlZmluZSBIQVZFX1NU RExJQl9IIDEKfCAjZGVmaW5lIEhBVkVfU1RSSU5HX0ggMQp8ICNkZWZpbmUgSEFWRV9VTklTVERf SCAxCnwgI2RlZmluZSBIQVZFX1NZU19QQVJBTV9IIDEKfCAjZGVmaW5lIEhBVkVfRkVPRl9VTkxP Q0tFRCAxCnwgI2RlZmluZSBIQVZFX0dFVENfVU5MT0NLRUQgMQp8ICNkZWZpbmUgSEFWRV9HRVRD V0QgMQp8ICNkZWZpbmUgSEFWRV9HRVRFR0lEIDEKfCAjZGVmaW5lIEhBVkVfR0VURVVJRCAxCnwg I2RlZmluZSBIQVZFX0dFVEdJRCAxCnwgI2RlZmluZSBIQVZFX0dFVFVJRCAxCnwgI2RlZmluZSBI QVZFX01VTk1BUCAxCnwgI2RlZmluZSBIQVZFX1BVVEVOViAxCnwgI2RlZmluZSBIQVZFX1NFVEVO ViAxCnwgI2RlZmluZSBIQVZFX1NFVExPQ0FMRSAxCnwgI2RlZmluZSBIQVZFX1NUUENQWSAxCnwg I2RlZmluZSBIQVZFX1NUUkNBU0VDTVAgMQp8ICNkZWZpbmUgSEFWRV9TVFJEVVAgMQp8ICNkZWZp bmUgSEFWRV9TVFJUT1VMIDEKfCAjZGVmaW5lIEhBVkVfVFNFQVJDSCAxCnwgI2RlZmluZSBIQVZF X0lDT05WIDEKfCAjZGVmaW5lIElDT05WX0NPTlNUIGNvbnN0CnwgI2RlZmluZSBIQVZFX0xBTkdJ TkZPX0NPREVTRVQgMQp8ICNkZWZpbmUgSEFWRV9MQ19NRVNTQUdFUyAxCnwgI2RlZmluZSBFTkFC TEVfTkxTIDEKfCAjZGVmaW5lIEhBVkVfR0VUVEVYVCAxCnwgI2RlZmluZSBIQVZFX0RDR0VUVEVY VCAxCnwgI2RlZmluZSBTVERDX0hFQURFUlMgMQp8ICNkZWZpbmUgSEFWRV9GQ05UTF9IIDEKfCAj ZGVmaW5lIEhBVkVfR0VUT1BUX0ggMQp8ICNkZWZpbmUgSEFWRV9MSUJJTlRMX0ggMQp8ICNkZWZp bmUgSEFWRV9ORVREQl9IIDEKfCAjZGVmaW5lIEhBVkVfUFdEX0ggMQp8ICNkZWZpbmUgSEFWRV9T SUdOQUxfSCAxCnwgI2RlZmluZSBIQVZFX1NUREFSR19IIDEKfCAjZGVmaW5lIEhBVkVfVEVSTUlP U19IIDEKfCAjZGVmaW5lIEhBVkVfVElNRV9IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX0ZDTlRMX0gg MQp8ICNkZWZpbmUgSEFWRV9TWVNfRklMRV9IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX0lPQ1RMX0gg MQp8ICNkZWZpbmUgSEFWRV9TWVNfUkVTT1VSQ0VfSCAxCnwgI2RlZmluZSBIQVZFX1NZU19TT0NL RVRfSCAxCnwgI2RlZmluZSBIQVZFX1NZU19TT0NLSU9fSCAxCnwgI2RlZmluZSBIQVZFX1NZU19U SU1FX0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfV0FJVF9IIDEKfCAjZGVmaW5lIEhBVkVfTkVUSU5F VF9JTl9IIDEKfCAjZGVmaW5lIEhBVkVfTkVUX0lGX0ggMQp8ICNkZWZpbmUgSEFWRV9BUlBBX0lO RVRfSCAxCnwgI2RlZmluZSBIQVZFX0lOVFRZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9VSU5UIDEK fCAjZGVmaW5lIEhBVkVfVUlOVDhfVCAxCnwgI2RlZmluZSBIQVZFX1VJTlQxNl9UIDEKfCAjZGVm aW5lIEhBVkVfVUlOVDMyX1QgMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBI QVZFX01BTExPQyAxCnwgI2RlZmluZSBSRVRTSUdUWVBFIHZvaWQKfCAjZGVmaW5lIEhBVkVfQUxM T0NBIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0ggMQp8ICNkZWZpbmUgSEFWRV9SRUFMTE9DIDEK fCAjZGVmaW5lIEhBVkVfTUVNU0VUIDEKfCAjZGVmaW5lIEhBVkVfR0VUUFdVSUQgMQp8ICNkZWZp bmUgSEFWRV9TSFVURE9XTiAxCnwgI2RlZmluZSBIQVZFX0lORVRfTlRPUCAxCnwgI2RlZmluZSBI QVZFX0lORVRfUFRPTiAxCnwgI2RlZmluZSBIQVZFX1NUUlNFUCAxCnwgLyogZW5kIGNvbmZkZWZz LmguICAqLwp8IAp8IC8qIE92ZXJyaWRlIGFueSBnY2MyIGludGVybmFsIHByb3RvdHlwZSB0byBh dm9pZCBhbiBlcnJvci4gICovCnwgI2lmZGVmIF9fY3BsdXNwbHVzCnwgZXh0ZXJuICJDIgp8ICNl bmRpZgp8IC8qIFdlIHVzZSBjaGFyIGJlY2F1c2UgaW50IG1pZ2h0IG1hdGNoIHRoZSByZXR1cm4g dHlwZSBvZiBhIGdjYzIKfCAgICBidWlsdGluIGFuZCB0aGVuIGl0cyBhcmd1bWVudCBwcm90b3R5 cGUgd291bGQgc3RpbGwgYXBwbHkuICAqLwp8IGNoYXIgaW5ldF9hZGRyICgpOwp8IGludAp8IG1h aW4gKCkKfCB7CnwgaW5ldF9hZGRyICgpOwp8ICAgOwp8ICAgcmV0dXJuIDA7CnwgfQpjb25maWd1 cmU6MTUwMjQ6IHJlc3VsdDogbm8KY29uZmlndXJlOjE1MDM3OiBjaGVja2luZyBmb3IgZmxvb3Ig aW4gLWxtCmNvbmZpZ3VyZToxNTA2NzogY2MgLW8gY29uZnRlc3QgLU8yIC1mbm8tc3RyaWN0LWFs aWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9pbmNsdWRlICAtcnBhdGg9L3Vzci9saWI6L3Vzci9s b2NhbC9saWIgY29uZnRlc3QuYyAtbG0gICA+JjUKY29uZnRlc3QuYzoxMDg6IHdhcm5pbmc6IGNv bmZsaWN0aW5nIHR5cGVzIGZvciBidWlsdC1pbiBmdW5jdGlvbiAnZmxvb3InCmNvbmZpZ3VyZTox NTA3MzogJD8gPSAwCmNvbmZpZ3VyZToxNTA3NzogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBj b25mdGVzdC5lcnIKY29uZmlndXJlOjE1MDgwOiAkPyA9IDAKY29uZmlndXJlOjE1MDgzOiB0ZXN0 IC1zIGNvbmZ0ZXN0CmNvbmZpZ3VyZToxNTA4NjogJD8gPSAwCmNvbmZpZ3VyZToxNTA5OTogcmVz dWx0OiB5ZXMKY29uZmlndXJlOjE1MTEzOiBjaGVja2luZyB3aGV0aGVyIHN0cmNhc2VjbXAgaXMg ZGVjbGFyZWQKY29uZmlndXJlOjE1MTM3OiBjYyAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcg LXBpcGUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjE1MTQz OiAkPyA9IDAKY29uZmlndXJlOjE1MTQ3OiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0 ZXN0LmVycgpjb25maWd1cmU6MTUxNTA6ICQ/ID0gMApjb25maWd1cmU6MTUxNTM6IHRlc3QgLXMg Y29uZnRlc3Qubwpjb25maWd1cmU6MTUxNTY6ICQ/ID0gMApjb25maWd1cmU6MTUxNjc6IHJlc3Vs dDogeWVzCmNvbmZpZ3VyZToxNTE4MzogY2hlY2tpbmcgd2hldGhlciBzdHJjb2xsIGlzIGRlY2xh cmVkCmNvbmZpZ3VyZToxNTIwNzogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBl IC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZToxNTIxMzogJD8g PSAwCmNvbmZpZ3VyZToxNTIxNzogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5l cnIKY29uZmlndXJlOjE1MjIwOiAkPyA9IDAKY29uZmlndXJlOjE1MjIzOiB0ZXN0IC1zIGNvbmZ0 ZXN0Lm8KY29uZmlndXJlOjE1MjI2OiAkPyA9IDAKY29uZmlndXJlOjE1MjM3OiByZXN1bHQ6IHll cwpjb25maWd1cmU6MTUyNTM6IGNoZWNraW5nIHdoZXRoZXIgc3RyZXJyb3IgaXMgZGVjbGFyZWQK Y29uZmlndXJlOjE1Mjc3OiBjYyAtYyAtTzIgLWZuby1zdHJpY3QtYWxpYXNpbmcgLXBpcGUgLUkv dXNyL2xvY2FsL2luY2x1ZGUgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjE1MjgzOiAkPyA9IDAK Y29uZmlndXJlOjE1Mjg3OiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpj b25maWd1cmU6MTUyOTA6ICQ/ID0gMApjb25maWd1cmU6MTUyOTM6IHRlc3QgLXMgY29uZnRlc3Qu bwpjb25maWd1cmU6MTUyOTY6ICQ/ID0gMApjb25maWd1cmU6MTUzMDc6IHJlc3VsdDogeWVzCmNv bmZpZ3VyZToxNTMyMzogY2hlY2tpbmcgd2hldGhlciBzdHJuY2FzZWNtcCBpcyBkZWNsYXJlZApj b25maWd1cmU6MTUzNDc6IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAtSS91 c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6MTUzNTM6ICQ/ID0gMApj b25maWd1cmU6MTUzNTc6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNv bmZpZ3VyZToxNTM2MDogJD8gPSAwCmNvbmZpZ3VyZToxNTM2MzogdGVzdCAtcyBjb25mdGVzdC5v CmNvbmZpZ3VyZToxNTM2NjogJD8gPSAwCmNvbmZpZ3VyZToxNTM3NzogcmVzdWx0OiB5ZXMKY29u ZmlndXJlOjE1MzkzOiBjaGVja2luZyB3aGV0aGVyIHN0cnNlcCBpcyBkZWNsYXJlZApjb25maWd1 cmU6MTU0MTc6IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAtSS91c3IvbG9j YWwvaW5jbHVkZSBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6MTU0MjM6ICQ/ID0gMApjb25maWd1 cmU6MTU0Mjc6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3Vy ZToxNTQzMDogJD8gPSAwCmNvbmZpZ3VyZToxNTQzMzogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZp Z3VyZToxNTQzNjogJD8gPSAwCmNvbmZpZ3VyZToxNTQ0NzogcmVzdWx0OiB5ZXMKY29uZmlndXJl OjE1NDc5OiBjaGVja2luZyB3aGV0aGVyIElQdjYgaXMgc3VwcG9ydGVkCmNvbmZpZ3VyZToxNTQ5 NzogY2MgLWMgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2NhbC9pbmNs dWRlIGNvbmZ0ZXN0LmMgPiY1CmNvbmZ0ZXN0LmM6IEluIGZ1bmN0aW9uICdtYWluJzoKY29uZnRl c3QuYzoxMTA6IHdhcm5pbmc6IGluY29tcGF0aWJsZSBpbXBsaWNpdCBkZWNsYXJhdGlvbiBvZiBi dWlsdC1pbiBmdW5jdGlvbiAnbWVtc2V0Jwpjb25maWd1cmU6MTU1MDM6ICQ/ID0gMApjb25maWd1 cmU6MTU1MDc6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3Vy ZToxNTUxMDogJD8gPSAwCmNvbmZpZ3VyZToxNTUxMzogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZp Z3VyZToxNTUxNjogJD8gPSAwCmNvbmZpZ3VyZToxNTUyMzogcmVzdWx0OiB5ZXMKY29uZmlndXJl OjE1NTM2OiBjaGVja2luZyBmb3Igc2FfbGVuIGluIHN0cnVjdCBzb2NrYWRkcgpjb25maWd1cmU6 MTU1NjI6IGNjIC1jIC1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlwZSAtSS91c3IvbG9jYWwv aW5jbHVkZSBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6MTU1Njg6ICQ/ID0gMApjb25maWd1cmU6 MTU1NzI6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZTox NTU3NTogJD8gPSAwCmNvbmZpZ3VyZToxNTU3ODogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3Vy ZToxNTU4MTogJD8gPSAwCmNvbmZpZ3VyZToxNTU4ODogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjE1 NjQ0OiBjaGVja2luZyB3aGV0aGVyIHRvIGVuYWJsZSBhbGlhcyBwYXRjaApjb25maWd1cmU6MTU2 NjU6IHJlc3VsdDogbm8KY29uZmlndXJlOjE1NjcxOiBjaGVja2luZyB3aGV0aGVyIHRvIHN1cHBv cnQgTXlTUUwKY29uZmlndXJlOjE1OTgyOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTU5OTY6IGNo ZWNraW5nIGZvciAvdXNyL2xvY2FsL2xpYi9teXNxbC9saWJteXNxbGNsaWVudC5hCmNvbmZpZ3Vy ZToxNjAxMTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjE2MDg4OiBjaGVja2luZyBmb3IgL2xpYi9s aWJ6LmEKY29uZmlndXJlOjE2MTAzOiByZXN1bHQ6IG5vCmNvbmZpZ3VyZToxNjA4ODogY2hlY2tp bmcgZm9yIC91c3IvbGliL2xpYnouYQpjb25maWd1cmU6MTYxMDM6IHJlc3VsdDogeWVzCmNvbmZp Z3VyZToxNjExMzogY2hlY2tpbmcgZm9yIGRlZmxhdGUgaW4gLWx6CmNvbmZpZ3VyZToxNjE0Mzog Y2MgLW8gY29uZnRlc3QgLU8yIC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1waXBlIC1JL3Vzci9sb2Nh bC9pbmNsdWRlICAtcnBhdGg9L3Vzci9saWI6L3Vzci9sb2NhbC9saWIgY29uZnRlc3QuYyAtbHog ICA+JjUKY29uZmlndXJlOjE2MTQ5OiAkPyA9IDAKY29uZmlndXJlOjE2MTUzOiB0ZXN0IC16IAoJ CQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MTYxNTY6ICQ/ID0gMApjb25m aWd1cmU6MTYxNTk6IHRlc3QgLXMgY29uZnRlc3QKY29uZmlndXJlOjE2MTYyOiAkPyA9IDAKY29u ZmlndXJlOjE2MTc1OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTYyNDg6IGNoZWNraW5nIGZvciAv dXNyL2xvY2FsL2luY2x1ZGUvbXlzcWwvbXlzcWwuaApjb25maWd1cmU6MTYyNjM6IHJlc3VsdDog eWVzCmNvbmZpZ3VyZToxNjI4MzogY2hlY2tpbmcgd2hldGhlciB0byBzdXBwb3J0IFBvc3RncmVT UUwKY29uZmlndXJlOjE2MjkyOiByZXN1bHQ6IG5vCmNvbmZpZ3VyZToxNjU3MzogY2hlY2tpbmcg d2hldGhlciB0byBjb21waWxlIHdpdGggT3BlblNTTCBzdXBwb3J0CmNvbmZpZ3VyZToxNjU4MTog cmVzdWx0OiB5ZXMKY29uZmlndXJlOjE2NTk4OiBjaGVja2luZyBmb3IgL3Vzci9saWIvbGlic3Ns LmEKY29uZmlndXJlOjE2NjEzOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTY2ODQ6IGNoZWNraW5n IGZvciAvdXNyL2luY2x1ZGUvb3BlbnNzbC9zc2wuaApjb25maWd1cmU6MTY2OTk6IHJlc3VsdDog eWVzCmNvbmZpZ3VyZToxNjc3NDogY2hlY2tpbmcgZm9yIGRlZmF1bHQgY29uZmlnIGZpbGUgbG9j YXRpb24KY29uZmlndXJlOjE2NzkxOiByZXN1bHQ6IC91c3IvbG9jYWwvZXRjL215ZG5zLmNvbmYK Y29uZmlndXJlOjE2Nzk2OiBjaGVja2luZyB3aGV0aGVyIHRvIGJ1aWxkIHN0YXRpYyBiaW5hcnkK Y29uZmlndXJlOjE2ODIxOiByZXN1bHQ6IG5vCmNvbmZpZ3VyZToxNjgyNzogY2hlY2tpbmcgZm9y IE15U1FMIHN1cHBvcnQKY29uZmlndXJlOjE2ODMwOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTY4 Mzk6IGNoZWNraW5nIGZvciBQb3N0Z3JlU1FMIHN1cHBvcnQKY29uZmlndXJlOjE2ODQ2OiByZXN1 bHQ6IG5vCmNvbmZpZ3VyZToxNjg1MTogY2hlY2tpbmcgd2hpY2ggZGF0YWJhc2UgdG8gdXNlCmNv bmZpZ3VyZToxNjg5NjogcmVzdWx0OiBNeVNRTApjb25maWd1cmU6MTY5MTk6CgogICMjIwogICMj IyAgSWYgeW91IGhhdmUgcHJvYmxlbXMgY29tcGlsaW5nIHdpdGggTXlTUUwsIHNwZWNpZmljYWxs eQogICMjIyAgYSAibGlieiIgbGlua2VyIGVycm9yLCBwbGVhc2UgcmVhZCBSRUFETUUubXlzcWwg Zm9yCiAgIyMjICBtb3JlIGluZm9ybWF0aW9uLgogICMjIwoKY29uZmlndXJlOjE2OTQzOiBjaGVj a2luZyB3aGV0aGVyIHRvIGVuYWJsZSBwcm9maWxpbmcKY29uZmlndXJlOjE3MDkxOiByZXN1bHQ6 IG5vCmNvbmZpZ3VyZToxNzA5OTogY2hlY2tpbmcgd2hldGhlciB0byBlbmFibGUgZGVidWdnaW5n CmNvbmZpZ3VyZToxNzYxMzogcmVzdWx0OiBubwpjb25maWd1cmU6MTc2MTk6IGNoZWNraW5nIHdo ZXRoZXIgY2MgYWNjZXB0cyAtZm9taXQtZnJhbWUtcG9pbnRlcgpjb25maWd1cmU6MTc2Mzc6IGNj IC1jIC1mb21pdC1mcmFtZS1wb2ludGVyIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMg PiY1CmNvbmZpZ3VyZToxNzY0MzogJD8gPSAwCmNvbmZpZ3VyZToxNzY0NzogdGVzdCAteiAKCQkJ IHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjE3NjUwOiAkPyA9IDAKY29uZmln dXJlOjE3NjUzOiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjE3NjU2OiAkPyA9IDAKY29u ZmlndXJlOjE3NjY3OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTc2ODA6IGNoZWNraW5nIHdoZXRo ZXIgY2MgYWNjZXB0cyAtZmlubGluZS1mdW5jdGlvbnMKY29uZmlndXJlOjE3Njk4OiBjYyAtYyAt ZmlubGluZS1mdW5jdGlvbnMgLUkvdXNyL2xvY2FsL2luY2x1ZGUgY29uZnRlc3QuYyA+JjUKY29u ZmlndXJlOjE3NzA0OiAkPyA9IDAKY29uZmlndXJlOjE3NzA4OiB0ZXN0IC16IAoJCQkgfHwgdGVz dCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MTc3MTE6ICQ/ID0gMApjb25maWd1cmU6MTc3 MTQ6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6MTc3MTc6ICQ/ID0gMApjb25maWd1cmU6 MTc3Mjg6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxNzc0MTogY2hlY2tpbmcgd2hldGhlciBjYyBh Y2NlcHRzIC1mZmFzdC1tYXRoCmNvbmZpZ3VyZToxNzc1OTogY2MgLWMgLWZmYXN0LW1hdGggLUkv dXNyL2xvY2FsL2luY2x1ZGUgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjE3NzY1OiAkPyA9IDAK Y29uZmlndXJlOjE3NzY5OiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpj b25maWd1cmU6MTc3NzI6ICQ/ID0gMApjb25maWd1cmU6MTc3NzU6IHRlc3QgLXMgY29uZnRlc3Qu bwpjb25maWd1cmU6MTc3Nzg6ICQ/ID0gMApjb25maWd1cmU6MTc3ODk6IHJlc3VsdDogeWVzCmNv bmZpZ3VyZToxNzgwNzogY2hlY2tpbmcgd2hldGhlciBjYyBhY2NlcHRzIC1mdW5zaWduZWQtY2hh cgpjb25maWd1cmU6MTc4MjU6IGNjIC1jIC1mdW5zaWduZWQtY2hhciAtSS91c3IvbG9jYWwvaW5j bHVkZSBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6MTc4MzE6ICQ/ID0gMApjb25maWd1cmU6MTc4 MzU6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZToxNzgz ODogJD8gPSAwCmNvbmZpZ3VyZToxNzg0MTogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3VyZTox Nzg0NDogJD8gPSAwCmNvbmZpZ3VyZToxNzg1NTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjE3ODY2 OiBjaGVja2luZyBDRkxBR1MKY29uZmlndXJlOjE3ODY4OiByZXN1bHQ6IC1PMiAtZm5vLXN0cmlj dC1hbGlhc2luZyAtcGlwZSAtZm9taXQtZnJhbWUtcG9pbnRlciAtZmlubGluZS1mdW5jdGlvbnMg LWZmYXN0LW1hdGggLWZ1bnNpZ25lZC1jaGFyCmNvbmZpZ3VyZToxNzg3MzogY2hlY2tpbmcgd2hl dGhlciB0byBjb21waWxlIHdpdGggVmFsZ3JpbmQtZnJpZW5kbHkgZmxhZ3MKY29uZmlndXJlOjE4 MDc0OiByZXN1bHQ6IG5vCmNvbmZpZ3VyZToxODA4MjogY2hlY2tpbmcgd2hldGhlciB0byBjb21w aWxlIHdpdGggc3RyaWN0IHdhcm5pbmcgZmxhZ3MKY29uZmlndXJlOjE4OTU4OiByZXN1bHQ6IG5v CmNvbmZpZ3VyZToxODk2NjogY2hlY2tpbmcgd2hldGhlciB0byBlbmFibGUgYWx0ZXJuYXRlIGNv bHVtbiBuYW1lcwpjb25maWd1cmU6MTg5ODc6IHJlc3VsdDogbm8KY29uZmlndXJlOjE4OTkzOiBj aGVja2luZyB3aGV0aGVyIHRvIGVuYWJsZSByZW1vdGUgc2VydmVyIHN0YXR1cwpjb25maWd1cmU6 MTkwMTQ6IHJlc3VsdDogbm8KY29uZmlndXJlOjE5MDIwOiBjaGVja2luZyB3aGV0aGVyIHRvIGRp c2FibGUgZGF0ZS90aW1lIGluIHZlcmJvc2Ugb3V0cHV0CmNvbmZpZ3VyZToxOTA0NzogcmVzdWx0 OiBubwpjb25maWd1cmU6MTkyMDM6IGNyZWF0aW5nIC4vY29uZmlnLnN0YXR1cwoKIyMgLS0tLS0t LS0tLS0tLS0tLS0tLS0tLSAjIwojIyBSdW5uaW5nIGNvbmZpZy5zdGF0dXMuICMjCiMjIC0tLS0t LS0tLS0tLS0tLS0tLS0tLS0gIyMKClRoaXMgZmlsZSB3YXMgZXh0ZW5kZWQgYnkgbXlkbnMgY29u ZmlnLnN0YXR1cyAxLjEuMCwgd2hpY2ggd2FzCmdlbmVyYXRlZCBieSBHTlUgQXV0b2NvbmYgMi41 OS4gIEludm9jYXRpb24gY29tbWFuZCBsaW5lIHdhcwoKICBDT05GSUdfRklMRVMgICAgPSAKICBD T05GSUdfSEVBREVSUyAgPSAKICBDT05GSUdfTElOS1MgICAgPSAKICBDT05GSUdfQ09NTUFORFMg PSAKICAkIC4vY29uZmlnLnN0YXR1cyAKCm9uIGRlbHRhLnNvbWVkb21haW4KCmNvbmZpZy5zdGF0 dXM6Nzc2OiBjcmVhdGluZyBjb250cmliL01ha2VmaWxlCmNvbmZpZy5zdGF0dXM6Nzc2OiBjcmVh dGluZyBpbnRsL01ha2VmaWxlCmNvbmZpZy5zdGF0dXM6Nzc2OiBjcmVhdGluZyBwby9NYWtlZmls ZS5pbgpjb25maWcuc3RhdHVzOjc3NjogY3JlYXRpbmcgbTQvTWFrZWZpbGUKY29uZmlnLnN0YXR1 czo3NzY6IGNyZWF0aW5nIE1ha2VmaWxlCmNvbmZpZy5zdGF0dXM6Nzc2OiBjcmVhdGluZyBsaWIv TWFrZWZpbGUKY29uZmlnLnN0YXR1czo3NzY6IGNyZWF0aW5nIHNyYy9NYWtlZmlsZQpjb25maWcu c3RhdHVzOjc3NjogY3JlYXRpbmcgc3JjL2xpYi9NYWtlZmlsZQpjb25maWcuc3RhdHVzOjc3Njog Y3JlYXRpbmcgc3JjL215ZG5zL01ha2VmaWxlCmNvbmZpZy5zdGF0dXM6Nzc2OiBjcmVhdGluZyBz cmMvdXRpbC9NYWtlZmlsZQpjb25maWcuc3RhdHVzOjc3NjogY3JlYXRpbmcgcGtnL01ha2VmaWxl CmNvbmZpZy5zdGF0dXM6Nzc2OiBjcmVhdGluZyBkb2MvTWFrZWZpbGUKY29uZmlnLnN0YXR1czo4 ODA6IGNyZWF0aW5nIGNvbmZpZy5oCmNvbmZpZy5zdGF0dXM6MTM5NDogZXhlY3V0aW5nIGRlcGZp bGVzIGNvbW1hbmRzCmNvbmZpZy5zdGF0dXM6MTM5NDogZXhlY3V0aW5nIGRlZmF1bHQtMSBjb21t YW5kcwoKIyMgLS0tLS0tLS0tLS0tLS0tLSAjIwojIyBDYWNoZSB2YXJpYWJsZXMuICMjCiMjIC0t LS0tLS0tLS0tLS0tLS0gIyMKCmFjX2N2X2J1aWxkPWFtZDY0LXBvcnRibGQtZnJlZWJzZDcuMQph Y19jdl9idWlsZF9hbGlhcz1hbWQ2NC1wb3J0YmxkLWZyZWVic2Q3LjEKYWNfY3ZfY19jb21waWxl cl9nbnU9eWVzCmFjX2N2X2NfY29uc3Q9eWVzCmFjX2N2X2NfaW5saW5lPWlubGluZQphY19jdl9l bnZfQ0Nfc2V0PXNldAphY19jdl9lbnZfQ0NfdmFsdWU9Y2MKYWNfY3ZfZW52X0NGTEFHU19zZXQ9 c2V0CmFjX2N2X2Vudl9DRkxBR1NfdmFsdWU9Jy1PMiAtZm5vLXN0cmljdC1hbGlhc2luZyAtcGlw ZScKYWNfY3ZfZW52X0NQUEZMQUdTX3NldD0nJwphY19jdl9lbnZfQ1BQRkxBR1NfdmFsdWU9JycK YWNfY3ZfZW52X0NQUF9zZXQ9JycKYWNfY3ZfZW52X0NQUF92YWx1ZT0nJwphY19jdl9lbnZfTERG TEFHU19zZXQ9c2V0CmFjX2N2X2Vudl9MREZMQUdTX3ZhbHVlPScgLXJwYXRoPS91c3IvbGliOi91 c3IvbG9jYWwvbGliJwphY19jdl9lbnZfYnVpbGRfYWxpYXNfc2V0PXNldAphY19jdl9lbnZfYnVp bGRfYWxpYXNfdmFsdWU9YW1kNjQtcG9ydGJsZC1mcmVlYnNkNy4xCmFjX2N2X2Vudl9ob3N0X2Fs aWFzX3NldD0nJwphY19jdl9lbnZfaG9zdF9hbGlhc192YWx1ZT0nJwphY19jdl9lbnZfdGFyZ2V0 X2FsaWFzX3NldD0nJwphY19jdl9lbnZfdGFyZ2V0X2FsaWFzX3ZhbHVlPScnCmFjX2N2X2V4ZWV4 dD0nJwphY19jdl9maWxlX19saWJfbGliel9hPW5vCmFjX2N2X2ZpbGVfX3Vzcl9pbmNsdWRlX29w ZW5zc2xfc3NsX2g9eWVzCmFjX2N2X2ZpbGVfX3Vzcl9saWJfbGlic3NsX2E9eWVzCmFjX2N2X2Zp bGVfX3Vzcl9saWJfbGliel9hPXllcwphY19jdl9maWxlX191c3JfbG9jYWxfaW5jbHVkZV9teXNx bF9teXNxbF9oPXllcwphY19jdl9maWxlX191c3JfbG9jYWxfbGliX215c3FsX2xpYm15c3FsY2xp ZW50X2E9eWVzCmFjX2N2X2Z1bmNfX19hcmd6X2NvdW50PW5vCmFjX2N2X2Z1bmNfX19hcmd6X25l eHQ9bm8KYWNfY3ZfZnVuY19fX2FyZ3pfc3RyaW5naWZ5PW5vCmFjX2N2X2Z1bmNfYWxsb2NhX3dv cmtzPXllcwphY19jdl9mdW5jX2Zlb2ZfdW5sb2NrZWQ9eWVzCmFjX2N2X2Z1bmNfZmdldHNfdW5s b2NrZWQ9bm8KYWNfY3ZfZnVuY19nZXRjX3VubG9ja2VkPXllcwphY19jdl9mdW5jX2dldGN3ZD15 ZXMKYWNfY3ZfZnVuY19nZXRlZ2lkPXllcwphY19jdl9mdW5jX2dldGV1aWQ9eWVzCmFjX2N2X2Z1 bmNfZ2V0Z2lkPXllcwphY19jdl9mdW5jX2dldHBhZ2VzaXplPXllcwphY19jdl9mdW5jX2dldHB3 dWlkPXllcwphY19jdl9mdW5jX2dldHVpZD15ZXMKYWNfY3ZfZnVuY19pbmV0X250b3A9eWVzCmFj X2N2X2Z1bmNfaW5ldF9wdG9uPXllcwphY19jdl9mdW5jX21hbGxvY18wX25vbm51bGw9eWVzCmFj X2N2X2Z1bmNfbWVtcGNweT1ubwphY19jdl9mdW5jX21lbXNldD15ZXMKYWNfY3ZfZnVuY19tbWFw X2ZpeGVkX21hcHBlZD15ZXMKYWNfY3ZfZnVuY19tdW5tYXA9eWVzCmFjX2N2X2Z1bmNfcHV0ZW52 PXllcwphY19jdl9mdW5jX3JlYWxsb2NfMF9ub25udWxsPXllcwphY19jdl9mdW5jX3NldGVudj15 ZXMKYWNfY3ZfZnVuY19zZXRsb2NhbGU9eWVzCmFjX2N2X2Z1bmNfc2h1dGRvd249eWVzCmFjX2N2 X2Z1bmNfc3RwY3B5PXllcwphY19jdl9mdW5jX3N0cmNhc2VjbXA9eWVzCmFjX2N2X2Z1bmNfc3Ry ZHVwPXllcwphY19jdl9mdW5jX3N0cnNlcD15ZXMKYWNfY3ZfZnVuY19zdHJ0b3VsPXllcwphY19j dl9mdW5jX3RzZWFyY2g9eWVzCmFjX2N2X2dudV9saWJyYXJ5XzJfMT1ubwphY19jdl9oYXZlX2Rl Y2xfc3RyY2FzZWNtcD15ZXMKYWNfY3ZfaGF2ZV9kZWNsX3N0cmNvbGw9eWVzCmFjX2N2X2hhdmVf ZGVjbF9zdHJlcnJvcj15ZXMKYWNfY3ZfaGF2ZV9kZWNsX3N0cm5jYXNlY21wPXllcwphY19jdl9o YXZlX2RlY2xfc3Ryc2VwPXllcwphY19jdl9oZWFkZXJfYXJnel9oPW5vCmFjX2N2X2hlYWRlcl9h cnBhX2luZXRfaD15ZXMKYWNfY3ZfaGVhZGVyX2RsZmNuX2g9eWVzCmFjX2N2X2hlYWRlcl9mY250 bF9oPXllcwphY19jdl9oZWFkZXJfZ2V0b3B0X2g9eWVzCmFjX2N2X2hlYWRlcl9pbnR0eXBlc19o PXllcwphY19jdl9oZWFkZXJfbGliaW50bF9oPXllcwphY19jdl9oZWFkZXJfbGltaXRzX2g9eWVz CmFjX2N2X2hlYWRlcl9sb2NhbGVfaD15ZXMKYWNfY3ZfaGVhZGVyX21hbGxvY19oPW5vCmFjX2N2 X2hlYWRlcl9tZW1vcnlfaD15ZXMKYWNfY3ZfaGVhZGVyX25ldF9pZl9oPXllcwphY19jdl9oZWFk ZXJfbmV0ZGJfaD15ZXMKYWNfY3ZfaGVhZGVyX25ldGluZXRfaW5faD15ZXMKYWNfY3ZfaGVhZGVy X25sX3R5cGVzX2g9eWVzCmFjX2N2X2hlYWRlcl9wd2RfaD15ZXMKYWNfY3ZfaGVhZGVyX3NpZ25h bF9oPXllcwphY19jdl9oZWFkZXJfc3RkYXJnX2g9eWVzCmFjX2N2X2hlYWRlcl9zdGRjPXllcwph Y19jdl9oZWFkZXJfc3RkZGVmX2g9eWVzCmFjX2N2X2hlYWRlcl9zdGRpbnRfaD15ZXMKYWNfY3Zf aGVhZGVyX3N0ZGxpYl9oPXllcwphY19jdl9oZWFkZXJfc3RyaW5nX2g9eWVzCmFjX2N2X2hlYWRl cl9zdHJpbmdzX2g9eWVzCmFjX2N2X2hlYWRlcl9zeXNfZmNudGxfaD15ZXMKYWNfY3ZfaGVhZGVy X3N5c19maWxlX2g9eWVzCmFjX2N2X2hlYWRlcl9zeXNfaW9jdGxfaD15ZXMKYWNfY3ZfaGVhZGVy X3N5c19wYXJhbV9oPXllcwphY19jdl9oZWFkZXJfc3lzX3Jlc291cmNlX2g9eWVzCmFjX2N2X2hl YWRlcl9zeXNfc29ja2V0X2g9eWVzCmFjX2N2X2hlYWRlcl9zeXNfc29ja2lvX2g9eWVzCmFjX2N2 X2hlYWRlcl9zeXNfc3RhdF9oPXllcwphY19jdl9oZWFkZXJfc3lzX3RpbWVfaD15ZXMKYWNfY3Zf aGVhZGVyX3N5c190eXBlc19oPXllcwphY19jdl9oZWFkZXJfc3lzX3dhaXRfaD15ZXMKYWNfY3Zf aGVhZGVyX3Rlcm1pb3NfaD15ZXMKYWNfY3ZfaGVhZGVyX3RpbWVfaD15ZXMKYWNfY3ZfaGVhZGVy X3VuaXN0ZF9oPXllcwphY19jdl9ob3N0PWFtZDY0LXBvcnRibGQtZnJlZWJzZDcuMQphY19jdl9o b3N0X2FsaWFzPWFtZDY0LXBvcnRibGQtZnJlZWJzZDcuMQphY19jdl9saWJfbV9mbG9vcj15ZXMK YWNfY3ZfbGliX25zbF9pbmV0X2FkZHI9bm8KYWNfY3ZfbGliX3NvY2tldF9zb2NrZXQ9bm8KYWNf Y3ZfbGliX3pfZGVmbGF0ZT15ZXMKYWNfY3Zfb2JqZXh0PW8KYWNfY3ZfcGF0aF9HTVNHRk1UPS91 c3IvbG9jYWwvYmluL21zZ2ZtdAphY19jdl9wYXRoX01TR0ZNVD0vdXNyL2xvY2FsL2Jpbi9tc2dm bXQKYWNfY3ZfcGF0aF9NU0dNRVJHRT0vdXNyL2xvY2FsL2Jpbi9tc2dtZXJnZQphY19jdl9wYXRo X1hHRVRURVhUPS91c3IvbG9jYWwvYmluL3hnZXR0ZXh0CmFjX2N2X3Byb2dfQVdLPW5hd2sKYWNf Y3ZfcHJvZ19DUFA9J2NjIC1FJwphY19jdl9wcm9nX2FjX2N0X0NDPWNjCmFjX2N2X3Byb2dfYWNf Y3RfUkFOTElCPXJhbmxpYgphY19jdl9wcm9nX2FjX2N0X1NUUklQPXN0cmlwCmFjX2N2X3Byb2df Y2NfZz15ZXMKYWNfY3ZfcHJvZ19jY19vcHRvaz15ZXMKYWNfY3ZfcHJvZ19jY19zdGRjPScnCmFj X2N2X3Byb2dfZWdyZXA9J2dyZXAgLUUnCmFjX2N2X3Byb2dfbWFrZV9tYWtlX3NldD15ZXMKYWNf Y3Zfc2VhcmNoX3N0cmVycm9yPSdub25lIHJlcXVpcmVkJwphY19jdl90eXBlX29mZl90PXllcwph Y19jdl90eXBlX3NpZ25hbD12b2lkCmFjX2N2X3R5cGVfc2l6ZV90PXllcwphY19jdl90eXBlX3Vj aGFyPW5vCmFjX2N2X3R5cGVfdWludDE2X3Q9eWVzCmFjX2N2X3R5cGVfdWludDMyX3Q9eWVzCmFj X2N2X3R5cGVfdWludDhfdD15ZXMKYWNfY3ZfdHlwZV91aW50PXllcwphY19jdl90eXBlX3Vuc2ln bmVkX2xvbmdfbG9uZz15ZXMKYWNfY3Zfd29ya2luZ19hbGxvY2FfaD1ubwphY2xfY3ZfaGFyZGNv ZGVfZGlyZWN0PW5vCmFjbF9jdl9oYXJkY29kZV9saWJkaXJfZmxhZ19zcGVjPScke3dsfS1ycGF0 aCAke3dsfSRsaWJkaXInCmFjbF9jdl9oYXJkY29kZV9saWJkaXJfc2VwYXJhdG9yPScnCmFjbF9j dl9oYXJkY29kZV9taW51c19MPW5vCmFjbF9jdl9saWJleHQ9YQphY2xfY3ZfcGF0aF9MRD0vdXNy L2Jpbi9sZAphY2xfY3ZfcHJvZ19nbnVfbGQ9eWVzCmFjbF9jdl9ycGF0aD1kb25lCmFjbF9jdl9z aGxpYmV4dD1zbwphY2xfY3Zfc3lzX2xpYl9kbHNlYXJjaF9wYXRoX3NwZWM9Jy9saWIgL3Vzci9s aWInCmFjbF9jdl9zeXNfbGliX3NlYXJjaF9wYXRoX3NwZWM9Jy9saWIgL3Vzci9saWIgL3Vzci9s b2NhbC9saWInCmFjbF9jdl93bD0tV2wsCmFtX2N2X0NDX2RlcGVuZGVuY2llc19jb21waWxlcl90 eXBlPWdjYzMKYW1fY3ZfZnVuY19pY29udj15ZXMKYW1fY3ZfbGFuZ2luZm9fY29kZXNldD15ZXMK YW1fY3ZfbGliX2ljb252PXllcwphbV9jdl9wcm90b19pY29udj0nZXh0ZXJuIHNpemVfdCBpY29u diAoaWNvbnZfdCBjZCwgY29uc3QgY2hhciAqICppbmJ1Ziwgc2l6ZV90ICppbmJ5dGVzbGVmdCwg Y2hhciAqICpvdXRidWYsIHNpemVfdCAqb3V0Ynl0ZXNsZWZ0KTsnCmFtX2N2X3Byb3RvX2ljb252 X2FyZzE9Y29uc3QKYW1fY3ZfdmFsX0xDX01FU1NBR0VTPXllcwpndF9jdl9mdW5jX2dudWdldHRl eHQxX2xpYmM9bm8KZ3RfY3ZfZnVuY19nbnVnZXR0ZXh0MV9saWJpbnRsPXllcwpndF9jdl9oZWFk ZXJfaW50dHlwZXNfaD15ZXMKZ3RfY3ZfaW50X2RpdmJ5emVyb19zaWdmcGU9eWVzCmd0X2N2X2lu dHR5cGVzX3ByaV9icm9rZW49bm8Kam1fYWNfY3ZfaGVhZGVyX2ludHR5cGVzX2g9eWVzCmptX2Fj X2N2X2hlYWRlcl9zdGRpbnRfaD15ZXMKbHRfY3ZfYXJjaGl2ZV9jbWRzX25lZWRfbGM9bm8KbHRf Y3ZfY29tcGlsZXJfY19vPXllcwpsdF9jdl9jb21waWxlcl9vX2xvPXllcwpsdF9jdl9kZXBsaWJz X2NoZWNrX21ldGhvZD1wYXNzX2FsbApsdF9jdl9maWxlX21hZ2ljX2NtZD0nJE1BR0lDX0NNRCcK bHRfY3ZfZmlsZV9tYWdpY190ZXN0X2ZpbGU9JycKbHRfY3ZfZ2xvYmFsX3N5bWJvbF90b19jX25h bWVfYWRkcmVzcz0nc2VkIC1uIC1lICdcJydzL146IFwoW14gXSpcKSAkLyAge1wiXDFcIiwgKGx0 X3B0cikgMH0sL3AnXCcnIC1lICdcJydzL15bQkNERUdSU1RdIFwoW14gXSpcKSBcKFteIF0qXCkk LyAgeyJcMiIsIChsdF9wdHIpIFwmXDJ9LC9wJ1wnJycKbHRfY3ZfZ2xvYmFsX3N5bWJvbF90b19j ZGVjbD0nc2VkIC1uIC1lICdcJydzL14uIC4qIFwoLipcKSQvZXh0ZXJuIGNoYXIgXDE7L3AnXCcn JwpsdF9jdl9sZF9yZWxvYWRfZmxhZz0tcgpsdF9jdl9wYXRoX0xEPS91c3IvYmluL2xkCmx0X2N2 X3BhdGhfTk09Jy91c3IvYmluL25tIC1CJwpsdF9jdl9wcm9nX2NjX2Nhbl9idWlsZF9zaGFyZWQ9 eWVzCmx0X2N2X3Byb2dfY2Nfbm9fYnVpbHRpbj0nJwpsdF9jdl9wcm9nX2NjX3BpYz0nIC1mUElD JwpsdF9jdl9wcm9nX2NjX3BpY193b3Jrcz15ZXMKbHRfY3ZfcHJvZ19jY19zaGxpYj0nJwpsdF9j dl9wcm9nX2NjX3N0YXRpYz0tc3RhdGljCmx0X2N2X3Byb2dfY2Nfc3RhdGljX3dvcmtzPXllcwps dF9jdl9wcm9nX2NjX3dsPS1XbCwKbHRfY3ZfcHJvZ19nbnVfbGQ9eWVzCmx0X2N2X3N5c19nbG9i YWxfc3ltYm9sX3BpcGU9J3NlZCAtbiAtZSAnXCcncy9eLipbIAldXChbQUJDREdJU1RXXVtBQkNE R0lTVFddKlwpWyAJXVsgCV0qXChcKVwoW19BLVphLXpdW19BLVphLXowLTldKlwpJC9cMSBcMlwz IFwzL3AnXCcnJwpsdF9jdl9zeXNfbWF4X2NtZF9sZW49MjYyMTQ0Cm5sc19jdl9mb3JjZV91c2Vf Z251X2dldHRleHQ9bm8KbmxzX2N2X2hlYWRlcl9pbnRsPScnCm5sc19jdl9oZWFkZXJfbGliZ3Q9 JycKbmxzX2N2X3VzZV9nbnVfZ2V0dGV4dD1ubwoKIyMgLS0tLS0tLS0tLS0tLS0tLS0gIyMKIyMg T3V0cHV0IHZhcmlhYmxlcy4gIyMKIyMgLS0tLS0tLS0tLS0tLS0tLS0gIyMKCkFDTE9DQUw9JyR7 U0hFTEx9IC91c3IvcG9ydHMvZG5zL215ZG5zL3dvcmsvbXlkbnMtMS4xLjAvbWlzc2luZyAtLXJ1 biBhY2xvY2FsLTEuOScKQUxMT0NBPScnCkFNREVQQkFDS1NMQVNIPSdcJwpBTURFUF9GQUxTRT0n IycKQU1ERVBfVFJVRT0nJwpBTVRBUj0nJHtTSEVMTH0gL3Vzci9wb3J0cy9kbnMvbXlkbnMvd29y ay9teWRucy0xLjEuMC9taXNzaW5nIC0tcnVuIHRhcicKQVVUT0NPTkY9JyR7U0hFTEx9IC91c3Iv cG9ydHMvZG5zL215ZG5zL3dvcmsvbXlkbnMtMS4xLjAvbWlzc2luZyAtLXJ1biBhdXRvY29uZicK QVVUT0hFQURFUj0nJHtTSEVMTH0gL3Vzci9wb3J0cy9kbnMvbXlkbnMvd29yay9teWRucy0xLjEu MC9taXNzaW5nIC0tcnVuIGF1dG9oZWFkZXInCkFVVE9NQUtFPScke1NIRUxMfSAvdXNyL3BvcnRz L2Rucy9teWRucy93b3JrL215ZG5zLTEuMS4wL21pc3NpbmcgLS1ydW4gYXV0b21ha2UtMS45JwpB V0s9J25hd2snCkJVSUxEX0lOQ0xVREVEX0xJQklOVEw9J25vJwpDQVRPQkpFWFQ9Jy5nbW8nCkND PSdjYycKQ0NERVBNT0RFPSdkZXBtb2RlPWdjYzMnCkNGTEFHUz0nLU8yIC1mbm8tc3RyaWN0LWFs aWFzaW5nIC1waXBlIC1mb21pdC1mcmFtZS1wb2ludGVyIC1maW5saW5lLWZ1bmN0aW9ucyAtZmZh c3QtbWF0aCAtZnVuc2lnbmVkLWNoYXInCkNPUFlSSUdIVF9IT0xERVI9J0NvcHlyaWdodCAoQykg MjAwMi0yMDA1IERvbiBNb29yZScKQ1BQPSdjYyAtRScKQ1BQRkxBR1M9Jy1JL3Vzci9sb2NhbC9p bmNsdWRlJwpDWUdQQVRIX1c9J2VjaG8nCkRBVEFESVJOQU1FPSdzaGFyZScKREVGUz0nLURIQVZF X0NPTkZJR19IJwpERVBESVI9Jy5kZXBzJwpET0NESVI9JyQodG9wX3NyY2RpcikvZG9jJwpFQ0hP PSdlY2hvJwpFQ0hPX0M9JycKRUNIT19OPSctbicKRUNIT19UPScnCkVHUkVQPSdncmVwIC1FJwpF WEVFWFQ9JycKR0VOQ0FUPSdnZW5jYXQnCkdMSUJDMjE9J25vJwpHTVNHRk1UPScvdXNyL2xvY2Fs L2Jpbi9tc2dmbXQnCklOU1RBTExfREFUQT0naW5zdGFsbCAgLW8gcm9vdCAtZyB3aGVlbCAtbSA0 NDQnCklOU1RBTExfUFJPR1JBTT0naW5zdGFsbCAgLXMgLW8gcm9vdCAtZyB3aGVlbCAtbSA1NTUn CklOU1RBTExfU0NSSVBUPSdpbnN0YWxsICAtbyByb290IC1nIHdoZWVsIC1tIDU1NScKSU5TVEFM TF9TVFJJUF9QUk9HUkFNPScke1NIRUxMfSAkKGluc3RhbGxfc2gpIC1jIC1zJwpJTlNUT0JKRVhU PScubW8nCklOVExCSVNPTj0nOicKSU5UTElOQ0xVREU9Jy1JJCh0b3Bfc3JjZGlyKS9pbnRsJwpJ TlRMTElCUz0nL3Vzci9sb2NhbC9saWIvbGliaW50bC5zbyAtTC91c3IvbG9jYWwvbGliIC91c3Iv bG9jYWwvbGliL2xpYmljb252LnNvIC1XbCwtcnBhdGggLVdsLC91c3IvbG9jYWwvbGliJwpJTlRM T0JKUz0nJwpJTlRMX0xJQlRPT0xfU1VGRklYX1BSRUZJWD0nJwpMREZMQUdTPScgLXJwYXRoPS91 c3IvbGliOi91c3IvbG9jYWwvbGliIC1zdGF0aWMnCkxJQklDT05WPScvdXNyL2xvY2FsL2xpYi9s aWJpY29udi5zbyAtV2wsLXJwYXRoIC1XbCwvdXNyL2xvY2FsL2xpYicKTElCSU5UTD0nL3Vzci9s b2NhbC9saWIvbGliaW50bC5zbyAtTC91c3IvbG9jYWwvbGliIC91c3IvbG9jYWwvbGliL2xpYmlj b252LnNvIC1XbCwtcnBhdGggLVdsLC91c3IvbG9jYWwvbGliJwpMSUJNPSctbG0nCkxJQk1ZRE5T PSckKHRvcF9zcmNkaXIpL3NyYy9saWIvbGlibXlkbnMuYScKTElCTVlTUUxDTElFTlQ9Jy1ML3Vz ci9sb2NhbC9saWIvbXlzcWwgLWxteXNxbGNsaWVudCcKTElCTlNMPScnCkxJQk9CSlM9JycKTElC UFE9JycKTElCUz0nJwpMSUJTT0NLRVQ9JycKTElCU1FMPSctTC91c3IvbG9jYWwvbGliL215c3Fs IC1sbXlzcWxjbGllbnQgLUwvdXNyL2xpYiAtbHonCkxJQlNTTD0nLUwvdXNyL2xpYiAtbHNzbCAt bGNyeXB0bycKTElCVE9PTD0nJChTSEVMTCkgJCh0b3BfYnVpbGRkaXIpL2xpYnRvb2wnCkxJQlVU SUw9JyQodG9wX3NyY2RpcikvbGliL2xpYm15ZG5zdXRpbC5hJwpMSUJaPSctTC91c3IvbGliIC1s eicKTE5fUz0nbG4gLXMnCkxUTElCSUNPTlY9Jy1ML3Vzci9sb2NhbC9saWIgLWxpY29udiAtUi91 c3IvbG9jYWwvbGliJwpMVExJQklOVEw9Jy1ML3Vzci9sb2NhbC9saWIgLWxpbnRsIC1ML3Vzci9s b2NhbC9saWIgLWxpY29udiAtUi91c3IvbG9jYWwvbGliJwpMVExJQk9CSlM9JycKTUFLRUlORk89 JyR7U0hFTEx9IC91c3IvcG9ydHMvZG5zL215ZG5zL3dvcmsvbXlkbnMtMS4xLjAvbWlzc2luZyAt LXJ1biBtYWtlaW5mbycKTUtJTlNUQUxMRElSUz0nLi9ta2luc3RhbGxkaXJzJwpNU0dGTVQ9Jy91 c3IvbG9jYWwvYmluL21zZ2ZtdCcKTVNHTUVSR0U9Jy91c3IvbG9jYWwvYmluL21zZ21lcmdlJwpN WUROU0RJUj0nJCh0b3Bfc3JjZGlyKS9zcmMvbGliJwpNWUROU0lOQ0xVREU9Jy1JJCh0b3Bfc3Jj ZGlyKS9zcmMvbGliJwpNWUROU19DT05GPScvdXNyL2xvY2FsL2V0Yy9teWRucy5jb25mJwpNWVNR TF9JTkNMVURFPSctSS91c3IvbG9jYWwvaW5jbHVkZS9teXNxbCcKT0JKRVhUPSdvJwpQQUNLQUdF PSdteWRucycKUEFDS0FHRV9BVVRIT1I9J0RvbiBNb29yZSA8YmJveUBiYm95Lm5ldD4nClBBQ0tB R0VfQlVHUkVQT1JUPSdiYm95QGJib3kubmV0JwpQQUNLQUdFX0NPUFlSSUdIVD0nQ29weXJpZ2h0 IChDKSAyMDAyLTIwMDUgRG9uIE1vb3JlJwpQQUNLQUdFX0RBVEU9J05vdiAyMDA4JwpQQUNLQUdF X0hPTUVQQUdFPSdodHRwOi8vbXlkbnMuYmJveS5uZXQnClBBQ0tBR0VfTkFNRT0nbXlkbnMnClBB Q0tBR0VfUkVMRUFTRV9EQVRFPSdOb3ZlbWJlciAyOCwgMjAwOCcKUEFDS0FHRV9TVFJJTkc9J215 ZG5zIDEuMS4wJwpQQUNLQUdFX1RBUk5BTUU9J215ZG5zJwpQQUNLQUdFX1ZFUlNJT049JzEuMS4w JwpQQVRIX1NFUEFSQVRPUj0nOicKUE9TVUI9J3BvJwpQUV9JTkNMVURFPScnClBST0ZJTEVfRU5B QkxFRD0nJwpSQU5MSUI9J3JhbmxpYicKU0VERklMRT0nJCh0b3Bfc3JjZGlyKS92ZXJzaW9uLnNl ZCcKU0VUX01BS0U9JycKU0hFTEw9Jy9iaW4vc2gnClNRTElOQ0xVREU9Jy1JL3Vzci9sb2NhbC9p bmNsdWRlL215c3FsJwpTU0xJTkNMVURFPScnClNUUklQPSdzdHJpcCcKVVNFX0RCX05BTUU9J015 U1FMJwpVU0VfSU5DTFVERURfTElCSU5UTD0nbm8nClVTRV9OTFM9J3llcycKVVRJTERJUj0nJCh0 b3Bfc3JjZGlyKS9saWInClVUSUxJTkNMVURFPSctSSQodG9wX3NyY2RpcikvbGliJwpWRVJTSU9O PScxLjEuMCcKV0VCUk9PVD0nL3d3dy9odGRvY3MvbXlkbnMnClhHRVRURVhUPScvdXNyL2xvY2Fs L2Jpbi94Z2V0dGV4dCcKYWNfY3RfQ0M9J2NjJwphY19jdF9SQU5MSUI9J3JhbmxpYicKYWNfY3Rf U1RSSVA9J3N0cmlwJwphY19teWRuc19zdGF0aWNfYnVpbGQ9JycKYW1fX2Zhc3RkZXBDQ19GQUxT RT0nIycKYW1fX2Zhc3RkZXBDQ19UUlVFPScnCmFtX19pbmNsdWRlPSdpbmNsdWRlJwphbV9fbGVh ZGluZ19kb3Q9Jy4nCmFtX19xdW90ZT0nJwphbV9fdGFyPScke0FNVEFSfSBjaG9mIC0gIiQkdGFy ZGlyIicKYW1fX3VudGFyPScke0FNVEFSfSB4ZiAtJwpiaW5kaXI9JyR7ZXhlY19wcmVmaXh9L2Jp bicKYnVpbGQ9J2FtZDY0LXBvcnRibGQtZnJlZWJzZDcuMScKYnVpbGRfYWxpYXM9J2FtZDY0LXBv cnRibGQtZnJlZWJzZDcuMScKYnVpbGRfY3B1PSdhbWQ2NCcKYnVpbGRfb3M9J2ZyZWVic2Q3LjEn CmJ1aWxkX3ZlbmRvcj0ncG9ydGJsZCcKZGF0YWRpcj0nJHtwcmVmaXh9L3NoYXJlJwpleGVjX3By ZWZpeD0nJHtwcmVmaXh9Jwpob3N0PSdhbWQ2NC1wb3J0YmxkLWZyZWVic2Q3LjEnCmhvc3RfYWxp YXM9JycKaG9zdF9jcHU9J2FtZDY0Jwpob3N0X29zPSdmcmVlYnNkNy4xJwpob3N0X3ZlbmRvcj0n cG9ydGJsZCcKaW5jbHVkZWRpcj0nJHtwcmVmaXh9L2luY2x1ZGUnCmluZm9kaXI9Jy91c3IvbG9j YWwvaW5mby8nCmluc3RhbGxfc2g9Jy91c3IvcG9ydHMvZG5zL215ZG5zL3dvcmsvbXlkbnMtMS4x LjAvaW5zdGFsbC1zaCcKbGliZGlyPScke2V4ZWNfcHJlZml4fS9saWInCmxpYmV4ZWNkaXI9JyR7 ZXhlY19wcmVmaXh9L2xpYmV4ZWMnCmxvY2Fsc3RhdGVkaXI9JyR7cHJlZml4fS92YXInCm1hbmRp cj0nL3Vzci9sb2NhbC9tYW4nCm1rZGlyX3A9JyQobWtpbnN0YWxsZGlycyknCm9sZGluY2x1ZGVk aXI9Jy91c3IvaW5jbHVkZScKcHJlZml4PScvdXNyL2xvY2FsJwpwcm9ncmFtX3RyYW5zZm9ybV9u YW1lPSdzLHgseCwnCnNiaW5kaXI9JyR7ZXhlY19wcmVmaXh9L3NiaW4nCnNoYXJlZHN0YXRlZGly PScke3ByZWZpeH0vY29tJwpzeXNjb25mZGlyPScke3ByZWZpeH0vZXRjJwp0YXJnZXRfYWxpYXM9 JycKCiMjIC0tLS0tLS0tLS0tICMjCiMjIGNvbmZkZWZzLmguICMjCiMjIC0tLS0tLS0tLS0tICMj CgojZGVmaW5lIERJU0FCTEVfREFURV9MT0dHSU5HIDAKI2RlZmluZSBFTkFCTEVfTkxTIDEKI2Rl ZmluZSBIQVZFX0FMTE9DQSAxCiNkZWZpbmUgSEFWRV9BTExPQ0EgMQojZGVmaW5lIEhBVkVfQVJQ QV9JTkVUX0ggMQojZGVmaW5lIEhBVkVfRENHRVRURVhUIDEKI2RlZmluZSBIQVZFX0RFQ0xfU1RS Q0FTRUNNUCAxCiNkZWZpbmUgSEFWRV9ERUNMX1NUUkNPTEwgMQojZGVmaW5lIEhBVkVfREVDTF9T VFJFUlJPUiAxCiNkZWZpbmUgSEFWRV9ERUNMX1NUUk5DQVNFQ01QIDEKI2RlZmluZSBIQVZFX0RF Q0xfU1RSU0VQIDEKI2RlZmluZSBIQVZFX0RMRkNOX0ggMQojZGVmaW5lIEhBVkVfRkNOVExfSCAx CiNkZWZpbmUgSEFWRV9GRU9GX1VOTE9DS0VEIDEKI2RlZmluZSBIQVZFX0dFVENXRCAxCiNkZWZp bmUgSEFWRV9HRVRDX1VOTE9DS0VEIDEKI2RlZmluZSBIQVZFX0dFVEVHSUQgMQojZGVmaW5lIEhB VkVfR0VURVVJRCAxCiNkZWZpbmUgSEFWRV9HRVRHSUQgMQojZGVmaW5lIEhBVkVfR0VUT1BUX0gg MQojZGVmaW5lIEhBVkVfR0VUUEFHRVNJWkUgMQojZGVmaW5lIEhBVkVfR0VUUFdVSUQgMQojZGVm aW5lIEhBVkVfR0VUVEVYVCAxCiNkZWZpbmUgSEFWRV9HRVRVSUQgMQojZGVmaW5lIEhBVkVfSUNP TlYgMQojZGVmaW5lIEhBVkVfSU5FVF9OVE9QIDEKI2RlZmluZSBIQVZFX0lORVRfUFRPTiAxCiNk ZWZpbmUgSEFWRV9JTlRUWVBFU19IIDEKI2RlZmluZSBIQVZFX0lOVFRZUEVTX0ggMQojZGVmaW5l IEhBVkVfSU5UVFlQRVNfSCAxCiNkZWZpbmUgSEFWRV9JTlRUWVBFU19IX1dJVEhfVUlOVE1BWCAx CiNkZWZpbmUgSEFWRV9JUFY2IDEKI2RlZmluZSBIQVZFX0xBTkdJTkZPX0NPREVTRVQgMQojZGVm aW5lIEhBVkVfTENfTUVTU0FHRVMgMQojZGVmaW5lIEhBVkVfTElCSU5UTF9IIDEKI2RlZmluZSBI QVZFX0xJTUlUU19IIDEKI2RlZmluZSBIQVZFX0xPQ0FMRV9IIDEKI2RlZmluZSBIQVZFX01BTExP QyAxCiNkZWZpbmUgSEFWRV9NRU1PUllfSCAxCiNkZWZpbmUgSEFWRV9NRU1TRVQgMQojZGVmaW5l IEhBVkVfTU1BUCAxCiNkZWZpbmUgSEFWRV9NVU5NQVAgMQojZGVmaW5lIEhBVkVfTkVUREJfSCAx CiNkZWZpbmUgSEFWRV9ORVRJTkVUX0lOX0ggMQojZGVmaW5lIEhBVkVfTkVUX0lGX0ggMQojZGVm aW5lIEhBVkVfTkxfVFlQRVNfSCAxCiNkZWZpbmUgSEFWRV9QVVRFTlYgMQojZGVmaW5lIEhBVkVf UFdEX0ggMQojZGVmaW5lIEhBVkVfUkVBTExPQyAxCiNkZWZpbmUgSEFWRV9TRVRFTlYgMQojZGVm aW5lIEhBVkVfU0VUTE9DQUxFIDEKI2RlZmluZSBIQVZFX1NIVVRET1dOIDEKI2RlZmluZSBIQVZF X1NJR05BTF9IIDEKI2RlZmluZSBIQVZFX1NPQ0tBRERSX1NBX0xFTiAxCiNkZWZpbmUgSEFWRV9T VERBUkdfSCAxCiNkZWZpbmUgSEFWRV9TVERERUZfSCAxCiNkZWZpbmUgSEFWRV9TVERJTlRfSCAx CiNkZWZpbmUgSEFWRV9TVERJTlRfSF9XSVRIX1VJTlRNQVggMQojZGVmaW5lIEhBVkVfU1RETElC X0ggMQojZGVmaW5lIEhBVkVfU1RETElCX0ggMQojZGVmaW5lIEhBVkVfU1RETElCX0ggMQojZGVm aW5lIEhBVkVfU1RETElCX0ggMQojZGVmaW5lIEhBVkVfU1RETElCX0ggMQojZGVmaW5lIEhBVkVf U1RQQ1BZIDEKI2RlZmluZSBIQVZFX1NUUkNBU0VDTVAgMQojZGVmaW5lIEhBVkVfU1RSRFVQIDEK I2RlZmluZSBIQVZFX1NUUklOR1NfSCAxCiNkZWZpbmUgSEFWRV9TVFJJTkdfSCAxCiNkZWZpbmUg SEFWRV9TVFJJTkdfSCAxCiNkZWZpbmUgSEFWRV9TVFJTRVAgMQojZGVmaW5lIEhBVkVfU1RSVE9V TCAxCiNkZWZpbmUgSEFWRV9TWVNfRkNOVExfSCAxCiNkZWZpbmUgSEFWRV9TWVNfRklMRV9IIDEK I2RlZmluZSBIQVZFX1NZU19JT0NUTF9IIDEKI2RlZmluZSBIQVZFX1NZU19QQVJBTV9IIDEKI2Rl ZmluZSBIQVZFX1NZU19SRVNPVVJDRV9IIDEKI2RlZmluZSBIQVZFX1NZU19TT0NLRVRfSCAxCiNk ZWZpbmUgSEFWRV9TWVNfU09DS0lPX0ggMQojZGVmaW5lIEhBVkVfU1lTX1NUQVRfSCAxCiNkZWZp bmUgSEFWRV9TWVNfVElNRV9IIDEKI2RlZmluZSBIQVZFX1NZU19UWVBFU19IIDEKI2RlZmluZSBI QVZFX1NZU19XQUlUX0ggMQojZGVmaW5lIEhBVkVfVEVSTUlPU19IIDEKI2RlZmluZSBIQVZFX1RJ TUVfSCAxCiNkZWZpbmUgSEFWRV9UU0VBUkNIIDEKI2RlZmluZSBIQVZFX1VJTlQgMQojZGVmaW5l IEhBVkVfVUlOVDE2X1QgMQojZGVmaW5lIEhBVkVfVUlOVDMyX1QgMQojZGVmaW5lIEhBVkVfVUlO VDhfVCAxCiNkZWZpbmUgSEFWRV9VTklTVERfSCAxCiNkZWZpbmUgSEFWRV9VTklTVERfSCAxCiNk ZWZpbmUgSEFWRV9VTklTVERfSCAxCiNkZWZpbmUgSEFWRV9VTlNJR05FRF9MT05HX0xPTkcgMQoj ZGVmaW5lIElDT05WX0NPTlNUIGNvbnN0CiNkZWZpbmUgSU5URElWMF9SQUlTRVNfU0lHRlBFIDEK I2RlZmluZSBNWUROU19DT05GICIvdXNyL2xvY2FsL2V0Yy9teWRucy5jb25mIgojZGVmaW5lIFBB Q0tBR0UgIm15ZG5zIgojZGVmaW5lIFBBQ0tBR0VfQVVUSE9SICJEb24gTW9vcmUgPGJib3lAYmJv eS5uZXQ+IgojZGVmaW5lIFBBQ0tBR0VfQlVHUkVQT1JUICJiYm95QGJib3kubmV0IgojZGVmaW5l IFBBQ0tBR0VfQ09QWVJJR0hUICJDb3B5cmlnaHQgKEMpIDIwMDItMjAwNSBEb24gTW9vcmUiCiNk ZWZpbmUgUEFDS0FHRV9EQVRFICJOb3YgMjAwOCIKI2RlZmluZSBQQUNLQUdFX0hPTUVQQUdFICJo dHRwOi8vbXlkbnMuYmJveS5uZXQiCiNkZWZpbmUgUEFDS0FHRV9OQU1FICJteWRucyIKI2RlZmlu ZSBQQUNLQUdFX1JFTEVBU0VfREFURSAiTm92ZW1iZXIgMjgsIDIwMDgiCiNkZWZpbmUgUEFDS0FH RV9TVFJJTkcgIm15ZG5zIDEuMS4wIgojZGVmaW5lIFBBQ0tBR0VfVEFSTkFNRSAibXlkbnMiCiNk ZWZpbmUgUEFDS0FHRV9WRVJTSU9OICIxLjEuMCIKI2RlZmluZSBSRVRTSUdUWVBFIHZvaWQKI2Rl ZmluZSBTVERDX0hFQURFUlMgMQojZGVmaW5lIFNURENfSEVBREVSUyAxCiNkZWZpbmUgVVNFX01Z U1FMIDEKI2RlZmluZSBWRVJTSU9OICIxLjEuMCIKI2RlZmluZSBXSVRIX1NTTCAxCgpjb25maWd1 cmU6IGV4aXQgMAo= ------=_Part_30350_10696254.1227837597866-- From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 03:10:12 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA5261065673; Fri, 28 Nov 2008 03:10:12 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id 30F8B8FC13; Fri, 28 Nov 2008 03:10:11 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from kobe.laptop (adsl114-202.kln.forthnet.gr [77.49.233.202]) (authenticated bits=128) by igloo.linux.gr (8.14.3/8.14.3/Debian-5) with ESMTP id mAS39xUP027060 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 28 Nov 2008 05:10:04 +0200 Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.3/8.14.3) with ESMTP id mAS39wrG088181; Fri, 28 Nov 2008 05:09:58 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.3/8.14.3/Submit) id mAS39vYd088180; Fri, 28 Nov 2008 05:09:57 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) From: Giorgos Keramidas To: ipfreak@yahoo.com References: <848375.80327.qm@web52110.mail.re2.yahoo.com> Date: Fri, 28 Nov 2008 05:09:57 +0200 In-Reply-To: <848375.80327.qm@web52110.mail.re2.yahoo.com> (gahn's message of "Tue, 25 Nov 2008 14:03:33 -0800 (PST)") Message-ID: <87k5aotuka.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-MailScanner-ID: mAS39xUP027060 X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-3.856, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.54, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: free bsd , freebsd general questions Subject: Re: offline upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 03:10:12 -0000 On Tue, 25 Nov 2008 14:03:33 -0800 (PST), gahn wrote: > Hi, All: > > I have two boxes running 6.3. For certain reasons that I can't upgrade > them online with "freebsd-update" utility; the ftp sessions are > blocked. Are there any other way to upgrade the system offline, both > kernel and those needed packages? If you have some means of transferring `/var/db/freebsd-update' from a machine that *does* have this sort of connectivity, you should be able to run only: # freebsd-update install From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 04:07:48 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 701ED1065678 for ; Fri, 28 Nov 2008 04:07:48 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from kennaway-macbookpro.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4A78B8FC16; Fri, 28 Nov 2008 04:07:48 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <492F4086.7040403@FreeBSD.org> Date: Thu, 27 Nov 2008 16:51:18 -0800 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.17 (Macintosh/20080914) MIME-Version: 1.0 To: =?ISO-8859-1?Q?Ott_K=F6stner?= References: <49202F59.7050802@zzz.ee> <20081116144057.GA3864@icarus.home.lan> <492034B8.9020903@zzz.ee> In-Reply-To: <492034B8.9020903@zzz.ee> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: top incorrectly reporting process time X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 04:07:48 -0000 Ott Köstner wrote: > Jeremy Chadwick wrote: >> On Sun, Nov 16, 2008 at 04:34:01PM +0200, Ott Köstner wrote: >> >>> On several FreeBSD machines I have the following problem: >>> >> >> What FreeBSD version? (It matters) >> > 7.1-PRERELEASE FreeBSD > > But I can experience it also on a 7.0 machine. Seems that top reports > incorrectly processes with multiple threads. > > $ top -bUbind > last pid: 21635; load averages: 0.73, 0.46, 0.29 up 1+00:17:18 > 16:48:10 > 54 processes: 1 running, 53 sleeping > > Mem: 66M Active, 1174M Inact, 204M Wired, 36K Cache, 112M Buf, 555M Free > Swap: 2048M Total, 2048M Free > > PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND > 979 bind 8 44 0 40288K 32916K select 0 0:16 0.00% named > > $ ps -ax|grep 979 > 979 ?? Ss 1:11.26 /usr/sbin/named -n 5 -t /var/named -u bind Check top -H to display the statistics for individual threads. Kris From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 04:07:48 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF545106567A for ; Fri, 28 Nov 2008 04:07:48 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from kennaway-macbookpro.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9A7C28FC19; Fri, 28 Nov 2008 04:07:48 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <492F41BF.4030208@FreeBSD.org> Date: Thu, 27 Nov 2008 16:56:31 -0800 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.17 (Macintosh/20080914) MIME-Version: 1.0 To: Frank Solensky References: <1227635054.6253.16.camel@frank-laptop> In-Reply-To: <1227635054.6253.16.camel@frank-laptop> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions Subject: Re: Kernel crash before dumpon X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 04:07:48 -0000 Frank Solensky wrote: > I'm trying to get a dump off a machine with a 7.1-beta2 kernel that's > been crashing during the boot process, following the instructions on > http://www.freebsd.org/doc/en/books/developers-handbook/kerneldebug.html#KERNELDEBUG-OBTAIN > I've recompiled the kernel with "-g" but no vmcore file appears so I'm > assuming that the crash occurs before dumpon is executed. > > The page includes the following suggestion on how I might be able to > proceed: > Alternatively, the dump device can be hard-coded via the > dump clause in the config(5) line of a kernel configuration > file. This approach is deprecated and should be used only > if a kernel is crashing before dumpon(8) can be executed. > > I tried adding > config dump "/dev/ad4s3b" > to the configuration file but that option appears to be no longer > supported: the config command gives an error message of: > root/dump/swap specification obsolete > > Is the paragraph above obsolete? If so, what's the preferred way to > collect the dump? Yes, it's obsolete. Please file a PR to remove the outdated advice. Unfortunately in FreeBSD 5 and later there is no way to dump prior to multi-user startup, because of how device discovery is now dynamic. You can still use other tools like ddb/remote gdb etc. Kris From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 05:17:50 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58B321065670 for ; Fri, 28 Nov 2008 05:17:50 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: from smtp.mel.people.net.au (smtp.mel.people.net.au [218.214.17.98]) by mx1.freebsd.org (Postfix) with SMTP id 901828FC08 for ; Fri, 28 Nov 2008 05:17:49 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: (qmail 20377 invoked from network); 28 Nov 2008 05:17:35 -0000 Received: from unknown (HELO blizzard.dnsalias.org) (218.215.132.189) by smtp.mel.people.net.au with SMTP; 28 Nov 2008 05:17:35 -0000 Received: by blizzard.dnsalias.org (Postfix, from userid 1001) id 2892A17097; Fri, 28 Nov 2008 16:17:35 +1100 (EST) Date: Fri, 28 Nov 2008 16:17:35 +1100 From: andrew clarke To: gahn Message-ID: <20081128051735.GA12194@ozzmosis.com> References: <742029.598.qm@web52112.mail.re2.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <742029.598.qm@web52112.mail.re2.yahoo.com> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-questions@freebsd.org Subject: Re: freebsd-update X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 05:17:50 -0000 On Wed 2008-11-26 20:45:34 UTC-0800, gahn (ipfreak@yahoo.com) wrote: > i did "freebsd-update fetch" and i got message: > > "No updates needed to update system to 6.3-RELEASE-p6" > > what does that suppose to mean? My current system (this one is online) is p4. Did you run "freebsd-update install"? Did you reboot the machine after running the "install" command? From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 05:34:14 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8568D106564A for ; Fri, 28 Nov 2008 05:34:14 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id E89628FC0A for ; Fri, 28 Nov 2008 05:34:13 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from [80.217.86.51] (c80-217-86-51.bredband.comhem.se [80.217.86.51]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id mAS5Y83i053778; Fri, 28 Nov 2008 06:34:09 +0100 (CET) (envelope-from bernt@bah.homeip.net) Message-ID: <492F82D1.4020000@bah.homeip.net> Date: Fri, 28 Nov 2008 06:34:09 +0100 From: Bernt Hansson User-Agent: slrn/1.0.5 (FreeBSD) MIME-Version: 1.0 To: Fbsd1 References: <492E60A8.6080105@a1poweruser.com> In-Reply-To: <492E60A8.6080105@a1poweruser.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: pf or ipf rules to allow p2p Limewire through X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 05:34:14 -0000 Fbsd1 said the following on 2008-11-27 09:56: > What pf or ipf firewall keep-state rules needed to allow p2p application > such as limewire through? Using same firewall rules as in handbook example. Put this in your /etc/ipnat.rules rdr rl0 0.0.0.0/0 port port# -> internal-ip port port# tcp rdr rl0 0.0.0.0/0 port port# -> internal-ip port port# udp From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 06:23:52 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C1341065670 for ; Fri, 28 Nov 2008 06:23:52 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 721B98FC0C for ; Fri, 28 Nov 2008 06:23:52 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from [10.0.10.6] ([202.69.174.141]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 27 Nov 2008 22:22:39 -0800 Message-ID: <492F8E9B.5040805@a1poweruser.com> Date: Fri, 28 Nov 2008 14:24:27 +0800 From: Fbsd1 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Bernt Hansson References: <492E60A8.6080105@a1poweruser.com> <492F82D1.4020000@bah.homeip.net> In-Reply-To: <492F82D1.4020000@bah.homeip.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 28 Nov 2008 06:22:39.0527 (UTC) FILETIME=[B68D8B70:01C95121] X-Sender: fbsd1@a1poweruser.com Cc: freebsd-questions@freebsd.org Subject: Re: pf or ipf rules to allow p2p Limewire through X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 06:23:52 -0000 Bernt Hansson wrote: > Fbsd1 said the following on 2008-11-27 09:56: >> What pf or ipf firewall keep-state rules needed to allow p2p >> application such as limewire through? Using same firewall rules as in >> handbook example. > > Put this in your /etc/ipnat.rules > > rdr rl0 0.0.0.0/0 port port# -> internal-ip port port# tcp > rdr rl0 0.0.0.0/0 port port# -> internal-ip port port# udp > > > > How about explaining just why this is going to allow p2p limewire work? I think you are missing the fact that limewire does not use dedicated port numbers. Every session uses different port numbers and the remote computers come in on different hight port numbers. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 06:30:38 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83251106564A for ; Fri, 28 Nov 2008 06:30:38 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 696058FC0C for ; Fri, 28 Nov 2008 06:30:38 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from [10.0.10.6] ([202.69.174.141]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 27 Nov 2008 22:29:25 -0800 Message-ID: <492F9032.6060906@a1poweruser.com> Date: Fri, 28 Nov 2008 14:31:14 +0800 From: Fbsd1 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: APseudoUtopia References: <492E60A8.6080105@a1poweruser.com> <27ade5280811270927o1aa1bdeem320ffba24e70814d@mail.gmail.com> In-Reply-To: <27ade5280811270927o1aa1bdeem320ffba24e70814d@mail.gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 28 Nov 2008 06:29:25.0834 (UTC) FILETIME=[A8BB12A0:01C95122] X-Sender: fbsd1@a1poweruser.com Cc: freebsd-questions@freebsd.org Subject: Re: pf or ipf rules to allow p2p Limewire through X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 06:30:38 -0000 APseudoUtopia wrote: > On Thu, Nov 27, 2008 at 3:56 AM, Fbsd1 wrote: >> What pf or ipf firewall keep-state rules needed to allow p2p application >> such as limewire through? Using same firewall rules as in handbook example. > > Well, what port does limewire use? You need to figure out what port > each application uses, then open the port in your firewall rules. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > I think you are missing the fact that limewire does not use dedicated port numbers. Every session uses different port numbers and the remote computers come in on different hight port numbers. Limewire starts off with a proto igmp multicast packet to the limewire master server where all the other users online computers are listed. Really need someone who has firewall rule for limewire using ipf or pf to share their knowledge. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 06:54:57 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7B17106564A for ; Fri, 28 Nov 2008 06:54:57 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id 598DE8FC1E for ; Fri, 28 Nov 2008 06:54:56 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id 7DF03FD054 for ; Fri, 28 Nov 2008 08:54:55 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id 7C683FD030; Fri, 28 Nov 2008 08:54:55 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: **** X-Spam-Guessed-Language: X-Spam-Status: No, score=4.1 required=5.0 tests=BAYES_55,RDNS_DYNAMIC, SPF_SOFTFAIL X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.1.64] (87-119-181-26.tll.elisa.ee [87.119.181.26]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id 379ADFD01E for ; Fri, 28 Nov 2008 08:54:53 +0200 (EET) Message-ID: <492F95B9.8050506@zzz.ee> Date: Fri, 28 Nov 2008 08:54:49 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <49202F59.7050802@zzz.ee> <20081116144057.GA3864@icarus.home.lan> <492034B8.9020903@zzz.ee> <492F4086.7040403@FreeBSD.org> In-Reply-To: <492F4086.7040403@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee Subject: Re: top incorrectly reporting process time X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 06:54:57 -0000 Kris Kennaway wrote: > Ott Köstner wrote: >> Jeremy Chadwick wrote: >>> On Sun, Nov 16, 2008 at 04:34:01PM +0200, Ott Köstner wrote: >>> >>>> On several FreeBSD machines I have the following problem: >>>> >>> >>> What FreeBSD version? (It matters) >>> >> 7.1-PRERELEASE FreeBSD >> >> But I can experience it also on a 7.0 machine. Seems that top reports >> incorrectly processes with multiple threads. >> >> $ top -bUbind >> last pid: 21635; load averages: 0.73, 0.46, 0.29 up 1+00:17:18 >> 16:48:10 >> 54 processes: 1 running, 53 sleeping >> >> Mem: 66M Active, 1174M Inact, 204M Wired, 36K Cache, 112M Buf, 555M Free >> Swap: 2048M Total, 2048M Free >> >> PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND >> 979 bind 8 44 0 40288K 32916K select 0 0:16 0.00% named >> >> $ ps -ax|grep 979 >> 979 ?? Ss 1:11.26 /usr/sbin/named -n 5 -t /var/named -u bind > > Check top -H to display the statistics for individual threads. > > Kris # top -bUmysql last pid: 8336; load averages: 0.33, 0.30, 0.24 up 13+22:36:29 08:47:07 157 processes: 1 running, 156 sleeping Mem: 1163M Active, 2058M Inact, 555M Wired, 160M Cache, 214M Buf, 22M Free Swap: 4096M Total, 432K Used, 4095M Free PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND 1079 mysql 9 20 0 92316K 70472K sigwai 1 0:04 0.00% mysqld 1015 mysql 1 8 0 7056K 1332K wait 1 0:00 0.00% sh ------------------------------------------------------------------------------------------------------------- # top -bHUmysql last pid: 8497; load averages: 0.36, 0.32, 0.25 up 13+22:37:43 08:48:21 148 processes: 4 running, 144 sleeping Mem: 1147M Active, 2068M Inact, 554M Wired, 156M Cache, 214M Buf, 32M Free Swap: 4096M Total, 432K Used, 4095M Free PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU COMMAND 1079 mysql 44 0 92316K 70472K select 0 4:10 0.00% mysqld 1079 mysql 44 0 92316K 70472K select 0 3:12 0.00% mysqld 1079 mysql 44 0 92316K 70472K select 1 1:59 0.00% mysqld 1079 mysql 44 0 92316K 70472K ucond 0 0:47 0.00% mysqld 1079 mysql 44 0 92316K 70472K select 0 0:26 0.00% mysqld 1079 mysql 20 0 92316K 70472K sigwai 1 0:04 0.00% mysqld 1079 mysql 44 0 92316K 70472K ucond 0 0:04 0.00% mysqld 1079 mysql 44 0 92316K 70472K ucond 1 0:01 0.00% mysqld 1015 mysql 8 0 7056K 1332K wait 1 0:00 0.00% sh 1079 mysql 44 0 92316K 70472K ucond 0 0:00 0.00% mysqld -------------------------------------------------------------------------------------------------------------- # ps -ax|grep 1079 1079 con- S 576:13.90 [mysqld] -------------------------------------------------------------------------------------------------------------- # ps -aHx|grep 1079 1079 con- S 1:58.71 [mysqld] 1079 con- I 0:00.00 [mysqld] 1079 con- S 0:01.30 [mysqld] 1079 con- I 0:46.72 [mysqld] 1079 con- S 0:03.51 [mysqld] 1079 con- S 0:26.05 [mysqld] 1079 con- S 3:11.80 [mysqld] 1079 con- S 4:09.88 [mysqld] 1079 con- S 0:03.67 [mysqld] Strange? Greetings, O.K. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 06:55:43 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B972B1065679 for ; Fri, 28 Nov 2008 06:55:43 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id 3C6188FC20 for ; Fri, 28 Nov 2008 06:55:42 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from [80.217.86.51] (c80-217-86-51.bredband.comhem.se [80.217.86.51]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id mAS6tcbH055225; Fri, 28 Nov 2008 07:55:39 +0100 (CET) (envelope-from bernt@bah.homeip.net) Message-ID: <492F95EB.8080308@bah.homeip.net> Date: Fri, 28 Nov 2008 07:55:39 +0100 From: Bernt Hansson User-Agent: slrn/1.0.5 (FreeBSD) MIME-Version: 1.0 To: Fbsd1 References: <492E60A8.6080105@a1poweruser.com> <492F82D1.4020000@bah.homeip.net> <492F8E9B.5040805@a1poweruser.com> In-Reply-To: <492F8E9B.5040805@a1poweruser.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: pf or ipf rules to allow p2p Limewire through X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 06:55:43 -0000 Fbsd1 said the following on 2008-11-28 07:24: > Bernt Hansson wrote: >> Fbsd1 said the following on 2008-11-27 09:56: >>> What pf or ipf firewall keep-state rules needed to allow p2p >>> application such as limewire through? Using same firewall rules as in >>> handbook example. >> >> Put this in your /etc/ipnat.rules >> >> rdr rl0 0.0.0.0/0 port port# -> internal-ip port port# tcp >> rdr rl0 0.0.0.0/0 port port# -> internal-ip port port# udp >> >> >> >> > > > How about explaining just why this is going to allow p2p limewire work? Read the handbook on ipfilter. http://coombs.anu.edu.au/~avalon/ > I think you are missing the fact that limewire does not use dedicated > port numbers. Every session uses different port numbers and the remote > computers come in on different hight port numbers. Change port# to port range, then. Or you can skip the firewall. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 07:07:08 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85BC21065696 for ; Fri, 28 Nov 2008 07:07:08 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from kennaway-macbookpro.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 26C728FC1B; Fri, 28 Nov 2008 07:07:06 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <492F9899.9030506@FreeBSD.org> Date: Thu, 27 Nov 2008 23:07:05 -0800 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.18 (Macintosh/20081105) MIME-Version: 1.0 To: =?ISO-8859-1?Q?Ott_K=F6stner?= References: <49202F59.7050802@zzz.ee> <20081116144057.GA3864@icarus.home.lan> <492034B8.9020903@zzz.ee> <492F4086.7040403@FreeBSD.org> <492F95B9.8050506@zzz.ee> In-Reply-To: <492F95B9.8050506@zzz.ee> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: top incorrectly reporting process time X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 07:07:08 -0000 Ott Köstner wrote: > Kris Kennaway wrote: >> Ott Köstner wrote: >>> Jeremy Chadwick wrote: >>>> On Sun, Nov 16, 2008 at 04:34:01PM +0200, Ott Köstner wrote: >>>> >>>>> On several FreeBSD machines I have the following problem: >>>>> >>>> >>>> What FreeBSD version? (It matters) >>>> >>> 7.1-PRERELEASE FreeBSD >>> >>> But I can experience it also on a 7.0 machine. Seems that top reports >>> incorrectly processes with multiple threads. >>> >>> $ top -bUbind >>> last pid: 21635; load averages: 0.73, 0.46, 0.29 up 1+00:17:18 >>> 16:48:10 >>> 54 processes: 1 running, 53 sleeping >>> >>> Mem: 66M Active, 1174M Inact, 204M Wired, 36K Cache, 112M Buf, 555M Free >>> Swap: 2048M Total, 2048M Free >>> >>> PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND >>> 979 bind 8 44 0 40288K 32916K select 0 0:16 0.00% named >>> >>> $ ps -ax|grep 979 >>> 979 ?? Ss 1:11.26 /usr/sbin/named -n 5 -t /var/named -u bind >> >> Check top -H to display the statistics for individual threads. >> >> Kris > # top -bUmysql > last pid: 8336; load averages: 0.33, 0.30, 0.24 up 13+22:36:29 > 08:47:07 > 157 processes: 1 running, 156 sleeping > > Mem: 1163M Active, 2058M Inact, 555M Wired, 160M Cache, 214M Buf, 22M Free > Swap: 4096M Total, 432K Used, 4095M Free > > > PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU > COMMAND > 1079 mysql 9 20 0 92316K 70472K sigwai 1 0:04 0.00% mysqld > 1015 mysql 1 8 0 7056K 1332K wait 1 0:00 0.00% sh > > ------------------------------------------------------------------------------------------------------------- > > # top -bHUmysql > last pid: 8497; load averages: 0.36, 0.32, 0.25 up 13+22:37:43 > 08:48:21 > 148 processes: 4 running, 144 sleeping > > Mem: 1147M Active, 2068M Inact, 554M Wired, 156M Cache, 214M Buf, 32M Free > Swap: 4096M Total, 432K Used, 4095M Free > > > PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU COMMAND > 1079 mysql 44 0 92316K 70472K select 0 4:10 0.00% mysqld > 1079 mysql 44 0 92316K 70472K select 0 3:12 0.00% mysqld > 1079 mysql 44 0 92316K 70472K select 1 1:59 0.00% mysqld > 1079 mysql 44 0 92316K 70472K ucond 0 0:47 0.00% mysqld > 1079 mysql 44 0 92316K 70472K select 0 0:26 0.00% mysqld > 1079 mysql 20 0 92316K 70472K sigwai 1 0:04 0.00% mysqld > 1079 mysql 44 0 92316K 70472K ucond 0 0:04 0.00% mysqld > 1079 mysql 44 0 92316K 70472K ucond 1 0:01 0.00% mysqld > 1015 mysql 8 0 7056K 1332K wait 1 0:00 0.00% sh > 1079 mysql 44 0 92316K 70472K ucond 0 0:00 0.00% mysqld > -------------------------------------------------------------------------------------------------------------- > This seems to be the only inconsistent one: > # ps -ax|grep 1079 > 1079 con- S 576:13.90 [mysqld] Check that your ps binary is in sync with your kernel, i.e. rebuild world with the same sources you used to build your kernel. Kris > -------------------------------------------------------------------------------------------------------------- > # ps -aHx|grep 1079 > 1079 con- S 1:58.71 [mysqld] > 1079 con- I 0:00.00 [mysqld] > 1079 con- S 0:01.30 [mysqld] > 1079 con- I 0:46.72 [mysqld] > 1079 con- S 0:03.51 [mysqld] > 1079 con- S 0:26.05 [mysqld] > 1079 con- S 3:11.80 [mysqld] > 1079 con- S 4:09.88 [mysqld] > 1079 con- S 0:03.67 [mysqld] > > > Strange? > > Greetings, > O.K. > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > > From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 07:18:27 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EEC33106564A for ; Fri, 28 Nov 2008 07:18:27 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id D38A28FC08 for ; Fri, 28 Nov 2008 07:18:27 +0000 (UTC) (envelope-from fbsd1@a1poweruser.com) Received: from [10.0.10.6] ([202.69.174.141]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 27 Nov 2008 23:17:14 -0800 Message-ID: <492F9B68.8080407@a1poweruser.com> Date: Fri, 28 Nov 2008 15:19:04 +0800 From: Fbsd1 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Bernt Hansson References: <492E60A8.6080105@a1poweruser.com> <492F82D1.4020000@bah.homeip.net> <492F8E9B.5040805@a1poweruser.com> <492F95EB.8080308@bah.homeip.net> In-Reply-To: <492F95EB.8080308@bah.homeip.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 28 Nov 2008 07:17:15.0228 (UTC) FILETIME=[5705D9C0:01C95129] X-Sender: fbsd1@a1poweruser.com Cc: freebsd-questions@freebsd.org Subject: Re: pf or ipf rules to allow p2p Limewire through X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 07:18:28 -0000 Bernt Hansson wrote: > Fbsd1 said the following on 2008-11-28 07:24: >> Bernt Hansson wrote: >>> Fbsd1 said the following on 2008-11-27 09:56: >>>> What pf or ipf firewall keep-state rules needed to allow p2p >>>> application such as limewire through? Using same firewall rules as >>>> in handbook example. >>> >>> Put this in your /etc/ipnat.rules >>> >>> rdr rl0 0.0.0.0/0 port port# -> internal-ip port port# tcp >>> rdr rl0 0.0.0.0/0 port port# -> internal-ip port port# udp >>> >>> >>> >>> >> >> >> How about explaining just why this is going to allow p2p limewire work? > > Read the handbook on ipfilter. > http://coombs.anu.edu.au/~avalon/ > >> I think you are missing the fact that limewire does not use dedicated >> port numbers. Every session uses different port numbers and the remote >> computers come in on different hight port numbers. > > Change port# to port range, then. Or you can skip the firewall. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > > I checked the ipfilter online handbook and can not find anything about rules for igmp packets, p2p or limewire. I know what a rdr statement does but can not see how it can be applied to a p2p application which does NOT use dedicated port numbers. The only way i can run limewire is to disable my firewall and that does not make me happy. I think the conclusion is that all 3 of the freebsd firewalls are unable to monitor packet exchange of p2p applications. These firewalls were designed before p2p applications were developed and their (p2p) inherent design is to defeat standard firewall designs. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 08:15:16 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76F90106564A for ; Fri, 28 Nov 2008 08:15:16 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id EFCBB8FC2F for ; Fri, 28 Nov 2008 08:15:15 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from [80.217.86.51] (c80-217-86-51.bredband.comhem.se [80.217.86.51]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id mAS8FAs2056775; Fri, 28 Nov 2008 09:15:10 +0100 (CET) (envelope-from bernt@bah.homeip.net) Message-ID: <492FA88D.6060203@bah.homeip.net> Date: Fri, 28 Nov 2008 09:15:09 +0100 From: Bernt Hansson User-Agent: slrn/1.0.5 (FreeBSD) MIME-Version: 1.0 To: Fbsd1 References: <492E60A8.6080105@a1poweruser.com> <492F82D1.4020000@bah.homeip.net> <492F8E9B.5040805@a1poweruser.com> <492F95EB.8080308@bah.homeip.net> <492F9B68.8080407@a1poweruser.com> In-Reply-To: <492F9B68.8080407@a1poweruser.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: pf or ipf rules to allow p2p Limewire through X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 08:15:16 -0000 Fbsd1 said the following on 2008-11-28 08:19: > I checked the ipfilter online handbook and can not find anything about > rules for igmp packets, p2p or limewire. I know what a rdr statement > does but can not see how it can be applied to a p2p application which > does NOT use dedicated port numbers. The only way i can run limewire is > to disable my firewall and that does not make me happy. > > > I think the conclusion is that all 3 of the freebsd firewalls are unable > to monitor packet exchange of p2p applications. Of course not. Just specify multicast to get throu your firewall. > These firewalls were > designed before p2p applications were developed and their (p2p) inherent > design is to defeat standard firewall designs. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 08:16:43 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2985106567C for ; Fri, 28 Nov 2008 08:16:43 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id 66F428FC16 for ; Fri, 28 Nov 2008 08:16:43 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from [80.217.86.51] (c80-217-86-51.bredband.comhem.se [80.217.86.51]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id mAS8GdwE056789; Fri, 28 Nov 2008 09:16:39 +0100 (CET) (envelope-from bernt@bah.homeip.net) Message-ID: <492FA8E7.6030801@bah.homeip.net> Date: Fri, 28 Nov 2008 09:16:39 +0100 From: Bernt Hansson User-Agent: slrn/1.0.5 (FreeBSD) MIME-Version: 1.0 To: Fbsd1 References: <492E60A8.6080105@a1poweruser.com> <492F82D1.4020000@bah.homeip.net> <492F8E9B.5040805@a1poweruser.com> <492F95EB.8080308@bah.homeip.net> <492F9B68.8080407@a1poweruser.com> In-Reply-To: <492F9B68.8080407@a1poweruser.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: pf or ipf rules to allow p2p Limewire through X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 08:16:44 -0000 Fbsd1 said the following on 2008-11-28 08:19: > I checked the ipfilter online handbook and can not find anything about > rules for igmp packets, p2p or limewire. I know what a rdr statement > does but can not see how it can be applied to a p2p application which > does NOT use dedicated port numbers. The only way i can run limewire is > to disable my firewall and that does not make me happy. > > > I think the conclusion is that all 3 of the freebsd firewalls are unable > to monitor packet exchange of p2p applications. These firewalls were > designed before p2p applications were developed and their (p2p) inherent > design is to defeat standard firewall designs. http://en.wikipedia.org/wiki/Internet_Group_Management_Protocol From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 08:25:37 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEB041065674 for ; Fri, 28 Nov 2008 08:25:37 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 52FE88FC0A for ; Fri, 28 Nov 2008 08:25:36 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1L5yfL-0006js-4W for freebsd-questions@freebsd.org; Fri, 28 Nov 2008 08:25:31 +0000 Received: from pool-138-88-7-186.res.east.verizon.net ([138.88.7.186]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 28 Nov 2008 08:25:31 +0000 Received: from nightrecon by pool-138-88-7-186.res.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 28 Nov 2008 08:25:31 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Fri, 28 Nov 2008 03:23:03 -0500 Lines: 48 Message-ID: References: <492E60A8.6080105@a1poweruser.com> <492F82D1.4020000@bah.homeip.net> <492F8E9B.5040805@a1poweruser.com> <492F95EB.8080308@bah.homeip.net> <492F9B68.8080407@a1poweruser.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-138-88-7-186.res.east.verizon.net Sender: news Subject: Re: pf or ipf rules to allow p2p Limewire through X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 08:25:37 -0000 Fbsd1 wrote: [snip] > The only way i can run limewire is > to disable my firewall and that does not make me happy. This is simply not true. I have at one time or another run Limewire on each of the three different firewalls. Currently for a little over one year now it has been pf. The difference is just syntax. > I think the conclusion is that all 3 of the freebsd firewalls are unable > to monitor packet exchange of p2p applications. These firewalls were > designed before p2p applications were developed and their (p2p) inherent > design is to defeat standard firewall designs. I really do not understand most of the above paragraph, it makes little sense to me. Non sequitur. The OSI reference stack has 7 layers. These firewalls are simple packet filtering firewalls and only reach Layer 4. The Application layer is Layer 7, and these firewalls do not perform the deep packet inspection or decoding required to filter at Layer 7. As far as reading the docs is concerned it should become apparent that there are 3 modalities for configuring Limewire. In my situation I have a FreeBSD server acting as a gateway with pf and DNS running. The UPnP option is for a typical Windows user who may have a router device that will assist a UPnP service to autoconfigure the Windows box. Proceed to examining the second option, Manual Port Forward. I'll ignore the third as it is "Do Nothing", which is useless. So on the Limewire "Advanced -> Firewall" config page enter a port number, such as 6346 in both the "Listen on Port" and the "Manual Port Forward" boxes. Then after your NAT rule in pf.conf enter something like the following: rdr on $ExtIF proto tcp from any to any port 6346 -> 192.168.10.2 port 6346 and a corresponding filter pass rule: pass in quick on $ExtIF inet proto tcp from any to 192.168.10.2 port 6346 keep state 192.168.10.2 is my desktop machine where I use Limewire. It works just fine. -Mike From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 08:29:44 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2778C1065672 for ; Fri, 28 Nov 2008 08:29:44 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from mail.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id E9CBA8FC08 for ; Fri, 28 Nov 2008 08:29:43 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (mail.rachie.is-a-geek.net [192.168.2.101]) by mail.rachie.is-a-geek.net (Postfix) with ESMTP id 02C24AFCF5D; Thu, 27 Nov 2008 23:29:43 -0900 (AKST) From: Mel To: freebsd-questions@freebsd.org Date: Fri, 28 Nov 2008 09:29:00 +0100 User-Agent: KMail/1.9.7 References: <692c9a9f0811271759o25d0108ha1f797823abd0027@mail.gmail.com> In-Reply-To: <692c9a9f0811271759o25d0108ha1f797823abd0027@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811280929.01814.fbsd.questions@rachie.is-a-geek.net> Cc: Yury Michurin Subject: Re: mydns fails to build X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 08:29:44 -0000 On Friday 28 November 2008 02:59:57 Yury Michurin wrote: > Hello, > I were trying to build /usr/ports/dns/mydns , the build failed with: > > ---snip--- > /bin/sh ../../libtool --mode=link cc -O2 -fno-strict-aliasing -pipe > -fomit-frame-pointer -finline-functions -ffast-math -funsigned-char > -rpath=/usr/lib:/usr/local/lib -static -o mydns alias.o axfr.o cache.o > conf.o data.o db.o encode.o error.o listen.o main.o queue.o recursive.o > reply.o resolve.o rr.o sort.o status.o task.o tcp.o udp.o update.o > ../../src/lib/libmydns.a ../../lib/libmydnsutil.a /usr/local/lib/libintl.so > -L/usr/local/lib /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib > -L/usr/local/lib/mysql -lmysqlclient -L/usr/lib -lz -L/usr/lib -lssl > -lcrypto -lm > mkdir .libs /bin/sh ../../libtool --mode=link cc -O2 -fno-strict-aliasing -pipe -fomit-frame-pointer -finline-functions -ffast-math -funsigned-char -rpath=/usr/lib:/usr/local/lib -static -o mydns alias.o axfr.o cache.o conf.o data.o db.o encode.o error.o listen.o main.o queue.o recursive.o reply.o resolve.o rr.o sort.o status.o task.o tcp.o udp.o update.o ../../src/lib/libmydns.a ../../lib/libmydnsutil.a -L/usr/local/lib/mysql -lmysqlclient -L/usr/lib -lz -L/usr/lib -lssl -lcrypto -lm My line looks like this. The difference being gettext. Can you try building with WITHOUT_NLS=yes? -- Mel Problem with today's modular software: they start with the modules and never get to the software part. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 08:37:27 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BA521065678 for ; Fri, 28 Nov 2008 08:37:27 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from hmacs.cmi.ua.ac.be (hmacs.cmi.ua.ac.be [143.129.75.10]) by mx1.freebsd.org (Postfix) with ESMTP id 036E98FC20 for ; Fri, 28 Nov 2008 08:37:26 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from hmacs.cmi.ua.ac.be (localhost [127.0.0.1]) by hmacs.cmi.ua.ac.be (8.13.8+Sun/8.13.8) with ESMTP id mAS8bOAr001545 for ; Fri, 28 Nov 2008 09:37:24 +0100 (CET) Received: from localhost (pdon@localhost) by hmacs.cmi.ua.ac.be (8.13.8+Sun/8.13.8/Submit) with ESMTP id mAS8bO2i001542 for ; Fri, 28 Nov 2008 09:37:24 +0100 (CET) X-Authentication-Warning: hmacs.cmi.ua.ac.be: pdon owned process doing -bs Date: Fri, 28 Nov 2008 09:37:24 +0100 (CET) From: Pieter Donche X-X-Sender: pdon@hmacs.cmi.ua.ac.be To: freebsd-questions@freebsd.org In-Reply-To: <44fxldktmp.fsf@lowell-desk.lan> Message-ID: References: <44fxldktmp.fsf@lowell-desk.lan> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Re: KDM stopping X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pieter Donche List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 08:37:27 -0000 On Thu, 27 Nov 2008, Lowell Gilbert wrote: > Pieter Donche writes: > >> FreeBSD-7.0-RELEASE, with KDE as desktop environment and KDM as >> display manager. >> >> I have 2 users, say user1 and user2. >> Boot, KDM login as user1, OK. >> Then I do a close session. >> OK, KDM presents me again with the KDM login screen, login as user2, OK. >> Then again, close session. >> Now, the KDM login screen does not come back. I am stuck with >> a cursor blinking at the upper left corner. >> Ctrl-Alt-F1 brings me to the console, Ctrl-Alt-F7: no X, just a >> login:prompt >> >> If I reboot and do the same thing, but now first with user2, then user1 >> -> exactly same behaviour (X dies at the second close session). So, >> it's not connected with user2. >> >> Anyone a idea what could be wrong? Below are some log details: > > Does this happen with xdm as well? > Have you checked with the FreeBSD kde mailing list? If I switch in KDM to using TWM window manager (instead of KDE), login and then logout, I'm stuck in the same way. XDM: If I edit /etc/ttys to use xdm instead of kdm and reboot I get login/password prompt, then a very primitive TWM window manager, When choose exit on the menu (with one gets by left-clicking the mouse) the frames arround the windows disappear and I don't get the menu back, the only thing I can do is to to console mode and shutdown -r now (and first edit /etc/ttys again for kdm) Is there a command to - restart the kdm window manager (after it died) from a root console prompt? - stop en start a running kwm window manager from a root console prompt? Concerning my initial problem - I remember that I wanted to change the home-dir of both user1 and user2, therefore in console as root did a rmuser, then adduser for both. Can this cause this dying of KDM manager? > >> >> The /var/log/kdm-log shows: >> ------ >> ... >> X.Org X Server 1.4.0 >> Release Date: 5 September 2007 >> X Protocol Version 11, Revision 0 >> Build Operating System: FreeBSD 7.0-RELEASE i386 >> Current Operating System: FreeBSD pclinwi74.cmi.ua.ac.be 7.0-RELEASE FreeBSD 7. >> 0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 root@logan.cse.buffalo.edu:/usr/ >> obj/usr/src/sys/GENERIC i386 >> Build Date: 13 February 2008 05:50:12PM >> >> Before reporting problems, check http://wiki.x.org >> to make sure that you have the latest version. >> Module Loader present >> Markers: (--) probed, (**) from config file, (==) default setting, >> (++) from command line, (!!) notice, (II) informational, >> (WW) warning, (EE) error, (NI) not implemented, (??) unknown. >> (==) Log file: "/var/log/Xorg.0.log", Time: Wed Nov 26 16:27:31 2008 >> (EE) Unable to locate/open config file >> New driver is "i810" >> (==) Using default built-in configuration (55 lines) >> (EE) Failed to load module "fbdev" (module does not exist, 0) >> (II) Module "ddc" already built-in >> (II) Module "ramdac" already built-in >> FreeFontPath: FPE "/usr/local/lib/X11/fonts/misc/" refcount is 2, should be 1; >> fixing. >> FreeFontPath: FPE "/usr/local/lib/X11/fonts/misc/" refcount is 2, should be 1; >> fixing. >> (EE) I810(0): V_BIOS address 0x0 out of range >> >> Fatal server error: >> Caught signal 11. Server aborting >> >> >> X.Org X Server 1.4.0 >> Release Date: 5 September 2007 >> X Protocol Version 11, Revision 0 >> Build Operating System: FreeBSD 7.0-RELEASE i386 >> Current Operating System: FreeBSD pclinwi74.cmi.ua.ac.be 7.0-RELEASE FreeBSD 7. >> 0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 root@logan.cse.buffalo.edu:/usr/ >> obj/usr/src/sys/GENERIC i386 >> Build Date: 13 February 2008 05:50:12PM >> >> >> Before reporting problems, check http://wiki.x.org >> to make sure that you have the latest version. >> Module Loader present >> Markers: (--) probed, (**) from config file, (==) default setting, >> (++) from command line, (!!) notice, (II) informational, >> (WW) warning, (EE) error, (NI) not implemented, (??) unknown. >> (==) Log file: "/var/log/Xorg.0.log", Time: Wed Nov 26 16:43:42 2008 >> (EE) Unable to locate/open config file >> New driver is "i810" >> (==) Using default built-in configuration (55 lines) >> (EE) Failed to load module "fbdev" (module does not exist, 0) >> (EE) I810(0): V_BIOS address 0x0 out of range >> (EE) I810(0): VBE initialization failed. >> (EE) Screen(s) found, but none have a usable configuration. >> >> Fatal server error: >> no screens found >> ------- >> >> /var/log/messages contains: >> ---------- >> ...... >> Nov 26 16:29:03 pclinwi74 kernel: pid 853 (Xorg), uid 0: exited on signal 11 (c >> ore dumped) >> Nov 26 16:29:03 pclinwi74 kdm-bin[850]: X server for display :0 terminated unex >> pectedly >> Nov 26 16:29:03 pclinwi74 kdm-bin: :0[1137]: IO Error in XOpenDisplay >> Nov 26 16:29:03 pclinwi74 kdm-bin[850]: Display :0 cannot be opened >> Nov 26 16:29:03 pclinwi74 kdm-bin[850]: Unable to fire up local display :0; dis >> abling. >> Nov 26 16:29:30 pclinwi74 login: ROOT LOGIN (root) ON ttyv0 >> Nov 26 16:43:40 pclinwi74 shutdown: reboot by root: >> Nov 26 16:43:42 pclinwi74 kdm-bin[850]: X server for display :0 terminated unex >> pectedly >> Nov 26 16:43:42 pclinwi74 kdm-bin[850]: Unable to fire up local display :0; dis >> abling. >> Nov 26 16:43:42 pclinwi74 syslogd: exiting on signal 15 >> -------- >> >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" >> > > -- > Lowell Gilbert, embedded/networking software engineer, Boston area > http://be-well.ilk.org/~lowell/ > From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 08:44:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D37A1065674 for ; Fri, 28 Nov 2008 08:44:28 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id 1DFEA8FC1C for ; Fri, 28 Nov 2008 08:44:27 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id 37F74FD0B7 for ; Fri, 28 Nov 2008 10:44:27 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id 36B65FD0B6; Fri, 28 Nov 2008 10:44:27 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: *** X-Spam-Guessed-Language: X-Spam-Status: No, score=3.1 required=5.0 tests=BAYES_50,RDNS_DYNAMIC, SPF_SOFTFAIL X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.1.64] (87-119-181-26.tll.elisa.ee [87.119.181.26]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id 595BAFD0A5 for ; Fri, 28 Nov 2008 10:44:24 +0200 (EET) Message-ID: <492FAF64.50507@zzz.ee> Date: Fri, 28 Nov 2008 10:44:20 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <49202F59.7050802@zzz.ee> <20081116144057.GA3864@icarus.home.lan> <492034B8.9020903@zzz.ee> <492F4086.7040403@FreeBSD.org> <492F95B9.8050506@zzz.ee> <492F9899.9030506@FreeBSD.org> In-Reply-To: <492F9899.9030506@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee Subject: Re: top incorrectly reporting process time X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 08:44:28 -0000 Kris Kennaway wrote: > Ott Köstner wrote: >> Kris Kennaway wrote: >>> Ott Köstner wrote: >>>> Jeremy Chadwick wrote: >>>>> On Sun, Nov 16, 2008 at 04:34:01PM +0200, Ott Köstner wrote: >>>>> >>>>>> On several FreeBSD machines I have the following problem: >>>>>> >>>>> >>>>> What FreeBSD version? (It matters) >>>>> >>>> 7.1-PRERELEASE FreeBSD >>>> >>>> But I can experience it also on a 7.0 machine. Seems that top reports >>>> incorrectly processes with multiple threads. >>>> >>>> $ top -bUbind >>>> last pid: 21635; load averages: 0.73, 0.46, 0.29 up 1+00:17:18 >>>> 16:48:10 >>>> 54 processes: 1 running, 53 sleeping >>>> >>>> Mem: 66M Active, 1174M Inact, 204M Wired, 36K Cache, 112M Buf, 555M >>>> Free >>>> Swap: 2048M Total, 2048M Free >>>> >>>> PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU >>>> COMMAND >>>> 979 bind 8 44 0 40288K 32916K select 0 0:16 0.00% named >>>> >>>> $ ps -ax|grep 979 >>>> 979 ?? Ss 1:11.26 /usr/sbin/named -n 5 -t /var/named -u bind >>> >>> Check top -H to display the statistics for individual threads. >>> >>> Kris >> # top -bUmysql >> last pid: 8336; load averages: 0.33, 0.30, 0.24 up >> 13+22:36:29 08:47:07 >> 157 processes: 1 running, 156 sleeping >> >> Mem: 1163M Active, 2058M Inact, 555M Wired, 160M Cache, 214M Buf, 22M >> Free >> Swap: 4096M Total, 432K Used, 4095M Free >> >> >> PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU >> COMMAND >> 1079 mysql 9 20 0 92316K 70472K sigwai 1 0:04 0.00% >> mysqld >> 1015 mysql 1 8 0 7056K 1332K wait 1 0:00 0.00% sh >> >> ------------------------------------------------------------------------------------------------------------- >> >> # top -bHUmysql >> last pid: 8497; load averages: 0.36, 0.32, 0.25 up >> 13+22:37:43 08:48:21 >> 148 processes: 4 running, 144 sleeping >> >> Mem: 1147M Active, 2068M Inact, 554M Wired, 156M Cache, 214M Buf, 32M >> Free >> Swap: 4096M Total, 432K Used, 4095M Free >> >> >> PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU COMMAND >> 1079 mysql 44 0 92316K 70472K select 0 4:10 0.00% mysqld >> 1079 mysql 44 0 92316K 70472K select 0 3:12 0.00% mysqld >> 1079 mysql 44 0 92316K 70472K select 1 1:59 0.00% mysqld >> 1079 mysql 44 0 92316K 70472K ucond 0 0:47 0.00% mysqld >> 1079 mysql 44 0 92316K 70472K select 0 0:26 0.00% mysqld >> 1079 mysql 20 0 92316K 70472K sigwai 1 0:04 0.00% mysqld >> 1079 mysql 44 0 92316K 70472K ucond 0 0:04 0.00% mysqld >> 1079 mysql 44 0 92316K 70472K ucond 1 0:01 0.00% mysqld >> 1015 mysql 8 0 7056K 1332K wait 1 0:00 0.00% sh >> 1079 mysql 44 0 92316K 70472K ucond 0 0:00 0.00% mysqld >> -------------------------------------------------------------------------------------------------------------- >> > > This seems to be the only inconsistent one: > >> # ps -ax|grep 1079 >> 1079 con- S 576:13.90 [mysqld] > > Check that your ps binary is in sync with your kernel, i.e. rebuild > world with the same sources you used to build your kernel. > > Kris > I did that. First, downloaded source with csup, built world, kernel, installed kernel and world. Then rebuilt kernel once again and installed it. On another machine (w/ 32bit kernel): # top -bU bind; top -bHU bind last pid: 21738; load averages: 0.02, 0.20, 0.27 up 12+18:08:53 10:39:45 56 processes: 1 running, 55 sleeping Mem: 207M Active, 1494M Inact, 223M Wired, 70M Cache, 112M Buf, 4700K Free Swap: 2048M Total, 12K Used, 2048M Free PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND 979 bind 8 44 0 52576K 44652K select 1 9:42 0.00% named last pid: 21739; load averages: 0.02, 0.20, 0.27 up 12+18:08:53 10:39:45 56 processes: 1 running, 55 sleeping Mem: 207M Active, 1494M Inact, 223M Wired, 70M Cache, 112M Buf, 4712K Free Swap: 2048M Total, 12K Used, 2048M Free PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU COMMAND 979 bind 44 0 52576K 44652K select 1 9:42 0.00% named 979 bind 44 0 52576K 44652K ucond 1 5:52 0.00% named 979 bind 44 0 52576K 44652K ucond 0 5:51 0.00% named 979 bind 44 0 52576K 44652K ucond 0 5:50 0.00% named 979 bind 44 0 52576K 44652K ucond 1 5:49 0.00% named 979 bind 44 0 52576K 44652K ucond 1 5:48 0.00% named 979 bind 44 0 52576K 44652K ucond 1 0:16 0.00% named 979 bind 20 0 52576K 44652K sigwai 1 0:00 0.00% named # ps -aHx | grep 979; echo ;ps -ax | grep 979 979 ?? Is 0:00.01 /usr/sbin/named -n 5 -t /var/named -u bind 979 ?? Ss 5:49.41 /usr/sbin/named -n 5 -t /var/named -u bind 979 ?? Ss 5:50.73 /usr/sbin/named -n 5 -t /var/named -u bind 979 ?? Ss 5:50.36 /usr/sbin/named -n 5 -t /var/named -u bind 979 ?? Ss 5:52.14 /usr/sbin/named -n 5 -t /var/named -u bind 979 ?? Ss 5:48.15 /usr/sbin/named -n 5 -t /var/named -u bind 979 ?? Ss 0:15.69 /usr/sbin/named -n 5 -t /var/named -u bind 979 ?? Ss 9:41.68 /usr/sbin/named -n 5 -t /var/named -u bind 21761 p0 R+ 0:00.00 grep 979 979 ?? Ss 39:08.18 /usr/sbin/named -n 5 -t /var/named -u bind 21763 p0 R+ 0:00.01 grep 979 >> -------------------------------------------------------------------------------------------------------------- >> # ps -aHx|grep 1079 >> 1079 con- S 1:58.71 [mysqld] >> 1079 con- I 0:00.00 [mysqld] >> 1079 con- S 0:01.30 [mysqld] >> 1079 con- I 0:46.72 [mysqld] >> 1079 con- S 0:03.51 [mysqld] >> 1079 con- S 0:26.05 [mysqld] >> 1079 con- S 3:11.80 [mysqld] >> 1079 con- S 4:09.88 [mysqld] >> 1079 con- S 0:03.67 [mysqld] >> >> >> Strange? >> >> Greetings, >> O.K. >> >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to >> "freebsd-questions-unsubscribe@freebsd.org" >> >> > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 08:53:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5EEF106564A for ; Fri, 28 Nov 2008 08:53:26 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from hmacs.cmi.ua.ac.be (hmacs.cmi.ua.ac.be [143.129.75.10]) by mx1.freebsd.org (Postfix) with ESMTP id 385058FC08 for ; Fri, 28 Nov 2008 08:53:25 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from hmacs.cmi.ua.ac.be (localhost [127.0.0.1]) by hmacs.cmi.ua.ac.be (8.13.8+Sun/8.13.8) with ESMTP id mAS8rOSZ002033 for ; Fri, 28 Nov 2008 09:53:24 +0100 (CET) Received: from localhost (pdon@localhost) by hmacs.cmi.ua.ac.be (8.13.8+Sun/8.13.8/Submit) with ESMTP id mAS8rO9B002030 for ; Fri, 28 Nov 2008 09:53:24 +0100 (CET) X-Authentication-Warning: hmacs.cmi.ua.ac.be: pdon owned process doing -bs Date: Fri, 28 Nov 2008 09:53:24 +0100 (CET) From: Pieter Donche X-X-Sender: pdon@hmacs.cmi.ua.ac.be To: "mail.list freebsd-questions" Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: nxserver/freenx X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pieter Donche List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 08:53:28 -0000 I want my freeBSD-7.0-RELEASE server accessible via a FreeNX client from www.nomachine.com. I believe I should install both the ports nxserver and freenx: >From http://www.freebsdports.info/ports/net/nxserver.html I read: nxserver: this port provides only the NX core binaries and libraries as were released by NoMachine as source code. To make them work and be used as an NX server, you will need to: - either install FreeNX (net/freenx) additionally, - or install the commercial NoMachine server product (currently not available in native FreeBSD form) $ whereis nxserver nxserver: /usr/ports/net/nxserver $ whereis freenx freenx: /usr/ports/net/freenx # cd /usr/ports/net/nxserver # make install clean ===> nxserver-1.4.0_1 is marked as broken: this port fails to build with xorg-7 .2. *** Error code 1 What's this? What are my alternatives to get a NX server running on FreeBSD? # pkg_add -r freenx isn't found ... From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 08:54:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA4CA106568B for ; Fri, 28 Nov 2008 08:54:28 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from kennaway-macbookpro.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 28F2D8FC23; Fri, 28 Nov 2008 08:54:26 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <492FB1C1.8070808@FreeBSD.org> Date: Fri, 28 Nov 2008 00:54:25 -0800 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.18 (Macintosh/20081105) MIME-Version: 1.0 To: =?ISO-8859-1?Q?Ott_K=F6stner?= References: <49202F59.7050802@zzz.ee> <20081116144057.GA3864@icarus.home.lan> <492034B8.9020903@zzz.ee> <492F4086.7040403@FreeBSD.org> <492F95B9.8050506@zzz.ee> <492F9899.9030506@FreeBSD.org> <492FAF64.50507@zzz.ee> In-Reply-To: <492FAF64.50507@zzz.ee> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: top incorrectly reporting process time X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 08:54:28 -0000 Ott Köstner wrote: > Kris Kennaway wrote: >> Ott Köstner wrote: >>> Kris Kennaway wrote: >>>> Ott Köstner wrote: >>>>> Jeremy Chadwick wrote: >>>>>> On Sun, Nov 16, 2008 at 04:34:01PM +0200, Ott Köstner wrote: >>>>>> >>>>>>> On several FreeBSD machines I have the following problem: >>>>>>> >>>>>> >>>>>> What FreeBSD version? (It matters) >>>>>> >>>>> 7.1-PRERELEASE FreeBSD >>>>> >>>>> But I can experience it also on a 7.0 machine. Seems that top reports >>>>> incorrectly processes with multiple threads. >>>>> >>>>> $ top -bUbind >>>>> last pid: 21635; load averages: 0.73, 0.46, 0.29 up 1+00:17:18 >>>>> 16:48:10 >>>>> 54 processes: 1 running, 53 sleeping >>>>> >>>>> Mem: 66M Active, 1174M Inact, 204M Wired, 36K Cache, 112M Buf, 555M >>>>> Free >>>>> Swap: 2048M Total, 2048M Free >>>>> >>>>> PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU >>>>> COMMAND >>>>> 979 bind 8 44 0 40288K 32916K select 0 0:16 0.00% named >>>>> >>>>> $ ps -ax|grep 979 >>>>> 979 ?? Ss 1:11.26 /usr/sbin/named -n 5 -t /var/named -u bind >>>> >>>> Check top -H to display the statistics for individual threads. >>>> >>>> Kris >>> # top -bUmysql >>> last pid: 8336; load averages: 0.33, 0.30, 0.24 up >>> 13+22:36:29 08:47:07 >>> 157 processes: 1 running, 156 sleeping >>> >>> Mem: 1163M Active, 2058M Inact, 555M Wired, 160M Cache, 214M Buf, 22M >>> Free >>> Swap: 4096M Total, 432K Used, 4095M Free >>> >>> >>> PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU >>> COMMAND >>> 1079 mysql 9 20 0 92316K 70472K sigwai 1 0:04 0.00% >>> mysqld >>> 1015 mysql 1 8 0 7056K 1332K wait 1 0:00 0.00% sh >>> >>> ------------------------------------------------------------------------------------------------------------- >>> >>> # top -bHUmysql >>> last pid: 8497; load averages: 0.36, 0.32, 0.25 up >>> 13+22:37:43 08:48:21 >>> 148 processes: 4 running, 144 sleeping >>> >>> Mem: 1147M Active, 2068M Inact, 554M Wired, 156M Cache, 214M Buf, 32M >>> Free >>> Swap: 4096M Total, 432K Used, 4095M Free >>> >>> >>> PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU COMMAND >>> 1079 mysql 44 0 92316K 70472K select 0 4:10 0.00% mysqld >>> 1079 mysql 44 0 92316K 70472K select 0 3:12 0.00% mysqld >>> 1079 mysql 44 0 92316K 70472K select 1 1:59 0.00% mysqld >>> 1079 mysql 44 0 92316K 70472K ucond 0 0:47 0.00% mysqld >>> 1079 mysql 44 0 92316K 70472K select 0 0:26 0.00% mysqld >>> 1079 mysql 20 0 92316K 70472K sigwai 1 0:04 0.00% mysqld >>> 1079 mysql 44 0 92316K 70472K ucond 0 0:04 0.00% mysqld >>> 1079 mysql 44 0 92316K 70472K ucond 1 0:01 0.00% mysqld >>> 1015 mysql 8 0 7056K 1332K wait 1 0:00 0.00% sh >>> 1079 mysql 44 0 92316K 70472K ucond 0 0:00 0.00% mysqld >>> -------------------------------------------------------------------------------------------------------------- >>> >> >> This seems to be the only inconsistent one: >> >>> # ps -ax|grep 1079 >>> 1079 con- S 576:13.90 [mysqld] >> >> Check that your ps binary is in sync with your kernel, i.e. rebuild >> world with the same sources you used to build your kernel. >> >> Kris >> > I did that. First, downloaded source with csup, built world, kernel, > installed kernel and world. Then rebuilt kernel once again and installed > it. > > On another machine (w/ 32bit kernel): > > # top -bU bind; top -bHU bind > last pid: 21738; load averages: 0.02, 0.20, 0.27 up 12+18:08:53 > 10:39:45 > 56 processes: 1 running, 55 sleeping > > Mem: 207M Active, 1494M Inact, 223M Wired, 70M Cache, 112M Buf, 4700K Free > Swap: 2048M Total, 12K Used, 2048M Free > > > PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND > 979 bind 8 44 0 52576K 44652K select 1 9:42 0.00% named > > last pid: 21739; load averages: 0.02, 0.20, 0.27 up 12+18:08:53 > 10:39:45 > 56 processes: 1 running, 55 sleeping > > Mem: 207M Active, 1494M Inact, 223M Wired, 70M Cache, 112M Buf, 4712K Free > Swap: 2048M Total, 12K Used, 2048M Free > > > PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU COMMAND > 979 bind 44 0 52576K 44652K select 1 9:42 0.00% named > 979 bind 44 0 52576K 44652K ucond 1 5:52 0.00% named > 979 bind 44 0 52576K 44652K ucond 0 5:51 0.00% named > 979 bind 44 0 52576K 44652K ucond 0 5:50 0.00% named > 979 bind 44 0 52576K 44652K ucond 1 5:49 0.00% named > 979 bind 44 0 52576K 44652K ucond 1 5:48 0.00% named > 979 bind 44 0 52576K 44652K ucond 1 0:16 0.00% named > 979 bind 20 0 52576K 44652K sigwai 1 0:00 0.00% named > > # ps -aHx | grep 979; echo ;ps -ax | grep 979 > 979 ?? Is 0:00.01 /usr/sbin/named -n 5 -t /var/named -u bind > 979 ?? Ss 5:49.41 /usr/sbin/named -n 5 -t /var/named -u bind > 979 ?? Ss 5:50.73 /usr/sbin/named -n 5 -t /var/named -u bind > 979 ?? Ss 5:50.36 /usr/sbin/named -n 5 -t /var/named -u bind > 979 ?? Ss 5:52.14 /usr/sbin/named -n 5 -t /var/named -u bind > 979 ?? Ss 5:48.15 /usr/sbin/named -n 5 -t /var/named -u bind > 979 ?? Ss 0:15.69 /usr/sbin/named -n 5 -t /var/named -u bind > 979 ?? Ss 9:41.68 /usr/sbin/named -n 5 -t /var/named -u bind > 21761 p0 R+ 0:00.00 grep 979 > > 979 ?? Ss 39:08.18 /usr/sbin/named -n 5 -t /var/named -u bind > 21763 p0 R+ 0:00.01 grep 979 Well, that one makes sense, it's the sum of the thread run times. The previous one you posted wasn't though - maybe you didn't paste in all of the threads? Kris From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 08:59:42 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 067EF1065673 for ; Fri, 28 Nov 2008 08:59:42 +0000 (UTC) (envelope-from fernando.apesteguia@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.168]) by mx1.freebsd.org (Postfix) with ESMTP id D0CA98FC0C for ; Fri, 28 Nov 2008 08:59:41 +0000 (UTC) (envelope-from fernando.apesteguia@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so1386066wfg.7 for ; Fri, 28 Nov 2008 00:59:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=L9sQquvEAt+aqhb4OPs+pw4wxLOBES7+meK7AauwKwM=; b=xhABilFMa0TitbEdiAnWG3ELCMhVEPRUYA11VVCGhoGfAGgrQjRwS2U3Ux9eGanwIk WbpvHdog9i2DYrfDtsoabO1CdZZK1U29v/K86uXvDep7lsVSb1NzKrC7okbkxRQ3No1c TIvKBj0OlYitfXD4wHlQ1PiJsWntsSXIlRH/w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=kDbL9Kzhh5mDR0NXObuYdiR5d6300yroiMr34TwUvdQZ94o/dpBobw3l1LQSrEtguk l/ga+nlf2wLipBcNMHJ2ilphNRkAt+Mq+fxedHFQqcLfFMcxfOKjZ93euacZVE5kQqT9 AEXBjEyWD7AiyYLFnRKRzGlbM9uPLwivgYyUI= Received: by 10.142.207.8 with SMTP id e8mr3274371wfg.65.1227861204522; Fri, 28 Nov 2008 00:33:24 -0800 (PST) Received: by 10.142.180.20 with HTTP; Fri, 28 Nov 2008 00:33:24 -0800 (PST) Message-ID: <1bd550a00811280033x4803b05cyf83446ae15f47086@mail.gmail.com> Date: Fri, 28 Nov 2008 09:33:24 +0100 From: "=?ISO-8859-1?Q?Fernando_Apestegu=EDa?=" To: FreeBSD MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: FBSD 7.1 BETA2 and RTL8168/8111 problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 08:59:42 -0000 Hi all, I recently installed FreeBSD 7.1 BETA2 on my system. During installation using FTP option, I could notice the following: After some random time (two, five or six minutes, for instance) the installation stalled and sysinstall lost the connection. I was taken back to the "Select FTP site" screen, and I had to configure my NIC again. Then, the install resumed and I got a usable system (MINIMAL + docs + manpages) But the problem persists. From time to time, it seems the kernel can't see the NIC. It happens during normal operation and no message is shown in /var/log/messages. ifconfig doesn't show my 're0' device, so I can't run dhclient on it and I have to reboot. I have to say that sometimes, even when I reboot, the NIC (RTL8168/8111 PCI Express) is not present. This device works fine in the same computer with either Vista or Fedora 9, though I have to say I had similar problems with earlier versions of Fedora (device disappearing or not present after boot), but after a kernel upgrade everything run smoothly. Does FreeBSD use the same driver than Linux does? Anybody else with this problem? Thanks in advance. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 09:02:42 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 832061065675 for ; Fri, 28 Nov 2008 09:02:42 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 193718FC17 for ; Fri, 28 Nov 2008 09:02:41 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-196-24-200.dynamic.qsc.de [92.196.24.200]) by mx01.qsc.de (Postfix) with ESMTP id 4E1775091D; Fri, 28 Nov 2008 10:02:39 +0100 (CET) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id mAS92cBd077229; Fri, 28 Nov 2008 10:02:38 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Fri, 28 Nov 2008 10:02:38 +0100 From: Polytropon To: Pieter Donche Message-Id: <20081128100238.53750150.freebsd@edvax.de> In-Reply-To: References: <44fxldktmp.fsf@lowell-desk.lan> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: KDM stopping X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 09:02:42 -0000 On Fri, 28 Nov 2008 09:37:24 +0100 (CET), Pieter Donche wrote: > > XDM: If I edit /etc/ttys to use xdm instead of kdm and reboot > I get login/password prompt, then a very primitive TWM window manager, These are the default settings (TWM with some xterms). You can edit your ~/.xinitrc in order to launch the window manager or desktop environment you like. > When choose exit on the menu (with one gets by left-clicking the mouse) > the frames arround the windows disappear and I don't get the menu > back, the only thing I can do is to to console mode and shutdown -r now > (and first edit /etc/ttys again for kdm) The "session controller" for this setting isn't the window manager, it is one of the xterms which you can close using the "exit" command or pressing Ctrl+D when focused. What you did: You terminated the window manager so the xterms are there on their own, without any window manager (you see that you can still select focus, but there are no window decorations). > Is there a command to > - restart the kdm window manager (after it died) from a root console prompt? I think you can do this using the "kdm" command. > - stop en start a running kwm window manager from a root console prompt? At last, kill X with Ctrl+Alt+Backspace, then run "kdm" again. > Concerning my initial problem - I remember that I wanted to change the > home-dir of both user1 and user2, therefore in console as root did a > rmuser, then adduser for both. Can this cause this dying of KDM manager? I don't think so, because kdm works on a "higher level" where the user settings are not important. But... the more I think about it... it could be possible because KDM remembers users that have been logged in and presents a list of users on the system. Maybe it fails to retrieve the needed data, maybe the user database is corrupted or entries refer to non-existing home directories or login shells? -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 09:44:46 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 554C01065676 for ; Fri, 28 Nov 2008 09:44:46 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id EC82A8FC19 for ; Fri, 28 Nov 2008 09:44:45 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id 3D626FD037 for ; Fri, 28 Nov 2008 11:44:44 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id 3BE87FD029; Fri, 28 Nov 2008 11:44:44 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: **** X-Spam-Guessed-Language: X-Spam-Status: No, score=4.1 required=5.0 tests=BAYES_55,RDNS_DYNAMIC, SPF_SOFTFAIL X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.1.64] (87-119-181-26.tll.elisa.ee [87.119.181.26]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id 9D8C8FD080 for ; Fri, 28 Nov 2008 11:44:41 +0200 (EET) Message-ID: <492FBD85.8030604@zzz.ee> Date: Fri, 28 Nov 2008 11:44:37 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <49202F59.7050802@zzz.ee> <20081116144057.GA3864@icarus.home.lan> <492034B8.9020903@zzz.ee> <492F4086.7040403@FreeBSD.org> <492F95B9.8050506@zzz.ee> <492F9899.9030506@FreeBSD.org> <492FAF64.50507@zzz.ee> <492FB1C1.8070808@FreeBSD.org> In-Reply-To: <492FB1C1.8070808@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee Subject: Re: top incorrectly reporting process time X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 09:44:46 -0000 Kris Kennaway wrote: > Ott Köstner wrote: >> Kris Kennaway wrote: >>> Ott Köstner wrote: >>>> Kris Kennaway wrote: >>>>> Ott Köstner wrote: >>>>>> Jeremy Chadwick wrote: >>>>>>> On Sun, Nov 16, 2008 at 04:34:01PM +0200, Ott Köstner wrote: >>>>>>> >>>>>>>> On several FreeBSD machines I have the following problem: >>>>>>>> >>>>>>> >>>>>>> What FreeBSD version? (It matters) >>>>>>> >>>>>> 7.1-PRERELEASE FreeBSD >>>>>> >>>>>> But I can experience it also on a 7.0 machine. Seems that top >>>>>> reports >>>>>> incorrectly processes with multiple threads. >>>>>> >>>>>> $ top -bUbind >>>>>> last pid: 21635; load averages: 0.73, 0.46, 0.29 up 1+00:17:18 >>>>>> 16:48:10 >>>>>> 54 processes: 1 running, 53 sleeping >>>>>> >>>>>> Mem: 66M Active, 1174M Inact, 204M Wired, 36K Cache, 112M Buf, >>>>>> 555M Free >>>>>> Swap: 2048M Total, 2048M Free >>>>>> >>>>>> PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU >>>>>> COMMAND >>>>>> 979 bind 8 44 0 40288K 32916K select 0 0:16 0.00% >>>>>> named >>>>>> >>>>>> $ ps -ax|grep 979 >>>>>> 979 ?? Ss 1:11.26 /usr/sbin/named -n 5 -t /var/named -u bind >>>>> >>>>> Check top -H to display the statistics for individual threads. >>>>> >>>>> Kris >>>> # top -bUmysql >>>> last pid: 8336; load averages: 0.33, 0.30, 0.24 up >>>> 13+22:36:29 08:47:07 >>>> 157 processes: 1 running, 156 sleeping >>>> >>>> Mem: 1163M Active, 2058M Inact, 555M Wired, 160M Cache, 214M Buf, >>>> 22M Free >>>> Swap: 4096M Total, 432K Used, 4095M Free >>>> >>>> >>>> PID USERNAME THR PRI NICE SIZE RES STATE C TIME >>>> WCPU COMMAND >>>> 1079 mysql 9 20 0 92316K 70472K sigwai 1 0:04 >>>> 0.00% mysqld >>>> 1015 mysql 1 8 0 7056K 1332K wait 1 0:00 >>>> 0.00% sh >>>> >>>> ------------------------------------------------------------------------------------------------------------- >>>> >>>> # top -bHUmysql >>>> last pid: 8497; load averages: 0.36, 0.32, 0.25 up >>>> 13+22:37:43 08:48:21 >>>> 148 processes: 4 running, 144 sleeping >>>> >>>> Mem: 1147M Active, 2068M Inact, 554M Wired, 156M Cache, 214M Buf, >>>> 32M Free >>>> Swap: 4096M Total, 432K Used, 4095M Free >>>> >>>> >>>> PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU >>>> COMMAND >>>> 1079 mysql 44 0 92316K 70472K select 0 4:10 0.00% mysqld >>>> 1079 mysql 44 0 92316K 70472K select 0 3:12 0.00% mysqld >>>> 1079 mysql 44 0 92316K 70472K select 1 1:59 0.00% mysqld >>>> 1079 mysql 44 0 92316K 70472K ucond 0 0:47 0.00% mysqld >>>> 1079 mysql 44 0 92316K 70472K select 0 0:26 0.00% mysqld >>>> 1079 mysql 20 0 92316K 70472K sigwai 1 0:04 0.00% mysqld >>>> 1079 mysql 44 0 92316K 70472K ucond 0 0:04 0.00% mysqld >>>> 1079 mysql 44 0 92316K 70472K ucond 1 0:01 0.00% mysqld >>>> 1015 mysql 8 0 7056K 1332K wait 1 0:00 0.00% sh >>>> 1079 mysql 44 0 92316K 70472K ucond 0 0:00 0.00% mysqld >>>> -------------------------------------------------------------------------------------------------------------- >>>> >>> >>> This seems to be the only inconsistent one: >>> >>>> # ps -ax|grep 1079 >>>> 1079 con- S 576:13.90 [mysqld] >>> >>> Check that your ps binary is in sync with your kernel, i.e. rebuild >>> world with the same sources you used to build your kernel. >>> >>> Kris >>> >> I did that. First, downloaded source with csup, built world, kernel, >> installed kernel and world. Then rebuilt kernel once again and >> installed it. >> >> On another machine (w/ 32bit kernel): >> >> # top -bU bind; top -bHU bind >> last pid: 21738; load averages: 0.02, 0.20, 0.27 up >> 12+18:08:53 10:39:45 >> 56 processes: 1 running, 55 sleeping >> >> Mem: 207M Active, 1494M Inact, 223M Wired, 70M Cache, 112M Buf, 4700K >> Free >> Swap: 2048M Total, 12K Used, 2048M Free >> >> >> PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND >> 979 bind 8 44 0 52576K 44652K select 1 9:42 0.00% named ======================================^^^^^^ >> >> last pid: 21739; load averages: 0.02, 0.20, 0.27 up >> 12+18:08:53 10:39:45 >> 56 processes: 1 running, 55 sleeping >> >> Mem: 207M Active, 1494M Inact, 223M Wired, 70M Cache, 112M Buf, 4712K >> Free >> Swap: 2048M Total, 12K Used, 2048M Free >> >> >> PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU COMMAND >> 979 bind 44 0 52576K 44652K select 1 9:42 0.00% named >> 979 bind 44 0 52576K 44652K ucond 1 5:52 0.00% named >> 979 bind 44 0 52576K 44652K ucond 0 5:51 0.00% named >> 979 bind 44 0 52576K 44652K ucond 0 5:50 0.00% named >> 979 bind 44 0 52576K 44652K ucond 1 5:49 0.00% named >> 979 bind 44 0 52576K 44652K ucond 1 5:48 0.00% named >> 979 bind 44 0 52576K 44652K ucond 1 0:16 0.00% named >> 979 bind 20 0 52576K 44652K sigwai 1 0:00 0.00% named >> >> # ps -aHx | grep 979; echo ;ps -ax | grep 979 >> 979 ?? Is 0:00.01 /usr/sbin/named -n 5 -t /var/named -u bind >> 979 ?? Ss 5:49.41 /usr/sbin/named -n 5 -t /var/named -u bind >> 979 ?? Ss 5:50.73 /usr/sbin/named -n 5 -t /var/named -u bind >> 979 ?? Ss 5:50.36 /usr/sbin/named -n 5 -t /var/named -u bind >> 979 ?? Ss 5:52.14 /usr/sbin/named -n 5 -t /var/named -u bind >> 979 ?? Ss 5:48.15 /usr/sbin/named -n 5 -t /var/named -u bind >> 979 ?? Ss 0:15.69 /usr/sbin/named -n 5 -t /var/named -u bind >> 979 ?? Ss 9:41.68 /usr/sbin/named -n 5 -t /var/named -u bind >> 21761 p0 R+ 0:00.00 grep 979 >> >> 979 ?? Ss 39:08.18 /usr/sbin/named -n 5 -t /var/named -u bind =============^^^^ Here is the problem. top returns only 9:42 -- the time of the first thread. ps returns the sum of the thread times, which is correct. Best regards, O.K. >> >> 21763 p0 R+ 0:00.01 grep 979 > > Well, that one makes sense, it's the sum of the thread run times. The > previous one you posted wasn't though - maybe you didn't paste in all > of the threads? > > Kris > > > From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 09:55:42 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 34D321065670 for ; Fri, 28 Nov 2008 09:55:42 +0000 (UTC) (envelope-from robby@grab.co.za) Received: from qmail.entry.co.za (pdns.entry.co.za [196.211.91.250]) by mx1.freebsd.org (Postfix) with SMTP id 7E7CE8FC19 for ; Fri, 28 Nov 2008 09:55:37 +0000 (UTC) (envelope-from robby@grab.co.za) Received: (qmail 8038 invoked by uid 1011); 28 Nov 2008 09:21:39 -0000 Received: from 192.168.1.33 by qmail.entry.co.za (envelope-from , uid 1009) with qmail-scanner-1.25-st-qms (clamdscan: 0.87/8500. spamassassin: 3.0.4. perlscan: 1.25-st-qms. Clear:RC:1(192.168.1.33):. Processed in 0.045689 secs); 28 Nov 2008 09:21:39 -0000 X-Antivirus-qmail.entry.co.za-Mail-From: robby@grab.co.za via qmail.entry.co.za X-Antivirus-qmail.entry.co.za: 1.25-st-qms (Clear:RC:1(192.168.1.33):. Processed in 0.045689 secs Process 8033) Received: from unknown (HELO ?192.168.1.33?) (192.168.1.33) by qmail.entry.co.za with SMTP; 28 Nov 2008 09:21:39 -0000 From: Robby Balona To: freebsd-questions@freebsd.org Content-Type: text/plain Organization: Grab ISP Date: Fri, 28 Nov 2008 11:30:20 +0200 Message-Id: <1227864620.18902.20.camel@robby-desktop> Mime-Version: 1.0 X-Mailer: Evolution 2.22.1 Content-Transfer-Encoding: 7bit Subject: Ruby on rails on freebsd 7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: robby@grab.co.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 09:55:42 -0000 Has anybody managed to get Ruby on Rails 2 working on Freebsd 7 . I have tried for 3 day now . Done portupgrades and portsnaps but still cant seem to get it to work I get the following error when I run rails ../lib/rails_generator/options.rb:32:in default_options: undefined method write_inheritable_attribute I googled this error and found very little to help except that it looks like its something to do with activesupport-1.4.2 not being install correctly... Any direction would be welcome Regards Robby From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 10:18:52 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71DA0106567A for ; Fri, 28 Nov 2008 10:18:52 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from kennaway-macbookpro.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0B6218FC0A; Fri, 28 Nov 2008 10:18:50 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <492FC589.2090001@FreeBSD.org> Date: Fri, 28 Nov 2008 02:18:49 -0800 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.18 (Macintosh/20081105) MIME-Version: 1.0 To: =?ISO-8859-1?Q?Ott_K=F6stner?= References: <49202F59.7050802@zzz.ee> <20081116144057.GA3864@icarus.home.lan> <492034B8.9020903@zzz.ee> <492F4086.7040403@FreeBSD.org> <492F95B9.8050506@zzz.ee> <492F9899.9030506@FreeBSD.org> <492FAF64.50507@zzz.ee> <492FB1C1.8070808@FreeBSD.org> <492FBD85.8030604@zzz.ee> In-Reply-To: <492FBD85.8030604@zzz.ee> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: top incorrectly reporting process time X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 10:18:52 -0000 Ott Köstner wrote: > Here is the problem. top returns only 9:42 -- the time of the first > thread. ps returns the sum of the thread times, which is correct. OK, I thought you were claiming the numbers were completely unrelated. Yeah, top and ps are just reporting different things (runtime of one thread vs total runtime of all threads). top may have a configuration option about aggregating the thread runtimes, or it may require a source code change. Kris From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 10:19:20 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8204C106564A for ; Fri, 28 Nov 2008 10:19:20 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id B5D438FC08 for ; Fri, 28 Nov 2008 10:19:19 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mASAJD3R003502 for ; Fri, 28 Nov 2008 11:19:13 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mASAJDoj003499 for ; Fri, 28 Nov 2008 11:19:13 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 28 Nov 2008 11:19:13 +0100 (CET) From: Wojciech Puchar To: freebsd-questions@freebsd.org Message-ID: <20081128111721.F3498@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: bootselector - lame question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 10:19:20 -0000 sorry but while i use FreeBSD for a long time i need dual boot for the first time. i already have installed DOS in dospartition 1 (/dev/ad0s1) and FreeBSD on dospartition 2 slice a (/dev/ad0s2a) i can boot both but i need to use fdisk to change active partition every time i want to boot another system. how to install some kind of boot menu if possible (i think it is) From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 10:25:49 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42F7B1065673 for ; Fri, 28 Nov 2008 10:25:49 +0000 (UTC) (envelope-from kuku@kukulies.org) Received: from werkwelt.de (post.werkwelt.de [91.194.85.74]) by mx1.freebsd.org (Postfix) with ESMTP id DA0308FC12 for ; Fri, 28 Nov 2008 10:25:48 +0000 (UTC) (envelope-from kuku@kukulies.org) Received: from [87.79.34.228] (account kuku@kukulies.org HELO [192.168.1.117]) by werkwelt.de (CommuniGate Pro SMTP 5.0.13) with ESMTPSA id 6464956 for freebsd-questions@freebsd.org; Fri, 28 Nov 2008 11:25:46 +0100 Message-ID: <492FC71E.4090901@kukulies.org> Date: Fri, 28 Nov 2008 11:25:34 +0100 From: Christoph Kukulies User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Subject: wlan disappears on rum0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 10:25:49 -0000 I start an ifconfig rum0 inet 10.0.0.1/24 mediaopt hostap ssid MySID wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 channel 1 and it seems that after a day or a night the wlan is gone. No SSID is being seen in the air. I then manually start it again and the wlan is up again. I have no idea right now when it disappears or why. Could it be that some nightly periodic is causing this? -- Christoph Kukulies From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 10:27:37 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B80EE1065670 for ; Fri, 28 Nov 2008 10:27:37 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from mail.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 8EE698FC19 for ; Fri, 28 Nov 2008 10:27:37 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (mail.rachie.is-a-geek.net [192.168.2.101]) by mail.rachie.is-a-geek.net (Postfix) with ESMTP id AF4CFAFCF5D; Fri, 28 Nov 2008 01:27:36 -0900 (AKST) From: Mel To: freebsd-questions@freebsd.org Date: Fri, 28 Nov 2008 11:27:33 +0100 User-Agent: KMail/1.9.7 References: <492FC71E.4090901@kukulies.org> In-Reply-To: <492FC71E.4090901@kukulies.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811281127.34629.fbsd.questions@rachie.is-a-geek.net> Cc: Christoph Kukulies Subject: Re: wlan disappears on rum0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 10:27:37 -0000 On Friday 28 November 2008 11:25:34 Christoph Kukulies wrote: > Could it be that some nightly periodic is causing this? Easy to rule out by running periodic daily by hand, when it's not 3am in the morning. -- Mel Problem with today's modular software: they start with the modules and never get to the software part. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 10:46:15 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 255151065676 for ; Fri, 28 Nov 2008 10:46:15 +0000 (UTC) (envelope-from kuku@kukulies.org) Received: from werkwelt.de (post.werkwelt.de [91.194.85.74]) by mx1.freebsd.org (Postfix) with ESMTP id B931F8FC0C for ; Fri, 28 Nov 2008 10:46:14 +0000 (UTC) (envelope-from kuku@kukulies.org) Received: from [87.79.34.228] (account kuku@kukulies.org HELO [192.168.1.117]) by werkwelt.de (CommuniGate Pro SMTP 5.0.13) with ESMTPSA id 6464967; Fri, 28 Nov 2008 11:45:38 +0100 Message-ID: <492FCBBF.8090304@kukulies.org> Date: Fri, 28 Nov 2008 11:45:19 +0100 From: Christoph Kukulies User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Mel References: <492FC71E.4090901@kukulies.org> <200811281127.34629.fbsd.questions@rachie.is-a-geek.net> In-Reply-To: <200811281127.34629.fbsd.questions@rachie.is-a-geek.net> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: wlan disappears on rum0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 10:46:15 -0000 Mel schrieb: > On Friday 28 November 2008 11:25:34 Christoph Kukulies wrote: > > >> Could it be that some nightly periodic is causing this? >> > > Easy to rule out by running periodic daily by hand, when it's not 3am in the > morning. > Easier said than done. /etc/periodic/daily/ is a bunch of scripts, anyway # for i in `ls | sort -n` do sh ./$i echo $i done is not the culprit. So it must be something else. -- Christoph Kukulies From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 10:52:31 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1AE61065670 for ; Fri, 28 Nov 2008 10:52:31 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id 69BAF8FC12 for ; Fri, 28 Nov 2008 10:52:30 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id E300FFD0C1 for ; Fri, 28 Nov 2008 12:52:29 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id E16A6FD0BF; Fri, 28 Nov 2008 12:52:29 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: X-Spam-Guessed-Language: X-Spam-Status: No, score=-4.0 required=5.0 tests=ALL_TRUSTED,BAYES_50 X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.5.3] (adsl215.uninet.ee [194.204.62.215]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id 8813FFD0B8 for ; Fri, 28 Nov 2008 12:52:27 +0200 (EET) Message-ID: <492FCD6A.4050103@zzz.ee> Date: Fri, 28 Nov 2008 12:52:26 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.18 (X11/20081125) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <49202F59.7050802@zzz.ee> <20081116144057.GA3864@icarus.home.lan> <492034B8.9020903@zzz.ee> <492F4086.7040403@FreeBSD.org> <492F95B9.8050506@zzz.ee> <492F9899.9030506@FreeBSD.org> <492FAF64.50507@zzz.ee> <492FB1C1.8070808@FreeBSD.org> <492FBD85.8030604@zzz.ee> <492FC589.2090001@FreeBSD.org> In-Reply-To: <492FC589.2090001@FreeBSD.org> Content-Type: multipart/mixed; boundary="------------080705010309020202010603" X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: top incorrectly reporting process time X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 10:52:32 -0000 This is a multi-part message in MIME format. --------------080705010309020202010603 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Kris Kennaway wrote: > Ott Köstner wrote: > >> Here is the problem. top returns only 9:42 -- the time of the first >> thread. ps returns the sum of the thread times, which is correct. > > OK, I thought you were claiming the numbers were completely unrelated. > Yeah, top and ps are just reporting different things (runtime of one > thread vs total runtime of all threads). top may have a configuration > option about aggregating the thread runtimes, or it may require a > source code change. > > Kris > Now I understand -- there are actually 2 separate problems -- one with top code, which is the same on all systems and another porblem wihth ps on two amd64 machines I am running: First computer FreeBSD 7.1-PRERELEASE #2 (exact copy / paste) : # ps -ax|grep mysql; echo; ps -axH|grep mysql 981 con- IW 0:00.00 /bin/sh /usr/local/bin/mysqld_safe --defaults-extra-file=/var/db/mysql/my.c 1019 con- S 98:00.87 /usr/local/libexec/mysqld --defaults-extra-file=/var/db/mysql/my.cnf --base 12266 p0 S+ 0:00.00 grep mysql 981 con- IW 0:00.00 /bin/sh /usr/local/bin/mysqld_safe --defaults-extra-file=/var/db/mysql/my.c 1019 con- S 0:01.21 /usr/local/libexec/mysqld --defaults-extra-file=/var/db/mysql/my.cnf --base 1019 con- S 0:00.11 /usr/local/libexec/mysqld --defaults-extra-file=/var/db/mysql/my.cnf --base 1019 con- I 3:13.38 /usr/local/libexec/mysqld --defaults-extra-file=/var/db/mysql/my.cnf --base 1019 con- I 0:00.08 /usr/local/libexec/mysqld --defaults-extra-file=/var/db/mysql/my.cnf --base 1019 con- S 0:00.02 /usr/local/libexec/mysqld --defaults-extra-file=/var/db/mysql/my.cnf --base 12268 p0 R+ 0:00.00 grep mysql 3.xx minutes seems to be correct here, not 98. Second computer FreeBSD 7.1-PRERELEASE #3 (exact copy / paste): # ps -ax|grep mysql; echo; ps -axH|grep mysql 1015 con- I 0:00.01 /bin/sh /usr/local/bin/mysqld_safe --defaults-extra-file=/var/db/mysql/my.c 1079 con- S 582:49.60 [mysqld] 1015 con- I 0:00.01 /bin/sh /usr/local/bin/mysqld_safe --defaults-extra-file=/var/db/mysql/my.c 1079 con- S 2:00.40 [mysqld] 1079 con- I 0:00.00 [mysqld] 1079 con- I 0:01.32 [mysqld] 1079 con- I 0:47.04 [mysqld] 1079 con- I 0:03.56 [mysqld] 1079 con- S 0:26.43 [mysqld] 1079 con- S 3:13.97 [mysqld] 1079 con- S 4:12.72 [mysqld] 1079 con- S 0:03.72 [mysqld] 582 minutes is clearly wrong. Sincerely, O.K. -- Testi oma Interneti kiirust / Test Your Internet speed: http://speedtest.zzz.ee/ --------------080705010309020202010603-- From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 11:05:35 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F2D1106564A for ; Fri, 28 Nov 2008 11:05:35 +0000 (UTC) (envelope-from onemda@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.30]) by mx1.freebsd.org (Postfix) with ESMTP id BCF2B8FC12 for ; Fri, 28 Nov 2008 11:05:34 +0000 (UTC) (envelope-from onemda@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so569686yxb.13 for ; Fri, 28 Nov 2008 03:05:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=nMNDm2Yzp3vDlfW4vf/1oXOoChkVIeda1qaXSWTGExE=; b=Us7jJ05h1VEDU5kx6QSz778f+mHkPMYi3MDA4fie7NcLJzqiS9YoxkJ8R7qBDC+eUZ NaU5FGj+waGvdvx2cEyzmNxzE9DHFGWXvTb9d6zj4oVoaw0nCD3GIu+JeMi8thMyJ4vd 6gI1p3Es6gLHrv4xmGFMUbwN6cu6mwje7EnjU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=sVZrBarHLaKNpcNMly1VJlNBGGjhgDF1gBN6OXsZELwoD4vQbkVV5Ig3V4boistZh1 Wc8cs+yrfld7QnyCRZRE54ZMuF6i2ZyTS194Snw1UBBGYOdPBck90cqxG7//vom09SfD nqFGAnEGTpIIpcYFKJZj21ABgXpW0pFV4JOQg= Received: by 10.231.15.74 with SMTP id j10mr253197iba.48.1227870333667; Fri, 28 Nov 2008 03:05:33 -0800 (PST) Received: by 10.231.10.195 with HTTP; Fri, 28 Nov 2008 03:05:33 -0800 (PST) Message-ID: <3a142e750811280305r7dc4b863u99ed2f42acd157c@mail.gmail.com> Date: Fri, 28 Nov 2008 12:05:33 +0100 From: "Paul B. Mahol" To: "Christoph Kukulies" In-Reply-To: <492FC71E.4090901@kukulies.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <492FC71E.4090901@kukulies.org> Cc: freebsd-questions@freebsd.org Subject: Re: wlan disappears on rum0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 11:05:35 -0000 On 11/28/08, Christoph Kukulies wrote: > I start an > > ifconfig rum0 inet 10.0.0.1/24 mediaopt hostap ssid MySID wepmode on > wepkey 0x01020304050607080910111213 weptxkey 1 channel 1 > > and it seems that after a day or a night the wlan is gone. No SSID is > being seen in the air. > I then manually start it again and the wlan is up again. > > I have no idea right now when it disappears or why. > > Could it be that some nightly periodic is causing this? > > -- > Christoph Kukulies > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > There are some logs? Workaround is to teach devd.conf(5) to start it again every time when it disappears. But it works in this way only if rum0 interface gets down when SSID dissapears. It could be also bug in the driver or in the usb, who knows ... -- Paul From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 11:14:18 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57D9B106564A for ; Fri, 28 Nov 2008 11:14:18 +0000 (UTC) (envelope-from eculp@casasponti.net) Received: from ns2.bafirst.com (72-12-2-19.static.networktel.net [72.12.2.19]) by mx1.freebsd.org (Postfix) with ESMTP id 209BA8FC19 for ; Fri, 28 Nov 2008 11:14:17 +0000 (UTC) (envelope-from eculp@casasponti.net) Received: from casasponti.net ([201.155.7.3]) by ns2.bafirst.com with esmtp; Fri, 28 Nov 2008 05:14:13 -0600 id 000D51E4.492FD286.00016D74 Received: from localhost (localhost [127.0.0.1]) (uid 80) by casasponti.net with local; Fri, 28 Nov 2008 05:14:10 -0600 id 00130E4A.492FD282.00016CC7 Received: from dsl-189-190-3-105.prod-infinitum.com.mx (dsl-189-190-3-105.prod-infinitum.com.mx [189.190.3.105]) by intranet.casasponti.net (Horde Framework) with HTTP; Fri, 28 Nov 2008 05:14:10 -0600 Message-ID: <20081128051410.17qwm4xctjy8w4sck@intranet.casasponti.net> Date: Fri, 28 Nov 2008 05:14:10 -0600 From: eculp@casasponti.net To: freebsd-questions@freebsd.org References: <492E60A8.6080105@a1poweruser.com> <492F82D1.4020000@bah.homeip.net> <492F8E9B.5040805@a1poweruser.com> <492F95EB.8080308@bah.homeip.net> <492F9B68.8080407@a1poweruser.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (5.0-cvs) X-Remote-Browser: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.18) Gecko/20081114 Firefox/2.0.0.18 X-IMP-Server: 201.155.7.3 X-Originating-IP: 189.190.3.105 X-Originating-User: eculp@casasponti.net Subject: Re: pf or ipf rules to allow p2p Limewire through X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 11:14:18 -0000 Michael Powell escribi=F3: > Fbsd1 wrote: > [snip] >> The only way i can run limewire is >> to disable my firewall and that does not make me happy. > > This is simply not true. I have at one time or another run Limewire on > each of the three different firewalls. Currently for a little over > one year now it has been pf. The difference is just syntax. Why don't you send the rules or as you say "difference in syntax" that =20 are blocking limewire and p2p to the list for two reasons: 1. to quickly find how it is being blocked and remedy your problem. 2. Help an idiot like me block p2p. good luck, ed > >> I think the conclusion is that all 3 of the freebsd firewalls are unable >> to monitor packet exchange of p2p applications. These firewalls were >> designed before p2p applications were developed and their (p2p) inherent >> design is to defeat standard firewall designs. > > I really do not understand most of the above paragraph, it makes little > sense to me. Non sequitur. > > The OSI reference stack has 7 layers. These firewalls are simple packet > filtering firewalls and only reach Layer 4. The Application layer is > Layer 7, and these firewalls do not perform the deep packet inspection > or decoding required to filter at Layer 7. > > As far as reading the docs is concerned it should become apparent that > there are 3 modalities for configuring Limewire. In my situation I have > a FreeBSD server acting as a gateway with pf and DNS running. The UPnP > option is for a typical Windows user who may have a router device that > will assist a UPnP service to autoconfigure the Windows box. Proceed to > examining the second option, Manual Port Forward. I'll ignore the third > as it is "Do Nothing", which is useless. > > So on the Limewire "Advanced -> Firewall" config page enter a port > number, such as 6346 in both the "Listen on Port" and the "Manual Port > Forward" boxes. > > Then after your NAT rule in pf.conf enter something like the following: > > rdr on $ExtIF proto tcp from any to any port 6346 -> 192.168.10.2 port 634= 6 > > and a corresponding filter pass rule: > > pass in quick on $ExtIF inet proto tcp from any to 192.168.10.2 port =20 > 6346 keep state > > 192.168.10.2 is my desktop machine where I use Limewire. It works just fin= e. > > > -Mike > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.or= g" > From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 11:38:19 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17DB81065673 for ; Fri, 28 Nov 2008 11:38:19 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from mail.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id E060D8FC1A for ; Fri, 28 Nov 2008 11:38:18 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (mail.rachie.is-a-geek.net [192.168.2.101]) by mail.rachie.is-a-geek.net (Postfix) with ESMTP id 3BFD9AFCF5D; Fri, 28 Nov 2008 02:38:18 -0900 (AKST) From: Mel To: freebsd-questions@freebsd.org Date: Fri, 28 Nov 2008 12:38:14 +0100 User-Agent: KMail/1.9.7 References: <492FC71E.4090901@kukulies.org> <200811281127.34629.fbsd.questions@rachie.is-a-geek.net> <492FCBBF.8090304@kukulies.org> In-Reply-To: <492FCBBF.8090304@kukulies.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811281238.15918.fbsd.questions@rachie.is-a-geek.net> Cc: Christoph Kukulies Subject: Re: wlan disappears on rum0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 11:38:19 -0000 On Friday 28 November 2008 11:45:19 Christoph Kukulies wrote: > Mel schrieb: > > On Friday 28 November 2008 11:25:34 Christoph Kukulies wrote: > >> Could it be that some nightly periodic is causing this? > > > > Easy to rule out by running periodic daily by hand, when it's not 3am in > > the morning. > > Easier said than done. /etc/periodic/daily/ is a bunch of scripts, anyway > > # for i in `ls | sort -n` > do > sh ./$i > echo $i > done No, literally: periodic daily # which periodic /usr/sbin/periodic -- Mel Problem with today's modular software: they start with the modules and never get to the software part. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 12:01:30 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 431091065673 for ; Fri, 28 Nov 2008 12:01:30 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from mail.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id C07438FC1F for ; Fri, 28 Nov 2008 12:01:29 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (mail.rachie.is-a-geek.net [192.168.2.101]) by mail.rachie.is-a-geek.net (Postfix) with ESMTP id C71C4AFCF5D; Fri, 28 Nov 2008 03:01:28 -0900 (AKST) From: Mel To: freebsd-questions@freebsd.org Date: Fri, 28 Nov 2008 13:01:25 +0100 User-Agent: KMail/1.9.7 References: <49202F59.7050802@zzz.ee> <492FC589.2090001@FreeBSD.org> <492FCD6A.4050103@zzz.ee> In-Reply-To: <492FCD6A.4050103@zzz.ee> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200811281301.26721.fbsd.questions@rachie.is-a-geek.net> Cc: Kris Kennaway , Ott =?iso-8859-1?q?K=F6stner?= Subject: Re: top incorrectly reporting process time X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 12:01:30 -0000 On Friday 28 November 2008 11:52:26 Ott K=F6stner wrote: > Kris Kennaway wrote: > > Ott K=F6stner wrote: > >> Here is the problem. top returns only 9:42 -- the time of the first > >> thread. ps returns the sum of the thread times, which is correct. > > > > OK, I thought you were claiming the numbers were completely unrelated. > > Yeah, top and ps are just reporting different things (runtime of one > > thread vs total runtime of all threads). top may have a configuration > > option about aggregating the thread runtimes, or it may require a > > source code change. > > > > Kris > > Now I understand -- there are actually 2 separate problems -- one with > top code, which is the same on all systems and another porblem wihth ps > on two amd64 machines I am running: > > First computer FreeBSD 7.1-PRERELEASE #2 (exact copy / paste) : > > # ps -ax|grep mysql; echo; ps -axH|grep mysql > 981 con- IW 0:00.00 /bin/sh /usr/local/bin/mysqld_safe > --defaults-extra-file=3D/var/db/mysql/my.c > 1019 con- S 98:00.87 /usr/local/libexec/mysqld > --defaults-extra-file=3D/var/db/mysql/my.cnf --base > 12266 p0 S+ 0:00.00 grep mysql > > 981 con- IW 0:00.00 /bin/sh /usr/local/bin/mysqld_safe > --defaults-extra-file=3D/var/db/mysql/my.c > 1019 con- S 0:01.21 /usr/local/libexec/mysqld > --defaults-extra-file=3D/var/db/mysql/my.cnf --base > 1019 con- S 0:00.11 /usr/local/libexec/mysqld > --defaults-extra-file=3D/var/db/mysql/my.cnf --base > 1019 con- I 3:13.38 /usr/local/libexec/mysqld > --defaults-extra-file=3D/var/db/mysql/my.cnf --base > 1019 con- I 0:00.08 /usr/local/libexec/mysqld > --defaults-extra-file=3D/var/db/mysql/my.cnf --base > 1019 con- S 0:00.02 /usr/local/libexec/mysqld > --defaults-extra-file=3D/var/db/mysql/my.cnf --base > 12268 p0 R+ 0:00.00 grep mysql > > 3.xx minutes seems to be correct here, not 98. > > Second computer FreeBSD 7.1-PRERELEASE #3 (exact copy / paste): > > # ps -ax|grep mysql; echo; ps -axH|grep mysql > 1015 con- I 0:00.01 /bin/sh /usr/local/bin/mysqld_safe > --defaults-extra-file=3D/var/db/mysql/my.c > 1079 con- S 582:49.60 [mysqld] > > 1015 con- I 0:00.01 /bin/sh /usr/local/bin/mysqld_safe > --defaults-extra-file=3D/var/db/mysql/my.c > 1079 con- S 2:00.40 [mysqld] > 1079 con- I 0:00.00 [mysqld] > 1079 con- I 0:01.32 [mysqld] > 1079 con- I 0:47.04 [mysqld] > 1079 con- I 0:03.56 [mysqld] > 1079 con- S 0:26.43 [mysqld] > 1079 con- S 3:13.97 [mysqld] > 1079 con- S 4:12.72 [mysqld] > 1079 con- S 0:03.72 [mysqld] > > 582 minutes is clearly wrong. Not if it's the sum of all threads that lived and died during the lifetime = of=20 the process. It's value is taken from the kernel's idea of the runtime. Wit= h=20 KERN_PROC_INC_THREAD set, it will look at the thread storage for active=20 threads, including the 'main()' thread. I haven't looked into detail, but I suspect when a thread dies it gets adde= d=20 to process runtime, and is stored nowhere else. Aside from the different machines, you also took 2 different daemons, which= =20 fits this: named uses a static thread pool, by design, sum(nthreads) will equal the=20 process time mysqld uses a dynamic thread pool, sum(nthreads) is really=20 sum(nthreads_active). I haven't looked into detail =2D-=20 Mel Problem with today's modular software: they start with the modules and never get to the software part. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 12:07:15 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37BB01065672 for ; Fri, 28 Nov 2008 12:07:15 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id A82158FC0C for ; Fri, 28 Nov 2008 12:07:14 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from kobe.laptop (adsl11-12.kln.forthnet.gr [77.49.138.12]) (authenticated bits=128) by igloo.linux.gr (8.14.3/8.14.3/Debian-5) with ESMTP id mASC75Un024874 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 28 Nov 2008 14:07:10 +0200 Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.3/8.14.3) with ESMTP id mASC74ni017475; Fri, 28 Nov 2008 14:07:04 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.3/8.14.3/Submit) id mASC73E4017470; Fri, 28 Nov 2008 14:07:03 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) From: Giorgos Keramidas To: Wojciech Puchar References: <20081128111721.F3498@wojtek.tensor.gdynia.pl> Date: Fri, 28 Nov 2008 14:07:03 +0200 In-Reply-To: <20081128111721.F3498@wojtek.tensor.gdynia.pl> (Wojciech Puchar's message of "Fri, 28 Nov 2008 11:19:13 +0100 (CET)") Message-ID: <87wseouk9k.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-MailScanner-ID: mASC75Un024874 X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-3.857, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.54, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: bootselector - lame question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 12:07:15 -0000 On Fri, 28 Nov 2008 11:19:13 +0100 (CET), Wojciech Puchar wrote: > sorry but while i use FreeBSD for a long time i need dual boot for the > first time. > > i already have installed DOS in dospartition 1 (/dev/ad0s1) and FreeBSD > on dospartition 2 slice a (/dev/ad0s2a) > > i can boot both but i need to use fdisk to change active partition every > time i want to boot another system. > > how to install some kind of boot menu if possible (i think it is) Boot FreeBSD and then run: boot0cfg -v -B ad0 This should install the `boot0' boot block of FreeBSD, which presents a simple menu like: F1 DOS F2 FreeBSD From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 12:14:38 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1230B106564A for ; Fri, 28 Nov 2008 12:14:38 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id BBB0E8FC18 for ; Fri, 28 Nov 2008 12:14:37 +0000 (UTC) (envelope-from OttK@zzz.ee) Received: from zzz.ee (localhost.zzz.ee [127.0.0.1]) by zzz.ee (Postfix) with ESMTP id 347FFFD02B for ; Fri, 28 Nov 2008 14:14:36 +0200 (EET) Received: by zzz.ee (Postfix, from userid 3019) id 32957FD020; Fri, 28 Nov 2008 14:14:36 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: X-Spam-Guessed-Language: X-Spam-Status: No, score=-4.0 required=5.0 tests=ALL_TRUSTED,BAYES_50 X-Spam-Checker-URL: http://info.zzz.ee Received: from [192.168.5.3] (adsl215.uninet.ee [194.204.62.215]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by zzz.ee (Postfix) with ESMTPS id 18717FD01E for ; Fri, 28 Nov 2008 14:14:34 +0200 (EET) Message-ID: <492FE0A9.70205@zzz.ee> Date: Fri, 28 Nov 2008 14:14:33 +0200 From: =?ISO-8859-1?Q?Ott_K=F6stner?= Organization: TIGMA AS User-Agent: Thunderbird 2.0.0.18 (X11/20081125) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <49202F59.7050802@zzz.ee> <492FC589.2090001@FreeBSD.org> <492FCD6A.4050103@zzz.ee> <200811281301.26721.fbsd.questions@rachie.is-a-geek.net> In-Reply-To: <200811281301.26721.fbsd.questions@rachie.is-a-geek.net> Content-Type: multipart/mixed; boundary="------------060101010705040500080009" X-Virus-Scanned: ClamAV using ClamSMTP @zzz.ee X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: top incorrectly reporting process time X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 12:14:38 -0000 This is a multi-part message in MIME format. --------------060101010705040500080009 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: 8bit Mel wrote: > On Friday 28 November 2008 11:52:26 Ott Köstner wrote: > >> Second computer FreeBSD 7.1-PRERELEASE #3 (exact copy / paste): >> >> # ps -ax|grep mysql; echo; ps -axH|grep mysql >> 1015 con- I 0:00.01 /bin/sh /usr/local/bin/mysqld_safe >> --defaults-extra-file=/var/db/mysql/my.c >> 1079 con- S 582:49.60 [mysqld] >> >> 1015 con- I 0:00.01 /bin/sh /usr/local/bin/mysqld_safe >> --defaults-extra-file=/var/db/mysql/my.c >> 1079 con- S 2:00.40 [mysqld] >> 1079 con- I 0:00.00 [mysqld] >> 1079 con- I 0:01.32 [mysqld] >> 1079 con- I 0:47.04 [mysqld] >> 1079 con- I 0:03.56 [mysqld] >> 1079 con- S 0:26.43 [mysqld] >> 1079 con- S 3:13.97 [mysqld] >> 1079 con- S 4:12.72 [mysqld] >> 1079 con- S 0:03.72 [mysqld] >> >> 582 minutes is clearly wrong. >> > > Not if it's the sum of all threads that lived and died during the lifetime of > the process. It's value is taken from the kernel's idea of the runtime. With > KERN_PROC_INC_THREAD set, it will look at the thread storage for active > threads, including the 'main()' thread. > I haven't looked into detail, but I suspect when a thread dies it gets added > to process runtime, and is stored nowhere else. > > I see. Thank You! > Aside from the different machines, you also took 2 different daemons, which > fits this: > named uses a static thread pool, by design, sum(nthreads) will equal the > process time > mysqld uses a dynamic thread pool, sum(nthreads) is really > sum(nthreads_active). > > I haven't looked into detail > > I see. Regards, O.K. --------------060101010705040500080009-- From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 12:41:56 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 935ED106564A for ; Fri, 28 Nov 2008 12:41:56 +0000 (UTC) (envelope-from danielby@slightlystrange.org) Received: from mtaout03-winn.ispmail.ntl.com (mtaout03-winn.ispmail.ntl.com [81.103.221.49]) by mx1.freebsd.org (Postfix) with ESMTP id EC7678FC0A for ; Fri, 28 Nov 2008 12:41:55 +0000 (UTC) (envelope-from danielby@slightlystrange.org) Received: from aamtaout01-winn.ispmail.ntl.com ([81.103.221.35]) by mtaout03-winn.ispmail.ntl.com (InterMail vM.7.08.04.00 201-2186-134-20080326) with ESMTP id <20081128124151.YLMD1691.mtaout03-winn.ispmail.ntl.com@aamtaout01-winn.ispmail.ntl.com> for ; Fri, 28 Nov 2008 12:41:51 +0000 Received: from catflap.slightlystrange.org ([82.21.101.171]) by aamtaout01-winn.ispmail.ntl.com (InterMail vG.2.02.00.01 201-2161-120-102-20060912) with ESMTP id <20081128124151.DGAE19264.aamtaout01-winn.ispmail.ntl.com@catflap.slightlystrange.org> for ; Fri, 28 Nov 2008 12:41:51 +0000 Received: by catflap.slightlystrange.org (Postfix, from userid 106) id 70F08613A; Fri, 28 Nov 2008 12:41:48 +0000 (GMT) Received: from torus.slightlystrange.org (torus.slightlystrange.org [10.1.3.50]) by catflap.slightlystrange.org (Postfix) with SMTP id BE9C56133 for ; Fri, 28 Nov 2008 12:41:47 +0000 (GMT) Received: by torus.slightlystrange.org (sSMTP sendmail emulation); Fri, 28 Nov 2008 12:41:47 +0000 From: "Daniel Bye" Date: Fri, 28 Nov 2008 12:41:47 +0000 To: freebsd-questions@freebsd.org Message-ID: <20081128124147.GA24467@torus.slightlystrange.org> Mail-Followup-To: freebsd-questions@freebsd.org References: <1227864620.18902.20.camel@robby-desktop> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qMm9M+Fa2AknHoGS" Content-Disposition: inline In-Reply-To: <1227864620.18902.20.camel@robby-desktop> User-Agent: Mutt/1.4.2.3i X-PGP-Fingerprint: D349 B109 0EB8 2554 4D75 B79A 8B17 F97C 1622 166A X-Operating-System: FreeBSD 7.1-PRERELEASE i386 X-Cloudmark-Analysis: v=1.0 c=1 a=ehNlctqhnw0A:10 a=_imi8ufYYMUJspV2tb0A:9 a=5-j1f2GTA7CacFEDBPY7WJ5IaoUA:4 a=LY0hPdMaydYA:10 a=Io4cV8JTgEhpUEY-tlAA:9 a=S7EYKt265-TrbXBdwdZwjWrNoX0A:4 a=rPt6xJ-oxjAA:10 Subject: Re: Ruby on rails on freebsd 7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Bye List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 12:41:56 -0000 --qMm9M+Fa2AknHoGS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Nov 28, 2008 at 11:30:20AM +0200, Robby Balona wrote: > Has anybody managed to get Ruby on Rails 2 working on Freebsd 7 . I have > tried for 3 day now . Done portupgrades and portsnaps but still cant > seem to get it to work Yes, I'm using it very successfully. The version of Rails in ports=20 seems to have stuck at 1.2.6. >=20 >=20 > I get the following error when I run rails >=20 > ../lib/rails_generator/options.rb:32:in default_options: undefined > method write_inheritable_attribute >=20 > I googled this error and found very little to help except that it looks > like its something to do with activesupport-1.4.2 not being install > correctly... rails 2.* ships with activsupport 2.*. Your best bet will be to upgrade your installed gems: $ sudo gem upgrade --system (If that doesn't work, try `update_rubygems' instead) Gems should now report its version as 1.3.1: $ gem -v 1.3.1 Now you can simply use gems to install Rails and its dependencies: $ sudo gem install rails --include-dependencies If you really want version 2.0 or 2.1 instead of the recently released 2.2, include a --version=3D2.1 to the command. However, given the enhancements, I'd go with the latest. HTH, Dan --=20 Daniel Bye _ ASCII ribbon campaign ( ) - against HTML, vCards and X - proprietary attachments in e-mail / \ --qMm9M+Fa2AknHoGS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkv5wsACgkQixf5fBYiFmqJfACfeqnl3NBMtuOF9+CKjqWeH+xr /5oAoMQURglkB/dwXywkxplc6CFxXl8M =3d7f -----END PGP SIGNATURE----- --qMm9M+Fa2AknHoGS-- From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 13:02:11 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F38C3106564A for ; Fri, 28 Nov 2008 13:02:10 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 46BC78FC08 for ; Fri, 28 Nov 2008 13:02:09 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mASD1t3W004889; Fri, 28 Nov 2008 14:01:55 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mASD1tND004886; Fri, 28 Nov 2008 14:01:55 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 28 Nov 2008 14:01:55 +0100 (CET) From: Wojciech Puchar To: Giorgos Keramidas In-Reply-To: <87wseouk9k.fsf@kobe.laptop> Message-ID: <20081128140152.M4885@wojtek.tensor.gdynia.pl> References: <20081128111721.F3498@wojtek.tensor.gdynia.pl> <87wseouk9k.fsf@kobe.laptop> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: bootselector - lame question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 13:02:11 -0000 thanks! On Fri, 28 Nov 2008, Giorgos Keramidas wrote: > On Fri, 28 Nov 2008 11:19:13 +0100 (CET), Wojciech Puchar wrote: >> sorry but while i use FreeBSD for a long time i need dual boot for the >> first time. >> >> i already have installed DOS in dospartition 1 (/dev/ad0s1) and FreeBSD >> on dospartition 2 slice a (/dev/ad0s2a) >> >> i can boot both but i need to use fdisk to change active partition every >> time i want to boot another system. >> >> how to install some kind of boot menu if possible (i think it is) > > Boot FreeBSD and then run: > > boot0cfg -v -B ad0 > > This should install the `boot0' boot block of FreeBSD, which presents a > simple menu like: > > F1 DOS > F2 FreeBSD > > From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 13:21:11 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA38C1065705 for ; Fri, 28 Nov 2008 13:21:11 +0000 (UTC) (envelope-from robby@grab.co.za) Received: from qmail.entry.co.za (pdns.entry.co.za [196.211.91.250]) by mx1.freebsd.org (Postfix) with SMTP id 3A9268FC13 for ; Fri, 28 Nov 2008 13:21:07 +0000 (UTC) (envelope-from robby@grab.co.za) Received: (qmail 25767 invoked by uid 1011); 28 Nov 2008 13:13:48 -0000 Received: from 192.168.1.33 by qmail.entry.co.za (envelope-from , uid 1009) with qmail-scanner-1.25-st-qms (clamdscan: 0.87/8500. spamassassin: 3.0.4. perlscan: 1.25-st-qms. Clear:RC:1(192.168.1.33):. Processed in 0.046207 secs); 28 Nov 2008 13:13:48 -0000 X-Antivirus-qmail.entry.co.za-Mail-From: robby@grab.co.za via qmail.entry.co.za X-Antivirus-qmail.entry.co.za: 1.25-st-qms (Clear:RC:1(192.168.1.33):. Processed in 0.046207 secs Process 25762) Received: from unknown (HELO ?192.168.1.33?) (192.168.1.33) by qmail.entry.co.za with SMTP; 28 Nov 2008 13:13:48 -0000 From: Robby Balona To: Daniel Bye In-Reply-To: <20081128124147.GA24467@torus.slightlystrange.org> References: <1227864620.18902.20.camel@robby-desktop> <20081128124147.GA24467@torus.slightlystrange.org> Content-Type: text/plain Organization: Grab ISP Date: Fri, 28 Nov 2008 15:22:29 +0200 Message-Id: <1227878549.18902.30.camel@robby-desktop> Mime-Version: 1.0 X-Mailer: Evolution 2.22.1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Ruby on rails on freebsd 7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: robby@grab.co.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 13:21:12 -0000 On Fri, 2008-11-28 at 12:41 +0000, Daniel Bye wrote: > On Fri, Nov 28, 2008 at 11:30:20AM +0200, Robby Balona wrote: > > Has anybody managed to get Ruby on Rails 2 working on Freebsd 7 . I have > > tried for 3 day now . Done portupgrades and portsnaps but still cant > > seem to get it to work > > Yes, I'm using it very successfully. The version of Rails in ports > seems to have stuck at 1.2.6. > > > > > > > I get the following error when I run rails > > > > ../lib/rails_generator/options.rb:32:in default_options: undefined > > method write_inheritable_attribute > > > > I googled this error and found very little to help except that it looks > > like its something to do with activesupport-1.4.2 not being install > > correctly... > > rails 2.* ships with activsupport 2.*. > > Your best bet will be to upgrade your installed gems: > > $ sudo gem upgrade --system > > (If that doesn't work, try `update_rubygems' instead) > > Gems should now report its version as 1.3.1: > > $ gem -v > 1.3.1 > > Now you can simply use gems to install Rails and its dependencies: > > $ sudo gem install rails --include-dependencies > > If you really want version 2.0 or 2.1 instead of the recently released > 2.2, include a --version=2.1 to the command. However, given the > enhancements, I'd go with the latest. > > HTH, > > Dan > Great thanks will try all your advice! Regards Robby From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 13:27:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8EE551065672 for ; Fri, 28 Nov 2008 13:27:45 +0000 (UTC) (envelope-from fbsd06+4D=a1e01d82@mlists.homeunix.com) Received: from fallback-in1.mxes.net (fallback-out1.mxes.net [216.86.168.190]) by mx1.freebsd.org (Postfix) with ESMTP id 62E2E8FC12 for ; Fri, 28 Nov 2008 13:27:45 +0000 (UTC) (envelope-from fbsd06+4D=a1e01d82@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by fallback-in1.mxes.net (Postfix) with ESMTP id 819651648DF for ; Fri, 28 Nov 2008 08:11:25 -0500 (EST) Received: from gumby.homeunix.com (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id F061623E402 for ; Fri, 28 Nov 2008 08:11:23 -0500 (EST) Date: Fri, 28 Nov 2008 13:11:21 +0000 From: RW To: freebsd-questions@freebsd.org Message-ID: <20081128131121.4dc8b2f9@gumby.homeunix.com> In-Reply-To: <492F8E9B.5040805@a1poweruser.com> References: <492E60A8.6080105@a1poweruser.com> <492F82D1.4020000@bah.homeip.net> <492F8E9B.5040805@a1poweruser.com> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: pf or ipf rules to allow p2p Limewire through X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 13:27:45 -0000 On Fri, 28 Nov 2008 14:24:27 +0800 Fbsd1 wrote: > How about explaining just why this is going to allow p2p limewire > work? > > I think you are missing the fact that limewire does not use dedicated > port numbers. > Every session uses different port numbers You can presumably set the port number in your limewire configuration. I've not used limewire, but some p2p applications set random ports the first time they are used. I doubt limewire sets it randomly on every session - at least not without a way of overriding that behavior. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 13:40:27 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8104E1065673 for ; Fri, 28 Nov 2008 13:40:27 +0000 (UTC) (envelope-from admin@azuni.net) Received: from mail.azuni.net (ns0.azuni.net [217.25.25.3]) by mx1.freebsd.org (Postfix) with ESMTP id 924688FC14 for ; Fri, 28 Nov 2008 13:40:26 +0000 (UTC) (envelope-from admin@azuni.net) Received: (qmail 83595 invoked by uid 1004); 28 Nov 2008 13:13:43 -0000 Received: from admin@azuni.net by mail.azuni.net by uid 89 with qmail-scanner-1.20 (clamscan: 0.65. spamassassin: 2.63. Clear:RC:1(127.0.0.1):. Processed in 0.034051 secs); 28 Nov 2008 13:13:43 -0000 Received: from unknown (HELO ns0.azuni.net) (127.0.0.1) by localhost.azuni.net with AES256-SHA encrypted SMTP; 28 Nov 2008 13:13:43 -0000 Received: (from vpopmail@localhost) by ns0.azuni.net (8.12.9p1/8.12.9/Submit) id mASDDgjG083588; Fri, 28 Nov 2008 17:13:42 +0400 (AZT) Message-Id: <200811281313.mASDDgjG083588@ns0.azuni.net> X-Authentication-Warning: ns0.azuni.net: vpopmail set sender to admin@azuni.net using -f From: "admin" To: freebsd-questions@freebsd.org Date: Fri, 28 Nov 2008 17:13:42 +0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: [PC] booting RAID before IDE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 13:40:27 -0000 Hello, we have a PC with LSI RAID adapter and two SCSI disks. The disks in the array have been giving hardware errors recently, so we've decided to copy them using dump to another IDE disk. The problem is that when both the RAID array and the IDE disk are plugged in PC, it's unable to boot off the array, trying the empty IDE disk instead. Is there a way to boot from the array, and yet be able to use the new disk? From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 13:46:43 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E51A4106564A for ; Fri, 28 Nov 2008 13:46:43 +0000 (UTC) (envelope-from yury.michurin@gmail.com) Received: from mail-gx0-f19.google.com (mail-gx0-f19.google.com [209.85.217.19]) by mx1.freebsd.org (Postfix) with ESMTP id 723878FC13 for ; Fri, 28 Nov 2008 13:46:43 +0000 (UTC) (envelope-from yury.michurin@gmail.com) Received: by gxk12 with SMTP id 12so305054gxk.19 for ; Fri, 28 Nov 2008 05:46:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=sJM+5nYZwA1LO90oYP4i47vmQZ4sIhx5UcGTcG9NPzc=; b=dueTxN+YOOL+f0SXMDbnR+FesZtyEc82fkg9u5t3bvyEZemMczpGZsBLBPPFZGAllG oNzSwyX1VjYdj8HTwFcBR+qBUJtlWnP+nXK8NeMAvA/dbxn0YqkmP8siA4Ha2dZblGjO JCiUGDG2lFuopX3KGgQjgmcbRk7QWL52xv8nY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=pvLSqudu3oo+sUpaReVq/v0hhlIKkGhH8/UjLYbH6eOA7jllussEE+L6+iyn8bCWaJ 2N+EcEZNKfnw6+1t4n3wlcNbWfjru8jqlv8jA7WFnfb1BUiO+WN8xU91sYQ2e0WuSuQ6 o9ZtFPEQH7hye82qo1lxoWss8S+aUbqNjNt/Q= Received: by 10.64.213.8 with SMTP id l8mr8629500qbg.3.1227880001515; Fri, 28 Nov 2008 05:46:41 -0800 (PST) Received: by 10.64.204.14 with HTTP; Fri, 28 Nov 2008 05:46:41 -0800 (PST) Message-ID: <692c9a9f0811280546n59bd4055qa4d749baed356831@mail.gmail.com> Date: Fri, 28 Nov 2008 15:46:41 +0200 From: "Yury Michurin" To: "FreeBSD Questions" In-Reply-To: <200811280929.01814.fbsd.questions@rachie.is-a-geek.net> MIME-Version: 1.0 References: <692c9a9f0811271759o25d0108ha1f797823abd0027@mail.gmail.com> <200811280929.01814.fbsd.questions@rachie.is-a-geek.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: mydns fails to build X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 13:46:44 -0000 Hello, I've just tried, it seems to be failing in the same spot: /bin/sh ../../libtool --mode=link cc -O2 -fno-strict-aliasing -pipe -fomit-fram e-pointer -finline-functions -ffast-math -funsigned-char -rpath=/usr/lib:/usr/ local/lib -static -o mydns alias.o axfr.o cache.o conf.o data.o db.o encode.o error.o listen.o main.o queue.o recursive.o reply.o resolve.o rr.o sort.o sta tus.o task.o tcp.o udp.o update.o ../../src/lib/libmydns.a ../../lib/libmydnsut il.a -L/usr/local/lib/mysql -lmysqlclient -L/usr/lib -lz -L/usr/lib -lssl -lcry pto -lm mkdir .libs libtool: link: cannot find the library `' *** Error code 1 Stop in /usr/ports/dns/mydns/work/mydns-1.1.0/src/mydns. *** Error code 1 Stop in /usr/ports/dns/mydns/work/mydns-1.1.0/src. *** Error code 1 Stop in /usr/ports/dns/mydns/work/mydns-1.1.0. *** Error code 1 Stop in /usr/ports/dns/mydns/work/mydns-1.1.0. *** Error code 1 Stop in /usr/ports/dns/mydns. On Fri, Nov 28, 2008 at 10:29 AM, Mel wrote: > On Friday 28 November 2008 02:59:57 Yury Michurin wrote: > > Hello, > > I were trying to build /usr/ports/dns/mydns , the build failed with: > > > > ---snip--- > > /bin/sh ../../libtool --mode=link cc -O2 -fno-strict-aliasing -pipe > > -fomit-frame-pointer -finline-functions -ffast-math -funsigned-char > > -rpath=/usr/lib:/usr/local/lib -static -o mydns alias.o axfr.o cache.o > > conf.o data.o db.o encode.o error.o listen.o main.o queue.o recursive.o > > reply.o resolve.o rr.o sort.o status.o task.o tcp.o udp.o update.o > > ../../src/lib/libmydns.a ../../lib/libmydnsutil.a > /usr/local/lib/libintl.so > > -L/usr/local/lib /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib > > -L/usr/local/lib/mysql -lmysqlclient -L/usr/lib -lz -L/usr/lib -lssl > > -lcrypto -lm > > mkdir .libs > /bin/sh ../../libtool --mode=link cc -O2 -fno-strict-aliasing -pipe > -fomit-frame-pointer -finline-functions -ffast-math -funsigned-char > -rpath=/usr/lib:/usr/local/lib -static -o mydns alias.o axfr.o cache.o > conf.o data.o db.o encode.o error.o listen.o main.o queue.o recursive.o > reply.o resolve.o rr.o sort.o status.o task.o tcp.o udp.o update.o > ../../src/lib/libmydns.a ../../lib/libmydnsutil.a -L/usr/local/lib/mysql > -lmysqlclient -L/usr/lib -lz -L/usr/lib -lssl -lcrypto -lm > > My line looks like this. The difference being gettext. Can you try building > with WITHOUT_NLS=yes? > > -- > Mel > > Problem with today's modular software: they start with the modules > and never get to the software part. > From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 13:48:47 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1AE771065673 for ; Fri, 28 Nov 2008 13:48:47 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by mx1.freebsd.org (Postfix) with ESMTP id A423F8FC19 for ; Fri, 28 Nov 2008 13:48:46 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by ug-out-1314.google.com with SMTP id 30so1913532ugs.39 for ; Fri, 28 Nov 2008 05:48:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=31wAhIUh1UchWYnoAtKGjsLQnE7PqBuSJcKSJ9Pz+Ak=; b=dXTHcaor9pcxRWTDBg6nw64zyb5h6+xMFNuau/HpKzCP0AXsZQ6Xg885iJO38/Qqfk Rcfn0mozBEyAl7ZsKWO9wnOpCOowqpzU2dsGsAxU6Y0TTO/9CZtnOIA7dptoDxQhXda4 R7E1ISKJE1gisuhIzEH2e3omTf0eSe6hS8zto= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=V4p5FoJgHCI/3Z6O2BU85jxyyehtsHVks8RxTCtikTO3CEu1QvJ9DFK9IjxGHriNZ+ jzgCfGfyuALe1S30Bn2H27ood9z5UDk7NEmjHCL7/dXk4MHiAP13fl1/FHQqjFT1MIwh G+T5W+7l3jhjF3LzxE315q47x42FrbgVcSzwc= Received: by 10.210.59.14 with SMTP id h14mr8841320eba.182.1227880125454; Fri, 28 Nov 2008 05:48:45 -0800 (PST) Received: by 10.210.117.7 with HTTP; Fri, 28 Nov 2008 05:48:45 -0800 (PST) Message-ID: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> Date: Fri, 28 Nov 2008 15:48:45 +0200 From: "Valentin Bud" To: freebsd-questions MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 13:48:47 -0000 Hello community, I have to come up with a solution for a company that has as we speak 4 TB of data spread among 3 computers with lots of HDDs. Of course i've recommend them to buy a server for that storage capacity and for data organization. I thought of going on the ZFS way (on FreeBSD of course) with some raidz. One of the problems is that the server will stay in their office so it has to be quite silent. I honestly don't know what hardware to look for so if you have any suggestions i'm more than open to hear them. a great day, v From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 13:58:28 2008 Return-Path: Delivered-To: questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80DA8106564A for ; Fri, 28 Nov 2008 13:58:28 +0000 (UTC) (envelope-from chris.mortimer@cybernetmedia.co.uk) Received: from mta02.regusnet.com (mta02.regusnet.com [213.86.178.235]) by mx1.freebsd.org (Postfix) with ESMTP id E74A88FC19 for ; Fri, 28 Nov 2008 13:58:27 +0000 (UTC) (envelope-from chris.mortimer@cybernetmedia.co.uk) Received: from host90-152-0-28.ipv4.regusnet.com ([90.152.0.28] helo=192.168.1.4) by mta02.regusnet.com with smtp (Exim 4.63) (envelope-from ) id 1L5W5T-0001Wc-Ip for questions@FreeBSD.org; Thu, 27 Nov 2008 01:54:36 +0000 From: "Chris Mortimer" To: "questions" Date: Thu, 27 Nov 2008 01:42:10 +0000 Organization: Cybernet Media LTD MIME-Version: 1.0 Message-Id: <20081128135827.E74A88FC19@mx1.freebsd.org> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Cybernet Media LTD - Credit Crunch Ending Google SEO! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 13:58:28 -0000 Dear Website Manager, The following outlines Cybernet Media Ltd's 12 month optimisation process. Following analysis into your industry and competitors within your industry, the main issues outlined below apply for our search engine optimisation & Link Building services. Our Process: As laid out, we practise Natural Search Engine Optimisation, this means that we have to increase a sites web presence by utilising both on page and off page optimisation techniques. 1.On page refers to the work we carry out on your home page to make your website search engine friendly and includes the key phrases at an appropriate density and in the appropriate way for the search engine to give your site more relevancy than others. 2.Off page Optimisation refers to establishing your site within the Intenet community. This is done by submitting your site to various high page ranked directories in order to increase your page rank and your listings in the Search Engines. It takes time for Google and other search engines to recognise the off page optimisation and update themselves and present the sites that link to yours as official back links. This process works on a cycle which happens every three – six months. On Page Optimisation Work: When you sign with ourselves we may recommend the addition/alteration of text on your home page. This text is necessary in order for the search engines to associate your home page with your key search phrases. Search engines work on the two principles mentioned above; a major part is the text recognition algorithm. If you do not mention the key phrases on the page you will not appear in the listings for that phrase. Full keyword density within and throughout the site is essential. A maximum of 3-5 keywords/search terms per page is best for good search engine results. We will also write and add an Optimised Meta Structure and encode your key phrases with in it. We will also if necessary add a Robots dot text file to your server to instruct the search engine spiders what they can and cannot index. (What parts of your website the search engines can see.) Once the work is done, your home page will then validate to the W3C standard. The W3C’s primary mission is the creation of Web standards and guidelines. Since 1994, W3C has published more than ninety such standards, called W3C Recommendations. In order for the Web to reach its full potential, the most fundamental Web technologies must be compatible with one another and allow any hardware and software used to access the Web to work together. W3C refers to this goal as “Web interoperability.†By publishing open (non-proprietary) standards for Web languages and protocols, W3C seeks to avoid market fragmentation and thus Web fragmentation. We will also create and add the appropriate sitemaps to your website. The purpose of this is to get each individual page on your website indexed by Google and the other Search Engine Spiders. It also helps us to spread the Page Rank more evenly throughout the site. Off page optimisation This refers to your website status or web presence. Your web presence is indicated by a Google rating out of ten called Page Rank (PR). Page rank consists of the number of links pointing to your site and their status. Sites with high page ranks linking to yours with relevant content can boost your rankings greatly, however linking with sites that have no page rank, relevance or that are banned sites can be detrimental to your site. This is why we have a list of High page ranked directories where we can put your site in an appropriate category. We will also set you an account up with a popular link exchange programme and vet the links. This is so any requests that come for your site to exchange a link, we will check the status of the page they are offering a link with, if it is worthy of linking then a reciprocal link will be set up on a links page on your website. All link campaigns are bespoke to the clients site, and search phrases. Completion of Programming: Upon completion of programming, your file will then be passed through our Quality Assurance Tests. This is to make sure that the work carried out on your site meets many requirements and standards set by Cybernet Media LTD. If FTP access is an issue then it is possible to set up test servers for the above work to be carried out before passing the finished files back to yourselves for loading to your servers. The breakdown of optimisation is as follows: · Full website analysis and keyword research · Online competitor analysis (ongoing) · Confirmation of keywords to be optimised · Current site ranking report · On page optimisation including addition of SEO friendly content · Validation of home page to current W3C standards · Inclusion of robots instruction file · Search Engine site maps · Manual submission to high PageRanked directories (ongoing) · Ongoing maintenance of SEO program · Monthly search engine ranking reports (ROI) · Phone and email support during contract period from programmers and account managers · Link Campaign Recent Client Results: Richard, http://www.autoweb.co.uk "Used Cars" Ranking page 1 in Google.co.uk, MSN.co.uk, Yahoo.co.uk. Tel: 01757 701 010 Simon Emerton, http://www.intermail.co.uk - "Fulfilment" Ranking page 1 in Google.co.uk, MSN.co.uk, Yahoo.co.uk. Tel: 01635 565 050 Matt, http://www.premier-estates.co.uk - "Bulgaria Property" Ranking page 1 in Google.co.uk, MSN.co.uk and Yahoo.co.uk. Tel: 0208 695 7444 Oliver, http://www.safetyservicesdirect.com - "Risk assessments" Ranking page 1 in Google.co.uk, MSN.co.uk and Yahoo.co.uk. Tel: 08453 66 99 33 David, http://www.baggamenswear.co.uk - "Diesel Jeans" "Evisu Jeans" "Lacoste Polo" Ranking page 1 in Google.co.uk, MSN.co.uk and Yahoo.co.uk. Tel: 0208 295 1355 Olivia Boland, http://www.beautifulbeings.co.uk - "Cosmetic Surgery" Ranking page 1 in Google.co.uk, MSN.co.uk and Yahoo.co.uk. Tel: 0870 896 5859 Jonathan Allen, http://www.accountancyagejobs.com "Finance Jobs" "Accountant Jobs" Ranking page 1 in Google.co.uk, MSN.co.uk and Yahoo.co.uk. Tel: 0207 316 9667 Mark Julier, http://www.digitalairwireless.com "Wireless Network" Ranking page 1 in Google.co.uk, MSN.co.uk and Yahoo.co.uk. Tel: 0800 310 2050 Sean, http://www.smrbathrooms.co.uk "Bathrooms" Ranking page 1 in Google.co.uk, MSN.co.uk and Yahoo.co.uk. Tel: 0845 2255 045 Barry Sheen, http://www,ecodeckuk.com "Decking Tiles" Ranking page 1 in Google.co.uk, MSN.co.uk and Yahoo.co.uk. Tel: 0845 2700 696 Simon, http://www.precisiontime.co.uk "Gucci Watches" "Omega Watches" Ranking page 1 in Google.co.uk, MSN.co.uk and Yahoo.co.uk. Tel: 0845 862 9977 Tony, http://www.i-d-signs.co.uk "Corporate Signs" Ranking page 1 in Google.co.uk, MSN.co.uk and Yahoo.co.uk. Tel: 0208 309 4200 Terry Boyle, http://www.dirtyblinds.co.uk "Blind Cleaning" Ranking page 1 in Google.co.uk, MSN.co.uk and Yahoo.co.uk. Tel: 07801 225 227 I do hope this is of interest to you, and should there be any further questions regarding our services, please do not hesitate to contact me. Best Regards Chris Mortimer Cybernet Media LTD Direct line: +44 (0)845 0090271 Mob: 07738100509 Fax: 0845 0090 279 Email: chris@cybernetmedia.co.uk Web: www.cybernetmedia.co.uk Web: www.search-engine-promotion.eu.com 1st page of Google.co.uk "search engine optimisation" "search engine promotion" - We Practise What We Preach! Standard Disclaimer: This message is confidential. You should not copy it or disclose its contents to anyone. You may use and apply the information only for the intended purpose. Internet communications are not secure and therefore Cybernet Media LTD does not accept legal responsibility for the content of this message. Any views or opinions presented are only those of the author and not those of Cybernet Media LTD . If the e-mail has come to you in error please delete it and any attachments. Please note that Cybernet Media LTD may intercept incoming and outgoing e-mail communications. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 13:59:46 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D462E106567C for ; Fri, 28 Nov 2008 13:59:46 +0000 (UTC) (envelope-from Johan@double-l.nl) Received: from smtp-vbr6.xs4all.nl (smtp-vbr6.xs4all.nl [194.109.24.26]) by mx1.freebsd.org (Postfix) with ESMTP id 75F688FC18 for ; Fri, 28 Nov 2008 13:59:46 +0000 (UTC) (envelope-from Johan@double-l.nl) Received: from w2003s01.double-l.local (double-l.xs4all.nl [80.126.205.144]) by smtp-vbr6.xs4all.nl (8.13.8/8.13.8) with ESMTP id mASDxig5039538; Fri, 28 Nov 2008 14:59:44 +0100 (CET) (envelope-from Johan@double-l.nl) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1250" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.5 Date: Fri, 28 Nov 2008 14:59:45 +0100 Message-ID: <57200BF94E69E54880C9BB1AF714BBCB5DE2FF@w2003s01.double-l.local> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: 5 TB server Thread-Index: AclRYJfxnNbEnsViQHG+KB6OBsQwlgAAAZ7g References: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> From: "Johan Hendriks" To: "Valentin Bud" X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: RE: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 13:59:46 -0000 >Onderwerp: 5 TB server >Hello community, > I have to come up with a solution for a company that has as we speak >4 TB of data spread among 3 computers with lots of HDDs. Of course >i've recommend >them to buy a server for that storage capacity and for data = organization. > I thought of going on the ZFS way (on FreeBSD of course) with some >raidz. One of the problems >is that the server will stay in their office so it has to be quite = silent. > I honestly don't know what hardware to look for so if you have any = >suggestions >i'm more than open to hear them. >a great day, Well if you mean a lot of disk then you mean a lot of heat, and with = that comes good cooling and with that comes fans and most of them when = running at full speed will give you some noise. I have some HP Proliants running but those are no fun under your desk = even if the fans are running at a lower level. So it is better to put the server in a separate room with proper cooling = or else you are surely going to get hit with faulty hardware because of = the heat. In short a server needs cooling and most cooling gives noise, that is = just the way it is. Regards, Johan Hendriks No virus found in this outgoing message. Checked by AVG - http://www.avg.com=20 Version: 8.0.176 / Virus Database: 270.9.11/1816 - Release Date: = 27-11-2008 19:53 From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 14:00:56 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D287106564A for ; Fri, 28 Nov 2008 14:00:56 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 570D58FC18 for ; Fri, 28 Nov 2008 14:00:53 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mASE0i05005085; Fri, 28 Nov 2008 15:00:44 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mASE0iND005082; Fri, 28 Nov 2008 15:00:44 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 28 Nov 2008 15:00:44 +0100 (CET) From: Wojciech Puchar To: Valentin Bud In-Reply-To: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> Message-ID: <20081128145705.A5057@wojtek.tensor.gdynia.pl> References: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions Subject: Re: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 14:00:56 -0000 > > I thought of going on the ZFS way (on FreeBSD of course) with some i think you already tested it well and compared to normal UFS. > raidz. One of the problems > is that the server will stay in their office so it has to be quite silent. > > I honestly don't know what hardware to look for so if you have any suggestions > i'm more than open to hear them. if i were you i would get any motherboard with 8 SATA ports, up to 8 1TB disks, cheapest available CPU, good PCIe gigabit cards or two. if it has to be single volume i would use gstripe, or if it should be protected somehow - graid3 or graid5, and use UFS. if it's not that important - simply making each whole drive as one filesystem and multiple mount points. i strongly recommend later way - in case of any problems it's easiest to solve. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 14:02:17 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE7BE1065675 for ; Fri, 28 Nov 2008 14:02:17 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 140E18FC0A for ; Fri, 28 Nov 2008 14:02:16 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mASE22XA005092; Fri, 28 Nov 2008 15:02:02 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mASE22uB005089; Fri, 28 Nov 2008 15:02:02 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 28 Nov 2008 15:02:02 +0100 (CET) From: Wojciech Puchar To: admin In-Reply-To: <200811281313.mASDDgjG083588@ns0.azuni.net> Message-ID: <20081128150059.F5057@wojtek.tensor.gdynia.pl> References: <200811281313.mASDDgjG083588@ns0.azuni.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: [PC] booting RAID before IDE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 14:02:17 -0000 > them using dump to another IDE disk. The problem is that when both the RAID > array and the IDE disk are plugged in PC, it's unable to boot off the array, > trying the empty IDE disk instead. Is there a way to boot from the array, and > yet be able to use the new disk? simply read BIOS manual :) if it can't, boot from CD/DVD stop bootprocess pressing 6 at bootmenu then set vfs.root.mountfrom="ufs:your-array's-partition" boot From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 14:15:05 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 091EF106564A for ; Fri, 28 Nov 2008 14:15:05 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from bsdevel.alaskaparadise.com (bsdevel.alaskaparadise.com [208.86.224.193]) by mx1.freebsd.org (Postfix) with ESMTP id DD36A8FC17 for ; Fri, 28 Nov 2008 14:15:04 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from stargate.alaskaparadise.com (172-67-237-24.gci.net [24.237.67.172]) by bsdevel.alaskaparadise.com (Postfix) with ESMTP id 4BA0628E1281; Fri, 28 Nov 2008 14:15:04 +0000 (UTC) From: Beech Rintoul To: freebsd-questions@freebsd.org Date: Fri, 28 Nov 2008 05:15:03 -0900 User-Agent: KMail/1.10.1 (FreeBSD/8.0-CURRENT; KDE/4.1.1; i386; ; ) References: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> In-Reply-To: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811280515.03632.> Cc: Valentin Bud Subject: Re: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 14:15:05 -0000 On Friday 28 November 2008 04:48:45 Valentin Bud wrote: > Hello community, > > I have to come up with a solution for a company that has as we speak > 4 TB of data spread among 3 computers with lots of HDDs. Of course > i've recommend > them to buy a server for that storage capacity and for data organization. > > I thought of going on the ZFS way (on FreeBSD of course) with some > raidz. One of the problems > is that the server will stay in their office so it has to be quite silent. > > I honestly don't know what hardware to look for so if you have any > suggestions i'm more than open to hear them. > > a great day, You're going to need proper cooling regardless. Which is never "silent" If you can't locate the servers somewhere where fan noise etc won't bother anyone, several companies make "office quiet" insulated cooled rack enclosures. But AFAIK they are very pricey. Check on CDW Beech From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 14:40:25 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5B5B1065675 for ; Fri, 28 Nov 2008 14:40:25 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.26]) by mx1.freebsd.org (Postfix) with ESMTP id 572ED8FC0C for ; Fri, 28 Nov 2008 14:40:25 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so595946eyi.7 for ; Fri, 28 Nov 2008 06:40:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=TfZuiGoQR74+jVSO7lyzMlCi6qUlMHsuirc79jM/QTo=; b=ZzD2bJLwYCvbHlEecULSi/JAWItXTYDO9MTUY7IR341w7qrhgMkQxD9jcZ93QEsYov hhx1Jz4MYWoWMQrTH/EVYqnUqdbi2mFPFu6I8OTDINXgPCZLcvIQowW8N8jqCMZyk75W 7EbsDBI//4vHBfupKWDVlN7GZ2AVH8Icem0JI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=FUiWisWcI6XzimM9dhKAsgr1Nir7kFffNkpxgnq5ZX60JDu77CU4i0qX4ohEErDZOs 0/oq0yGTIG8UNE+nwnKcBBVvggfQkDPQ3y7Uzy93R7OcVrrfQfit5KFR/UA0HtNeUd2T iYmS6RHwbhHMcDmebI3lLbtqqW6o6APgCI79g= Received: by 10.210.139.15 with SMTP id m15mr8886579ebd.118.1227883224125; Fri, 28 Nov 2008 06:40:24 -0800 (PST) Received: by 10.210.117.7 with HTTP; Fri, 28 Nov 2008 06:40:24 -0800 (PST) Message-ID: <139b44430811280640g69d4843bq276b9aa2c8aa725d@mail.gmail.com> Date: Fri, 28 Nov 2008 16:40:24 +0200 From: "Valentin Bud" To: "Wojciech Puchar" In-Reply-To: <20081128145705.A5057@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> <20081128145705.A5057@wojtek.tensor.gdynia.pl> Cc: freebsd-questions Subject: Re: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 14:40:25 -0000 On Fri, Nov 28, 2008 at 4:00 PM, Wojciech Puchar wrote: >> >> I thought of going on the ZFS way (on FreeBSD of course) with some > > i think you already tested it well and compared to normal UFS. Well when ( if ) i'm going to actually buy the server i will so some tests with ZFS and some with UFS. On the ZFS side the most attractive thing is the backup and of course the easiness of administration. > >> raidz. One of the problems >> is that the server will stay in their office so it has to be quite silent. >> >> I honestly don't know what hardware to look for so if you have any >> suggestions >> i'm more than open to hear them. > > if i were you i would get any motherboard with 8 SATA ports, up to 8 1TB > disks, cheapest available CPU, good PCIe gigabit cards or two. 8x1TB with some mirroring + striping would equal how much in terms of available space? Sorry i have to do my homework regarding RAID :|. > > if it has to be single volume i would use gstripe, or if it should be > protected somehow - graid3 or graid5, and use UFS. > > if it's not that important - simply making each whole drive as one > filesystem and multiple mount points. > > i strongly recommend later way - in case of any problems it's easiest to > solve. > Thank you for you thoughts, v From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 14:48:22 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B2E21065670 for ; Fri, 28 Nov 2008 14:48:22 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.187]) by mx1.freebsd.org (Postfix) with ESMTP id AB0C38FC0C for ; Fri, 28 Nov 2008 14:48:21 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so764003nfh.33 for ; Fri, 28 Nov 2008 06:48:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=NIeIOQc6BQnHghJluy/yfWD8gDQSDxfQC+/iTGN1cLU=; b=Z8ESnRcqEXziNoDtku03ioF2aH2gQnGF4bhm4lVMJWL+iMVQPAZRQuvhocFjzQk4/C lhzmdgyxNphHJ7NKBnWfZplgav5f5SHaxzq1QQTd0JAAt/cW/RCzhm5rREfdvnSbbv4b /GCW8kFOhPr6RaTaYK5e3x5SyG8LeSOX7ljCc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=Bv8dMO3OROPtP16H3TzdVgeKg+MsNFPwTOfJnNB8CHNqMPrBGb38l67yaGikhN6RXl yoPJmOg975a41jtcEoxhy1PKBdLUacEqaqmz+xut22PmZ/w87bDd4j9Di1TxpPzk1DP1 tC2DGg0MKrgjdYCISywXSo+xhTFuNqrj64lFo= Received: by 10.210.10.8 with SMTP id 8mr8882503ebj.172.1227883700467; Fri, 28 Nov 2008 06:48:20 -0800 (PST) Received: by 10.210.117.7 with HTTP; Fri, 28 Nov 2008 06:48:20 -0800 (PST) Message-ID: <139b44430811280648g4d025c92q4ae862fafd27850a@mail.gmail.com> Date: Fri, 28 Nov 2008 16:48:20 +0200 From: "Valentin Bud" To: "Johan Hendriks" In-Reply-To: <57200BF94E69E54880C9BB1AF714BBCB5DE2FF@w2003s01.double-l.local> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> <57200BF94E69E54880C9BB1AF714BBCB5DE2FF@w2003s01.double-l.local> Cc: freebsd-questions@freebsd.org Subject: Re: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 14:48:22 -0000 On Fri, Nov 28, 2008 at 3:59 PM, Johan Hendriks wrote: > > >>Onderwerp: 5 TB server > >>Hello community, > >> I have to come up with a solution for a company that has as we speak >>4 TB of data spread among 3 computers with lots of HDDs. Of course >>i've recommend >>them to buy a server for that storage capacity and for data organization. > >> I thought of going on the ZFS way (on FreeBSD of course) with some >>raidz. One of the problems >>is that the server will stay in their office so it has to be quite silent. > >> I honestly don't know what hardware to look for so if you have any >suggestions >>i'm more than open to hear them. > >>a great day, > > Well if you mean a lot of disk then you mean a lot of heat, and with that comes good cooling and with that comes fans and most of them when running at full speed will give you some noise. I've already told them about this and of course as you said is just the way it is. Another solution would be to keep the server in some data center, preferably in the ISP data center, if they have one. What do you think about regarding that they work in Design with 200, 300+ Mb files? > > I have some HP Proliants running but those are no fun under your desk even if the fans are running at a lower level. > I have an Intel server in one of the offices i work for and believe i've never seen a server which make more noise than this one. And in another office i have a Dell one which is quite silent but it has only 2 or 3 HDD and there are 7 people working on samba so not so much load on the server. What do you think / know about Dell? > So it is better to put the server in a separate room with proper cooling or else you are surely going to get hit with faulty hardware because of the heat. Thought of that and looked around in their office but they don't have a separate room so that's why i would like to find the most silent server out there. thanks for your thoughts and comments, v > > In short a server needs cooling and most cooling gives noise, that is just the way it is. > > Regards, > Johan Hendriks > > > > > > > No virus found in this outgoing message. > Checked by AVG - http://www.avg.com > Version: 8.0.176 / Virus Database: 270.9.11/1816 - Release Date: 27-11-2008 19:53 > From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 14:50:44 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A9B91065676 for ; Fri, 28 Nov 2008 14:50:44 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.27]) by mx1.freebsd.org (Postfix) with ESMTP id 2CFEC8FC16 for ; Fri, 28 Nov 2008 14:50:43 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so598041eyi.7 for ; Fri, 28 Nov 2008 06:50:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=QWPfm8zlcK3+OFQUBTa9O26Rp+qGu4wDtjeob/SUbf0=; b=PJPaJYrYwY0yrd7Zg7TbaEbQh8N6oiDH0om4vy9B6ufcQTaw1QaNTOIhxsDApNEEnF ziKBOwCULSHgXucJ7mvf8G15G5P7srq/dITFU6Vf1LDk0C2ZUe/jbxttJcykr09T2VxT GFoym0KpaIT6malAcfpygubnsQzZvHwHO9YXE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=F574crKBnFyhTC5p9t6MWHPCHj5CYFuHC3h1pvqCSi+bWhOE2n7HxWNUqruoIblHwI zZxXprc5Ii3kY3msYrjiqeeOljuKZNX+jV+lOfo0EVhVCbVqzHwvhVEPUnjV96nIE+5B aYt/0mz/YrJWaI/ahUtLvkjtm6X1rMq+ge0UU= Received: by 10.210.20.17 with SMTP id 17mr8986055ebt.5.1227883842983; Fri, 28 Nov 2008 06:50:42 -0800 (PST) Received: by 10.210.117.7 with HTTP; Fri, 28 Nov 2008 06:50:42 -0800 (PST) Message-ID: <139b44430811280650q3f7aa22eifc90ee5a7cfcca57@mail.gmail.com> Date: Fri, 28 Nov 2008 16:50:42 +0200 From: "Valentin Bud" To: "Beech Rintoul" In-Reply-To: <-6231679136579273975@unknownmsgid> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> <-6231679136579273975@unknownmsgid> Cc: freebsd-questions@freebsd.org Subject: Re: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 14:50:44 -0000 On Fri, Nov 28, 2008 at 4:15 PM, Beech Rintoul wrote: > On Friday 28 November 2008 04:48:45 Valentin Bud wrote: >> Hello community, >> >> I have to come up with a solution for a company that has as we speak >> 4 TB of data spread among 3 computers with lots of HDDs. Of course >> i've recommend >> them to buy a server for that storage capacity and for data organization. >> >> I thought of going on the ZFS way (on FreeBSD of course) with some >> raidz. One of the problems >> is that the server will stay in their office so it has to be quite silent. >> >> I honestly don't know what hardware to look for so if you have any >> suggestions i'm more than open to hear them. >> >> a great day, > > You're going to need proper cooling regardless. Which is never "silent" If you > can't locate the servers somewhere where fan noise etc won't bother anyone, > several companies make "office quiet" insulated cooled rack enclosures. But > AFAIK they are very pricey. Check on CDW > Of course the proper cooling is essential when we are talking about this kind of data storage capacity. I will have to check out for the cooled insulated rack enclosures you mentioned. thanks, v > Beech > > From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 15:06:39 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57E801065673 for ; Fri, 28 Nov 2008 15:06:39 +0000 (UTC) (envelope-from nejc@skoberne.net) Received: from mail.tnode.com (common.tnode.com [91.185.203.243]) by mx1.freebsd.org (Postfix) with ESMTP id 152618FC0A for ; Fri, 28 Nov 2008 15:06:38 +0000 (UTC) (envelope-from nejc@skoberne.net) Received: from localhost (mail.jail [10.1.1.10]) by mail.tnode.com (Postfix) with ESMTP id 303E921FC684; Fri, 28 Nov 2008 15:47:34 +0100 (CET) Received: from mail.tnode.com ([10.1.1.10]) by localhost (mail.tnode.com [10.1.1.10]) (amavisd-maia, port 10024) with ESMTP id 30177-02; Fri, 28 Nov 2008 15:47:33 +0100 (CET) Received: from [192.168.123.100] (lk.84.20.249.154.dc.cable.static.lj-kabel.net [84.20.249.154]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: nejc@skoberne.net) by mail.tnode.com (Postfix) with ESMTPSA id 5AFDB21FBE9D; Fri, 28 Nov 2008 15:47:33 +0100 (CET) Message-ID: <49300485.7030609@skoberne.net> Date: Fri, 28 Nov 2008 15:47:33 +0100 From: Nejc Skoberne User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Wojciech Puchar References: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> <20081128145705.A5057@wojtek.tensor.gdynia.pl> In-Reply-To: <20081128145705.A5057@wojtek.tensor.gdynia.pl> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: Maia Mailguard Cc: freebsd-questions Subject: Re: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 15:06:39 -0000 Hey, > if it has to be single volume i would use gstripe, or if it should be > protected somehow - graid3 or graid5, and use UFS. geom_raid5 is stable? If yes, how come it is not included in FreeBSD yet? Nejc From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 15:19:35 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87EFE106564A for ; Fri, 28 Nov 2008 15:19:35 +0000 (UTC) (envelope-from af.gourmet@videotron.ca) Received: from relais.videotron.ca (relais.videotron.ca [24.201.245.36]) by mx1.freebsd.org (Postfix) with ESMTP id 6597C8FC18 for ; Fri, 28 Nov 2008 15:19:35 +0000 (UTC) (envelope-from af.gourmet@videotron.ca) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=ISO-8859-1; format=flowed Received: from [192.168.0.51] ([96.21.103.185]) by VL-MH-MR002.ip.videotron.ca (Sun Java(tm) System Messaging Server 6.3-4.01 (built Aug 3 2007; 32bit)) with ESMTP id <0KB100HVZRSMNLC0@VL-MH-MR002.ip.videotron.ca> for freebsd-questions@freebsd.org; Fri, 28 Nov 2008 09:19:35 -0500 (EST) Message-id: <492FFDF8.1020705@videotron.ca> Date: Fri, 28 Nov 2008 09:19:36 -0500 From: PJ User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) To: freebsd-questions@freebsd.org Subject: repair v.7 installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 15:19:35 -0000 I believe that my installation should be salvageable but I do not know how to phrase my search question. Here is the problem: Apparently due to some connector problem in the computer one or some files were damaged. I ran a regenerating program on the disk and all sectors are readable. How can I locate the problem files and repair or reinstall them without damaging other files? From trying to boot the system, it appears that the problem is related to the login files: I boot to safe mode and get the logon prompt which is not accepted. I then get to the single user mode and can read the contents of the root (top or main) directory and subdirectories. The command "df" returns "-70016" under Avail and "104%" under Capacity, Mounted on / . Or is it possible to reinstall the system from the installation CD? I would like to avoid having to reinstall all the programs that run on this local development server - Apache, Samba, Cups, php, pstgresql, etc. Thanks for any help and/or suggestions. Phil Jourdan From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 15:35:42 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 360FD1065672 for ; Fri, 28 Nov 2008 15:35:42 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id B3AC28FC12 for ; Fri, 28 Nov 2008 15:35:41 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1L65NY-0004gQ-74 for freebsd-questions@freebsd.org; Fri, 28 Nov 2008 15:35:36 +0000 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 28 Nov 2008 15:35:36 +0000 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 28 Nov 2008 15:35:36 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Ivan Voras Date: Fri, 28 Nov 2008 16:35:28 +0100 Lines: 65 Message-ID: References: <492FFDF8.1020705@videotron.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig170FF6C7965DB4D03D59129C" X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Thunderbird 2.0.0.18 (X11/20081125) In-Reply-To: <492FFDF8.1020705@videotron.ca> X-Enigmail-Version: 0.95.0 Sender: news Subject: Re: repair v.7 installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 15:35:42 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig170FF6C7965DB4D03D59129C Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable PJ wrote: > I believe that my installation should be salvageable but I do not know > how to phrase my search question. > Here is the problem: > Apparently due to some connector problem in the computer one or some > files were damaged. I ran a regenerating program on the disk and all > sectors are readable. > How can I locate the problem files and repair or reinstall them without= > damaging other files? Try reading all the files on the drive, something like > find / -exec cat "{}" > /dev/null ";" See if any files error out. > From trying to boot the system, it appears that the problem is related > to the login files: I boot to safe mode and get the logon prompt which > is not accepted. I then get to the single user mode and can read the Boot to a single-user mode and see if /etc/passwd and /etc/master.passwd are ok. If so, regenerate the databases (easiest way is to run vipw). > contents of the root (top or main) directory and subdirectories. > The command "df" returns "-70016" under Avail and "104%" under Capacity= , > Mounted on / . This doesn't necessarily mean there's an error. If you filled the file system past its reserved space limit, it's normal to get negative available bytes and over 100% usage. See also if you have a /lost+found directory. > Or is it possible to reinstall the system from the installation CD? I > would like to avoid having to reinstall all the programs that run on > this local development server - Apache, Samba, Cups, php, pstgresql, et= c. It is possible, with care, to reinstall the system from the CD media, and keep all user settings. /usr/local/* will not be touched in any case when performing an upgrade. --------------enig170FF6C7965DB4D03D59129C Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJMA/AldnAQVacBcgRAtxMAKCpERhbvToJv0ufp/QSpq4H+m6YYQCdHofE SjW4t7HZU+v+1JlWShOdLUM= =U0WT -----END PGP SIGNATURE----- --------------enig170FF6C7965DB4D03D59129C-- From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 16:08:15 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D13D21065672 for ; Fri, 28 Nov 2008 16:08:15 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from hmacs.cmi.ua.ac.be (hmacs.cmi.ua.ac.be [143.129.75.10]) by mx1.freebsd.org (Postfix) with ESMTP id 6DE148FC17 for ; Fri, 28 Nov 2008 16:08:15 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from hmacs.cmi.ua.ac.be (localhost [127.0.0.1]) by hmacs.cmi.ua.ac.be (8.13.8+Sun/8.13.8) with ESMTP id mASG8De3019462 for ; Fri, 28 Nov 2008 17:08:13 +0100 (CET) Received: from localhost (pdon@localhost) by hmacs.cmi.ua.ac.be (8.13.8+Sun/8.13.8/Submit) with ESMTP id mASG8D05019459 for ; Fri, 28 Nov 2008 17:08:13 +0100 (CET) X-Authentication-Warning: hmacs.cmi.ua.ac.be: pdon owned process doing -bs Date: Fri, 28 Nov 2008 17:08:13 +0100 (CET) From: Pieter Donche X-X-Sender: pdon@hmacs.cmi.ua.ac.be To: "mail.list freebsd-questions" Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: XMing and FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pieter Donche List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 16:08:15 -0000 I have - in the same subnet - a WinXP PC and a multi-boot PC with a) OpenSuse10.3, b) FreeBSD-7.0 (and c) WinXP) I installed the free X-Windows server Xming on the WinXP PC, and I can connect to the other PC when it is booted in OpenSUSE 10.3: Xming is configured for 'open session via XDMCP', I specify fully qualified hostname and I get the openSUSE username/password login screen, etc... (I didn't need to change anything in the OpenSuSE) But when that PC is booted into FreeBSD - XMing only gives me a screen with a grey background and a black X - connection seems not established. The FreeBSD runs KDM as window manager and KDE as desktop. Why and how to remedy? From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 16:31:06 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 961961065670 for ; Fri, 28 Nov 2008 16:31:06 +0000 (UTC) (envelope-from ptkrisada@gmail.com) Received: from ti-out-0910.google.com (ti-out-0910.google.com [209.85.142.189]) by mx1.freebsd.org (Postfix) with ESMTP id 2EA8E8FC1A for ; Fri, 28 Nov 2008 16:31:06 +0000 (UTC) (envelope-from ptkrisada@gmail.com) Received: by ti-out-0910.google.com with SMTP id a1so1009151tib.3 for ; Fri, 28 Nov 2008 08:31:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:mail-followup-to:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=3+kCeocZdpcLvfZYB5uCd85lrs1pMy1NRMhgDxaTy0w=; b=HgJ/UeT3vym0ZVpoK2hR171a9C5OdJV2zpQYoqEaz/GXoSa3ZMpL0w7JTwm7OM03K8 C5A2gYbLE2LNjjgCn8o49j8Ou1QFl/nXQOMMk+xKc/f3o4nl8iy07t2kk3hzqnlKvOC+ xWduggWStLUBahFX+lNTmrgpYW932sOzZkE1M= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; b=eORdB3xf2DkROX/nvsUYHbY0l3ODlKdyuh86wEO56yXr7/24qUTLmJcxngqUknLeOs OmjBAaOiHIHNoxuUYHxiwuDyYUwGEwbeQF7jMxYkiiQgSfbEn3gG9/sWkNhCXcSE76OW kOO4y/acGJGapUIXIlmveBI/Ed2w+A1Y2d4O0= Received: by 10.110.5.3 with SMTP id 3mr12201955tie.4.1227889865227; Fri, 28 Nov 2008 08:31:05 -0800 (PST) Received: from gmail.com ([203.153.174.222]) by mx.google.com with ESMTPS id u12sm1431102tia.3.2008.11.28.08.30.49 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 28 Nov 2008 08:30:57 -0800 (PST) Date: Fri, 28 Nov 2008 23:30:44 +0700 From: Pongthep Kulkrisada To: freebsd-questions@freebsd.org Message-ID: <20081128163044.GA1850@gmail.com> Mail-Followup-To: freebsd-questions@freebsd.org, Manolis Kiagias , Andrew , Fbsd1 , Ian Smith References: <20081123120013.8EDF310657E3@hub.freebsd.org> <20081124012858.J43853@sola.nimnet.asn.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081124012858.J43853@sola.nimnet.asn.au> User-Agent: Mutt/1.4.2.3i Cc: Ian Smith , Andrew , Fbsd1 , Manolis Kiagias Subject: Re: Problem about ppp -nat X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 16:31:06 -0000 Hi all, > I didn't touch /etc/ppp/ppp.conf, which has been working for 5 years > since FBSD5.0R. Even if I go back to GENERIC kernel. I could not dial out > to ISP in any ways. I didn't know what I do wrong even if > I did read many docs. I tried exactly what being described in the handbook. But all failed, I still can't dial ISP. I think that posting /etc/ppp/ppp.conf may be useful for your diagnostic. Note that this file has been used for long time and never changed. But I've just reminded that ppp is changed from version to version. My ppp.conf may not suit the current version. I don't know. # cat /etc/ppp/ppp.conf default: set log Phase Chat LCP IPCP CCP tun command ident user-ppp VERSION (built COMPILATIONDATE) set device /dev/cuad0 set ctsrts off # enables software flow control set accmap 000a0000 # comments out these 2 lines for hardware flow control set speed 115200 disable pred1 deny pred1 disable lqr deny lqr set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \ \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 180 CONNECT" set redial 3 20 enable dns # request DNS info (for resolv.conf) isp: set phone 0123456789 set authname mylogin@myisp.com set authkey mypassword set timeout 0 add! default HISADDR # Add a (sticky) default route set openmode active accept pap set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 add 0 0 HISADDR Thank you. Pongthep From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 17:03:58 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CE251065670 for ; Fri, 28 Nov 2008 17:03:58 +0000 (UTC) (envelope-from 240olofsson@telia.com) Received: from av7-1-sn3.vrr.skanova.net (av7-1-sn3.vrr.skanova.net [81.228.9.181]) by mx1.freebsd.org (Postfix) with ESMTP id 235478FC13 for ; Fri, 28 Nov 2008 17:03:57 +0000 (UTC) (envelope-from 240olofsson@telia.com) Received: by av7-1-sn3.vrr.skanova.net (Postfix, from userid 502) id ADE863823B; Fri, 28 Nov 2008 18:03:56 +0100 (CET) Received: from smtp3-2-sn3.vrr.skanova.net (smtp3-2-sn3.vrr.skanova.net [81.228.9.102]) by av7-1-sn3.vrr.skanova.net (Postfix) with ESMTP id 922943823B; Fri, 28 Nov 2008 18:03:56 +0100 (CET) Received: from [192.168.1.31] (90-230-141-139-no41.tbcn.telia.com [90.230.141.139]) by smtp3-2-sn3.vrr.skanova.net (Postfix) with ESMTP id 5259437E4A; Fri, 28 Nov 2008 18:03:56 +0100 (CET) Message-ID: <49302479.6080505@telia.com> Date: Fri, 28 Nov 2008 18:03:53 +0100 From: Roger Olofsson <240olofsson@telia.com> User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Laszlo Nagy References: <492E4F79.7090309@shopzeus.com> In-Reply-To: <492E4F79.7090309@shopzeus.com> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: CUPS: cannot see printer from various program X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: raggen@raggens.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 17:03:58 -0000 Laszlo Nagy skrev: > The printer is Epson Stylus Photo R265. I'm using gutenprint 5 and CUPS. > The test page prints well from CUPS. I can also print images and web > pages from firefox, because the "CUPS/R265" printer can be selected in > the print dialog of firefox. > > However, when I open an image from eog (eye of gnome), the only printer > destination I can choose is "LPR". Which is bad, because this is a > printer server with diskless clients, and the users must be able to > select print options from the GUI. > > The system is FreeBSD 7.0. My girlfriend had the same problem with > Ubuntu before, but not with kiwi, so it might not be related to FreeBSD. > > Thanks, > > Laci > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > > ------------------------------------------------------------------------ > > > No virus found in this incoming message. > Checked by AVG - http://www.avg.com > Version: 8.0.175 / Virus Database: 270.9.10/1812 - Release Date: 2008-11-25 19:53 > Hello Laszlo, You might want to add the following lines to /etc/make.conf CUPS_OVERWRITE_BASE=yes NO_LPR=yes WITH_CUPS=yes And rebuild the application you want to print from. (The above was found on the excellent guide at http://www.math.colostate.edu/~reinholz/freebsd/) Greetings /Roger From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 17:04:24 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9F8F1065673 for ; Fri, 28 Nov 2008 17:04:24 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 195FB8FC25 for ; Fri, 28 Nov 2008 17:04:23 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mASH4C9m005429; Fri, 28 Nov 2008 18:04:12 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mASH4Bcf005426; Fri, 28 Nov 2008 18:04:11 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 28 Nov 2008 18:04:11 +0100 (CET) From: Wojciech Puchar To: Johan Hendriks In-Reply-To: <57200BF94E69E54880C9BB1AF714BBCB5DE2FF@w2003s01.double-l.local> Message-ID: <20081128180302.E5415@wojtek.tensor.gdynia.pl> References: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> <57200BF94E69E54880C9BB1AF714BBCB5DE2FF@w2003s01.double-l.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Valentin Bud Subject: RE: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 17:04:24 -0000 > Well if you mean a lot of disk then you mean a lot of heat, and with that comes good cooling and with that comes fans and most of them when running at full speed will give you some noise. > i have 8 SATA drives in one case, nothing special, and just one small fan added for upper drives. all runs cool. disks take no more than 15W each, usually less. compare this to CPUs taking 50-100W From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 17:07:43 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B88FB1065673 for ; Fri, 28 Nov 2008 17:07:43 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 2CDFE8FC08 for ; Fri, 28 Nov 2008 17:07:41 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mASH7aqg005450; Fri, 28 Nov 2008 18:07:36 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mASH7Zoi005447; Fri, 28 Nov 2008 18:07:35 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 28 Nov 2008 18:07:35 +0100 (CET) From: Wojciech Puchar To: Valentin Bud In-Reply-To: <139b44430811280640g69d4843bq276b9aa2c8aa725d@mail.gmail.com> Message-ID: <20081128180448.Y5415@wojtek.tensor.gdynia.pl> References: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> <20081128145705.A5057@wojtek.tensor.gdynia.pl> <139b44430811280640g69d4843bq276b9aa2c8aa725d@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions Subject: Re: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 17:07:43 -0000 > tests with ZFS and > some with UFS. On the ZFS side the most attractive thing is the backup > and of course > the easiness of administration. don't get fooled. >> >> if i were you i would get any motherboard with 8 SATA ports, up to 8 1TB >> disks, cheapest available CPU, good PCIe gigabit cards or two. > > 8x1TB with some mirroring + striping would equal how much in terms of > available space? Sorry i have to do my homework regarding RAID :|. gstripe of 4 gmirrors will give 4TB graid3 or graid5 will give 7TB, but much lower I/O performance (same with ZFS raidz). if you mainly read/write large files it's OK. With graid5 read performance is near gstripe only writes are slow, with graid3 or ZFS raidz both are slow. To be exact - single reads are not slow, but I/O capacity is low so under concurrent reads it will be very slow. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 17:08:19 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BECB51065670 for ; Fri, 28 Nov 2008 17:08:19 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 28F2F8FC12 for ; Fri, 28 Nov 2008 17:08:17 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mASH8B29005457; Fri, 28 Nov 2008 18:08:11 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mASH891V005454; Fri, 28 Nov 2008 18:08:11 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 28 Nov 2008 18:08:09 +0100 (CET) From: Wojciech Puchar To: Nejc Skoberne In-Reply-To: <49300485.7030609@skoberne.net> Message-ID: <20081128180741.H5415@wojtek.tensor.gdynia.pl> References: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> <20081128145705.A5057@wojtek.tensor.gdynia.pl> <49300485.7030609@skoberne.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions Subject: Re: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 17:08:19 -0000 > geom_raid5 is stable? If yes, how come it is not included in FreeBSD yet? no idea how "stable" is it, except that it work for me on one computer. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 17:10:00 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFBD7106564A for ; Fri, 28 Nov 2008 17:10:00 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.236]) by mx1.freebsd.org (Postfix) with ESMTP id 964EC8FC38 for ; Fri, 28 Nov 2008 17:10:00 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so1405095rvf.43 for ; Fri, 28 Nov 2008 09:10:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:mime-version:content-type:content-transfer-encoding :content-disposition:message-id; bh=IWuOQGsXNMWEHqzTpL1ek+vWQMcvRjsrSUAZxDxD8+4=; b=X3G/+LYqtvj5z4XcV3YzHBQm7QlwtDhlgaJQijBaYLIIzIviWSgzDoET52OxCI6zoM Iun3phyFsN18OtpqzIe4Tgh8tRvgSNEtHYutgUVFAKgZEFDGj2kHUL/vmqDIA3Ij/JC0 OKIbwtmu1UDbfl3Xy6gszjXDN06dJSyxH76x0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:mime-version:content-type :content-transfer-encoding:content-disposition:message-id; b=ZR6kOeF4utbvN/ddbqbEMVDyrC+8xVc2HZZozikclzInecHtbIje22yZv2Gg1tIHba yDW+Skyi4xMihqGJk4TLYMRs/r+ivhnaVPS4OAJOAp4CmnY3bbwSslbedy/3KWs9wVXF aqwuc+UeFpUu6CdBqAmyz2GXBaS6c5CMNlaZs= Received: by 10.141.205.10 with SMTP id h10mr3864062rvq.225.1227892200273; Fri, 28 Nov 2008 09:10:00 -0800 (PST) Received: from sniper (75-167-134-20.bois.qwest.net [75.167.134.20]) by mx.google.com with ESMTPS id b39sm619171rvf.0.2008.11.28.09.09.59 (version=SSLv3 cipher=RC4-MD5); Fri, 28 Nov 2008 09:09:59 -0800 (PST) From: Andrew Falanga To: FreeBSD Questions Date: Fri, 28 Nov 2008 10:08:19 -0700 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811281008.19578.af300wsm@gmail.com> Subject: gmirror and the UFS file systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 17:10:00 -0000 Hi, I'm getting ready to move forward on enabling gmirror on my churches website server (FreeBSD 7.0-RELEASE p4). I used defaults during the install (most importantly for this, the file system defaults). I've read in the manual pages that the data for the mirror is contained in the last sector of the drive/partitions. So, I want to mirror the entire drive (ad4) to the second drive (ad5). This server doesn't yet have much data at all. I'm wondering if I turn on this mirror, will anything important be overwritten in the last sector? Andy From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 17:17:15 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEDD91065673 for ; Fri, 28 Nov 2008 17:17:15 +0000 (UTC) (envelope-from 240olofsson@telia.com) Received: from av6-2-sn3.vrr.skanova.net (av6-2-sn3.vrr.skanova.net [81.228.9.180]) by mx1.freebsd.org (Postfix) with ESMTP id 7A33E8FC19 for ; Fri, 28 Nov 2008 17:17:15 +0000 (UTC) (envelope-from 240olofsson@telia.com) Received: by av6-2-sn3.vrr.skanova.net (Postfix, from userid 502) id 1AB2438096; Fri, 28 Nov 2008 18:17:14 +0100 (CET) Received: from smtp3-1-sn3.vrr.skanova.net (smtp3-1-sn3.vrr.skanova.net [81.228.9.101]) by av6-2-sn3.vrr.skanova.net (Postfix) with ESMTP id EA38D37F75; Fri, 28 Nov 2008 18:17:13 +0100 (CET) Received: from [192.168.1.31] (90-230-141-139-no41.tbcn.telia.com [90.230.141.139]) by smtp3-1-sn3.vrr.skanova.net (Postfix) with ESMTP id D62BA37E49; Fri, 28 Nov 2008 18:17:13 +0100 (CET) Message-ID: <49302797.2050306@telia.com> Date: Fri, 28 Nov 2008 18:17:11 +0100 From: Roger Olofsson <240olofsson@telia.com> User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Pieter Donche References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "mail.list freebsd-questions" Subject: Re: XMing and FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: raggen@raggens.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 17:17:15 -0000 Pieter Donche skrev: > I have - in the same subnet - a WinXP PC and a multi-boot PC with > a) OpenSuse10.3, b) FreeBSD-7.0 (and c) WinXP) > > I installed the free X-Windows server Xming on the WinXP PC, > and I can connect to the other PC when it is booted in OpenSUSE 10.3: > Xming is configured for 'open session via XDMCP', I specify fully > qualified hostname and I get the openSUSE username/password login > screen, etc... > > (I didn't need to change anything in the OpenSuSE) > > But when that PC is booted into FreeBSD - XMing only gives me a screen > with a grey background and a black X - connection seems not established. > > The FreeBSD runs KDM as window manager and KDE as desktop. > > Why and how to remedy? > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > > ------------------------------------------------------------------------ > > > No virus found in this incoming message. > Checked by AVG - http://www.avg.com > Version: 8.0.176 / Virus Database: 270.9.11/1817 - Release Date: 2008-11-28 08:17 > Hello Pieter, You might want to look over your settings in the following: /usr/local/lib/X11/wdm/Xclients Make sure that paths/names etc are ok for the section about kde startkde*|kde*|KDE*) # startup kde STARTKDE_PATH=startkde if ! test -x $STARTKDE_PATH ; then FindInPath $STARTKDE_PATH if test -n "$result" -a -x "$result"; then STARTKDE_PATH="$result"; fi fi if [ -x $STARTKDE_PATH ] ; then echo Starting kde >$HOME/.xwm.msgs exec $STARTKDE_PATH -console >>$HOME/.xwm.msgs 2>&1 fi ;; You should look for eventual settings for displaymanagers for KDM - I am sorry but I don not know where/how/if KDM has a setting for this. WDM has this in the wdm-config file - maybe KDM has something similar? (The wdm setting is like this: DisplayManager*wdmWm: WindowMaker:FluxBox) You should also check your Xorg log files for any messages - they should be in /var/log. Greetings /Roger From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 17:30:05 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EED81065675 for ; Fri, 28 Nov 2008 17:30:05 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from mail.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 7455D8FC16 for ; Fri, 28 Nov 2008 17:30:05 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (mail.rachie.is-a-geek.net [192.168.2.101]) by mail.rachie.is-a-geek.net (Postfix) with ESMTP id B04CFAFCF5D; Fri, 28 Nov 2008 08:30:04 -0900 (AKST) From: Mel To: freebsd-questions@freebsd.org Date: Fri, 28 Nov 2008 18:29:55 +0100 User-Agent: KMail/1.9.7 References: <200811281008.19578.af300wsm@gmail.com> In-Reply-To: <200811281008.19578.af300wsm@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811281829.58003.fbsd.questions@rachie.is-a-geek.net> Cc: Andrew Falanga Subject: Re: gmirror and the UFS file systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 17:30:05 -0000 On Friday 28 November 2008 18:08:19 Andrew Falanga wrote: > I'm getting ready to move forward on enabling gmirror on my churches > website server (FreeBSD 7.0-RELEASE p4). I used defaults during the > install (most importantly for this, the file system defaults). I've read > in the manual pages that the data for the mirror is contained in the last > sector of the drive/partitions. So, I want to mirror the entire drive > (ad4) to the second drive (ad5). This server doesn't yet have much data at > all. I'm wondering if I turn on this mirror, will anything important be > overwritten in the last sector? I've converted UFS filesystems with just the base install and a few ports over to gmirror many times and no problem. I guess the question can best be paraphrased as: "If I cross a street in a residential area at 4am in the morning, will I get hit by a car?" Also, gmirror create will tell you if the last sector contains data, just like a driver would honk his horn. -- Mel Problem with today's modular software: they start with the modules and never get to the software part. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 17:35:22 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F13451065679 for ; Fri, 28 Nov 2008 17:35:22 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 277F58FC20 for ; Fri, 28 Nov 2008 17:35:21 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mASHZFxJ005538; Fri, 28 Nov 2008 18:35:15 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mASHZE47005535; Fri, 28 Nov 2008 18:35:14 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 28 Nov 2008 18:35:14 +0100 (CET) From: Wojciech Puchar To: Andrew Falanga In-Reply-To: <200811281008.19578.af300wsm@gmail.com> Message-ID: <20081128183324.V5528@wojtek.tensor.gdynia.pl> References: <200811281008.19578.af300wsm@gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: FreeBSD Questions Subject: Re: gmirror and the UFS file systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 17:35:23 -0000 > I'm getting ready to move forward on enabling gmirror on my churches website > server (FreeBSD 7.0-RELEASE p4). I used defaults during the install (most > importantly for this, the file system defaults). I've read in the manual > pages that the data for the mirror is contained in the last sector of the > drive/partitions. So, I want to mirror the entire drive (ad4) to the second > drive (ad5). This server doesn't yet have much data at all. I'm wondering > if I turn on this mirror, will anything important be overwritten in the last > sector? is your partition size multiply of fragment size without remainder? if not (quite a big chance) at least one sector at the end is unused and never be. so go on, but then fix disklabel, as c partition is 1 sector smaller. of course - boot from livecd to do this. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 18:38:37 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0ED31065672 for ; Fri, 28 Nov 2008 18:38:37 +0000 (UTC) (envelope-from modulok@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.173]) by mx1.freebsd.org (Postfix) with ESMTP id B541E8FC19 for ; Fri, 28 Nov 2008 18:38:37 +0000 (UTC) (envelope-from modulok@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so1592006wfg.7 for ; Fri, 28 Nov 2008 10:38:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=qfu+Yv3ocnuSk0Zuqy7QWmuhUI6dv8q9VrBwlQWsZDk=; b=gwXFm5vy9f8Qx7LZrAfwclXp8oNlqgF93r6LRbrRzPxHagxJHnvFGpqyiUtbyhPrU9 f9csr9vN3rTcx8NZvBk4mqZm4nH6KAdr5n/CervQOuWzki/4sE2KboaHb/PB6BLAOW3F nIJS8hDm3VhntzTUdeolvElQ+UnXI5B8pjsWE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=QpbvG92neSFa72j97m/2ACVEudkUw91C8w7fRpE0mniSlfkaUUEtKuG1VBAUKkW0bX lStlS4MKVomiS3gp4vsA/K8qgu6tUGcyd7tCUeqPwObiFG/AbNc3bX9a0EzCXbetJmDp uWmfTVEta3WXZdiZIpVR/uA7zcm7O8dHArtpw= Received: by 10.142.253.21 with SMTP id a21mr3435334wfi.174.1227897517283; Fri, 28 Nov 2008 10:38:37 -0800 (PST) Received: by 10.142.199.12 with HTTP; Fri, 28 Nov 2008 10:38:37 -0800 (PST) Message-ID: <64c038660811281038ld6e20dcq81a1a98b7e9f7ce@mail.gmail.com> Date: Fri, 28 Nov 2008 11:38:37 -0700 From: Modulok To: "Valentin Bud" In-Reply-To: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 18:38:38 -0000 On 11/28/08, Valentin Bud wrote: > Hello community, > > I have to come up with a solution for a company that has as we speak > 4 TB of data spread among 3 computers with lots of HDDs. Of course > i've recommend > them to buy a server for that storage capacity and for data organization. > > I thought of going on the ZFS way (on FreeBSD of course) with some > raidz. One of the problems > is that the server will stay in their office so it has to be quite silent. > > I honestly don't know what hardware to look for so if you have any > suggestions > i'm more than open to hear them. > > a great day, > v I'm not sure what kind of fans everyone here is running, with all these complaints about noise... For a single server sitting in an office, use a regular desktop case with some good 12cm fans. Get a few fan-speed-controllers to reduce the RPMs a little and you can have a computer with several disks in it that is damn near silent, even when it is sitting right next to you. Put a good power supply unit, with a slow 14cm fan in it and you can't hear the computer at all. As far as heat goes, a well ventilated aluminum desktop case disperses heat very, very well, permitting the reduction of fan speed. I have a server built this way sitting not 2 feet from me, which contains 5 hard drives providing 24/7 file storage via samba for the entire local area network, and unless one puts their ear against the case, it's difficult to tell if it is even running...even under heavy load. (This is in a quiet room.) As far as heat goes, the case blows out room temperature air and all components are cold to the touch. Built for around...$800-$900 USD. (I'm not exactly sure on the figure, as some components have been upgraded over the years.) Case: Lian Li PC-7B Plus II ATX Mid Tower. Best case ever. Cheap. Simple. Roomy. Very well ventilated. I now personally own 4 of these cases. No regrets. Ditch the factory fans though. Replace them with a few Zalman 12cm fans. These usually come with a resistor so you can reduce the fan speed (and noise). Processor: Whatever. I went with a cheap dual core Opteron at the time. Board: I usually stick with Tyan. whatever fits your processor, your budget and provides you with enough SATA headers. For a simple file server, stick with a lower-end single-socket board. Unless you plan to do some serious number crunching or have a lot of money to spend, you don't need the extra processors sitting around doing nothing, with their fans making noise. Memory: Start with a few (say 2) gigs, it's cheap. Power Supply Unit: I've had good luck with Thermaltake W0144 Purepower RX. They use 14cm fans which are silent, but move a lot of air and I've had zero problems with them. The ability to only plugin the power components you require helps maintain good airflow in the case. Network: Not all network cards are created equal! Go with one (or two) PCI Intel network cards. If it's based on the Intel PRO/1000GT, it will be supported by the em(4) driver on FreeBSD. I use the Intel PWLA8391GT. Zero problems. As far as hard drives go, I've found recently that Western Digital drives are quite silent, even under heavy read/writes, but I haven't tried Seagate or any of the other major drive manufacturers in a long time, so they may be about the same. With a little work, your goal of a silent, high-capacity server is quite attainable. It can be pretty cheap to build too. -Modulok- From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 19:09:53 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A39F11065673 for ; Fri, 28 Nov 2008 19:09:53 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id CF51C8FC13 for ; Fri, 28 Nov 2008 19:09:52 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mASJ9kpo005756; Fri, 28 Nov 2008 20:09:46 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mASJ9jQI005753; Fri, 28 Nov 2008 20:09:46 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 28 Nov 2008 20:09:45 +0100 (CET) From: Wojciech Puchar To: Modulok In-Reply-To: <64c038660811281038ld6e20dcq81a1a98b7e9f7ce@mail.gmail.com> Message-ID: <20081128200701.R5748@wojtek.tensor.gdynia.pl> References: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> <64c038660811281038ld6e20dcq81a1a98b7e9f7ce@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Valentin Bud Subject: Re: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 19:09:53 -0000 > > I'm not sure what kind of fans everyone here is running, with all > these complaints about noise... me too. i have a quite average cheap case with 3 5.25" and 5 3.5" bays, and put 8 drives here. i needed 3.5=>5.25" mount kits for upper drives, and added small fan for these upper drives ONLY because these adapters are made from plastic not metal. no noise, no overheating (i've checked with smartctl) > For a single server sitting in an office, use a regular desktop case > with some good 12cm fans. Get a few fan-speed-controllers to reduce > the RPMs a little simplest method is to connect it to +12V and +5V instead of +12V and 0. at 7V they are silent but still effective. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 20:09:03 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1091106576C for ; Fri, 28 Nov 2008 20:09:03 +0000 (UTC) (envelope-from luizbcampos@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.240]) by mx1.freebsd.org (Postfix) with ESMTP id A77B88FC1D for ; Fri, 28 Nov 2008 20:09:03 +0000 (UTC) (envelope-from luizbcampos@gmail.com) Received: by an-out-0708.google.com with SMTP id b6so579039ana.13 for ; Fri, 28 Nov 2008 12:09:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=Nnhtnljqu5sE7qY13gB1anajucLCdwI9HOTNwHrA+SM=; b=SJfgAxM1ETA+66k5lLIehYhe+AeRHnunf9gtZoVejNUI2uJfb97rCRtZTzY/U3z0WL dFFd3Ou4KKHyMP0dwLyK2wimaq4vdIDWIi8Jqp09VnKUqZwth3GKHvWNlLieuLii8BeZ o3VafmnZkUjYHbTMBCiSON2fW+/wb39irLf1I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=Tb6XLdUOatAST4BUmNEkxRgpFg+W5M9f5I83BNN7N9Mjd2fsWG0bWm/ivNVDPwLrP7 oEM+yoHgjeMpv7V8iuUP8jd1yWg9D3i5g5BmTv1W6F+uE2njuwA6S8paJIsLOhXxtqX4 72xYekVaiIkKqz39q/LnDazEi6mE+cIcNnv48= Received: by 10.100.131.13 with SMTP id e13mr4353715and.57.1227902942777; Fri, 28 Nov 2008 12:09:02 -0800 (PST) Received: by 10.100.164.6 with HTTP; Fri, 28 Nov 2008 12:09:02 -0800 (PST) Message-ID: Date: Fri, 28 Nov 2008 18:09:02 -0200 From: luizbcampos To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: "printer not found"... printing with LPRng and foomatic X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 20:09:04 -0000 I own a usb Canon Pixma iP 1600 printer and I use FBSD-7.0-R amd64. I've choosen LPRng as printer spooler and foomatic-filters, everything is OK in /etc/printcap but when I type "lpq" I get "printer not found" as output. # /etc/printcap ip2200_usb_ps: \ :lp=/dev/ulpt0 :force_localhost: \ :if=/usr/local/bin/foomatic-rip: \ :ppd=/usr/local/libexec/cups/filter/canonip2200.ppd: \ :sd=/var/spool/lpd/ip2200_usb_ps: \ :mx#0:sh: I followed all the info contained in "openprinting" section lpd and I chmoded 0755 lprng.sh From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 20:18:19 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF76C1065677 for ; Fri, 28 Nov 2008 20:18:19 +0000 (UTC) (envelope-from SRS0=TiVw6V=4D=shell.siscom.net=vogelke@siscom.net) Received: from lamorack.siscom.net (lamorack.siscom.net [209.251.2.116]) by mx1.freebsd.org (Postfix) with ESMTP id 8A57B8FC13 for ; Fri, 28 Nov 2008 20:18:19 +0000 (UTC) (envelope-from SRS0=TiVw6V=4D=shell.siscom.net=vogelke@siscom.net) Received: from shell.siscom.net ([209.251.2.80]) by lamorack.siscom.net with esmtp (Exim 4.62) (envelope-from ) id 1L69Lh-0005A7-C6 for freebsd-questions@freebsd.org; Fri, 28 Nov 2008 14:49:57 -0500 Received: by shell.siscom.net (Postfix, from userid 2198) id 506E4115551; Fri, 28 Nov 2008 14:49:57 -0500 (EST) Received: by kev.msw.wpafb.af.mil (Postfix, from userid 32768) id 7B17FB7C5; Fri, 28 Nov 2008 14:45:31 -0500 (EST) To: freebsd-questions@freebsd.org In-reply-to: <139b44430811280548x36915301i766bfb15f162c8ca@mail.gmail.com> (valentin.bud@gmail.com) Organization: Oasis Systems Inc. X-Disclaimer: I don't speak for the USAF or Oasis. X-GPG-ID: 1024D/711752A0 2006-06-27 Karl Vogel X-GPG-Fingerprint: 56EB 6DBF 4224 C953 F417 CC99 4C7C 7D46 7117 52A0 Message-Id: <20081128194531.7B17FB7C5@kev.msw.wpafb.af.mil> Date: Fri, 28 Nov 2008 14:45:31 -0500 (EST) From: vogelke+software@pobox.com (Karl Vogel) Subject: Re: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vogelke+software@pobox.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 20:18:19 -0000 >> On Fri, 28 Nov 2008 15:48:45 +0200, >> "Valentin Bud" said: V> I have to come up with a solution for a company that has as we speak 4 TB V> of data spread among 3 computers with lots of HDDs. Of course I've V> recommend them to buy a server for that storage capacity and for data V> organization. Good idea. We had a similar problem here; a SuperMicro server tanked, and the company that provided the warranty went bankrupt, so all we had were 12 perfectly good 400-Gb SATA drives and nowhere to put them. The drives were the big-cost item, so I didn't want to just dump them. We finally bought two empty IBM x3400 8-bay enclosures plus some IBM SAS 3.5" hot-swap trays, and it's working like a charm. V> I thought of going on the ZFS way (on FreeBSD of course) with some raidz. In my experience, completely new filesystems or operating systems need at least 5 years in the field to weed out all the weird corner-cases. I might trust ZFS on Sun hardware (*with* vendor support) at this point, but I'd wait awhile before trying it on anything else. This isn't a slam at ZFS or the FreeBSD porters, it's just recognition of the fact that some types of software development are *not* time- compressible, regardless of who's doing the work. V> One of the problems is that the server will stay in their office so it V> has to be quite silent. Not a good idea, especially if this data is their bread-and-butter. You can walk out the door with a system this size on your shoulder, so I'd recommend a locked room with reasonable cooling and *clean* power. You don't need a 10-foot-tall zillion-dollar Liebert A/C, but you absolutely need a UPS that can take care of power spikes; the more moderate the environment, the less likely you are to have a hardware failure. I don't use disk mirroring because 99% of our problems come from humans rather than hardware. If someone zaps the wrong file, a mirror will simply replicate that mistake; we have two matching servers in separate rooms, and we run rsync nightly to back up the production box without deleting any files. I also run hourly backups on the production box to store anything that's been modified in the last 60 minutes, which gives us a nice file history and takes care of most recovery problems. With two servers, I can use basic UFS filesystems and get fine I/O performance with minimum maintenance. -- Karl Vogel I don't speak for the USAF or my company The first product Motorola started to develop was a record player for cars. At that time, the most known player on the market was Victrola, so they called themselves Motorola. --possibly-true item for a lull in conversation From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 21:32:40 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B02A71065679 for ; Fri, 28 Nov 2008 21:32:40 +0000 (UTC) (envelope-from luizbcampos@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.29]) by mx1.freebsd.org (Postfix) with ESMTP id 649B48FC12 for ; Fri, 28 Nov 2008 21:32:40 +0000 (UTC) (envelope-from luizbcampos@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so647202yxb.13 for ; Fri, 28 Nov 2008 13:32:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=R+qddygsKFzwoMblHhjJA8cBt/cBfJr1hB+uCqQwB1Q=; b=YWj+j6X90XKgZRWBeenhqDSwE38exiQ+Ki2T+tLXYfsSGqzCWoWpOOHrdUDwfRmt7f 7ovKLz/f9Zx2HxqafRTfyAS1UmRgDsyR7FgUwrRHSX4vn4lMf5YP3v0RleKDqCleR/R+ +LlCL4e5HKXv7QZfXvEczGn5RvT44Orv7YGLY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=nkO4YguwwR62zfFtwB8lcJhyzMsJcbzKCnBloJXhul9fcTdBAzSsPgki1CncNfS7b9 xH5b7fyvhZlaJ1xBpY7fACrkHDpwxXjAYCYbWUZpjzDz4DIR03tpuBeggQTSL8ACqZSm zTaCdOKztKSSfSUrfTEeZyizRi2CbYo0XaofY= Received: by 10.100.197.7 with SMTP id u7mr4401918anf.72.1227907959518; Fri, 28 Nov 2008 13:32:39 -0800 (PST) Received: by 10.100.164.6 with HTTP; Fri, 28 Nov 2008 13:32:39 -0800 (PST) Message-ID: Date: Fri, 28 Nov 2008 19:32:39 -0200 From: luizbcampos To: freebsd-questions@freebsd.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: Subject: Fwd: "printer not found"... printing with LPRng and foomatic X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 21:32:40 -0000 ---------- Forwarded message ---------- From: luizbcampos Date: Fri, 28 Nov 2008 18:09:02 -0200 Subject: "printer not found"... printing with LPRng and foomatic To: freebsd-questions@freebsd.org I own a usb Canon Pixma iP 1600 printer and I use FBSD-7.0-R amd64. I've choosen LPRng as printer spooler and foomatic-filters, everything is OK in /etc/printcap but when I type "lpq" I get "printer not found" as output. # /etc/printcap ip2200_usb_ps: \ :lp=/dev/ulpt0 :force_localhost: \ :if=/usr/local/bin/foomatic-rip: \ :ppd=/usr/local/libexec/cups/filter/canonip2200.ppd: \ :sd=/var/spool/lpd/ip2200_usb_ps: \ :mx#0:sh: I followed all the info contained in "openprinting" section lpd and I chmoded 0755 lprng.sh From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 21:38:27 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82DFD1065675 for ; Fri, 28 Nov 2008 21:38:27 +0000 (UTC) (envelope-from af.gourmet@videotron.ca) Received: from relais.videotron.ca (relais.videotron.ca [24.201.245.36]) by mx1.freebsd.org (Postfix) with ESMTP id 552568FC18 for ; Fri, 28 Nov 2008 21:38:27 +0000 (UTC) (envelope-from af.gourmet@videotron.ca) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=UTF-8; format=flowed Received: from [192.168.0.51] ([96.21.103.185]) by VL-MO-MR005.ip.videotron.ca (Sun Java(tm) System Messaging Server 6.3-4.01 (built Aug 3 2007; 32bit)) with ESMTP id <0KB200HM3C2U8D51@VL-MO-MR005.ip.videotron.ca>; Fri, 28 Nov 2008 16:37:43 -0500 (EST) Message-id: <493064D3.6020202@videotron.ca> Date: Fri, 28 Nov 2008 16:38:27 -0500 From: PJ User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) To: Ivan Voras References: <492FFDF8.1020705@videotron.ca> In-reply-to: Cc: freebsd-questions@freebsd.org Subject: Re: repair v.7 installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 21:38:27 -0000 Ivan Voras wrote: > PJ wrote: > >> I believe that my installation should be salvageable but I do not know >> how to phrase my search question. >> Here is the problem: >> Apparently due to some connector problem in the computer one or some >> files were damaged. I ran a regenerating program on the disk and all >> sectors are readable. >> How can I locate the problem files and repair or reinstall them without >> damaging other files? >> > > Try reading all the files on the drive, something like > > >> find / -exec cat "{}" > /dev/null ";" >> > > See if any files error out. > > >> From trying to boot the system, it appears that the problem is related >> to the login files: I boot to safe mode and get the logon prompt which >> is not accepted. I then get to the single user mode and can read the >> > > Boot to a single-user mode and see if /etc/passwd and /etc/master.passwd > are ok. If so, regenerate the databases (easiest way is to run vipw). > > >> contents of the root (top or main) directory and subdirectories. >> The command "df" returns "-70016" under Avail and "104%" under Capacity, >> Mounted on / . >> > > This doesn't necessarily mean there's an error. If you filled the file > system past its reserved space limit, it's normal to get negative > available bytes and over 100% usage. See also if you have a /lost+found > directory. > > >> Or is it possible to reinstall the system from the installation CD? I >> would like to avoid having to reinstall all the programs that run on >> this local development server - Apache, Samba, Cups, php, pstgresql, etc. >> > > It is possible, with care, to reinstall the system from the CD media, > and keep all user settings. /usr/local/* will not be touched in any case > when performing an upgrade. > > How would I proceed with the reinstallation or should i try to upgrade to the latest version. Mine is 7.0 STABLE #4. I tried your suggestions but nothing helped. Under sh, cat print the file but only the last bit is on screen... "more" does not work. I don't understand how I can see the whole file. vipw is not available in single user mode. So, I did a bit of deeper research on my problem and found the following. It seems to be quite nasty. 1. On boot up and just before the crash there were warnings of an "interrupt storm" whatever that may mean and then there are messages about bad file descriptor; and there is a WARNING / was not properly dismounted (obviously because of the hardware problem) and "init /bin/sh on /etc/rc terminated abnormally, going to single user mode.... 2. on bootup, there is a warning - /etc/rc WARNING run_rc_command: cannot run /usr/sbin/inetd 3. for login : in openpam_load_module (): no pam_opie.so found 4. login: pam_start(): system error 5. fsck gets wrong superblocks and cannot fix anything 6. When in single user mode, cannot access /usr or /var So, now I get the feeling that the installation is completely screwed. What I would like to recover is onle a bunch of files on the /usr partition like the web stuff for apache and some other files. What are my options? is there a way I could access these files? It is rather strange, or is it, that I have had problems with sata hdd connectors. In general I find that the connectors for the ps mouse and the sata connectors are rather mickey-mouse... they are often getting bad connections and without any intervention to the computer housing or innard... gremlins or strange vibrations? Thanks for any further assistance. Phil Jourdan From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 21:46:11 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 422891065672 for ; Fri, 28 Nov 2008 21:46:11 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from mailrelay006.isp.belgacom.be (mailrelay006.isp.belgacom.be [195.238.6.172]) by mx1.freebsd.org (Postfix) with ESMTP id D1C438FC0A for ; Fri, 28 Nov 2008 21:46:10 +0000 (UTC) (envelope-from tijl@ulyssis.org) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ApsEACz1L0lR9Teh/2dsb2JhbACBbcNhAQIEil+BfgEDe4Nm Received: from 161.55-245-81.adsl-dyn.isp.belgacom.be (HELO kalimero.kotnet.org) ([81.245.55.161]) by relay.skynet.be with ESMTP; 28 Nov 2008 22:46:09 +0100 Received: from kalimero.kotnet.org (kalimero.kotnet.org [127.0.0.1]) by kalimero.kotnet.org (8.14.3/8.14.3) with ESMTP id mASLk8Hx006614; Fri, 28 Nov 2008 22:46:08 +0100 (CET) (envelope-from tijl@ulyssis.org) From: Tijl Coosemans To: freebsd-questions@freebsd.org, Pieter Donche Date: Fri, 28 Nov 2008 22:46:06 +0100 User-Agent: KMail/1.9.10 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811282246.08059.tijl@ulyssis.org> Cc: Subject: Re: XMing and FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 21:46:11 -0000 On Friday 28 November 2008 17:08:13 Pieter Donche wrote: > I have - in the same subnet - a WinXP PC and a multi-boot PC with > a) OpenSuse10.3, b) FreeBSD-7.0 (and c) WinXP) > > I installed the free X-Windows server Xming on the WinXP PC, > and I can connect to the other PC when it is booted in OpenSUSE 10.3: > Xming is configured for 'open session via XDMCP', I specify fully > qualified hostname and I get the openSUSE username/password login > screen, etc... > > (I didn't need to change anything in the OpenSuSE) > > But when that PC is booted into FreeBSD - XMing only gives me a screen > with a grey background and a black X - connection seems not established. > > The FreeBSD runs KDM as window manager and KDE as desktop. > > Why and how to remedy? It's disabled by default on FreeBSD. In /usr/local/share/config/kdm/kdmrc in the [Xdmcp] section you need to set Enable=true. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 21:55:50 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DAEC1065670 for ; Fri, 28 Nov 2008 21:55:50 +0000 (UTC) (envelope-from SRS0=TiVw6V=4D=shell.siscom.net=vogelke@siscom.net) Received: from lamorack.siscom.net (lamorack.siscom.net [209.251.2.116]) by mx1.freebsd.org (Postfix) with ESMTP id 4D9178FC14 for ; Fri, 28 Nov 2008 21:55:50 +0000 (UTC) (envelope-from SRS0=TiVw6V=4D=shell.siscom.net=vogelke@siscom.net) Received: from shell.siscom.net ([209.251.2.80]) by lamorack.siscom.net with esmtp (Exim 4.62) (envelope-from ) id 1L6BJS-0005I2-F0 for freebsd-questions@freebsd.org; Fri, 28 Nov 2008 16:55:46 -0500 Received: by shell.siscom.net (Postfix, from userid 2198) id 3717B115529; Fri, 28 Nov 2008 16:55:46 -0500 (EST) Received: by kev.msw.wpafb.af.mil (Postfix, from userid 32768) id 35F4BB7C5; Fri, 28 Nov 2008 16:55:28 -0500 (EST) To: freebsd-questions@freebsd.org In-reply-to: <20081128212753.D6715@wojtek.tensor.gdynia.pl> (message from Wojciech Puchar on Fri, 28 Nov 2008 21:28:51 +0100 (CET)) Organization: Oasis Systems Inc. X-Disclaimer: I don't speak for the USAF or Oasis. X-GPG-ID: 1024D/711752A0 2006-06-27 Karl Vogel X-GPG-Fingerprint: 56EB 6DBF 4224 C953 F417 CC99 4C7C 7D46 7117 52A0 References: <20081128194531.7B17FB7C5@kev.msw.wpafb.af.mil> <20081128212753.D6715@wojtek.tensor.gdynia.pl> Message-Id: <20081128215528.35F4BB7C5@kev.msw.wpafb.af.mil> Date: Fri, 28 Nov 2008 16:55:28 -0500 (EST) From: vogelke+software@pobox.com (Karl Vogel) Subject: Re: 5 TB server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vogelke+software@pobox.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 21:55:50 -0000 >> On Fri, 28 Nov 2008 14:45:31 -0500, >> I spewed something along the lines of: K> In my experience, completely new filesystems or operating systems need at K> least 5 years in the field to weed out all the weird corner-cases. I might K> trust ZFS on Sun hardware (*with* vendor support) at this point, but I'd K> wait awhile before trying it on anything else. >> On Fri, 28 Nov 2008 21:28:51 +0100, >> Wojciech Puchar said: W> if it will ever be good filesystem, it will be no longer ZFS. just the W> ideas is in big part wrong. I'm not trying to start a religious war, but at least one idea in ZFS is worth its weight in platinum: end-to-end file-integrity checks. ZFS can (and does) find and correct file errors introduced by disk firmware and media problems. With the sheer volume of stuff being stored these days, that capability (in any filesystem) is going to be crucial. -- Karl Vogel I don't speak for the USAF or my company I think that's how Chicago got started. A bunch of people in New York said, "Gee, I'm enjoying the crime and the poverty, but it just isn't cold enough. Let's go west." --Richard Jeni From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 22:06:20 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 709A61065670 for ; Fri, 28 Nov 2008 22:06:20 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7]) by mx1.freebsd.org (Postfix) with ESMTP id 4368C8FC12 for ; Fri, 28 Nov 2008 22:06:20 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 25607 invoked from network); 28 Nov 2008 22:06:19 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 28 Nov 2008 22:06:19 -0000 Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.6]) by be-well.ilk.org (Postfix) with ESMTP id 2D79A50822; Fri, 28 Nov 2008 17:06:14 -0500 (EST) Received: by lowell-desk.lan (Postfix, from userid 1147) id CDC301CEE2; Fri, 28 Nov 2008 17:06:13 -0500 (EST) To: luizbcampos References: From: Lowell Gilbert Date: Fri, 28 Nov 2008 17:06:13 -0500 In-Reply-To: (luizbcampos@gmail.com's message of "Fri\, 28 Nov 2008 18\:09\:02 -0200") Message-ID: <44wsenv73e.fsf@lowell-desk.lan> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: "printer not found"... printing with LPRng and foomatic X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 22:06:20 -0000 luizbcampos writes: > I own a usb Canon Pixma iP 1600 printer and I use FBSD-7.0-R > amd64. I've choosen LPRng as printer spooler and foomatic-filters, > everything is OK in /etc/printcap but when I type "lpq" I get "printer > not found" as output. > > > > # /etc/printcap > > ip2200_usb_ps: \ > > :lp=/dev/ulpt0 > :force_localhost: \ > :if=/usr/local/bin/foomatic-rip: \ > :ppd=/usr/local/libexec/cups/filter/canonip2200.ppd: \ > :sd=/var/spool/lpd/ip2200_usb_ps: \ > :mx#0:sh: > > > I followed all the info contained in "openprinting" section lpd > and I chmoded 0755 lprng.sh How about "lpq -P ip2200_usb_ps"? -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 22:44:06 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88AFA1065675 for ; Fri, 28 Nov 2008 22:44:06 +0000 (UTC) (envelope-from ivoras@gmail.com) Received: from nf-out-1516.google.com (nf-out-1516.google.com [64.233.182.161]) by mx1.freebsd.org (Postfix) with ESMTP id 241C38FC18 for ; Fri, 28 Nov 2008 22:44:05 +0000 (UTC) (envelope-from ivoras@gmail.com) Received: by nf-out-1516.google.com with SMTP id k3so11858nfh.3 for ; Fri, 28 Nov 2008 14:44:04 -0800 (PST) MIME-Version: 1.0 Received: by 10.210.115.15 with SMTP id n15mr381432ebc.29.1227912244910; Fri, 28 Nov 2008 14:44:04 -0800 (PST) Message-ID: <0015174c1bb82c5c43045cc799d1@google.com> Date: Fri, 28 Nov 2008 22:44:04 +0000 From: ivoras@gmail.com To: PJ , freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Re: repair v.7 installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 22:44:06 -0000 On Nov 28, 2008 10:38pm, PJ wrote: > 6. When in single user mode, cannot access /usr or /var In single user mode only the root file system is mounted. Mount the others manually. > > > So, now I get the feeling that the installation is completely screwed. What I would like to recover is onle a bunch of files on the /usr partition like the web stuff for apache and some other files. > > > > What are my options? is there a way I could access these files? > > > > It is rather strange, or is it, that I have had problems with sata hdd connectors. In general I find that the connectors for the ps mouse and the sata connectors are rather mickey-mouse... they are often getting bad connections and without any intervention to the computer housing or innard... gremlins or strange vibrations? > There's not enough information to conclude exactly what is wrong with your machine but if you have hardware problems, you should immediately buy a new drive (USB drive will also work), boot the machine in single-user mode, mount the relevant file systems read-only and transfer important files to the new drive. If you still want to reinstall /repair the existing system, AFAIK, FreeBSD's default installer has an "upgrade mode", in which you'll need to tell it which partition/slice was originally mounted where and it will proceed to install the base system. It will not touch your home directories or /usr/local. From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 23:15:31 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17BD11065672 for ; Fri, 28 Nov 2008 23:15:31 +0000 (UTC) (envelope-from tl32@next.online.no) Received: from mail42.e.nsc.no (mail42.e.nsc.no [193.213.115.42]) by mx1.freebsd.org (Postfix) with ESMTP id 702C28FC13 for ; Fri, 28 Nov 2008 23:15:30 +0000 (UTC) (envelope-from tl32@next.online.no) Received: from [62.16.242.81] (062016242081.customer.alfanett.no [62.16.242.81]) (authenticated bits=0) by mail42.nsc.no (8.13.8/8.13.5) with ESMTP id mASM9Uk9015304 for ; Fri, 28 Nov 2008 23:09:31 +0100 (MET) Message-ID: <49306C09.40308@next.online.no> Date: Fri, 28 Nov 2008 23:09:13 +0100 From: Tore Lund User-Agent: Thunderbird 2.0.0.12 (X11/20080229) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <1227874986.00041844.1227863401@10.7.7.3> In-Reply-To: <1227874986.00041844.1227863401@10.7.7.3> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Subject: Re: FBSD 7.1 BETA2 and RTL8168/8111 problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 23:15:31 -0000 Fernando Apesteguía wrote: > Hi all, > > I recently installed FreeBSD 7.1 BETA2 on my system. During > installation using FTP option, I could notice the following: > > After some random time (two, five or six minutes, for instance) the > installation stalled and sysinstall lost the connection. I was taken > back to the "Select FTP site" screen, and I had to configure my NIC > again. Then, the install resumed and I got a usable system (MINIMAL + > docs + manpages) > > But the problem persists. From time to time, it seems the kernel can't > see the NIC. It happens during normal operation and no message is > shown in /var/log/messages. ifconfig doesn't show my 're0' device, so > I can't run dhclient on it and I have to reboot. I have to say that > sometimes, even when I reboot, the NIC (RTL8168/8111 PCI Express) is > not present. > > This device works fine in the same computer with either Vista or > Fedora 9, though I have to say I had similar problems with earlier > versions of Fedora (device disappearing or not present after boot), > but after a kernel upgrade everything run smoothly. > > Does FreeBSD use the same driver than Linux does? Anybody else with > this problem? > > Thanks in advance. All I can say is that I have the same NIC, which is built into my Asus M2A-VM motherboard. I have used it since March 2008 with no problems at all. For the past three days I have been running 7.1-BETA2, also with no problems. I should like to provide more detail if that can be of any help to you. -- Tore From owner-freebsd-questions@FreeBSD.ORG Fri Nov 28 23:57:13 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74AB0106564A for ; Fri, 28 Nov 2008 23:57:13 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.153]) by mx1.freebsd.org (Postfix) with ESMTP id E5CEA8FC0A for ; Fri, 28 Nov 2008 23:57:12 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so1064656fgb.35 for ; Fri, 28 Nov 2008 15:57:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=uuRZv4ahy+F/NzxY+y1mi9k1m9krbaAqgSvq/nDXB2M=; b=OZ2FRNQ3xdAkaRu9W4QqXijkKDNKMOzX3IYxaFxqe4JI7jsqEgr27ShDG7MEpG2d+2 kOnZ/yhvxtSZsAc0xhOkoPKdRLI8w7xsgKA90XMmwcdF0MxiKWkaUK3og2cgTEL42tYV Lkah3wxiGK3vLdrE9Bl+KUlTNwJipzxkFAPKM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=jQSgX9C+Z923bQfoKG2UIPuZO3MCqiz2DRKE3lAwcJnSok7IWJHejTtEH6XkIpHH17 t8cHVjWYLtEUHlNCWM+CIE9gvK6WF8cxabZB0b1eqvXicfCwDL/7VHuzVhyRIdPwp7hC ti7NZDjBTBl1BP58iib3FvmH9Qj3WIYnzLd3I= Received: by 10.180.233.15 with SMTP id f15mr2930477bkh.188.1227916631341; Fri, 28 Nov 2008 15:57:11 -0800 (PST) Received: by 10.181.31.13 with HTTP; Fri, 28 Nov 2008 15:57:11 -0800 (PST) Message-ID: <28283d910811281557v53057fb0tf264bfe169bdee35@mail.gmail.com> Date: Fri, 28 Nov 2008 18:57:11 -0500 From: "matt donovan" To: "Pieter Donche" In-Reply-To: MIME-Version: 1.0 References: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "mail.list freebsd-questions" Subject: Re: nxserver/freenx X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2008 23:57:13 -0000 On Fri, Nov 28, 2008 at 3:53 AM, Pieter Donche wrote: > I want my freeBSD-7.0-RELEASE server accessible via a FreeNX client > from www.nomachine.com. > > I believe I should install both the ports nxserver and freenx: > >> From http://www.freebsdports.info/ports/net/nxserver.html I read: >> > nxserver: this port provides only the NX core binaries and libraries as > were released by NoMachine as source code. To make them work and be > used as an NX server, you will need to: > - either install FreeNX (net/freenx) additionally, > - or install the commercial NoMachine server product (currently not > available in native FreeBSD form) > > $ whereis nxserver > nxserver: /usr/ports/net/nxserver > $ whereis freenx > freenx: /usr/ports/net/freenx > # cd /usr/ports/net/nxserver > # make install clean > ===> nxserver-1.4.0_1 is marked as broken: this port fails to build with > xorg-7 > .2. > *** Error code 1 > > What's this? > > What are my alternatives to get a NX server running on FreeBSD? > > # pkg_add -r freenx > isn't found ... > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" well freenx now provides nxserver I tried updating the ports but the freenx tarball isn't very clear like it used to be since, since the files have changed so much from what the old version used to be like. you could try freenx and see if it will work or not. Since I m pretty sure the port is old. From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 01:25:04 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99DD41065675 for ; Sat, 29 Nov 2008 01:25:04 +0000 (UTC) (envelope-from chris@monochrome.org) Received: from mail.monochrome.org (b4.ebbed1.client.atlantech.net [209.190.235.180]) by mx1.freebsd.org (Postfix) with ESMTP id 47ACE8FC16 for ; Sat, 29 Nov 2008 01:25:03 +0000 (UTC) (envelope-from chris@monochrome.org) Received: from [192.168.1.11] ([192.168.1.11]) by mail.monochrome.org (8.14.3/8.14.3) with ESMTP id mAT1P2a9025142; Fri, 28 Nov 2008 20:25:02 -0500 (EST) (envelope-from chris@monochrome.org) Date: Fri, 28 Nov 2008 20:25:02 -0500 (EST) From: Chris Hill To: PJ In-Reply-To: <493064D3.6020202@videotron.ca> Message-ID: <20081128201639.B934@tripel.monochrome.org> References: <492FFDF8.1020705@videotron.ca> <493064D3.6020202@videotron.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Ivan Voras , freebsd-questions@freebsd.org Subject: Re: repair v.7 installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 01:25:04 -0000 On Fri, 28 Nov 2008, PJ wrote: [...] > 1. On boot up and just before the crash there were warnings of an > "interrupt storm" whatever that may mean and then there are messages > about bad file descriptor; and there is a WARNING / was not properly > dismounted (obviously because of the hardware problem) and "init > /bin/sh on /etc/rc terminated abnormally, going to single user > mode.... Last time I saw a "bad file descriptor" it was due to disk problems caused by a power hit since I had no UPS on that machine. In that case I was able to recover using the manufacturer's utility ("seatools" for the Seagate disk). > 2. on bootup, there is a warning - /etc/rc WARNING run_rc_command: > cannot run /usr/sbin/inetd > > 3. for login : in openpam_load_module (): no pam_opie.so found > > 4. login: pam_start(): system error > > 5. fsck gets wrong superblocks and cannot fix anything > > 6. When in single user mode, cannot access /usr or /var > > So, now I get the feeling that the installation is completely screwed. > What I would like to recover is onle a bunch of files on the /usr > partition like the web stuff for apache and some other files. All of these things smell like disk problems to me. But what do I know. > What are my options? is there a way I could access these files? Booting from a live CD to recover your files to another drive has bee suggested, and that's a good idea. Apart from that, I would try the drive manufacturer's recovery tools before abandoning the system. Check their website and see if they don't have a bootable ISO with some sort of disk tools. HTH, and good luck. -- Chris Hill chris@monochrome.org ** [ Busy Expunging <|> ] From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 01:34:18 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3662106564A for ; Sat, 29 Nov 2008 01:34:18 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from rv-out-0304.google.com (rv-out-0304.google.com [209.85.198.210]) by mx1.freebsd.org (Postfix) with ESMTP id 9E1688FC08 for ; Sat, 29 Nov 2008 01:34:18 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: by rv-out-0304.google.com with SMTP id b20so3670157rvf.31 for ; Fri, 28 Nov 2008 17:34:18 -0800 (PST) MIME-Version: 1.0 Received: by 10.114.67.2 with SMTP id p2mr4698157waa.24.1227922458436; Fri, 28 Nov 2008 17:34:18 -0800 (PST) Message-ID: <001636458c86f26630045cc9f938@google.com> Date: Sat, 29 Nov 2008 01:34:18 +0000 From: af300wsm@gmail.com To: Wojciech Puchar , Andrew Falanga , FreeBSD Questions Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Re: gmirror and the UFS file systems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 01:34:18 -0000 > is your partition size multiply of fragment size without remainder? > > > > if not (quite a big chance) at least one sector at the end is unused and never be. > > so go on, but then fix disklabel, as c partition is 1 sector smaller. > > > > of course - boot from livecd to do this. > Thanks both Mel and Wojciech for the advice. Andy From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 02:03:59 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 747EA1065788 for ; Sat, 29 Nov 2008 02:03:59 +0000 (UTC) (envelope-from gandalf@shopzeus.com) Received: from viefep18-int.chello.at (viefep18-int.chello.at [213.46.255.22]) by mx1.freebsd.org (Postfix) with ESMTP id B4E328FC08 for ; Sat, 29 Nov 2008 02:03:58 +0000 (UTC) (envelope-from gandalf@shopzeus.com) Received: from edge01.upc.biz ([192.168.13.236]) by viefep13-int.chello.at (InterMail vM.7.08.02.00 201-2186-121-20061213) with ESMTP id <20081129020357.SVDY1745.viefep13-int.chello.at@edge01.upc.biz>; Sat, 29 Nov 2008 03:03:57 +0100 Received: from [192.168.0.100] ([89.134.230.181]) by edge01.upc.biz with edge id kq3s1a00A3vUdip01q3wyd; Sat, 29 Nov 2008 03:03:57 +0100 X-SourceIP: 89.134.230.181 Message-ID: <4930A308.8050603@shopzeus.com> Date: Sat, 29 Nov 2008 03:03:52 +0100 From: Laszlo Nagy User-Agent: Thunderbird 2.0.0.18 (X11/20081125) MIME-Version: 1.0 To: raggen@raggens.net References: <492E4F79.7090309@shopzeus.com> <49302479.6080505@telia.com> In-Reply-To: <49302479.6080505@telia.com> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: CUPS: cannot see printer from various program X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 02:03:59 -0000 > > Hello Laszlo, > > You might want to add the following lines to /etc/make.conf > > CUPS_OVERWRITE_BASE=yes > NO_LPR=yes > WITH_CUPS=yes > > And rebuild the application you want to print from. > > (The above was found on the excellent guide at > http://www.math.colostate.edu/~reinholz/freebsd/) Thank you! I already have a running system, so I had to setenv WITH_CUPS cd /usr/ports/x11-toolkits/gtk20 make deinstall make install clean I do not fully understand why it is done this way. Most users - including me - are going to install gnome2 first, and most likely CUPS is not installed by that time. It is also true that many users who install gnome2 will have a printer and want to use it. So I would recommend to create a make option "[X] CUPS support" for gtk20, or at least for gnome2. It was quite hard to find information about this issue on the internet! Should I post a PR for this? (It is not a real bug but I think it causes problems for many users.) Thanks, Laszlo From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 02:06:22 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 602981065673 for ; Sat, 29 Nov 2008 02:06:21 +0000 (UTC) (envelope-from gandalf@shopzeus.com) Received: from viefep18-int.chello.at (viefep18-int.chello.at [213.46.255.22]) by mx1.freebsd.org (Postfix) with ESMTP id 9F6528FC13 for ; Sat, 29 Nov 2008 02:06:20 +0000 (UTC) (envelope-from gandalf@shopzeus.com) Received: from edge02.upc.biz ([192.168.13.237]) by viefep19-int.chello.at (InterMail vM.7.08.02.02 201-2186-121-104-20070414) with ESMTP id <20081129020618.HDJW3408.viefep19-int.chello.at@edge02.upc.biz> for ; Sat, 29 Nov 2008 03:06:18 +0100 Received: from [192.168.0.100] ([89.134.230.181]) by edge02.upc.biz with edge id kq6H1a0293vUdip02q6JVs; Sat, 29 Nov 2008 03:06:18 +0100 X-SourceIP: 89.134.230.181 Message-ID: <4930A399.9060603@shopzeus.com> Date: Sat, 29 Nov 2008 03:06:17 +0100 From: Laszlo Nagy User-Agent: Thunderbird 2.0.0.18 (X11/20081125) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <492528B7.70808@shopzeus.com> <44prkmmkfg.fsf@lowell-desk.lan> In-Reply-To: <44prkmmkfg.fsf@lowell-desk.lan> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Creating a CUPS printer instance from web interface? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 02:06:22 -0000 > The base page for CUPS has a button labeled "Add Printer". > On *my* setup, anyway. > On mine too. > What it really does is add a queue, so you can do it any number of times > for the same physical printer. > I did not know that! But it is not clear in the docs. CUPS talks about "printers" and "printer instances". They recommend using lpoptions to create instances, and use them. Moreover, "printer instances" the way they are created with lpoptions are NOT available from the gtk print menu..... All right, I'm going to try to add more printers for the same USB device. I hope it will work. Thanks, Laszlo From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 05:18:49 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 23B2E106564A for ; Sat, 29 Nov 2008 05:18:49 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.185]) by mx1.freebsd.org (Postfix) with ESMTP id A3C2A8FC0A for ; Sat, 29 Nov 2008 05:18:48 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so897854nfh.33 for ; Fri, 28 Nov 2008 21:18:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=azVUJtMF1tS8LqhDZwX1hXfpguVy9vGSSIXGodAAMQQ=; b=xgJDccXT2rSyVTMITrzCE2PISx+QObdUj0JNSKR9QIaVsjlsWOCpv0XgT0yKdaFLwK W+RyOdFI4CjejYz6QEmBVRblUsDi1E+ErC4BhGCVo9jYDwMpAC+zJ/ReaoMsCATRSY3a U3913MPmofzAhXo47Z9+fsBkxZUwU1r6Bdrx4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=rjQFrMXzZXprEVP8UyPIwbUcTsCHgaCk5+cNsAem/h6ZShDFYHZgZ9MSqj6MI8FB8V Hi1ilZi0ymlvegmM9Gf2P2gMHJEiqDWQx3FDseUXBNPAggTkH6C3ImPA4nawVUnGJmc8 JOD34sLLsj1JXVvM0h4PsqtTK7GNzDAOv2zvI= Received: by 10.210.40.10 with SMTP id n10mr9778857ebn.13.1227934724349; Fri, 28 Nov 2008 20:58:44 -0800 (PST) Received: by 10.210.17.12 with HTTP; Fri, 28 Nov 2008 20:58:44 -0800 (PST) Message-ID: Date: Fri, 28 Nov 2008 21:58:44 -0700 From: "Tim Judd" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: shell scripting problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 05:18:49 -0000 Hi all, I've been trying for a few weeks to try to get this to work, and the /bin/sh keeps snagging the command line before passing it to pkg_info I'll use a different shell if I need to, but since I got everything except this one thing working, i'd rather keep it in sh In the shell script, i have a pkg_info -qLx "^$PKG-[0-9,._]+$" also tried (-X)tended regex instead of the standard rege(-x). sh keeps erroring out saying various $" isn't a valid variable name, or pkg_info doesn't find the anything there. And it does exist. This all came around with me trying to automatically update a bunch of ports. xorg-fonts is outdated, but xorg-fonts-100dpi or xorg-fonts-75dpi isn't. So the regex returns multiple values (as above). I just want the first, hence the anchors. Any ideas on how to get sh to let pkg_info see everything? Various escaping around the end $ just doesn't work. I'll keep working on it, but i'd like to see how you all would suggest getting it to work. Thanks! From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 06:03:58 2008 Return-Path: Delivered-To: questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 084A41065670 for ; Sat, 29 Nov 2008 06:03:58 +0000 (UTC) (envelope-from veltman@intergate.com) Received: from mail02.mx.maxen.net (mail02.mx.maxen.net [216.139.86.2]) by mx1.freebsd.org (Postfix) with ESMTP id C30658FC19 for ; Sat, 29 Nov 2008 06:03:57 +0000 (UTC) (envelope-from veltman@intergate.com) Received: from smtp9.trip.net (smtp9.trip.net [216.139.64.9]) by mail02.mx.maxen.net (8.14.2/8.14.2) with ESMTP id mAT5aFs1073494 for ; Fri, 28 Nov 2008 23:36:15 -0600 (CST) Received: from harryveltman (node247.90.251.72.1dial.com [72.251.90.247]) (authenticated bits=0) by smtp9.trip.net (8.14.1/8.14.1) with ESMTP id mAT5Zwmj063707 for ; Fri, 28 Nov 2008 23:36:00 -0600 (CST) Message-ID: <001301c951e4$e0b93fc0$f75afb48@harryveltman> From: "Harry Veltman" To: Date: Fri, 28 Nov 2008 21:39:39 -0800 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Scanned-By: MIMEDefang 2.56 on 216.139.64.8 X-Virus-Scanned: ClamAV devel-20080904-exp/8695/Fri Nov 28 20:30:08 2008 on mail02.mx.maxen.net X-Virus-Status: Clean Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Purchase of FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 06:03:58 -0000 Where can I buy it on CD, and how do I know if it is compatible with my = hardware? From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 06:08:03 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89DF11065672 for ; Sat, 29 Nov 2008 06:08:03 +0000 (UTC) (envelope-from sahil@tandon.net) Received: from aegis.hamla.org (aegis.hamla.org [206.251.255.39]) by mx1.freebsd.org (Postfix) with ESMTP id 61EA18FC16 for ; Sat, 29 Nov 2008 06:08:03 +0000 (UTC) (envelope-from sahil@tandon.net) Received: from localhost (localhost [127.0.0.1]) by aegis.hamla.org (Postfix) with ESMTP id 71BD25C78 for ; Sat, 29 Nov 2008 01:09:27 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tandon.net; h= x-virus-scanned:in-reply-to:content-disposition:content-type :mime-version:references:reply-to:message-id:subject:from:date: received; s=aegis; t=1227938967; bh=DjTkTBMxzXFol7DmBq7QSo5TmJU9 5p7Q09E9tpgzuhk=; b=ca0/qrI4vCv9U+GZTksnZIwGNdFqUGT6OPO8zqm3Bdqi fPbauMjkdJgw0BGrPwUZyckh7Xj6V3FvjjTK5gPTVIJlq/gGPqabtCo7TJn4ljJE arf6rpyrfWrHSWz7W9v+/AMacmP3GbJjRHI7qrpzqW5ZTi6VoPdGtehkpceve7g= Received: from aegis.hamla.org ([127.0.0.1]) by localhost (aegis.hamla.org [127.0.0.1]) (amavisd-new, port 10027) with LMTP id hCCapC7535BS for ; Sat, 29 Nov 2008 01:09:27 -0500 (EST) Date: Sat, 29 Nov 2008 01:08:01 -0500 From: Sahil Tandon To: freebsd-questions@freebsd.org Message-ID: <20081129060801.GA41353@shepherd> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Virus-Scanned: ClamAV version 0.94, clamav-milter version 0.94 on aegis.hamla.org X-Virus-Status: Clean Subject: Re: shell scripting problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "freebsd-questions@freebsd.org" List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 06:08:03 -0000 Tim Judd wrote: > I've been trying for a few weeks to try to get this to work, and the /bin/sh > keeps snagging the command line before passing it to pkg_info > > I'll use a different shell if I need to, but since I got everything except > this one thing working, i'd rather keep it in sh > > In the shell script, i have a > pkg_info -qLx "^$PKG-[0-9,._]+$" > also tried (-X)tended regex instead of the standard rege(-x). > > sh keeps erroring out saying various $" isn't a valid variable name, or > pkg_info doesn't find the anything there. And it does exist. This all came > around with me trying to automatically update a bunch of ports. xorg-fonts > is outdated, but xorg-fonts-100dpi or xorg-fonts-75dpi isn't. So the regex > returns multiple values (as above). I just want the first, hence the > anchors. > > Any ideas on how to get sh to let pkg_info see everything? Various escaping > around the end $ just doesn't work. I'll keep working on it, but i'd like > to see how you all would suggest getting it to work. I am not sure what the problem is, but are you just looking for the output of "pkg_info -qxL" on the *first* instance of xorg-fonts-*? % pkg_info -qL `pkg_info | grep xorg-fonts | head -1 | cut -d\ -f1` FWIW, your regexp also looks faulty. -- Sahil Tandon From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 06:14:07 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60D351065677 for ; Sat, 29 Nov 2008 06:14:07 +0000 (UTC) (envelope-from sahil@tandon.net) Received: from aegis.hamla.org (aegis.hamla.org [206.251.255.39]) by mx1.freebsd.org (Postfix) with ESMTP id 394158FC19 for ; Sat, 29 Nov 2008 06:14:07 +0000 (UTC) (envelope-from sahil@tandon.net) Received: from localhost (localhost [127.0.0.1]) by aegis.hamla.org (Postfix) with ESMTP id 6E3C35C78 for ; Sat, 29 Nov 2008 01:15:31 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tandon.net; h= x-virus-scanned:in-reply-to:content-disposition:content-type :mime-version:references:reply-to:message-id:subject:from:date: received; s=aegis; t=1227939331; bh=QgazT5/mhgMOQTvk0Psht/0bI5HQ nod4nTlrvLZnCNM=; b=oSXiaI+qVgHupddLyXwpartZffc1lZiHzLEhsxl+vRaE 9kx/02QSPPWi8XbSuRGNHUzLzbgo00DGb9+R2imVei/R2TwKHWXu1zdMgmUiVDKE l4erSVghsGdHH4ZN4HQO2YMpb+nrn5nBU3eHwBVYxFMxbSVrrw+wZ5jfcuwD9yU= Received: from aegis.hamla.org ([127.0.0.1]) by localhost (aegis.hamla.org [127.0.0.1]) (amavisd-new, port 10027) with LMTP id kk7cnGPwTgqA for ; Sat, 29 Nov 2008 01:15:31 -0500 (EST) Date: Sat, 29 Nov 2008 01:14:05 -0500 From: Sahil Tandon To: freebsd-questions@freebsd.org Message-ID: <20081129061405.GA41507@shepherd> References: <001301c951e4$e0b93fc0$f75afb48@harryveltman> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <001301c951e4$e0b93fc0$f75afb48@harryveltman> X-Virus-Scanned: ClamAV version 0.94, clamav-milter version 0.94 on aegis.hamla.org X-Virus-Status: Clean Subject: Re: Purchase of FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "freebsd-questions@freebsd.org" List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 06:14:07 -0000 Harry Veltman wrote: > Where can I buy it on CD, and how do I know if it is compatible with > my hardware? Did you try asking Google? http://www.google.com/search?hl=en&q=where+to+get+freebsd to: http://www.freebsd.org/where.html http://www.google.com/search?hl=en&q=freebsd+hardware+compatibility to: http://www.freebsd.org/doc/en/books/faq/hardware.html Also see: http://www.freebsd.org/doc/en/articles/freebsd-questions/ -- Sahil Tandon From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 06:31:19 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7AA8C106564A for ; Sat, 29 Nov 2008 06:31:19 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.26]) by mx1.freebsd.org (Postfix) with ESMTP id EDC7B8FC08 for ; Sat, 29 Nov 2008 06:31:18 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by ey-out-2122.google.com with SMTP id 6so704174eyi.7 for ; Fri, 28 Nov 2008 22:31:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=PG9PMx2Qw8ALsiUo8l3tDpeMOZc/RDbQm7JZB37iQiE=; b=ETOq/kZbGkaPA90qfZWVzmaEGl6yJewQ8VOpSe63O++jywlgX7xylWi1cGTxQp+WvP rm/3HcqO4Ik71VKp5pgUMMNmFkNjPHrta5eyq7Bndrn7hCa9m4mNdY13tpFAQqH1avrH oV4inHbYVH3EMqyOXu9NMh9JA+9uM7/drbhXI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=W6EHf7LM9InCRhBVGOY4vsb69RCa4fMrqvfm7cuOahWlVfKUqw7uTZ4ncvz8AYY2D9 cZ0FBHR4bTD/jQCC9/yonFbdcR2Un+r0jRrkj/HoSW5aTTIEROkQSKDJJ2+c+V3trmZG 1XsagllfxGQCRyBHkI3S7xSgqceo0wnNhJsgs= Received: by 10.210.49.19 with SMTP id w19mr9813032ebw.149.1227940277765; Fri, 28 Nov 2008 22:31:17 -0800 (PST) Received: by 10.210.17.12 with HTTP; Fri, 28 Nov 2008 22:31:17 -0800 (PST) Message-ID: Date: Fri, 28 Nov 2008 23:31:17 -0700 From: "Tim Judd" To: "freebsd-questions@freebsd.org" In-Reply-To: <20081129060801.GA41353@shepherd> MIME-Version: 1.0 References: <20081129060801.GA41353@shepherd> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: shell scripting problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 06:31:19 -0000 I'm sure it's faulty Which is why I'm asking for help My regexes (in it's various forms) produce the output similar to: xorg-fonts-75dpi xorg-fonts xorg-fonts-100dpi ... ... ... and I'm wanting my regex to return the 2nd value, in this example, in this list. The problem is the shell is taking the end anchor $ as the start of a variable, and no matter how I escape it, it seems to never work. I'm sorry for not explaining properly. Maybe the above would help. On Fri, Nov 28, 2008 at 11:08 PM, Sahil Tandon wrote: > Tim Judd wrote: > > > I've been trying for a few weeks to try to get this to work, and the > /bin/sh > > keeps snagging the command line before passing it to pkg_info > > > > I'll use a different shell if I need to, but since I got everything > except > > this one thing working, i'd rather keep it in sh > > > > In the shell script, i have a > > pkg_info -qLx "^$PKG-[0-9,._]+$" > > also tried (-X)tended regex instead of the standard rege(-x). > > > > sh keeps erroring out saying various $" isn't a valid variable name, or > > pkg_info doesn't find the anything there. And it does exist. This all > came > > around with me trying to automatically update a bunch of ports. > xorg-fonts > > is outdated, but xorg-fonts-100dpi or xorg-fonts-75dpi isn't. So the > regex > > returns multiple values (as above). I just want the first, hence the > > anchors. > > > > Any ideas on how to get sh to let pkg_info see everything? Various > escaping > > around the end $ just doesn't work. I'll keep working on it, but i'd > like > > to see how you all would suggest getting it to work. > > I am not sure what the problem is, but are you just looking for the > output of "pkg_info -qxL" on the *first* instance of xorg-fonts-*? > > % pkg_info -qL `pkg_info | grep xorg-fonts | head -1 | cut -d\ -f1` > > FWIW, your regexp also looks faulty. > > -- > Sahil Tandon > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 06:49:09 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D3B8C1065675 for ; Sat, 29 Nov 2008 06:49:09 +0000 (UTC) (envelope-from masoom.shaikh@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.237]) by mx1.freebsd.org (Postfix) with ESMTP id 9C64E8FC16 for ; Sat, 29 Nov 2008 06:49:09 +0000 (UTC) (envelope-from masoom.shaikh@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so1613089rvf.43 for ; Fri, 28 Nov 2008 22:49:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=tBW7n27pbkTsYzbhX8ucFkkH5GMlD0qHxWSWvSh8Ops=; b=WPBYwnIXmeT5lWjigy5XJvJgoh4lhBf9hItKar8USgXcQMl19X0rndHwG4VYeUEOD1 6McNJkudTGlLSUYYBC1Kaln78vMqrjcuXoni6wKoUxfmjAZDX7zO9FKo085CylXACSqd J9RJhofXFqAd8XFZCw+CxwJ3wi0EP0kwBEUnk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=x3sZtAkvSB1r2ZXgG6oijcKii1MID0RUzTkFDZzGjzRnMi+bzlJitp5Rj5P5uyJSXg IAwklqMQVdSX23kLPLHro+LGNLFKTHNCBh/evJkvzd0bx3TWcNT+A+KWwOUonSk4F26z lAIQtou0ZotyMttcOqTPF9TMLfcJ6ykDi7E68= Received: by 10.141.153.16 with SMTP id f16mr4136878rvo.283.1227941348824; Fri, 28 Nov 2008 22:49:08 -0800 (PST) Received: by 10.141.136.16 with HTTP; Fri, 28 Nov 2008 22:49:08 -0800 (PST) Message-ID: Date: Sat, 29 Nov 2008 06:49:08 +0000 From: "Masoom Shaikh" To: "freebsd-questions@freebsd.org" In-Reply-To: <20081129061405.GA41507@shepherd> MIME-Version: 1.0 References: <001301c951e4$e0b93fc0$f75afb48@harryveltman> <20081129061405.GA41507@shepherd> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Purchase of FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 06:49:09 -0000 On Sat, Nov 29, 2008 at 6:14 AM, Sahil Tandon wrote: > Harry Veltman wrote: > > > Where can I buy it on CD, and how do I know if it is compatible with > > my hardware? > > Did you try asking Google? > > http://www.google.com/search?hl=en&q=where+to+get+freebsd to: > http://www.freebsd.org/where.html > > http://www.google.com/search?hl=en&q=freebsd+hardware+compatibility to: > http://www.freebsd.org/doc/en/books/faq/hardware.html > > Also see: http://www.freebsd.org/doc/en/articles/freebsd-questions/ > > -- > Sahil Tandon > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > http://www.freebsdmall.com this question is not even worth answering, it is like Q: why didn't u tell us ? A: bcos it was impossible to hide From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 07:26:53 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 608AA106567A for ; Sat, 29 Nov 2008 07:26:53 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell.rawbw.com (shell.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 2DA9C8FC18 for ; Sat, 29 Nov 2008 07:26:53 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from eagle.syrec.org (c-67-188-126-36.hsd1.ca.comcast.net [67.188.126.36]) (authenticated bits=0) by shell.rawbw.com (8.13.6/8.13.6) with ESMTP id mAT7Qqv8032365 for ; Fri, 28 Nov 2008 23:26:52 -0800 (PST) Message-ID: <4930EEBB.7050701@rawbw.com> Date: Fri, 28 Nov 2008 23:26:51 -0800 From: Yuri User-Agent: Thunderbird 2.0.0.18 (X11/20081127) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Copying audio CD with dd/cdrecord produces unplayable CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yuri@rawbw.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 07:26:53 -0000 I am trying to copy an audio CD. First I've ran: dd if=/dev/acd0tN of=track-N.cdr bs=2352 for every track. This gets raw track files. Secondly I run: cdrecord -v -dao -audio $* dev=2,0,0 speed=4 This is supposed to recreate the original CD. But when I try to play it I can hear only noise. What I am doing wrong? How to troubleshoot this problem? burncd doesn't work on my system: it breaks with my PIONEER DVD-RW DVR-112D/1.21. Yuri From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 07:48:55 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D3C81065673 for ; Sat, 29 Nov 2008 07:48:55 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 27D558FC23 for ; Sat, 29 Nov 2008 07:48:55 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-196-24-200.dynamic.qsc.de [92.196.24.200]) by mx01.qsc.de (Postfix) with ESMTP id 4949B50449; Sat, 29 Nov 2008 08:48:53 +0100 (CET) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id mAT7mrR6001957; Sat, 29 Nov 2008 08:48:53 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Sat, 29 Nov 2008 08:48:52 +0100 From: Polytropon To: yuri@rawbw.com Message-Id: <20081129084852.6d00f2e5.freebsd@edvax.de> In-Reply-To: <4930EEBB.7050701@rawbw.com> References: <4930EEBB.7050701@rawbw.com> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Copying audio CD with dd/cdrecord produces unplayable CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 07:48:55 -0000 On Fri, 28 Nov 2008 23:26:51 -0800, Yuri wrote: > I am trying to copy an audio CD. > > First I've ran: > dd if=/dev/acd0tN of=track-N.cdr bs=2352 > for every track. This gets raw track files. > > Secondly I run: > cdrecord -v -dao -audio $* dev=2,0,0 speed=4 > This is supposed to recreate the original CD. > > But when I try to play it I can hear only noise. > > What I am doing wrong? > How to troubleshoot this problem? It sounds like "byte order reversal" which makes the typical noise. In order to 1:1 copy a CD, I'd recommend the use of the cdrdao tool - "cdrdao read-cd" and "cdrdao write" are the commands. It's easy to use them in order to get a CD "at once" and then reproduce it to blank media. If you need to use cdrecord, you can "preprocess" the .cdr files with "sox -x". You can always use the "play" command (from sox) to check what your files sound like. This is a sample command to turn .cdr files into .wav files, just to illustrate the correct parameters for interpreting the .cdr (CD audio data) format: sox -r 14400 -c 2 -b -L -S ${OUTFILE}.cdr ${OUTFILE}.wav > burncd doesn't work on my system: it breaks with my PIONEER DVD-RW > DVR-112D/1.21. I didn't try burncd since FreeBSD 4. Since then, I#m very comfortable with cdrecord and cdrdao and the atapicam facility. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 08:10:53 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C219106564A for ; Sat, 29 Nov 2008 08:10:53 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell.rawbw.com (shell.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 1FF178FC13 for ; Sat, 29 Nov 2008 08:10:53 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from eagle.syrec.org (c-67-188-126-36.hsd1.ca.comcast.net [67.188.126.36]) (authenticated bits=0) by shell.rawbw.com (8.13.6/8.13.6) with ESMTP id mAT8AkLD042156; Sat, 29 Nov 2008 00:10:46 -0800 (PST) Message-ID: <4930F904.6060702@rawbw.com> Date: Sat, 29 Nov 2008 00:10:44 -0800 From: Yuri User-Agent: Thunderbird 2.0.0.18 (X11/20081127) MIME-Version: 1.0 To: Polytropon References: <4930EEBB.7050701@rawbw.com> <20081129084852.6d00f2e5.freebsd@edvax.de> In-Reply-To: <20081129084852.6d00f2e5.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Copying audio CD with dd/cdrecord produces unplayable CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yuri@rawbw.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 08:10:53 -0000 Polytropon wrote: > > It sounds like "byte order reversal" which makes the typical noise. > In order to 1:1 copy a CD, I'd recommend the use of the cdrdao > tool - "cdrdao read-cd" and "cdrdao write" are the commands. > It's easy to use them in order to get a CD "at once" and then > reproduce it to blank media. > > If you need to use cdrecord, you can "preprocess" the .cdr > files with "sox -x". You can always use the "play" command > (from sox) to check what your files sound like. > > This is a sample command to turn .cdr files into .wav files, > just to illustrate the correct parameters for interpreting > the .cdr (CD audio data) format: > > sox -r 14400 -c 2 -b -L -S ${OUTFILE}.cdr ${OUTFILE}.wav > > > Thank you Polytropon, Byte order was really a problem. Strange that burncd is supposed to take the original byteorder and cdrecord takes reversed one. > I didn't try burncd since FreeBSD 4. Since then, I#m very > comfortable with cdrecord and cdrdao and the atapicam facility. > burncd is still recommended by handbook for ATAPI CDROMs for some reason. I feel like cdrecord is much nicer and once suggested to retire burncd in handbook and to always recommend cdrecord instead. But some people disagreed. Thanks for your helpful response, Yuri From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 08:40:51 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7B481065672 for ; Sat, 29 Nov 2008 08:40:51 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (agora.rdrop.com [199.26.172.34]) by mx1.freebsd.org (Postfix) with ESMTP id 9E1318FC16 for ; Sat, 29 Nov 2008 08:40:51 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (66@localhost [127.0.0.1]) by agora.rdrop.com (8.13.1/8.12.7) with ESMTP id mAT8eoSf075547 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 29 Nov 2008 00:40:50 -0800 (PST) (envelope-from perryh@pluto.rain.com) Received: (from uucp@localhost) by agora.rdrop.com (8.13.1/8.12.9/Submit) with UUCP id mAT8eop5075546; Sat, 29 Nov 2008 00:40:50 -0800 (PST) Received: from fbsd61 by pluto.rain.com (4.1/SMI-4.1-pluto-M2060407) id AA07419; Sat, 29 Nov 08 00:33:51 PST Date: Sat, 29 Nov 2008 00:37:26 -0800 From: perryh@pluto.rain.com To: tajudd@gmail.com Message-Id: <4930ff46.LVjmMuGTfhiq3N0y%perryh@pluto.rain.com> References: In-Reply-To: User-Agent: nail 11.25 7/29/05 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: shell scripting problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 08:40:51 -0000 > In the shell script, i have a > pkg_info -qLx "^$PKG-[0-9,._]+$" > also tried (-X)tended regex instead of the standard rege(-x). > > sh keeps erroring out saying various $" isn't a valid variable > name ... Both sh and csh will try to treat $ inside of "" as a variable reference. Does it work any better if you enclose the $ in '' instead? If you need the first $ to be a variable reference and the second to be used literally, you may need to do something like "^$PKG-[0-9,._]+"'$' From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 08:53:44 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2FECE1065672 for ; Sat, 29 Nov 2008 08:53:44 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell.rawbw.com (shell.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id EEC848FC14 for ; Sat, 29 Nov 2008 08:53:43 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from eagle.syrec.org (c-67-188-126-36.hsd1.ca.comcast.net [67.188.126.36]) (authenticated bits=0) by shell.rawbw.com (8.13.6/8.13.6) with ESMTP id mAT8rX9x053077; Sat, 29 Nov 2008 00:53:34 -0800 (PST) Message-ID: <4931030C.7070409@rawbw.com> Date: Sat, 29 Nov 2008 00:53:32 -0800 From: Yuri User-Agent: Thunderbird 2.0.0.18 (X11/20081127) MIME-Version: 1.0 To: Polytropon References: <4930EEBB.7050701@rawbw.com> <20081129084852.6d00f2e5.freebsd@edvax.de> In-Reply-To: <20081129084852.6d00f2e5.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Copying audio CD with dd/cdrecord produces unplayable CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yuri@rawbw.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 08:53:44 -0000 Polytropon wrote: > On Fri, 28 Nov 2008 23:26:51 -0800, Yuri wrote: > > If you need to use cdrecord, you can "preprocess" the .cdr > files with "sox -x". You can always use the "play" command > (from sox) to check what your files sound like. > 'sox -x' fails for some tracks with the message: sox formats: no handler for detected file type `video/x-unknown' and for some other tracks with these errors: sox mp3-duration: recoverable MAD error sox mp3-duration: MAD lost sync sox mp3-duration: recoverable MAD error sox mp3-duration: recoverable MAD error Yuri From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 09:01:59 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5FAD1065672 for ; Sat, 29 Nov 2008 09:01:59 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 562118FC08 for ; Sat, 29 Nov 2008 09:01:59 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-196-24-200.dynamic.qsc.de [92.196.24.200]) by mx01.qsc.de (Postfix) with ESMTP id 3004250760; Sat, 29 Nov 2008 10:01:56 +0100 (CET) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id mAT91ude002156; Sat, 29 Nov 2008 10:01:56 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Sat, 29 Nov 2008 10:01:56 +0100 From: Polytropon To: yuri@rawbw.com Message-Id: <20081129100156.72122e71.freebsd@edvax.de> In-Reply-To: <4931030C.7070409@rawbw.com> References: <4930EEBB.7050701@rawbw.com> <20081129084852.6d00f2e5.freebsd@edvax.de> <4931030C.7070409@rawbw.com> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Copying audio CD with dd/cdrecord produces unplayable CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 09:01:59 -0000 On Sat, 29 Nov 2008 00:53:32 -0800, Yuri wrote: > Polytropon wrote: > > On Fri, 28 Nov 2008 23:26:51 -0800, Yuri wrote: > > > > If you need to use cdrecord, you can "preprocess" the .cdr > > files with "sox -x". You can always use the "play" command > > (from sox) to check what your files sound like. > > > > 'sox -x' fails for some tracks with the message: > sox formats: no handler for detected file type `video/x-unknown' Strange... are these definitely audio CD tracks? You could use this form to explicitely tell sox how to interpret the data (which is "headerless" on audio CDs, of course): sox -r 14400 -c 2 -b -L -S -x track.cdr track_rev.cdr This describes CD audio as 14.4 kHz stereo 16 Bit (little endian - to be swapped). From the manual: -1/-2/-3/-4/-8 The sample datum size is 1, 2, 3, 4, or 8 bytes; i.e. 8, 16, 24, 32, or 64 bits. The flags -b/-w/-l/-d which are respectively aliases for -1/-2/-4/-8, and abbreviate byte, word, long word, double long (long long) word, are retained for backwards compatibility only. Seems like I'm a bit old fashioned. :-) > and for some other tracks with these errors: > sox mp3-duration: recoverable MAD error > sox mp3-duration: MAD lost sync > sox mp3-duration: recoverable MAD error > sox mp3-duration: recoverable MAD error This looks like that sox reads / generates MP3 files...? Are these definitely standard audio CD tracks (such as every old fashioned CD player can play)? -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 09:02:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FD401065670 for ; Sat, 29 Nov 2008 09:02:45 +0000 (UTC) (envelope-from wahjava@gmail.com) Received: from ti-out-0910.google.com (ti-out-0910.google.com [209.85.142.185]) by mx1.freebsd.org (Postfix) with ESMTP id AA7A28FC14 for ; Sat, 29 Nov 2008 09:02:44 +0000 (UTC) (envelope-from wahjava@gmail.com) Received: by ti-out-0910.google.com with SMTP id a1so1131049tib.3 for ; Sat, 29 Nov 2008 01:02:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:mail-followup-to:references:mime-version:content-type :content-disposition:in-reply-to:x-face:x-attribution:x-os-kernel :x-os-version:x-os-architecture:x-uptime:x-url:x-mail-morse :x-openpgp-fingerprint:x-openpgp-id:organization:user-agent:sender; bh=l2AYP4JYob8zfE+strWm9WBuY8ZdBSWloY1qv9ZRuBE=; b=WW4YUGQXQ0cSFdsu2/GiCmP/WyJCNtSbaXY0G4E6gaAlPIeeZXM2WRvLKAMbC5MzmN WvTHUGwfxwjOIBQtfh4dTD3C0FK3wUgXa6p3crSYX2PoqOy/M9FXHi/iin9byKa1X1+9 P1IixDCXHZAbMLHLf298E1EmmTL0P8YYfueS0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition:in-reply-to:x-face :x-attribution:x-os-kernel:x-os-version:x-os-architecture:x-uptime :x-url:x-mail-morse:x-openpgp-fingerprint:x-openpgp-id:organization :user-agent:sender; b=B+A9FKhFKvGXEXd7t4plNRCF4WO5vNA8fVh0iKZErfFtMe8npEe2Sk+4Cay0xpP/BI SgBg09sMVa2qLP/3jGN16Dtd96Spo0hGcWjk3akThxW3zuanYdt7J2+w50UyzwLkkWW1 L8FXVU5aXVcwpkyZ6t9jXQ4VyAb9VRt7q3Whg= Received: by 10.110.61.16 with SMTP id j16mr8575409tia.16.1227949363665; Sat, 29 Nov 2008 01:02:43 -0800 (PST) Received: from chateau.d.lf ([122.162.28.219]) by mx.google.com with ESMTPS id i9sm4317590tid.9.2008.11.29.01.02.37 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 29 Nov 2008 01:02:42 -0800 (PST) Date: Sat, 29 Nov 2008 14:34:22 +0530 From: =?utf-8?B?4KSG4KS24KWA4KS3IOCktuClgeCkleCljeCksg==?= Ashish Shukla To: Tim Judd Message-ID: <20081129090422.GA23908@chateau.d.lf> Mail-Followup-To: Tim Judd , freebsd-questions@freebsd.org References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0F1p//8PRICkK4MW" Content-Disposition: inline In-Reply-To: X-Face: )vGQ9yK7Y$Flebu1C>(B\gYBm)[$zfKM+p&TT[[JWl6:]S>cc$%-z7-`46Zf0B*syL.C]oCq[upTG~zuS0.$"_%)|Q@$hA=9{3l{%u^h3jJ^Zl; t7 X-Attribution: =?utf-8?B?4KSG4KS24KWA4KS3?= X-OS-Kernel: Linux X-OS-Version: 2.6.25-gentoo-r7 X-OS-Architecture: x86_64 X-Uptime: 14:11:05 up 2:29, 2 users, load average: 1.86, 2.39, 2.53 X-URL: http://wahjava.wordpress.com/ X-Mail-Morse: .-- .- .... .--- .- ...- .- .--.-. --. -- .- .. .-.. .-.-.- -.-. --- -- X-OpenPGP-Fingerprint: 1E00 4679 77E4 F8EE 2E4B 56F2 1F2F 8410 762E 5E74 X-OpenPGP-ID: 762E5E74 Organization: /\/0/\/3 User-Agent: Mutt/1.5.18 (2008-05-17) Sender: =?UTF-8?B?4KSG4KS24KWA4KS3IOCktuClgeCkleCljeCksiBBc2hpc2ggU2h1a2xh?= Cc: freebsd-questions@freebsd.org Subject: Re: shell scripting problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 09:02:45 -0000 --0F1p//8PRICkK4MW Content-Type: text/plain; charset=utf-8; format=flowed Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In , Tim Judd w= rote: >Hi all, > >I've been trying for a few weeks to try to get this to work, and the /bin/= sh >keeps snagging the command line before passing it to pkg_info > >I'll use a different shell if I need to, but since I got everything except >this one thing working, i'd rather keep it in sh > >In the shell script, i have a > pkg_info -qLx "^$PKG-[0-9,._]+$" >also tried (-X)tended regex instead of the standard rege(-x). > >sh keeps erroring out saying various $" isn't a valid variable name, or >pkg_info doesn't find the anything there. And it does exist. This all ca= me >around with me trying to automatically update a bunch of ports. xorg-fonts >is outdated, but xorg-fonts-100dpi or xorg-fonts-75dpi isn't. So the regex >returns multiple values (as above). I just want the first, hence the >anchors. I tried following on my 8.0-CURRENT box: ----8<----8<---- abbe [~] monte-cristo% exec sh $ echo "^$PKG-[0-9,._]+$" ^-[0-9,._]+$ $ uname -a FreeBSD monte-cristo.france 8.0-CURRENT FreeBSD 8.0-CURRENT #21: Mon Nov 10= 21:19:13 IST 2008 root@monte-cristo.france:/usr/obj/usr/src/sys/ULE a= md64 ---->8---->8---- And as you can see in above paste, 'sh' doesn't evaluate $" as variable as= =20 it has evaluated $PKG as variable. this works with 'sh' shipped with=20 8.0-CURRENT. Maybe some issue with your 'sh'. HTH --=20 Ashish Shukla --0F1p//8PRICkK4MW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (GNU/Linux) iEYEARECAAYFAkkxBZYACgkQHy+EEHYuXnRCCwCfQyV8Do0BuNjlzlgNhL5AEs/D sqIAoNCpE96k//Ne3xms9kVEm7WFIkyw =5CfB -----END PGP SIGNATURE----- --0F1p//8PRICkK4MW-- From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 10:39:48 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8923D1065791 for ; Sat, 29 Nov 2008 10:39:48 +0000 (UTC) (envelope-from freebsd@optimis.net) Received: from mail.optimis.net (mail.optimis.net [69.104.191.124]) by mx1.freebsd.org (Postfix) with ESMTP id 3667B8FC1C for ; Sat, 29 Nov 2008 10:39:48 +0000 (UTC) (envelope-from freebsd@optimis.net) Received: from marvin.optimis.net (marvin.optimis.net [192.168.1.3]) by mail.optimis.net (8.14.2/8.14.2) with ESMTP id mATAdlX6056961 for ; Sat, 29 Nov 2008 02:39:47 -0800 (PST) (envelope-from freebsd@optimis.net) Received: from marvin.optimis.net (localhost [127.0.0.1]) by marvin.optimis.net (8.14.2/8.14.2) with ESMTP id mATAdkRR037933 for ; Sat, 29 Nov 2008 02:39:46 -0800 (PST) (envelope-from freebsd@optimis.net) Received: (from george@localhost) by marvin.optimis.net (8.14.2/8.14.2/Submit) id mATAdk5Q037932 for freebsd-questions@freebsd.org; Sat, 29 Nov 2008 02:39:46 -0800 (PST) (envelope-from freebsd@optimis.net) Date: Sat, 29 Nov 2008 02:39:46 -0800 From: George Davidovich To: freebsd-questions@freebsd.org Message-ID: <20081129103946.GA35719@marvin.optimis.net> References: <20081129060801.GA41353@shepherd> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Re: shell scripting problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 10:39:48 -0000 On Fri, Nov 28, 2008 at 11:31:17PM -0700, Tim Judd wrote: > On Fri, Nov 28, 2008 at 11:08 PM, Sahil Tandon > wrote: > > Tim Judd wrote: > > > > I am not sure what the problem is, but are you just looking for the > > output of "pkg_info -qxL" on the *first* instance of xorg-fonts-*? > > > > % pkg_info -qL `pkg_info | grep xorg-fonts | head -1 | cut -d\ -f1` > > > > FWIW, your regexp also looks faulty. > > I'm sure it's faulty > > Which is why I'm asking for help What you were asking wasn't clear, and could have included a script problem, a port update problem, a pkg_info problem, and/or a regex problem. And then, I'm scratching my head wondering how you're making use of the output of the -L switch. > My regexes (in it's various forms) produce the output similar to: > xorg-fonts-75dpi > xorg-fonts > xorg-fonts-100dpi > ... > > and I'm wanting my regex to return the 2nd value, in this example, in > this list. If that's the case, where does your regex of "^$PKG-[0-9,._]+$" fit into all this? And why would you expect pkg_info to match on something like '^xorg-fonts$' when, AFAICT, there is no port by that name? Again, you're not being clear. > The problem is the shell is taking the end anchor $ as the start of a > variable, and no matter how I escape it, it seems to never work. The end-of-line anchors work fine. For the following I've used bash, but you can copy the same into a /bin/sh script for identical results: # PKG=cyrus # pkg_info -Ex $PKG cyrus-sasl-2.1.22_1 cyrus-sasl-saslauthd-2.1.22 # pkg_info -Ex $PKG.*1 cyrus-sasl-2.1.22_1 cyrus-sasl-saslauthd-2.1.22 # pkg_info -Ex ^$PKG.*1\$ cyrus-sasl-2.1.22_1 I'd suggest you submit your script or an abbreviated version. -- George From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 10:42:37 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB75A1065670 for ; Sat, 29 Nov 2008 10:42:37 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr13.xs4all.nl (smtp-vbr13.xs4all.nl [194.109.24.33]) by mx1.freebsd.org (Postfix) with ESMTP id 4C8F78FC12 for ; Sat, 29 Nov 2008 10:42:36 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr13.xs4all.nl (8.13.8/8.13.8) with ESMTP id mATAgTos006580; Sat, 29 Nov 2008 11:42:29 +0100 (CET) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 23C5FBAA4; Sat, 29 Nov 2008 11:42:29 +0100 (CET) Date: Sat, 29 Nov 2008 11:42:29 +0100 From: Roland Smith To: Yuri Message-ID: <20081129104229.GA64944@slackbox.xs4all.nl> References: <4930EEBB.7050701@rawbw.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ew6BAiZeqk4r7MaW" Content-Disposition: inline In-Reply-To: <4930EEBB.7050701@rawbw.com> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.18 (2008-05-17) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: Copying audio CD with dd/cdrecord produces unplayable CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 10:42:37 -0000 --ew6BAiZeqk4r7MaW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Nov 28, 2008 at 11:26:51PM -0800, Yuri wrote: > I am trying to copy an audio CD. >=20 > First I've ran: > dd if=3D/dev/acd0tN of=3Dtrack-N.cdr bs=3D2352 > for every track. This gets raw track files. It is better to use cdparanoia (from the audio/cdparanoia port), since it outputs WAV files. It also tries to restore the data in case of a damaged disc. To make it to work, I have a symbolic link /dev/cdrom [courtesy of /etc/devfs.conf] that links to the real (atapicam) CD device. Ripping is now done by running the following command: cdparanoia -B "1-" This will result in a number of wav files. You can use these with cdrecord and it will Just Work. Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --ew6BAiZeqk4r7MaW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkkxHJUACgkQEnfvsMMhpyX3/QCfRbAFjLhGD2elZY6G0DfqX902 RnwAoJEiVQCQgZpyZj12VhFh6fsU2o5/ =TOJS -----END PGP SIGNATURE----- --ew6BAiZeqk4r7MaW-- From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 11:43:47 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB48A106564A for ; Sat, 29 Nov 2008 11:43:47 +0000 (UTC) (envelope-from darwinian.empire@gmail.com) Received: from mail-fx0-f21.google.com (mail-fx0-f21.google.com [209.85.220.21]) by mx1.freebsd.org (Postfix) with ESMTP id 7BF238FC24 for ; Sat, 29 Nov 2008 11:43:47 +0000 (UTC) (envelope-from darwinian.empire@gmail.com) Received: by fxm14 with SMTP id 14so61146fxm.19 for ; Sat, 29 Nov 2008 03:43:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=KmXTy5yd7zr/ELd0etQEUsLVw5xjQy9K7EsClu6Z/r8=; b=LoHHO18sVN+swluJCDO6bftHqaiqrEzkuuDAZcGH9nTSW9a3CtUD1Jl+h73zIU0nne 1Oh3qZf+XNg8+bS2Q9KCWVzgbuzI5dyqHYihJRvg6ALChcOc0fvvWrWy7ih58DAjwtqL 9TfzHbAuJvkCmduIi3qTnGUQBKa0iAHBRv6Ms= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=tVTPv8tbG1pcM313e2ugw91Zx2d60jo4SXwLo34aedsgijrPNlwzPfpyFRuzeaslCr wR8ftMNqYAnUqw8oKv4AmvziQM1sXV3E80fDidIHaXTtPwmSkTRl8UQsFfR+IXh20V7w iLV8Cftt2V8XddJvvvHJwNjDphfqSphpMsMM4= Received: by 10.181.146.14 with SMTP id y14mr3130973bkn.16.1227959025928; Sat, 29 Nov 2008 03:43:45 -0800 (PST) Received: by 10.181.56.5 with HTTP; Sat, 29 Nov 2008 03:43:45 -0800 (PST) Message-ID: Date: Sat, 29 Nov 2008 13:43:45 +0200 From: "Roey Dror" To: "FreeBSD Questions" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Noisy mouse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 11:43:48 -0000 I'm using FreeBSD 7.0 (i386) with the IceWM window manager. The sound seems to work when playing files with xmms. When my speakers are turned on, I hear noise whenever I move my mouse or make a keystroke. Is this a bug, or a strange feature? How do i turn it off? /dev/sndstat: FreeBSD Audio Driver (newpcm: 32bit 2007061600/i386) Installed devices: pcm0: at io 0xdc00 irq 5 kld snd_via82c686 [MPSAFE] (1p:1v/1r:1v channels duplex default) demsg: pcm0: port 0xdc00-0xdcff,0xe000-0xe003,0xe400-0xe403 irq 5 at device 7.5 on pci0 pcm0: [ITHREAD] pcm0: sysctl: hw.snd.latency_profile: 1 hw.snd.latency: 5 hw.snd.report_soft_formats: 1 hw.snd.compat_linux_mmap: 0 hw.snd.feeder_buffersize: 16384 hw.snd.feeder_rate_round: 25 hw.snd.feeder_rate_max: 2016000 hw.snd.feeder_rate_min: 1 hw.snd.verbose: 1 hw.snd.maxautovchans: 16 hw.snd.default_unit: 0 hw.snd.version: 2007061600/i386 hw.snd.default_auto: 0 -- Roey From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 11:46:51 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81A771065740 for ; Sat, 29 Nov 2008 11:46:51 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from sola.nimnet.asn.au (paqi.nimnet.asn.au [220.233.188.227]) by mx1.freebsd.org (Postfix) with ESMTP id D1D6A8FC0C for ; Sat, 29 Nov 2008 11:46:50 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from localhost (localhost [127.0.0.1]) by sola.nimnet.asn.au (8.14.2/8.14.2) with ESMTP id mATBkSqt071012; Sat, 29 Nov 2008 22:46:28 +1100 (EST) (envelope-from smithi@nimnet.asn.au) Date: Sat, 29 Nov 2008 22:46:28 +1100 (EST) From: Ian Smith To: Pongthep Kulkrisada In-Reply-To: <20081128163044.GA1850@gmail.com> Message-ID: <20081129222143.R34249@sola.nimnet.asn.au> References: <20081123120013.8EDF310657E3@hub.freebsd.org> <20081124012858.J43853@sola.nimnet.asn.au> <20081128163044.GA1850@gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Andrew , freebsd-questions@freebsd.org, Fbsd1 , Manolis Kiagias Subject: Re: Problem about ppp -nat X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 11:46:51 -0000 On Fri, 28 Nov 2008, Pongthep Kulkrisada wrote: > Hi all, > > > I didn't touch /etc/ppp/ppp.conf, which has been working for 5 years > > since FBSD5.0R. Even if I go back to GENERIC kernel. I could not dial out > > to ISP in any ways. I didn't know what I do wrong even if > > I did read many docs. > I tried exactly what being described in the handbook. But all failed, > I still can't dial ISP. I think that posting /etc/ppp/ppp.conf may be > useful for your diagnostic. Note that this file has been used for > long time and never changed. But I've just reminded that ppp is > changed from version to version. My ppp.conf may not suit the current > version. I don't know. > > # cat /etc/ppp/ppp.conf > > default: > set log Phase Chat LCP IPCP CCP tun command Try using more logging, at least temporarily, then you should be able to see from your ppp.log just what's going on. For about 10 years I used: set log phase chat connect carrier link ipcp ccp ID0 TUN command > ident user-ppp VERSION (built COMPILATIONDATE) > > set device /dev/cuad0 Try /dev/cuaa0. At least in the olden days, cuad0 was configured more for dialin rather than dialout. This may? explain the next two lines: > set ctsrts off # enables software flow control > set accmap 000a0000 # comments out these 2 lines for hardware flow control Not sure why you don't want to use hardware flow control? Is this with a regular external modem? Anyway, I've always used ctsrts (with cuaa0). > set speed 115200 > disable pred1 > deny pred1 > disable lqr > deny lqr > set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \ > \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 180 CONNECT" > set redial 3 20 > enable dns # request DNS info (for resolv.conf) Looks ok. TIMEOUT 60 is plenty for a dialup modem, but whatever. > isp: > set phone 0123456789 > set authname mylogin@myisp.com > set authkey mypassword > set timeout 0 > add! default HISADDR # Add a (sticky) default route > set openmode active > accept pap > set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 > add 0 0 HISADDR You probably don't want both those add statements. Try taking out the first one, and replacing the last one with the add! default HISADDR. Unsure if you need an 'enable pap' as well, maybe default. Can't hurt. Anyway, some extra logging should show you when and how it fails, if it still does .. cheers, Ian From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 12:21:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B38B71065672 for ; Sat, 29 Nov 2008 12:21:45 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 523EC8FC14 for ; Sat, 29 Nov 2008 12:21:45 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-196-24-200.dynamic.qsc.de [92.196.24.200]) by mx01.qsc.de (Postfix) with ESMTP id 58C7F5057E; Sat, 29 Nov 2008 13:21:42 +0100 (CET) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id mATCLfO0002816; Sat, 29 Nov 2008 13:21:41 +0100 (CET) (envelope-from freebsd@edvax.de) Date: Sat, 29 Nov 2008 13:21:41 +0100 From: Polytropon To: "Roey Dror" Message-Id: <20081129132141.6f450eea.freebsd@edvax.de> In-Reply-To: References: Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: Noisy mouse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 12:21:45 -0000 On Sat, 29 Nov 2008 13:43:45 +0200, "Roey Dror" wrote: > I'm using FreeBSD 7.0 (i386) with the IceWM window manager. The sound > seems to work when playing files with xmms. > When my speakers are turned on, I hear noise whenever I move my mouse > or make a keystroke. Is this a bug, or a strange feature? How do i > turn it off? I have a similar observation here, allthough you can hear the "noisy mouse" only when the mixer settings vol is 100. In my opinion, this seems to be a kind of electromagnetic interference, but I didn't test this theory yet. Or it has to do with data fransfers during mouse movement / keystrokes? USB uses polling, but maybe some weird interrupt problem? Anyone remembers Sound Blaster problems when printing on a parallel printer (IRQ7)? My settings are different from yours: % uname -r 7.0-STABLE (ca. Aug 2008) % cat /dev/sndstat FreeBSD Audio Driver (newpcm: 32bit 2007061600/i386) Installed devices: pcm0: at io 0xd800 irq 16 [MPSAFE] (1p:1v/1r:1v channels duplex default) % dmesg | grep pcm pcm0: port 0xd800-0xd8ff irq 16 at device 7.0 on pci3 pcm0: [ITHREAD] % sysctl -a | grep snd hw.snd.latency_profile: 1 hw.snd.latency: 5 hw.snd.report_soft_formats: 1 hw.snd.compat_linux_mmap: 0 hw.snd.feeder_buffersize: 16384 hw.snd.feeder_rate_round: 25 hw.snd.feeder_rate_max: 2016000 hw.snd.feeder_rate_min: 1 hw.snd.verbose: 1 hw.snd.maxautovchans: 16 hw.snd.default_unit: 0 hw.snd.version: 2007061600/i386 hw.snd.default_auto: 0 As you described, moving the mouse and pressing keys on the keyboard result in strange "sound effects". I have a Sun USB type 6 keyboard + type 6 mouse. I'm using a separate sound card (PCI) because I diskike the "AC'97" CPU sound card emulation. :-) -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 12:36:11 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B1D81065670 for ; Sat, 29 Nov 2008 12:36:11 +0000 (UTC) (envelope-from Joerg.Schilling@fokus.fraunhofer.de) Received: from iron01.fraunhofer.de (iron01.fraunhofer.de [153.96.1.54]) by mx1.freebsd.org (Postfix) with ESMTP id 37C2D8FC13 for ; Sat, 29 Nov 2008 12:36:10 +0000 (UTC) (envelope-from Joerg.Schilling@fokus.fraunhofer.de) Received: from pluto.fokus.fraunhofer.de ([195.37.77.164]) by iron01.fraunhofer.de with ESMTP/TLS/DHE-RSA-AES256-SHA; 29 Nov 2008 13:06:29 +0100 Received: from EXCHSRV.fokus.fraunhofer.de (bohr [10.147.9.231]) by pluto.fokus.fraunhofer.de (8.13.7/8.13.7) with SMTP id mATC6SXE015655; Sat, 29 Nov 2008 13:06:28 +0100 (MET) Received: from rigel ([10.147.65.195]) by EXCHSRV.fokus.fraunhofer.de with Microsoft SMTPSVC(6.0.3790.3959); Sat, 29 Nov 2008 13:06:27 +0100 Date: Sat, 29 Nov 2008 13:06:27 +0100 From: Joerg.Schilling@fokus.fraunhofer.de (Joerg Schilling) To: yuri@rawbw.com, freebsd-questions@freebsd.org Message-ID: <49313043.mP3zqfP/2LOQEKJe%Joerg.Schilling@fokus.fraunhofer.de> User-Agent: nail 11.22 3/20/05 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 29 Nov 2008 12:06:27.0989 (UTC) FILETIME=[E87CCC50:01C9521A] Cc: Subject: Re: Copying audio CD with dd/cdrecord produces unplayable CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 12:36:11 -0000 >I am trying to copy an audio CD. >First I've ran: >dd if=/dev/acd0tN of=track-N.cdr bs=2352 >for every track. This gets raw track files. >Secondly I run: >cdrecord -v -dao -audio $* dev=2,0,0 speed=4 >This is supposed to recreate the original CD. >But when I try to play it I can hear only noise. Well, you should not expect to get a usable read result from dd. It is much better to use cdda2wav -vall to read the original and if you later use cdrecord -useinfo .... you will get a correct copy. BTW: cdrecord of course works in a platform independent way and thus expects raw audio data in standard network byte order.... Jörg -- EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin js@cs.tu-berlin.de (uni) schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 12:42:08 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 22EE61065676 for ; Sat, 29 Nov 2008 12:42:08 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from hmacs.cmi.ua.ac.be (hmacs.cmi.ua.ac.be [143.129.75.10]) by mx1.freebsd.org (Postfix) with ESMTP id B0B2E8FC17 for ; Sat, 29 Nov 2008 12:42:07 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from hmacs.cmi.ua.ac.be (localhost [127.0.0.1]) by hmacs.cmi.ua.ac.be (8.13.8+Sun/8.13.8) with ESMTP id mATCg5KJ017931; Sat, 29 Nov 2008 13:42:05 +0100 (CET) Received: from localhost (pdon@localhost) by hmacs.cmi.ua.ac.be (8.13.8+Sun/8.13.8/Submit) with ESMTP id mATCg5D8017928; Sat, 29 Nov 2008 13:42:05 +0100 (CET) X-Authentication-Warning: hmacs.cmi.ua.ac.be: pdon owned process doing -bs Date: Sat, 29 Nov 2008 13:42:05 +0100 (CET) From: Pieter Donche X-X-Sender: pdon@hmacs.cmi.ua.ac.be To: matt donovan In-Reply-To: <28283d910811281557v53057fb0tf264bfe169bdee35@mail.gmail.com> Message-ID: References: <28283d910811281557v53057fb0tf264bfe169bdee35@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: "mail.list freebsd-questions" Subject: Re: nxserver/freenx X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pieter Donche List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 12:42:08 -0000 On Fri, 28 Nov 2008, matt donovan wrote: > On Fri, Nov 28, 2008 at 3:53 AM, Pieter Donche wrote: > >> I want my freeBSD-7.0-RELEASE server accessible via a FreeNX client >> from www.nomachine.com. >> >> I believe I should install both the ports nxserver and freenx: >> >>> From http://www.freebsdports.info/ports/net/nxserver.html I read: >>> >> nxserver: this port provides only the NX core binaries and libraries as >> were released by NoMachine as source code. To make them work and be >> used as an NX server, you will need to: >> - either install FreeNX (net/freenx) additionally, >> - or install the commercial NoMachine server product (currently not >> available in native FreeBSD form) >> >> $ whereis nxserver >> nxserver: /usr/ports/net/nxserver >> $ whereis freenx >> freenx: /usr/ports/net/freenx >> # cd /usr/ports/net/nxserver >> # make install clean >> ===> nxserver-1.4.0_1 is marked as broken: this port fails to build with >> xorg-7 >> .2. >> *** Error code 1 >> >> What's this? >> >> What are my alternatives to get a NX server running on FreeBSD? >> >> # pkg_add -r freenx >> isn't found ... >> >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to " >> freebsd-questions-unsubscribe@freebsd.org" > > > well freenx now provides nxserver I tried updating the ports but the freenx > tarball isn't very clear like it used to be since, since the files have > changed so much from what the old version used to be like. you could try > freenx and see if it will work or not. Since I m pretty sure the port is > old. No help ... This ends up with the same problem ... : # cd /usr/ports/net/freenx # make install clean ===> Vulnerability check disabled, database not found => freenx-0.4.4.tar.gz doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from http://www.iem.pw.edu.pl/ftp/distfiles/. fetch: http://www.iem.pw.edu.pl/ftp/distfiles/freenx-0.4.4.tar.gz: Moved Temporarily => Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. freenx-0.4.4.tar.gz 100% of 45 kB 92 kBps ===> Extracting for freenx-0.4.4_3 => MD5 Checksum OK for freenx-0.4.4.tar.gz. => SHA256 Checksum OK for freenx-0.4.4.tar.gz. ===> Patching for freenx-0.4.4_3 ===> Applying FreeBSD patches for freenx-0.4.4_3 ===> freenx-0.4.4_3 depends on file: /usr/local/libdata/xorg/libraries - found ===> Configuring for freenx-0.4.4_3 ===> Installing for freenx-0.4.4_3 ===> freenx-0.4.4_3 depends on file: /usr/local/NX/bin/nxagent - not found ===> Verifying install for /usr/local/NX/bin/nxagent in /usr/ports/net/nxserver ===> nxserver-1.4.0_1 is marked as broken: this port fails to build with xorg-7.2. *** Error code 1 Stop in /usr/ports/net/nxserver. *** Error code 1 Stop in /usr/ports/net/freenx. From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 12:50:33 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 187371065675 for ; Sat, 29 Nov 2008 12:50:33 +0000 (UTC) (envelope-from davidfeustel@comcast.net) Received: from QMTA04.emeryville.ca.mail.comcast.net (qmta04.emeryville.ca.mail.comcast.net [76.96.30.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0DA888FC17 for ; Sat, 29 Nov 2008 12:50:33 +0000 (UTC) (envelope-from davidfeustel@comcast.net) Received: from OMTA11.emeryville.ca.mail.comcast.net ([76.96.30.36]) by QMTA04.emeryville.ca.mail.comcast.net with comcast id l0C21a00A0mlR8UA40aYRA; Sat, 29 Nov 2008 12:34:32 +0000 Received: from localhost ([69.245.244.28]) by OMTA11.emeryville.ca.mail.comcast.net with comcast id l0aX1a00A0dV8n18X0aXvw; Sat, 29 Nov 2008 12:34:32 +0000 X-Authority-Analysis: v=1.0 c=1 a=v_sKnhHi8tM_EvctR8IA:9 a=tgznN281vLwpjRg9mtp-sONVgzYA:4 a=l9fpL-Bp2iUA:10 a=LY0hPdMaydYA:10 From: Dave Feustel To: Harry Veltman In-Reply-To: <001301c951e4$e0b93fc0$f75afb48@harryveltman> Message-Id: <20081129125033.0DA888FC17@mx1.freebsd.org> Date: Sat, 29 Nov 2008 12:50:33 +0000 (UTC) Cc: questions@FreeBSD.org Subject: Re: Purchase of FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 12:50:33 -0000 On Fri, Nov 28, 2008 at 09:39:39PM -0800, Harry Veltman wrote: > Where can I buy it on CD, and how do I know if it is compatible with my hardware? Try cheapbytes.com. From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 13:42:38 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19DDA106564A for ; Sat, 29 Nov 2008 13:42:38 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from mail.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id E3F7B8FC08 for ; Sat, 29 Nov 2008 13:42:37 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (mail.rachie.is-a-geek.net [192.168.2.101]) by mail.rachie.is-a-geek.net (Postfix) with ESMTP id 0EC8EAFCF5F; Sat, 29 Nov 2008 04:42:37 -0900 (AKST) From: Mel To: freebsd-questions@freebsd.org, yuri@rawbw.com Date: Sat, 29 Nov 2008 14:42:35 +0100 User-Agent: KMail/1.9.7 References: <4930EEBB.7050701@rawbw.com> <20081129084852.6d00f2e5.freebsd@edvax.de> <4930F904.6060702@rawbw.com> In-Reply-To: <4930F904.6060702@rawbw.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811291442.35849.fbsd.questions@rachie.is-a-geek.net> Cc: Polytropon Subject: Re: Copying audio CD with dd/cdrecord produces unplayable CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 13:42:38 -0000 On Saturday 29 November 2008 09:10:44 Yuri wrote: > Polytropon wrote: > > It sounds like "byte order reversal" which makes the typical noise. > > In order to 1:1 copy a CD, I'd recommend the use of the cdrdao > > tool - "cdrdao read-cd" and "cdrdao write" are the commands. > > It's easy to use them in order to get a CD "at once" and then > > reproduce it to blank media. > > > > If you need to use cdrecord, you can "preprocess" the .cdr > > files with "sox -x". You can always use the "play" command > > (from sox) to check what your files sound like. > > > > This is a sample command to turn .cdr files into .wav files, > > just to illustrate the correct parameters for interpreting > > the .cdr (CD audio data) format: > > > > sox -r 14400 -c 2 -b -L -S ${OUTFILE}.cdr ${OUTFILE}.wav > > Thank you Polytropon, > Byte order was really a problem. > Strange that burncd is supposed to take the original byteorder and > cdrecord takes reversed one. > > > I didn't try burncd since FreeBSD 4. Since then, I#m very > > comfortable with cdrecord and cdrdao and the atapicam facility. > > burncd is still recommended by handbook for ATAPI CDROMs > for some reason. Well, cdrecord don't work without CAM. > I feel like cdrecord is much nicer and once suggested to retire > burncd in handbook and to always recommend cdrecord instead. > But some people disagreed. Manpages with over 10 pages just describing options and arguments make some people dizzy. Especially for simple tasks like burning a cd. "Just do it". -- Mel Problem with today's modular software: they start with the modules and never get to the software part. From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 14:17:31 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D6C04106564A for ; Sat, 29 Nov 2008 14:17:31 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from sola.nimnet.asn.au (paqi.nimnet.asn.au [220.233.188.227]) by mx1.freebsd.org (Postfix) with ESMTP id 323148FC18 for ; Sat, 29 Nov 2008 14:17:30 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from localhost (localhost [127.0.0.1]) by sola.nimnet.asn.au (8.14.2/8.14.2) with ESMTP id mATEHDNu075882; Sun, 30 Nov 2008 01:17:13 +1100 (EST) (envelope-from smithi@nimnet.asn.au) Date: Sun, 30 Nov 2008 01:17:13 +1100 (EST) From: Ian Smith To: Pongthep Kulkrisada In-Reply-To: <20081125192256.GA77251@gmail.com> Message-ID: <20081129234109.M34249@sola.nimnet.asn.au> References: <20081123120013.8EDF310657E3@hub.freebsd.org> <20081124012858.J43853@sola.nimnet.asn.au> <20081125192256.GA77251@gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Andrew , freebsd-questions@freebsd.org, Fbsd1 , Manolis Kiagias Subject: Re: Problem about ppp -nat X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 14:17:32 -0000 On Wed, 26 Nov 2008, Pongthep Kulkrisada wrote: [..] > read many docs. Yesterday I decided to re-install FBSD7.0R from CDs > again. That causes late reply, I'm sorry. :-( No worries .. it's not like we were just hanging out waiting :) > I now have gateway_enable="YES" and firewall_enable="YES" in my /etc/rc.conf. > I can then dial ISP again. Then the following steps were taken. > > 1. I can ping any sites and very fast. > 2. # kldload ipfw (as I don't want to compile kernel anymore.) > 3. # kldload ipdivert I was under the impression that divert had to be built into the kernel, but perhaps kldload ipdivert works allright with 7.x. > 4. I also have ``natd 8668/divert'' in my /etc/services. > 5. # natd -interface tun0 > 6. # /sbin/ipfw add 101 divert natd all from any to any via tun0 > 7. # /sbin/ipfw add 102 pass all from any to any > (Note that my first ipfw rule is 100 check-state. So steps 6 and 7 > should be considered as the first two filtering rules.) Just as an aside, as you're not using any keep-state rules: you should do NAT before a check-state, so packets match dynamic rules after NAT. > I do this way because I know from reading document that ppp must be > run before natd. I always want to dial ppp by myself so I can't put > natd in /etc/rc.conf. And doing it interactively is very easy to > detect when something goes wrong and step 1 can proof my good > connection. More specifically the interface, here tun0, must exist before using divert sockets using that interface. natd(8) says: 3. If you use the -interface option, make sure that your interface is already configured. If, for example, you wish to specify `tun0' as your interface, and you are using ppp(8) on that interface, you must make sure that you start ppp prior to starting natd. You've probably noticed that tun0 doesn't go away when you close ppp, so it's sufficient to have run ppp once before using the divert rule. In any case I doubt this'd really do any harm (apart from not working :) There's another way to bring up ppp (so creating tun0) without dialing out until you're ready; using ppp -auto, with a dial filter rule/s. See ppp(8) and the examples in /usr/share/examples/ppp/ppp.conf.sample .. maybe something like: set filter dial 0 0 0 icmp src eq 8 which will only dial upon seeing an outbound ping packet. You could specify some address rather than 0 0 if you want to be more specific. > After step 7 I switched to terminal, which keeping ping. > I found that ping stalled. I tried re-connect many times, now I know > that step 3 causes the problem. I have also tried putting > ipfw_load="YES" and ipdivert_load="YES" in /boot/loader.conf. The > problem persists. I'm quite sure that the module ipdivert has adverse > effect to the connection through modem. Should I say a bug?!!! Perhaps others can say if it's ok to kldload ipdivert after ipfw these days? In any case, this could mean coincidence rather than causation. You've not shown error messages from ppp.log indicating disconnection? Two things you should always check if there are problems passing traffic through an interface that's apparently 'UP': # ifconfig # make sure addresses, netmasks, etc make sense. # netstat -finet -ran # check the default and other routes make sense. > Without ipdivert I can not play NAT (I don't want to learn ``ipfw > nat'' and ``ppp -nat'' for now). This was also the major problem when 'ipfw nat' is as easy to setup as natd, using much the same semantics, and doesn't require the presence of ipdivert. I can't say whether it would get upset if tun0 was specified and didn't yet exist, but expect it'll just ignore any packets that don't match the specified interface, though I can't test that here now. Something like this should work: # ipfw nat 123 config if tun0 log deny_in same_ports unreg_only reset # ipfw add [number] nat 123 ip4 from any to any via tun0 where 123 is an arbitary number,and ip4 is more specific than 'all' nat logging is likely intense, but useful until things are working. deny_in provides some protection till your ipfw is properly setup. unreg_only means only traffic from your internal network (eg 192.168.*) is considered, not traffic from your router itself - maybe quicker. reset clears the aliasing table if your IP address on tun0 changes. You can study more about all NAT functionality in 'man 3 libalias'. > I recompiled kernel with options IPDIVERT few days ago. That caused > me unable to connect ISP. One thing I should note here, always run > ppp before natd. Last time when I was on GENERIC kernel, I couldn't > connect ISP because my /etc/rc.conf contained natd. So natd ran Again, I kinda doubt this is cause and effect; I can't see how the mere presence of ipdivert could have any such effect. Perhaps the extra logging in ppp.log suggested might help debug this (other) problem? > before ppp, which was run manually. That was wrong. Anyone has a clue > please point me to the right direction. I would probably go back to > external router gateway ``out of the box''. For now I give up and > need to rest. Well you can solve your loading-order problem with ppp -auto and a dial filter as above. Then you're free to choose between natd and ipfw nat, or even ppp -nat if you want. Personally I quit using ppp in favour of mpd4, and that works well for me (yes with natd, though on a 5.5 system) cheers, Ian From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 14:24:30 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA2301065670 for ; Sat, 29 Nov 2008 14:24:30 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from mail.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 8936A8FC1C for ; Sat, 29 Nov 2008 14:24:30 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (mail.rachie.is-a-geek.net [192.168.2.101]) by mail.rachie.is-a-geek.net (Postfix) with ESMTP id 9E555AFC1C6; Sat, 29 Nov 2008 05:24:29 -0900 (AKST) From: Mel To: freebsd-questions@freebsd.org Date: Sat, 29 Nov 2008 15:24:28 +0100 User-Agent: KMail/1.9.7 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811291524.28632.fbsd.questions@rachie.is-a-geek.net> Cc: Tim Judd Subject: Re: shell scripting problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 14:24:30 -0000 On Saturday 29 November 2008 05:58:44 Tim Judd wrote: > In the shell script, i have a > pkg_info -qLx "^$PKG-[0-9,._]+$" > also tried (-X)tended regex instead of the standard rege(-x). pkg_info -qLx "^${PKG}-[0-9,\._]+\$" -- 1-- -2- @1: shell evaluates before regex. Use braces so that end of variable is explicit @2: this shouldn't be evaluated by the shell, so escape it with a backslash. It's passed as dollar sign to the command. Also, I'm relatively sure it needs -X for the + sign, but haven't tested. -- Mel Problem with today's modular software: they start with the modules and never get to the software part. From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 16:03:09 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15230106564A for ; Sat, 29 Nov 2008 16:03:09 +0000 (UTC) (envelope-from dan-freebsd-questions@ourbrains.org) Received: from ourbrains.org (li48-221.members.linode.com [66.246.76.221]) by mx1.freebsd.org (Postfix) with SMTP id AA7C58FC1A for ; Sat, 29 Nov 2008 16:03:08 +0000 (UTC) (envelope-from dan-freebsd-questions@ourbrains.org) Received: (qmail 29020 invoked by uid 1000); 29 Nov 2008 16:03:29 -0000 Date: Sat, 29 Nov 2008 11:03:29 -0500 From: Dan To: freebsd-questions@freebsd.org Message-ID: <20081129160329.GA27853@ourbrains.org> Mail-Followup-To: freebsd-questions@freebsd.org References: <26face530811221316y5be5bf40ra5c38f389f554ca1@mail.gmail.com> <20081124173650.GA933@ourbrains.org> <20081124193819.GF55491@gizmo.acns.msu.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081124193819.GF55491@gizmo.acns.msu.edu> User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Re: Unix program that sends email directly using MX record X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 16:03:09 -0000 Jerry McAllister(jerrymc@msu.edu)@2008.11.24 14:38:19 -0500: > On Mon, Nov 24, 2008 at 12:36:50PM -0500, Dan wrote: > > > Kelly Jones(kelly.terry.jones@gmail.com)@2008.11.22 14:16:56 -0700: > > > What Unix program sends email directly, using the MX record of the > > > recipient, instead of using sendmail or an installed MTA? > > > > Sendmail/Sendwhale sucks for just about anything. There are much better > > MTAs out there. For your needs, I think 'nullmailer' from Bruce Guenter > > would fit the bill and so would qmail in nullmailer mode. Postfix as well. > > Heavily prejudicial response. I haven't had any trouble using > Sendmail for just about anything. But, whatever. It's not prejudicial. I do not wish to start yet another MTA flamewar, but you can't deny Sendmail's poor security, design, performance, and complex configuration. The poor security history is there, the poor funnel design and conf files that require a scripting language are obviously ugly. Sendmail is often replaced due to performance concerns alone. There are much better alternatives. qmail and Postfix. From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 16:17:44 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2EA31065673 for ; Sat, 29 Nov 2008 16:17:44 +0000 (UTC) (envelope-from luizbcampos@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.241]) by mx1.freebsd.org (Postfix) with ESMTP id 9FC608FC08 for ; Sat, 29 Nov 2008 16:17:44 +0000 (UTC) (envelope-from luizbcampos@gmail.com) Received: by an-out-0708.google.com with SMTP id b6so663794ana.13 for ; Sat, 29 Nov 2008 08:17:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=gsZSbuBYWNICxK3mcN7l4dH/DA+ipK4IGGLJByTKxcI=; b=qIuGefaiZONIECaxSjeoF6zCPIVKORTkEkwGzsqns5APGMh79GR3wyrYQXo5DomFXY Kqn90tZ2r8MpMqaePt/6/D0FT7avFDMxYMtO76UrSfR3UsrOV5f9i/+wQYf4up9j68wa lGNhpt4prMbnIcziynRUlfmo7sE0boepzD7X8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=QOPt4nPFVX6iqeUbFuuAxXEW8w2pGFtoU7LloSuoGSc1sDG2lOnIJINt5JJS7b+0vN vFABUS8A7JeL0tY0KmVQxVOfM3w18JXpIaeMf1T7vwH0cyML7DAnPWM60TPZZYQ2FUr8 YjFeofMpNfEpULGlRN0iun+t3D7kObPVx4H2o= Received: by 10.100.121.12 with SMTP id t12mr4778740anc.96.1227975463609; Sat, 29 Nov 2008 08:17:43 -0800 (PST) Received: by 10.100.164.6 with HTTP; Sat, 29 Nov 2008 08:17:43 -0800 (PST) Message-ID: Date: Sat, 29 Nov 2008 14:17:43 -0200 From: luizbcampos To: freebsd-questions@freebsd.org In-Reply-To: <44wsenv73e.fsf@lowell-desk.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <44wsenv73e.fsf@lowell-desk.lan> Subject: Re: "printer not found"... printing with LPRng and foomatic X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 16:17:45 -0000 On 11/28/08, Lowell Gilbert wrote: > luizbcampos writes: > >> I own a usb Canon Pixma iP 1600 printer and I use FBSD-7.0-R >> amd64. I've choosen LPRng as printer spooler and foomatic-filters, >> everything is OK in /etc/printcap but when I type "lpq" I get "printer >> not found" as output. >> >> >> >> # /etc/printcap >> >> ip2200_usb_ps: \ >> >> :lp=/dev/ulpt0 >> :force_localhost: \ >> :if=/usr/local/bin/foomatic-rip: \ >> :ppd=/usr/local/libexec/cups/filter/canonip2200.ppd: \ >> :sd=/var/spool/lpd/ip2200_usb_ps: \ >> :mx#0:sh: >> >> >> I followed all the info contained in "openprinting" section lpd >> and I chmoded 0755 lprng.sh > > How about "lpq -P ip2200_usb_ps"? > > -- printer has been detected but some problems come up: #lpq Printer ip2200_usb_ps@localhost (dest /dev/ulpt0@localhost Quue: no printable jobs in queue Server: no server active Status: job 'luiz@localhost+913' saved at 12:52:09 error: luiz@localhost+913 : too many errors Printer : /dev/ulpt0@localhost - ERROR: printer '/dev/ulpt0 has illegal char at ' /dev/ulpt0' in name >> should I set up firstly lpd.perm in order to correct these errrors? >> /etc/printcap ip2200_usb_ps: \ :lp=/dev/ulpt0@localhost: \ :force_localhost: \ :if=/usr/local/bin/foomatic-rip: \ :ppd=/usr/local/libexec/cups/filter/canonip2200.ppd: \ :sd=/var/spool/lpd/ip2200_usb_ps: \ :mx#0:sh: >> /var/log/lpd.errs: Nov 28 19:25:44 localhost lpd[850]: lpd startup: logging=0 such sentence repeat many times ... > Lowell Gilbert, embedded/networking software engineer, Boston area > http://be-well.ilk.org/~lowell/ > From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 16:33:58 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA8B31065670 for ; Sat, 29 Nov 2008 16:33:58 +0000 (UTC) (envelope-from peter@boosten.org) Received: from smtpq3.gn.mail.iss.as9143.net (smtpq3.gn.mail.iss.as9143.net [212.54.34.166]) by mx1.freebsd.org (Postfix) with ESMTP id 6E3078FC18 for ; Sat, 29 Nov 2008 16:33:57 +0000 (UTC) (envelope-from peter@boosten.org) Received: from [212.54.34.136] (helo=smtp5.gn.mail.iss.as9143.net) by smtpq3.gn.mail.iss.as9143.net with esmtp (Exim 4.69) (envelope-from ) id 1L6SlY-0001Kt-SI; Sat, 29 Nov 2008 17:33:56 +0100 Received: from [84.25.72.219] (helo=ra.egypt.nl) by smtp5.gn.mail.iss.as9143.net with esmtp (Exim 4.69) (envelope-from ) id 1L6SlW-000887-3R; Sat, 29 Nov 2008 17:33:54 +0100 Received: from [192.168.13.81] (iPod.egypt.nl [192.168.13.81]) by ra.egypt.nl (Postfix) with ESMTP id 3218E3983A; Sat, 29 Nov 2008 17:33:47 +0100 (CET) References: <26face530811221316y5be5bf40ra5c38f389f554ca1@mail.gmail.com> <20081124173650.GA933@ourbrains.org> <20081124193819.GF55491@gizmo.acns.msu.edu> <20081129160329.GA27853@ourbrains.org> Message-Id: <47D7B64C-E783-48C8-A33B-A48AB66DA2E5@boosten.org> From: Peter Boosten To: Dan In-Reply-To: <20081129160329.GA27853@ourbrains.org> Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Mailer: iPod Mail (5G77) Mime-Version: 1.0 (iPod Mail 5G77) Date: Sat, 29 Nov 2008 17:34:28 +0100 X-ZiggoSMTP-MailScanner-Information: Please contact the ISP for more information X-ZiggoSMTP-MailScanner-ID: 1L6SlW-000887-3R X-ZiggoSMTP-MailScanner: Found to be clean X-ZiggoSMTP-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-1.913, required 5, BAYES_00 -2.60, SPF_NEUTRAL 0.69) X-ZiggoSMTP-MailScanner-From: peter@boosten.org X-Spam-Status: No Cc: "freebsd-questions@freebsd.org" Subject: Re: Unix program that sends email directly using MX record X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 16:33:58 -0000 On 29 nov 2008, at 17:03, Dan wrote: > >>> >> > > It's not prejudicial. I do not wish to start yet another MTA flamewar, > but you can't deny Sendmail's poor security, design, performance, and > complex configuration. The poor security history is there, the poor > funnel design and conf files that require a scripting language are > obviously ugly. Yeah, in 1845 it was. Sendmail is as secure as any other mta. And using m4, configuring is poc. Peter -- HTTP://www.boosten.org From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 16:37:17 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C835106564A for ; Sat, 29 Nov 2008 16:37:17 +0000 (UTC) (envelope-from admin@azuni.net) Received: from mail.azuni.net (ns0.azuni.net [217.25.25.3]) by mx1.freebsd.org (Postfix) with ESMTP id 451CF8FC18 for ; Sat, 29 Nov 2008 16:37:15 +0000 (UTC) (envelope-from admin@azuni.net) Received: (qmail 48282 invoked by uid 1004); 29 Nov 2008 16:37:12 -0000 Received: from admin@azuni.net by mail.azuni.net by uid 89 with qmail-scanner-1.20 (clamscan: 0.65. spamassassin: 2.63. Clear:RC:1(127.0.0.1):. Processed in 0.00989 secs); 29 Nov 2008 16:37:12 -0000 Received: from unknown (HELO ns0.azuni.net) (127.0.0.1) by localhost.azuni.net with AES256-SHA encrypted SMTP; 29 Nov 2008 16:37:12 -0000 Received: (from vpopmail@localhost) by ns0.azuni.net (8.12.9p1/8.12.9/Submit) id mATGb9iR048266; Sat, 29 Nov 2008 20:37:09 +0400 (AZT) Message-Id: <200811291637.mATGb9iR048266@ns0.azuni.net> X-Authentication-Warning: ns0.azuni.net: vpopmail set sender to admin@azuni.net using -f From: "admin" To: freebsd-questions@freebsd.org Date: Sat, 29 Nov 2008 20:37:09 +0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: FreeBSD 4.8: can't load kernel after doing "cp -R /" to another disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 16:37:17 -0000 Hello, everyone. This is the problem: our SCSI disk with FreeBSD 4.8 on it has been failing recently, so I copied its root partition to a fresh IDE disk with cp -pR and tried to boot from that. Unfortunately, loader gives me this: can't load 'kernel' can't load 'kernel.old' and offers prompt. I tried almost any combination of the loader command (like 0:ad0(0,a)/boot/loader) but still the same. The kernels are right there: /kernel and /kernel.old. Can't the root partition be copied this way? Should their location on disk be hardcoded somewhere? Please help me with bootblocks etc. as I'm desperately running out of time. From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 17:04:13 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A8136106564A for ; Sat, 29 Nov 2008 17:04:13 +0000 (UTC) (envelope-from dan-freebsd-questions@ourbrains.org) Received: from ourbrains.org (li48-221.members.linode.com [66.246.76.221]) by mx1.freebsd.org (Postfix) with SMTP id 4CAE38FC18 for ; Sat, 29 Nov 2008 17:04:13 +0000 (UTC) (envelope-from dan-freebsd-questions@ourbrains.org) Received: (qmail 32052 invoked by uid 1000); 29 Nov 2008 17:04:34 -0000 Date: Sat, 29 Nov 2008 12:04:34 -0500 From: Dan To: "freebsd-questions@freebsd.org" Message-ID: <20081129170434.GB27853@ourbrains.org> Mail-Followup-To: "freebsd-questions@freebsd.org" References: <26face530811221316y5be5bf40ra5c38f389f554ca1@mail.gmail.com> <20081124173650.GA933@ourbrains.org> <20081124193819.GF55491@gizmo.acns.msu.edu> <20081129160329.GA27853@ourbrains.org> <47D7B64C-E783-48C8-A33B-A48AB66DA2E5@boosten.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <47D7B64C-E783-48C8-A33B-A48AB66DA2E5@boosten.org> User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Re: Unix program that sends email directly using MX record X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 17:04:13 -0000 Peter Boosten(peter@boosten.org)@2008.11.29 17:34:28 +0100: >> It's not prejudicial. I do not wish to start yet another MTA flamewar, >> but you can't deny Sendmail's poor security, design, performance, and >> complex configuration. The poor security history is there, the poor >> funnel design and conf files that require a scripting language are >> obviously ugly. > > Yeah, in 1845 it was. Sendmail is as secure as any other mta. And using Simply not true. Sendmail has had TONS of remote vulnerabilities. Many people have fallen victims to exploits and had their servers rooted. The recent one is of 20006. http://web.nvd.nist.gov/view/vuln/detail?execution=e2s1 qmail has never had a remote root vulnerability or a similar flaw because it's designed with security in mind. Sendmail never was. From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 17:07:31 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F3731065675 for ; Sat, 29 Nov 2008 17:07:31 +0000 (UTC) (envelope-from chris29wjoyner@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.176]) by mx1.freebsd.org (Postfix) with ESMTP id 2567A8FC08 for ; Sat, 29 Nov 2008 17:07:30 +0000 (UTC) (envelope-from chris29wjoyner@gmail.com) Received: by wa-out-1112.google.com with SMTP id m34so872322wag.27 for ; Sat, 29 Nov 2008 09:07:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=r01t+uIiwI98rL1ORVISEHeO7vlNPEpyLKIEKtLcTJE=; b=Hfl4oHyakiITpc1Xyq+LRRyky5+Ftu7b2I8qNLwPQDpplsyFDuSLV/dB+PVyuRNky3 FoZDvZe3OszqbC6kq9atMHMgdjcIffa1HJ2q5BnCc04Lk9IX2D+Jsc/5JLxGkxm5FhqQ 1dmd6Y9jrRiE24Lx6/jy0VRT70qTvFPjtxQj0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=aslDSJs+NZcQtF9zNNzQ2YT2Z1zsvjPTw8i52TXzBNlue4xz1GmMOteiBBrlTAVcbk OeNL1wHkEJwumTevvAX298koCfkJBhRCvOYOk9q+1SBbVJJwVPbOLKUSCo+UFOU1ZcsW unxCOLgYcwXne3KHhBJT7zD74yGbsY9aPcTP4= Received: by 10.114.130.1 with SMTP id c1mr5236133wad.73.1227976818380; Sat, 29 Nov 2008 08:40:18 -0800 (PST) Received: by 10.114.157.8 with HTTP; Sat, 29 Nov 2008 08:40:18 -0800 (PST) Message-ID: Date: Sat, 29 Nov 2008 11:40:18 -0500 From: "Christopher Joyner" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Problem with wireless network. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 17:07:31 -0000 On my windows OS I can connect to the router, and also get DHCP service. On the same computer, running FreeBSD 7.0 It will not get DHCP service. Sometimes it will connect to the router, but does not get DHCP service. Then it will not connect anymore. This same computer, using the same FreeBSD used to connect to the interent, and I could go surfing. Now it only times out. I have a fresh install of FreeBSD 7.0, and can not solve this problem. Thanks for your help. From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 17:10:35 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCB6D1065670 for ; Sat, 29 Nov 2008 17:10:35 +0000 (UTC) (envelope-from dick@nagual.nl) Received: from nagual.nl (cc20684-a.assen1.dr.home.nl [82.74.10.158]) by mx1.freebsd.org (Postfix) with ESMTP id 43B578FC23 for ; Sat, 29 Nov 2008 17:10:34 +0000 (UTC) (envelope-from dick@nagual.nl) Received: from westmark (westmark.nagual.nl [192.168.11.22]) by nagual.nl (8.13.8+Sun/8.13.8/yanta) with SMTP id mATHBqs9000255 for ; Sat, 29 Nov 2008 18:11:53 +0100 (CET) Date: Sat, 29 Nov 2008 18:10:29 +0100 From: dick hoogendijk To: freebsd-questions@freebsd.org Message-Id: <20081129181029.bfc776ee.dick@nagual.nl> In-Reply-To: <20081129170434.GB27853@ourbrains.org> References: <26face530811221316y5be5bf40ra5c38f389f554ca1@mail.gmail.com> <20081124173650.GA933@ourbrains.org> <20081124193819.GF55491@gizmo.acns.msu.edu> <20081129160329.GA27853@ourbrains.org> <47D7B64C-E783-48C8-A33B-A48AB66DA2E5@boosten.org> <20081129170434.GB27853@ourbrains.org> Organization: de nagual X-Mailer: Sylpheed 2.5.0 (GTK+ 2.14.3; i386-pc-solaris2.11) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.63 on 192.168.11.35 Subject: Re: Unix program that sends email directly using MX record X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 17:10:36 -0000 On Sat, 29 Nov 2008 12:04:34 -0500 Dan wrote: > Peter Boosten(peter@boosten.org)@2008.11.29 17:34:28 +0100: > > Yeah, in 1845 it was. Sendmail is as secure as any other mta. And > > using > > Simply not true. Sendmail has had TONS of remote vulnerabilities. Many > people have fallen victims to exploits and had their servers rooted. May be, but still, sendmail is -AS SECURE AS ANY OTHER MTA- now! When do stop looking back to bitch on sendmail? If you don't like it, don't use it. > qmail has never had a remote root vulnerability or a similar flaw > because it's designed with security in mind. Not only with security. Also with lack of possiblities. > Sendmail never was. But it is still the most used mta worldwide. -- Dick Hoogendijk -- PGP/GnuPG key: 01D2433D + http://nagual.nl/ | SunOS sxce snv103 ++ + All that's really worth doing is what we do for others (Lewis Carrol) From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 17:16:02 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A93D2106564A for ; Sat, 29 Nov 2008 17:16:02 +0000 (UTC) (envelope-from peter@boosten.org) Received: from smtpq1.gn.mail.iss.as9143.net (smtpq1.gn.mail.iss.as9143.net [212.54.34.164]) by mx1.freebsd.org (Postfix) with ESMTP id 3E3128FC08 for ; Sat, 29 Nov 2008 17:16:02 +0000 (UTC) (envelope-from peter@boosten.org) Received: from [212.54.34.136] (helo=smtp5.gn.mail.iss.as9143.net) by smtpq1.gn.mail.iss.as9143.net with esmtp (Exim 4.69) (envelope-from ) id 1L6TQH-0000Xl-0x for freebsd-questions@freebsd.org; Sat, 29 Nov 2008 18:16:01 +0100 Received: from [84.25.72.219] (helo=ra.egypt.nl) by smtp5.gn.mail.iss.as9143.net with esmtp (Exim 4.69) (envelope-from ) id 1L6TQF-0004ex-9g for freebsd-questions@freebsd.org; Sat, 29 Nov 2008 18:15:59 +0100 Received: from [127.0.0.1] (xp.egypt.nl [192.168.13.35]) by ra.egypt.nl (Postfix) with ESMTP id 74EE63983A for ; Sat, 29 Nov 2008 18:15:58 +0100 (CET) Message-ID: <493178CE.8070005@boosten.org> Date: Sat, 29 Nov 2008 18:15:58 +0100 From: Peter Boosten User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" References: <26face530811221316y5be5bf40ra5c38f389f554ca1@mail.gmail.com> <20081124173650.GA933@ourbrains.org> <20081124193819.GF55491@gizmo.acns.msu.edu> <20081129160329.GA27853@ourbrains.org> <47D7B64C-E783-48C8-A33B-A48AB66DA2E5@boosten.org> <20081129170434.GB27853@ourbrains.org> In-Reply-To: <20081129170434.GB27853@ourbrains.org> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-ZiggoSMTP-MailScanner-Information: Please contact the ISP for more information X-ZiggoSMTP-MailScanner-ID: 1L6TQF-0004ex-9g X-ZiggoSMTP-MailScanner: Found to be clean X-ZiggoSMTP-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-1.913, required 5, BAYES_00 -2.60, SPF_NEUTRAL 0.69) X-ZiggoSMTP-MailScanner-From: peter@boosten.org X-Spam-Status: No Subject: Re: Unix program that sends email directly using MX record X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 17:16:02 -0000 Dan wrote: > Peter Boosten(peter@boosten.org)@2008.11.29 17:34:28 +0100: >>> It's not prejudicial. I do not wish to start yet another MTA flamewar, >>> but you can't deny Sendmail's poor security, design, performance, and >>> complex configuration. The poor security history is there, the poor >>> funnel design and conf files that require a scripting language are >>> obviously ugly. >> Yeah, in 1845 it was. Sendmail is as secure as any other mta. And using > > Simply not true. Sendmail has had TONS of remote vulnerabilities. Many > people have fallen victims to exploits and had their servers rooted. > > The recent one is of 20006. > http://web.nvd.nist.gov/view/vuln/detail?execution=e2s1 Hmmm: ERROR, "null" is not valid. The CVE either does not exist or is not in the format of CVE-XXX-XXXX. The most recent vulnerabilities of Postfix are from August and September 2008, and I still use it. Also I use (with great happyness) Sendmail on two machines, without any problems. The only problem ever caused was by clamav. Peter -- http://www.boosten.org From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 17:20:08 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F367106568B for ; Sat, 29 Nov 2008 17:20:08 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from mail.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 3655E8FC16 for ; Sat, 29 Nov 2008 17:20:08 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (mail.rachie.is-a-geek.net [192.168.2.101]) by mail.rachie.is-a-geek.net (Postfix) with ESMTP id 8035FAFC1C6; Sat, 29 Nov 2008 08:20:07 -0900 (AKST) From: Mel To: freebsd-questions@freebsd.org Date: Sat, 29 Nov 2008 18:20:05 +0100 User-Agent: KMail/1.9.7 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200811291820.05835.fbsd.questions@rachie.is-a-geek.net> Cc: Christopher Joyner Subject: Re: Problem with wireless network. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 17:20:08 -0000 On Saturday 29 November 2008 17:40:18 Christopher Joyner wrote: > On my windows OS I can connect to the router, and also get DHCP service. > On the same computer, running FreeBSD 7.0 It will not get DHCP service. > Sometimes it will connect to the router, but does not get DHCP service. > Then it will not connect anymore. > > This same computer, using the same FreeBSD used to connect to the interent, > and I could go surfing. Now it only times out. I have a fresh install of > FreeBSD 7.0, and can not solve this problem. Without either ifconfig -a output or a psychic, we can't either. -- Mel Problem with today's modular software: they start with the modules and never get to the software part. From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 17:29:22 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D0141065677 for ; Sat, 29 Nov 2008 17:29:22 +0000 (UTC) (envelope-from sahil@tandon.net) Received: from aegis.hamla.org (aegis.hamla.org [206.251.255.39]) by mx1.freebsd.org (Postfix) with ESMTP id F2D4C8FC1D for ; Sat, 29 Nov 2008 17:29:21 +0000 (UTC) (envelope-from sahil@tandon.net) Received: from localhost (localhost [127.0.0.1]) by aegis.hamla.org (Postfix) with ESMTP id BB7BD5C78 for ; Sat, 29 Nov 2008 12:30:46 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tandon.net; h= x-virus-scanned:in-reply-to:content-disposition:content-type :mime-version:references:reply-to:message-id:subject:from:date: received; s=aegis; t=1227979846; bh=Ve9y6FlQwrl7EW60fZwjD35V4ooL 67WkvIAV/p0HXkA=; b=VhoHdpr4ul1aRYQ54tKaGrbO3AwwGKe6tifGvAMPyXjT GND00RVp/FmS6qD9vePT5ESxYTT5wC2pjRDGYPD9XTG9lnQIq9/GVFg/Akgs/gv8 0keoftSroViZD0HMWDBfateh8sip72EPQrZtDdo2AQEf+1buMp640o3jb14VRgI= Received: from aegis.hamla.org ([127.0.0.1]) by localhost (aegis.hamla.org [127.0.0.1]) (amavisd-new, port 10027) with LMTP id MqdDW+CxqOpk for ; Sat, 29 Nov 2008 12:30:46 -0500 (EST) Date: Sat, 29 Nov 2008 12:29:19 -0500 From: Sahil Tandon To: freebsd-questions@freebsd.org Message-ID: <20081129172919.GA43599@shepherd> References: <001301c951e4$e0b93fc0$f75afb48@harryveltman> <20081129061405.GA41507@shepherd> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Virus-Scanned: ClamAV version 0.94, clamav-milter version 0.94 on aegis.hamla.org X-Virus-Status: Clean Subject: Re: Purchase of FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "freebsd-questions@freebsd.org" List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 17:29:22 -0000 Masoom Shaikh wrote: > On Sat, Nov 29, 2008 at 6:14 AM, Sahil Tandon wrote: > > > Harry Veltman wrote: > > > > > Where can I buy it on CD, and how do I know if it is compatible with > > > my hardware? > > > > Did you try asking Google? > > > > http://www.google.com/search?hl=en&q=where+to+get+freebsd to: > > http://www.freebsd.org/where.html > > > > http://www.google.com/search?hl=en&q=freebsd+hardware+compatibility to: > > http://www.freebsd.org/doc/en/books/faq/hardware.html > > > > Also see: http://www.freebsd.org/doc/en/articles/freebsd-questions/ > > > > http://www.freebsdmall.com > > this question is not even worth answering, it is like To which question are you referring? Your Q&A makes little sense. > Q: why didn't u tell us ? > A: bcos it was impossible to hide -- Sahil Tandon From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 17:33:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D96471065670 for ; Sat, 29 Nov 2008 17:33:23 +0000 (UTC) (envelope-from sahil@tandon.net) Received: from aegis.hamla.org (aegis.hamla.org [206.251.255.39]) by mx1.freebsd.org (Postfix) with ESMTP id BA0828FC13 for ; Sat, 29 Nov 2008 17:33:23 +0000 (UTC) (envelope-from sahil@tandon.net) Received: from localhost (localhost [127.0.0.1]) by aegis.hamla.org (Postfix) with ESMTP id 770FD5C78 for ; Sat, 29 Nov 2008 12:34:48 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tandon.net; h= x-virus-scanned:in-reply-to:content-disposition:content-type :mime-version:references:reply-to:message-id:subject:from:date: received; s=aegis; t=1227980088; bh=NyxDa/xZJGY/717CpT88AvOZzpwG QyM+dEHyDKlOSs4=; b=mQB41KxlFqOrTz0wnzWKd73FDeqCZv5GkalpEos0rCG4 9ZymV0ktNR3nRO46tSOsLFvSRSR4FNwkvsaqNH4QQ2wY2y6dMT0wbt1ySFCC3LC4 y+e2WosZ9X54DRi9T1nOVVF9OvT+p7ae107um2WsfySMY2Y8rAct4oV+U3Gwl6w= Received: from aegis.hamla.org ([127.0.0.1]) by localhost (aegis.hamla.org [127.0.0.1]) (amavisd-new, port 10027) with LMTP id YGvOig0XxwYl for ; Sat, 29 Nov 2008 12:34:48 -0500 (EST) Date: Sat, 29 Nov 2008 12:33:22 -0500 From: Sahil Tandon To: freebsd-questions@freebsd.org Message-ID: <20081129173322.GB43599@shepherd> References: <20081129060801.GA41353@shepherd> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Virus-Scanned: ClamAV version 0.94, clamav-milter version 0.94 on aegis.hamla.org X-Virus-Status: Clean Subject: Re: shell scripting problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "freebsd-questions@freebsd.org" List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 17:33:23 -0000 Tim Judd wrote: > I'm sure it's faulty > > Which is why I'm asking for help > > My regexes (in it's various forms) produce the output similar to: > xorg-fonts-75dpi > xorg-fonts > xorg-fonts-100dpi > ... > ... > ... > > and I'm wanting my regex to return the 2nd value, in this example, in > this list. In your initial message, you wished to extract the first value; now it is the second? > The problem is the shell is taking the end anchor $ as the start of a > variable, and no matter how I escape it, it seems to never work. > > I'm sorry for not explaining properly. Maybe the above would help. It does not. Explain exactly what you are trying to do and you will receive more exact troubleshooting advice. And please stop top-posting. -- Sahil Tandon From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 17:36:47 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA36E1065678 for ; Sat, 29 Nov 2008 17:36:47 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 55F368FC1D for ; Sat, 29 Nov 2008 17:36:45 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mATHaaFI011682; Sat, 29 Nov 2008 18:36:36 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mATHaZqm011679; Sat, 29 Nov 2008 18:36:36 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sat, 29 Nov 2008 18:36:35 +0100 (CET) From: Wojciech Puchar To: Roey Dror In-Reply-To: Message-ID: <20081129183517.D11614@wojtek.tensor.gdynia.pl> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: FreeBSD Questions Subject: Re: Noisy mouse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 17:36:47 -0000 > or make a keystroke. Is this a bug, or a strange feature? How do i bad hardware design - mouse data signals gets through to audio signal. most of your computer's signal line are in megahertz range so you don't hear anything, PS/2 mouse has 40kbps data rate. From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 18:35:27 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E72061065676 for ; Sat, 29 Nov 2008 18:35:27 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell.rawbw.com (shell.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id B52858FC14 for ; Sat, 29 Nov 2008 18:35:27 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from eagle.syrec.org (c-67-188-126-36.hsd1.ca.comcast.net [67.188.126.36]) (authenticated bits=0) by shell.rawbw.com (8.13.6/8.13.6) with ESMTP id mATIZI6t022274; Sat, 29 Nov 2008 10:35:18 -0800 (PST) Message-ID: <49318B65.3000205@rawbw.com> Date: Sat, 29 Nov 2008 10:35:17 -0800 From: Yuri User-Agent: Thunderbird 2.0.0.18 (X11/20081127) MIME-Version: 1.0 To: Joerg Schilling References: <49313043.mP3zqfP/2LOQEKJe%Joerg.Schilling@fokus.fraunhofer.de> In-Reply-To: <49313043.mP3zqfP/2LOQEKJe%Joerg.Schilling@fokus.fraunhofer.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Copying audio CD with dd/cdrecord produces unplayable CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yuri@rawbw.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 18:35:28 -0000 Joerg Schilling wrote: > Well, you should not expect to get a usable read > result from dd. > Why? Handbook recommends the use of dd for audio CD ripping. Yuri From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 19:30:12 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE0DA106570A for ; Sat, 29 Nov 2008 19:30:12 +0000 (UTC) (envelope-from Joerg.Schilling@fokus.fraunhofer.de) Received: from iron02.fraunhofer.de (iron02.fraunhofer.de [153.96.1.56]) by mx1.freebsd.org (Postfix) with ESMTP id 3853C8FC12 for ; Sat, 29 Nov 2008 19:30:11 +0000 (UTC) (envelope-from Joerg.Schilling@fokus.fraunhofer.de) Received: from pluto.fokus.fraunhofer.de ([195.37.77.164]) by iron02.fraunhofer.de with ESMTP/TLS/DHE-RSA-AES256-SHA; 29 Nov 2008 20:30:10 +0100 Received: from EXCHSRV.fokus.fraunhofer.de (bohr [10.147.9.231]) by pluto.fokus.fraunhofer.de (8.13.7/8.13.7) with SMTP id mATJU9e4024687; Sat, 29 Nov 2008 20:30:09 +0100 (MET) Received: from rigel ([10.147.65.195]) by EXCHSRV.fokus.fraunhofer.de with Microsoft SMTPSVC(6.0.3790.3959); Sat, 29 Nov 2008 20:30:09 +0100 Date: Sat, 29 Nov 2008 20:30:09 +0100 From: Joerg.Schilling@fokus.fraunhofer.de (Joerg Schilling) To: yuri@rawbw.com Message-ID: <49319841.Oqivnl2VRh3sEhq6%Joerg.Schilling@fokus.fraunhofer.de> References: <49313043.mP3zqfP/2LOQEKJe%Joerg.Schilling@fokus.fraunhofer.de> <49318B65.3000205@rawbw.com> In-Reply-To: <49318B65.3000205@rawbw.com> User-Agent: nail 11.22 3/20/05 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 29 Nov 2008 19:30:09.0250 (UTC) FILETIME=[E3FEDC20:01C95258] Cc: freebsd-questions@freebsd.org Subject: Re: Copying audio CD with dd/cdrecord produces unplayable CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 19:30:12 -0000 Yuri wrote: > Joerg Schilling wrote: > > Well, you should not expect to get a usable read > > result from dd. > > > > Why? > Handbook recommends the use of dd for audio CD ripping. Well, then the handbook is sub-optimal. dd in general does not work at all to read CD-Audio; FreeBSD is an exception with repect to the fact that you get data at all. Here is a list of cons for dd even on FreeBSD: - dd may not work with all drives - Do you know what byteorder you get from a MMC CD-ROM drive on FreeBSD/Sparc? You would need network byteorder on Sparc but the MMC CD-ROM drive delivers intel byteorder due to a bug in the MMC standard cdrecord always asumes network byte order for RAW audio data, this is reasonable - Why would you deal with raw audio data at all if there are audio file formats that include a notation for byte order and sampling rates? - There is no jitter check and no quality control with dd on FreeBSD, cdda2wav works on all OS and has jitter control and qualiti control with e.g. libparanoia. - There is no way to get the correct CD structure back if you use dd. Cdda2wav reads meta-data and puts them into *.inf files. - With dd, you cannot read intentionally defective media as sold by the music mafia. Allowing to read CD-DA using dd on FreeBSD is a nice gag but nothing I would recommend in order to create a copy from an audio CD. Jörg -- EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin js@cs.tu-berlin.de (uni) schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 19:39:47 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B72A61065670 for ; Sat, 29 Nov 2008 19:39:47 +0000 (UTC) (envelope-from kernel@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id 797D98FC13 for ; Sat, 29 Nov 2008 19:39:47 +0000 (UTC) (envelope-from kernel@webrz.net) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id 25F1250A4F for ; Sat, 29 Nov 2008 20:39:47 +0100 (CET) Received: from [10.10.10.27] (atlantis.webrz.net [10.10.10.27]) by webrz.xs4all.nl (Postfix) with ESMTP id 09CEA50A4D for ; Sat, 29 Nov 2008 20:39:47 +0100 (CET) Message-ID: <49319A83.6050407@webrz.net> Date: Sat, 29 Nov 2008 20:39:47 +0100 From: Jos Chrispijn Organization: Koudekerke (NL) User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Subject: Temporarily blocking ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 19:39:47 -0000 Can someone hint me how I can block ports for let's say 30 minutes if someone repeatedly tries to do a SSH login? I use ipfw as firewall... regards, Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 19:43:30 2008 Return-Path: Delivered-To: questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 087E91065677 for ; Sat, 29 Nov 2008 19:43:30 +0000 (UTC) (envelope-from apache@vulcan.highspd.net) Received: from vulcan.highspd.net (vulcan.highspd.net [66.199.31.170]) by mx1.freebsd.org (Postfix) with ESMTP id B1B838FC13 for ; Sat, 29 Nov 2008 19:43:29 +0000 (UTC) (envelope-from apache@vulcan.highspd.net) Received: from vulcan.highspd.net (vulcan.highspd.net [127.0.0.1]) by vulcan.highspd.net (8.12.11/8.12.11) with ESMTP id mATJD3mW025379 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sat, 29 Nov 2008 13:13:03 -0600 Received: (from apache@localhost) by vulcan.highspd.net (8.12.11/8.12.11/Submit) id mATJD2U0025378; Sat, 29 Nov 2008 13:13:02 -0600 Date: Sat, 29 Nov 2008 13:13:02 -0600 Message-Id: <200811291913.mATJD2U0025378@vulcan.highspd.net> To: questions@FreeBSD.ORG From: "Col. Salva Taha (Rtd)" MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit Cc: Subject: PROPERTIES. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: salvataha1@live.co.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 19:43:30 -0000 Good Day, I wish to introduce myself to you.I am Col.Salva Taha a top Sudanese Goverment official who opposed the war in Dafur in my country Sudan.Due to my oppostion to the war,the goverment of my country has been persecuting me.Consequently my wife,children and I managed to enter a red cross air plane that was evacuating foreigners and we are presently in Cape Town,South Africa. We wish to invest in properties in your country with your assistance and cooperation.If you are in a good position to help my family, please send an email to the email address below indicating your desire to help my family invest the funds in your country and beyond. I urgently await your email. best regards. God bless, Col. Salva Taha (Rtd) Email:salvataha1@live.co.za From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 20:13:38 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC9941065696 for ; Sat, 29 Nov 2008 20:13:38 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell.rawbw.com (shell.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id CA0688FC23 for ; Sat, 29 Nov 2008 20:13:38 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from eagle.syrec.org (c-67-188-126-36.hsd1.ca.comcast.net [67.188.126.36]) (authenticated bits=0) by shell.rawbw.com (8.13.6/8.13.6) with ESMTP id mATKDV5t050711; Sat, 29 Nov 2008 12:13:31 -0800 (PST) Message-ID: <4931A26A.3070002@rawbw.com> Date: Sat, 29 Nov 2008 12:13:30 -0800 From: Yuri User-Agent: Thunderbird 2.0.0.18 (X11/20081127) MIME-Version: 1.0 To: Joerg Schilling References: <49313043.mP3zqfP/2LOQEKJe%Joerg.Schilling@fokus.fraunhofer.de> <49318B65.3000205@rawbw.com> <49319841.Oqivnl2VRh3sEhq6%Joerg.Schilling@fokus.fraunhofer.de> In-Reply-To: <49319841.Oqivnl2VRh3sEhq6%Joerg.Schilling@fokus.fraunhofer.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Copying audio CD with dd/cdrecord produces unplayable CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yuri@rawbw.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 20:13:39 -0000 Joerg Schilling wrote: > Well, then the handbook is sub-optimal. > > dd in general does not work at all to read CD-Audio; > FreeBSD is an exception with repect to the fact that you get data at all. > > Here is a list of cons for dd even on FreeBSD: > > - dd may not work with all drives > > - Do you know what byteorder you get from a MMC CD-ROM drive > on FreeBSD/Sparc? You would need network byteorder on Sparc > but the MMC CD-ROM drive delivers intel byteorder due to a > bug in the MMC standard > > cdrecord always asumes network byte order for RAW audio data, > this is reasonable > > - Why would you deal with raw audio data at all if there are > audio file formats that include a notation for byte order and > sampling rates? > > - There is no jitter check and no quality control with dd on FreeBSD, > cdda2wav works on all OS and has jitter control and qualiti control > with e.g. libparanoia. > > - There is no way to get the correct CD structure back if you use dd. > Cdda2wav reads meta-data and puts them into *.inf files. > > - With dd, you cannot read intentionally defective media as sold by > the music mafia. > > Allowing to read CD-DA using dd on FreeBSD is a nice gag but nothing I would > recommend in order to create a copy from an audio CD. > Thank you, good points. This seems to be reflected in the Handbook. I will file a PR for this. Yuri From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 20:22:51 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8FB41065672 for ; Sat, 29 Nov 2008 20:22:51 +0000 (UTC) (envelope-from anthony.rasat@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.28]) by mx1.freebsd.org (Postfix) with ESMTP id 745058FC0C for ; Sat, 29 Nov 2008 20:22:51 +0000 (UTC) (envelope-from anthony.rasat@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so742580yxb.13 for ; Sat, 29 Nov 2008 12:22:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:x-rim-org-msg-ref-id :return-receipt-to:message-id:reply-to:x-priority:sensitivity :importance:to:subject:from:date:content-type:mime-version; bh=GMBMjx0VUPANj8E0B+5WXf8K+jjH4wwA0g8t4COscO8=; b=pmjoJf/Ao2L4mX5qYjrFHFGGdNqfGr+wYLaKjWHwkK52E47RQ0C2xNV2XHa8h5FriJ X8wfJvaF1748WOpAdLmV4eY0VfBQeJGJruOApA14KCm9ZuDPqTxNgT94kFf6IF6wXovq U2z8ivEmD03LwqiZK/fkS1uD7Lrm5sa85HpN4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=x-rim-org-msg-ref-id:return-receipt-to:message-id:reply-to :x-priority:sensitivity:importance:to:subject:from:date:content-type :mime-version; b=BonMajw+fvhOq2zTJAesZJC5TD18mpQd206hwYj6RMysn17gv7dclGgyxkENHnxLZZ cCn70xI9u3Cc8hUbxWGmpLpzMHo6jkRcHQbTxlMpQVPcBW47xxTfScuHDwcDLkPWj4/J 3rIfHNM7tr2/vbRaptQwzEIIBk3kGfAKIkwP8= Received: by 10.64.151.10 with SMTP id y10mr9983903qbd.95.1227990170569; Sat, 29 Nov 2008 12:22:50 -0800 (PST) Received: from bda011.bisx.prodap.on.blackberry (bda011.bis.ap.blackberry.com [216.9.247.139]) by mx.google.com with ESMTPS id p6sm5478067qbp.17.2008.11.29.12.22.49 (version=SSLv3 cipher=RC4-MD5); Sat, 29 Nov 2008 12:22:49 -0800 (PST) X-rim-org-msg-ref-id: 1370644425 Message-ID: <1370644425-1227990164-cardhu_decombobulator_blackberry.rim.net-1270898776-@bxe1001.bisx.prodap.on.blackberry> X-Priority: Normal Sensitivity: Normal Importance: Normal To: freebsd-questions@freebsd.org From: "Anthony M. Rasat" Date: Sat, 29 Nov 2008 20:22:08 +0000 Content-Type: text/plain MIME-Version: 1.0 Subject: Re: Temporarily blocking ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: anthony.rasat@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 20:22:51 -0000 Jos Chrispijn wrote: >Can someone hint me how I can >block ports for let's say 30 minutes if >someone repeatedly tries to do a SSH >login? >I use ipfw as firewall... I think I saw ssh-ipfw section in jail.conf file of fail2ban application (http://www.fail2ban.org). I believe fail2ban might be the one you looking for. But I'm sorry I'm using fail2ban in Linux (which is using netfilter's iptables firewall, not IPFW). I'm not sure it will work on FreeBSD and I don't have FreeBSD server lying around outside my VMware environment here, so I wish you good luck trying. -- Regards, Anthony M. Rasat Manager - Technical, Network and Support Division PT. Jawa Pos National Network Graha Pena Jawa Pos Group Building, 5th floor Jln. Raya Kebayoran Lama 12, Jakarta Barat 12210 Indonesia.- Phone 02132185562 Phone 081574217035 Fax 02153651465 Web http://www.jpnn.com From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 20:47:38 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48D3C1065672 for ; Sat, 29 Nov 2008 20:47:38 +0000 (UTC) (envelope-from eagletree@hughes.net) Received: from smtprelay.b.hostedemail.com (smtprelay0048.b.hostedemail.com [64.98.42.48]) by mx1.freebsd.org (Postfix) with ESMTP id 06BEF8FC0A for ; Sat, 29 Nov 2008 20:47:37 +0000 (UTC) (envelope-from eagletree@hughes.net) Received: from filter.hostedemail.com (b-bigip1 [10.5.19.254]) by smtprelay04.b.hostedemail.com (Postfix) with SMTP id 79D2056000DF for ; Sat, 29 Nov 2008 20:47:36 +0000 (UTC) X-SpamScore: 1 X-Spam-Summary: 2, 0, 0, 94a0cc6d40a3f26b, 944facfeb153b4f0, eagletree@hughes.net, freebsd-questions@freebsd.org, RULES_HIT:355:379:541:564:599:601:945:966:967:973:980:988:989:1260:1261:1277:1311:1313:1314:1345:1359:1437:1515:1516:1518:1534:1541:1593:1594:1711:1730:1747:1766:1792:2196:2199:2393:2525:2553:2559:2563:2682:2685:2693:2857:2859:2933:2937:2939:2942:2945:2947:2951:2954:3022:3027:3354:3636:3865:3866:3867:3868:3869:3870:3871:3872:3873:3874:3876:3877:3934:3936:3938:3941:3944:3947:3950:3953:3956:3959:4250:4385:4860:5007:6114:6119:7652:7679:7903:8501:9010:9025:9038:9388, 0, RBL:none, CacheIP:none, Bayesian:0.5, 0.5, 0.5, Netcheck:none, DomainCache:0, MSF:not bulk, SPF:, MSBL:none, DNSBL:none Received: from [192.168.0.3] (dpc6744118153.direcpc.com [67.44.118.153]) (Authenticated sender: eagletree@hughes.net) by omf11.b.hostedemail.com (Postfix) with ESMTP for ; Sat, 29 Nov 2008 20:47:30 +0000 (UTC) Mime-Version: 1.0 (Apple Message framework v753) In-Reply-To: <49319A83.6050407@webrz.net> References: <49319A83.6050407@webrz.net> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <22771067-1635-4C00-A0EB-4E14569F636C@hughes.net> Content-Transfer-Encoding: 7bit From: Chris Date: Sat, 29 Nov 2008 12:47:24 -0800 To: FreeBSD-Questions Questions X-Mailer: Apple Mail (2.753) X-session-marker: 6561676C6574726565406875676865732E6E6574 Subject: Re: Temporarily blocking ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 20:47:38 -0000 On Nov 29, 2008, at 11:39 AM, Jos Chrispijn wrote: > Can someone hint me how I can block ports for let's say 30 minutes > if someone repeatedly tries to do a SSH login? > I use ipfw as firewall... > If you mean the statement as entered while you are watching, something like: ipfw add 0922 deny tcp from nn.nn.nn.nn to me dst-port 22 where 922 is some line prior to your normal allow statements for ssh nn.nn.nn.nn is the address you'd prefer to block. If you mean an automated way, put this in a perl program, sleep for 30 minutes and then do a ipfw delete 0922. Your program will need to run as root of course. Doing things like this tends to be risky if you aren't careful. If you don't have anti-spoofing and perhaps even some careful whitelisting rules, depending on how you identify an attack, schemes such as this can be turned against you once you automate it. I think a better way is to allow only ip addresses you want to connect on ssh to start a session with setup keep-state and then include a specific deny for all ssh connections following that statement. If you have connections coming in from certain nets but dynamically assigned addresses, only allow those ranges and block all others. That will dramatically reduce the audience of casual brute force attackers. An even tighter practice is to turn off all password logins and use only keyed connections. This is easier than it might seem though I'll admit I think of ssh as something only a select number of users may use and thus you know them by name and what IPs they are permitted to connect on. > regards, > Jos Chrispijn > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions- > unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 20:48:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C18361065672 for ; Sat, 29 Nov 2008 20:48:28 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell.rawbw.com (shell.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id B1FF68FC13 for ; Sat, 29 Nov 2008 20:48:28 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from eagle.syrec.org (c-67-188-126-36.hsd1.ca.comcast.net [67.188.126.36]) (authenticated bits=0) by shell.rawbw.com (8.13.6/8.13.6) with ESMTP id mATKmMPh060144; Sat, 29 Nov 2008 12:48:22 -0800 (PST) Message-ID: <4931AA95.80700@rawbw.com> Date: Sat, 29 Nov 2008 12:48:21 -0800 From: Yuri User-Agent: Thunderbird 2.0.0.18 (X11/20081127) MIME-Version: 1.0 To: Polytropon References: <4930EEBB.7050701@rawbw.com> <20081129084852.6d00f2e5.freebsd@edvax.de> <4931030C.7070409@rawbw.com> <20081129100156.72122e71.freebsd@edvax.de> In-Reply-To: <20081129100156.72122e71.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Copying audio CD with dd/cdrecord produces unplayable CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yuri@rawbw.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 20:48:28 -0000 Polytropon wrote: > Strange... are these definitely audio CD tracks? You could > They are definitely raw audio CD tracks. > use this form to explicitely tell sox how to interpret the > data (which is "headerless" on audio CDs, of course): > > sox -r 14400 -c 2 -b -L -S -x track.cdr track_rev.cdr > This command fails: $ sox sox: Bits value `-L' is not a positive integer Also -L option seems to conflict with -x: $ Failed: only one endian option per file is allowed But this command works and again produces the errors: $ sox -r 14400 -c 2 -b 16 -S -x track-03.cdr track-03.cdr.swp $ sox mp3-duration: recoverable MAD error $ sox mp3-duration: MAD lost sync $ sox mp3-duration: recoverable MAD error $ sox mp3-duration: recoverable MAD error > > This looks like that sox reads / generates MP3 files...? > Are these definitely standard audio CD tracks (such as every > old fashioned CD player can play)? > No, it seems like sox is trying to interpret raw audio data as an mp3 (and other) formats for some unknown reason. It's silly but the only way I can think of to reliably do this (very slowly) in a command line is: perl -pi -e "s/(.)(.)/\\2\\1/g" track.cdr Yuri From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 20:51:53 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4451F1065670 for ; Sat, 29 Nov 2008 20:51:53 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.188]) by mx1.freebsd.org (Postfix) with ESMTP id C79B48FC12 for ; Sat, 29 Nov 2008 20:51:52 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by mu-out-0910.google.com with SMTP id i2so1659995mue.3 for ; Sat, 29 Nov 2008 12:51:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=8BsGZNqNF+0pn8uSVx43jjdlD1ogbmKvPbWDIhXYnSk=; b=xjTJi1Y2swb5Cf4vVitBQuleqJNE/unOiCXvFS5cQS6zp7QxiVWjxOYE5n1/zrGmH+ SUnxMEIcA2dhpd1O+6iE6T8ZeAqcypa3Ph6MtY0wmS2c+rsCZ2xPg5iNE+aR+4w7Yp3t Jow0GhjqvyirV/WEWM/ezgJkq85WXYwg5L+xU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=u7yiFdRReuVaM/8avK9koFsN/S0zPt5dxtawPCELCLVJ8o4NQn5LFrPqn0Kd6MRx41 t8suBbUv9KXACEslEFzfB6rFEosx2savEnMx+lKspaXtkZ0q4uWZpOTEzlnnx2t+FMBx NhXrHnxVZpqqJADzNG6jVm0oC0XI8R6t7NhfM= Received: by 10.103.182.3 with SMTP id j3mr3759202mup.113.1227991911535; Sat, 29 Nov 2008 12:51:51 -0800 (PST) Received: by 10.103.169.16 with HTTP; Sat, 29 Nov 2008 12:51:51 -0800 (PST) Message-ID: <4ad871310811291251x3e14f85fh26d914c33a850fe6@mail.gmail.com> Date: Sat, 29 Nov 2008 15:51:51 -0500 From: "Glen Barber" To: "Jos Chrispijn" In-Reply-To: <49319A83.6050407@webrz.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <49319A83.6050407@webrz.net> Cc: freebsd-questions@freebsd.org Subject: Re: Temporarily blocking ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 20:51:53 -0000 On Sat, Nov 29, 2008 at 2:39 PM, Jos Chrispijn wrote: > Can someone hint me how I can block ports for let's say 30 minutes if > someone repeatedly tries to do a SSH login? > I use ipfw as firewall... > You could also take a look at sshguard. http://cvsweb.freebsd.org/ports/security/sshguard-ipfw -- Glen Barber "If you have any trouble sounding condescending, find a Unix user to show you how it's done." --Scott Adams From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 20:55:16 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E82B1065673 for ; Sat, 29 Nov 2008 20:55:16 +0000 (UTC) (envelope-from sahil@tandon.net) Received: from aegis.hamla.org (aegis.hamla.org [206.251.255.39]) by mx1.freebsd.org (Postfix) with ESMTP id 053D48FC0A for ; Sat, 29 Nov 2008 20:55:15 +0000 (UTC) (envelope-from sahil@tandon.net) Received: from localhost (localhost [127.0.0.1]) by aegis.hamla.org (Postfix) with ESMTP id CF60F5C78 for ; Sat, 29 Nov 2008 15:56:40 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tandon.net; h= x-virus-scanned:in-reply-to:content-disposition:content-type :mime-version:references:reply-to:message-id:subject:from:date: received; s=aegis; t=1227992200; bh=pcbiMr1WtsEIyFFEcmhgHdkSsdnj +DIPzTb4lvz+pNA=; b=pwPti2SLxyXffwj3Ckpi68pH4PcgNYS+2gHK1VkZV4/F cSHUHNWSJn79iQ1qiR55P2jcINaKAopji+X4q3khJ6ZNZragHxi+VjH09qka4SCB a3c7O4LkEZ4W6PMnTPqTEL8opicRcTmJ7MjP3l/+3yeplbv6un0cT4ju3rlPkWg= Received: from aegis.hamla.org ([127.0.0.1]) by localhost (aegis.hamla.org [127.0.0.1]) (amavisd-new, port 10027) with LMTP id ZVfikhX3SydV for ; Sat, 29 Nov 2008 15:56:40 -0500 (EST) Date: Sat, 29 Nov 2008 15:55:14 -0500 From: Sahil Tandon To: freebsd-questions@freebsd.org Message-ID: <20081129205514.GB45077@shepherd> References: <49319A83.6050407@webrz.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <49319A83.6050407@webrz.net> X-Virus-Scanned: ClamAV version 0.94, clamav-milter version 0.94 on aegis.hamla.org X-Virus-Status: Clean Subject: Re: Temporarily blocking ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "freebsd-questions@freebsd.org" List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 20:55:16 -0000 Jos Chrispijn wrote: > Can someone hint me how I can block ports for let's say 30 minutes if > someone repeatedly tries to do a SSH login? > I use ipfw as firewall... security/sshguard-ipfw -- Sahil Tandon From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 21:11:40 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9D041065734 for ; Sat, 29 Nov 2008 21:11:40 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id AE5C38FC19 for ; Sat, 29 Nov 2008 21:11:40 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id DD6ED50A4E; Sat, 29 Nov 2008 22:11:40 +0100 (CET) Received: from [10.10.10.27] (atlantis.webrz.net [10.10.10.27]) by webrz.xs4all.nl (Postfix) with ESMTP id 9937B50A4D; Sat, 29 Nov 2008 22:11:40 +0100 (CET) Message-ID: <4931B00D.2040206@webrz.net> Date: Sat, 29 Nov 2008 22:11:41 +0100 From: Jos Chrispijn User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) MIME-Version: 1.0 To: Chris References: <49319A83.6050407@webrz.net> <22771067-1635-4C00-A0EB-4E14569F636C@hughes.net> In-Reply-To: <22771067-1635-4C00-A0EB-4E14569F636C@hughes.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Cc: FreeBSD-Questions Questions Subject: Re: Temporarily blocking ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 21:11:41 -0000 From your reply on my message of 29-11-2008 21:47: > An even tighter practice is to turn off all password logins and > use only keyed connections. This is easier than it might seem > though I'll admit I think of ssh as something only a select > number of users may use and thus you know them by name > and what IPs they are permitted to connect on. I have been thinking of that as well, but don't think I should use that yet with the knowledge I have on this. Do you refer to manual of automatic key connections? thanks for sharing, Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 21:16:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 938811065672 for ; Sat, 29 Nov 2008 21:16:23 +0000 (UTC) (envelope-from kernel@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id 595E68FC1A for ; Sat, 29 Nov 2008 21:16:23 +0000 (UTC) (envelope-from kernel@webrz.net) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id 7910E50A4E; Sat, 29 Nov 2008 22:16:23 +0100 (CET) Received: from [10.10.10.27] (atlantis.webrz.net [10.10.10.27]) by webrz.xs4all.nl (Postfix) with ESMTP id 5CA0B50A4D; Sat, 29 Nov 2008 22:16:23 +0100 (CET) Message-ID: <4931B128.9080000@webrz.net> Date: Sat, 29 Nov 2008 22:16:24 +0100 From: Jos Chrispijn Organization: Koudekerke (NL) User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) MIME-Version: 1.0 To: Glen Barber References: <49319A83.6050407@webrz.net> <4ad871310811291251x3e14f85fh26d914c33a850fe6@mail.gmail.com> In-Reply-To: <4ad871310811291251x3e14f85fh26d914c33a850fe6@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Cc: freebsd-questions@freebsd.org Subject: Re: Temporarily blocking ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 21:16:23 -0000 From your reply on my message of 29-11-2008 21:47: > You could also take a look at sshguard. > Good suggestion, I will do that. thanks for sharing, Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 22:01:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 356C01065749 for ; Sat, 29 Nov 2008 22:01:45 +0000 (UTC) (envelope-from eagletree@hughes.net) Received: from smtprelay.b.hostedemail.com (smtprelay0040.b.hostedemail.com [64.98.42.40]) by mx1.freebsd.org (Postfix) with ESMTP id B5BEC8FC14 for ; Sat, 29 Nov 2008 22:01:44 +0000 (UTC) (envelope-from eagletree@hughes.net) Received: from filter.hostedemail.com (b-bigip1 [10.5.19.254]) by smtprelay02.b.hostedemail.com (Postfix) with SMTP id 8B15638A6B5E; Sat, 29 Nov 2008 22:01:43 +0000 (UTC) X-SpamScore: 1 X-Spam-Summary: 2, 0, 0, 9390dd1257e62a99, 944facfeb153b4f0, eagletree@hughes.net, freebsd-questions@freebsd.org:jos@webrz.net, RULES_HIT:355:379:541:564:599:601:945:960:966:967:973:981:988:989:1260:1261:1277:1311:1313:1314:1345:1359:1437:1487:1515:1516:1518:1534:1542:1593:1594:1711:1730:1747:1766:1792:2196:2199:2393:2552:2553:2559:2562:2829:2901:3027:3354:3636:3653:3865:3866:3867:3868:3869:3870:3871:3872:3873:3874:3876:3877:4321:4385:4605:5007:6114:6117:6119:6248:7652:7903:8501:9121, 0, RBL:none, CacheIP:none, Bayesian:0.5, 0.5, 0.5, Netcheck:none, DomainCache:0, MSF:not bulk, SPF:, MSBL:none, DNSBL:none Received: from [192.168.0.3] (dpc6744118153.direcpc.com [67.44.118.153]) (Authenticated sender: eagletree@hughes.net) by omf03.b.hostedemail.com (Postfix) with ESMTP; Sat, 29 Nov 2008 22:01:34 +0000 (UTC) In-Reply-To: <4931B00D.2040206@webrz.net> References: <49319A83.6050407@webrz.net> <22771067-1635-4C00-A0EB-4E14569F636C@hughes.net> <4931B00D.2040206@webrz.net> Mime-Version: 1.0 (Apple Message framework v753) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <769E437F-4F3B-44D4-B470-56AD323C6AB3@hughes.net> Content-Transfer-Encoding: 7bit From: Chris Date: Sat, 29 Nov 2008 14:01:28 -0800 To: Jos Chrispijn X-Mailer: Apple Mail (2.753) X-session-marker: 6561676C6574726565406875676865732E6E6574 Cc: FreeBSD-Questions Questions Subject: Re: Temporarily blocking ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 22:01:45 -0000 On Nov 29, 2008, at 1:11 PM, Jos Chrispijn wrote: > > From your reply on my message of 29-11-2008 21:47: >> An even tighter practice is to turn off all password logins and >> use only keyed connections. This is easier than it might seem >> though I'll admit I think of ssh as something only a select >> number of users may use and thus you know them by name >> and what IPs they are permitted to connect on. > I have been thinking of that as well, but don't think I should use > that yet with the knowledge I have on this. > Do you refer to manual of automatic key connections? > It's extremely easy. Generate your key and spread it to all systems you want to connect to. Have other users generate their key and do the same. After everyone is set, turn off password access in /etc/ssh/sshd_config, that file contains the docs in comments on how to do this. You change three parameters. Then sshd will need to be restarted. Be sure logins by key work first. This implies how to set up your keys. This was lifted from a helpful page on the net and modified but is pretty basic. Creates the keys in home directory of myuserid on system www.example.com, then moving the key to a second system called other.example.com such that myuserid can move between systems. The userid on the remote does not need to be the same string as on the local system though it's shown that way here. www$ cd # get to your home directory www$ ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to save the key (/home/myuserid/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/myuserid/.ssh/id_rsa. Your public key has been saved in /home/myuserid/.ssh/id_rsa.pub. The key fingerprint is: myuserid@www.example.com www$ ssh myuserid@other.example.com mkdir -p .ssh Password: www$ cat .ssh/id_rsa.pub|ssh myuserid@other.example.com 'cat >> .ssh/ authorized_keys' Password: You are done setting up keys. Sample use of seamless login: www$ ssh other.example.com other$ host other.example.com other$ users myuserid ttyp0 Jul 14 05:28 (www.example.com) other$ exit www$ I only use this on FreeBSD and OS-X. No idea on Putty and others. > thanks for sharing, > Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 22:16:58 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56BE4106564A for ; Sat, 29 Nov 2008 22:16:58 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 03CBC8FC16 for ; Sat, 29 Nov 2008 22:16:55 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id mATMGi2m012531; Sat, 29 Nov 2008 23:16:45 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id mATMGihk012528; Sat, 29 Nov 2008 23:16:44 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sat, 29 Nov 2008 23:16:43 +0100 (CET) From: Wojciech Puchar To: Christopher Joyner In-Reply-To: Message-ID: <20081129231605.R12527@wojtek.tensor.gdynia.pl> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Problem with wireless network. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 22:16:58 -0000 > This same computer, using the same FreeBSD used to connect to the interent, > and I could go surfing. Now it only times out. I have a fresh install of > FreeBSD 7.0, and can not solve this problem. probably nobody can solve your problem without ANY precise description. your hardware, your ifconfig, logs etc. From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 22:22:53 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B330C1065679 for ; Sat, 29 Nov 2008 22:22:53 +0000 (UTC) (envelope-from markus.hoenicka@mhoenicka.de) Received: from smtprelay11.ispgateway.de (smtprelay11.ispgateway.de [80.67.29.28]) by mx1.freebsd.org (Postfix) with ESMTP id 788FA8FC0C for ; Sat, 29 Nov 2008 22:22:53 +0000 (UTC) (envelope-from markus.hoenicka@mhoenicka.de) Received: from [92.229.122.74] (helo=yeti.mininet) by smtprelay11.ispgateway.de with esmtpa (Exim 4.68) (envelope-from ) id 1L6YDD-0004TM-TA for freebsd-questions@FreeBSD.org; Sat, 29 Nov 2008 23:22:52 +0100 X-Mailer: emacs 22.1.1 (via feedmail 8 I); VM 7.19 under Emacs 22.1.1 From: "Markus Hoenicka" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18737.49562.23954.817685@yeti.mininet> Date: Sat, 29 Nov 2008 23:26:34 +0100 To: freebsd-questions@FreeBSD.org In-Reply-To: <18721.64377.656498.977270@yeti.mininet> References: <18715.28127.306511.577084@yeti.mininet> <20081113042912.GA10018@icarus.home.lan> <20081113090021.less3h5iwwsgwsg4@webmail.df.eu> <20081113081456.GA14564@icarus.home.lan> <20081113092059.gjjufgrxss0gwww0@webmail.df.eu> <20081113082402.GA14906@icarus.home.lan> <20081113121822.GA20600@icarus.home.lan> <18718.4273.817459.356946@yeti.mininet> <18721.64377.656498.977270@yeti.mininet> X-Df-Sender: 472582 Cc: Subject: Re: dlsym can't use handle returned by dlopen? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 22:22:53 -0000 Markus Hoenicka writes: > Don't mean to nag, but is there any news on this? > just for the record: turns out this was a bug that got fixed in 6.3. See http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/129031 regards, Markus -- Markus Hoenicka markus.hoenicka@cats.de (Spam-protected email: replace the quadrupeds with "mhoenicka") http://www.mhoenicka.de From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 22:35:04 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32B01106564A for ; Sat, 29 Nov 2008 22:35:04 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by mx1.freebsd.org (Postfix) with ESMTP id 93B4A8FC14 for ; Sat, 29 Nov 2008 22:35:03 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so1014182nfh.33 for ; Sat, 29 Nov 2008 14:35:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=fKWPgokYpuDQv7WlqoVbVNMHWO/Xy17tPGkz/igIh8U=; b=X97SdfXgYl5TL7YBWaUBBDJhtmu4ckouvYwt10n0tZfS4Vd1/GA7jI+D//WVousWJ1 jrETELqRR3hU5qSmoGxNnO+1gSes315MI1IyguVRNoCu6qLN1XbDUozTfi3v4G2ByqPF M3w9EWKuCthwJDJxhqLwZBlvY7YmB+MlIQUhM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=gmwWcpjca1cqZjIKXRDhBEUqpOe7Ro73pN6zfY9a8HJbcMZca7v5F7PCEPSFhiq/93 pXgF9c7MZTOFkp583ajfGnAE1+DptkYeIDjR+nMpi0Ktn+S0BNI5vvPV3TQwMAyqup98 Nv6sODAP1WkUPrIoMVQOd7zvZKBZ8U6sj6EDs= Received: by 10.181.145.6 with SMTP id x6mr3310521bkn.25.1227998101371; Sat, 29 Nov 2008 14:35:01 -0800 (PST) Received: by 10.181.31.13 with HTTP; Sat, 29 Nov 2008 14:35:01 -0800 (PST) Message-ID: <28283d910811291435s5fa8ebeeocab1b85d6a1483b1@mail.gmail.com> Date: Sat, 29 Nov 2008 17:35:01 -0500 From: "matt donovan" To: "Pieter Donche" In-Reply-To: MIME-Version: 1.0 References: <28283d910811281557v53057fb0tf264bfe169bdee35@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "mail.list freebsd-questions" Subject: Re: nxserver/freenx X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 22:35:04 -0000 On Sat, Nov 29, 2008 at 7:42 AM, Pieter Donche wrote: > On Fri, 28 Nov 2008, matt donovan wrote: > > On Fri, Nov 28, 2008 at 3:53 AM, Pieter Donche > >wrote: >> >> I want my freeBSD-7.0-RELEASE server accessible via a FreeNX client >>> from www.nomachine.com. >>> >>> I believe I should install both the ports nxserver and freenx: >>> >>> From http://www.freebsdports.info/ports/net/nxserver.html I read: >>>> >>>> nxserver: this port provides only the NX core binaries and libraries as >>> were released by NoMachine as source code. To make them work and be >>> used as an NX server, you will need to: >>> - either install FreeNX (net/freenx) additionally, >>> - or install the commercial NoMachine server product (currently not >>> available in native FreeBSD form) >>> >>> $ whereis nxserver >>> nxserver: /usr/ports/net/nxserver >>> $ whereis freenx >>> freenx: /usr/ports/net/freenx >>> # cd /usr/ports/net/nxserver >>> # make install clean >>> ===> nxserver-1.4.0_1 is marked as broken: this port fails to build with >>> xorg-7 >>> .2. >>> *** Error code 1 >>> >>> What's this? >>> >>> What are my alternatives to get a NX server running on FreeBSD? >>> >>> # pkg_add -r freenx >>> isn't found ... >>> >>> _______________________________________________ >>> freebsd-questions@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >>> To unsubscribe, send any mail to " >>> freebsd-questions-unsubscribe@freebsd.org" >>> >> >> >> well freenx now provides nxserver I tried updating the ports but the >> freenx >> tarball isn't very clear like it used to be since, since the files have >> changed so much from what the old version used to be like. you could try >> freenx and see if it will work or not. Since I m pretty sure the port is >> old. >> > > No help ... This ends up with the same problem ... : > > # cd /usr/ports/net/freenx > # make install clean > ===> Vulnerability check disabled, database not found > => freenx-0.4.4.tar.gz doesn't seem to exist in /usr/ports/distfiles/. > => Attempting to fetch from http://www.iem.pw.edu.pl/ftp/distfiles/. > fetch: http://www.iem.pw.edu.pl/ftp/distfiles/freenx-0.4.4.tar.gz: Moved > Temporarily > => Attempting to fetch from > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. > freenx-0.4.4.tar.gz 100% of 45 kB 92 kBps > ===> Extracting for freenx-0.4.4_3 > => MD5 Checksum OK for freenx-0.4.4.tar.gz. > => SHA256 Checksum OK for freenx-0.4.4.tar.gz. > ===> Patching for freenx-0.4.4_3 > ===> Applying FreeBSD patches for freenx-0.4.4_3 > ===> freenx-0.4.4_3 depends on file: /usr/local/libdata/xorg/libraries - > found > ===> Configuring for freenx-0.4.4_3 > ===> Installing for freenx-0.4.4_3 > ===> freenx-0.4.4_3 depends on file: /usr/local/NX/bin/nxagent - not > found > ===> Verifying install for /usr/local/NX/bin/nxagent in > /usr/ports/net/nxserver > ===> nxserver-1.4.0_1 is marked as broken: this port fails to build with > xorg-7.2. > *** Error code 1 > > Stop in /usr/ports/net/nxserver. > *** Error code 1 > Stop in /usr/ports/net/freenx. pretty much you need to update the ports to even install freenx/nxserver, I tried updating the freenx one but got a bit lost with the new freenx tarballs that the developer provides. And I know these two ports are the most wanted, for some people From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 22:45:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA9841065675 for ; Sat, 29 Nov 2008 22:45:45 +0000 (UTC) (envelope-from fbsd06+4E=746990f5@mlists.homeunix.com) Received: from fallback-in1.mxes.net (fallback-out1.mxes.net [216.86.168.190]) by mx1.freebsd.org (Postfix) with ESMTP id 9234C8FC12 for ; Sat, 29 Nov 2008 22:45:45 +0000 (UTC) (envelope-from fbsd06+4E=746990f5@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by fallback-in1.mxes.net (Postfix) with ESMTP id 11E43163F68 for ; Sat, 29 Nov 2008 17:33:58 -0500 (EST) Received: from gumby.homeunix.com (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 2BD8723E3E2 for ; Sat, 29 Nov 2008 17:33:55 -0500 (EST) Date: Sat, 29 Nov 2008 22:33:53 +0000 From: RW To: freebsd-questions@freebsd.org Message-ID: <20081129223353.04a0d9cf@gumby.homeunix.com> In-Reply-To: <200811291637.mATGb9iR048266@ns0.azuni.net> References: <200811291637.mATGb9iR048266@ns0.azuni.net> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: FreeBSD 4.8: can't load kernel after doing "cp -R /" to another disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 22:45:45 -0000 On Sat, 29 Nov 2008 20:37:09 +0400 "admin" wrote: > > Hello, everyone. This is the problem: our SCSI disk with FreeBSD 4.8 > on it has been failing recently, so I copied its root partition to a > fresh IDE disk with cp -pR and You should use dump and restore to copy the root partition, see: http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/disks.html#NEW-HUGE-DISK From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 22:51:35 2008 Return-Path: Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB4851065672 for ; Sat, 29 Nov 2008 22:51:35 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (aristotle.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id 838CA8FC12 for ; Sat, 29 Nov 2008 22:51:35 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id mATMptUo037802 for ; Sat, 29 Nov 2008 14:51:55 -0800 (PST) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Sat, 29 Nov 2008 14:51:23 -0800 (PST) Date: Sat, 29 Nov 2008 14:51:23 -0800 From: Gary Kline To: FreeBSD Mailing List Message-ID: <20081129225120.GA83398@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22 years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: Subject: Anybody familiar with "publib"?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 22:51:35 -0000 People, I found a neat function in publib that should do what I want, but adding either #imclude // as per man publib OR #include "/usr/local/include/publib.h" fails. Yes, I am adding "-lpub" to the enc of gcc. Still bombs. Anybody know why? Prev'ly when I've used the publib functions, I've had to move/copy a slew of them into my private build. Be nice if this just-worked! thanks for any insights, gary -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org From owner-freebsd-questions@FreeBSD.ORG Sat Nov 29 22:56:00 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9244B106564A for ; Sat, 29 Nov 2008 22:56:00 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from fk-out-0910.google.com (fk-out-0910.google.com [209.85.128.190]) by mx1.freebsd.org (Postfix) with ESMTP id 242B98FC14 for ; Sat, 29 Nov 2008 22:55:59 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by fk-out-0910.google.com with SMTP id k31so2011382fkk.11 for ; Sat, 29 Nov 2008 14:55:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=KT1vQrJ7q+L58JtTNpTi+PyApm6ZdcSsgx5rzkMr/q8=; b=RX/dLHy7WJ83kkdRPDgCuQpO0gSGTVhkauvQexws/2YfBupeyVGVuZaLsD3TeNFW2S nD44UZAbwhRVnsMaFlJt8Ho+HjJYVHe4RfUFIm8bkgBNHZ7pGCkc3DUDrOP5tjNK5zif xkbBhnB4VOnSqTVIPseaZibanlU8uW6XUe0EM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=okvpKrYFgLrIoQilqv8wY/97cSuJIcAdmMHgjnd4SkHptj19S1JE2A6egOrZ0NGZwg kxJJaqBg7/NWiumuyIZsmMWd1hYM9PRLBe4ZXLpgj9yGYaKU+lzhyuefI+WLLM+jjgJ6 4ZxFPCknUhwAOBM8bu3RRcRARQVvgyBsCuXlU= Received: by 10.103.182.3 with SMTP id j3mr3795775mup.113.1227999358552; Sat, 29 Nov 2008 14:55:58 -0800 (PST) Received: by 10.103.169.16 with HTTP; Sat, 29 Nov 2008 14:55:58 -0800 (PST) Message-ID: <4ad871310811291455k16058abcyf9473cf0559a70f@mail.gmail.com> Date: Sat, 29 Nov 2008 17:55:58 -0500 From: "Glen Barber" To: admin In-Reply-To: <200811291637.mATGb9iR048266@ns0.azuni.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200811291637.mATGb9iR048266@ns0.azuni.net> Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD 4.8: can't load kernel after doing "cp -R /" to another disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2008 22:56:00 -0000 On Sat, Nov 29, 2008 at 11:37 AM, admin wrote: > > Hello, everyone. This is the problem: our SCSI disk with FreeBSD 4.8 on it > has been failing recently, so I copied its root partition to a fresh IDE > disk with cp -pR and tried to boot from that. Unfortunately, loader gives me > this: > can't load 'kernel' > can't load 'kernel.old' > and offers prompt. > I tried almost any combination of the loader command (like > 0:ad0(0,a)/boot/loader) but still the same. The kernels are right there: > /kernel and /kernel.old. Can't the root partition be copied this way? Should > their location on disk be hardcoded somewhere? Please help me with > bootblocks etc. as I'm desperately running out of time. Short of using dump/restore, you should append the -p flag to `cp', because it preserves permissions. Follow the advice posted by RW, however. -- Glen Barber "If you have any trouble sounding condescending, find a Unix user to show you how it's done." --Scott Adams