From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 00:03:20 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 372EB16A4CE for ; Sun, 15 Aug 2004 00:03:20 +0000 (GMT) Received: from server.tcslea.org (server.tcslea.org [205.238.132.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0887E43D2F for ; Sun, 15 Aug 2004 00:03:20 +0000 (GMT) (envelope-from bsdnewbie@coolarrow.com) X-ExtScanner: Niversoft's FindAttachments (free) X-Antivirus: clamav via cgpav Received: from [205.238.178.23] (HELO system) by server.tcslea.org (CommuniGate Pro SMTP 4.2) with ESMTP id 464532 for freebsd-questions@freebsd.org; Sat, 14 Aug 2004 19:03:18 -0500 Message-ID: <200408141903140091.0259E8AD@coolarrow.com> In-Reply-To: <20040814142526.GA10452@happy-idiot-talk.infracaninophile.co.uk> References: <200408140757580645.002678A7@coolarrow.com> <20040814142526.GA10452@happy-idiot-talk.infracaninophile.co.uk> X-Mailer: Courier 3.50.00.09.1098 (http://www.rosecitysoftware.com) (P) Date: Sat, 14 Aug 2004 19:03:14 -0500 From: "Chris" To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: Re[2]: security run output X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 00:03:20 -0000 *This message was transferred with a trial version of CommuniGate(tm) Pro* >> ... MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> >No -- that's entirely harmless. If you look at /var/run/dmesg.boot, >you see that it's just part of the normal kernel output during boot. >Specifically it's a list of the capabilities of your CPU. > >What's happened is that the message buffer has somehow got truncated >at the beginning, and you're seeing just the end of that particular >line. For some reason, the daily security script thinks it's >significant kernel output, but it isn't really. Odd, because I haven't booted in awhile. This just showed up out of the= blue this one time, and has never shown up before. Thanks for the info, though. Chris _________________________________________________________ Email harvesters eat this: sendjunkmailhere@coolarrow.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 00:11:57 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EF2416A4CE for ; Sun, 15 Aug 2004 00:11:57 +0000 (GMT) Received: from smtp4.server.rpi.edu (smtp4.server.rpi.edu [128.113.2.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01A5443D3F for ; Sun, 15 Aug 2004 00:11:57 +0000 (GMT) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.netel.rpi.edu [128.113.24.47]) by smtp4.server.rpi.edu (8.13.0/8.13.0) with ESMTP id i7F0BtpM013976; Sat, 14 Aug 2004 20:11:55 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20040814230143.GB8610@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> Date: Sat, 14 Aug 2004 20:11:54 -0400 To: "Paul A. Hoadley" , freebsd-questions@freebsd.org From: Garance A Drosihn Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: CanIt (www . canit . ca) Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 00:11:57 -0000 At 8:31 AM +0930 8/15/04, Paul A. Hoadley wrote: >Hello, > >I'm in the process of cleaning a Maildir full of spam. It has >somewhere in the vicinity of 400K files in it. I started running >this yesterday: > >find . -atime +1 -exec mv {} /home/paulh/tmp/spam/sne/ \; > >It's been running for well over 12 hours. It certainly is >working---the spams are slowly moving to their new home---but >it is taking a long time. It's a very modest system, running >4.8-R on a P2-350. I assume this is all overhead for spawning >a shell and running mv 400K times. Some of it is that, and some of it is the performance-penalty of deleting files from a directory which has 400K filenames in it, only to add the same files into a directory which will eventually have 400K filenames in it. Directory adds/deletes are not fast when a directory has that many filenames. It is probably even worse if there are other processes still working on the same directory (such as sendmail importing more mail). Where is '.' in the above `find .' command? Is it is on the same partition as /home/paulh/tmp/spam/sne/ ? You may find it much faster to do something like: mkdir usermail.new chown user:group usermail.new mv usermail usermail.bigspam mv usermail.new usermail cd usermail.bigspam find . \! -atime +1 -exec mv {} ../usermail \; My assumption there is that you have a LOT fewer "good files" than you have "bad files", so there will be fewer files to move. But I am also making the assumption that all your files are in a single directory (and not a tree of directories), which may be a bad assumption. >Is there a better way to move all files based on some characteristic >of their date stamp? Maybe separating the find and the move, piping >it through xargs? The thing to use is the '-J' option of xargs. That way you can have the destination-directory be the last argument in the command that gets executed, and yet you're still moving as many files in a single `mv' command as possible. E.g., change my earlier `find' command to: find . \! -atime +1 -print0 | xargs -0J[] mv [] ../usermail Check the man page for xargs for a description of -J -- Garance Alistair Drosehn = gad@gilead.netel.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 00:18:22 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 115CC16A4CE for ; Sun, 15 Aug 2004 00:18:22 +0000 (GMT) Received: from smtp3.adl2.internode.on.net (smtp3.adl2.internode.on.net [203.16.214.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70BE243D39 for ; Sun, 15 Aug 2004 00:18:21 +0000 (GMT) (envelope-from malcolm.kay@internode.on.net) Received: from beta.home (ppp137-206.lns1.adl2.internode.on.net [150.101.137.206])i7F0IDHY042254; Sun, 15 Aug 2004 09:48:13 +0930 (CST) From: Malcolm Kay Organization: at home To: Lowell Gilbert , SD , Alex de Kruijff Date: Sun, 15 Aug 2004 09:48:12 +0930 User-Agent: KMail/1.5.4 References: <200408141740.58105.malcolm.kay@internode.on.net> <20040814142349.GA884@alex.lan> <44fz6p4w8u.fsf@be-well.ilk.org> In-Reply-To: <44fz6p4w8u.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200408150948.12920.malcolm.kay@internode.on.net> cc: freebsd-questions@freebsd.org Subject: Re: Fetchmail/Sendmail rejects X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 00:18:22 -0000 On Sunday 15 August 2004 00:12, Lowell Gilbert wrote: > Alex de Kruijff writes: > > On Sat, Aug 14, 2004 at 05:40:58PM +0930, Malcolm Kay wrote: > > > Is there some reasonable way of disposing of these messages. > > > > Fetchmail (nor getmail) will do this for you. > > Specifically, see the "SPAM FILTERING" section of the fetchmail(1) > manual, and the --antispam option. > > Figure out what kind of error response sendmail is giving for the > problem messages, and make sure fetchmail knows that it is allowed to > throw those messages away. On Sunday 15 August 2004 04:15, SD wrote: > > "-Z 451" on cli will have fetchmail trash all messages for which MTA > returns code 451. There's an equivilent fetchmailrc option (antispam > iirc). Thanks guys for the responses -- this really looks the way to go. Does anyone know how sendmail distinguishes between: reject=451 4.1.8 Domain of sender address ................ does not resolve reject=553 5.1.8 .......... Domain of sender address .............. does not exist It seems the former is to be interpreted as a 'temporary' condition while the latter is to be interpreted as 'permanent' (and is by default deleted by fetchmail)? Thanks Malcolm From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 00:28:15 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDFF616A4CE for ; Sun, 15 Aug 2004 00:28:15 +0000 (GMT) Received: from mta5.srv.hcvlny.cv.net (mta5.srv.hcvlny.cv.net [167.206.5.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C2D843D31 for ; Sun, 15 Aug 2004 00:28:13 +0000 (GMT) (envelope-from kellers@njit.edu) Received: from www.smsdesign.org (ool-4353d5dd.dyn.optonline.net [67.83.213.221]) by mta5.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0I2G001SYPBCOV@mta5.srv.hcvlny.cv.net> for questions@freebsd.org; Sat, 14 Aug 2004 20:28:25 -0400 (EDT) Date: Sat, 14 Aug 2004 20:28:01 -0400 From: Tim Kellers To: questions@freebsd.org Message-id: <200408142028.12114.kellers@njit.edu> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Content-disposition: inline User-Agent: KMail/1.6.2 Subject: sgi_fam/tcp server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 00:28:15 -0000 Console message: Aug 14 20:10:25 www inetd[645]: sgi_fam/tcp server failing (looping), service terminated Anyone know what this message means? I tried searching on www.freebsd.org, but the site is down. This is on a FBSD-CURRENT i386 box, but I wanted to ask here before I asked on the Current list. uname -a: FreeBSD www.smsdesign.org 5.2-CURRENT FreeBSD 5.2-CURRENT #4: Sat Aug 7 18:41:05 EDT 2004 timothyk@www.smsdesign.org:/usr/obj/usr/src/sys/BRASIDAS i386 Thanks Tim Kellers CPE/NJIT From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 00:28:34 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA84F16A4CE for ; Sun, 15 Aug 2004 00:28:34 +0000 (GMT) Received: from mta2.srv.hcvlny.cv.net (mta2.srv.hcvlny.cv.net [167.206.5.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id A08C143D1D for ; Sun, 15 Aug 2004 00:28:34 +0000 (GMT) (envelope-from ecarmody@optonline.net) Received: from edsdell8200 (ool-4354dca5.dyn.optonline.net [67.84.220.165]) by mta2.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0I2G00HEGPBHDW@mta2.srv.hcvlny.cv.net> for freebsd-questions@freebsd.org; Sat, 14 Aug 2004 20:28:29 -0400 (EDT) Date: Sat, 14 Aug 2004 20:28:21 -0400 From: Edward Carmody To: freebsd-questions@freebsd.org Message-id: <000e01c4825e$c5355540$1568a8c0@edsdell8200> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Mailer: Microsoft Outlook, Build 10.0.6626 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal Subject: trouble with sysinstall X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 00:28:35 -0000 Hi, When trying to do anything from sysinstall, I get the following error: Can't find the `5.2.1-RELEASE-p8' distribution on this x x FTP server. You may need to visit a different server for x x the release you are trying to fetch or go to the Options x x menu and to set the release name to explicitly match what's x x available on ftp1.freebsd.org (or set to "any"). x x x x Would you like to select another FTP server? Any ideas? Edward Carmody, CCNP Systems Engineer ShoreGroup, Inc. M: 845-649-7791 F: 646-349-3506 ecarmody@shoregroup.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 00:30:49 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A5C116A4CF for ; Sun, 15 Aug 2004 00:30:49 +0000 (GMT) Received: from creme-brulee.marcuscom.com (rrcs-midsouth-24-172-16-118.biz.rr.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id E51D843D48 for ; Sun, 15 Aug 2004 00:30:48 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) i7F0UZDZ012710; Sat, 14 Aug 2004 20:30:35 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Tim Kellers In-Reply-To: <200408142028.12114.kellers@njit.edu> References: <200408142028.12114.kellers@njit.edu> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-F4Yb3igaut9NK4KpUouY" Organization: MarcusCom, Inc. Message-Id: <1092529846.36842.29.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sat, 14 Aug 2004 20:30:46 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on creme-brulee.marcuscom.com cc: questions@freebsd.org Subject: Re: sgi_fam/tcp server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 00:30:49 -0000 --=-F4Yb3igaut9NK4KpUouY Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2004-08-14 at 20:28, Tim Kellers wrote: > Console message: >=20 > Aug 14 20:10:25 www inetd[645]: sgi_fam/tcp server failing (looping), ser= vice=20 > terminated >=20 > Anyone know what this message means? I tried searching on www.freebsd.or= g,=20 > but the site is down. This is on a FBSD-CURRENT i386 box, but I wanted t= o=20 > ask here before I asked on the Current list. If you recently upgraded to a GCC 3.4.2 -CURRENT, you need to rebuild devel/fam. Joe >=20 > uname -a: >=20 > FreeBSD www.smsdesign.org 5.2-CURRENT FreeBSD 5.2-CURRENT #4: Sat Aug 7=20 > 18:41:05 EDT 2004 =20 > timothyk@www.smsdesign.org:/usr/obj/usr/src/sys/BRASIDAS i386 >=20 > Thanks >=20 > Tim Kellers > CPE/NJIT > _______________________________________________ > 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" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-F4Yb3igaut9NK4KpUouY Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBHq62b2iPiv4Uz4cRAucgAJ9gQ2rqX4ycrPes7jvj5KxtN6HNPACgggMd hDW2AsMoi/lvcbyyz8qULMY= =1giu -----END PGP SIGNATURE----- --=-F4Yb3igaut9NK4KpUouY-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 00:34:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2F7F16A4CE; Sun, 15 Aug 2004 00:34:48 +0000 (GMT) Received: from mta8.srv.hcvlny.cv.net (mta8.srv.hcvlny.cv.net [167.206.5.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DC7C43D46; Sun, 15 Aug 2004 00:34:48 +0000 (GMT) (envelope-from kellers@njit.edu) Received: from www.smsdesign.org (ool-4353d5dd.dyn.optonline.net [67.83.213.221]) by mta8.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0I2G004MRPLJQ3@mta8.srv.hcvlny.cv.net>; Sat, 14 Aug 2004 20:34:31 -0400 (EDT) Date: Sat, 14 Aug 2004 20:34:47 -0400 From: Tim Kellers In-reply-to: <1092529846.36842.29.camel@shumai.marcuscom.com> To: freebsd-questions@freebsd.org Message-id: <200408142034.47544.kellers@njit.edu> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Content-disposition: inline User-Agent: KMail/1.6.2 References: <200408142028.12114.kellers@njit.edu> <1092529846.36842.29.camel@shumai.marcuscom.com> cc: questions@freebsd.org Subject: Re: sgi_fam/tcp server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 00:34:48 -0000 On Saturday 14 August 2004 08:30 pm, Joe Marcus Clarke wrote: > On Sat, 2004-08-14 at 20:28, Tim Kellers wrote: > > Console message: > > > > Aug 14 20:10:25 www inetd[645]: sgi_fam/tcp server failing (looping), > > service terminated > > > > Anyone know what this message means? I tried searching on > > www.freebsd.org, but the site is down. This is on a FBSD-CURRENT i386 > > box, but I wanted to ask here before I asked on the Current list. > > If you recently upgraded to a GCC 3.4.2 -CURRENT, you need to rebuild > devel/fam. > > Joe > > > uname -a: > > > > FreeBSD www.smsdesign.org 5.2-CURRENT FreeBSD 5.2-CURRENT #4: Sat Aug 7 > > 18:41:05 EDT 2004 > > timothyk@www.smsdesign.org:/usr/obj/usr/src/sys/BRASIDAS i386 > > > > Thanks > > > > Tim Kellers > > CPE/NJIT Wow... what a speedy response! Thanks Joe! From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 00:34:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2F7F16A4CE; Sun, 15 Aug 2004 00:34:48 +0000 (GMT) Received: from mta8.srv.hcvlny.cv.net (mta8.srv.hcvlny.cv.net [167.206.5.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DC7C43D46; Sun, 15 Aug 2004 00:34:48 +0000 (GMT) (envelope-from kellers@njit.edu) Received: from www.smsdesign.org (ool-4353d5dd.dyn.optonline.net [67.83.213.221]) by mta8.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0I2G004MRPLJQ3@mta8.srv.hcvlny.cv.net>; Sat, 14 Aug 2004 20:34:31 -0400 (EDT) Date: Sat, 14 Aug 2004 20:34:47 -0400 From: Tim Kellers In-reply-to: <1092529846.36842.29.camel@shumai.marcuscom.com> To: freebsd-questions@freebsd.org Message-id: <200408142034.47544.kellers@njit.edu> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Content-disposition: inline User-Agent: KMail/1.6.2 References: <200408142028.12114.kellers@njit.edu> <1092529846.36842.29.camel@shumai.marcuscom.com> cc: questions@freebsd.org Subject: Re: sgi_fam/tcp server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 00:34:48 -0000 On Saturday 14 August 2004 08:30 pm, Joe Marcus Clarke wrote: > On Sat, 2004-08-14 at 20:28, Tim Kellers wrote: > > Console message: > > > > Aug 14 20:10:25 www inetd[645]: sgi_fam/tcp server failing (looping), > > service terminated > > > > Anyone know what this message means? I tried searching on > > www.freebsd.org, but the site is down. This is on a FBSD-CURRENT i386 > > box, but I wanted to ask here before I asked on the Current list. > > If you recently upgraded to a GCC 3.4.2 -CURRENT, you need to rebuild > devel/fam. > > Joe > > > uname -a: > > > > FreeBSD www.smsdesign.org 5.2-CURRENT FreeBSD 5.2-CURRENT #4: Sat Aug 7 > > 18:41:05 EDT 2004 > > timothyk@www.smsdesign.org:/usr/obj/usr/src/sys/BRASIDAS i386 > > > > Thanks > > > > Tim Kellers > > CPE/NJIT Wow... what a speedy response! Thanks Joe! From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 00:37:03 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B133716A4CE for ; Sun, 15 Aug 2004 00:37:03 +0000 (GMT) Received: from smtpout01-04.mesa1.secureserver.net (smtpout01-04.mesa1.secureserver.net [64.202.165.79]) by mx1.FreeBSD.org (Postfix) with SMTP id 7BC6A43D1D for ; Sun, 15 Aug 2004 00:37:03 +0000 (GMT) (envelope-from Ara@Avvali.COM) Received: (qmail 27486 invoked from network); 15 Aug 2004 00:37:01 -0000 Received: from unknown (69.193.89.19) by smtpout01-04.mesa1.secureserver.net (64.202.165.79) with ESMTP; 15 Aug 2004 00:37:01 -0000 From: "Ara Avvali" To: Date: Sat, 14 Aug 2004 20:36:57 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 Thread-Index: AcSCX/gavVyfwdkPTDKbeqh/nwQTcw== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Message-Id: <20040815003703.7BC6A43D1D@mx1.FreeBSD.org> Subject: new NVIDIA driver is released X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 00:37:03 -0000 Hi There is a new version on NVIDIA site for those who are interested --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.737 / Virus Database: 491 - Release Date: 11/08/2004 From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 00:55:00 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4EE916A4CE for ; Sun, 15 Aug 2004 00:55:00 +0000 (GMT) Received: from mta09-svc.ntlworld.com (mta09-svc.ntlworld.com [62.253.162.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD7EB43D1D for ; Sun, 15 Aug 2004 00:54:59 +0000 (GMT) (envelope-from d3c3it-linux@ntlworld.com) Received: from [192.168.0.4] ([213.106.176.107]) by mta09-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with ESMTP id <20040815005553.SBTK24416.mta09-svc.ntlworld.com@[192.168.0.4]> for ; Sun, 15 Aug 2004 01:55:53 +0100 From: Glyn Tebbutt To: freebsd-questions@freebsd.org In-Reply-To: <20040815003703.7BC6A43D1D@mx1.FreeBSD.org> References: <20040815003703.7BC6A43D1D@mx1.FreeBSD.org> Content-Type: text/plain Message-Id: <1092531402.5261.4.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sun, 15 Aug 2004 01:56:42 +0100 Content-Transfer-Encoding: 7bit Subject: Re: new NVIDIA driver is released X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 00:55:00 -0000 On Sun, 2004-08-15 at 01:36, Ara Avvali wrote: > Hi > There is a new version on NVIDIA site for those who are interested > > > --- > Outgoing mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.737 / Virus Database: 491 - Release Date: 11/08/2004 > > > _______________________________________________ > 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" Does anyone know what the stabilty of theses drivers are like? ie when using 5.2.1 release startx used to reboot the machine with the driver, only -CURRENT + linking libthred > libc From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 01:04:43 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D15B16A4CE for ; Sun, 15 Aug 2004 01:04:43 +0000 (GMT) Received: from mta5.srv.hcvlny.cv.net (mta5.srv.hcvlny.cv.net [167.206.5.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35AC343D46 for ; Sun, 15 Aug 2004 01:04:43 +0000 (GMT) (envelope-from kellers@njit.edu) Received: from www.smsdesign.org (ool-4353d5dd.dyn.optonline.net [67.83.213.221]) by mta5.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0I2G0031DR06O0@mta5.srv.hcvlny.cv.net> for freebsd-questions@freebsd.org; Sat, 14 Aug 2004 21:04:55 -0400 (EDT) Date: Sat, 14 Aug 2004 21:04:41 -0400 From: Tim Kellers In-reply-to: <1092529846.36842.29.camel@shumai.marcuscom.com> To: freebsd-questions@freebsd.org Message-id: <200408142104.42015.kellers@njit.edu> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Content-disposition: inline User-Agent: KMail/1.6.2 References: <200408142028.12114.kellers@njit.edu> <1092529846.36842.29.camel@shumai.marcuscom.com> Subject: Re: sgi_fam/tcp server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 01:04:43 -0000 On Saturday 14 August 2004 08:30 pm, Joe Marcus Clarke wrote: > On Sat, 2004-08-14 at 20:28, Tim Kellers wrote: > > Console message: > > > > Aug 14 20:10:25 www inetd[645]: sgi_fam/tcp server failing (looping), > > service terminated > > > > Anyone know what this message means? I tried searching on > > www.freebsd.org, but the site is down. This is on a FBSD-CURRENT i386 > > box, but I wanted to ask here before I asked on the Current list. > > If you recently upgraded to a GCC 3.4.2 -CURRENT, you need to rebuild > devel/fam. > > Joe > > > uname -a: > > > > FreeBSD www.smsdesign.org 5.2-CURRENT FreeBSD 5.2-CURRENT #4: Sat Aug 7 > > 18:41:05 EDT 2004 > > timothyk@www.smsdesign.org:/usr/obj/usr/src/sys/BRASIDAS i386 > > > > Thanks > > > > Tim Kellers $ gcc --version gcc (GCC) 3.3.3 [FreeBSD] 20031106 Copyright (C) 2003 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I thought I already had gcc 3.4, but I don't. fam is fam-2.6.9_6. Tim From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 01:10:57 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEB2116A4CE for ; Sun, 15 Aug 2004 01:10:57 +0000 (GMT) Received: from out014.verizon.net (out014pub.verizon.net [206.46.170.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4544F43D3F for ; Sun, 15 Aug 2004 01:10:57 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from [192.168.1.100] ([68.161.136.200]) by out014.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040815011056.OOBY24490.out014.verizon.net@[192.168.1.100]>; Sat, 14 Aug 2004 20:10:56 -0500 Message-ID: <411EB81C.9020800@mac.com> Date: Sat, 14 Aug 2004 21:10:52 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Malcolm Kay References: <200408141740.58105.malcolm.kay@internode.on.net> <20040814142349.GA884@alex.lan> <44fz6p4w8u.fsf@be-well.ilk.org> <200408150948.12920.malcolm.kay@internode.on.net> In-Reply-To: <200408150948.12920.malcolm.kay@internode.on.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out014.verizon.net from [68.161.136.200] at Sat, 14 Aug 2004 20:10:56 -0500 cc: freebsd-questions@freebsd.org Subject: Re: Fetchmail/Sendmail rejects X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 01:10:57 -0000 Malcolm Kay wrote: [ ... ] > Thanks guys for the responses -- this really looks the way to go. > > Does anyone know how sendmail distinguishes between: > reject=451 4.1.8 Domain of sender address ................ does not resolve > reject=553 5.1.8 .......... Domain of sender address .............. does not exist > It seems the former is to be interpreted as a 'temporary' condition while the latter > is to be interpreted as 'permanent' (and is by default deleted by fetchmail)? Sendmail pays attention to the return value from doing DNS queries. If sendmail receives an NXDOMAIN response, it treats that as a permanent, 5xx failure code. If sendmail gets a timeout/TRY_AGAIN, it will return a 4xx temp failure. It's not clear to me why this would matter if your ISP is the one running the mailserver: they aren't accepting the message in either case, which ought to mean that fetchmail will never see it. -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 01:23:34 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAB0916A4CE for ; Sun, 15 Aug 2004 01:23:34 +0000 (GMT) Received: from ms-smtp-04-eri0.southeast.rr.com (ms-smtp-04-lbl.southeast.rr.com [24.25.9.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 534CB43D31 for ; Sun, 15 Aug 2004 01:23:34 +0000 (GMT) (envelope-from jason@ec.rr.com) Received: from [192.168.1.101] (cpe-024-211-230-171.ec.rr.com [24.211.230.171])i7F1NSSG021899; Sat, 14 Aug 2004 21:23:28 -0400 (EDT) Message-ID: <411EBD4F.9070904@ec.rr.com> Date: Sat, 14 Aug 2004 21:33:03 -0400 From: jason User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040808) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Will References: <411BEC66.5060602@crime.ctf.edu> <411C0FD1.1080303@ec.rr.com> <411C14C4.9030807@crime.ctf.edu> In-Reply-To: <411C14C4.9030807@crime.ctf.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine cc: freebsd-questions@freebsd.org Subject: Re: Problems with Firefox Package X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 01:23:35 -0000 Will wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > jason wrote: > | I had no problem recompiling firefox on my machince, I'm running > | current. What command did you use? It sounds like you might have > | version conflicts due to not cleaning before recompiling. Try make > | clean && make reinstall. > When I had 0.91 installed and saw that a newer version was out I did > portupgrade firefox, but the build failed so it did'nt touch my > installed version so I left it as is and decided I'd wait for a binary > release of it. When the binary came I went to the port and did a make > deinstall, than pkg_add firefox.tgz. Everything in theory should be > cleaned up cause of the make deinstall, but perhaps I need to update my > entire set of libs. I'll probably try and get portupgrade todo all my > packages and retry it. > > > - -- > Do yourself a favor, don't use IE! > www.mozilla.org/products/firefox/ > > PGP is Preferable for Email, Public > key available off PGP Key Server. > GPG Key ID: 0x787AD6A9 > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.2.5 (FreeBSD) > Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org > > iQCVAwUBQRwUwQx4IHh4etapAQIVcgP/eOrd4ddQFEP96jb+XhF/aMAf8r9usVz/ > PHIkTJmpJz1MuRry7a9IhjDcyHM4SJxggJVgPcfOUF0DKCgUTqS6mivjMBQG3lyG > iI06TrkRhYrhcn1p/ICEii6upF55uh8pCJAluLcvqM5wBZKHuIik9TbVSuCJPGqQ > EjDf09x7fuE= > =oHFz > -----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" > Just as a last thought, did you run firefox as root before you used it after the upgrade? From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 01:40:01 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C634316A4CE for ; Sun, 15 Aug 2004 01:40:01 +0000 (GMT) Received: from grover.logicsquad.net (ppp52-132.lns1.adl2.internode.on.net [150.101.52.132]) by mx1.FreeBSD.org (Postfix) with SMTP id 36EB143D39 for ; Sun, 15 Aug 2004 01:39:58 +0000 (GMT) (envelope-from paulh@logicsquad.net) Received: (qmail 47966 invoked by uid 1000); 15 Aug 2004 01:39:55 -0000 Date: Sun, 15 Aug 2004 11:09:55 +0930 From: "Paul A. Hoadley" To: freebsd-questions@freebsd.org Message-ID: <20040815013954.GC25751@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040814233234.GA56333@falcon.midgard.homeip.net> User-Agent: Mutt/1.4.2.1i Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 01:40:01 -0000 On Sun, Aug 15, 2004 at 01:32:35AM +0200, Erik Trulsson wrote: > You seem to have missed the fact that operations on very large > directories (which a directory with 400K files in it certainly > qualifies as) simply are slow. Good point. I had overlooked that. > Reducing the number of processes spawned will certainly help some, > but a better idea is to not have so many files in a single directory > - that is just asking for trouble. I'm not sure that I can make qmail do anything else. These are spams sent to non-existent addresses at my domain, being caught by .qmail-default. What I am going to do is clear out the Maildir daily instead of monthly, though. Collecting them has become a significant drain on disk space---the 400K spams are the result of about a month and a half of collection. -- Paul. w http://logicsquad.net/ h http://paul.hoadley.name/ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 01:43:16 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E51416A4CE for ; Sun, 15 Aug 2004 01:43:16 +0000 (GMT) Received: from grover.logicsquad.net (ppp52-132.lns1.adl2.internode.on.net [150.101.52.132]) by mx1.FreeBSD.org (Postfix) with SMTP id 1ADB543D1F for ; Sun, 15 Aug 2004 01:43:15 +0000 (GMT) (envelope-from paulh@logicsquad.net) Received: (qmail 48801 invoked by uid 1000); 15 Aug 2004 01:43:14 -0000 Date: Sun, 15 Aug 2004 11:13:13 +0930 From: "Paul A. Hoadley" To: freebsd-questions@freebsd.org Message-ID: <20040815014313.GD25751@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233933.GA14322@happy-idiot-talk.infracaninophile.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040814233933.GA14322@happy-idiot-talk.infracaninophile.co.uk> User-Agent: Mutt/1.4.2.1i Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 01:43:16 -0000 On Sun, Aug 15, 2004 at 12:39:33AM +0100, Matthew Seaman wrote: > find . -atime +1 -print0 | xargs -0 -J % mv % /home/paulh/tmp/spam/sne/ > > xargs defaults to taking up to 5,000 arguments from it's stdin to > generate the mv commands (or up to ARG_MAX - 4096 = 61440 bytes), so > that would have done the job with only 8 or so invocations of mv. Thanks for that. -- Paul. w http://logicsquad.net/ h http://paul.hoadley.name/ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 01:50:20 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2A5B16A4CE for ; Sun, 15 Aug 2004 01:50:20 +0000 (GMT) Received: from grover.logicsquad.net (ppp52-132.lns1.adl2.internode.on.net [150.101.52.132]) by mx1.FreeBSD.org (Postfix) with SMTP id 1648D43D3F for ; Sun, 15 Aug 2004 01:50:19 +0000 (GMT) (envelope-from paulh@logicsquad.net) Received: (qmail 50218 invoked by uid 1000); 15 Aug 2004 01:50:16 -0000 Date: Sun, 15 Aug 2004 11:20:15 +0930 From: "Paul A. Hoadley" To: freebsd-questions@freebsd.org Message-ID: <20040815015015.GE25751@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XF85m9dhOBO43t/C" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 01:50:20 -0000 --XF85m9dhOBO43t/C Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Aug 14, 2004 at 08:11:54PM -0400, Garance A Drosihn wrote: > Where is '.' in the above `find .' command? Is it is on the same > partition as /home/paulh/tmp/spam/sne/ ? >=20 > You may find it much faster to do something like: > mkdir usermail.new > chown user:group usermail.new > mv usermail usermail.bigspam > mv usermail.new usermail > cd usermail.bigspam > find . \! -atime +1 -exec mv {} ../usermail \; >=20 > My assumption there is that you have a LOT fewer "good files" than > you have "bad files", so there will be fewer files to move. But I > am also making the assumption that all your files are in a single > directory (and not a tree of directories), which may be a bad > assumption. All assumptions correct, and that is what I should have done. > The thing to use is the '-J' option of xargs. That way you can have > the destination-directory be the last argument in the command that > gets executed, and yet you're still moving as many files in a single > `mv' command as possible. E.g., change my earlier `find' command > to: > find . \! -atime +1 -print0 | xargs -0J[] mv [] ../usermail >=20 > Check the man page for xargs for a description of -J Will do. Thanks for the tip. --=20 Paul. w http://logicsquad.net/ h http://paul.hoadley.name/ --XF85m9dhOBO43t/C Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBHsFX730Z/jysbzIRAhf9AJ9c+xFx8hpV2yks6i28uu7AM3qpUQCfYKST 6V9dSCf60l+Z45pISI6KfSY= =xCoq -----END PGP SIGNATURE----- --XF85m9dhOBO43t/C-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 01:56:38 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5426816A4CE for ; Sun, 15 Aug 2004 01:56:38 +0000 (GMT) Received: from smtp3.adl2.internode.on.net (smtp3.adl2.internode.on.net [203.16.214.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFD6543D2F for ; Sun, 15 Aug 2004 01:56:37 +0000 (GMT) (envelope-from malcolm.kay@internode.on.net) Received: from beta.home (ppp137-206.lns1.adl2.internode.on.net [150.101.137.206])i7F1uZHY061091; Sun, 15 Aug 2004 11:26:35 +0930 (CST) From: Malcolm Kay Organization: at home To: Chuck Swiger Date: Sun, 15 Aug 2004 11:26:35 +0930 User-Agent: KMail/1.5.4 References: <200408141740.58105.malcolm.kay@internode.on.net> <200408150948.12920.malcolm.kay@internode.on.net> <411EB81C.9020800@mac.com> In-Reply-To: <411EB81C.9020800@mac.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200408151126.35154.malcolm.kay@internode.on.net> cc: freebsd-questions@freebsd.org Subject: Re: Fetchmail/Sendmail rejects X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 01:56:38 -0000 On Sunday 15 August 2004 10:40, Chuck Swiger wrote: > Malcolm Kay wrote: > [ ... ] > > > Thanks guys for the responses -- this really looks the way to go. > > > > Does anyone know how sendmail distinguishes between: > > reject=451 4.1.8 Domain of sender address ................ does not > > resolve reject=553 5.1.8 .......... Domain of sender address > > .............. does not exist It seems the former is to be interpreted as > > a 'temporary' condition while the latter is to be interpreted as > > 'permanent' (and is by default deleted by fetchmail)? > > Sendmail pays attention to the return value from doing DNS queries. If > sendmail receives an NXDOMAIN response, it treats that as a permanent, 5xx > failure code. If sendmail gets a timeout/TRY_AGAIN, it will return a 4xx > temp failure. > This sort of takes us back one more level -- how does the DNS service decide between responding with NXDOMAIN and a timeout/TRY_AGAIN? And does the difference have any real significance? > It's not clear to me why this would matter if your ISP is the one running > the mailserver: they aren't accepting the message in either case, which > ought to mean that fetchmail will never see it. None of it is particularly clear to me -- but apparently my ISP's server is not rejecting these messages. If all mail servers rejected these messages it would seem to me to make the spammers endeavours rather pointless. Thanks, Malcolm From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 02:03:28 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BE1A16A4CE for ; Sun, 15 Aug 2004 02:03:28 +0000 (GMT) Received: from lakermmtao03.cox.net (lakermmtao03.cox.net [68.230.240.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAD4143D1D for ; Sun, 15 Aug 2004 02:03:27 +0000 (GMT) (envelope-from jacoulter@jacoulter.net) Received: from [68.105.58.150] by lakermmtao03.cox.net (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709) with SMTP id <20040815020325.ZKYD12724.lakermmtao03.cox.net@[68.105.58.150]>; Sat, 14 Aug 2004 22:03:25 -0400 Received: by _HOSTNAME_ (sSMTP sendmail emulation); Sat, 14 Aug 2004 21:03:09 -0500 From: "James A. Coulter" Date: Sat, 14 Aug 2004 21:03:09 -0500 To: Alex de Kruijff Message-ID: <20040815020309.GA1579@sara.mshome.net> Mail-Followup-To: Alex de Kruijff , freebsd-questions@freebsd.org References: <20040812004647.GA13990@sara.mshome.net> <20040814143958.GC884@alex.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040814143958.GC884@alex.lan> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: Security log question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 02:03:28 -0000 On Sat, Aug 14, 2004 at 04:39:58PM +0200, Alex de Kruijff wrote: > On Wed, Aug 11, 2004 at 07:46:47PM -0500, James A. Coulter wrote: > > This message has been showing up in /var/log/security: > > > > Aug 6 01:56:44 sara /kernel: drop session, too many entries > > Aug 6 16:40:05 sara /kernel: drop session, too many entries > > Aug 7 13:25:23 sara /kernel: drop session, too many entries > > Aug 7 15:32:00 sara /kernel: drop session, too many entries > > Aug 7 15:32:03 sara last message repeated 3 times > > Aug 8 22:30:53 sara /kernel: drop session, too many entries > > Aug 10 19:47:31 sara /kernel: drop session, too many entries > > Aug 11 11:11:46 sara /kernel: drop session, too many entries > > Aug 11 13:08:15 sara /kernel: drop session, too many entries > > Aug 11 13:10:26 sara last message repeated 12 times > > Aug 11 13:20:34 sara last message repeated 55 times > > Aug 11 13:30:00 sara last message repeated 66 times > > Aug 11 16:49:26 sara /kernel: drop session, too many entries > > Aug 11 16:49:58 sara last message repeated 5 times > > Aug 11 16:52:04 sara last message repeated 20 times > > Aug 11 17:02:01 sara last message repeated 93 times > > Aug 11 17:18:01 sara /kernel: drop session, too many entries > > Aug 11 17:23:03 sara /kernel: drop session, too many entries > > > > I'm running FreeBSD 4.10 with IPFW and NAT as a gateway/router/firewall for a home LAN. I am the only user (I hope!) with access to this system. > > > > I googled the "drop session" message and found e-mail correspondence indicating this message is a result of having too many telnet or ssh sessions open at the same time and could be an indication of a DOS attack. > > > > I have disabled telnet in inetd.conf. I am running ftp with anonymous log-in disabled and ssh with root login disabled. I am also running apache 1.3. > > > > Is this message something I should investigate further, or is it like the script kiddies who scan my ports every night - just something to live with? > > Yes, but I don't think you are likly at risk to have someone bracking in > on you system. You're server proberbly just handle the traffic nicly. > You need to investigate further to find out what is causing this and > what you can do about it. > > P.S. I notices you have very lone lines in you'r mail and use mutt. > Whould you consider adding the following line to .muttrc (and install > vim) so that this is automaticly wraped at 72 char? > > set editor="vim +':set tw=72' +':set ww=<,>,h,l,[,]' %s" > > > -- > Alex Alex - thanks for the response and for the .muttrc tip. I added it and hopefully my mail will now wrap at 72 characters. Jim From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 02:04:37 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6379A16A4CE for ; Sun, 15 Aug 2004 02:04:37 +0000 (GMT) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B33F43D31 for ; Sun, 15 Aug 2004 02:04:37 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.11/8.12.11) id i7F24Wo9009444; Sat, 14 Aug 2004 21:04:32 -0500 (CDT) (envelope-from dan) Date: Sat, 14 Aug 2004 21:04:32 -0500 From: Dan Nelson To: Malcolm Kay Message-ID: <20040815020431.GC73391@dan.emsphone.com> References: <200408141740.58105.malcolm.kay@internode.on.net> <200408150948.12920.malcolm.kay@internode.on.net> <411EB81C.9020800@mac.com> <200408151126.35154.malcolm.kay@internode.on.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408151126.35154.malcolm.kay@internode.on.net> X-OS: FreeBSD 5.2-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.6i cc: freebsd-questions@freebsd.org Subject: Re: Fetchmail/Sendmail rejects X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 02:04:37 -0000 In the last episode (Aug 15), Malcolm Kay said: > This sort of takes us back one more level -- how does the DNS service decide > between responding with NXDOMAIN and a timeout/TRY_AGAIN? And does the > difference have any real significance? NXDOMAIN means that a server replied "this domain does not exist", and usually indicates a forged or mistyped domain. A timeout is just that. No authoritative servers replied, at all. This is usually due to misconfiguration or server failure at the domain in question, and mailers should retry the lookup later. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 02:07:39 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6C0216A4CE for ; Sun, 15 Aug 2004 02:07:39 +0000 (GMT) Received: from smtp3.adl2.internode.on.net (smtp3.adl2.internode.on.net [203.16.214.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C65D43D2F for ; Sun, 15 Aug 2004 02:07:37 +0000 (GMT) (envelope-from malcolm.kay@internode.on.net) Received: from beta.home (ppp137-206.lns1.adl2.internode.on.net [150.101.137.206])i7F27ZHY063496; Sun, 15 Aug 2004 11:37:35 +0930 (CST) From: Malcolm Kay Organization: at home To: Chuck Swiger Date: Sun, 15 Aug 2004 11:37:35 +0930 User-Agent: KMail/1.5.4 References: <200408141740.58105.malcolm.kay@internode.on.net> <411EB81C.9020800@mac.com> <200408151126.35154.malcolm.kay@internode.on.net> In-Reply-To: <200408151126.35154.malcolm.kay@internode.on.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200408151137.35043.malcolm.kay@internode.on.net> cc: freebsd-questions@freebsd.org Subject: Re: Fetchmail/Sendmail rejects X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 02:07:40 -0000 On Sunday 15 August 2004 11:26, Malcolm Kay wrote: > On Sunday 15 August 2004 10:40, Chuck Swiger wrote: > > Malcolm Kay wrote: > > [ ... ] > > > > > Thanks guys for the responses -- this really looks the way to go. > > > > > > Does anyone know how sendmail distinguishes between: > > > reject=451 4.1.8 Domain of sender address ................ does not > > > resolve reject=553 5.1.8 .......... Domain of sender address > > > .............. does not exist It seems the former is to be interpreted > > > as a 'temporary' condition while the latter is to be interpreted as > > > 'permanent' (and is by default deleted by fetchmail)? > > > > Sendmail pays attention to the return value from doing DNS queries. If > > sendmail receives an NXDOMAIN response, it treats that as a permanent, > > 5xx failure code. If sendmail gets a timeout/TRY_AGAIN, it will return a > > 4xx temp failure. > > This sort of takes us back one more level -- how does the DNS service > decide between responding with NXDOMAIN and a timeout/TRY_AGAIN? And does > the difference have any real significance? > > > It's not clear to me why this would matter if your ISP is the one running > > the mailserver: they aren't accepting the message in either case, which > > ought to mean that fetchmail will never see it. > > None of it is particularly clear to me -- but apparently my ISP's server is > not rejecting these messages. > > If all mail servers rejected these messages it would seem to me to make the > spammers endeavours rather pointless. > Perhaps I've not made it clear that the above reject messages appear in the maillog on my local machine as a consequnce of fetchmail reposting the messages to local sendmail. Malcolm From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 02:13:35 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65FD516A4CE for ; Sun, 15 Aug 2004 02:13:35 +0000 (GMT) Received: from mygirlfriday.info (mo-65-41-216-204.sta.sprint-hsd.net [65.41.216.204]) by mx1.FreeBSD.org (Postfix) with SMTP id 9714643D54 for ; Sun, 15 Aug 2004 02:13:34 +0000 (GMT) (envelope-from gv-list-freebsdquestions@mygirlfriday.info) Received: (qmail 46632 invoked from network); 15 Aug 2004 02:13:33 -0000 Received: from unknown (HELO mork) (192.168.0.4) by mongo.mygirlfriday.info with SMTP; 15 Aug 2004 02:13:33 -0000 Date: Sat, 14 Aug 2004 21:13:32 -0500 From: Gary Organization: Hardly X-Priority: 3 (Normal) Message-ID: <893994951.20040814211332@mygirlfriday.info> To: "Paul A. Hoadley" In-Reply-To: <20040815013954.GC25751@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re[2]: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 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, 15 Aug 2004 02:13:35 -0000 Hi Paul, On Sun, 15 Aug 2004 11:09:55 +0930 UTC (8/14/2004, 8:39 PM -0500 UTC my time), Paul A. Hoadley trunco scripsit: >> Reducing the number of processes spawned will certainly help some, >> but a better idea is to not have so many files in a single directory >> - that is just asking for trouble. P> I'm not sure that I can make qmail do anything else. These are spams P> sent to non-existent addresses at my domain, being caught by P> .qmail-default. Question... why do you have a .qmail-default file to begin with? If you have proper namespace or .qmail- files for your users, it is not necessary at all... all would then be bounced. Or if you wish just to drop mail coming in to .qmail-default, just put a # in it... P> What I am going to do is clear out the Maildir daily P> instead of monthly, though. Collecting them has become a significant P> drain on disk space---the 400K spams are the result of about a month P> and a half of collection. I would never think of collecting them at all, not even allow them in. There are several techniques just to block them at SMTP negotiation all together, so they don't even enter your system... -- Gary From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 02:17:58 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4346416A4CE for ; Sun, 15 Aug 2004 02:17:58 +0000 (GMT) Received: from out008.verizon.net (out008pub.verizon.net [206.46.170.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBE5E43D3F for ; Sun, 15 Aug 2004 02:17:57 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from [192.168.1.100] ([68.161.136.200]) by out008.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040815021757.EANK8960.out008.verizon.net@[192.168.1.100]>; Sat, 14 Aug 2004 21:17:57 -0500 Message-ID: <411EC7D2.7050903@mac.com> Date: Sat, 14 Aug 2004 22:17:54 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Malcolm Kay References: <200408141740.58105.malcolm.kay@internode.on.net> <200408150948.12920.malcolm.kay@internode.on.net> <411EB81C.9020800@mac.com> <200408151126.35154.malcolm.kay@internode.on.net> In-Reply-To: <200408151126.35154.malcolm.kay@internode.on.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out008.verizon.net from [68.161.136.200] at Sat, 14 Aug 2004 21:17:56 -0500 cc: freebsd-questions@freebsd.org Subject: Re: Fetchmail/Sendmail rejects X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 02:17:58 -0000 Malcolm Kay wrote: > On Sunday 15 August 2004 10:40, Chuck Swiger wrote: [ ... ] >> Sendmail pays attention to the return value from doing DNS queries. If >> sendmail receives an NXDOMAIN response, it treats that as a permanent, 5xx >> failure code. If sendmail gets a timeout/TRY_AGAIN, it will return a 4xx >> temp failure. > > This sort of takes us back one more level -- how does the DNS service decide > between responding with NXDOMAIN and a timeout/TRY_AGAIN? Dan provided a good answer to this. > And does the difference have any real significance? The real significance is that a 5xx response means the other side should give up and never attempt to redeliver that message. A 4xx response means the other MTA will keep retrying for several days. You want to reject spam permanently, and you want to do it as close to the source as possible. Meaning, you don't want to accept the message for relaying to some other machine, then have that other machine reject the message, because then your machine becomes responsible for generating a bounce. Which then clogs up your machine when bounces for spam are not deliverable. >> It's not clear to me why this would matter if your ISP is the one running >> the mailserver: they aren't accepting the message in either case, which >> ought to mean that fetchmail will never see it. > > None of it is particularly clear to me -- but apparently my ISP's server is > not rejecting these messages. You should forward the log messages you showed us to your ISP, and ask them what's going on. Their mailservers should be rejecting the messages for the same reason your mailserver does. [ Hmm, I suppose it could also indicate that you have problems with your local DNS resolver, if you are getting lots of temp failures your ISP isn't. Unlikely, though, but you could test by switching to using their nameservers if you aren't doing so already. ] > If all mail servers rejected these messages it would seem to me to make the > spammers endeavours rather pointless. Spammers forge mail from legitimate addresses as well, but it certainly helps to reject mail from invalid domains. -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 02:27:34 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27BEA16A4CE for ; Sun, 15 Aug 2004 02:27:34 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD92C43D41 for ; Sun, 15 Aug 2004 02:27:31 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id EAD4C69A71; Sat, 14 Aug 2004 22:27:30 -0400 (EDT) Date: Sat, 14 Aug 2004 22:27:29 -0400 From: Bill Moran To: freebsd-questions@freebsd.org Message-Id: <20040814222729.7ae19e59.wmoran@potentialtech.com> In-Reply-To: <893994951.20040814211332@mygirlfriday.info> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: gv-list-freebsdquestions@mygirlfriday.info Subject: Re: Re[2]: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 02:27:34 -0000 Gary wrote: > Hi Paul, > > On Sun, 15 Aug 2004 11:09:55 +0930 UTC (8/14/2004, 8:39 PM -0500 UTC my > time), Paul A. Hoadley trunco scripsit: > > >> Reducing the number of processes spawned will certainly help some, > >> but a better idea is to not have so many files in a single directory > >> - that is just asking for trouble. > > P> I'm not sure that I can make qmail do anything else. These are spams > P> sent to non-existent addresses at my domain, being caught by > P> .qmail-default. > > Question... why do you have a .qmail-default file to begin with? If you have > proper namespace or .qmail- files for your users, it is not necessary at > all... all would then be bounced. Or if you wish just to drop mail coming in > to .qmail-default, just put a # in it... > > P> What I am going to do is clear out the Maildir daily > P> instead of monthly, though. Collecting them has become a significant > P> drain on disk space---the 400K spams are the result of about a month > P> and a half of collection. > > I would never think of collecting them at all, not even allow them in. There > are several techniques just to block them at SMTP negotiation all together, > so they don't even enter your system... I have to second this. You should never accept email destin for users that don't exist, you should bounce it with a 5xx error prior to even accepting the data portion of the SMTP transmission. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 03:00:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F67716A4CE for ; Sun, 15 Aug 2004 03:00:05 +0000 (GMT) Received: from grover.logicsquad.net (ppp52-132.lns1.adl2.internode.on.net [150.101.52.132]) by mx1.FreeBSD.org (Postfix) with SMTP id E42C643D46 for ; Sun, 15 Aug 2004 03:00:03 +0000 (GMT) (envelope-from paulh@logicsquad.net) Received: (qmail 61800 invoked by uid 1000); 15 Aug 2004 03:00:01 -0000 Date: Sun, 15 Aug 2004 12:30:01 +0930 From: "Paul A. Hoadley" To: freebsd-questions@freebsd.org Message-ID: <20040815030001.GF25751@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Pk6IbRAofICFmK5e" Content-Disposition: inline In-Reply-To: <893994951.20040814211332@mygirlfriday.info> User-Agent: Mutt/1.4.2.1i Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 03:00:05 -0000 --Pk6IbRAofICFmK5e Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, On Sat, Aug 14, 2004 at 09:13:32PM -0500, Gary wrote: > P> I'm not sure that I can make qmail do anything else. These are spams > P> sent to non-existent addresses at my domain, being caught by > P> .qmail-default. >=20 > Question... why do you have a .qmail-default file to begin with? If > you have proper namespace or .qmail- files for your users, it is not > necessary at all... all would then be bounced. Or if you wish just > to drop mail coming in to .qmail-default, just put a # in it... Good question---without context, my claim that I can do nothing else seems wrong. What I should have said is "given I have an interest in collecting all the spams to non-existent addresses, I don't think I can make qmail do anything other than deliver it to the new/ subdir of a Maildir." The original problem was that _bouncing_ these messages is fruitless---they almost invariably have a forged From address. I'm getting on average about 10,000 of them per day, so there were constantly several thousand messages in my queue, as well as several thousand bounced bounces and failures in my postmaster mailbox every day. IMHO, these messages should be _rejected_ at the SMTP session, though (AFAICS) qmail won't do this (without being patched). (I am sure I once read a "security" justification for this behaviour, though I can't seem to find any justification for it at all now. I am willing to be convinced otherwise, but IMHO, accepting these messages is bogus behaviour.) Anyway, I was about to embark on tracking down a patch to do SMTP-level rejection, when I decided I would just funnel them into a Maildir and use them later to train Bogofilter, or whatever. > P> What I am going to do is clear out the Maildir daily > P> instead of monthly, though. Collecting them has become a significant > P> drain on disk space---the 400K spams are the result of about a month > P> and a half of collection. >=20 > I would never think of collecting them at all, not even allow them > in. I may soon change my mind, though my original plan was to put the spam to use. The sheer volume looks like making that plan unworkable. :-) > There are several techniques just to block them at SMTP negotiation > all together, so they don't even enter your system... Techniques for qmail? Without patching it? I thought I had RTFMd pretty thoroughly, but I am willing to be enlightened. --=20 Paul. w http://logicsquad.net/ h http://paul.hoadley.name/ --Pk6IbRAofICFmK5e Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBHtGw730Z/jysbzIRAhisAJ0Qn8h0QdF5AC6kp2702wcNDv7YTQCeLJHS vpvC1gUCWnINV+u64Gqc9SA= =DYDL -----END PGP SIGNATURE----- --Pk6IbRAofICFmK5e-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 03:01:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FA5616A4CE for ; Sun, 15 Aug 2004 03:01:48 +0000 (GMT) Received: from web61305.mail.yahoo.com (web61305.mail.yahoo.com [216.155.196.148]) by mx1.FreeBSD.org (Postfix) with SMTP id 0CA5743D31 for ; Sun, 15 Aug 2004 03:01:48 +0000 (GMT) (envelope-from stheg_olloydson@yahoo.com) Message-ID: <20040815030147.95552.qmail@web61305.mail.yahoo.com> Received: from [67.34.130.149] by web61305.mail.yahoo.com via HTTP; Sat, 14 Aug 2004 20:01:47 PDT Date: Sat, 14 Aug 2004 20:01:47 -0700 (PDT) From: stheg olloydson To: paulh@logicsquad.net MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: questions@freebsd.org Subject: [OT] Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 03:01:48 -0000 it was said: >I'm not sure that I can make qmail do anything else. These are spams >sent to non-existent addresses at my domain, being caught by >.qmail-default. What I am going to do is clear out the Maildir daily >instead of monthly, though. Collecting them has become a significant >drain on disk space---the 400K spams are the result of about a month >and a half of collection. Hello, What I would do is avoid the problem in the first place by not having a .qmail-default. I don't know how important being sure you have no false positive spam rejections to incorrect/misspelled addresses is to you, but is it worth accepting hundreds of thousands of spams and then looking through them to find the very few that may be legitimate? I think you would be better off creating variations in the users' .qmail file, such as paul.hoadley@, phoadley@, paul.h@. That could been done via a script that gets called when you create a user, so the only extra work would be to write script the first time and plugging it in. (Of course, you would have to run it against your existing users, too.) As I said, I don't know what your requirements are, just my 2% of the applicable currency's base unit. HTH, Stheg __________________________________ Do you Yahoo!? Yahoo! Mail - Helps protect you from nasty viruses. http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 03:02:20 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71AB016A4CE for ; Sun, 15 Aug 2004 03:02:20 +0000 (GMT) Received: from grover.logicsquad.net (ppp52-132.lns1.adl2.internode.on.net [150.101.52.132]) by mx1.FreeBSD.org (Postfix) with SMTP id 87A6743D54 for ; Sun, 15 Aug 2004 03:02:18 +0000 (GMT) (envelope-from paulh@logicsquad.net) Received: (qmail 62408 invoked by uid 1000); 15 Aug 2004 03:02:06 -0000 Date: Sun, 15 Aug 2004 12:32:06 +0930 From: "Paul A. Hoadley" To: Bill Moran Message-ID: <20040815030205.GG25751@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> <20040814222729.7ae19e59.wmoran@potentialtech.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vni90+aGYgRvsTuO" Content-Disposition: inline In-Reply-To: <20040814222729.7ae19e59.wmoran@potentialtech.com> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: Re[2]: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 03:02:20 -0000 --vni90+aGYgRvsTuO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Aug 14, 2004 at 10:27:29PM -0400, Bill Moran wrote: > I have to second this. You should never accept email destin for > users that don't exist, you should bounce it with a 5xx error prior > to even accepting the data portion of the SMTP transmission. I agree completely. I can't see how to make qmail do this, though---have I overlooked something? --=20 Paul. w http://logicsquad.net/ h http://paul.hoadley.name/ --vni90+aGYgRvsTuO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBHtIt730Z/jysbzIRAvwcAJ9yTlQ/usnMrBNbGHG9qWdEfjIbzACeOEeW nFG3oAzGtDq+LZQrubVBG8s= =jyal -----END PGP SIGNATURE----- --vni90+aGYgRvsTuO-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 03:07:54 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8B1516A4CF for ; Sun, 15 Aug 2004 03:07:54 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7610443D1F for ; Sun, 15 Aug 2004 03:07:54 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 3F53269A71; Sat, 14 Aug 2004 23:07:51 -0400 (EDT) Date: Sat, 14 Aug 2004 23:07:48 -0400 From: Bill Moran To: "Paul A. Hoadley" Message-Id: <20040814230748.2704c47f.wmoran@potentialtech.com> In-Reply-To: <20040815030001.GF25751@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> <20040815030001.GF25751@grover.logicsquad.net> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 03:07:55 -0000 "Paul A. Hoadley" wrote: > Hello, > > On Sat, Aug 14, 2004 at 09:13:32PM -0500, Gary wrote: > > > P> I'm not sure that I can make qmail do anything else. These are spams > > P> sent to non-existent addresses at my domain, being caught by > > P> .qmail-default. > > > > Question... why do you have a .qmail-default file to begin with? If > > you have proper namespace or .qmail- files for your users, it is not > > necessary at all... all would then be bounced. Or if you wish just > > to drop mail coming in to .qmail-default, just put a # in it... > > Good question---without context, my claim that I can do nothing else > seems wrong. What I should have said is "given I have an interest in > collecting all the spams to non-existent addresses, I don't think I > can make qmail do anything other than deliver it to the new/ subdir of > a Maildir." > > The original problem was that _bouncing_ these messages is > fruitless---they almost invariably have a forged From address. I'm > getting on average about 10,000 of them per day, so there were > constantly several thousand messages in my queue, as well as several > thousand bounced bounces and failures in my postmaster mailbox every > day. > > IMHO, these messages should be _rejected_ at the SMTP session, though > (AFAICS) qmail won't do this (without being patched). (I am sure I > once read a "security" justification for this behaviour, though I > can't seem to find any justification for it at all now. I am willing > to be convinced otherwise, but IMHO, accepting these messages is bogus > behaviour.) I agree. > Anyway, I was about to embark on tracking down a patch to > do SMTP-level rejection, when I decided I would just funnel them into > a Maildir and use them later to train Bogofilter, or whatever. Well, if you do have a reason to keep them, as example spams for a Bayes filter, for example, then I can't say otherwise. I'm surprised that qmail doesn't allow you to reject these properly, but I haven't been using qmail for a while now, so I don't remember. I've switched to Postfix, as this is pretty easy to set up in Postfix. I think the default config file for Postfix is set up this way as it is. I hope you find a better solution. Good luck. > > P> What I am going to do is clear out the Maildir daily > > P> instead of monthly, though. Collecting them has become a significant > > P> drain on disk space---the 400K spams are the result of about a month > > P> and a half of collection. > > > > I would never think of collecting them at all, not even allow them > > in. > > I may soon change my mind, though my original plan was to put the spam > to use. The sheer volume looks like making that plan unworkable. :-) > > > There are several techniques just to block them at SMTP negotiation > > all together, so they don't even enter your system... > > Techniques for qmail? Without patching it? I thought I had RTFMd > pretty thoroughly, but I am willing to be enlightened. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 03:09:02 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7840316A4CE for ; Sun, 15 Aug 2004 03:09:02 +0000 (GMT) Received: from grover.logicsquad.net (ppp52-132.lns1.adl2.internode.on.net [150.101.52.132]) by mx1.FreeBSD.org (Postfix) with SMTP id A2DD743D31 for ; Sun, 15 Aug 2004 03:09:00 +0000 (GMT) (envelope-from paulh@logicsquad.net) Received: (qmail 63668 invoked by uid 1000); 15 Aug 2004 03:08:57 -0000 Date: Sun, 15 Aug 2004 12:38:57 +0930 From: "Paul A. Hoadley" To: stheg olloydson Message-ID: <20040815030856.GH25751@grover.logicsquad.net> References: <20040815030147.95552.qmail@web61305.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ey/N+yb7u/X9mFhi" Content-Disposition: inline In-Reply-To: <20040815030147.95552.qmail@web61305.mail.yahoo.com> User-Agent: Mutt/1.4.2.1i cc: questions@freebsd.org Subject: Re: [OT] Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 03:09:02 -0000 --ey/N+yb7u/X9mFhi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, On Sat, Aug 14, 2004 at 08:01:47PM -0700, stheg olloydson wrote: > What I would do is avoid the problem in the first place by not > having a .qmail-default. Without a .qmail-default, qmail's default behaviour is to _accept_ the message and then _bounce_ it. IMHO, this is _worse_ than (a) saving the spam (which (I had hoped!) might be useful in other contexts), or (b) piping it to the bit bucket. Both (a) and (b) require a =2Eqmail-default. Have I overlooked something really obvious here? Is there a way (preferably without patching it) to get qmail to _reject_ the mail sent to non-existent addresses? --=20 Paul. w http://logicsquad.net/ h http://paul.hoadley.name/ --ey/N+yb7u/X9mFhi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBHtPI730Z/jysbzIRArTFAJ0XbQzQTe7/b6NWHwZTuAGarle/IgCfegOV Q52D+dY8ZqPkygjCdN5KwhU= =akan -----END PGP SIGNATURE----- --ey/N+yb7u/X9mFhi-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 03:25:49 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCB4016A4CE for ; Sun, 15 Aug 2004 03:25:48 +0000 (GMT) Received: from mygirlfriday.info (mo-65-41-216-204.sta.sprint-hsd.net [65.41.216.204]) by mx1.FreeBSD.org (Postfix) with SMTP id 4137643D1F for ; Sun, 15 Aug 2004 03:25:48 +0000 (GMT) (envelope-from gv-list-freebsdquestions@mygirlfriday.info) Received: (qmail 47042 invoked from network); 15 Aug 2004 03:25:46 -0000 Received: from unknown (HELO mygirlfriday.info) (192.168.0.5) by mongo.mygirlfriday.info with SMTP; 15 Aug 2004 03:25:46 -0000 Received: (qmail 4773 invoked by uid 500); 15 Aug 2004 03:25:46 -0000 Message-ID: <20040815032546.4772.qmail@letric.mygirlfriday.info> Date: Sat, 14 Aug 2004 22:25:46 -0500 From: Gary To: freebsd-questions@freebsd.org Mail-Followup-To: freebsd-questions@freebsd.org References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> <20040815030001.GF25751@grover.logicsquad.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040815030001.GF25751@grover.logicsquad.net> Organization: Hardly User-Agent: Mutt/1.5.4i Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 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, 15 Aug 2004 03:25:49 -0000 On Sun, Aug 15, 2004 at 12:30:01PM +0930 or thereabouts, Paul A. Hoadley wrote: > Hello, > > On Sat, Aug 14, 2004 at 09:13:32PM -0500, Gary wrote: > > P> I'm not sure that I can make qmail do anything else. These are spams > > P> sent to non-existent addresses at my domain, being caught by > > P> .qmail-default. > > > > Question... why do you have a .qmail-default file to begin with? If > > you have proper namespace or .qmail- files for your users, it is not > > necessary at all... all would then be bounced. Or if you wish just > > to drop mail coming in to .qmail-default, just put a # in it... > > Good question---without context, my claim that I can do nothing else > seems wrong. What I should have said is "given I have an interest in > collecting all the spams to non-existent addresses, I don't think I > can make qmail do anything other than deliver it to the new/ subdir of > a Maildir." ah, okay... makes sense now. > The original problem was that _bouncing_ these messages is > fruitless---they almost invariably have a forged From address. I'm > getting on average about 10,000 of them per day, so there were > constantly several thousand messages in my queue, as well as several > thousand bounced bounces and failures in my postmaster mailbox every > day. right... this is why I block them at the SMTP level... > IMHO, these messages should be _rejected_ at the SMTP session, though > (AFAICS) qmail won't do this (without being patched). (I am sure I > behaviour.) Anyway, I was about to embark on tracking down a patch to > do SMTP-level rejection, when I decided I would just funnel them into > a Maildir and use them later to train Bogofilter, or whatever. okay.. > > I would never think of collecting them at all, not even allow them > > in. > I may soon change my mind, though my original plan was to put the spam > to use. The sheer volume looks like making that plan unworkable. :-) hee, hee... always with spam.. > > There are several techniques just to block them at SMTP negotiation > > all together, so they don't even enter your system... > > Techniques for qmail? Without patching it? I thought I had RTFMd > pretty thoroughly, but I am willing to be enlightened. Most are patches, and very good. I use Eben Pratt's goodrcptto personally on my own server, and some that I have built for others (gives me control for accepting mail from lists only for those lists that do not subscribe via envelope sender, such as this one)... there are several to choose from http://lifewithqmail.org/lwq.html#smtp-reject which will lead you here.. http://netdevice.com/qmail/rcptck/ Other techniques are my own RBL lists, commercial RBLs, etc... -- Gary From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 03:30:45 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C04BD16A4CE for ; Sun, 15 Aug 2004 03:30:45 +0000 (GMT) Received: from web61308.mail.yahoo.com (web61308.mail.yahoo.com [216.155.196.151]) by mx1.FreeBSD.org (Postfix) with SMTP id 2B42143D46 for ; Sun, 15 Aug 2004 03:30:45 +0000 (GMT) (envelope-from stheg_olloydson@yahoo.com) Message-ID: <20040815033044.24259.qmail@web61308.mail.yahoo.com> Received: from [67.34.130.149] by web61308.mail.yahoo.com via HTTP; Sat, 14 Aug 2004 20:30:44 PDT Date: Sat, 14 Aug 2004 20:30:44 -0700 (PDT) From: stheg olloydson To: paulh@logicsquad.net MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: questions@freebsd.org Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 03:30:45 -0000 it was said: >The original problem was that _bouncing_ these messages is >fruitless---they almost invariably have a forged From address. I'm >getting on average about 10,000 of them per day, so there were >constantly several thousand messages in my queue, as well as several >thousand bounced bounces and failures in my postmaster mailbox every >day. Hello, Ahh! That is much clearer! You may want to look into ucspi-tcp in sysutils/ports. Its tcpserver, tcprules, and rblsmtpd "sub-programs" do a fairly good job of rejecting connections from undesirable smtp servers - from the individual address all the way to netblock level. See http://cr.yp.to/ucspi-tcp.html for details. Other possible options a something like spamassassin, route them to /dev/null, etc. Another 2%, Stheg __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 03:34:27 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61A8516A4CE for ; Sun, 15 Aug 2004 03:34:27 +0000 (GMT) Received: from mygirlfriday.info (mo-65-41-216-204.sta.sprint-hsd.net [65.41.216.204]) by mx1.FreeBSD.org (Postfix) with SMTP id BC67643D39 for ; Sun, 15 Aug 2004 03:34:26 +0000 (GMT) (envelope-from gv-list-freebsdquestions@mygirlfriday.info) Received: (qmail 47105 invoked from network); 15 Aug 2004 03:34:26 -0000 Received: from unknown (HELO mygirlfriday.info) (192.168.0.5) by mongo.mygirlfriday.info with SMTP; 15 Aug 2004 03:34:26 -0000 Received: (qmail 4809 invoked by uid 500); 15 Aug 2004 03:34:26 -0000 Message-ID: <20040815033426.4808.qmail@letric.mygirlfriday.info> Date: Sat, 14 Aug 2004 22:34:26 -0500 From: Gary To: freebsd-questions@freebsd.org Mail-Followup-To: freebsd-questions@freebsd.org References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> <20040815030001.GF25751@grover.logicsquad.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040815030001.GF25751@grover.logicsquad.net> Organization: Hardly User-Agent: Mutt/1.5.4i Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 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, 15 Aug 2004 03:34:27 -0000 On Sun, Aug 15, 2004 at 12:30:01PM +0930 or thereabouts, Paul A. Hoadley wrote: > Techniques for qmail? Without patching it? I thought I had RTFMd > pretty thoroughly, but I am willing to be enlightened. forgot to add, there are also challange/auth mechanisms that one can use too.. I have used these in the past, until the simplicity of Eben's goodrcptto made it and RBLDNS /tcp.smtp files outdated and not necessary. For example, on qconfirm, I used to just send it an email and it would list all that was pending. I could then accept / drop / bounce it, etc.. Of course, if you are getting those large numbers, this would be unworkable. they are qconfirm and tmda -- Gary From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 03:36:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DED416A4CE for ; Sun, 15 Aug 2004 03:36:48 +0000 (GMT) Received: from grover.logicsquad.net (ppp52-132.lns1.adl2.internode.on.net [150.101.52.132]) by mx1.FreeBSD.org (Postfix) with SMTP id E56F443D5C for ; Sun, 15 Aug 2004 03:36:46 +0000 (GMT) (envelope-from paulh@logicsquad.net) Received: (qmail 68554 invoked by uid 1000); 15 Aug 2004 03:36:42 -0000 Date: Sun, 15 Aug 2004 13:06:42 +0930 From: "Paul A. Hoadley" To: freebsd-questions@freebsd.org Message-ID: <20040815033642.GI25751@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> <20040815030001.GF25751@grover.logicsquad.net> <20040815032546.4772.qmail@letric.mygirlfriday.info> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="hK8Uo4Yp55NZU70L" Content-Disposition: inline In-Reply-To: <20040815032546.4772.qmail@letric.mygirlfriday.info> User-Agent: Mutt/1.4.2.1i Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 03:36:48 -0000 --hK8Uo4Yp55NZU70L Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi Gary, On Sat, Aug 14, 2004 at 10:25:46PM -0500, Gary wrote: > Most are patches, and very good. I use Eben Pratt's goodrcptto > personally on my own server, and some that I have built for others > (gives me control for accepting mail from lists only for those lists > that do not subscribe via envelope sender, such as this > one)... there are several to choose from >=20 > http://lifewithqmail.org/lwq.html#smtp-reject >=20 > which will lead you here.. >=20 > http://netdevice.com/qmail/rcptck/ Thanks. I was fairly sure it couldn't be done without patching. --=20 Paul. w http://logicsquad.net/ h http://paul.hoadley.name/ --hK8Uo4Yp55NZU70L Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBHtpK730Z/jysbzIRAopkAJ0fS8279RMydl9B1bwJrJ18XVoEBACfSXDA I6wN4Wed6lGKZ6Q01jeaS8Y= =rudq -----END PGP SIGNATURE----- --hK8Uo4Yp55NZU70L-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 03:45:50 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50CBD16A4CE for ; Sun, 15 Aug 2004 03:45:50 +0000 (GMT) Received: from mygirlfriday.info (mo-65-41-216-204.sta.sprint-hsd.net [65.41.216.204]) by mx1.FreeBSD.org (Postfix) with SMTP id 9B59243D39 for ; Sun, 15 Aug 2004 03:45:49 +0000 (GMT) (envelope-from gv-list-freebsdquestions@mygirlfriday.info) Received: (qmail 47161 invoked from network); 15 Aug 2004 03:45:48 -0000 Received: from unknown (HELO mygirlfriday.info) (192.168.0.5) by mongo.mygirlfriday.info with SMTP; 15 Aug 2004 03:45:48 -0000 Received: (qmail 4843 invoked by uid 500); 15 Aug 2004 03:45:48 -0000 Message-ID: <20040815034548.4842.qmail@letric.mygirlfriday.info> Date: Sat, 14 Aug 2004 22:45:48 -0500 From: Gary To: freebsd-questions@freebsd.org Mail-Followup-To: freebsd-questions@freebsd.org References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> <20040815030001.GF25751@grover.logicsquad.net> <20040815032546.4772.qmail@letric.mygirlfriday.info> <20040815033642.GI25751@grover.logicsquad.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040815033642.GI25751@grover.logicsquad.net> Organization: Hardly User-Agent: Mutt/1.5.4i Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 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, 15 Aug 2004 03:45:50 -0000 On Sun, Aug 15, 2004 at 01:06:42PM +0930 or thereabouts, Paul A. Hoadley wrote: > On Sat, Aug 14, 2004 at 10:25:46PM -0500, Gary wrote: > > http://lifewithqmail.org/lwq.html#smtp-reject > > > > which will lead you here.. > > > > http://netdevice.com/qmail/rcptck/ > > Thanks. I was fairly sure it couldn't be done without patching. yes, for the 55x at SMTP level, but there are several others methods so that your queue will not fill with waiting junk from non-existent senders. One is a selective spamassassin setup by .qmail file, called ifspamh, IIRC, so you can drop this into any .qmail file you wish, and it will run spamassassin client, and then deliver it where you wish for inspection, deletion, etc... -- Gary From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 03:48:07 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB9F816A4CE for ; Sun, 15 Aug 2004 03:48:07 +0000 (GMT) Received: from asmtp-a063f33.pas.sa.earthlink.net (asmtp-a063f33.pas.sa.earthlink.net [207.217.120.149]) by mx1.FreeBSD.org (Postfix) with ESMTP id CADF343D31 for ; Sun, 15 Aug 2004 03:48:07 +0000 (GMT) (envelope-from hakim.singhji@earthlink.net) Received: from user-0cceq8c.cable.mindspring.com ([24.199.105.12] helo=earthlink.net)(TLSv1:AES256-SHA:256) (Exim 4.34) id 1BwC07-00087W-NQ; Sat, 14 Aug 2004 20:48:08 -0700 Message-ID: <411EDD20.6090305@earthlink.net> Date: Sat, 14 Aug 2004 23:48:48 -0400 From: "Hakim Z. Singhji" User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040115 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org, Bill Moran X-Enigmail-Version: 0.83.6.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms030202070204090106060201" X-ELNK-Trace: 59e746354e49a56ad5e26e230a8c4dea74bf435c0eb9d47809f4808bf386178fef85a30896dd51a90904351a597a646a350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 24.199.105.12 Subject: NAT / ipfw / GW - FreeBSD 4.10 to Linux Private Network??? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 03:48:08 -0000 This is a cryptographically signed message in MIME format. --------------ms030202070204090106060201 Content-Type: multipart/mixed; boundary="------------070103040401080707030108" This is a multi-part message in MIME format. --------------070103040401080707030108 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hello All, So with the help of all of you I have configure my FreeBSD 4.10 gateway. I am able to ping, tracerout, ssh and call webpages with a fully functioning DHCP client. I thank all of you from the bottom of my heart, those of you that helped me out... its been hardwork and late nights (or early mornings) building these computers from scratch and then introducing them with Linux and FreeBSD OS's which I have only a combined year of experience. With that said I have come to the final component of my network... the NAT component. I was trying to play around with it until I found out that I really didn't know what I was doing... so here I am again. I'm trying to configure one box through NAT via my FreeBSD gateway. I figure after I do it once I'll be able to tweak it for the rest of my machines. This is my set up [internet] --------------------- [firewall/gateway] -- [ linux box ] 24.199.105.0 --> 192.168.1.1 -> 192.168.1.3 ( dc0 ) ( txp0 ) ( eth0 ) I'm trying to get internet connection for my linux box, and I also want all pop3, smtp and http passed to my linux box as well. The freebsd box is setup to be headless once I get this configured properly. In addition I would like SSH2 to be able to tunnel from box to box as well as SSH2 outside my network with my Linux box. I have attached my config files for ipfw.rules, rc.conf, and natd.conf however natd.conf is where I am "lost" I don't exactly know the rules for natd.conf. I reviewed my resources: "The Complete FreeBSD" by Greg Lehey and "Absolute BSD" by Michael Lucas however there was not much on the actual syntax. If someone could help me in these areas it would be greatly appreciated. Thanks in advance... Hakim Z. Singhji New York University 1st year Information Systems Management Student --------------070103040401080707030108 Content-Type: text/plain; name="freebsd_rc.conf.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="freebsd_rc.conf.txt" ############################### # RC.CONF FILE ############################### ############ Network ########## gateway_enable="YES" network_interfaces="dc0 txp0 txp1" hostname="redgate.ath.cx" ifconfig_dc0="DHCP" ifconfig_txp0="inet 192.168.1.1/24" ifconfig_txp1="inet 192.168.1.2/24" natd_enable="dc0" natd_flags="-s -u -f /etc/natd.conf" ############# IPFW ############ firewall_enable="YES" firewall_script="/etc/rc.firewall" firewall_type="/etc/ipfw.rules" firewall_quiet="NO" firewall_logging_enable="YES" ## Extra Firewalling Options ## log_in_vain="YES" tcp_drop_synfin="NO" tcp_restrict_rst="YES" icmp_drop_redirect="YES" ######## MISC RC Rules ######### ... --------------070103040401080707030108 Content-Type: text/plain; name="ipfw_rules.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ipfw_rules.txt" ################################ # IPFW.RULES ################################ add 00100 allow ip from any to any via lo0 add 00101 deny ip from any to 127.0.0.0/8 # from man ipfw: allow only tcp connections I've created add 00300 check-state add 00301 deny tcp from any to any in established add 00302 allow tcp from any to any out setup keep-state # allow DNS/UDP Packets add 00400 allow udp from 207.69.188.185 53 to any in recv dc0 add 00401 allow udp from 207.69.188.186 53 to any in recv dc0 add 00402 allow udp from 207.69.188.187 53 to any in recv dc0 add 00403 allow udp from any to any out # allow DHCP add 00500 allow udp from any 68 to 24.29.99.105. 67 out via dc0 add 00501 allow udp from 24.29.99.105 67 to any 68 in via dc0 # uncomment rules 00502 and 00503 if ISP's DHCP server has problems #add 00502 allow udp from any 68 to 255.255.255.255 67 out via dc0 #add 00503 allow udp from any 67 to 255.255.255.255 68 in via dc0 #allow some icmp types (codes not supported) add 00600 allow icmp from any to any icmptypes 3 #allow source quench in and out add 00601 allow icmp from any to any icmptypes 4 #allow me to ping out and receive response back add 00602 allow icmp from any to any icmp types 8 out add 00603 allow icmp from any to any icmptypes 0 in #allow me to run traceroute add 00604 allow icmp from any to any icmptypes 11 in --------------070103040401080707030108 Content-Type: text/plain; name="nat.conf.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="nat.conf.txt" ################################## # NAT.CONF ################################## # I'm not at all sure if this is ok for "diverting" these packets # to my private network machines ip and port numbers??? redirect_port tcp 192.168.1.3:110 110 #pop3 redirect_port udp 192.168.1.3:110 110 #pop3 redirect_port tcp 192.168.1.3:25 25 #smtp redirect_port udp 192.168.1.3:25 25 #smtp redirect_port tcp 192.168.1.3:80 80 #http redirect_port udp 192.168.1.3:80 80 #http --------------070103040401080707030108-- --------------ms030202070204090106060201 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIJQzCC AvwwggJloAMCAQICAwy3+jANBgkqhkiG9w0BAQQFADBiMQswCQYDVQQGEwJaQTElMCMGA1UE ChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNv bmFsIEZyZWVtYWlsIElzc3VpbmcgQ0EwHhcNMDQwNzIwMDQzNzI5WhcNMDUwNzIwMDQzNzI5 WjBmMRAwDgYDVQQEEwdTaW5naGppMQ4wDAYDVQQqEwVIYWtpbTEWMBQGA1UEAxMNSGFraW0g U2luZ2hqaTEqMCgGCSqGSIb3DQEJARYbSEFLSU0uU0lOR0hKSUBFQVJUSExJTksuTkVUMIIB IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtUTeR/QpDdsw+moCLYMMcdlPychYSTlS iSyHfT3WQjvd2Bv0zFAaZoexll3Ml074YKvy/pLocnU3q07KaBnBdrbn6voqtEK6CaPYRwSg 9vjifE2UPm7bhNaqZ8vYno+bcHeG1XxrrmE3qc84rryC2LkQWdNDi63UeMP7vYJV0k6w+vEj w0kytOUoMen5hH7NwTR+4AMUedJ7dIUbKrpDlaPgvUTJOYye9l1QVGpL5+ZNtXzuCv/jR5Wl XvdRj2oCHK7L5MPe7Q2eqrvM0JivKGh7przQyirPSA3SNdqNx9gVt5+JyVR9dMj3KMpmdWdM J1iTemuKolFxhOlQOtmRawIDAQABozgwNjAmBgNVHREEHzAdgRtIQUtJTS5TSU5HSEpJQEVB UlRITElOSy5ORVQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQQFAAOBgQCFSpTAHGfH1Uej 0PdNtj5O8ZA/Iphf/YBrXiqFmhh+4+FqY46oWdpiBNtAWIisq3AXzpMwCZZYCqn+5Fqen035 amiUi5Q7K+xW0gG5EX+QWdbWPSEzTzL5WJ7N80Gee0WEcf3y7j2iipn7uegA/G5tmtQa7aAm cKoboChJcD8gXTCCAvwwggJloAMCAQICAwy3+jANBgkqhkiG9w0BAQQFADBiMQswCQYDVQQG EwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMj VGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0EwHhcNMDQwNzIwMDQzNzI5WhcN MDUwNzIwMDQzNzI5WjBmMRAwDgYDVQQEEwdTaW5naGppMQ4wDAYDVQQqEwVIYWtpbTEWMBQG A1UEAxMNSGFraW0gU2luZ2hqaTEqMCgGCSqGSIb3DQEJARYbSEFLSU0uU0lOR0hKSUBFQVJU SExJTksuTkVUMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtUTeR/QpDdsw+moC LYMMcdlPychYSTlSiSyHfT3WQjvd2Bv0zFAaZoexll3Ml074YKvy/pLocnU3q07KaBnBdrbn 6voqtEK6CaPYRwSg9vjifE2UPm7bhNaqZ8vYno+bcHeG1XxrrmE3qc84rryC2LkQWdNDi63U eMP7vYJV0k6w+vEjw0kytOUoMen5hH7NwTR+4AMUedJ7dIUbKrpDlaPgvUTJOYye9l1QVGpL 5+ZNtXzuCv/jR5WlXvdRj2oCHK7L5MPe7Q2eqrvM0JivKGh7przQyirPSA3SNdqNx9gVt5+J yVR9dMj3KMpmdWdMJ1iTemuKolFxhOlQOtmRawIDAQABozgwNjAmBgNVHREEHzAdgRtIQUtJ TS5TSU5HSEpJQEVBUlRITElOSy5ORVQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQQFAAOB gQCFSpTAHGfH1Uej0PdNtj5O8ZA/Iphf/YBrXiqFmhh+4+FqY46oWdpiBNtAWIisq3AXzpMw CZZYCqn+5Fqen035amiUi5Q7K+xW0gG5EX+QWdbWPSEzTzL5WJ7N80Gee0WEcf3y7j2iipn7 uegA/G5tmtQa7aAmcKoboChJcD8gXTCCAz8wggKooAMCAQICAQ0wDQYJKoZIhvcNAQEFBQAw gdExCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUg VG93bjEaMBgGA1UEChMRVGhhd3RlIENvbnN1bHRpbmcxKDAmBgNVBAsTH0NlcnRpZmljYXRp b24gU2VydmljZXMgRGl2aXNpb24xJDAiBgNVBAMTG1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFp bCBDQTErMCkGCSqGSIb3DQEJARYccGVyc29uYWwtZnJlZW1haWxAdGhhd3RlLmNvbTAeFw0w MzA3MTcwMDAwMDBaFw0xMzA3MTYyMzU5NTlaMGIxCzAJBgNVBAYTAlpBMSUwIwYDVQQKExxU aGF3dGUgQ29uc3VsdGluZyAoUHR5KSBMdGQuMSwwKgYDVQQDEyNUaGF3dGUgUGVyc29uYWwg RnJlZW1haWwgSXNzdWluZyBDQTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAxKY8VXNV +065yplaHmjAdQRwnd/p/6Me7L3N9VvyGna9fww6YfK/Uc4B1OVQCjDXAmNaLIkVcI7dyfAr hVqqP3FWy688Cwfn8R+RNiQqE88r1fOCdz0Dviv+uxg+B79AgAJk16emu59l0cUqVIUPSAR/ p7bRPGEEQB5kGXJgt/sCAwEAAaOBlDCBkTASBgNVHRMBAf8ECDAGAQH/AgEAMEMGA1UdHwQ8 MDowOKA2oDSGMmh0dHA6Ly9jcmwudGhhd3RlLmNvbS9UaGF3dGVQZXJzb25hbEZyZWVtYWls Q0EuY3JsMAsGA1UdDwQEAwIBBjApBgNVHREEIjAgpB4wHDEaMBgGA1UEAxMRUHJpdmF0ZUxh YmVsMi0xMzgwDQYJKoZIhvcNAQEFBQADgYEASIzRUIPqCy7MDaNmrGcPf6+svsIXoUOWlJ1/ TCG4+DYfqi2fNi/A9BxQIJNwPP2t4WFiw9k6GX6EsZkbAMUaC4J0niVQlGLH2ydxVyWN3amc OY6MIE9lX5Xa9/eH1sYITq726jTlEBpbNU1341YheILcIRk13iSx0x1G/11fZU8xggM7MIID NwIBATBpMGIxCzAJBgNVBAYTAlpBMSUwIwYDVQQKExxUaGF3dGUgQ29uc3VsdGluZyAoUHR5 KSBMdGQuMSwwKgYDVQQDEyNUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgSXNzdWluZyBDQQID DLf6MAkGBSsOAwIaBQCgggGnMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcN AQkFMQ8XDTA0MDgxNTAzNDg0OFowIwYJKoZIhvcNAQkEMRYEFDn+Vttu/S0kmYPM7kpaY9AH 6uDAMFIGCSqGSIb3DQEJDzFFMEMwCgYIKoZIhvcNAwcwDgYIKoZIhvcNAwICAgCAMA0GCCqG SIb3DQMCAgFAMAcGBSsOAwIHMA0GCCqGSIb3DQMCAgEoMHgGCSsGAQQBgjcQBDFrMGkwYjEL MAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAq BgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAgMMt/owegYLKoZI hvcNAQkQAgsxa6BpMGIxCzAJBgNVBAYTAlpBMSUwIwYDVQQKExxUaGF3dGUgQ29uc3VsdGlu ZyAoUHR5KSBMdGQuMSwwKgYDVQQDEyNUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgSXNzdWlu ZyBDQQIDDLf6MA0GCSqGSIb3DQEBAQUABIIBABvWtFnPld5cohWZ9xYArUGAoXiBRMGbjQI8 p8IvMlZUXQttl7n9eca97hSWd5pygGK5BQzBbkOKr21ID9mENZN4HMqJp/GRJGrZxVpYlop9 iFYXZmyuqVo0lENKBfLPTvuCLuarhn+/XQMv18UVoZ8Nt6eOxLWJI2n2EE5td0a3zq6V+AXn m+9LsfllA3o5kH2ZeQrzvXRX85qOS1cL14QOQ4jQ1knpljuGwuSrdn+b1pEnt1cR50HSpKSP NqZOq1ayOBCq0q69J+F1+bAAaighTN8eqiC7jX8DD2hxCmyIqOF4BxxtWjN4CSFbZYvz52LP v2dixLXHaxaAEUh8k9kAAAAAAAA= --------------ms030202070204090106060201-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 04:01:35 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19EFB16A4CF for ; Sun, 15 Aug 2004 04:01:33 +0000 (GMT) Received: from grog.secure-computing.net (grog.secure-computing.net [63.228.14.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id 790A543D31 for ; Sun, 15 Aug 2004 04:01:32 +0000 (GMT) (envelope-from ecrist@secure-computing.net) Received: from Nomad (nat-server.secure-computing.net [63.228.14.245]) (authenticated bits=0)i7F41T5m001335 for ; Sat, 14 Aug 2004 23:01:29 -0500 (CDT) (envelope-from ecrist@secure-computing.net) From: "Eric Crist" To: Date: Sat, 14 Aug 2004 22:54:36 -0500 Message-ID: <00a601c4827b$97519130$6401a8c0@Nomad> X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Importance: Normal X-Virus-Scanned: clamd / ClamAV version 0.74, clamav-milter version 0.74a on grog.secure-computing.net X-Virus-Status: Clean Subject: Dual Homing Networks with DSL and Cable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 04:01:36 -0000 Hey all, I'm thinking about getting both DSL and Cable at home. I've currently got DSL with static Ips and I host servers. I would like to setup a dual-homed system, so I could utilize both download bandwidths. How should I best go about this, and does my desired setup make sense? Thanks, Eric F Crist Best Access Systems 11300 Rupp Dr. Burnsville, MN 55337 Phone: 952.894.3830 Cell: 612.998.3588 Fax: 952-894-1990 From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 04:07:33 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DCF116A4D2 for ; Sun, 15 Aug 2004 04:07:33 +0000 (GMT) Received: from mta8.srv.hcvlny.cv.net (mta8.srv.hcvlny.cv.net [167.206.5.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 094ED43D46 for ; Sun, 15 Aug 2004 04:07:33 +0000 (GMT) (envelope-from kellers@njit.edu) Received: from www.smsdesign.org (ool-4353d5dd.dyn.optonline.net [67.83.213.221]) by mta8.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0I2G00AAUZBW8X@mta8.srv.hcvlny.cv.net> for freebsd-questions@freebsd.org; Sun, 15 Aug 2004 00:04:45 -0400 (EDT) Date: Sun, 15 Aug 2004 00:05:00 -0400 From: Tim Kellers To: freebsd-questions@freebsd.org Message-id: <200408150005.00900.kellers@njit.edu> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Content-disposition: inline User-Agent: KMail/1.6.2 Subject: kdm refuses to allow non-root login to kde X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 04:07:33 -0000 I've been battling this on and off (mostly off) since April. If I put exec startkde in .xesession in a non-root folder and I enable xdm in /etc/ttys, I can log into xorg's xdm and kde starts just fine -- even as a non-root user. If I enable kdm in /etc/ttys, I get the kdm login screen, and if I login with a non-root account, the display just stays at it's default background until I kill it with CNTRL-ALT-BACKSPACE. At the kdm login screen, if I login as root, the kde desktop loads and starts just fine. I've read and implemented the commands in /usr/src/UPDATING regarding kde/kdm and I'm running the latest kde-everything as of a few hours ago. I do like Xorg's xdm, but I do like kdm/KDE better, but, apparently, kdm/kde doesn't like me at all. The box I'm currently testing this on is i386 FreeBSD-Current as of 8/7/2004, but I've also had this difficulty on 4.9/4.10 -STABLE installs at work. Any advice on wht I'm doing wrong (or a pointer to docs so I can RTFM) would be greatly appreciated. Tim Kellers CPE/NJIT From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 04:08:14 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E18916A4CF for ; Sun, 15 Aug 2004 04:08:14 +0000 (GMT) Received: from mta8.srv.hcvlny.cv.net (mta8.srv.hcvlny.cv.net [167.206.5.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A56743D39 for ; Sun, 15 Aug 2004 04:08:14 +0000 (GMT) (envelope-from kellers@njit.edu) Received: from www.smsdesign.org (ool-4353d5dd.dyn.optonline.net [67.83.213.221]) by mta8.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0I2G00AQWZH91A@mta8.srv.hcvlny.cv.net> for questions@freebsd.org; Sun, 15 Aug 2004 00:07:57 -0400 (EDT) Date: Sun, 15 Aug 2004 00:08:13 -0400 From: Tim Kellers To: questions@freebsd.org Message-id: <200408150008.13497.kellers@njit.edu> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Content-disposition: inline User-Agent: KMail/1.6.2 Subject: kdm refuses to allow non-root login to kde X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 04:08:14 -0000 [If this gets posted twice, I apologize for the noise] I've been battling this on and off (mostly off) since April. If I put exec startkde in .xesession in a non-root folder and I enable xdm in /etc/ttys, I can log into xorg's xdm and kde starts just fine -- even as a non-root user. If I enable kdm in /etc/ttys, I get the kdm login screen, and if I login with a non-root account, the display just stays at it's default background until I kill it with CNTRL-ALT-BACKSPACE. At the kdm login screen, if I login as root, the kde desktop loads and starts just fine. I've read and implemented the commands in /usr/src/UPDATING regarding kde/kdm and I'm running the latest kde-everything as of a few hours ago. I do like Xorg's xdm, but I do like kdm/KDE better, but, apparently, kdm/kde doesn't like me at all. The box I'm currently testing this on is i386 FreeBSD-Current as of 8/7/2004, but I've also had this difficulty on 4.9/4.10 -STABLE installs at work. Any advice on wht I'm doing wrong (or a pointer to docs so I can RTFM) would be greatly appreciated. Tim Kellers CPE/NJIT From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 04:46:24 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C50E16A4CE for ; Sun, 15 Aug 2004 04:46:24 +0000 (GMT) Received: from tomts13-srv.bellnexxia.net (tomts13-srv.bellnexxia.net [209.226.175.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1420E43D31 for ; Sun, 15 Aug 2004 04:46:21 +0000 (GMT) (envelope-from zero@ns.sympatico.ca) Received: from [192.168.1.100] ([142.177.155.4]) by tomts13-srv.bellnexxia.netESMTP <20040815044619.WOBU4758.tomts13-srv.bellnexxia.net@[192.168.1.100]> for ; Sun, 15 Aug 2004 00:46:19 -0400 Message-ID: <411EEBB4.2000801@ns.sympatico.ca> Date: Sun, 15 Aug 2004 01:51:00 -0300 From: Clinton MacKinnon User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en, zh-hk, ja MIME-Version: 1.0 To: freebsd-questions@freebsd.org X-Enigmail-Version: 0.85.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: The switch to X.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 04:46:24 -0000 Hello all, Does anyone know where I can find, or what exactly needs to be done to switch a 5.2.1 system from XFree86 to X.org. Due to the lists currently being down I'm unable to find the official HEADS UP articles I was looking for. Thank you in advance -- As a wise man once said, "You cannot create peace without paying a giant robot to throw people into a volcano." From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 04:52:40 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 658D016A4CE for ; Sun, 15 Aug 2004 04:52:40 +0000 (GMT) Received: from web53009.mail.yahoo.com (web53009.mail.yahoo.com [206.190.39.199]) by mx1.FreeBSD.org (Postfix) with SMTP id E8E3343D3F for ; Sun, 15 Aug 2004 04:52:39 +0000 (GMT) (envelope-from reza_cavalera@yahoo.com) Message-ID: <20040815045239.17698.qmail@web53009.mail.yahoo.com> Received: from [202.155.48.181] by web53009.mail.yahoo.com via HTTP; Sat, 14 Aug 2004 21:52:39 PDT Date: Sat, 14 Aug 2004 21:52:39 -0700 (PDT) From: Reza Muhammad To: Uwe Laverenz , freebsd-questions@freebsd.org In-Reply-To: <20040814215828.GB78175@ensign.laverenz.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: mozilla and courier-imap X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 04:52:40 -0000 I have some problem too with mozilla mail and courier imap. When i'm using imap with mozilla mail, everytime i sent email, mozilla mail idle with progrees tool bar " Copy message to sent item" is there any idea ? regards reza --- Uwe Laverenz wrote: > On Fri, Aug 13, 2004 at 12:50:22PM -0400, Richard > Coleman wrote: > > > I'm using the most recent ports for mozilla and > courier-imap on an > > up-to-date FreeBSD-stable. Very often I will not > see new messages in a > > folder until I restart mozilla. I was convinced > it was mozilla that was > > What do you mean with "a folder"? If you mean the > normal INBOX, just > increase the value of "MAXPERIP" in > /usr/local/etc/courier-imap/imapd. > This value must be increased for use with mozilla > (16 should be fine). > > If you mean "any" folder, you have to tell Mozilla > to monitor this folder > for new incoming mails (right-click on the > folder...). > > Generally Courier-Imap works perfectly with Mozilla: > I have several servers > running it with many users of Mozilla-Mail. > > cu, > Uwe > > _______________________________________________ > 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" > __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 05:02:40 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3241E16A4CE for ; Sun, 15 Aug 2004 05:02:40 +0000 (GMT) Received: from mta10.srv.hcvlny.cv.net (mta10.srv.hcvlny.cv.net [167.206.5.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09CFE43D41 for ; Sun, 15 Aug 2004 05:02:40 +0000 (GMT) (envelope-from kellers@njit.edu) Received: from www.smsdesign.org (ool-4353d5dd.dyn.optonline.net [67.83.213.221]) by mta10.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0I2H00H2O1ZSWX@mta10.srv.hcvlny.cv.net> for freebsd-questions@freebsd.org; Sun, 15 Aug 2004 01:02:18 -0400 (EDT) Date: Sun, 15 Aug 2004 01:02:24 -0400 From: Tim Kellers In-reply-to: <411EEBB4.2000801@ns.sympatico.ca> To: freebsd-questions@freebsd.org Message-id: <200408150102.35467.kellers@njit.edu> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Content-disposition: inline User-Agent: KMail/1.6.2 References: <411EEBB4.2000801@ns.sympatico.ca> cc: Clinton MacKinnon Subject: Re: The switch to X.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 05:02:40 -0000 On Sunday 15 August 2004 12:51 am, Clinton MacKinnon wrote: > Hello all, > > Does anyone know where I can find, or what exactly needs to be done to > switch a 5.2.1 system from XFree86 to X.org. Due to the lists currently > being down I'm unable to find the official HEADS UP articles I was > looking for. > > Thank you in advance >From /usr/src/Updating 20040723: AFFECTS: users of FreeBSD-current, users of xorg AUTHOR: anholt@FreeBSD.org The XFREE86_VERSION variable is deprecated and has been replaced by the X_WINDOW_SYSTEM variable. X_WINDOW_SYSTEM may be set to xorg, xfree86-4, or xfree86-3. X_WINDOW_SYSTEM defaults to xorg on FreeBSD-current. If you are switching to xorg, you should follow this set of commands to cleanly upgrade: pkg_delete -f /var/db/pkg/imake-4* /var/db/pkg/XFree86-* cd /usr/ports/x11/xorg && make install pkgdb -F Users of -stable or older -current can switch to X.Org by setting X_WINDOW_SYSTEM=xorg in make.conf and following the same process. You should have portupgrade installed before you attempt the above instructions. Assuming you do, follow the above instructions exactly. I did exactly the above, and it worked fine for me, though when running pkgdb -F, some of the replacement xorg choices aren't intuitive. Tim Kellers CPE/NJIT From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 05:09:09 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F334816A4CE for ; Sun, 15 Aug 2004 05:09:08 +0000 (GMT) Received: from web90005.mail.scd.yahoo.com (web90005.mail.scd.yahoo.com [66.218.94.63]) by mx1.FreeBSD.org (Postfix) with SMTP id E742043D5F for ; Sun, 15 Aug 2004 05:09:08 +0000 (GMT) (envelope-from runsolaris@yahoo.com) Message-ID: <20040815050908.34359.qmail@web90005.mail.scd.yahoo.com> Received: from [63.204.157.14] by web90005.mail.scd.yahoo.com via HTTP; Sat, 14 Aug 2004 22:09:08 PDT Date: Sat, 14 Aug 2004 22:09:08 -0700 (PDT) From: Unix Forever To: bsd MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Any external USB cdrw recommended for FreeBSD[4,5]* ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 05:09:09 -0000 Hello, I was looking for some ideas on an external USB burner for my laptop. I'm running 5.2.1 but would go back to 4.10 if needed to make a recommended model work. TIA __________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 05:23:52 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D498216A4CE for ; Sun, 15 Aug 2004 05:23:52 +0000 (GMT) Received: from web61306.mail.yahoo.com (web61306.mail.yahoo.com [216.155.196.149]) by mx1.FreeBSD.org (Postfix) with SMTP id 5B87843D53 for ; Sun, 15 Aug 2004 05:23:52 +0000 (GMT) (envelope-from stheg_olloydson@yahoo.com) Message-ID: <20040815052351.9287.qmail@web61306.mail.yahoo.com> Received: from [67.34.130.149] by web61306.mail.yahoo.com via HTTP; Sat, 14 Aug 2004 22:23:51 PDT Date: Sat, 14 Aug 2004 22:23:51 -0700 (PDT) From: stheg olloydson To: zero@ns.sympatico.ca MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: questions@freebsd.org Subject: Re: The switch to X.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 05:23:52 -0000 it was said: Hello, I don't personally have an answer, but from the archives comes this one from Matthew Seaman: ######################################################################## On Mon, Jun 28, 2004 at 02:45:08PM -0400, Jim Trigg wrote: >On Mon, Jun 28, 2004 at 01:22:32PM -0500, Vulpes Velox wrote: >>On Mon, 28 Jun 2004 13:17:56 -0400 >>Jim Trigg wrote: >>> >>> AFAICT, this won't really do anything -- there does not appear to >>>be a real way to tell the ports system that you want X ports to >>>depend on xorg instead of xfree. Every X port appears to have xfree >>>hardcoded. >> >> Not sure, I think some do, but everything I have hear does not seem >>to have that problem. > > OK, so how do you get cvsup to use xorg? As best I can tell, it will > depend on either XFree86 (XFree86 v. 3) or XFree86-4-libraries(XFree86 v. 4), with no option to depend on xorg-libraries. Both the XFree86-4-libraries and xorg-libraries provide the /usr/X11R6/lib/libX11.so.6 shared library (amongst others). It's the same ABI independent of which port the shlib comes from. The short answer is "just install the x11/xorg-libraries port before you install cvsup". In fact, cvsup works perfectly well even if you replace the XFree86 libs with the xorg ones underneath a previously installed copy of cvsup. Doesn't even need a recompile. The same goes for most X based software. Here's how it works: when the Makefile in the cvsup port says "USE_XLIB" that gets transformed into a LIB_DEPENDS line in /usr/ports/Mk/bsd.ports.mk: LIB_DEPENDS+= X11.6:${PORTSDIR}/x11/XFree86-4-libraries (assuming you've not got XFREE86_VERSION == 3). That LIB_DEPENDS line is in two parts separated by a colon. The first bit: X11.6 means that the port needs to link against libX11.so.6, and it checks to see if a suitable shlib is installed and accessible by grep'ing in the output of ldconfig: % ldconfig -r | fgrep X11.6 116:-lX11.6 => /usr/X11R6/lib/libX11.so.6 Since last night on my system that's from: % pkg_info -W /usr/X11R6/lib/libX11.so.6 /usr/X11R6/lib/libX11.so.6 was installed by package xorg-libraries-6.7.0 If make(1) can find a suitable shlib, everything is happy and the compile continues -- all make looks for is the presence of the library. It doesn't check what (if any) port the library is part of. Only if it can't find the correct shlib does the right hand side of that LIB_DEPENDS line get considered: ${PORTSDIR}/x11/XFree86-4-libraries That's simply a suggestion of a suitable port that will provide the required shlib, and fulfil the dependency. But there are several such ports in the tree, any of which could be used. Often in such situations there will be some sort of 'WANT_FOO' or 'WITH_FOO_VER' make variable to select which one gets used. Unfortunately, no such mechanism for saying "I want X.Org ports in preference to XFree86 ones" has yet been committed. One annoyance due to the lake of make(1) infrastructure is that the suggested port will be listed in the package dependencies of the installed port, rather than the actual port that provided the shlib you used to build against. That, however, is just an administrative detail which you can fix up with pkgdb(1), and has no real bearing on the effectiveness of the software. Cheers, Matthew ####################################################################### And an answer from Matthew to a follow-up question from Axel S. Gruner: ####################################################################### On Wed, Jun 30, 2004 at 12:46:37PM +0200, Axel S. Gruner wrote: > i have written a howto for people willing to switch from XFree86 to > xorg. Ok, at this time it is only available in german: > > http://www.bsdforen.de/showthread.php?p=39983#post39983 > > But i also have some questions about switching to xorg. > > (1) Will xorg be the default X in future FreeBSD Releases? Probably. It seems that most of the Linux distros have switched or are switching to it, and the Unix vendors like Sun always were behind X.Org anyway. There is has been a discussion on the x11 and docs mailing lists covering all of the whys and wherefores. A good place to start is here: http://docs.freebsd.org/cgi/mid.cgi?200406051411.04259.linimon > (2) I have xorg running, without a problem, but if i install a new > application with a XFree86 dependency i have to run "pkgdb -F" to fix > the dependency to xorg stuff (and imake-6). > If i change /usr/ports/Mk/bsd.port.mk and the entries about XFree86 and > imake-4 to xorg and imake-6, the change will not be permanent (cvsup > will overwrite the change): > > [...] > LIB_DEPENDS+= X11.6:${PORTSDIR}/x11/xorg-libraries > [...] > .if defined(USE_IMAKE) > BUILD_DEPENDS+= ${X11BASE}/lib/X11/config/date.def: > ${PORTSDIR}/devel/imake-6 > RUN_DEPENDS+= mkhtmlindex:${PORTSDIR}/devel/imake-6 > [...] > > So, is there another way to fix that permanently or a work-around? Eventually something like what you propose will be added to bsd.port.mk or whichever makefile is appropriate. Until then, you're going to have to maintain your patches in parallel to the ordinary development of the ports tree. On the whole though, you can get by without fiddling in the makefiles if you're prepared to run pkgdb(1) to fix up the dependencies after the fact. The X.Org stuff is still considered experimental at the moment. As more and more people start to use it and it gets well debugged, the ports infrastructure around it will be improved. Cheers, Matthew ####################################################################### I use X on only one machine and haven't made the change, so I haven't tried these instructions out. But considering the source, these are the ones I intend to follow. HTH, Stheg __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 05:28:46 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99A4F16A4CE for ; Sun, 15 Aug 2004 05:28:46 +0000 (GMT) Received: from adsl-68-76-19-75.dsl.klmzmi.ameritech.net (adsl-68-76-19-75.dsl.klmzmi.ameritech.net [68.76.19.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8492E43D1D for ; Sun, 15 Aug 2004 05:28:45 +0000 (GMT) (envelope-from Luke@FoolishGames.com) Received: from defiant (66.227.161.255.kzo.mi.chartermi.net [66.227.161.255]) (authenticated bits=0)ESMTP id i7F5Vmbd080787; Sun, 15 Aug 2004 01:31:49 -0400 (EDT) (envelope-from Luke@FoolishGames.com) Message-Id: <200408150531.i7F5Vmbd080787@adsl-68-76-19-75.dsl.klmzmi.ameritech.net> X-Authentication-Warning: adsl-68-76-19-75.dsl.klmzmi.ameritech.net: Host 66.227.161.255.kzo.mi.chartermi.net [66.227.161.255] claimed to be defiant From: "Lucas Holt" To: "'Eric Crist'" , Date: Sun, 15 Aug 2004 01:28:44 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcSCfQ1deG4od0j0TqGpEOskJt4G8wACxGQg X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 In-Reply-To: <00a601c4827b$97519130$6401a8c0@Nomad> X-Virus-Scanned: clamd / ClamAV version 0.75.1, clamav-milter version 0.75c on adsl-68-76-19-75.dsl.klmzmi.amerclamd / ClamAV version 0.75.1, clamav-milter version 0.75c on (³y¨¿M X-Virus-Status: Clean Subject: RE: Dual Homing Networks with DSL and Cable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 05:28:46 -0000 You will have difficulty with this setup. Most large providers require that you register your multihomed capacity on a list. Otherwise traffic won't know to come in on a particular interface or that it can go either way. I must admit I'm going from memory here. I used to work at an ISP about 5 years ago. At that time we went from a T3 with UUNET to a multihomed setup with verio and uunet. It was rather odd actually.. 3 t1s connected us to our modem banks at the telco and then we had an ethernet connection to verio's pipe, plus the T3 in our main office. Anyway, verio required us to get on this list. They told us that most large ISPs use it for routing. I suspect you will need static ips with the cable provider to pull it off as well. -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Eric Crist Sent: Saturday, August 14, 2004 11:55 PM To: freebsd-questions@freebsd.org Subject: Dual Homing Networks with DSL and Cable Hey all, I'm thinking about getting both DSL and Cable at home. I've currently got DSL with static Ips and I host servers. I would like to setup a dual-homed system, so I could utilize both download bandwidths. How should I best go about this, and does my desired setup make sense? Thanks, Eric F Crist Best Access Systems 11300 Rupp Dr. Burnsville, MN 55337 Phone: 952.894.3830 Cell: 612.998.3588 Fax: 952-894-1990 _______________________________________________ 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 Aug 15 05:54:29 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B13A16A4CE for ; Sun, 15 Aug 2004 05:54:29 +0000 (GMT) Received: from gaia.nimnet.asn.au (nimbin.lnk.telstra.net [139.130.45.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEE2A43D39 for ; Sun, 15 Aug 2004 05:54:26 +0000 (GMT) (envelope-from smithi@nimnet.asn.au) Received: from localhost (smithi@localhost) by gaia.nimnet.asn.au (8.8.8/8.8.8R1.4) with SMTP id PAA05159; Sun, 15 Aug 2004 15:54:17 +1000 (EST) (envelope-from smithi@nimnet.asn.au) Date: Sun, 15 Aug 2004 15:54:16 +1000 (EST) From: Ian Smith To: edwinculp In-Reply-To: <20040814234011.BF09B16A4D0@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-questions@freebsd.org Subject: cd and dvd burning program K3b and permissions for non-root users. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 05:54:29 -0000 On Sat, 14 Aug 2004 freebsd-questions-request@freebsd.org wrote: [..] > Message: 4 > Date: Sat, 14 Aug 2004 08:47:09 -0500 > From: edwinculp [..] > > I've installed K3b and it works great for the root user but I can't > get it to work for any non-privileged user even though I have put the > user in the wheel group and have set sysctl vfs.usermount=1, cd0 has > permissions set to 666, the same in devfs.conf (That solves the > problem for xmms but not for k3b. I have tried to suid and kde won't > let it start. I'm out of ideas. After this much time, I'm sure that > I'm making a mountain out of a mole hill and I'm missing something > very simple. > > Any help would be appreciated. I can't see my users using burncd > > > Thanks > > ed > > P.S. Machines are running current and are AMD Athlon I see you've not got this going yet. I don't know about current but on 4.x, as well as vfs.usermount=1 you need to have non-root users mount CDs on a directory that they actually own. Might that be an issue here? Cheers, Ian From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 06:24:54 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E1E016A4CE for ; Sun, 15 Aug 2004 06:24:54 +0000 (GMT) Received: from grog.secure-computing.net (grog.secure-computing.net [63.228.14.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1B6943D46 for ; Sun, 15 Aug 2004 06:24:53 +0000 (GMT) (envelope-from ecrist@secure-computing.net) Received: from Nomad (nat-server.secure-computing.net [63.228.14.245]) (authenticated bits=0)i7F6Oh99001870; Sun, 15 Aug 2004 01:24:43 -0500 (CDT) (envelope-from ecrist@secure-computing.net) From: "Eric Crist" To: "'Lucas Holt'" , Date: Sun, 15 Aug 2004 01:00:02 -0500 Message-ID: <020a01c4828d$1d9cee40$6401a8c0@Nomad> X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 In-Reply-To: <200408150531.i7F5Vmbd080787@adsl-68-76-19-75.dsl.klmzmi.ameritech.net> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Importance: Normal X-Virus-Scanned: clamd / ClamAV version 0.74, clamav-milter version 0.74a on grog.secure-computing.net X-Virus-Status: Clean Subject: RE: Dual Homing Networks with DSL and Cable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 06:24:54 -0000 > -----Original Message----- > From: Lucas Holt [mailto:Luke@FoolishGames.com] > Sent: Sunday, August 15, 2004 12:29 AM > To: 'Eric Crist'; freebsd-questions@freebsd.org > Subject: RE: Dual Homing Networks with DSL and Cable > > > You will have difficulty with this setup. Most large > providers require that you register your multihomed capacity > on a list. Otherwise traffic won't know to come in on a > particular interface or that it can go either way. I must > admit I'm going from memory here. I used to work at an ISP > about 5 years ago. At that time we went from a T3 with UUNET > to a multihomed setup with verio and uunet. It was rather > odd actually.. 3 t1s connected us to our modem banks at the > telco and then we had an ethernet connection to verio's pipe, > plus the T3 in our main office. Anyway, verio required us to > get on this list. They told us that most large ISPs use it > for routing. I suspect you will need static ips with the > cable provider to pull it off as well. Actually, I was under the assumption that the multi-homed system would process outgoing traffic, and the incoming would just return on the appropriate IP. In this scenario, there's no need to register hosts. Thanks, Eric F Crist Best Access Systems 11300 Rupp Dr. Burnsville, MN 55337 Phone: 952.894.3830 Cell: 612.998.3588 Fax: 952-894-1990 From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 06:33:15 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D1C716A4CE for ; Sun, 15 Aug 2004 06:33:15 +0000 (GMT) Received: from chen.org.nz (chen.org.nz [210.54.19.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2323D43D49 for ; Sun, 15 Aug 2004 06:33:15 +0000 (GMT) (envelope-from jonc@chen.org.nz) Received: by chen.org.nz (Postfix, from userid 1000) id E455913620; Sun, 15 Aug 2004 18:33:12 +1200 (NZST) Date: Sun, 15 Aug 2004 18:33:12 +1200 From: Jonathan Chen To: Tim Kellers Message-ID: <20040815063312.GA86007@grimoire.chen.org.nz> References: <200408150005.00900.kellers@njit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408150005.00900.kellers@njit.edu> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: kdm refuses to allow non-root login to kde X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 06:33:15 -0000 On Sun, Aug 15, 2004 at 12:05:00AM -0400, Tim Kellers wrote: > > I've been battling this on and off (mostly off) since April. > > If I put exec startkde in .xesession in a non-root folder and I enable xdm > in /etc/ttys, I can log into xorg's xdm and kde starts just fine -- even as a > non-root user. > > If I enable kdm in /etc/ttys, I get the kdm login screen, and if I login with > a non-root account, the display just stays at it's default background until I > kill it with CNTRL-ALT-BACKSPACE. Sounds like a DNS problem (yes, I know, why the heck does kdm want with a DNS lookup - but there it is). If you put the output of hostname(1) into /etc/hosts as an alias for 127.0.0.1 (localhost), your problem _may_ go away. Cheers. -- Jonathan Chen ---------------------------------------------------------------------- Do not take life too seriously. You will never get out of it alive. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 07:09:22 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B79416A4CE; Sun, 15 Aug 2004 07:09:22 +0000 (GMT) Received: from nezlok.unixathome.org (nezlok.unixathome.org [66.154.97.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEFA243D45; Sun, 15 Aug 2004 07:09:21 +0000 (GMT) (envelope-from dan@nezlok.unixathome.org) Received: from localhost (localhost [127.0.0.1]) by nezlok.unixathome.org (Postfix) with ESMTP id CB91E5753; Sun, 15 Aug 2004 00:10:03 +0000 (GMT) Received: from nezlok.unixathome.org ([127.0.0.1]) by localhost (nezlok.unixathome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23072-01; Sun, 15 Aug 2004 00:10:02 +0000 (GMT) Received: by nezlok.unixathome.org (Postfix, from userid 1000) id 92997572B; Sun, 15 Aug 2004 00:10:02 +0000 (GMT) From: Dan Langille To: freebsd-newbies@freebsd.org, freebsd-questions@freebsd.org Message-Id: <20040815001002.92997572B@nezlok.unixathome.org> Date: Sun, 15 Aug 2004 00:10:02 +0000 (GMT) X-Virus-Scanned: by amavisd-new at unixathome.org Subject: The FreeBSD Diary: 2004-07-25 - 2004-08-14 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 07:09:22 -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 Aug 15 07:17:41 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 871E216A4CE for ; Sun, 15 Aug 2004 07:17:41 +0000 (GMT) Received: from mta3.srv.hcvlny.cv.net (mta3.srv.hcvlny.cv.net [167.206.5.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 649B743D45 for ; Sun, 15 Aug 2004 07:17:41 +0000 (GMT) (envelope-from kellers@njit.edu) Received: from www.smsdesign.org (ool-4353d5dd.dyn.optonline.net [67.83.213.221]) by mta3.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0I2H006CW7RSPP@mta3.srv.hcvlny.cv.net> for freebsd-questions@freebsd.org; Sun, 15 Aug 2004 03:07:05 -0400 (EDT) Date: Sun, 15 Aug 2004 03:07:29 -0400 From: Tim Kellers In-reply-to: <20040815063312.GA86007@grimoire.chen.org.nz> To: Jonathan Chen Message-id: <200408150307.29561.kellers@njit.edu> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Content-disposition: inline User-Agent: KMail/1.6.2 References: <200408150005.00900.kellers@njit.edu> <20040815063312.GA86007@grimoire.chen.org.nz> cc: freebsd-questions@freebsd.org Subject: Re: kdm refuses to allow non-root login to kde X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 07:17:41 -0000 On Sunday 15 August 2004 02:33 am, Jonathan Chen wrote: > On Sun, Aug 15, 2004 at 12:05:00AM -0400, Tim Kellers wrote: > > I've been battling this on and off (mostly off) since April. > > > > If I put exec startkde in .xesession in a non-root folder and I enable > > xdm in /etc/ttys, I can log into xorg's xdm and kde starts just fine -- > > even as a non-root user. > > > > If I enable kdm in /etc/ttys, I get the kdm login screen, and if I login > > with a non-root account, the display just stays at it's default > > background until I kill it with CNTRL-ALT-BACKSPACE. > > Sounds like a DNS problem (yes, I know, why the heck does kdm want > with a DNS lookup - but there it is). If you put the output of > hostname(1) into /etc/hosts as an alias for 127.0.0.1 (localhost), > your problem _may_ go away. > > Cheers. No Joy... root still brings up the kde splash screen, everyone else sits frozen at the kde background screen. xdm still works. I'm at a complete loss how to explan this. $vi /etc/hosts 127.0.0.1 www.smsdesign.org localhost 10.0.1.7 www.smsdesign.org www 10.0.1.7 www.smsdesign.org. 10.0.1.7 mail.smsdesign.org mail 10.0.1.7 smsdesign.org. 128.235.112.11 eris.njit.edu eris I rebooted, too, just "in case." ~ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 07:39:27 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C3B516A4CE for ; Sun, 15 Aug 2004 07:39:27 +0000 (GMT) Received: from mtiwmhc11.worldnet.att.net (mtiwmhc11.worldnet.att.net [204.127.131.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9492343D41 for ; Sun, 15 Aug 2004 07:39:26 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc11) with ESMTP id <2004081507392511100bn2d4e> (Authid: jayobrien@att.net); Sun, 15 Aug 2004 07:39:25 +0000 Message-ID: <411F132C.5010906@att.net> Date: Sun, 15 Aug 2004 00:39:24 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Mount point problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 07:39:27 -0000 I've changed the mount point for devices; i.e., ad0s1g was /usr and now I want ad0s1f to mount on boot as /usr. I can't seem to get anywhere with disklabel editor in single-user mode. It errors out; device busy. When I start diskeditor again, mount points are shown as . I'm sure I'm overlooking a very basic issue, and I could sure use some guidance. Jay O'Brien Rio Linda, CA USA From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 09:58:22 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7305616A4CE for ; Sun, 15 Aug 2004 09:58:22 +0000 (GMT) Received: from gw01.nln.ru (gw01.nln.ru [217.174.98.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 935F143D2F for ; Sun, 15 Aug 2004 09:58:21 +0000 (GMT) (envelope-from grint@nln.ru) Received: from grint.int.nln.ru (grint.int.nln.ru [192.168.150.193]) by gw01.nln.ru (8.12.7/8.12.8) with ESMTP id i7F9wIeK000699 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Sun, 15 Aug 2004 13:58:19 +0400 Received: from [127.0.0.1] (helo=localhost) by grint.int.nln.ru with smtp (Exim 4.34; FreeBSD) id 1BwHmS-000DDQ-Pq for freebsd-questions@freebsd.org; Sun, 15 Aug 2004 13:58:24 +0400 Date: Sun, 15 Aug 2004 13:58:24 +0400 From: "Ruslan N. Gogunsci" To: freebsd-questions@freebsd.org Message-Id: <20040815135824.5e904a5b@localhost> In-Reply-To: <411E9639.2070609@spintech.ro> References: <411E9639.2070609@spintech.ro> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamd / ClamAV version 0.72, clamav-milter version 0.72 on localhost X-Virus-Status: Clean Subject: Re: FreeBSD scanners X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 09:58:22 -0000 Hello Anton, I use Epson perfection 1650 without problems. But it isn't in your list. On Sun, 15 Aug 2004 01:46:17 +0300 Anton Alin-Adrian wrote: > Please, if any of you has confident experience with any of the following > scanners under FreeBSD, please let me know. I must find something available > for buying and it must work smoothly in FreeBSD (otherwise there's no point > of buying a new scanner, as I already have one which is not working in > anything else but Windows..) > > EPSON perfection 1670 > EPSON perfection 1670 Photo > EPSON perfection 3170 photo > EPSON perfection 2400 photo > EPSON perfection 3200 photo > EPSON perfection 4870 photo > EPSON perfection 2480 photo > EPSON Expression 1680 > EPSON Expression 1680 Pro > EPSON GT 10000XL > EPSON GT - 15000 > EPSON GT - 30000 > > MUSTEK ScanExpress 1248 UB Plus > MUSTEK Bear Paw 1200 CU Plus > MUSTEK Bear Paw 1200 Fast > MUSTEK Bear Paw 2400 CU Plus > MUSTEK Bear Paw 2448CS Plus > MUSTEK Bear Paw 2448 TA Plus > MUSTEK Bear Paw 4800 TA PRO II > > HP ScanJet 2400 > HP ScanJet 3670 > HP ScanJet 3690 > HP ScanJet 3970 > HP ScanJet 4600 > HP ScanJet 4670 > HP ScanJet 5590 > HP ScanJet 8200 > > HP ScanJet 2400C > HP ScanJet 3670C > HP ScanJet 3690C > HP ScanJet 3970C > HP ScanJet 4070C > HP ScanJet 4600C > HP ScanJet 4670C > HP ScanJet 5530C > > Thank you for your help and time. > > Yours Sincerely, > -- > Alin-Adrian Anton > Spintech Systems > GPG keyID 0x1E2FFF2E (2963 0C11 1AF1 96F6 0030 6EE9 D323 639D 1E2F FF2E) > gpg --keyserver pgp.mit.edu --recv-keys 1E2FFF2E > _______________________________________________ > 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 Aug 15 10:56:18 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B097D16A4CE for ; Sun, 15 Aug 2004 10:56:18 +0000 (GMT) Received: from mta07-svc.ntlworld.com (mta07-svc.ntlworld.com [62.253.162.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3545043D41 for ; Sun, 15 Aug 2004 10:56:18 +0000 (GMT) (envelope-from scott@fishballoon.org) Received: from llama.fishballoon.org ([81.104.195.124]) by mta07-svc.ntlworld.comESMTP <20040815105639.FQTD5610.mta07-svc.ntlworld.com@llama.fishballoon.org>; Sun, 15 Aug 2004 11:56:39 +0100 Received: from tuatara.fishballoon.org ([192.168.1.6]) by llama.fishballoon.org with esmtp (Exim 4.41 (FreeBSD)) id 1BwIgS-000MCt-TE; Sun, 15 Aug 2004 11:56:16 +0100 Received: (from scott@localhost) by tuatara.fishballoon.org (8.12.11/8.12.11/Submit) id i7FAuAD5075236; Sun, 15 Aug 2004 11:56:10 +0100 (BST) (envelope-from scott) Date: Sun, 15 Aug 2004 11:56:10 +0100 From: Scott Mitchell To: "Paul A. Hoadley" Message-ID: <20040815105610.GA73539@tuatara.fishballoon.org> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> <20040815030001.GF25751@grover.logicsquad.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040815030001.GF25751@grover.logicsquad.net> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-STABLE i386 cc: freebsd-questions@freebsd.org Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 10:56:18 -0000 On Sun, Aug 15, 2004 at 12:30:01PM +0930, Paul A. Hoadley wrote: > Hello, > > On Sat, Aug 14, 2004 at 09:13:32PM -0500, Gary wrote: > > > There are several techniques just to block them at SMTP negotiation > > all together, so they don't even enter your system... > > Techniques for qmail? Without patching it? I thought I had RTFMd > pretty thoroughly, but I am willing to be enlightened. Hi Paul, I don't know how committed to qmail you are, but Exim will do this out of the box. I'm pretty sure it's part of the default config file. With the exim+exiscan patches (available from ports) you can get even more creative and integrate virus scanning, SpamAssassin, etc. with very little effort. Cheers, Scott -- =========================================================================== Scott Mitchell | PGP Key ID | "Eagles may soar, but weasels Cambridge, England | 0x54B171B9 | don't get sucked into jet engines" scott at fishballoon.org | 0xAA775B8B | -- Anon From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 11:12:30 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 122CF16A4CE for ; Sun, 15 Aug 2004 11:12:30 +0000 (GMT) Received: from reaper.digital-euphoria.net (reaper.digital-euphoria.net [62.190.197.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB22143D49 for ; Sun, 15 Aug 2004 11:12:24 +0000 (GMT) (envelope-from m.napper@digital-euphoria.net) Received: from localhost (localhost [127.0.0.1]) by reaper.digital-euphoria.net (Postfix) with ESMTP id 5284E25FFB for ; Sun, 15 Aug 2004 12:11:41 +0100 (BST) Received: from reaper.digital-euphoria.net ([127.0.0.1])port 10024) with ESMTP id 45855-02 for ; Sun, 15 Aug 2004 12:10:34 +0100 (BST) Received: from mark.lan.napper.co.uk (host217-44-1-145.range217-44.btcentralplus.com [217.44.1.145]) by reaper.digital-euphoria.net (Postfix) with ESMTP id 80B4C25D9E for ; Sun, 15 Aug 2004 12:10:18 +0100 (BST) Date: Sun, 15 Aug 2004 12:10:14 +0100 From: "Mark Napper" To: freebsd-questions@freebsd.org References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> <20040815030001.GF25751@grover.logicsquad.net> <20040815105610.GA73539@tuatara.fishballoon.org> Message-ID: Organization: digitalEuphoria Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-15 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit In-Reply-To: <20040815105610.GA73539@tuatara.fishballoon.org> User-Agent: Opera M2/7.54 (Win32, build 3865) X-Virus-Scanned: by amavisd-new at digital-euphoria.net Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: m.napper@digital-euphoria.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 11:12:30 -0000 On Sun, 15 Aug 2004 11:56:10 +0100, Scott Mitchell wrote: > On Sun, Aug 15, 2004 at 12:30:01PM +0930, Paul A. Hoadley wrote: >> Hello, >> >> On Sat, Aug 14, 2004 at 09:13:32PM -0500, Gary wrote: >> >> > There are several techniques just to block them at SMTP negotiation >> > all together, so they don't even enter your system... >> >> Techniques for qmail? Without patching it? I thought I had RTFMd >> pretty thoroughly, but I am willing to be enlightened. > > Hi Paul, > > I don't know how committed to qmail you are, but Exim will do this out of > the box. I'm pretty sure it's part of the default config file. With the > exim+exiscan patches (available from ports) you can get even more > creative > and integrate virus scanning, SpamAssassin, etc. with very little effort. > > Cheers, > > Scott > I have a "howto" to do this with postfix at http://rapier.digital-euphoria.net/~lordofla/stuff/postfix/howto/ The web based control panel relevant to the howto is in http://rapier.digital-euphoria.net/~lordofla/stuff/postfix/ HTH -- Mark Napper Owner, digitalEuphoria http://www.digital-euphoria.net/ - m.napper@digital-euphoria.net 0044 7980 992 619 From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 11:44:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D93B816A4CE for ; Sun, 15 Aug 2004 11:44:42 +0000 (GMT) Received: from web90006.mail.scd.yahoo.com (web90006.mail.scd.yahoo.com [66.218.94.64]) by mx1.FreeBSD.org (Postfix) with SMTP id A4A6A43D1D for ; Sun, 15 Aug 2004 11:44:42 +0000 (GMT) (envelope-from annkok2001@yahoo.com) Message-ID: <20040815114442.74955.qmail@web90006.mail.scd.yahoo.com> Received: from [142.154.97.107] by web90006.mail.scd.yahoo.com via HTTP; Sun, 15 Aug 2004 04:44:42 PDT Date: Sun, 15 Aug 2004 04:44:42 -0700 (PDT) From: ann kok To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: download speed question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 11:44:43 -0000 Hi all Do you think there is different for the download speed using wget in https and http? If yes, ls it big different? Thank you __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 12:45:21 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52D4216A4CE for ; Sun, 15 Aug 2004 12:45:21 +0000 (GMT) Received: from cmailg1.svr.pol.co.uk (cmailg1.svr.pol.co.uk [195.92.195.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 741E043D4C for ; Sun, 15 Aug 2004 12:45:18 +0000 (GMT) (envelope-from robin@jessikat.fsnet.co.uk) Received: from modem-1834.parera.dialup.pol.co.uk ([81.78.183.42]) by cmailg1.svr.pol.co.uk with esmtp (Exim 4.14) id 1BwKNw-0004Vy-Dz for freebsd-questions@freebsd.org; Sun, 15 Aug 2004 13:45:16 +0100 Message-ID: <411F5AD5.7020702@jessikat.fsnet.co.uk> Date: Sun, 15 Aug 2004 13:45:09 +0100 From: Robin Becker User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: dell 8400 install prob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 12:45:21 -0000 I am trying to install freebsd 4.9 on my new dell 8400. I don't see any conflicts in the config stage, but during the setup the install just hangs after . The machine has an sata drive and by default the bios is to configure hyper threading on. I've tried changing various settings and in order to reinstall XP I had to change the bios drive setting to do raid/ata autodetect. Certainly turning off HT doesn't seem to get the freebsd install any further. I managed to get various knoppix/freesbie versions to come up, but not easily and only the knoppix 3.2 seems to see the hard drive properly. -- Robin Becker From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 13:15:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB46316A4CE for ; Sun, 15 Aug 2004 13:15:05 +0000 (GMT) Received: from frontend1.messagingengine.com (frontend1.messagingengine.com [66.111.4.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DBE243D39 for ; Sun, 15 Aug 2004 13:15:05 +0000 (GMT) (envelope-from ajeshjohn@fastmail.fm) Received: from server2.messagingengine.com (server2.internal [10.202.2.133]) by frontend1.messagingengine.com (Postfix) with ESMTP id 8E5A3C144D2 for ; Sun, 15 Aug 2004 09:15:01 -0400 (EDT) Received: by server2.messagingengine.com (Postfix, from userid 99) id E5BFE83BDA; Sun, 15 Aug 2004 09:15:02 -0400 (EDT) Content-Disposition: inline Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="ISO-8859-1" MIME-Version: 1.0 X-Mailer: MIME::Lite 1.4 (F2.72; T1.001; A1.62; B3.01; Q3.01) To: freebsd-questions@freebsd.org Date: Sun, 15 Aug 2004 16:15:02 +0300 From: "Ajesh John" X-Sasl-Enc: 7/+M7o9PFDxXaWnDANfstg 1092575702 Message-Id: <1092575702.21097.202360206@webmail.messagingengine.com> Subject: Can't detect COM ports... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 13:15:05 -0000 Hi, I have got a problem with my HS56 PCTel modem because I can not enable my serial ports. The first two ports are automatically enabled, but the third and the fourth does not get enabled. I read the handbook and tried to do it myself, but without success. I have connected the modem to the COM3 port(sio2). When I take the output of "dmesg" command I get the following output.... sio2: configured irq 5 not in bitmap of probed irqs 0 sio2: port may not be enabled sio3: configured irq 9 not in bitmap of probed irqs 0 sio3: port may not be enabled The irqs and are as follows sio0 4 sio1 3 sio2 5 sio3 9 I have also removed the lines that disable COM3 and COM4 ports from the file "/boot/device.hints". Can anyone please tell me what should I do now? Ajesh John From owner-freebsd-questions@FreeBSD.ORG Fri Aug 13 18:13:25 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0891B16A4CE for ; Fri, 13 Aug 2004 18:13:25 +0000 (GMT) Received: from encontacto.net (dsl-200-95-35-64.prod-infinitum.com.mx [200.95.35.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56AC143D3F for ; Fri, 13 Aug 2004 18:13:24 +0000 (GMT) (envelope-from eculp@encontacto.net) Received: from localhost (localhost [127.0.0.1]) (uid 80) by encontacto.net with local; Fri, 13 Aug 2004 13:19:19 -0500 Received: from dsl-200-78-18-127.prod-infinitum.com.mx (dsl-200-78-18-127.prod-infinitum.com.mx [200.78.18.127]) by mail.encontacto.net (Horde) with HTTP for ; Fri, 13 Aug 2004 13:19:19 -0500 Message-ID: <20040813131919.0040o4k400gs0o4s@mail.encontacto.net> Date: Fri, 13 Aug 2004 13:19:19 -0500 From: Edwin Culp To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) 4.0-cvs X-Originating-IP: 200.78.18.127 X-Mailman-Approved-At: Sun, 15 Aug 2004 13:54:57 +0000 Subject: cd and dvd burning program K3b and permissions for non-root users. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:13:25 -0000 I've installed K3b and it works great for the root user but I can't get it to work for any non-privileged user even though I have put the user in the wheel group and have set sysctl vfs.usermount=1, cd0 has permissions set to 666, the same in devfs.conf (That solves the problem for xmms but not for k3b. I have tried to suid and kde won't let it start. I'm out of ideas. After this much time, I'm sure that I'm making a mountain out of a mole hill and I'm missing something very simple. Any help would be appreciated. I can't see my users using burncd ;) Thanks ed P.S. Machines are running current and are AMD Athlon From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 14:04:50 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 555AE16A4CE for ; Sun, 15 Aug 2004 14:04:50 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D8FE43D3F for ; Sun, 15 Aug 2004 14:04:50 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 252ED69A71 for ; Sun, 15 Aug 2004 10:04:49 -0400 (EDT) Date: Sun, 15 Aug 2004 10:04:48 -0400 From: Bill Moran To: freebsd-questions@freebsd.org Message-Id: <20040815100448.2a7e52bd.wmoran@potentialtech.com> In-Reply-To: <20040815114442.74955.qmail@web90006.mail.scd.yahoo.com> References: <20040815114442.74955.qmail@web90006.mail.scd.yahoo.com> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: download speed question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 14:04:50 -0000 ann kok wrote: > Hi all > > Do you think there is different for the download speed > using wget in https and http? Yes. http is less overhead, thus faster. > If yes, ls it big different? No. Unless you have a very old computer that is very slow to do the encrypting/decrypting. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 14:31:40 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15B1E16A4CE for ; Sun, 15 Aug 2004 14:31:40 +0000 (GMT) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id B87C343D45 for ; Sun, 15 Aug 2004 14:31:39 +0000 (GMT) (envelope-from Barbish3@adelphia.net) Received: from barbish ([67.20.101.71]) by mta10.adelphia.net (InterMail vM.6.01.03.02 201-2131-111-104-20040324) with SMTP id <20040815143139.XNHJ9204.mta10.adelphia.net@barbish>; Sun, 15 Aug 2004 10:31:39 -0400 From: "JJB" To: "Ajesh John" , Date: Sun, 15 Aug 2004 10:31:38 -0400 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) In-Reply-To: <1092575702.21097.202360206@webmail.messagingengine.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Importance: Normal Subject: RE: Can't detect COM ports... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Barbish3@adelphia.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 14:31:40 -0000 owner-freebsd-questions@freebsd.org wrote: > Hi, > I have got a problem with my HS56 PCTel modem because I can not > enable my serial ports. The first two ports are automatically > enabled, but the third and the fourth does not get enabled. I read > the handbook and tried to do it myself, but without success. I have > connected the modem to the COM3 port(sio2). When I take the output > of "dmesg" command I get the following output.... > > sio2: configured irq 5 not in bitmap of probed irqs 0 > sio2: port may not be enabled > sio3: configured irq 9 not in bitmap of probed irqs 0 > sio3: port may not be enabled > > The irqs and are as follows > sio0 4 > sio1 3 > sio2 5 > sio3 9 > > I have also removed the lines that disable COM3 and COM4 ports from > the file "/boot/device.hints". Can anyone please tell me what should > I do > now? > > Ajesh John There are only 2 serial com nipples on standard PCs. These are called sio0 and sio1 in FreeBSD and com1 and com2 by the motherboard. What makes you think your PC has a com3 and com4 external nipples? You should be cabling you external serial modem to your PCs com1 or com2 external serial nipples. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 15:03:24 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FFE116A4CE for ; Sun, 15 Aug 2004 15:03:24 +0000 (GMT) Received: from cmailm4.svr.pol.co.uk (cmailm4.svr.pol.co.uk [195.92.193.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD3F043D49 for ; Sun, 15 Aug 2004 15:03:21 +0000 (GMT) (envelope-from robin@jessikat.fsnet.co.uk) Received: from modem-3479.kawau.dialup.pol.co.uk ([81.78.157.151]) by cmailm4.svr.pol.co.uk with esmtp (Exim 4.14) id 1BwMXY-0000k2-Cj; Sun, 15 Aug 2004 16:03:20 +0100 Message-ID: <411F7B31.2050507@jessikat.fsnet.co.uk> Date: Sun, 15 Aug 2004 16:03:13 +0100 From: Robin Becker User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Barbish3@adelphia.net References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: dell 8400 install prob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 15:03:24 -0000 JJB wrote: > owner-freebsd-questions@freebsd.org wrote: > >>I am trying to install freebsd 4.9 on my new dell 8400. >> ....... > > I believe 4.9 can not use a sata drive as target to install on. 4.9 > is the old stable release 4.10 is the new stable release. Turn off > pnp support and ms/windows support in your pc bios. Your pc is newer > than what FreeBSD has added support for. Try installing to a > standard ATA HD. > > Sigh! I tried with 4.10 as well and that also fails. Sadly I don't have a spare IDE / drive lying about. I guess I'll have to wait on freebsd or install one of the more advanced Linux OSes -- Robin Becker From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 15:06:28 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BF5416A4CE for ; Sun, 15 Aug 2004 15:06:28 +0000 (GMT) Received: from smtp15.wxs.nl (smtp15.wxs.nl [195.121.6.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9731B43D2F for ; Sun, 15 Aug 2004 15:06:27 +0000 (GMT) (envelope-from marco@beishuizen.info) Received: from tsunami.bsd (ipd50a233c.speed.planet.nl [213.10.35.60]) by smtp15.wxs.nl (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0I2H003G0TYQGI@smtp15.wxs.nl> for questions@freebsd.org; Sun, 15 Aug 2004 17:06:26 +0200 (CEST) Date: Sun, 15 Aug 2004 17:06:26 +0200 (CEST) From: Marco Beishuizen Sender: marco@tsunami.bsd To: FreeBSD questions mailing list Message-id: MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=US-ASCII; format=flowed Content-transfer-encoding: 7BIT FreeBSD: Homepage: Subject: Acrobat Reader 4 on alpha? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Marco Beishuizen List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 15:06:28 -0000 Hi, When I had 4.7-RELEASE running on my alpha I had acroread4 installed. Now I run 4.10-RELEASE but Acroread4 isn't in the ports anymore. I have Acroread3 installed but this version is very old and can't display some pdf's correctly. Unfortunately version 5 is i386 only. I like to use Acroread4 again on my alpha. Is this possible? Marco -- Ask not for whom the telephone bell tolls ... if thou art in the bathtub, it tolls for thee. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 15:36:28 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BDDD16A4D0 for ; Sun, 15 Aug 2004 15:36:28 +0000 (GMT) Received: from anubis.freenet.am (Anubis.freenet.am [212.165.126.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EAA243D2F for ; Sun, 15 Aug 2004 15:36:25 +0000 (GMT) (envelope-from Jill@freenet.am) Received: from email.freenet.am (anubis [212.165.126.49]) by anubis.freenet.am (8.12.10/8.12.10) with SMTP id i7FFaKFj000507 for ; Sun, 15 Aug 2004 20:36:20 +0500 (GMT) Date: Sun, 15 Aug 2004 20:36:20 +0500 (GMT) Message-Id: <200408151536.i7FFaKFj000507@anubis.freenet.am> From: Stepanyan Karine To: freebsd-questions@freebsd.org X-Access-IP: 212.165.126.48 X-Mailer: ArmFN mailer 1.35 Content-Type: text/plain; charset=x-user-defined Content-Transfer-Encoding: 7bit Subject: ?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 15:36:28 -0000 ??????? -- http://www.freenet.am/ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 15:49:49 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABA0216A4CE for ; Sun, 15 Aug 2004 15:49:49 +0000 (GMT) Received: from web50806.mail.yahoo.com (web50806.mail.yahoo.com [206.190.38.115]) by mx1.FreeBSD.org (Postfix) with SMTP id 370FD43D2D for ; Sun, 15 Aug 2004 15:49:49 +0000 (GMT) (envelope-from plaur_27@yahoo.de) Message-ID: <20040815154948.28008.qmail@web50806.mail.yahoo.com> Received: from [217.81.146.97] by web50806.mail.yahoo.com via HTTP; Sun, 15 Aug 2004 17:49:48 CEST Date: Sun, 15 Aug 2004 17:49:48 +0200 (CEST) From: =?iso-8859-1?q?Laurentiu=20Pancescu?= To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: dealing with deffective RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 15:49:49 -0000 Hello! Both Memtest86 and Memtest86+ find some failures in RAM (one finds 11 faults, the other 14 - most 32-bit, but some are only 8-bit wide). How can I deal with this in FreeBSD? Buying new RAM modules is probably the best choice, but I have no guarantee that the new modules will be perfectly ok, so it might be wasted money. Under Linux, I used the badram patch (http://rick.vanrein.org/linux/badram/). Is there similar functionality in the FreeBSD kernel, or is there such a patch? I failed to find anything on Google, and boot(8) didn't help much, either. In case such a patch doesn't exist, do you have any ideas about how such a thing might be implemented? Eventually, could you point me to the right place in the kernel source? I use Linux since 1997, but I'm pretty much a FreeBSD newbie, so please be merciful... :) Best regards, Laurentiu P.S. I assume the physical pages (4k/4M) where the faults reside could just be not mapped at all in the virtual memory manager, so it should be doable, right? ___________________________________________________________ Gesendet von Yahoo! Mail - Jetzt mit 100MB Speicher kostenlos - Hier anmelden: http://mail.yahoo.de From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 15:50:22 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DC1E16A4DB for ; Sun, 15 Aug 2004 15:50:22 +0000 (GMT) Received: from frontend1.messagingengine.com (frontend1.messagingengine.com [66.111.4.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DC5343D31 for ; Sun, 15 Aug 2004 15:50:22 +0000 (GMT) (envelope-from nkinkade@fastmail.fm) X-Sasl-enc: Yx6EXpOYTvmkzY5idvEy6g 1092585017 Received: from gentoo-npk.bmp.ub (unknown [206.27.244.136]) by www.fastmail.fm (Postfix) with ESMTP id 5FD06C14AE7; Sun, 15 Aug 2004 11:50:17 -0400 (EDT) Received: from nkinkade by gentoo-npk.bmp.ub with local (Exim 4.21) id 1BwNFt-0000La-Qv; Sun, 15 Aug 2004 09:49:09 -0600 Date: Sun, 15 Aug 2004 09:49:09 -0600 From: Nathan Kinkade To: Jay O'Brien Message-ID: <20040815154909.GR782@gentoo-npk.bmp.ub> References: <411F132C.5010906@att.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="n0t7pLec3q0yZKtb" Content-Disposition: inline In-Reply-To: <411F132C.5010906@att.net> User-Agent: Mutt/1.5.6i Sender: cc: FreeBSD - questions Subject: Re: Mount point problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Nathan Kinkade List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 15:50:22 -0000 --n0t7pLec3q0yZKtb Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 15, 2004 at 12:39:24AM -0700, Jay O'Brien wrote: > I've changed the mount point for devices; i.e., ad0s1g=20 > was /usr and now I want ad0s1f to mount on boot as /usr.=20 >=20 > I can't seem to get anywhere with disklabel editor in=20 > single-user mode. It errors out; device busy. When I=20 > start diskeditor again, mount points are shown as .=20 >=20 > I'm sure I'm overlooking a very basic issue, and I could=20 > sure use some guidance. >=20 > Jay O'Brien > Rio Linda, CA USA The disklabel doesnt' specify the mount point for partitions, it simply describes the size and number of partitions. Edit the file /etc/fstab to direct init how/where to mount your various partitions that the disklabel describes. The disklabel editor that is part of sysinstall asks about a mount point because it will usually need to automatically mount your partitions during a new install. Nathan --=20 PGP Public Key: pgp.mit.edu:11371/pks/lookup?op=3Dget&search=3D0xD8527E49 --n0t7pLec3q0yZKtb Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) iD8DBQFBH4X1O0ZIEthSfkkRAn4HAKCcuV/I0ZSGBci+Gl+LA1Y4lcSBOQCg70x4 L3au786JXlTehrNGt56wisY= =PAcd -----END PGP SIGNATURE----- --n0t7pLec3q0yZKtb-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 15:52:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51F7D16A4CE for ; Sun, 15 Aug 2004 15:52:48 +0000 (GMT) Received: from natsmtp00.rzone.de (natsmtp00.rzone.de [81.169.145.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB97B43D31 for ; Sun, 15 Aug 2004 15:52:47 +0000 (GMT) (envelope-from uwe@laverenz.de) Received: from ensign.laverenz.de (dynadsl-080-228-84-044.ewetel.net [80.228.84.44]) by post.webmailer.de (8.12.10/8.12.10) with ESMTP id i7FFqksx021965 for ; Sun, 15 Aug 2004 17:52:46 +0200 (MEST) Received: from localhost (localhost.laverenz.de [127.0.0.1]) by ensign.laverenz.de (Postfix) with ESMTP id 575C976F430 for ; Sun, 15 Aug 2004 17:51:51 +0200 (CEST) Received: from ensign.laverenz.de ([127.0.0.1]) by localhost (ensign.laverenz.de [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 50486-01 for ; Sun, 15 Aug 2004 17:51:42 +0200 (CEST) Received: by ensign.laverenz.de (Postfix, from userid 2000) id C8B7476F42F; Sun, 15 Aug 2004 17:51:41 +0200 (CEST) Date: Sun, 15 Aug 2004 17:51:41 +0200 From: Uwe Laverenz To: freebsd-questions@freebsd.org Message-ID: <20040815155141.GA50547@ensign.laverenz.de> Mail-Followup-To: freebsd-questions@freebsd.org References: <20040814215828.GB78175@ensign.laverenz.de> <20040815045239.17698.qmail@web53009.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040815045239.17698.qmail@web53009.mail.yahoo.com> Organization: private site Sender: uwe@laverenz.de User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new at laverenz.de Subject: Re: mozilla and courier-imap X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 15:52:48 -0000 On Sat, Aug 14, 2004 at 09:52:39PM -0700, Reza Muhammad wrote: > When i'm using imap with mozilla mail, everytime i > sent email, mozilla mail idle with progrees tool bar > " Copy message to sent item" > is there any idea ? Please check your Mozilla-settings: "Edit->Mail & Newsgroups Account Settings->Copies & Folders". Does "Sent" point to an existing folder? If not, create the default folders or point Mozilla to different folders. cu, Uwe From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 15:55:45 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6661B16A4CE for ; Sun, 15 Aug 2004 15:55:45 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id B540043D2D for ; Sun, 15 Aug 2004 15:55:44 +0000 (GMT) (envelope-from oliverfuchs@onlinehome.de) Received: from [212.227.126.208] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1BwNM6-0002aK-00; Sun, 15 Aug 2004 17:55:34 +0200 Received: from [217.246.201.155] (helo=oliverfuchs.ath.cx) (TLSv1:EDH-RSA-DES-CBC3-SHA:168) (Exim 3.35 #1) id 1BwNM4-0003Z2-00; Sun, 15 Aug 2004 17:55:34 +0200 Received: from oliverfuchs.ath.cx (localhost [127.0.0.1]) i7FFtEF7001049verify=FAIL); Sun, 15 Aug 2004 17:55:15 +0200 Received: (from oliverfuchs1@localhost) by oliverfuchs.ath.cx (8.12.3/8.12.3/Debian-6.6) id i7E7wgg8003789; Sat, 14 Aug 2004 09:58:42 +0200 Date: Sat, 14 Aug 2004 09:58:41 +0200 From: Oliver Fuchs To: freebsd-questions@freebsd.org Message-ID: <20040814075840.GA3611@oliverfuchs.ath.cx> Mail-Followup-To: freebsd-questions@freebsd.org, Ruben de Groot References: <20040813063131.GA2636@oliverfuchs.ath.cx> <20040813102148.GA9258@ei.bzerk.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040813102148.GA9258@ei.bzerk.org> User-Agent: Mutt/1.4.2i X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:c2b2791553508cc938db2bcf18721a3c cc: Ruben de Groot Subject: Re: no keyboard after boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 15:55:45 -0000 On Fri, 13 Aug 2004, Ruben de Groot wrote: > On Fri, Aug 13, 2004 at 08:31:31AM +0200, Oliver Fuchs typed: > > On Thu, 12 Aug 2004, Alex Melkomukov wrote: > > > > > Hello All, > > > > > > I have a strange situation where the PS/2 keyboard stops working after > > > booting to FreeBSD. There is no mouse. > > > > > > It works fine during POST, I can navigate and set BIOS settings, and can > > > even hit the 'enter' key to start booting FreeBSD immediately, but once > > > the machine starts booting the OS, the lights on the keyboard flash, then > > > go away, no more keyboard. > > > > > > > > > running OS is FreeBSD 4.3-RELEASE > > > > > > > > > I don't see anything in the kernel config file that would disable the > > > keyboard, and this is what I see in dmesg: > > > > > > > > > atkbdc0: at port 0x60,0x64 on isa0 > > > atkbd0: flags 0x1 irq 1 on atkbdc0 > > > device_probe_and_attach: atkbd0 attach returned 6 > > > > > > > > > I have not been succesfull in finding any documentation that covers what > > > > > > > > > device_probe_and_attach: atkbd0 attach returned 6 > > > > > > > > > actually means. Anyone on this list know? Any other ideas, suggestions > > > on how to resolve this? what to look for? where to find documentation? > > > > > > any help would be appreciated. > > > > > > Alex M. > > > > > > Hi, > > > > I had the same problem that while booting up I was loosing my keyboard. > > As far as I can remember I changed in /boot/device.hints the entry: > > > > from > > hint.atkbd.0.flags="0x1" > > to > > hint.atkbd.0.flags="0x0" > > That won't help him; he's on 4.3-RELEASE where there's no device.hints file. > To the OP: have you tried google ? > Oh, sorry, I did not know that there is no device.hints in 4.3 (I am using 5.2). Oliver -- ... don't touch the bang bang fruit From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 16:04:12 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2CAA16A4CE for ; Sun, 15 Aug 2004 16:04:11 +0000 (GMT) Received: from smtp.hispeed.ch (mxout.hispeed.ch [62.2.95.247]) by mx1.FreeBSD.org (Postfix) with ESMTP id D08C843D39 for ; Sun, 15 Aug 2004 16:04:10 +0000 (GMT) (envelope-from hampi@rootshell.be) Received: from gicco.homeip.net (80-218-73-163.dclient.hispeed.ch [80.218.73.163])i7FG48Oj010052 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Sun, 15 Aug 2004 18:04:09 +0200 Received: from localhost.here (idefix@gicco.homeip.net [127.0.0.1]) by gicco.homeip.net (8.12.8p2/8.12.8) with ESMTP id i7FG48Mi000985 for ; Sun, 15 Aug 2004 18:04:08 +0200 (CEST) (envelope-from hampi@rootshell.be) Received: (from idefix@localhost) by localhost.here (8.12.8p2/8.12.8/Submit) id i7FG476h000984 for freebsd-questions@freebsd.org; Sun, 15 Aug 2004 18:04:07 +0200 (CEST) X-Authentication-Warning: localhost.here: idefix set sender to hampi@rootshell.be using -f Date: Sun, 15 Aug 2004 18:04:07 +0200 From: Hanspeter Roth To: freebsd-questions@freebsd.org Message-ID: <20040815160407.GA941@gicco.homeip.net> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: kernel module configuration X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 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, 15 Aug 2004 16:04:12 -0000 Hello, in the kernel configuration one can enable various devices by the respective 'device' statement. It seems that most drivers go into the kernel directly. Some drivers such as 'acpi' produce a kernel module. How is determined which modules become built in and which become modules? Can I have 'ohci' as a kernel module? -Hanspeter From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 16:18:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45F6316A4CE for ; Sun, 15 Aug 2004 16:18:42 +0000 (GMT) Received: from frontend1.messagingengine.com (frontend1.messagingengine.com [66.111.4.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26FE243D31 for ; Sun, 15 Aug 2004 16:18:42 +0000 (GMT) (envelope-from nkinkade@fastmail.fm) X-Sasl-enc: QHy8AeK/zE8wgLrRV3xNWg 1092586463 Received: from gentoo-npk.bmp.ub (unknown [206.27.244.136]) by www.fastmail.fm (Postfix) with ESMTP id 3CB94C1410B; Sun, 15 Aug 2004 12:14:23 -0400 (EDT) Received: from nkinkade by gentoo-npk.bmp.ub with local (Exim 4.21) id 1BwNdE-0000Q4-B0; Sun, 15 Aug 2004 10:13:16 -0600 Date: Sun, 15 Aug 2004 10:13:16 -0600 From: Nathan Kinkade To: ann kok Message-ID: <20040815161316.GS782@gentoo-npk.bmp.ub> Mail-Followup-To: ann kok , freebsd-questions@freebsd.org References: <20040815114442.74955.qmail@web90006.mail.scd.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dDdTYOCAbkFo0FQC" Content-Disposition: inline In-Reply-To: <20040815114442.74955.qmail@web90006.mail.scd.yahoo.com> User-Agent: Mutt/1.5.6i Sender: cc: freebsd-questions@freebsd.org Subject: Re: download speed question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Nathan Kinkade List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 16:18:42 -0000 --dDdTYOCAbkFo0FQC Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 15, 2004 at 04:44:42AM -0700, ann kok wrote: > Hi all >=20 > Do you think there is different for the download speed > using wget in https and http? >=20 > If yes, ls it big different? >=20 > Thank you I would think that https would generally be slower due to the overhead of encryption. How much slower I couldn't say. Nathan --=20 PGP Public Key: pgp.mit.edu:11371/pks/lookup?op=3Dget&search=3D0xD8527E49 --dDdTYOCAbkFo0FQC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) iD8DBQFBH4ucO0ZIEthSfkkRAqYxAJ9e6jexTL/BuHtlslJ05mWB2/7tUACeI8rH MHHTHApD8CIZYgtDcZggBkY= =yAYx -----END PGP SIGNATURE----- --dDdTYOCAbkFo0FQC-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 17:38:46 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4417316A4CE for ; Sun, 15 Aug 2004 17:38:46 +0000 (GMT) Received: from mtiwmhc12.worldnet.att.net (mtiwmhc12.worldnet.att.net [204.127.131.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B7A243D31 for ; Sun, 15 Aug 2004 17:38:45 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc12) with ESMTP id <2004081517384411200lb5ane> (Authid: jayobrien@att.net); Sun, 15 Aug 2004 17:38:44 +0000 Message-ID: <411F9FA3.9070205@att.net> Date: Sun, 15 Aug 2004 10:38:43 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions References: <411F132C.5010906@att.net> <20040815154909.GR782@gentoo-npk.bmp.ub> In-Reply-To: <20040815154909.GR782@gentoo-npk.bmp.ub> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: Nathan Kinkade Subject: Re: Mount point problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 17:38:46 -0000 Nathan Kinkade wrote: > On Sun, Aug 15, 2004 at 12:39:24AM -0700, Jay O'Brien wrote: > >>I've changed the mount point for devices; i.e., ad0s1g >>was /usr and now I want ad0s1f to mount on boot as /usr. >> >>I can't seem to get anywhere with disklabel editor in >>single-user mode. It errors out; device busy. When I >>start diskeditor again, mount points are shown as . >> >>I'm sure I'm overlooking a very basic issue, and I could >>sure use some guidance. >> >>Jay O'Brien >>Rio Linda, CA USA > > > The disklabel doesnt' specify the mount point for partitions, it simply > describes the size and number of partitions. Edit the file /etc/fstab > to direct init how/where to mount your various partitions that the > disklabel describes. The disklabel editor that is part of sysinstall > asks about a mount point because it will usually need to automatically > mount your partitions during a new install. > > Nathan Thank you. I hadn't grasped the concept that disklabel's purpose is on initial boot of a new system. I edited /etc/fstab as you suggested and that fixed my problem. There's lots more to learn! Jay From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 18:26:16 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 917D816A4CF for ; Sun, 15 Aug 2004 18:26:16 +0000 (GMT) Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by mx1.FreeBSD.org (Postfix) with ESMTP id E544343D31 for ; Sun, 15 Aug 2004 18:26:15 +0000 (GMT) (envelope-from jcm@FreeBSD-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 4.20) id 1BwPhu-0004AG-1R; Sun, 15 Aug 2004 19:26:14 +0100 Received: from dogma.freebsd-uk.eu.org (localhost [127.0.0.1]) i7FIQDuf031402; Sun, 15 Aug 2004 19:26:13 +0100 (BST) (envelope-from jcm@dogma.freebsd-uk.eu.org) Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.12.10/8.12.6/Submit) id i7FIQDLj031401; Sun, 15 Aug 2004 19:26:13 +0100 (BST) Date: Sun, 15 Aug 2004 19:26:12 +0100 From: Jonathon McKitrick To: "David A. Desrosiers" Message-ID: <20040815182612.GA31329@dogma.freebsd-uk.eu.org> References: <20040815144607.GB29386@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-Spam-Score: -4.9 (----) X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *1BwPhu-0004AG-1R*fHBZrBNXYJY* cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD/USB PPP solution X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 18:26:16 -0000 I'm still having problems getting my wife's palm to show up on my system. Here's my dmesg: uhci0: port 0xd000-0xd01f irq 11 at device 16.0 on p ci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0xd400-0xd41f irq 11 at device 16.1 on p ci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0xd800-0xd81f irq 5 at device 16.2 on pc i0 usb2: on uhci2 usb2: USB revision 1.0 uhub2: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered I hit 'hotsync' on the palm menu after plugging in the usb cable, and got this: nepptune:~> usbdevs -v Controller /dev/usb0: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), VIA(0x0000), rev 1.00 port 1 powered port 2 powered neptune:~> What the heck? It's like my usb port doesn't work at all or something. jm From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 18:56:04 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58A8A16A4CE for ; Sun, 15 Aug 2004 18:56:04 +0000 (GMT) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id E23F143D41 for ; Sun, 15 Aug 2004 18:56:03 +0000 (GMT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.11.7p1+Sun/8.11.7) id i7FIts224526; Sun, 15 Aug 2004 14:55:54 -0400 (EDT) From: Jerry McAllister Message-Id: <200408151855.i7FIts224526@clunix.cl.msu.edu> To: robin@jessikat.fsnet.co.uk (Robin Becker) Date: Sun, 15 Aug 2004 14:55:53 -0400 (EDT) In-Reply-To: <411F7B31.2050507@jessikat.fsnet.co.uk> from "Robin Becker" at Aug 15, 2004 04:03:13 PM X-Mailer: ELM [version 2.5 PL2] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: Barbish3@adelphia.net cc: freebsd-questions@freebsd.org Subject: Re: dell 8400 install prob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 18:56:04 -0000 > > JJB wrote: > > owner-freebsd-questions@freebsd.org wrote: > > > >>I am trying to install freebsd 4.9 on my new dell 8400. > >> > ....... > > > > I believe 4.9 can not use a sata drive as target to install on. 4.9 > > is the old stable release 4.10 is the new stable release. Turn off > > pnp support and ms/windows support in your pc bios. Your pc is newer > > than what FreeBSD has added support for. Try installing to a > > standard ATA HD. > > Sigh! I tried with 4.10 as well and that also fails. Sadly I don't have > a spare IDE / drive lying about. I guess I'll have to wait on freebsd or > install one of the more advanced Linux OSes Yah. We had a site with a SATA and could not install. Even though it seemed to see the drive, it could not write to it. So, that site took out the controller and put in a SCSI and all is well now. So, long live SCSI. ////jerry > -- > Robin Becker From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 18:59:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF81416A4CE for ; Sun, 15 Aug 2004 18:59:48 +0000 (GMT) Received: from cmailm3.svr.pol.co.uk (cmailm3.svr.pol.co.uk [195.92.193.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EAF743D1D for ; Sun, 15 Aug 2004 18:59:48 +0000 (GMT) (envelope-from robin@jessikat.fsnet.co.uk) Received: from modem-3256.marahu.dialup.pol.co.uk ([81.78.220.184]) by cmailm3.svr.pol.co.uk with esmtp (Exim 4.14) id 1BwQEM-0001sU-6C; Sun, 15 Aug 2004 19:59:46 +0100 Message-ID: <411FB29B.1070104@jessikat.fsnet.co.uk> Date: Sun, 15 Aug 2004 19:59:39 +0100 From: Robin Becker User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jerry McAllister References: <200408151855.i7FIts224526@clunix.cl.msu.edu> In-Reply-To: <200408151855.i7FIts224526@clunix.cl.msu.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: dell 8400 install prob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 18:59:48 -0000 Jerry McAllister wrote: >>JJB wrote: >> >>>owner-freebsd-questions@freebsd.org wrote: >>> >>> >>>>I am trying to install freebsd 4.9 on my new dell 8400. >>>> >> >>....... >> >>>I believe 4.9 can not use a sata drive as target to install on. 4.9 >>>is the old stable release 4.10 is the new stable release. Turn off >>>pnp support and ms/windows support in your pc bios. Your pc is newer >>>than what FreeBSD has added support for. Try installing to a >>>standard ATA HD. >> >>Sigh! I tried with 4.10 as well and that also fails. Sadly I don't have >>a spare IDE / drive lying about. I guess I'll have to wait on freebsd or >>install one of the more advanced Linux OSes > > > Yah. We had a site with a SATA and could not install. Even though it > seemed to see the drive, it could not write to it. So, that site > took out the controller and put in a SCSI and all is well now. So, > long live SCSI. > > ////jerry > seems that Linux support for the SMART chip sets isn't quite there yet either. I've certainly been able to get knoppix to see my hard disk XP partitions although not perhaps well enough to write them. > >>-- >>Robin Becker > > -- Robin Becker From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 19:14:18 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA10A16A5EE for ; Sun, 15 Aug 2004 19:14:18 +0000 (GMT) Received: from web61305.mail.yahoo.com (web61305.mail.yahoo.com [216.155.196.148]) by mx1.FreeBSD.org (Postfix) with SMTP id 29EA843D48 for ; Sun, 15 Aug 2004 19:14:18 +0000 (GMT) (envelope-from stheg_olloydson@yahoo.com) Message-ID: <20040815191417.74284.qmail@web61305.mail.yahoo.com> Received: from [67.34.130.149] by web61305.mail.yahoo.com via HTTP; Sun, 15 Aug 2004 12:14:17 PDT Date: Sun, 15 Aug 2004 12:14:17 -0700 (PDT) From: stheg olloydson To: ajeshjohn@fastmail.fm MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: questions@freebsd.org Subject: Re: Can't detect COM ports... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 19:14:18 -0000 it was said: >I have got a problem with my HS56 PCTel modem because I can not enable >my serial ports. The first two ports are automatically enabled, but >the third and the fourth does not get enabled. I read the handbook >and >tried to do it myself, but without success. I have connected the >modem >to the COM3 port(sio2). When I take the output of "dmesg" command I >get the following output.... Hello, Do you actually have four serial ports? Most computers come with two or less. Is the modem internal or external? If it is internal, it is almost certainly a "winmodem", meaning it needs to do signal processing through calls to the Windows OS, and most probably won't work under FBSD. If it is external, what happens if you connect to one of the ports that are detected? Regards, Stheg __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 19:24:37 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45CCC16A8D0 for ; Sun, 15 Aug 2004 19:24:37 +0000 (GMT) Received: from ylpvm01.prodigy.net (ylpvm01-ext.prodigy.net [207.115.57.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0178943D46 for ; Sun, 15 Aug 2004 19:24:37 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i7FJOZZn031265; Sun, 15 Aug 2004 15:24:36 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 21A1B5139B; Sun, 15 Aug 2004 12:24:35 -0700 (PDT) Date: Sun, 15 Aug 2004 12:24:35 -0700 From: Kris Kennaway To: Laurentiu Pancescu Message-ID: <20040815192434.GA14891@xor.obsecurity.org> References: <20040815154948.28008.qmail@web50806.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6c2NcOVqGQ03X4Wi" Content-Disposition: inline In-Reply-To: <20040815154948.28008.qmail@web50806.mail.yahoo.com> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: dealing with deffective RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 19:24:37 -0000 --6c2NcOVqGQ03X4Wi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 15, 2004 at 05:49:48PM +0200, Laurentiu Pancescu wrote: > Hello! >=20 > Both Memtest86 and Memtest86+ find some failures in > RAM (one finds 11 faults, the other 14 - most 32-bit, > but some are only 8-bit wide). How can I deal with > this in FreeBSD? Remove the defective ones and replace them - don't waste time trying to squeeze life out of the damaged hardware. They're dead, and there are probably other faults that the memory testers didn't find. Kris --6c2NcOVqGQ03X4Wi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBH7hyWry0BWjoQKURAhT4AJ9Gr5pa1qr92ehlBY3J2tJeoiFWTwCeJ+Mr 89uZzIJF5ZB9NpNLyVDCOqI= =LOnL -----END PGP SIGNATURE----- --6c2NcOVqGQ03X4Wi-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 19:38:09 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 328E116A4CF for ; Sun, 15 Aug 2004 19:38:09 +0000 (GMT) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6A2F43D2F for ; Sun, 15 Aug 2004 19:38:08 +0000 (GMT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.11.7p1+Sun/8.11.7) id i7FJc7x24711; Sun, 15 Aug 2004 15:38:07 -0400 (EDT) From: Jerry McAllister Message-Id: <200408151938.i7FJc7x24711@clunix.cl.msu.edu> To: jayobrien@att.net (Jay O'Brien) Date: Sun, 15 Aug 2004 15:38:06 -0400 (EDT) In-Reply-To: <411F9FA3.9070205@att.net> from "Jay O'Brien" at Aug 15, 2004 10:38:43 AM X-Mailer: ELM [version 2.5 PL2] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: Nathan Kinkade cc: FreeBSD - questions Subject: Re: Mount point problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 19:38:09 -0000 > > Nathan Kinkade wrote: > > > On Sun, Aug 15, 2004 at 12:39:24AM -0700, Jay O'Brien wrote: > > > >>I've changed the mount point for devices; i.e., ad0s1g > >>was /usr and now I want ad0s1f to mount on boot as /usr. > >> > >>I can't seem to get anywhere with disklabel editor in > >>single-user mode. It errors out; device busy. When I > >>start diskeditor again, mount points are shown as . > >> > >>I'm sure I'm overlooking a very basic issue, and I could > >>sure use some guidance. > >> > >>Jay O'Brien > >>Rio Linda, CA USA > > > > > > The disklabel doesnt' specify the mount point for partitions, it simply > > describes the size and number of partitions. Edit the file /etc/fstab > > to direct init how/where to mount your various partitions that the > > disklabel describes. The disklabel editor that is part of sysinstall > > asks about a mount point because it will usually need to automatically > > mount your partitions during a new install. > > > > Nathan > > > Thank you. I hadn't grasped the concept that disklabel's purpose > is on initial boot of a new system. I edited /etc/fstab as you > suggested and that fixed my problem. > > There's lots more to learn! This one can be a little confusing because in /stand/sysinstall, when it collects information to build a disk, it asks for the mount point and it sort of looks like disklabel did it. But, really, sysinstall collects that information and then runs fstab, runs disklabel, runs newfs and edits /etc/fstab all under the covers. So, when you do it yourself, then you notice the several steps that look like just one in the installer. Sort of like making it too easy for the user shorts out some learning. But, it is nice to have it on initial installs. ////jerry > > Jay > > > > _______________________________________________ > 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 Aug 15 19:38:47 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B6C316A4CF for ; Sun, 15 Aug 2004 19:38:47 +0000 (GMT) Received: from newman.alt-network.com (wsip-68-110-223-100.ks.ok.cox.net [68.110.223.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1F6743D31 for ; Sun, 15 Aug 2004 19:38:44 +0000 (GMT) (envelope-from freebsd@alt-network.com) Received: from [192.168.0.14] ([192.168.0.14])i7FJch4j025060 for ; Sun, 15 Aug 2004 14:38:43 -0500 (CDT) (envelope-from freebsd@alt-network.com) From: Justin To: freebsd-questions@freebsd.org Date: Sun, 15 Aug 2004 14:38:42 -0500 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408151438.42373.freebsd@alt-network.com> X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on newman.alt-network.com Subject: Security Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 19:38:47 -0000 For some reason this does not look right. I'm using spamassen and I keep seeing this on my console. Does anyone know if this is okay or is this a big hole in spamassen? Aug 13 09:06:14 newman kernel: spamd[57121]: info: setuid to root succeeded Aug 13 09:06:14 newman kernel: Aug 13 09:06:14 newman kernel: spamd[57121]: Still running as root: user not specified with -u, not found, or set to root. Fall back to nobody. Aug 13 09:06:14 newman kernel: Aug 13 09:07:07 newman kernel: spamd[680]: connection from localhost [127.0.0.1] at port 49431 From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 19:41:20 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D82C816AA21 for ; Sun, 15 Aug 2004 19:41:20 +0000 (GMT) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BCF843D54 for ; Sun, 15 Aug 2004 19:41:20 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.11/8.12.11) id i7FJfJEo072372; Sun, 15 Aug 2004 14:41:20 -0500 (CDT) (envelope-from dan) Date: Sun, 15 Aug 2004 14:41:19 -0500 From: Dan Nelson To: Laurentiu Pancescu Message-ID: <20040815194119.GD73391@dan.emsphone.com> References: <20040815154948.28008.qmail@web50806.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040815154948.28008.qmail@web50806.mail.yahoo.com> X-OS: FreeBSD 5.2-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.6i cc: freebsd-questions@freebsd.org Subject: Re: dealing with deffective RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 19:41:21 -0000 In the last episode (Aug 15), Laurentiu Pancescu said: > Both Memtest86 and Memtest86+ find some failures in RAM (one finds 11 > faults, the other 14 - most 32-bit, but some are only 8-bit wide). > How can I deal with this in FreeBSD? Buying new RAM modules is > probably the best choice, but I have no guarantee that the new > modules will be perfectly ok, so it might be wasted money. Under Sure you do. It's called a warranty. If it's bad, return it. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 19:51:46 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6A1D16AD85 for ; Sun, 15 Aug 2004 19:51:46 +0000 (GMT) Received: from mproxy.gmail.com (mproxy.gmail.com [216.239.56.240]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9E1143D48 for ; Sun, 15 Aug 2004 19:51:46 +0000 (GMT) (envelope-from chip.gwyn@gmail.com) Received: by mproxy.gmail.com with SMTP id w67so37905cwb for ; Sun, 15 Aug 2004 12:51:46 -0700 (PDT) Received: by 10.11.117.14 with SMTP id p14mr137091cwc; Sun, 15 Aug 2004 12:51:46 -0700 (PDT) Message-ID: <64a8ad98040815125162208342@mail.gmail.com> Date: Sun, 15 Aug 2004 15:51:38 -0400 From: token To: freebsd-questions@freebsd.org In-Reply-To: <20040814020522.57D0A43D4C@mx1.FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <20040814020522.57D0A43D4C@mx1.FreeBSD.org> Subject: Re: Bwbar for Freebsd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: token List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 19:51:47 -0000 On Sat, 14 Aug 2004 10:55:50 +1000, Steven Adams wrote: > Hi, > > Does anyone know where I can get a bwbar tool for freebsd.. > > Ive looked high and low on google.com etc and cant really find anything.. > > Example of what bwbar does > http://66.90.65.210/bandwidth/ > > I don't want to use mrtg or rrdtool because they don't show u real time > stats like bwbar does. > > thanks > Steve > > _______________________________________________ > 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" > Steve, You can get basically the same thing using systat, check the man pages.. Could also use something called darkstat: /usr/ports/net-mgmt/darkstat. --chip From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 20:28:56 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4920916A4CE for ; Sun, 15 Aug 2004 20:28:56 +0000 (GMT) Received: from priv-edtnes51.telusplanet.net (outbound04.telus.net [199.185.220.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBBCD43D1F for ; Sun, 15 Aug 2004 20:28:55 +0000 (GMT) (envelope-from aaron@daltons.ca) Received: from d137-186-239-215.abhsia.telus.net ([137.186.239.215]) by priv-edtnes51.telusplanet.netESMTP <20040815202854.WGUU29532.priv-edtnes51.telusplanet.net@d137-186-239-215.abhsia.telus.net> for ; Sun, 15 Aug 2004 14:28:54 -0600 From: Aaron Dalton To: freebsd-questions@freebsd.org Date: Sun, 15 Aug 2004 14:29:05 -0600 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408151429.05110.aaron@daltons.ca> Subject: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 20:28:56 -0000 I was running security/rkhunter and it warns me about my network card being in promiscuous mode. I have a few questions: 1) What exactly is promiscuous mode? (I've done some googling but haven't found anything really clear) 2) Why might it be considered a bad thing? 3) How do I disable it if it really is bad? 4) What are the effects of disabling it? Thank you *so much* for your time! -- Aaron Dalton http://aaron.daltons.ca From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 20:31:03 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31DF316A4CE for ; Sun, 15 Aug 2004 20:31:03 +0000 (GMT) Received: from ns1.tiadon.com (SMTP.tiadon.com [69.27.132.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id C959043D3F for ; Sun, 15 Aug 2004 20:31:02 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [69.27.131.0] ([69.27.131.0]) by ns1.tiadon.com with Microsoft SMTPSVC(6.0.3790.0); Sun, 15 Aug 2004 15:34:38 -0500 Message-ID: <411FC803.7070103@daleco.biz> Date: Sun, 15 Aug 2004 15:30:59 -0500 From: "Kevin D. Kinsey, DaleCo, S.P." User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7) Gecko/20040712 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Marco Beishuizen References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 15 Aug 2004 20:34:39.0013 (UTC) FILETIME=[493F9550:01C48307] cc: FreeBSD questions mailing list Subject: Re: Acrobat Reader 4 on alpha? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 20:31:03 -0000 Marco Beishuizen wrote: > > Hi, > > When I had 4.7-RELEASE running on my alpha I had acroread4 installed. > Now I run 4.10-RELEASE but Acroread4 isn't in the ports anymore. I have > Acroread3 installed but this version is very old and can't display > some pdf's > correctly. Unfortunately version 5 is i386 only. > > I like to use Acroread4 again on my alpha. Is this possible? > > Marco > If linux compatibility is enabled (I have to assume it was before, as Adobe doesn't port directly to *BSD) and working (again, I assume as I run on i386), you could get the tarball and try to configure/build/install from source: ftp://ftp.adobe.com/pub/adobe/acrobatreader/unix/4.x/ Of course, if linux compatibility is working, I would think you could run 5.x, also; so either there *is* a difficulty in getting it to run on your architecture (and therefore it hasn't yet been marked OK for alpha) or else the port maintainer just hasn't yet found time to set things up properly for alpha. I imagine that directing your question towards the ports@ list or perhaps even the alpha@ list might give you some insight --- but I would definitely look at the list charters first; I read neither of them and don't know if this would be "on topic" for those lists. Kevin Kinsey DaleCo, S.P. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 20:31:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD2DD16A4CE for ; Sun, 15 Aug 2004 20:31:42 +0000 (GMT) Received: from web50806.mail.yahoo.com (web50806.mail.yahoo.com [206.190.38.115]) by mx1.FreeBSD.org (Postfix) with SMTP id 689CE43D41 for ; Sun, 15 Aug 2004 20:31:42 +0000 (GMT) (envelope-from plaur_27@yahoo.de) Message-ID: <20040815203141.96877.qmail@web50806.mail.yahoo.com> Received: from [217.81.146.97] by web50806.mail.yahoo.com via HTTP; Sun, 15 Aug 2004 22:31:41 CEST Date: Sun, 15 Aug 2004 22:31:41 +0200 (CEST) From: =?iso-8859-1?q?Laurentiu=20Pancescu?= To: freebsd-questions@freebsd.org In-Reply-To: <20040815192434.GA14891@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: Re: dealing with deffective RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 20:31:43 -0000 I was afraid this is what I'll be told, you're probably right. I have two 128M modules, I'll try to find the faulty one, by running the tests just with one at a time. If it's one of them (could also be the processor, or the mainboard, right?), is it better to buy a replacement for the defective one, or just a single 256M module, to avoid mismatches between the chips? MB is a Matsonic/Chaintech 7AJA0 (I know, it's cheap and not very good - that's what Compaq decided to put inside Presario), KT833-based, hosting an Athlon 1100MHz. Thanks, Laurentiu --- Kris Kennaway schrieb: > Remove the defective ones and replace them - don't > waste time trying > to squeeze life out of the damaged hardware. > They're dead, and there > are probably other faults that the memory testers > didn't find. > > Kris ___________________________________________________________ Gesendet von Yahoo! Mail - Jetzt mit 100MB Speicher kostenlos - Hier anmelden: http://mail.yahoo.de From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 21:02:03 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D36BE16A4CE for ; Sun, 15 Aug 2004 21:02:03 +0000 (GMT) Received: from sage.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60B1C43D2D for ; Sun, 15 Aug 2004 21:02:03 +0000 (GMT) (envelope-from kline@tao.thought.org) Received: from thought.org (tao [10.0.0.247]) by sage.thought.org (8.12.10/8.12.10) with ESMTP id i7FL21FS087499; Sun, 15 Aug 2004 14:02:02 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by thought.org (8.12.11/8.12.11) with ESMTP id i7FL1xqb082037; Sun, 15 Aug 2004 14:01:59 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.12.11/8.12.11/Submit) id i7FL1wIO082036; Sun, 15 Aug 2004 14:01:58 -0700 (PDT) (envelope-from kline) Date: Sun, 15 Aug 2004 14:01:57 -0700 From: Gary Kline To: Laurentiu Pancescu Message-ID: <20040815210157.GA82003@thought.org> References: <20040815192434.GA14891@xor.obsecurity.org> <20040815203141.96877.qmail@web50806.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20040815203141.96877.qmail@web50806.mail.yahoo.com> X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 18 years of service to the Unix community User-Agent: Mutt/1.5.6i cc: freebsd-questions@freebsd.org Subject: Re: dealing with deffective RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 21:02:03 -0000 On Sun, Aug 15, 2004 at 10:31:41PM +0200, Laurentiu Pancescu wrote: > I was afraid this is what I'll be told, you're > probably right. I have two 128M modules, I'll try to > find the faulty one, by running the tests just with > one at a time. If it's one of them (could also be the > processor, or the mainboard, right?), is it better to > buy a replacement for the defective one, or just a > single 256M module, to avoid mismatches between the > chips? MB is a Matsonic/Chaintech 7AJA0 (I know, it's > cheap and not very good - that's what Compaq decided > to put inside Presario), KT833-based, hosting an > Athlon 1100MHz. If you're as cheap/thrify as many of us, it may seem worth the effort to test. But it's pretty likely that if one of your 128 sticks is one, the other one will soon follow. Nutshell, Kris is right. If your time is utterly free, go ahead. I've learned that it pays to bite the bullet and buy new and top-rated memory. I'd go for a 256MB stick if/when you want to upgrade. (sign me "been-there") || gary > > Thanks, > Laurentiu > > --- Kris Kennaway schrieb: > > Remove the defective ones and replace them - don't > > waste time trying > > to squeeze life out of the damaged hardware. > > They're dead, and there > > are probably other faults that the memory testers > > didn't find. > > > > Kris > > > > > -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 21:03:45 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15E8016A4CE for ; Sun, 15 Aug 2004 21:03:45 +0000 (GMT) Received: from smtp18.wxs.nl (smtp18.wxs.nl [195.121.6.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CB6943D41 for ; Sun, 15 Aug 2004 21:03:44 +0000 (GMT) (envelope-from marco@beishuizen.info) Received: from tsunami.bsd (ipd50a233c.speed.planet.nl [213.10.35.60]) by smtp18.wxs.nl (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0I2I00CPNAHV9Y@smtp18.wxs.nl> for questions@freebsd.org; Sun, 15 Aug 2004 23:03:31 +0200 (CEST) Date: Sun, 15 Aug 2004 23:03:31 +0200 (CEST) From: Marco Beishuizen In-reply-to: <411FC803.7070103@daleco.biz> Sender: marco@tsunami.bsd To: "Kevin D. Kinsey, DaleCo, S.P." Message-id: MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=US-ASCII; format=flowed Content-transfer-encoding: 7BIT FreeBSD: Homepage: References: <411FC803.7070103@daleco.biz> cc: FreeBSD questions mailing list Subject: Re: Acrobat Reader 4 on alpha? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Marco Beishuizen List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 21:03:45 -0000 On stardate Sun, 15 Aug 2004, the wise Kevin D. Kinsey, DaleCo, S.P. entered: > If linux compatibility is enabled (I have to assume it was before, as > Adobe doesn't port directly to *BSD) and working (again, I assume > as I run on i386), you could get the tarball and try to > configure/build/install > from source: > > ftp://ftp.adobe.com/pub/adobe/acrobatreader/unix/4.x/ > > Of course, if linux compatibility is working, I would think you could > run 5.x, also; so either there *is* a difficulty in getting it to run on > your architecture (and therefore it hasn't yet been marked OK for > alpha) or else the port maintainer just hasn't yet found time to set > things up properly for alpha. Linux compatibility doesn't work on my alpha. The acroread version that worked was the dec/osf one, with osf compatibility enabled. But just downloading and installing this version from the Adobe site doesn't work also. The ports version had a patch to get it to work. > I imagine that directing your question > towards the ports@ list or perhaps even the alpha@ list might give > you some insight --- but I would definitely look at the list charters > first; I read neither of them and don't know if this would be "on topic" > for those lists. I looked at the mailing list archives but couldn't find anything about this. I did send this mail to the alpha list first but I didn't get any answer, so sent it also to the questions list. A lot more people read it, perhaps also someone that has a solution. Marco -- Q: How many IBM cpu's does it take to do a logical right shift? A: 33. 1 to hold the bits and 32 to push the register. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 21:08:08 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A767416A4CE for ; Sun, 15 Aug 2004 21:08:08 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8071A43D3F for ; Sun, 15 Aug 2004 21:08:08 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 5B29169A71; Sun, 15 Aug 2004 17:08:07 -0400 (EDT) Date: Sun, 15 Aug 2004 17:08:06 -0400 From: Bill Moran To: Aaron Dalton Message-Id: <20040815170806.45fcb779.wmoran@potentialtech.com> In-Reply-To: <200408151429.05110.aaron@daltons.ca> References: <200408151429.05110.aaron@daltons.ca> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 21:08:08 -0000 Aaron Dalton wrote: > I was running security/rkhunter and it warns me about my network card > being in > promiscuous mode. I have a few questions: > 1) What exactly is promiscuous mode? (I've done some googling but haven't > found anything really clear) Promiscuous mode means the network card sends all traffic received to the kernel for processing, even if it wasn't destin for the MAC address of that card. In normal mode, traffic not destin for that card is dropped and the kernel never sees it. > 2) Why might it be considered a bad thing? Once the card is placed in promiscuous mode, users on your system can use packet sniffers to sniff network traffic without needing root privs on your system. The NIC is promiscuous for the whole machine. > 3) How do I disable it if it really is bad? ifconfig should allow you to do this. > 4) What are the effects of disabling it? Pretty much the reverse of #2. If you're running may types of scanning software, or network sniffers, they will put the card in promisc mode. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 21:11:56 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC06A16A4CE for ; Sun, 15 Aug 2004 21:11:56 +0000 (GMT) Received: from redqueen.elvandar.org (cust.94.120.adsl.cistron.nl [195.64.94.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D98643D53 for ; Sun, 15 Aug 2004 21:11:56 +0000 (GMT) (envelope-from remko@elvandar.org) Received: from [10.0.2.122] (nimrod.elvandar.intranet [10.0.2.122]) by redqueen.elvandar.org (Postfix) with ESMTP id BA22510685E; Sun, 15 Aug 2004 23:11:52 +0200 (CEST) Message-ID: <411FD199.6050704@elvandar.org> Date: Sun, 15 Aug 2004 23:11:53 +0200 From: Remko Lodder X-Accept-Language: en-us, en MIME-Version: 1.0 To: Aaron Dalton References: <200408151429.05110.aaron@daltons.ca> In-Reply-To: <200408151429.05110.aaron@daltons.ca> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at elvandar.org cc: freebsd-questions@freebsd.org Subject: Re: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 21:11:56 -0000 Aaron Dalton wrote: > I was running security/rkhunter and it warns me about my network card being in > promiscuous mode. I have a few questions: > 1) What exactly is promiscuous mode? (I've done some googling but haven't > found anything really clear) > 2) Why might it be considered a bad thing? > 3) How do I disable it if it really is bad? > 4) What are the effects of disabling it? > > Thank you *so much* for your time! Hi Aaron, 1) Promiscuous mode means that your network is dumping it packets somewhere, normally they get transported. Now the added feature is that a application like tcpdump can display the packets and with the correct options (tcpdump -X for example) you can even see what's inside the packets. If you do plain auth authorization it is possible with a 'sniffer' (which puts your network into promisc. mode) to see what the username and password of the user is, so using those credentials to do something evil. 2) see above 3) ifconfig -a (check which has PROMISC in it) ifconfig interfacename -promisc turns the promisc mode off 4) the application that enabled promisc probably not functioning correctly anymore, which is perhaps good thing. Are you running any IDS'es or something that you know? since they also put the network into promisc mode. Cheers! -- Kind regards, Remko Lodder |remko@elvandar.org Reporter DSINet |remko@dsinet.org Projectleader Mostly-Harmless |remko@mostly-harmless.nl From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 21:22:06 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27CDB16A4CE for ; Sun, 15 Aug 2004 21:22:06 +0000 (GMT) Received: from smtp.volant.org (gate.volant.org [207.111.218.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 025D543D2F for ; Sun, 15 Aug 2004 21:22:06 +0000 (GMT) (envelope-from patl+freebsd@volant.org) Received: from 64-144-229-193.client.dsl.net ([64.144.229.193] helo=[192.168.0.22]) by smtp.volant.org with asmtp (TLSv1:AES256-SHA:256) (Exim 4.34 (FreeBSD)) id 1BwSRy-000Hjc-17; Sun, 15 Aug 2004 14:21:59 -0700 Date: Sun, 15 Aug 2004 14:22:02 -0700 From: Pat Lashley To: "Paul A. Hoadley" , freebsd-questions@freebsd.org Message-ID: <78D3657555876AE17CEE2ECD@vanvoght.phoenix.volant.org> In-Reply-To: <20040815030001.GF25751@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> <20040815030001.GF25751@grover.logicsquad.net> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Scan-Signature: c941ae0de77a8e12c43e7c810e5145e2867ddaed X-Spam-User: nobody X-Spam-Score: -4.9 (----) X-Spam-Score-Int: -48 X-Spam-Report: This mail has matched the spam-filter tests listed below. See http://spamassassin.org/tag/ for details about the specific tests reported. In general, the higher the number of total points, the more likely that it actually is spam. (The 'required' number of points listed below is the arbitrary number above which the message is normally considered spam.) Content analysis details: (-4.9 points total, 5.0 required) -4.9 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] 0.0 AWL AWL: Auto-whitelist adjustment Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 21:22:06 -0000 --On Sunday, August 15, 2004 12:30:01 +0930 "Paul A. Hoadley" wrote: > Good question---without context, my claim that I can do nothing else > seems wrong. What I should have said is "given I have an interest in > collecting all the spams to non-existent addresses, I don't think I > can make qmail do anything other than deliver it to the new/ subdir of > a Maildir." Could you create a user to get them; and give that user a procmail (or similar) delivery-time script to file them into subdirs based on some arbitrary characteristic? > IMHO, these messages should be _rejected_ at the SMTP session, though > (AFAICS) qmail won't do this (without being patched). (I am sure I > once read a "security" justification for this behaviour, though I > can't seem to find any justification for it at all now. I am willing > to be convinced otherwise, but IMHO, accepting these messages is bogus > behaviour.) Anyway, I was about to embark on tracking down a patch to > do SMTP-level rejection, when I decided I would just funnel them into > a Maildir and use them later to train Bogofilter, or whatever. Just FYI, Exim, with the ExiScan patches, can reject at SMTP time; and also has a 'fakereject' capability which tells the sender that the message has been rejected; but actually delivers it. -Pat From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 21:23:29 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31EF716A4CE for ; Sun, 15 Aug 2004 21:23:29 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BD3643D2F for ; Sun, 15 Aug 2004 21:23:29 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 310E569A71; Sun, 15 Aug 2004 17:23:28 -0400 (EDT) Date: Sun, 15 Aug 2004 17:23:27 -0400 From: Bill Moran To: freebsd-questions@freebsd.org Message-Id: <20040815172327.350e31e0.wmoran@potentialtech.com> In-Reply-To: <20040815160407.GA941@gicco.homeip.net> References: <20040815160407.GA941@gicco.homeip.net> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: hampi@rootshell.be Subject: Re: kernel module configuration X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 21:23:29 -0000 Hanspeter Roth wrote: > Hello, > > in the kernel configuration one can enable various devices by the > respective 'device' statement. It seems that most drivers go into > the kernel directly. Some drivers such as 'acpi' produce a kernel > module. > How is determined which modules become built in and which become > modules? By the config file. If you enable the module in the config, it is built into the kernel, otherwise a kld is generated. > Can I have 'ohci' as a kernel module? Whether or not a specific feature is capable of operating as a kernel module or built in is specific to that feature. Some work very well in either capacity (the FAT filesystem drivers for example) others don't really work compiled into the kernel (vinum) and many others _must_ be compiled into the kernel for them to work correctly (ISA and PCI support, I believe) I don't know specifically about ohci, but the man page for ohci would be the first place to check. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 22:03:15 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 445F716A4CE for ; Sun, 15 Aug 2004 22:03:15 +0000 (GMT) Received: from priv-edtnes57.telusplanet.net (outbound01.telus.net [199.185.220.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBE3A43D31 for ; Sun, 15 Aug 2004 22:03:14 +0000 (GMT) (envelope-from aaron@daltons.ca) Received: from d137-186-239-215.abhsia.telus.net ([137.186.239.215]) by priv-edtnes57.telusplanet.netESMTP <20040815220314.BLBA1328.priv-edtnes57.telusplanet.net@d137-186-239-215.abhsia.telus.net>; Sun, 15 Aug 2004 16:03:14 -0600 From: Aaron Dalton To: Bill Moran , Remko Lodder Date: Sun, 15 Aug 2004 16:03:26 -0600 User-Agent: KMail/1.6.2 References: <200408151429.05110.aaron@daltons.ca> <20040815170806.45fcb779.wmoran@potentialtech.com> In-Reply-To: <20040815170806.45fcb779.wmoran@potentialtech.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408151603.26022.aaron@daltons.ca> cc: freebsd-questions@freebsd.org Subject: Re: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 22:03:15 -0000 Thank you so much for your replies! This makes much more sense now. I am currently running Snort. I will examine its documentation to see if promiscuous mode is really necessary. In the meantime, am I correct in assuming the only threat is from local users? If so, currently all users are trusted so I shant panic just yet. Thank you again for your help! -- Aaron Dalton http://aaron.daltons.ca From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 22:19:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4228216A4CE for ; Sun, 15 Aug 2004 22:19:48 +0000 (GMT) Received: from ns1.tiadon.com (SMTP.tiadon.com [69.27.132.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8C9243D2D for ; Sun, 15 Aug 2004 22:19:47 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [69.27.131.0] ([69.27.131.0]) by ns1.tiadon.com with Microsoft SMTPSVC(6.0.3790.0); Sun, 15 Aug 2004 17:23:24 -0500 Message-ID: <411FE180.3070006@daleco.biz> Date: Sun, 15 Aug 2004 17:19:44 -0500 From: "Kevin D. Kinsey, DaleCo, S.P." User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7) Gecko/20040712 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Aaron Dalton References: <200408151429.05110.aaron@daltons.ca> <20040815170806.45fcb779.wmoran@potentialtech.com> <200408151603.26022.aaron@daltons.ca> In-Reply-To: <200408151603.26022.aaron@daltons.ca> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 15 Aug 2004 22:23:24.0591 (UTC) FILETIME=[7ACBC3F0:01C48316] cc: Remko Lodder cc: Bill Moran cc: freebsd-questions@freebsd.org Subject: Re: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 22:19:48 -0000 Aaron Dalton wrote: >Thank you so much for your replies! This makes much more sense now. > >I am currently running Snort. I will examine its documentation to see if >promiscuous mode is really necessary. > > > It is. >In the meantime, am I correct in >assuming the only threat is from local users? > > Yes. >If so, currently all users are >trusted so I shant panic just yet. > > Hmm, "the human heart is a dangerous thing." ;-) Kevin Kinsey DaleCo, S.P. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 22:25:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69AFC16A4CE for ; Sun, 15 Aug 2004 22:25:48 +0000 (GMT) Received: from redqueen.elvandar.org (cust.94.120.adsl.cistron.nl [195.64.94.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id C486343D46 for ; Sun, 15 Aug 2004 22:25:47 +0000 (GMT) (envelope-from remko@elvandar.org) Received: from [10.0.2.122] (nimrod.elvandar.intranet [10.0.2.122]) by redqueen.elvandar.org (Postfix) with ESMTP id B86E710685E; Mon, 16 Aug 2004 00:25:44 +0200 (CEST) Message-ID: <411FE2E9.1090704@elvandar.org> Date: Mon, 16 Aug 2004 00:25:45 +0200 From: Remko Lodder X-Accept-Language: en-us, en MIME-Version: 1.0 To: Aaron Dalton References: <200408151429.05110.aaron@daltons.ca> <20040815170806.45fcb779.wmoran@potentialtech.com> <200408151603.26022.aaron@daltons.ca> In-Reply-To: <200408151603.26022.aaron@daltons.ca> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at elvandar.org cc: Bill Moran cc: freebsd-questions@freebsd.org Subject: Re: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 22:25:48 -0000 Aaron Dalton wrote: > Thank you so much for your replies! This makes much more sense now. > > I am currently running Snort. I will examine its documentation to see if > promiscuous mode is really necessary. In the meantime, am I correct in > assuming the only threat is from local users? If so, currently all users are > trusted so I shant panic just yet. > > Thank you again for your help! Snort uses promisc to capture the packets off the line and examine them. So this needs to be turned on in able to do some productive things :) turning it off will disable snort actually. Reminder for bill: sniffing via bpf requires the same privileges whether promisc. is set or not, so you always need to be root for sniffing data of the line, that is when the permissions is not tampered with :). Thanks #bsddocs (simon ;)) -- Kind regards, Remko Lodder |remko@elvandar.org Reporter DSINet |remko@dsinet.org Projectleader Mostly-Harmless |remko@mostly-harmless.nl From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 22:32:07 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9590E16A4CE for ; Sun, 15 Aug 2004 22:32:07 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B47E43D46 for ; Sun, 15 Aug 2004 22:32:07 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 7265D69A71; Sun, 15 Aug 2004 18:32:06 -0400 (EDT) Date: Sun, 15 Aug 2004 18:32:05 -0400 From: Bill Moran To: Remko Lodder Message-Id: <20040815183205.66b753cd.wmoran@potentialtech.com> In-Reply-To: <411FE2E9.1090704@elvandar.org> References: <200408151429.05110.aaron@daltons.ca> <20040815170806.45fcb779.wmoran@potentialtech.com> <200408151603.26022.aaron@daltons.ca> <411FE2E9.1090704@elvandar.org> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 22:32:07 -0000 Remko Lodder wrote: > Reminder for bill: sniffing via bpf requires the same privileges whether > promisc. is set or not, so you always need to be root for sniffing data > of the line, that is when the permissions is not tampered with :). > Thanks #bsddocs (simon ;)) Really? Then I stand corrected. If that's the case, though, what _is_ the administrative danger of running in PROMISC mode? -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 22:36:06 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6345216A4CE for ; Sun, 15 Aug 2004 22:36:06 +0000 (GMT) Received: from gremlin.internode.com.au (gremlin.internode.com.au [192.83.231.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42F9C43D1D for ; Sun, 15 Aug 2004 22:36:05 +0000 (GMT) (envelope-from adam@internode.com.au) Received: from gremlin.bugman.cx (localhost [127.0.0.1]) by gremlin (8.12.10/8.12.10) with ESMTP id i7E3dlOh013554; Sat, 14 Aug 2004 13:09:47 +0930 (CST) (envelope-from adam@internode.com.au) Received: (from adam@localhost) by gremlin.bugman.cx (8.12.10/8.12.10/Submit) id i7E3dkDq013553; Sat, 14 Aug 2004 13:09:46 +0930 (CST) (envelope-from adam@internode.com.au) X-Authentication-Warning: gremlin.bugman.cx: adam set sender to adam@internode.com.au using -f Date: Sat, 14 Aug 2004 13:09:46 +0930 From: Adam Smith To: Your Name Message-ID: <20040814033946.GD11063@internode.com.au> References: <20040814033546.13866.qmail@web53407.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040814033546.13866.qmail@web53407.mail.yahoo.com> X-Face: $vsV$1FNbZN\JVpjV#&+/!oVW`Kw$j?w_,te\SS}(tKD21c+l$t%\RCS(r$G; XXk]6,(!N:&(N3EV0bY`3):UrgG7'*qsj3l.75IaHV1<`i*{[L\:F*l6fH##C:-p2]xW/R-Z:!bo; 5g3GP-{I{}7O>tN}`Xm/=-:8NG?f-r'$Qc3y[aW-7'W_S<`KYU!_; `7K=kuC$-.7J2*kk=~`c@ADp+xhsv(!a@eW-R_5wtx+tC)(]%W+ User-Agent: Mutt/1.5.6i cc: freebsd-questions@freebsd.org Subject: Re: Updating Emacs without installing X? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 22:36:06 -0000 On Fri, Aug 13, 2004 at 08:35:46PM -0700, Your Name said: > i have a server that's running FreeBSD 4.7 and the security patches are > up to date but most software hasn't been upgraded in a long time. im > trying to do some basic maintenance and there are some problems. > > First i want to upgrade Emacs from an older version, but when i try to do > this from ports it starts trying to install a whole bunch of X stuff. > This is just a server box, and i dont want to have _any_ X running on it. > Is there a way i can get Emacs current? i didn't originally set this > machine up, but Emacs is installed from Ports and theres no X on the > machine, so i dont know how it was originally done. Set WITHOUT_X11=true on your make command, or set the same flag in /etc/make.conf which will pass it to all future makes. By the way, your emails are coming through with your first and last name set to "Your Name." -- Adam Smith Internode : http://www.internode.on.net Phone : (08) 8228 2999 Dog for sale: Eats lots and is fond of children. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 22:42:43 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DCEC16A4CE for ; Sun, 15 Aug 2004 22:42:43 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A92443D2F for ; Sun, 15 Aug 2004 22:42:43 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 3BE4B69A8C; Sun, 15 Aug 2004 18:42:42 -0400 (EDT) Date: Sun, 15 Aug 2004 18:42:41 -0400 From: Bill Moran To: "Hakim Z. Singhji" Message-Id: <20040815184241.58f08057.wmoran@potentialtech.com> In-Reply-To: <411EDD20.6090305@earthlink.net> References: <411EDD20.6090305@earthlink.net> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: NAT / ipfw / GW - FreeBSD 4.10 to Linux Private Network??? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 22:42:43 -0000 "Hakim Z. Singhji" wrote: > Hello All, > > So with the help of all of you I have configure my FreeBSD 4.10 gateway. > I am able to ping, tracerout, ssh and call webpages with a fully > functioning DHCP client. I thank all of you from the bottom of my heart, > those of you that helped me out... its been hardwork and late nights (or > early mornings) building these computers from scratch and then > introducing them with Linux and FreeBSD OS's which I have only a > combined year of experience. > > With that said I have come to the final component of my network... the > NAT component. I was trying to play around with it until I found out > that I really didn't know what I was doing... so here I am again. > > I'm trying to configure one box through NAT via my FreeBSD gateway. I > figure after I do it once I'll be able to tweak it for the rest of my > machines. This is my set up > > [internet] --------------------- [firewall/gateway] -- [ linux box ] > 24.199.105.0 --> 192.168.1.1 -> 192.168.1.3 > ( dc0 ) ( txp0 ) ( eth0 ) > > I'm trying to get internet connection for my linux box, You simply need to set 192.168.1.1 as the Linux box's default gateway and set up the appropriate DNS servers in resolv.conf > and I also want > all pop3, smtp and http passed to my linux box as well. You'll need to set up port forwarding. See the man page for natd and pay close attention to the redirect_port diretive. If you're going to have many set up (as it seems you will) it's usually easier to put them in a config file and tell natd to read it's config from that file. > The freebsd box > is setup to be headless once I get this configured properly. In addition > I would like SSH2 to be able to tunnel from box to box as well as SSH2 > outside my network with my Linux box. Port forwarding again. But you'll have to use a non-standard port or you'll hit a conflict between sshd on the FreeBSD box and trying to forward sshd to the Linux box. Something like redirect_port tcp 192.168.1.3:22 2222 Then if you ssh with defaults to the gateway, you'll log in to the gateway, and if you ssh to port 2222, you'll ssh to the Linux box. > I have attached my config files for ipfw.rules, rc.conf, and natd.conf > however natd.conf is where I am "lost" I don't exactly know the rules > for natd.conf. I reviewed my resources: "The Complete FreeBSD" by Greg > Lehey and "Absolute BSD" by Michael Lucas however there was not much on > the actual syntax. If someone could help me in these areas it would be > greatly appreciated. Thanks in advance... On the FreeBSD box, to forward all traffic on port 80 to the linux box: redirect_port tcp 192.168.1.3:80 80 The other ports follow the same pattern. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 22:57:21 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BCBB16A4CE for ; Sun, 15 Aug 2004 22:57:21 +0000 (GMT) Received: from rwcrmhc13.comcast.net (rwcrmhc13.comcast.net [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2B3443D53 for ; Sun, 15 Aug 2004 22:57:20 +0000 (GMT) (envelope-from alex.thomas@terrabytetech.com) Received: from [192.168.0.3] (c-24-0-24-56.client.comcast.net[24.0.24.56]) by comcast.net (rwcrmhc13) with ESMTP id <2004081522572001500969v7e>; Sun, 15 Aug 2004 22:57:20 +0000 Message-ID: <411FEA61.3020608@terrabytetech.com> Date: Sun, 15 Aug 2004 17:57:37 -0500 From: Alex Thomas User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Error Compiling cyrus-sasl2-saslauthd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 22:57:21 -0000 Trying to complie cyrus-sasl2-saslauthd from ports. Ports collection is up to date. ------------------------------------------------------------------------------------------- Dependency warning: used OpenSSL version contains known vulnerabilities Please update or define either WITH_OPENSSL_BASE or WITH_OPENSSL_PORT *** Error code 1 Stop in /usr/ports/security/cyrus-sasl2-saslauthd. ------------------------------------------------------------------------------------------- Checked version of OpenSSL that is installed to /usr/bin/openssl : OpenSSL 0.9.7c 30 Sep 2003 The most recent version in ports shows the same version. System is FreeBSD 5.2.1 fresh install. Thanks From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 23:39:58 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 812A316A4CE for ; Sun, 15 Aug 2004 23:39:58 +0000 (GMT) Received: from web52408.mail.yahoo.com (web52408.mail.yahoo.com [206.190.39.116]) by mx1.FreeBSD.org (Postfix) with SMTP id 0368D43D1D for ; Sun, 15 Aug 2004 23:39:58 +0000 (GMT) (envelope-from probsdorg@yahoo.com) Message-ID: <20040815233957.23642.qmail@web52408.mail.yahoo.com> Received: from [24.199.182.230] by web52408.mail.yahoo.com via HTTP; Sun, 15 Aug 2004 16:39:57 PDT Date: Sun, 15 Aug 2004 16:39:57 -0700 (PDT) From: probsd org To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: capturing streaming audio X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 23:39:58 -0000 I used a port about 2 years ago that would connect to a remote streaming audio server and record all data into mp3 files. However, I cannot for the life of me remember it's name or find it, anybody remember this port? Michael __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 23:56:57 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B0CB16A4CE for ; Sun, 15 Aug 2004 23:56:57 +0000 (GMT) Received: from smtp.knology.net (smtp.knology.net [24.214.63.101]) by mx1.FreeBSD.org (Postfix) with SMTP id CC99A43D1F for ; Sun, 15 Aug 2004 23:56:56 +0000 (GMT) (envelope-from dkelly@HiWAAY.net) Received: (qmail 11802 invoked by uid 0); 15 Aug 2004 23:57:17 -0000 Received: from user-69-73-60-132.knology.net (HELO ?10.0.0.68?) (69.73.60.132) by smtp6.knology.net with SMTP; 15 Aug 2004 23:57:17 -0000 In-Reply-To: <411F7B31.2050507@jessikat.fsnet.co.uk> References: <411F7B31.2050507@jessikat.fsnet.co.uk> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: David Kelly Date: Sun, 15 Aug 2004 18:56:51 -0500 To: Robin Becker X-Mailer: Apple Mail (2.619) cc: FreeBSD_Questions FreeBSD_Questions Subject: Re: dell 8400 install prob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 23:56:57 -0000 On Aug 15, 2004, at 10:03 AM, Robin Becker wrote: > Sigh! I tried with 4.10 as well and that also fails. Sadly I don't > have a spare IDE / drive lying about. I guess I'll have to wait on > freebsd or install one of the more advanced Linux OSes I didn't *install* on my SATA drives on Dell PowerEdge 400SC, but FreeBSD 5.2.1 didn't have any issues with them. Brought them up fresh out of their antistatic bags with the 5.2.1 installer CDROM. Don't believe I'm having any issues with the *drives* but vinum doesn't always remember their striped volume configuration between boots. Not sure how similar the 400SC is to your 8400. The 400SC does not have ATA RAID on the motherboard. -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Top posters will not be shown the honor of a reply. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 00:32:41 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4978E16A4CE for ; Mon, 16 Aug 2004 00:32:41 +0000 (GMT) Received: from web50307.mail.yahoo.com (web50307.mail.yahoo.com [206.190.38.61]) by mx1.FreeBSD.org (Postfix) with SMTP id 053CF43D2F for ; Mon, 16 Aug 2004 00:32:41 +0000 (GMT) (envelope-from murcielako@yahoo.com) Message-ID: <20040816003240.24298.qmail@web50307.mail.yahoo.com> Received: from [200.116.9.102] by web50307.mail.yahoo.com via HTTP; Sun, 15 Aug 2004 19:32:40 CDT Date: Sun, 15 Aug 2004 19:32:40 -0500 (CDT) From: "=?iso-8859-1?q?Jorge=20Mario=20G.?=" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: NDISulator (project evil) installation on 5.2.1??? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 00:32:41 -0000 Hi there I Have a card that is supported by the ndisulator but it sais it's only available in -CURRENT I'm running FreeBSD-5.2.1-p9 is there any way to install the ndisulator? thanks jorge ===== _________________________________________________________ Do You Yahoo!? Información de Estados Unidos y América Latina, en Yahoo! Noticias. Visítanos en http://noticias.espanol.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 01:04:57 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE7BB16A4CE for ; Mon, 16 Aug 2004 01:04:57 +0000 (GMT) Received: from server.rucus.ru.ac.za (server.rucus.ru.ac.za [146.231.115.1]) by mx1.FreeBSD.org (Postfix) with SMTP id C84E043D46 for ; Mon, 16 Aug 2004 01:04:55 +0000 (GMT) (envelope-from oxo@rucus.ru.ac.za) Received: (qmail 84050 invoked from network); 16 Aug 2004 01:04:53 -0000 Received: from shell-em0.rucus.ru.ac.za (oxo@10.0.0.1) by server-em0.rucus.ru.ac.za with QMQP; 16 Aug 2004 01:04:53 -0000 Date: Mon, 16 Aug 2004 03:04:53 +0200 From: John Oxley To: questions@FreeBSD.org Message-ID: <20040816010453.GC49855@rucus.ru.ac.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: anjuta X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 01:04:57 -0000 I have installed anjuta 1.2.2 from ports and am getting some odd errors: It complains that libtool is not installed but I have installed as dependencies both libtool13 and libtool15. When I symlink /usr/local/bin/libtool15 to libtool and do the same for libtoolize, the autogen.sh script works but configure is failing with: loading cache /dev/null within ltconfig ltconfig: you must specify a host type if you use `--no-verify' Try `ltconfig --help' for more information. configure: error: libtool configure failed Can anyone help me TIA, -Ox -- /~\ The ASCII ASCII stupid question, get a EBCDIC ANSI. \ / Ribbon Campaign John Oxley X Against HTML http://oxo.rucus.net/ / \ Email! oxo rucus.ru.ac.za "Personally, I'd rather pay for my freedom than live in a bitmapped, pop-up-happy dungeon like NT." -- Thomas Scoville From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 01:23:29 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F34F616A4CE for ; Mon, 16 Aug 2004 01:23:28 +0000 (GMT) Received: from mtiwmhc13.worldnet.att.net (mtiwmhc13.worldnet.att.net [204.127.131.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BFB043D2D for ; Mon, 16 Aug 2004 01:23:28 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc13) with ESMTP id <2004081601230511300svgkce> (Authid: jayobrien@att.net); Mon, 16 Aug 2004 01:23:06 +0000 Message-ID: <41200C8D.8000907@att.net> Date: Sun, 15 Aug 2004 18:23:25 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: root access to ftp, telnet X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 01:23:29 -0000 I'm trying to replicate a successful FreeBSD installation on a new HD with a different file structure. I am able to access the FreeBSD machine over my LAN as a user, but not as root. This is true for both ftp and telnet. I can access it fine as root, either ftp or telnet, when I plug in the old HD with the successful build. I can't find anything I'm doing differently with the new HD. The ftp connect as root is rejected outright, yet a user connect works fine. After I first connect via telnet as a user and attempt su, the response is "you are not in the correct group (wheel) to su root." I'm using 4.10. Help please? Jay O'Brien Rio Linda, CA USA From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 01:36:49 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1030A16A4CE for ; Mon, 16 Aug 2004 01:36:49 +0000 (GMT) Received: from rwcrmhc13.comcast.net (rwcrmhc13.comcast.net [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA77443D3F for ; Mon, 16 Aug 2004 01:36:48 +0000 (GMT) (envelope-from alex.thomas@terrabytetech.com) Received: from [192.168.0.3] (c-24-0-24-56.client.comcast.net[24.0.24.56]) by comcast.net (rwcrmhc13) with ESMTP id <20040816013648015008tvr2e>; Mon, 16 Aug 2004 01:36:48 +0000 Message-ID: <41200FC2.7070208@terrabytetech.com> Date: Sun, 15 Aug 2004 20:37:06 -0500 From: Alex Thomas User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <411FEA61.3020608@terrabytetech.com> In-Reply-To: <411FEA61.3020608@terrabytetech.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Error Compiling cyrus-sasl2-saslauthd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 01:36:49 -0000 I found my problem. Current version of OpenSSL is 0.9.7d. Downloaded package of it off FreeBSD.org. Question now is, Why is my ports list so out of date? Just installed system today. Alex Thomas wrote: > Trying to complie cyrus-sasl2-saslauthd from ports. Ports collection > is up to date. > ------------------------------------------------------------------------------------------- > > Dependency warning: used OpenSSL version contains known vulnerabilities > Please update or define either WITH_OPENSSL_BASE or WITH_OPENSSL_PORT > *** Error code 1 > > Stop in /usr/ports/security/cyrus-sasl2-saslauthd. > ------------------------------------------------------------------------------------------- > > Checked version of OpenSSL that is installed to /usr/bin/openssl : > OpenSSL 0.9.7c 30 Sep 2003 > > The most recent version in ports shows the same version. > System is FreeBSD 5.2.1 fresh install. > Thanks > _______________________________________________ > 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 Aug 16 01:40:24 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C80416A4CE for ; Mon, 16 Aug 2004 01:40:24 +0000 (GMT) Received: from web53401.mail.yahoo.com (web53401.mail.yahoo.com [206.190.37.48]) by mx1.FreeBSD.org (Postfix) with SMTP id B388143D45 for ; Mon, 16 Aug 2004 01:40:23 +0000 (GMT) (envelope-from bg271828@yahoo.com) Message-ID: <20040816014023.61927.qmail@web53401.mail.yahoo.com> Received: from [66.65.181.33] by web53401.mail.yahoo.com via HTTP; Sun, 15 Aug 2004 18:40:23 PDT Date: Sun, 15 Aug 2004 18:40:23 -0700 (PDT) From: Your Name To: Adam Smith In-Reply-To: <20040814033946.GD11063@internode.com.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-questions@freebsd.org Subject: Re: Updating Emacs without installing X? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 01:40:24 -0000 --- Adam Smith wrote: > On Fri, Aug 13, 2004 at 08:35:46PM -0700, Your Name > said: > > This is just a server box, and i dont want to have > _any_ X running on it. > > Is there a way i can get Emacs current? i didn't > originally set this > > machine up, but Emacs is installed from Ports and > theres no X on the > > machine, so i dont know how it was originally > done. > > Set WITHOUT_X11=true on your make command, or set > the same flag in > /etc/make.conf which will pass it to all future > makes. Many thanks! i did this and it worked just great. Thanks to you and others who replied. > By the way, your emails are coming through with your > first and last name set to "Your Name." Yes--i tried to fix this but its not coming through. Yahoo calls me by the right name but i cant seem to get it to work on outgoing email. Sorry! Jen Nussbaum __________________________________ Do you Yahoo!? Y! Messenger - Communicate in real time. Download now. http://messenger.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 01:56:52 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEEA116A4CE for ; Mon, 16 Aug 2004 01:56:52 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92F1B43D1D for ; Mon, 16 Aug 2004 01:56:52 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id B399369A71; Sun, 15 Aug 2004 21:56:51 -0400 (EDT) Date: Sun, 15 Aug 2004 21:56:50 -0400 From: Bill Moran To: Jay O'Brien Message-Id: <20040815215650.6dd9309d.wmoran@potentialtech.com> In-Reply-To: <41200C8D.8000907@att.net> References: <41200C8D.8000907@att.net> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: questions@freebsd.org Subject: Re: root access to ftp, telnet X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 01:56:52 -0000 Jay O'Brien wrote: > I'm trying to replicate a successful FreeBSD installation > on a new HD with a different file structure. I am able to > access the FreeBSD machine over my LAN as a user, but not > as root. This is true for both ftp and telnet. I do not use telnet or FTP because neither are secure, however, I believe root access through these protocols is denied by default. I know root access is denied via ssh. Off the top of my head, I'm not sure how to allow root access through FTP and telnet, but I'm sure the associated config files will have an option to allow it. It would be wise to take a hint, however, and NOT allow it, as it' is not secure. > The ftp connect as root is rejected outright, yet a user > connect works fine. Sounds like a correct configuration > After I first connect via telnet as a user and attempt su, > the response is "you are not in the correct group (wheel) > to su root." Add the user to the wheel group who you want to be able su. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 02:10:47 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86E9E16A4CE for ; Mon, 16 Aug 2004 02:10:47 +0000 (GMT) Received: from lists.freedombi.com (gllug.org [207.179.98.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06B4C43D66 for ; Mon, 16 Aug 2004 02:10:46 +0000 (GMT) (envelope-from charles@idealso.com) Received: by lists.freedombi.com (Postfix, from userid 1000) id CF2897256C; Sun, 15 Aug 2004 22:10:45 -0400 (EDT) Received: from freedombi.com (localhost [192.168.10.108]) by lists.freedombi.com (Postfix) with SMTP id 1B0E572491 for ; Sun, 15 Aug 2004 22:10:44 -0400 (EDT) Received: from 207.179.91.96 (SquirrelMail authenticated user charles) by freedombi.com with HTTP; Sun, 15 Aug 2004 22:10:44 -0400 (EDT) Message-ID: <49617.207.179.91.96.1092622244.squirrel@freedombi.com> Date: Sun, 15 Aug 2004 22:10:44 -0400 (EDT) From: "Charles Ulrich" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.2 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on freedombi.com X-Spam-Level: X-Spam-Status: No, hits=-3.7 required=7.0 tests=BAYES_00,PRIORITY_NO_NAME autolearn=no version=2.63 Subject: bsdlabel errors and weirdity X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 02:10:47 -0000 Greetings, On a whim, I decided to try out vinum this afternoon, but found myself stuck early on. One of the first steps is to locate the partition you want to use vinum and change it's type from "4.2BSD" to "vinum". This is where I get stuck, because when I run bsdlabel on the 10GB disk, I get: [apex:~]# bsdlabel ad0s1 # /dev/ad0s1: 8 partitions: # size offset fstype [fsize bsize bps/cpg] a: 524288 63 4.2BSD 0 0 0 b: 1536000 524351 swap c: 20044017 63 unused 0 0 # "raw" part, don't edit e: 524288 2060351 4.2BSD 0 0 0 f: 524288 2584639 4.2BSD 0 0 0 g: 16935153 3108927 4.2BSD 0 0 0 partition c: partition extends past end of unit bsdlabel: partition c doesn't start at 0! bsdlabel: An incorrect partition c may cause problems for standard system utilities partition g: partition extends past end of unit These errors prevent me changing the fstype to vinum because bsdlabel apparently takes exception to the sizes and offsets of the partitions and refuses to apply them. This system has been running various releases in the 5.x branch for the last 2 years with no problems whatsoever and is currently on 5.2.1-p3. What looks the funniest is that the 'a' and 'c' partitions don't start at 0. Every other example of bsdlabel output that I've seen today had those two starting at 0, and the error message specifically confirms that this isn't correct. I've tried relabeling the disk with the sysinstall utility on both 4.10 and 5.1 CDs, and on both IDE and SCSI drives to no avail. They all want to start the partitions at offset 63. I'm quite at a loss here, and I'm not sure exactly how to proceed. Any help at all would be appreciated. -- Charles Ulrich System Administrator Ideal Solution - http://www.idealso.com From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 02:51:47 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3F6016A4CE for ; Mon, 16 Aug 2004 02:51:47 +0000 (GMT) Received: from pursued-with.net (adsl-66-125-9-244.dsl.sndg02.pacbell.net [66.125.9.244]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39BF743D39 for ; Mon, 16 Aug 2004 02:51:47 +0000 (GMT) (envelope-from freebsd@pursued-with.net) Received: from [10.0.1.101] (unknown [10.0.1.101]) by pursued-with.net (Postfix) with ESMTP id B52B622E3A8; Sun, 15 Aug 2004 19:51:55 -0700 (PDT) In-Reply-To: <20040815183205.66b753cd.wmoran@potentialtech.com> References: <200408151429.05110.aaron@daltons.ca> <20040815170806.45fcb779.wmoran@potentialtech.com> <200408151603.26022.aaron@daltons.ca> <411FE2E9.1090704@elvandar.org> <20040815183205.66b753cd.wmoran@potentialtech.com> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <688492D4-EF2F-11D8-9CD1-000A959CEE6A@pursued-with.net> Content-Transfer-Encoding: 7bit From: Kevin Stevens Date: Sun, 15 Aug 2004 19:53:10 -0700 To: Bill Moran X-Mailer: Apple Mail (2.619) cc: Remko Lodder cc: freebsd-questions@freebsd.org Subject: Re: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 02:51:47 -0000 On Aug 15, 2004, at 15:32, Bill Moran wrote: > Remko Lodder wrote: > >> Reminder for bill: sniffing via bpf requires the same privileges >> whether >> promisc. is set or not, so you always need to be root for sniffing >> data >> of the line, that is when the permissions is not tampered with :). >> Thanks #bsddocs (simon ;)) > > Really? Then I stand corrected. > > If that's the case, though, what _is_ the administrative danger of > running > in PROMISC mode? I think, in general, it's the notion that if the NIC is listening to things it shouldn't, it may hear something it doesn't want to. ;) In other words, there would be concern over exploits targeted at services or daemons that don't screen inbound traffic for the destination address being that of the local host, because they assume that such traffic could never be delivered to them. That type of thing. A lot of network scanners also trigger on NICS in promiscuous mode (there's a way to detect them, I forget the details at the moment) because admins want to know if any hosts are out there sniffing. KeS From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 03:21:50 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C581A16A4CE for ; Mon, 16 Aug 2004 03:21:50 +0000 (GMT) Received: from mtiwmhc13.worldnet.att.net (mtiwmhc13.worldnet.att.net [204.127.131.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B9C143D41 for ; Mon, 16 Aug 2004 03:21:50 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc13) with ESMTP id <2004081603212811300svbpie> (Authid: jayobrien@att.net); Mon, 16 Aug 2004 03:21:28 +0000 Message-ID: <4120284C.5040807@att.net> Date: Sun, 15 Aug 2004 20:21:48 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: root access to ftp, telnet X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 03:21:50 -0000 Bill Moran wrote: > Jay O'Brien wrote: > > >>I'm trying to replicate a successful FreeBSD installation >>on a new HD with a different file structure. I am able to >>access the FreeBSD machine over my LAN as a user, but not >>as root. This is true for both ftp and telnet. > > > I do not use telnet or FTP because neither are secure, however, I > believe root access through these protocols is denied by default. > I know root access is denied via ssh. > This is only on my local LAN, so security isn't a problem. > Off the top of my head, I'm not sure how to allow root access through > FTP and telnet, but I'm sure the associated config files will have an > option to allow it. It would be wise to take a hint, however, and NOT > allow it, as it' is not secure. > > >>The ftp connect as root is rejected outright, yet a user >>connect works fine. > > > Sounds like a correct configuration > But why does it work fine with the configuration I have set up on my old HD? If I can make it work once, why not again? If I shouldn't do it, OK. But what is the magic that makes it work in my old build of the "same" setup? Jay O'Brien From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 03:23:09 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCF0016A4CE for ; Mon, 16 Aug 2004 03:23:09 +0000 (GMT) Received: from mtiwmhc13.worldnet.att.net (mtiwmhc13.worldnet.att.net [204.127.131.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98E0543D1D for ; Mon, 16 Aug 2004 03:23:09 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc13) with ESMTP id <2004081603224711300sv930e> (Authid: jayobrien@att.net); Mon, 16 Aug 2004 03:22:47 +0000 Message-ID: <4120289C.1090401@att.net> Date: Sun, 15 Aug 2004 20:23:08 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions References: <41200C8D.8000907@att.net> <20040815215650.6dd9309d.wmoran@potentialtech.com> In-Reply-To: <20040815215650.6dd9309d.wmoran@potentialtech.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: root access to ftp, telnet X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 03:23:10 -0000 Bill Moran wrote: > Jay O'Brien wrote: > > >>After I first connect via telnet as a user and attempt su, >>the response is "you are not in the correct group (wheel) >>to su root." > > Add the user to the wheel group who you want to be able su. > Thanks; I found /etc/group and edited the wheel line. Now I can telnet in and su to root. I see it was that way on the old setup. I must have added my user name to wheel when I set it up the first time, but I didn't document that selection, so I didn't repeat it when rebuilding. Jay From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 03:39:33 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CDE916A4CE for ; Mon, 16 Aug 2004 03:39:33 +0000 (GMT) Received: from mtiwmhc13.worldnet.att.net (mtiwmhc13.worldnet.att.net [204.127.131.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 076E143D31 for ; Mon, 16 Aug 2004 03:39:33 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc13) with ESMTP id <2004081603391011300sv954e> (Authid: jayobrien@att.net); Mon, 16 Aug 2004 03:39:11 +0000 Message-ID: <41202C73.6090705@att.net> Date: Sun, 15 Aug 2004 20:39:31 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions References: <4120284C.5040807@att.net> In-Reply-To: <4120284C.5040807@att.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: root access to ftp, telnet X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 03:39:33 -0000 Jay O'Brien wrote: > Bill Moran wrote: > > >>Off the top of my head, I'm not sure how to allow root access through >>FTP and telnet, but I'm sure the associated config files will have an >>option to allow it. Yep! Apparently when I first brought up the system I learned about the /etc/ftpusers file, and to get it to work I commented out the line with "root" on it. Thanks for pointing me in the right direction. FTP now is working the same as in the old build. Your comment caused me to look at the filenames in /etc, and that one jumped out at me. I do understand about security, it won't be accessible to the world in that confiuguration. Thanks again! Jay From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 03:42:33 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0023B16A4CE for ; Mon, 16 Aug 2004 03:42:32 +0000 (GMT) Received: from alexus.org (alexus.org [64.237.55.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E47D43D1F for ; Mon, 16 Aug 2004 03:42:32 +0000 (GMT) (envelope-from alexus@alexus.org) Received: (qmail 6125 invoked by uid 79); 16 Aug 2004 03:42:30 -0000 Received: from alexus@alexus.org by d.alexus.org by uid 82 with qmail-scanner-1.22st Clear:RC:1(24.188.13.29):. Processed in 0.510079 secs); 16 Aug 2004 03:42:30 -0000 Received: from ool-18bc0d1d.dyn.optonline.net (HELO book) (postmaster@alexus.org@24.188.13.29) by alexus.org with (RC4-MD5 encrypted) SMTP; 16 Aug 2004 03:42:29 -0000 From: "alexus" To: Date: Sun, 15 Aug 2004 23:42:46 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Thread-Index: AcSDQxhGZc1BBcMSQAC7mtKBj4Zygw== X-Qmail-Scanner-Message-ID: <10926277498246119@d.alexus.org> Message-Id: <20040816034232.6E47D43D1F@mx1.FreeBSD.org> Subject: quota X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 03:42:33 -0000 Is it possible to set a quota not for a username but for a userid or groupid and not a group name.. I have bunch of virtual users but I do not want to create them as a real users on the system, even without no passwords and/or shells. alexus From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 03:45:01 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08F7D16A4CE for ; Mon, 16 Aug 2004 03:45:01 +0000 (GMT) Received: from goose.mail.pas.earthlink.net (goose.mail.pas.earthlink.net [207.217.120.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4AAB43D1F for ; Mon, 16 Aug 2004 03:45:00 +0000 (GMT) (envelope-from elcoocooi@earthlink.net) Received: from user-10lf2ou.cable.mindspring.com ([65.87.139.30]) by goose.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 1BwYQe-0002hL-00; Sun, 15 Aug 2004 20:45:00 -0700 From: "E. Eusey" To: freebsd-questions@freebsd.org Date: Sun, 15 Aug 2004 23:47:26 -0400 User-Agent: KMail/1.6.2 References: <20040813131919.0040o4k400gs0o4s@mail.encontacto.net> In-Reply-To: <20040813131919.0040o4k400gs0o4s@mail.encontacto.net> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408152347.26214.elcoocooi@earthlink.net> cc: Edwin Culp Subject: Re: cd and dvd burning program K3b and permissions for non-root users. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: elcoocooi@earthlink.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 03:45:01 -0000 On Friday 13 August 2004 02:19 pm, Edwin Culp wrote: > I've installed K3b and it works great for the root user but I > can't get it to work for any non-privileged user even though I > have put the user in the wheel group and have set sysctl > vfs.usermount=1, cd0 has permissions set to 666, the same in > devfs.conf (That solves the problem for xmms but not for k3b. > I have tried to suid and kde won't let it start. I'm out of > ideas. After this much time, I'm sure that I'm making a > mountain out of a mole hill and I'm missing something very > simple. Ugh. It's been a while since I bashed my head against that particular brick wall. Have you read through the pkg-message yet? Type 'make showinfo' in the k3b port directory if you haven't. You may have forgotten to give the necessary permissions to a certain SCSI device. Evan Eusey > > Any help would be appreciated. I can't see my users using burncd > ;) > > Thanks > > ed > > P.S. Machines are running current and are AMD Athlon > _______________________________________________ > 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 Aug 16 04:01:27 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E931D16A4CE for ; Mon, 16 Aug 2004 04:01:27 +0000 (GMT) Received: from infinitemediacorp.com (mail.digitaloutrage.com [69.90.158.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B80043D31 for ; Mon, 16 Aug 2004 04:01:27 +0000 (GMT) (envelope-from bknicely@marscomltd.com) Received: from [68.175.94.79] by infinitemediacorp.com [69.90.158.2] with SmartMax MailMax for freebsd-questions@freebsd.org; Mon, 16 Aug 2004 00:08:33 -0400 X-SmartMax-AuthUser: From: "Brandon Knicely" To: Date: Mon, 16 Aug 2004 00:01:33 -0400 Message-ID: MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2727.1300 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Question re: external raid arrays X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 04:01:28 -0000 I'm looking to add an external raid array to support a MySQL database on freeBSD. The attempt is to address availability and scalability. Does anyone have experience with devices good or bad in this environment? Any suggestions? thanks, Brandon --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.736 / Virus Database: 490 - Release Date: 8/9/2004 From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 04:12:08 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2845A16A4CE for ; Mon, 16 Aug 2004 04:12:08 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACC3F43D1D for ; Mon, 16 Aug 2004 04:12:07 +0000 (GMT) (envelope-from oliverfuchs@onlinehome.de) Received: from [212.227.126.206] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1BwYqs-0003ZE-00 for freebsd-questions@freebsd.org; Mon, 16 Aug 2004 06:12:06 +0200 Received: from [217.246.205.9] (helo=oliverfuchs.ath.cx) (TLSv1:EDH-RSA-DES-CBC3-SHA:168) (Exim 3.35 #1) id 1BwYqr-0003Kc-00 for freebsd-questions@freebsd.org; Mon, 16 Aug 2004 06:12:05 +0200 Received: from oliverfuchs.ath.cx (localhost [127.0.0.1]) i7G4Bb73004394verify=FAIL) for ; Mon, 16 Aug 2004 06:11:37 +0200 Received: (from oliverfuchs1@localhost) by oliverfuchs.ath.cx (8.12.3/8.12.3/Debian-6.6) id i7G4BSbA004392 for freebsd-questions@freebsd.org; Mon, 16 Aug 2004 06:11:28 +0200 Date: Mon, 16 Aug 2004 06:11:28 +0200 From: Oliver Fuchs To: freebsd-questions@freebsd.org Message-ID: <20040816041128.GA4289@oliverfuchs.ath.cx> Mail-Followup-To: freebsd-questions@freebsd.org References: <5c33d22d.d22d5c33@prodigy.net.mx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5c33d22d.d22d5c33@prodigy.net.mx> User-Agent: Mutt/1.4.2i X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:c2b2791553508cc938db2bcf18721a3c Subject: Re: cd and dvd burning program K3b and permissions for non-root users. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 04:12:08 -0000 On Sat, 14 Aug 2004, edwinculp wrote: > I've installed K3b and it works great for the root user but I can't get it to work for any non-privileged user even though I have put the user in the wheel group and have set sysctl vfs.usermount=1, cd0 has permissions set to 666, the same in devfs.conf (That solves the problem for xmms but not for k3b. I have tried to suid and kde won't let it start. I'm out of ideas. After this much time, I'm sure that I'm making a mountain out of a mole hill and I'm missing something very simple. > > Any help would be appreciated. I can't see my users using burncd See /usr/ports/sysutils/k3b/pkg-message: [...] 3. k3b has to be started from a root console, which is not recommended. Alternatively do the following: 3a. set the suid flag on cdrecord and cdrdao. The 'Notes' the chapter of 'man cdrecord' discusses this. 3b. - install sudo (security/sudo) and add the following line or similar to sudoers (usually in /usr/local/etc/sudoers): ALL ALL = NOPASSWD: /sbin/camcontrol devlist - or execute 'camcontrol devlist' For every user who should be able to use k3b. Resolve all errors e.g by giving him/her access rights to /dev/xpt0. 'camcontrol devlist' must run without error for all these users! Note that giving access rights to /dev/xpt* might be a security leak! - or give camcontrol the suid flag, which is a security leak as well. 3c. - For every user who should be able to use k3b and for every CD or DVD device add a directory in the users home directory. These directories must be owned by the corresponding user. For each such directory add a line in /ect/fstab (see remark 2), like: /dev/cd0c /usr/home/XXX/cdrom cd9660 ro,noauto,nodev,nosuid 0 0 Furthermore allow user mounts as described in topic 9.22 of the FAQ: http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/disks.html#USER-FLOPPYMOUNT - or just give mount and umount the sudo flag, which is a security leak. 3d. - Every user who should be able to use k3b must have read and write access to all pass through devices connected with CD and DVD drives. Run 'camcontrol devlist' to identify those devices (seek string 'passX' at the end of each line and modify the rights of /dev/passX). Note, that this is a security leak as well but that there is no alternative! [...] Oliver -- ... don't touch the bang bang fruit From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 04:26:30 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9F8616A4CE for ; Mon, 16 Aug 2004 04:26:30 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 540FB43D45 for ; Mon, 16 Aug 2004 04:26:30 +0000 (GMT) (envelope-from jon.drews@gmail.com) Received: by mproxy.gmail.com with SMTP id 77so62998rnl for ; Sun, 15 Aug 2004 21:26:26 -0700 (PDT) Received: by 10.38.99.66 with SMTP id w66mr169725rnb; Sun, 15 Aug 2004 21:26:26 -0700 (PDT) Message-ID: <8cb27cbf0408152126257ec1bc@mail.gmail.com> Date: Sun, 15 Aug 2004 23:26:26 -0500 From: Jon Drews To: FreeBSD Questions In-Reply-To: <411E9639.2070609@spintech.ro> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <411E9639.2070609@spintech.ro> Subject: Re: FreeBSD scanners X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jon Drews List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 04:26:30 -0000 Hello Anton: I would suggest going to the SANE website: http://www.sane-project.org/ I have an E640U USB scanner working under FreeBSD 4.9 and 5.2 CURRENT. That one works very well. On Sun, 15 Aug 2004 01:46:17 +0300, Anton Alin-Adrian wrote: > Please, if any of you has confident experience with any of the following > scanners under FreeBSD, please let me know. I must find something available > for buying and it must work smoothly in FreeBSD (otherwise there's no point > of buying a new scanner, as I already have one which is not working in > anything else but Windows..) > > EPSON perfection 1670 > EPSON perfection 1670 Photo > EPSON perfection 3170 photo > EPSON perfection 2400 photo > EPSON perfection 3200 photo > EPSON perfection 4870 photo > EPSON perfection 2480 photo > EPSON Expression 1680 > EPSON Expression 1680 Pro > EPSON GT 10000XL > EPSON GT - 15000 > EPSON GT - 30000 From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 04:49:22 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2426F16A4CE for ; Mon, 16 Aug 2004 04:49:22 +0000 (GMT) Received: from szamoca.krvarr.bc.ca (s142-179-111-232.bc.hsia.telus.net [142.179.111.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C37243D5C for ; Mon, 16 Aug 2004 04:49:19 +0000 (GMT) (envelope-from sandy@krvarr.bc.ca) Received: from szamoca.krvarr.bc.ca (localhost [127.0.0.1]) by szamoca.krvarr.bc.ca (8.12.11/8.12.6) with ESMTP id i7G4nFPm000568 for ; Sun, 15 Aug 2004 21:49:15 -0700 (PDT) Received: (from sandy@localhost) by szamoca.krvarr.bc.ca (8.12.11/8.12.11/Submit) id i7G4nEJD000565; Sun, 15 Aug 2004 21:49:14 -0700 (PDT) (envelope-from sandy) From: Sandy Rutherford MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16672.15562.754097.562477@szamoca.krvarr.bc.ca> Date: Sun, 15 Aug 2004 21:49:14 -0700 To: freebsd-questions@freebsd.org X-Mailer: VM 7.07 under Emacs 21.3.1 Subject: ypserv, svctcp_create, and spamd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 04:49:22 -0000 I have been having some problems with ypserv occasionally deciding to listen on tcp port 783, which breaks spamd. As far as I can tell from the source files of ypserv and svc_tcp.c, the subr svctcp_create simply returns an arbitrary unused port. Since services started from /usr/local/etc/rc.d, such as spamd, start after ypserv, it may take a port needed by one of these services. Does anybody have any recommendations on how to fix or work around this problem? Some solutions that do come to mind are: 1. Sticking some code in spamd.sh to run `rpcinfo -p' and if any rpc services are using 783/tcp, kill them off before starting spamd and then restart them. 2. By pass the usual startup of ypservices in the FreeBSD boot sequence and stick my own scripts in /usr/local/etc/rc.d, thus ensuring that they start after any local services. However, both of these strike me as an awful kludge. By the way, unlike some implementations of ypserv, I don't think that FreeBSD's consults /etc/services to either determine which port it should use or which ports it should avoid. Thanks in advance for any suggestions. ...Sandy From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 05:05:34 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1513916A4CE for ; Mon, 16 Aug 2004 05:05:34 +0000 (GMT) Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id 750D743D31 for ; Mon, 16 Aug 2004 05:05:33 +0000 (GMT) (envelope-from freebsd-questions@m.gmane.org) Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BwZga-0001I8-00 for ; Mon, 16 Aug 2004 07:05:32 +0200 Received: from numerus.ling.uu.se ([130.238.78.148]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 16 Aug 2004 07:05:32 +0200 Received: from bkhl by numerus.ling.uu.se with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 16 Aug 2004 07:05:32 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: freebsd-questions@freebsd.org To: freebsd-questions@freebsd.org From: bkhl@elektrubadur.se (=?iso-8859-1?q?Bj=F6rn_Lindstr=F6m?=) Date: Mon, 16 Aug 2004 07:05:27 +0200 Lines: 8 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: numerus.ling.uu.se Mail-Copies-To: never X-Home-Page: http://bkhl.elektrubadur.se/ User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.2 (gnu/linux) Cancel-Lock: sha1:iwTLEjbWzlywo72Jvv4G4gf9q2g= Sender: news Subject: at? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 05:05:34 -0000 I'm trying to use at(1) on our co-located server, but unless I run it as root, I get this error: at: you do not have permission to use this program I know this isn't how FreeBSD behaves by default, so I'm wondering if anyone has an idea on what our hosters might have tweaked to make this occur. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 05:08:00 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 946BA16A4CE for ; Mon, 16 Aug 2004 05:08:00 +0000 (GMT) Received: from chen.org.nz (chen.org.nz [210.54.19.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E7BF43D58 for ; Mon, 16 Aug 2004 05:08:00 +0000 (GMT) (envelope-from jonc@chen.org.nz) Received: by chen.org.nz (Postfix, from userid 1000) id 5C42913620; Mon, 16 Aug 2004 17:07:58 +1200 (NZST) Date: Mon, 16 Aug 2004 17:07:58 +1200 From: Jonathan Chen To: Bj?rn Lindstr?m Message-ID: <20040816050758.GA88881@grimoire.chen.org.nz> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: at? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 05:08:00 -0000 On Mon, Aug 16, 2004 at 07:05:27AM +0200, Bj?rn Lindstr?m wrote: > I'm trying to use at(1) on our co-located server, but unless I run > it as root, I get this error: > > at: you do not have permission to use this program > Look for /var/at/at.allow or /var/at/at.deny. Details on at(1) manpage. -- Jonathan Chen ---------------------------------------------------------------------- If you're right 90% of the time, why quibble about the remaining 3%? From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 05:32:49 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA98E16A4CE for ; Mon, 16 Aug 2004 05:32:49 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id B983943D48 for ; Mon, 16 Aug 2004 05:32:44 +0000 (GMT) (envelope-from free.bsd@gmx.net) Received: (qmail 12569 invoked by uid 65534); 16 Aug 2004 05:32:41 -0000 Received: from unknown (EHLO kojo) (203.70.36.119) by mail.gmx.net (mp023) with SMTP; 16 Aug 2004 07:32:41 +0200 X-Authenticated: #20105305 From: "FreeBSD Daemon" To: , Date: Mon, 16 Aug 2004 13:38:27 +0800 Message-ID: <004601c48353$4534a9e0$0501a8c0@kojo> MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: mod_perl ... mod_perl2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 05:32:50 -0000 Dear list, What is the difference between mod_perl and mod_perl2 in the port collection of 4.10? TIA zheyu From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 05:36:57 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8959816A4CE for ; Mon, 16 Aug 2004 05:36:57 +0000 (GMT) Received: from dsl-mail.kamp.net (mail.kamp-dsl.de [195.62.99.42]) by mx1.FreeBSD.org (Postfix) with SMTP id 6B11043D58 for ; Mon, 16 Aug 2004 05:36:56 +0000 (GMT) (envelope-from root@pukruppa.de) Received: (qmail 12185 invoked by uid 513); 16 Aug 2004 05:39:52 -0000 Received: from root@pukruppa.de by dsl-mail by uid 89 with qmail-scanner-1.21 Clear:RC:1(213.146.114.24):SA:0(-4.9/5.0):. Processed in 0.298849 secs); 16 Aug 2004 05:39:52 -0000 X-Spam-Status: No, hits=-4.9 required=5.0 Received: from unknown (HELO reverse-213-146-114-24.dialin.kamp-dsl.de) (213.146.114.24) by dsl-mail.kamp.net with SMTP; 16 Aug 2004 05:39:52 -0000 Date: Mon, 16 Aug 2004 07:37:53 +0200 (CEST) From: Peter Ulrich Kruppa X-X-Sender: root@pukruppa.net To: freebsd-questions@freebsd.org Message-ID: <20040816070545.O804@pukruppa.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: mod_php5 and php5-cli X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 05:36:57 -0000 Hi! Is there some deeper reason why mod_php and php-cli conflict? I have got mod_php5 and apache2 running and would like to enable the php command line interface, too. How can I do this? Regards, Uli. +---------------------------+ | Peter Ulrich Kruppa | | Wuppertal | | Germany | +---------------------------+ From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 05:38:14 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE6B316A4CE for ; Mon, 16 Aug 2004 05:38:14 +0000 (GMT) Received: from mail.theluttmans.com (S0106000ab7291ff2.mh.shawcable.net [24.66.140.129]) by mx1.FreeBSD.org (Postfix) with SMTP id 6732443D4C for ; Mon, 16 Aug 2004 05:38:13 +0000 (GMT) (envelope-from tim@theluttmans.com) Received: (qmail 31187 invoked by uid 513); 16 Aug 2004 05:30:15 -0000 Received: from tim@theluttmans.com by timco-service by uid 511 with qmail-scanner-1.22-st-qms (clamdscan: 0.71. spamassassin: 2.63. Clear:RC:1(192.168.0.100):. Processed in 0.920363 secs); 16 Aug 2004 05:30:15 -0000 X-Antivirus-MYDOMAIN-Mail-From: tim@theluttmans.com via timco-service X-Antivirus-MYDOMAIN: 1.22-st-qms (Clear:RC:1(192.168.0.100):. Processed in 0.920363 secs Process 31182) Received: from host-100.theluttmans.com (HELO TIMLAPNEW) (tim@theluttmans.com@192.168.0.100) by mail.theluttmans.com with SMTP; 16 Aug 2004 05:30:14 -0000 From: "Tim Luttman" To: Date: Sun, 15 Aug 2004 23:38:12 -0600 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcSDUzeBlv4t6SYbSqGZAkpD/zUrVQ== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Antivirus-MYDOMAIN-Message-ID: <109263421483531182@timco-service> Message-Id: <20040816053813.6732443D4C@mx1.FreeBSD.org> Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Device Not Configured errors X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 05:38:15 -0000 I have installed Amanda on a FreeBSD 5.2 box and I want to setup Amanda using an HP StorageWorks Ultrium 1/8 autoloader. When I run camcontrol devlist I can see the unit: at scbus1 target 0 lun 0 (ch0,pass1) at scbus1 target 5 lun 0 (sa0,pass2) But when I run "mtx -f /dev/sa0 inquiry" to test the loader I get the following: cannot open SCSI device '/dev/sa0' - Device not configured. The tape unit is powered and all slots have been loaded with tapes. Any suggestions would be greatly appreciated. Thanks, Tim --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.732 / Virus Database: 486 - Release Date: 7/29/2004 From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 07:18:11 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF04716A4CE for ; Mon, 16 Aug 2004 07:18:11 +0000 (GMT) Received: from shellsupply.net (s049.justedge.net [216.10.31.130]) by mx1.FreeBSD.org (Postfix) with SMTP id BE00643D41 for ; Mon, 16 Aug 2004 07:18:10 +0000 (GMT) (envelope-from will@crime.ctf.edu) Received: (qmail 98196 invoked by uid 1026); 16 Aug 2004 05:56:57 -0000 Received: from wnpgmb01dc2-24-49.dynamic.mts.net (HELO ?192.168.123.109?) (will@crime.ctf.edu@142.161.24.49) by shellsupply.net with SMTP; 16 Aug 2004 05:56:57 -0000 Message-ID: <41205FAB.7040704@crime.ctf.edu> Date: Mon, 16 Aug 2004 02:18:03 -0500 From: Will User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040815) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <004601c48353$4534a9e0$0501a8c0@kojo> In-Reply-To: <004601c48353$4534a9e0$0501a8c0@kojo> X-Enigmail-Version: 0.85.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: mod_perl ... mod_perl2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 07:18:11 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 FreeBSD Daemon wrote: | Dear list, | | What is the difference between mod_perl and mod_perl2 in the port | collection of 4.10? | | TIA | | zheyu | _______________________________________________ | 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" | | One is the devel version of Mod Perl and the other is the stable - http://perl.apache.org/download/index.html you might find it faster to read the pkg-descr in the ports and visit the website than write to the list to try and find out. - -- Do yourself a favor, don't use IE! www.mozilla.org/products/firefox/ PGP is Preferable for Email, Public key available off PGP Key Server. GPG Key ID: 0x787AD6A9 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iQCVAwUBQSBfqwx4IHh4etapAQJ03QQAkMvxI51jM8OE/LSllebpMaP4889ZGV0K oyGDoNMoqz8Q21VEvt7g7L3KWUuiCCmZX5ZeJqH5wFqsAQxFspBA65A1R8vSUNaI d0tWoItDWuRoHfwJ5zC6dbnBwDxXgQZzF6qkKf+5Gnidgtn8bVNGDDaCZOL2+PM1 PW3P0kIFiAU= =XAp6 -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 07:30:00 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81F2716A4CE for ; Mon, 16 Aug 2004 07:30:00 +0000 (GMT) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id B086443D31 for ; Mon, 16 Aug 2004 07:29:55 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost.infracaninophile.co.uk [IPv6:::1])i7G7TnbC080360 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 16 Aug 2004 08:29:49 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)id i7G7TmUe080359; Mon, 16 Aug 2004 08:29:48 +0100 (BST) (envelope-from matthew) Date: Mon, 16 Aug 2004 08:29:48 +0100 From: Matthew Seaman To: "Jay O'Brien" Message-ID: <20040816072948.GB79605@happy-idiot-talk.infracaninophile.co.uk> Mail-Followup-To: Matthew Seaman , Jay O'Brien , FreeBSD - questions References: <41200C8D.8000907@att.net> <20040815215650.6dd9309d.wmoran@potentialtech.com> <4120289C.1090401@att.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8P1HSweYDcXXzwPJ" Content-Disposition: inline In-Reply-To: <4120289C.1090401@att.net> User-Agent: Mutt/1.5.6i X-Greylist: Message not sent from an IPv4 address, not delayed by milter-greylist-1.5.3 (smtp.infracaninophile.co.uk [0.0.0.0]); Mon, 16 Aug 2004 08:29:49 +0100 (BST) X-Virus-Scanned: clamd / ClamAV version devel-20040705, clamav-milter version 0.74a on smtp.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, hits=-4.8 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on happy-idiot-talk.infracaninophile.co.uk cc: FreeBSD - questions Subject: Re: root access to ftp, telnet X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 07:30:00 -0000 --8P1HSweYDcXXzwPJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 15, 2004 at 08:23:08PM -0700, Jay O'Brien wrote: > Bill Moran wrote: > > Jay O'Brien wrote: > >>After I first connect via telnet as a user and attempt su,=20 > >>the response is "you are not in the correct group (wheel)=20 > >>to su root." > > Add the user to the wheel group who you want to be able su. > Thanks; I found /etc/group and edited the wheel line. Now I can=20 > telnet in and su to root. I see it was that way on the old=20 > setup. I must have added my user name to wheel when I set it=20 > up the first time, but I didn't document that selection, so I=20 > didn't repeat it when rebuilding. Eeek! You do realise you've just sent the root password across your network in plain text? Maybe your network is completely secure and you aren't running a risk by doing that, but on the whole it's a really bad idea. Get into the habit of using ssh(1) routinely for your own peace of mind, if nothing else. You can also replace ftp(1) for many purposes by scp(1) or rsync(1) (from the net/rsync port), both of which operate over ssh(1). Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --8P1HSweYDcXXzwPJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBIGJsiD657aJF7eIRAhgzAKCDYDkbPiDJqiiRTt8PhuNzS73EPACdGOtp FJylMBjISjbRMvrmGkmshtk= =FgsS -----END PGP SIGNATURE----- --8P1HSweYDcXXzwPJ-- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 07:41:15 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B60CB16A4CE for ; Mon, 16 Aug 2004 07:41:15 +0000 (GMT) Received: from aiolos.otenet.gr (aiolos.otenet.gr [195.170.0.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 147AF43D1F for ; Mon, 16 Aug 2004 07:41:14 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.gr (patr530-a142.otenet.gr [212.205.215.142]) i7G7f6vP014394 for ; Mon, 16 Aug 2004 10:41:08 +0300 Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.13.1/8.13.1) with ESMTP id i7G7e7KR074974 for ; Mon, 16 Aug 2004 10:40:08 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.gr (8.13.1/8.13.1/Submit) id i7FI8IIY031692 for freebsd-questions@freebsd.org; Sun, 15 Aug 2004 21:08:18 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 15 Aug 2004 21:08:18 +0300 From: Giorgos Keramidas To: freebsd-questions@freebsd.org Message-ID: <20040815180818.GA31669@gothmog.gr> References: <20040815160407.GA941@gicco.homeip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040815160407.GA941@gicco.homeip.net> Subject: Re: kernel module configuration X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 07:41:15 -0000 On 2004-08-15 18:04, Hanspeter Roth wrote: > in the kernel configuration one can enable various devices by the > respective 'device' statement. It seems that most drivers go into > the kernel directly. Some drivers such as 'acpi' produce a kernel > module. > How is determined which modules become built in and which become > modules? If you don't include something in the kernel it's built as a module. > Can I have 'ohci' as a kernel module? I haven't tried. I don't know for sure. - Giorgos From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 07:42:32 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0C7816A4CE for ; Mon, 16 Aug 2004 07:42:32 +0000 (GMT) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCB0943D55 for ; Mon, 16 Aug 2004 07:42:31 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) i7G7gRId080494 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 16 Aug 2004 08:42:27 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)id i7G7gRtw080493; Mon, 16 Aug 2004 08:42:27 +0100 (BST) (envelope-from matthew) Date: Mon, 16 Aug 2004 08:42:27 +0100 From: Matthew Seaman To: Peter Ulrich Kruppa Message-ID: <20040816074227.GC79605@happy-idiot-talk.infracaninophile.co.uk> Mail-Followup-To: Matthew Seaman , Peter Ulrich Kruppa , freebsd-questions@freebsd.org References: <20040816070545.O804@pukruppa.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UPT3ojh+0CqEDtpF" Content-Disposition: inline In-Reply-To: <20040816070545.O804@pukruppa.net> User-Agent: Mutt/1.5.6i X-Greylist: Message not sent from an IPv4 address, not delayed by milter-greylist-1.5.3 (smtp.infracaninophile.co.uk [0.0.0.0]); Mon, 16 Aug 2004 08:42:27 +0100 (BST) X-Virus-Scanned: clamd / ClamAV version devel-20040705, clamav-milter version 0.74a on smtp.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, hits=-4.8 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on happy-idiot-talk.infracaninophile.co.uk cc: freebsd-questions@freebsd.org Subject: Re: mod_php5 and php5-cli X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 07:42:32 -0000 --UPT3ojh+0CqEDtpF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 16, 2004 at 07:37:53AM +0200, Peter Ulrich Kruppa wrote: > Is there some deeper reason why mod_php and php-cli conflict? > I have got mod_php5 and apache2 running and would like to enable=20 > the php command line interface, too. How can I do this? Install the lang/php5 port which should get you both cli and mod_php5 support together. Make sure that WITH_APACHE2 is set in /etc/make.conf or equivalent so you get apache-2.x support, rather than apache-1.3.x. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --UPT3ojh+0CqEDtpF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBIGVjiD657aJF7eIRArzNAJ9bDNh86IfWFCAoD6N8CfTdo34MHgCeOO+f DAu3Yj8s8ZDMxSPdQl+Nzfk= =/6xH -----END PGP SIGNATURE----- --UPT3ojh+0CqEDtpF-- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 07:51:09 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7736E16A4CE for ; Mon, 16 Aug 2004 07:51:09 +0000 (GMT) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DA6D43D1D for ; Mon, 16 Aug 2004 07:51:08 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost.infracaninophile.co.uk [IPv6:::1])i7G7oxBH080614 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 16 Aug 2004 08:50:59 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)id i7G7oxUS080613; Mon, 16 Aug 2004 08:50:59 +0100 (BST) (envelope-from matthew) Date: Mon, 16 Aug 2004 08:50:59 +0100 From: Matthew Seaman To: Will Message-ID: <20040816075059.GD79605@happy-idiot-talk.infracaninophile.co.uk> Mail-Followup-To: Matthew Seaman , Will , freebsd-questions@freebsd.org References: <004601c48353$4534a9e0$0501a8c0@kojo> <41205FAB.7040704@crime.ctf.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TybLhxa8M7aNoW+V" Content-Disposition: inline In-Reply-To: <41205FAB.7040704@crime.ctf.edu> User-Agent: Mutt/1.5.6i X-Greylist: Message not sent from an IPv4 address, not delayed by milter-greylist-1.5.3 (smtp.infracaninophile.co.uk [0.0.0.0]); Mon, 16 Aug 2004 08:50:59 +0100 (BST) X-Virus-Scanned: clamd / ClamAV version devel-20040705, clamav-milter version 0.74a on smtp.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, hits=-4.8 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on happy-idiot-talk.infracaninophile.co.uk cc: freebsd-questions@freebsd.org Subject: Re: mod_perl ... mod_perl2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 07:51:09 -0000 --TybLhxa8M7aNoW+V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 16, 2004 at 02:18:03AM -0500, Will wrote: > FreeBSD Daemon wrote: > | What is the difference between mod_perl and mod_perl2 in the port > | collection of 4.10? > One is the devel version of Mod Perl and the other is the stable - > http://perl.apache.org/download/index.html you might find it faster to > read the pkg-descr in the ports and visit the website than write to the > list to try and find out. While that is true, the difference is actually rather more significant than that. mod_perl only works with apache-1.3.x and mod_perl2 only works with apache-2.x. mod_perl2 is still considered a development version, which is why the version number is 1.99rNN -- only once it's achieved production quality will it be released as version 2.0. Cheers, Matthew=09 --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --TybLhxa8M7aNoW+V Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBIGdjiD657aJF7eIRAkf2AJ9DOIoiX/32tWEn0UrM7DrGo6BZkQCfQySd 0oztE3l3KzxFS6E0OqUrz28= =a5yf -----END PGP SIGNATURE----- --TybLhxa8M7aNoW+V-- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 09:09:06 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B0D116A4CE for ; Mon, 16 Aug 2004 09:09:06 +0000 (GMT) Received: from mail.bitfreak.org (mail.bitfreak.org [65.75.198.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 264DA43D2D for ; Mon, 16 Aug 2004 09:09:04 +0000 (GMT) (envelope-from dmp@bitfreak.org) Received: from speck.techno.pagans (c-24-21-241-225.client.comcast.net [24.21.241.225]) by mail.bitfreak.org (Postfix) with ESMTP id 71D842A41A for ; Mon, 16 Aug 2004 02:09:03 -0700 (PDT) Received: from spud (w0.techno.pagans [172.21.42.20]) by speck.techno.pagans (Postfix) with ESMTP id 9747D17025 for ; Mon, 16 Aug 2004 02:09:02 -0700 (PDT) From: "Darren Pilgrim" To: Date: Mon, 16 Aug 2004 02:08:52 -0700 Message-ID: <001c01c48370$a9b7b020$142a15ac@spud> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Importance: Normal Subject: Which version of FreeBSD to support a 3ware Escalade 7006 and 8006 controllers? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 09:09:06 -0000 I'm looking at getting a 3ware Escalade 7006 or 8006 RAID controller for one of my servers. The machine presently runs RELENG_4_8. The twe man page for that version doesn't list the 7000 or 8000 series controllers. However, 3ware lists 4.8 as the supported version of FreeBSD for both. Which is correct? More to the point: What would be the recommended version of FreeBSD I should use for these controllers? Does it really matter? From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 09:16:51 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F34A16A4CE for ; Mon, 16 Aug 2004 09:16:51 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 201F043D48 for ; Mon, 16 Aug 2004 09:16:51 +0000 (GMT) (envelope-from henrik.w.lund@broadpark.no) Received: from [10.0.0.3] (52.80-202-129.nextgentel.com [80.202.129.52]) by mail.broadpark.no (Postfix) with ESMTP id CE1B54062; Mon, 16 Aug 2004 11:17:24 +0200 (MEST) Message-ID: <4120F9D2.2090204@broadpark.no> Date: Mon, 16 Aug 2004 11:15:46 -0700 From: Henrik W Lund User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040616 X-Accept-Language: nb, en-us, en MIME-Version: 1.0 To: John Oxley References: <20040816010453.GC49855@rucus.ru.ac.za> In-Reply-To: <20040816010453.GC49855@rucus.ru.ac.za> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: anjuta X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 09:16:51 -0000 John Oxley wrote: >I have installed anjuta 1.2.2 from ports and am getting some odd errors: > >It complains that libtool is not installed but I have installed as >dependencies both libtool13 and libtool15. When I symlink >/usr/local/bin/libtool15 to libtool and do the same for libtoolize, the >autogen.sh script works but configure is failing with: > >loading cache /dev/null within ltconfig >ltconfig: you must specify a host type if you use `--no-verify' >Try `ltconfig --help' for more information. >configure: error: libtool configure failed > >Can anyone help me > >TIA, > >-Ox > > > Greetings! Supply the following argument to the configure script (this can be done via the menu, I forget the exact one): --target= is output by the configure script, so just check the logs and copy-paste. Why this mechanism fails to supply this information to ltconfig automatically is beyond me. Hope this helps! -Henrik W Lund From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 10:53:41 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE5BE16A4CE for ; Mon, 16 Aug 2004 10:53:41 +0000 (GMT) Received: from smtp.hispeed.ch (mxout.hispeed.ch [62.2.95.247]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22E8F43D39 for ; Mon, 16 Aug 2004 10:53:41 +0000 (GMT) (envelope-from hampi@rootshell.be) Received: from gicco.homeip.net (80-218-73-163.dclient.hispeed.ch [80.218.73.163])i7GArdOj019174 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Mon, 16 Aug 2004 12:53:40 +0200 Received: from localhost.here (idefix@gicco.homeip.net [127.0.0.1]) by gicco.homeip.net (8.12.8p2/8.12.8) with ESMTP id i7GArdNv001118 for ; Mon, 16 Aug 2004 12:53:39 +0200 (CEST) (envelope-from hampi@rootshell.be) Received: (from idefix@localhost) by localhost.here (8.12.8p2/8.12.8/Submit) id i7GArdfE001117 for freebsd-questions@freebsd.org; Mon, 16 Aug 2004 12:53:39 +0200 (CEST) X-Authentication-Warning: localhost.here: idefix set sender to hampi@rootshell.be using -f Date: Mon, 16 Aug 2004 12:53:39 +0200 From: Hanspeter Roth To: freebsd-questions@freebsd.org Message-ID: <20040816105339.GA1056@gicco.homeip.net> Mail-Followup-To: freebsd-questions@freebsd.org References: <20040815160407.GA941@gicco.homeip.net> <20040815172327.350e31e0.wmoran@potentialtech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040815172327.350e31e0.wmoran@potentialtech.com> User-Agent: Mutt/1.4.1i Subject: Re: kernel module configuration X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 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, 16 Aug 2004 10:53:41 -0000 On Aug 15 at 17:23, Bill Moran spoke: > By the config file. If you enable the module in the config, it is > built into the kernel, otherwise a kld is generated. What about `apm'? Is it sufficcient to have it commented out in the config and set hint.apm.0.disabled=0 and boot with ACPI disabled? Or should I compile a kernel with `device apm'? Or should I load apm.ko somewhere? (When I try apm the boot process crashes very early and drops into the debugger.) -Hanspeter From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 11:41:14 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F4BE16A4CE for ; Mon, 16 Aug 2004 11:41:14 +0000 (GMT) Received: from smtp1.adl2.internode.on.net (smtp1.adl2.internode.on.net [203.16.214.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F6A843D55 for ; Mon, 16 Aug 2004 11:41:13 +0000 (GMT) (envelope-from malcolm.kay@internode.on.net) Received: from beta.home (ppp137-206.lns1.adl2.internode.on.net [150.101.137.206])i7GBf64Y080641; Mon, 16 Aug 2004 21:11:07 +0930 (CST) From: Malcolm Kay Organization: at home To: bkhl@elektrubadur.se (=?iso-8859-1?q?Bj=F6rn?= =?iso-8859-1?q?=20Lindstr=F6m?=), freebsd-questions@freebsd.org Date: Mon, 16 Aug 2004 21:11:05 +0930 User-Agent: KMail/1.5.4 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200408162111.06006.malcolm.kay@internode.on.net> Subject: Re: at? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 11:41:14 -0000 On Monday 16 August 2004 14:35, Bj=F6rn Lindstr=F6m wrote: > I'm trying to use at(1) on our co-located server, but unless I run > it as root, I get this error: > > at: you do not have permission to use this program > > I know this isn't how FreeBSD behaves by default, so I'm wondering if > anyone has an idea on what our hosters might have tweaked to make this > occur. =46or FreeBSD 4.x this *is* the default behaviour according to the man page. Read at(1) with particular attention to the files at.deny and at.allow. Malcolm From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 12:07:18 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03FE516A4CE for ; Mon, 16 Aug 2004 12:07:18 +0000 (GMT) Received: from grover.logicsquad.net (ppp52-132.lns1.adl2.internode.on.net [150.101.52.132]) by mx1.FreeBSD.org (Postfix) with SMTP id 199A143D46 for ; Mon, 16 Aug 2004 12:07:15 +0000 (GMT) (envelope-from paulh@logicsquad.net) Received: (qmail 34900 invoked by uid 1000); 16 Aug 2004 12:07:13 -0000 Date: Mon, 16 Aug 2004 21:37:13 +0930 From: "Paul A. Hoadley" To: Pat Lashley Message-ID: <20040816120713.GH26453@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> <20040815030001.GF25751@grover.logicsquad.net> <78D3657555876AE17CEE2ECD@vanvoght.phoenix.volant.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ncSAzJYg3Aa9+CRW" Content-Disposition: inline In-Reply-To: <78D3657555876AE17CEE2ECD@vanvoght.phoenix.volant.org> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 12:07:18 -0000 --ncSAzJYg3Aa9+CRW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 15, 2004 at 02:22:02PM -0700, Pat Lashley wrote: > Could you create a user to get them; and give that user a procmail > (or similar) delivery-time script to file them into subdirs based on > some arbitrary characteristic? Sounds feasible. The sheer volume has overwhelmed me, though, and now I'm just throwing them out. > Just FYI, Exim, with the ExiScan patches, can reject at SMTP time; > and also has a 'fakereject' capability which tells the sender that > the message has been rejected; but actually delivers it. Thanks for the info. I have been thinking of changing MTAs for a while. --=20 Paul. w http://logicsquad.net/ h http://paul.hoadley.name/ --ncSAzJYg3Aa9+CRW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBIKNx730Z/jysbzIRAjvoAJsHfYEtvdP2JP9g6lLNBELm+0XnrgCeIZdN aUUpdHBuxvX/4vl49dw/C40= =71nz -----END PGP SIGNATURE----- --ncSAzJYg3Aa9+CRW-- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 12:08:17 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FEFE16A4CE for ; Mon, 16 Aug 2004 12:08:17 +0000 (GMT) Received: from grover.logicsquad.net (ppp52-132.lns1.adl2.internode.on.net [150.101.52.132]) by mx1.FreeBSD.org (Postfix) with SMTP id 1818143D46 for ; Mon, 16 Aug 2004 12:08:16 +0000 (GMT) (envelope-from paulh@logicsquad.net) Received: (qmail 34939 invoked by uid 1000); 16 Aug 2004 12:08:15 -0000 Date: Mon, 16 Aug 2004 21:38:15 +0930 From: "Paul A. Hoadley" To: Scott Mitchell Message-ID: <20040816120815.GI26453@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> <20040815030001.GF25751@grover.logicsquad.net> <20040815105610.GA73539@tuatara.fishballoon.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Hf61M2y+wYpnELGG" Content-Disposition: inline In-Reply-To: <20040815105610.GA73539@tuatara.fishballoon.org> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 12:08:17 -0000 --Hf61M2y+wYpnELGG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, On Sun, Aug 15, 2004 at 11:56:10AM +0100, Scott Mitchell wrote: > I don't know how committed to qmail you are, but Exim will do this > out of the box. I'm pretty sure it's part of the default config > file. With the exim+exiscan patches (available from ports) you can > get even more creative and integrate virus scanning, SpamAssassin, > etc. with very little effort. Thanks. I have been thinking of changing MTAs for a while. --=20 Paul. w http://logicsquad.net/ h http://paul.hoadley.name/ --Hf61M2y+wYpnELGG Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBIKOu730Z/jysbzIRAuNAAJ9mxyHIINozyv8ap2X7Dain50pWfwCfWksf ntbI2FkQaGmjjqnxEO63v+I= =7qfX -----END PGP SIGNATURE----- --Hf61M2y+wYpnELGG-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 15 19:43:23 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A5BD16AAA2 for ; Sun, 15 Aug 2004 19:43:19 +0000 (GMT) Received: from web50901.mail.yahoo.com (web50901.mail.yahoo.com [206.190.38.121]) by mx1.FreeBSD.org (Postfix) with SMTP id 9431143D45 for ; Sun, 15 Aug 2004 19:43:18 +0000 (GMT) (envelope-from wonder_years2000@yahoo.com) Message-ID: <20040815194318.85580.qmail@web50901.mail.yahoo.com> Received: from [220.224.0.68] by web50901.mail.yahoo.com via HTTP; Sun, 15 Aug 2004 12:43:18 PDT Date: Sun, 15 Aug 2004 12:43:18 -0700 (PDT) From: Alok To: freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-1303892076-1092598998=:85493" X-Mailman-Approved-At: Mon, 16 Aug 2004 12:14:17 +0000 X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: regarding kernel source code ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: wonder_years2000@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 19:43:23 -0000 --0-1303892076-1092598998=:85493 Content-Type: text/plain; charset=us-ascii Dear Sir , My name is Alok Jadhav and I am studying in Final year of Computer Engineering. This year we are doing a project in Network securities and the Topic is Protocol Scrubbing presented in IEEE/ACM published Transactions on Networking. It consists of TCP scrubber used to remove insertion and evasion attacks at TCP layer. As written by the authors , this scrubber is already implemented in FreeBSD kernel . I've never used FreeBSD before. so , I am not accustomed to it as of now. Can you please tell me where can i find this perticular scrubber part in FreeBSD kernel's source code. I am attaching the paper with this mail for your referrence. looking forward for help ... Regards, Alok --------------------------------- Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! --0-1303892076-1092598998=:85493 Content-Type: application/pdf; name="scrub_discex.pdf" Content-Transfer-Encoding: base64 Content-Description: scrub_discex.pdf Content-Disposition: attachment; filename="scrub_discex.pdf" JVBERi0xLjMKJcfsj6IKNyAwIG9iago8PC9MZW5ndGggOCAwIFIvRmlsdGVy IC9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nJ1cS5PcxpHelW/8FXOTHMGBUO+q PS0ta3e5EXLQEjd8sPeA7sbMwOqXgO6h6R+i37tZj8wsdGOaow0eyEADhap8 fPnlA2wbcdfGP+Xv9e7NL29+uRPpGv613t394eObb380d0I3Slt59/HhTb5f 3EmtG3lnnWkEXN+9+ebD+PuPf38Dd3prLdzycfPmm8PpsD5s43XdNtL6UK7/ tB7Pq3hZWVjYi3J5Newf/y1evpeta4zUd/fCp1/+1J8+pftFY43FZQ7jz/Gi hD14iUv36/M4nD7HH4xujFW4+ukp79A3Xlq8eDg/PqWFVeMF3foxXvKNEc6a cmns9tOxSyto3yiJ7+v3p7QH2ThPq/7H9pBeFRrnaGfpAEI1QWg8wA+HzfDV ujsNh3388dsfQfJCNMGYJOt76UBB9u5euSbL4Y9dWcRahYs8D5tyLik8bvcv 6VLbKKFcudSdpsP+bZGiMPT8D93p9NQXIVjv/Wy/AqQgUJ8/7brxlJcA0UqD S/9nU3RvZavLtR8Pq35MslGm0Z4E9kO37co2bKMVKb/bp2NIMBQjFAoyXoLb XJB4sm7cd7v0uGy8bvHx/+6euv3QJTmC1USDdWA+uoENxd//Zz+kPbrG6RbP 85ysBCw2GHxjP07FemSAndC2Dw/pcdkEbfHYPwzrp+ER32ngmKDZ+6himbXV g8WcdsVETGiUkurGet9v+/VpHNbdtpiZb1t8//f7x2Hf9yO4SJKJaJTV9pbs vjvsjudTn0zWtI1r6dg/rYd+v+7ztkPbtMrW2363TyeSqtGhxb29G1eHtJT0 IFJUxtsswOC9MwtCgSNY69CgwNHbcC+FlMnY3wGKgJEjBN3HfwgXGn1nnGxM ApV/KW5hardACIpaNvYOXLwxGYM2n7KR79ZTstRxl4ztgWxm8aUKoMzlZdIq /3rrpUqHJihdv/Xf+349NefdsE7ScI3VDr3gqek357Ken/u2BrsG87rXMkFo lPFqOo3d+pTvl+0dvMpKq9P9ziUokLDXfPfHp2EqWm/ZFY/dMatcWlhW4j42 /bQeh1U/FTA2LYFxcX4BKNpqwfcPj/viBmyFxdDAi7xRuPawO277aOUEZPfC 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 fRnuouvY5RBz8eN/JyCd5a4XQm2YNbpPQ0VFq89I95RKp89CeBgr13FKcAqe OpBjDyEgz4HkZAKimuOPP9GJq0moGYMDWSrNeXEprHTENL7/ePfnN39+83+v eI2AZW5kc3RyZWFtCmVuZG9iago4IDAgb2JqCjU0MjUKZW5kb2JqCjIzIDAg b2JqCjw8L0EKMTIgMCBSL1IyMgoyMiAwIFIvUjIwCjIwIDAgUi9SMTgKMTgg MCBSL1IxNQoxNSAwIFIvUjEwCjEwIDAgUi9SNQo1IDAgUj4+CmVuZG9iagoy NSAwIG9iago8PC9MZW5ndGggMjYgMCBSL0ZpbHRlciAvRmxhdGVEZWNvZGU+ PgpzdHJlYW0KeJydXNuO5MaRBXrf5ivmTTYwTTFvvHifJMsGBKwXtjQLLzDW A7uK3U1PVbHFqlJP6zd24e/dCGZcMlnsmtFCDyOwWWRmXE+ciGRZmLcl/kf/ bvZvfn7z81szX+N/Nvu3375/8/UP1r5ti7aylX/7/v5N/IF5W9u3tSmLEi7u 3/zu+bGf+u74+/f/fONCUZvawU3vt29+d3rs8aIJhfPe0MWn7ngc5sttUYXg 6fIveMkXrTGGfz7/uC68cy7Qpf/8/ju8aMui9o5/enw5nvr9V/P7y8J7V/Ef 4gPKOoSW3z6Np3Ez7uabq8K0Xm4+dZuP88NdURnHyx0Op36al9sUpjSWLt/i pVsLe7DOvb2F6/Hp/Wl+qbVF09bmQg6hUTnkK6lqWUkUpTGwR152F3fSGhXF XX8YHg606aquQyo1Xzi4taFLnzaP3eGhL+a/mCLUgbfxp0/d/mnXzy/0tqhb y8sb72mHvjB1BTs0RdPwbo49bbIKIqhufzc8nIfTQE9riuCD/HGKEoB1qQS+ /yvts3RVTdfup+5h3x9O875A4sazNUz9ZjwcT9N5cxrGed+hLcpGX3HYzo+r iuBClUsetlEWDmyNFYX2euz3d7uXea1tYbzx2c4NaNA2LNTx0jrXDHbadU9P w+GBBA0P4N+fT7fj/e04baMxBVu0deBNv//jX0medWt46XcvpyhlU/ggCjv2 t7Khxqvl/XzuD5v+OKvYgc+0rTycjK8G0RvezzTu+Goo5ZW0cxBVKTtn2/UF xAAx6Kk7HJ/G6USvs3XF9x830/nuLu4SzNqZkv8yzHbRFJULVp4+C7YtGlfW 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 Wf2419pnqsBGoe4Ap4nTnAHxjxjQBqBnt8EvGxxPw2ZeOX75ql34QnZkSg0D wivfqBxS0C5T2itpW+Qi1rqIYF6rWRTHywV80IHFNmi7K9dNrbrx0ddKUI70 ACIo4UMHodXm9plP3pg6+RpIGvAvO5nJtHFEJfpdJWyjZrD62rk8BmpXzzsD 8MvOO0vnrkZqltdB6AzwmuCIXECVzr+HaLxVrfx+KqAILpJYrhqvdFoWSffd WQYU/Xxqb4mrs6iOFdyRtuzVd1WspbjA/Zlri3lI8sJtF0779Q+meYvfr8Bh 55mcw4+g4Viuo7jHnYQmCG78QaMDfq9HO21/p3tNSAq3NUx+Ozdksf+EiLQi BU0KlwQDrbMR830WkKHse87KCceO3mpkfvWDucwiP0W9V8lJUK0bgyKQzQ4A JR3VxJFWMZxlkLwg9AEEpKMyIzs0fv8ho9bpUxnrFACNo4HvtNWymZM1RF7E OHVmbFrhFu5G4Zy8BJAvnocQfVyMQwwydQLoxYrs99oTwXN+Xtvg86gRd8Z8 KSzJv6KymmQjn/ksQ61DfPszjedidBCI8/T4ctQjCFiBlEFHYDpSWNJ3f51u x/JfofA0nh9maV4Mo+4JYNgiJGdtBh5NT0pg+QDhfAamzPkTHGVx6YfsIL6d +dBprdVSvDtn89faVtOWedJWBx306zTgNvp1Gki0Jxq8Z6cqraTtf0W05iBv Ldqn8XuAeepNrM4KCRWb7T2ZQFPLp4FihZGf5lIskHCtEOwn/r5JdtxCv3AH gbDxzYKCe+27JPzzzx6HM/pdu7+MoL8DmTg82Cn3+v9gWI2eHYV0tu8mapMC MPJef7DhLxUm36sQMquSU60PIN5b+TyIUmR9/yRToxipZCg7foGLGRKIj2I6 NzuEO/EPf3r/9m9v/vbm/wBeiT1mZW5kc3RyZWFtCmVuZG9iagoyNiAwIG9i ago2NzE3CmVuZG9iagozMCAwIG9iago8PC9BCjEyIDAgUi9SMjgKMjggMCBS L1IyMgoyMiAwIFIvUjIwCjIwIDAgUi9SMTgKMTggMCBSPj4KZW5kb2JqCjMy IDAgb2JqCjw8L0xlbmd0aCAzMyAwIFIvRmlsdGVyIC9GbGF0ZURlY29kZT4+ CnN0cmVhbQp4nKVcTZPjxpGNmL3Nr5ib7IhpClX4KNT6JK/sWF20sjReH0Z7 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 oIqkntL+dpX4if0XegL+RtwQaaisJPPZBPv1XksjAs1Rg2/CaFwuEGYa2sMo 8V9tyXwFbxM1QU6MTSp0YeZEPhYed82F+32t+g+vDy1pZhW3Vz5AumoGCrlR wIxsK+oujvoScu0TiQaby8/lrK1TwGk47dBmi9VYe5+0GuqqPHZ9zziI1E5i 7M9gnvRVOlKd8US8lETkexdurRkpIsf4LZvo3Hup30VDIZ8K09MRQqkH/dTx B0qTUJFYdPr5VQ6yNgqyEfnXdrJDJ0dPJx1TyMzzpb2LOqTwjI8WCdvxU7dl plxnwovWv76xg7fQOrji9udg+TxBpg1nbJNpYF4rLCdls+h8CgDCIfrgbYEI Jy57aJ5Jl0NPKlLi/JKEh9WcLEnMseCk4UWKO2Y665laA8QmDeCzVr+oh3H1 JGMS79MWQwVViyREQPV4JS9L69ViDCr3dXwYPDpMe+0vHRcTyywiI7LRVj/+ wB45ffBSPDKuWvPyvjkc5OgFhCY9OPEwiKIRHdWFxG7btjvtcHL58hs7uK4C pR8tl7nWPkdSic+tftX43zxfWE6dMbqC9+2voVMM68W1rPdTLxtTG78QhE05 rwenfRuvRVYscooi8E9yDIefXNQuqjCplQ8CJF0YfK4todurKsUTn2hIZIpX s4PoXf9ktqekcJX43pQY0h6UXdtEJ4XF8SXOJGP9XJYRhhlXNKK0vEwSt4iQ 5HiUXwp6Ke/Aw7n65R2mHZV+MxghmedhtUHzdYoyNTlFKnlPa1SYchmpymye XISWlkgy5MBZ0RcVuUc/fFhhStslLK6VJ2b0RwQdEb/1i1HyTS/8cEC9ZJrR Aam5lVWpleGH2cShpjC+YwUfcvWbT+YI9KcP7/7y9i9v/x9o/AIOZW5kc3Ry ZWFtCmVuZG9iagozMyAwIG9iago3MDA2CmVuZG9iagozNiAwIG9iago8PC9S MzUKMzUgMCBSL1IyOAoyOCAwIFIvUjIyCjIyIDAgUi9SMjAKMjAgMCBSL1Ix OAoxOCAwIFI+PgplbmRvYmoKMzggMCBvYmoKPDwvTGVuZ3RoIDM5IDAgUi9G aWx0ZXIgL0ZsYXRlRGVjb2RlPj4Kc3RyZWFtCnic3VxZbyTJcQbWb/wVjX2x ZAxLeR/wg2BZK2gBW5B2RtgHyQ/NZg3Z2mYXt7u51PiH6Pc6IjMjMuvo5nKW 6wfBgFdTLOYRxxdfHEXRyZXA/yv/3TxcfX8lV9sr1akopVk9XyllY6dWLorQ hbiKsnPG2vLfsDr0V++vvl/JtAr9Z/Ow+s2Hq199Y+TKd1pL51YfPl7lLeRK qdApKWFJ1XmlVh8ern7x1S8//O3qqw+rP10p6XwHG4w3DD9pQwkrCTXa8H3d UFvRBfOmG2rXRelHG36DG8rYGRsNyNsL5bRffbi9+sUd/sR3PkTYXaRHh/Sy 6ESQ5clTeaKVNavr0e/f1KsYozoTL19FCW/hdC+8ZLXppH7hJacsHPuFl7z0 nZmuNDEgFUTshH9bpQswI1Sr7gQsgTr4dZVUsWorJO47PpT9SVZtZRd1PGfV ow3DT9qQrLrZcMGq33BDsupmw/9Xq750Fbbqiy+RVV98iaz64ktk1ZcMiK36 LZVerNoCQns7sWrpULrw0xBAGGH10DzxYH9mJZ3QaPfBg7BXErTWeU//3FxJ GxxsWn/uY5I8/Tb/O6+Pv0BPYCU4Mi8Q4crK1h3Kv+E3ygnoBT5gWWByhc3V x3/757zXPSj/TxBuv71C1T7A//dRidXuykk1/t/4P+7ByzRsgKrX4FYKhRB9 sS/wQHDIXfNOtjh8Avhn1OKTvA6uvU9B33Q2KBUh6FcBssDpSbNXMJ1yzZN8 H1zpc89KT+bv0FnBGio3+fm2QeU04qCrGmEQVKWAMAXO6A0Aoc9+/FmqjLCe lu25i8CbMwWIHM62ips/KessqhIDkwytKuk2vNeC4l55Mnoye4dPtqy4N9/m jOICwLVaVtwrAdipzmJ0gIWFzAD81f529fvheEIcvpbKwQ/0KnYygTzGsi9/ /f6rb1Z3h6ebL1PAA7uTYHjXEKKNsDK984evf7s6fjqe+gd8BbbXsH30AigF bA/L6i4au7pWAC8RkAl/56+/WP/1l2lF1UkpVYmqdBYgCErpUJ6u97fpoemc gvMJ2jU9hJsGR3G6HgMioQIR0wofT/2hvO6No6en03rzXdnPek+r5Fdj56UG 3Csr9/vbY1pYwN00vbrOkrNwNONX14C8QQidfnQ/7PqOA9xrnEwHbcc2pkOQ Yxvjd9jGdIh27GT85IKTabjj2MlgL3fOyT73ZPRk9s6yk/1829y/2m00eIV3 NrFxmcn4l39GpzgMw+lL1q+OEJCRxZnowAjeIg/QMYLB68RaDRBP3PrPvKGB uIxRe7TfT8puDXiBKXkA7VfzACNcTHnA213QIMkseQBtWPMAo4ApYh7whhsq D2jjRxt+M1fh26VyrMImnZ6r8O0KFKzCxQIFq/DtLsgqXCxQsArfcENS4bRA kTc0kOm9lPy/ckPjMDYk/zeAJbjhoW5olX+xkPDKDa3tQFGjDYe6ocOc9YWi xCs3dMA0tDm3oZfyjQscxiMa26TDiD+CDU/VDS1wglHKVJ/kpEdbYWvKpBEf 2pRJmxCalAn+KduUqf6b8pn6JGc8vEDJiHgHTpnoBPQCH7AsMLlCSgX/Ke/1 2lSQIzLnPRzZOaep71Dew0Rm4cn5VLAKkAVOT5q9CtlZSAU/96z0ZP7OYir4 822TMgptTLKBS1G0kRnJ40K+WI/Oi1/ChoXFL+Q0zeKE5RdPTvh78SXCzEtc iXHuDekGRD9/KeMCaUDCBXmDll2A367lx9B54bRty4+QEoE/Uz6S64/gpUbG Un+0IdT64zXkzsEFSLtoqc9P1W5KqiYhd4p0gP/g5AkyomA9pVp9OSwk+Jw8 fbHbbffpXrCwDZaeb/flrlYLuuvpvi95IaT/5RmmUumh67TgZLGmhaKmhZth //HpWHaDFDtKK8crX0sDJAnONsrWKJ2EFNhN0smaxEmN2WNKz0Gv8OYKEmrM B1MZAMgciNnaCPmIT0jCb5VnzVvl93afWX+xXqSsp5YfLIB0p1VTWrAO4kSM TbVl4UlZ51L9hVau9Ze617z+8tqT0ZPZO3yyxfrL22+DaEkFe+vR/vRLgFbl AT5g4wuARoX+i4tTu+XyS7kHNH5n2pgqbZTLC5W2wuWXSlvh8kulrXD5TKWt cHGl12GshCBhHcpLd1Zm8jotWsGmCnKU67aw9eE//7h6v4FXbjJgzbFQ6E4E n7AQfN4XLNwULATEjYxE7UJadAi7BQz3H4fDps+FI8yUuKaFEJVBLRWUfIXE U394PPSn9Wk77Bvo6ZyAs2EU9QqBGIzOZjIGJhiE5f++JETbSWD5ZpSmgvAM 2K91GPriJE3VHsK2UG+6IaCf0H60YU0bdQDT1W+7n+vcZL+aF+so0acnG4af tCGmp+gOzYZNmiqMht95yxtCbg80UKUNY1DTNFUCypk3VaEBF9YmjjZsskbp wUjfdj/gCd6f2w/gDjn+W24IqBdMSBs6JydZ6quSHgce6/DowDxCYvhA0rsA 2zo8duLz/A5wMCnTEwfvhMUneZ0atCGUSQNMBuu5WCAxvHLaC3Tvmr2aFOcz T0ZP5u/QybD3WSHrZ9vmhXrukmcqsFvrklqDlGcLuq9RsAm2UBC6H/g8UOj2 fvUdup9JWXZYfHJewZAVGUz3q4INZudhWcGfeTJ+Mn9nUcE/3zavVzAW7ER8 WcE6+pDFdgEyGsciN7IBMk63Qt4o4NdlxBKn+rwgAWmSRRlBuAs6nfRFXuIB /iLkFNdIOYUiXnLL7TSgppQMXc7RgAk3eVeTo4E43CRHA+rUNMNqjoY55yxH A7Sc52hWcI6GvTTaC8h34G7avs+jNzIAUSzPnkuHTWGqO87ZbtendVeEBEyz i065JOBrpUFkKCODlRB893fbu6dDWl5jZLa+LC+7QudAr7TlV39fPzzm20Cc 1pAQlh8MH0se7LQhWawfbmDp7elTeh2Op7S68PrpsN4fH4ekAANU0Qb+CT6y SFOYJO7WOT8G2sh596f8mo5RjfuVmJ5bQ88euYepHN11OA2bYVdkAI9J9Vu8 7UO/z5wzqQD8UXP39Hb7Md/EdsZL5raHfl+orY7grJGufdOfnvs+rXONZSSB 1ipVsYdiDjo6vWop73Dsk6lAXHCSrWo9v22yGwfpg2d7hKNTc9dquu1fKadH uDGaqgA5p8/eAgowKvixraJfSc3qXThwzy/qyC/eD8dTMUalxsaI83VhdW2y CJ63p/vy66qWeMilsMdt5NSnIhiKJfmCp/a370qT22q+cKr7GMxLapXoRGNq UpBIm/1BLKYVNEBLsx6ovfx2FIE2/4hqP5XNATlJJk/H/rBfP/RFrN64iRfA sxAmt73GoTCsf4HtluLVsawBIGQkK23X7+9O9+9KGgXh283EJqrYzh98kxFA dtLGKcDZKC54BEQFE9iLN/fDNq8FAIajjGT51/lakHHijABZPfsDUso4K3WB cQU+/Ok5HyfoxnELLIJmx2Z8LFUuFyR7zG43lFUhAWGlpzclpLQuzGXXbF9n IiZnHfKxohWeFrh9euxLUQ+Cbri0bHFFkAyWlatkmgqbBtPXfOX326IsOIaw boQHHsxZs+dshsOh35xq7k1LQCgtpwOxufOaBVQzhlZ7zhsIr1mrw9OO/N3X iZJdUTV2RKxtTXhhifWnY4mN1ghWIeEIiM9yxCTxwakci4+9AsGRvQLjX4GH ENl2nx7zvRD2FN/r0KfI87A9HuHeyZNSMqFose0px5oA9JYkuD2SLVpFC+2H U7XxCuwPgJ7rU4ZwAwxbcFDP/gXi0eBgs0uG6rbHx36z/WLDirFYjOZfWR/L MnUqN9vkeOXn++0mwxuETRMq5TgxvIZZOI8VmW4+nXJMgwtKIC0jzVbTDlU3 oMXHYZsxEWgHrM+b3rPpRIhXkYz4uwzU6M0cUvrHjkBZMSX4mkQnVAOdWSsS 0zy6SYbd5Ba0SeYw79izZt45vgItialRDWhFEIgErGnAvmM2RgjCho/AylBe XL5o2UpZHriq5gAxnQ6VySAIDoyYnj0XXHe+Kvb7J8J1iDtCsaGydoObaxeI ofWi7r+msTPjWIIbcrrRu9mcwe8BXyG4MMTfE/u1plp0vxmyaLHB4xmZHuvY WSW6/ekd46Z2bM4QtrLp5xn2qR4dtuwnKJsIPONj7fcA6wMupi4o5/E0X3QU q21s/eGLA4/r1Rm+ViNADGWYaiSF5ZFGuhJJRWB2+YceaEqpqCrMMxnACyap BpMehgPBo9SMXuPAoJWt6FNYHSAYEMalezrJmh3wHP9eDN5EZjx/ezoS69Sz mArZXrXkdG2NjJXZ1qbCkTNTKwRKUa0QdydGFCLzexID8HHF84yjVEQjxXcj q01V6wUQbs6a4mMObTI1QnWF+DZqJoyPcarZOccbM9p9n/kNiF5FzxH28B3l g9ia42B9RC5yLKIPJvxIjmMN6+M4PAJenrYbik3X0gO/d6o148x5jsVQIKln 0x/m9Pn4tNn0/W2XbSVgXpCwEfPNxDpS6AIU9MydhhxZva1Osr69PfRHom8+ +mpABd5xApYePh6GG2At74pL+cC5wHMlC2xH9+s5cP6w4Oz5VLJh/BvAmiKn 5HRyairYHWVdFn6VOJ2yYcTi24YINmEFXSXJzSHZtiSe9yXu73bZcB3mX3TK dyROYS/62GhHiGNWNMIrdqFipAv9sL0tgQCkr8U0EIGkKnfNvoPdLcERq8iz zbXWhy2xf6xUtznviSaHhYzVrznmxGrDhOCQywvOzVqub3Fwkd7e91lZCA3M ij7m4gKIxwZLDyEOfXFbEjeDTVGmpv/S2Dht+Fwip2RwPGAkI1hAbusrhT8d njYECxrMVk8zagQ0y+oDsnFN3AInVaqmbvpsuiASx9f5YVvug4jBla3HQ3+7 3XCLzKDEOdX7XbaZtmgwcInE1ObcImkiHSok8K1NE5uC04lo5iCqzTljtJKh 4HiCUEWIBsGENn7aAwLtB8IDYMWkCsj174pLOuA9/BsN+feeyf/Hw/BQLMJZ NzlkDm26kpaaIRlfQXccv53jMHsE3pJH2hUmghzNvr0v2a3DOqVl5WcYArkw DH0izKlI+CNvbu3s5oWY1gBVkFOApzaGW/Ke06kUTbB1LtU0W7Xghay/4bC9 2+7Xu0KevZulXFj7qVJf2ngzPG7L6dG3qt8TT3aaY8rjodZT5QRiRpC9P7Ee scbaWucAid1NLheBuIxmpjhmBUiRPdlFVzRkK7iyLj2SXtYlqQjhUnEGW1T0 rqzclJMWw9gl4cGdQJlWN4S64DaWItnvn6kcp2ocWs/9eDEFZwQw1URvS1hz FZ/yeTARtmyLh/5hKCc3NT1e0tBt2UUHM/NJ0Hl0FRvPuMekzvN0kx3yVGKj qV+1YBpBcIUiHXHz/pRpNWYkmmuzL8daoGtNrM1l82NhBFIxT5EbMmN1WZzy tpi2hNyMDAHEuYe4AWQjeSQEJO1q3pkFE5RiST+ToS6SdZxYo1gLMaFYSM2O z5EfpCFaNzyh1scBzi3//gjOEYpEpdVt6drgeJiu0YzLfmm56Rza2bpbYiS1 yl7uiTAUG06xEFkrltm68O2SOFH4/TpZpcFAZzidHlENIZhq9LvtA0BiSZ+N wSLsvGTV7PsS7FwrhIHUGmCb/c0nFgyz2cfthpIDsEBbk4Y1OUtVYTNUg44i LhT1ChyoxJKndN9UaAbjH3bJgBQcq9Z2el5ST8U/Io8UYpFzcYhNbCrxpkKp PPAg32BfYVOpHsEp8T/ylmjGY2qaCiKiRjQuENW8dLM+0rCRkPZiBjghL8C8 q3ghOfxUQpoITflmEaopHYOc0LU6+7FQrRI2Ljm8q+yTaVDAkTtGIvreLzVJ 5chkHH7Xx9WRpsViK7wUUetG1DcDt01qJ3PRlV/0OAGxhT2OGD96yITxE9Ny nJAWt08phggjAtAz+IY4q+HB7YRl6TRXqeB/7MkW4Njz+zU5/GWoAv3IWmPY DXd31XuDNnFquU1qnetcv/oGyFnTP0tVBf5DDEMuP0+bbDi4TO9keJHBdt6P UnMup+papYBEfMvJCwBYdBOiJjB7nbNF1XTpQCvUO9dYu2GQ4BJks+EwD0ZL 8emwWz8+lkUNGjEdoXJ2bRvOnjmLNIFT3DtqUABZEqPsHAs5x3fFj5WQTWDi Opqppab1YaFY/1BKaKlkTKcu9N42bjNQFQ/gU1TqRNFhm+MJMAAp7ATVznQM /PlilY1ni1VgQnGqFeVmxaoREoKof/X1H8l22TCOjfkDzaa3/yJVAbymzvA/ NF5QI8q5AtEY2W/6OT28K4KxbZqA7dx35TTKTiY0IHmJ+Hme9gq/aViwVjWz 1lF5Nl8/qYKZ68fD+i6ZUBFtUwdcL4EQnGVLYOwNg3ENgtzwiZ2Zlax8Q4bX hy03ZwB67Ig83FDUsIHxa9zty7UnsM/Kxd4Dq9mtqczclGeWd0/LUDU+CDnx kFFT5Ug9X6TmHG+a7rsOeqKu2g9XZ0TkAAoUn36pxVHxIX1RQiaLwScnBBq/ hWF69VXRGIY/Dt0YNqhNImJNfvucEuPkQo0m57rt84cESGDVLvAlQTuZVKSW v4lzQTV5JdCxx7bZqye9wFHwWTLe4bGqEAdmorlkug/r3cfh8FDovYOTMG/o 17f94UixJmKHrTHGD00Xl7XwKdMP0MuCjdcyIpFgp+Q4WmK1X/gGEdmtlGvc 6vgIF6RCAJAvPxJRXqTKc7fOGVMeR7lUL97RwYR6uUk3HhirLFjVQlMWYUFv nN6taVyrJaQNrKXjU+nuYi5deR31hkOtG/4x38DaOg2XxY9Db/To2/eFOxpv aLG/KHkWx1OruDz67+HQ56IA5LtiChzjYJ7xHdMKElKpawcv7I8OvxD51Nxw mFvv6/AJMu62b72+68tFg2TH5a61ws/UODSXZgMNdpnKy5sGlawl68f18bgt GOIsR6DzSbdv2D99dgVUbrneDbxO1SR0vxme9icymoAtrmaWhGwD4WlqGxiB SaIfPvzX9c36yF6tPI/sHYanEwVHgQjPy9QeEVByV9uoFTeMZNyo9q5r1pe6 K0Q1wYvgR4u0vuL/qc+hadznur6lhob0sSYY5UXb0KPj8Ymaq4i5fBJCJ6Ac teNawmBOf0kVxW7Qsxj69k8PN9yZjXXkcKkJOOF5BrK0avAE8amD5AEBx6MW Bd3w8xtWw1LNHuAOYsg2xyZj8RNBrpD1h4enU43a1jYcqY5n1umKURkV3LOW USdtC6dFzeYpsMFRVe37tLE77w5+Q/p6WH8358898eean+axHATtyHVUYDUH LHRtypVD18SP2v4Jits/ta0Upkkm1XpcrfXkQJFrTpVQD7d9jv44slsz0t2u 0C4cWFuWoq6Tx+PPm46F0phm3rLcN1oVp1nXqLBC+sj9H4GWrCbmPQ++cCc4 vRsVSh9KHz+FFE/LY9mpIJOpbbDjwHNYuo6EpBrtiaYTveRF7vp9f6BaK2Ap 5LoLpYiFT8Lww2fODsYye5exz2EgMxUpFkpXxVewQLbAalngu6dShsV5Htvs Ol8RAGx3fdo+5CZQqhzaedOtzj83HHBhfEkotiKccSlTa6FzHOVoJk15DuJL 4x8Tf0jlNOfUReEA9fgeL17q4FgrqB2TpjkPnNT7eYWv4fklXjJicNkY4W1L lxLWTMulo1UALE40TGkdc7a/LwzwZtxK7inHNaA1EcyKH6+Ozu0v19qUms4T lVFneIr6xdl5HHW2wKSQa+PgfTDpdYjRJVrB9rRXl43FSsHEnEImDltxVEtf QpAEDY/flvAj8a9ZsFh/2x+3dxRcdZ0SrGPduo4ifT0bA52NbYNnoom2dyFg waaWnMf60DRRxy2DWDvAm4EidTNrt0gaTzQz6rl+uhT+Tjh4vSuMpZlyOjtq Q+FBRlp2cQaAyreuTgz/gzEU2T7zrtIwzhEehCbDJEEdIcBL54qaz3VmTm5h zqehpq7+4biHUklOc151SLsELLjrmKYMT8cMB9f49aJQNR9hCC6cEb8EYri4 qV0LLjy8NDuP3VW1SC0C5mcvyqpyVGOWxqUQRRlEGrWpUSEQrjXMDfp+eBgg cm3/t3yQAcEo8mUvmkpT6R8rhE7ymtGk9DECe/fTHqxsW2Qnavd4oU4zlDgw LnqTCku5MOAUQsO0Mx+hcVnp2pLvoc8qhh9Y6WuivdgTbj6iYrgjiFBdk69t IUk/cD6AidZsbgYvYCe+3/a7lrLAY1kxzS87WSlCyWC6YmWhztp/e78tvCPg B0kNIlP50zT1y3FNLake/x5RnQpYLJ194qDPRQ2E6+0XVL6FLcZfgmzWXBjy beeNiUlTlz9fjfajc5TyUdGzx/S7BuAznxEs3NeBtlqzKj4ka7pYS13YTCEV IIKUWCNGLQ78Gy2swud+t7vGWagfsgNOI5PFP0j2sjvijERwY6EBqumFZkY7 ulS/NPCamRzId1/K+BEJET3vsoidF0zlaowMinNL4EhUnACAH4MQN93T9C5n kxRB/7WoStX6O6GD5fzmb8MNRQ8jpyOy8CJPHvD0TSOHzQBo/anYv3dcUnwu EAZua7VviNpxW8qj4BehTuNxPmlrsEu6ZHeMvpY9l4fdFrCQ5idMzcBHowo4 7MOc8xUjdHWEwNXCxbJ8fjRjocBs66d5LzGWOGIsJCucJGNRLX2TU+hCGm75 ETQGg3O4dMkmL6l/IBYC6v52fcjDvmY0k3l+zFdB/CbJ3/ZgxtsbKsY2jQfK m8Hma2K/zuiU3sZpGzXmUbmXJ2eMH/9gTB3iZfgocQXWvxRqybyaXvuo71UL nuetru2INd8ntTPqTfQY1S48fgE9/hQvFx5EE7myYHU7rLN+LHjk8JuGSUkn /e2oWcYJK/CJmw8KUxvg8vQRFcGasZSzZd7ctgzjX8WOHX+C87zdET8xjLDw 7KlORGF8NlFNblD+LsH/ATBN/b9lbmRzdHJlYW0KZW5kb2JqCjM5IDAgb2Jq CjY2OTcKZW5kb2JqCjQ2IDAgb2JqCjw8L1I0Mwo0MyAwIFIvUjM1CjM1IDAg Ui9SMjgKMjggMCBSL1IyMgoyMiAwIFIvUjIwCjIwIDAgUi9SNDEKNDEgMCBS L1I0NQo0NSAwIFI+PgplbmRvYmoKNDggMCBvYmoKPDwvTGVuZ3RoIDQ5IDAg Ui9GaWx0ZXIgL0ZsYXRlRGVjb2RlPj4Kc3RyZWFtCnictVzbktzGkd3g3vkV 8+KwHMEBUagLCvaTJUthxoYctEiHHlb7gOkGZ7DsyxjoFkl/iP9i/3GzUHkp ANVNUrLC4aCipxuoyjqZefJWZaFuyvA//Hezf/rXp3+9UdNn9M9mf/Pl66fP v6uqm6ZoXOXMzes3T+MP1E1d3dSqLEr4cP/0i/bxcTi2m4ffvP7fp6YsbFmF 773ePv3i7kP4TJmirOBB8bNtd2r7XX+4D3/SvvDa1/in/jRO39eF0abBD+Hp u37TnvrjYXqBL3Sp6WGn4/QDVdS29PTZQzd96ArlDa3k9Vcvw4dVVWilHC/v NH31tiptoY2/uVXV9IfxNHTtfvpBU5SqpNfBp+PY7e92075MXVSVMvg3kMGm G8di2tb0uGrx7rJwmt997VH9JIamUMpWbrErU7iKd7U/jifcgC4UnMotiML7 KOf+zfSDsmhKXsqTzXk3/aKC7xtNz2nHx24TP68L65zFz49vULzKeLtaiHep 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 1KLb2GjfTFP7H2u0n9PhT+5ERRkDFJr0siaD3/S2El+wpaZSXUlLoEWboWo2 hLEl8Pl3oCeBFFogua/fhK6qsGGgBqGbLYpRFxp/7ixbX2xtAQDypgmw4IWk y1BqLqElIeklH4jiCMZeRhGZupaZiOENL53PJrEyy6ztLeiybwIMQtqB7q7i doNaJqLHWROcctL5N3Qjhb3gV2A160GdhIDDt8+7E7UherlVLWkxqxbNdJOB koUM2P4Slsxmi5sSKhlIzQUQ0gpRVZKNAmPc72kXJtQ6k8vFcvQSLNsT7BFp CpkcyLLOq3NgF11iWYtLzLWfh+HUtJPjoR3aDXga4CX9JpISZ8I1MsvmuBC4 qVk0GS56kIn9hyPDlxk6dUtqpROxPCOYaCOFbjyGUhKGODD0DBEieaWcGU9i 92k4q0qGITLOPlTqzKpP+CflQRet6o34ChlhMSoJWk44leRCzLueCU7e97EE oZYsWXrOJozwLSajwsgMb44T92DpuB1xc9zvu4EuV7QqXBMnt7YkMyIT4xBS O91fIqkNJYPlT4YuTenNnEa+U10mZdg0SeOil+u4Br4qR2aaCWuODclfDv17 yTaa0DXEXdkviXJZBjqI8B1qrEhbSuzB7Eg0MBzPdPPU1NHMT57fTlgKwz1T 1jMMtHEOhoGfXFd60QdTUjrpsuPjrST4Pj+iJjYlj1il16LSUm1Z4n4BBfTF b+96ug4UHO0SiS70/UmeJnQQF2iJkjskkyS9OBMxoEnPnFw8o5LvZu5Wyo/w Zgw1m+RIAEsQVia4X+ZLHo+EElDAkqkDXlnCql3Jk9i6V9IrP7R09E3o918M SqJ+2/XI6+waWB6UQ1UG1SfBXGJ2z5AQgIav7VfyPkR9mI1mT/kx1MPBCuo/ YwGot9ONMWUtJ553dTji4kM9j0dcvn/9X0g+ZoMnoG8QfnN8emXwJDCIzOBJ GOFeZ09o3XRNVpJ5zi15bPfdb4lxCTNEw5Smn3RUs3j7qp2lzr79499QcsYx cX4J6O3xEsYwqMk9zS/Ywhl63Vcv/0JXyvqGIyXA6Vqx95nr0e7bkNriO0Hk ejNOwYMREUHsu/1xiLFWCCR5FASvDAvZ8SrR7dx9LRcvHJqXAF6AUu7I1zq2 ll+HBvCv3z/SDbUWtm05+n2JQXvo72a3oMrnqiy/RGkmA4jTs8DUonIbw2f4 wxdZ2IGvqFlyb94/ZolxyPk5leT8MjMkNAozb0z+5MrT8MNvEI5KvrgBlcVL hwG6yb02PNrg3KqgE3KAiyo12R2IKMuP2h3EbinV8wvqhHZ/1hjP/nB2VyL7 qapeEEEeSFS2Whv0ej3G+0kUOTCbhPqGLh0xGb8/rJ9+PoQ0KF1v66daPB32 k44QnwxQJdG7DmWrdfRehcrUx6J3/KZELpctl6S5WMYAKuEc0syh/epSB5O2 07DDSLo9Zw7DJx6DuF7ogRYrQA3MNuWwh/MeDghFHq4CY6l80x/ojoDgehqO F58Rp5D2nMzIVkxRx4SLD+TO/ixpJ+XHhLDapcArqV2RxOPdL7OrX9p1+0Ym UTue72bjt752zerclFme29JazTMbnzydeZVRYcZ6KtbZNGP9Co3cx3IzA5bW wm2V/Pyrr5z+FgateUrxXcd3MTgZ1zkftt1wivWgkB/3fpFcDQl+PnVuv1aq lEwU0MA9kj3Q7CqQmY8yuH37vt/jbcYAF19LzWkMpWce7Q7t38xs7sA1vuu3 MQgzwfmzjOSMy8y4fZY7LsemKRMJ6mMlVXHHsWQlRciC8CdJ0uztaBezL3y3 QpIczg4H7MgNJfMRUxPklEQoE5KGx7XIu+OvfcO3nCbaL3eDjd2O+HqoVdRC ftpQBZxEM7Vd/vnp/wPOWLUZZW5kc3RyZWFtCmVuZG9iago0OSAwIG9iago3 MTg3CmVuZG9iago1OSAwIG9iago8PC9SNDMKNDMgMCBSL0EKMTIgMCBSL1Iz NQozNSAwIFIvUjI4CjI4IDAgUi9SMjIKMjIgMCBSL1I1OAo1OCAwIFIvUjQ1 CjQ1IDAgUj4+CmVuZG9iago2MSAwIG9iago8PC9MZW5ndGggNjIgMCBSL0Zp bHRlciAvRmxhdGVEZWNvZGU+PgpzdHJlYW0KeJy1XcmSJMdxlUEyHVoyiRS1 69IXGUAZOidjyYgM8QQQoBEmkUZqRqYDh4fs6pzu0tSGWtAz/BD+hf5R7hHh 7pFLVU8THANpYGdVZUa4P3d/vkSyrtR1jf/kfy/WV99efXut4jX612J9/eWr qxf/ZZvrUAWnnb1+9eYq/UBdt/bahbby7vrV+uqzVz9+9b9XTaW9rxv4+NXd 1WfdLV5TqmoU/DJdW/X5mmrakK/pKl/Tnq/9Z3fsNwu8bnRV60C/f4+X2sqE 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 CVqqIfkkSJUjEr7Db4QspKGMrA+oxTQfWILAurK9QBcYSXLyvVtlwhyLW+0s vpTiSs2BTxLLK2iKfpaXWuvMy1Quy1dJ7lw0bIDHs9+cO9cH0isGa4dDGDhI 2DOztcyE5QgPTi1IwkqhUMlMV7eAhBOkgeOhUaEQjIopmi84CnCR6nTI87yp CE57f6pLETkjFipI0eVohRWfjWc913RWDtAVpCRLxAvsSU5GH3Z9T8eV2nrm 3XNjclBX4vMX/R6L6bm44mCbXI7hl1xoLRULKdTCw1RxcpTmOSYDC7VD0iSb vuA7Mf7ODJ44yE1UIYK3dNylnVTFQEtSTHxY5g3jwZhmJMLB4fK+W9CpRRe4 KjcoRcSJAEZX2R9pBi4qlyPoHRQtvq6R4FeySJnSejaLHBTWhnNG869cBJ+5 3PHRZIH+/Pms4qgcMlHuo8mxvGKOCERxpBDXyNDYO5oQx+5LcQAgzjEKlW+C jDIuc5cfgx17s9XUw805vfeHvDLV1pIKHZb3KZ3wla5b2UYKicZafo/h+3TP QVr5hDXHN5jx6qkYHGERX8Tz66v/B/HpHc5lbmRzdHJlYW0KZW5kb2JqCjYy IDAgb2JqCjc4MjkKZW5kb2JqCjgzIDAgb2JqCjw8L1I0Mwo0MyAwIFIvQQox MiAwIFIvUjcwCjcwIDAgUi9SMjgKMjggMCBSL1IyMgoyMiAwIFIvUjU4CjU4 IDAgUi9SNDUKNDUgMCBSPj4KZW5kb2JqCjg1IDAgb2JqCjw8L0xlbmd0aCA4 NiAwIFIvRmlsdGVyIC9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nKVcTY8jx5EF xrf5C3vhZWEbmC5VflVmwiev18JqgTXGnjF8kHSoJmu6a4dk0WS1WqNfvxGZ EZFZZE3PaA3DkJQMVmXGx4sXEcluG7Vp8X/0z+3h9T9fq834um18iCHazTP8 53+/Vs6pBv7LBWcb5zaH1zr40MROVvYrMrzSxa5tLIi8e0HIhU43Nj3IK98E XcvIisiEoJuoahlZYRnd2tg4X29aVkRGK4f/VsnIisiY0DZucXhZERlnu8bW ey4rIuOVadpQy8iKyFyptVY0y7ysRd825ksaYpmXTi8yL5xMZF7YNcu8e/3P jUq+xv/YHjb/8f71N38LYWMbb6LpNu8/vM6OqDYKHtW2ceN8bKJ2m/eH179r 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 37292/PtdRVeBLt9DjvrtVCn3/QPnP6sk/L68iQ/3/CmzBb5fkBsrzWCCFV6 GdPxt4KqhUjikgN/jaU10D9wdjCNqgZgfOsUo7YQk/sxk8uk/9sfBbnbScQi XqujtnHtqDbeHrWQ47+9e0/AUD3zDQdP625pYBXq/e4nXvTiIPhrAq5b8Mcb wuCex+oStK5uwKy2SPJSoSSX8ZfcRko/vpFOiBypKzdjn4e93AazhWXdHr70 7Bacshoe5Sm4wn4Mf1p1TiQmzmUTN9QB5xQiuRvmftxz/xEKoLhoRYxH7JEW hqRXaHjVsq37ytgcrPrKAov4y9fKL6ROjSXxCIe2twXS4n0V93KF7X2pbtOl blvcgaquEH0Y+H5h9dy1y63fp0tjyx+k/lj+eNJfX/8fMyUjamVuZHN0cmVh bQplbmRvYmoKODYgMCBvYmoKNjg4NwplbmRvYmoKOTEgMCBvYmoKPDwvUjQz CjQzIDAgUi9BCjEyIDAgUi9SMjgKMjggMCBSL1IyMgoyMiAwIFIvUjg4Cjg4 IDAgUi9SMTgKMTggMCBSL1I5MAo5MCAwIFIvUjQ1CjQ1IDAgUj4+CmVuZG9i ago5NSAwIG9iago8PC9MZW5ndGggOTYgMCBSL0ZpbHRlciAvRmxhdGVEZWNv ZGU+PgpzdHJlYW0KeJzFXMmO5EaSBdS3+oqckySgkvKVTm+gD1q7C+ilWlUD zUEXJoMZQVUEmSIZlcqP6n8c883MuWRWqzHASIcCGBFOd7NnZs8WT1bwG+b+ j/82l1e/vvr1hvtn6Z/mcvPN+1df/WjljSmsYZzfvL9/FX7Ab4y4MVwV8M/7 y6sv3n/79sv3v7zitmBGwefvD6++eNf+em37pnUfKFmwMn3wdmwPXTN3Q/9H 99ktrGIqpm9ubaGMtZX/0rfnepr+NI/X85P7kjaFlBWPK4x1fxgu/sfpA/fj ijHpP/+uu7/vmut5fvqTDf+571pWVEylNX7+4s/DcHDPRVWUJj49X5sP//Xz l35pbsqikmq59I/tZZj9maQsVFnF3w0P7VjPXX/0pzWFUSJ+Mj1Nc3vZ/OB4 bafpj3gEHo+A5/9r119/W+9OFKyQ+lYa98FXP6qFZm6FKCysAkqQIh6xDkfh DD7haUc/uUdlYbUubXzU3nkBFVJV+LWpHT/6HzvdCZ2+ObpnVSGMZOnZeO37 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 u7pe2E1pKJBZ9I6Xuou9vaX2sa2TjRVjmijobooLaTFhdVMXONDyh/o4xbeJ zJ1jGmsoqbwf62Mi65BCCUl/B2SRUfjBfJeSYRQ4H4exm0+hGeMHO0jLe2+6 BMq9nLLZmdINAw6uc0+T8LCVDitqWoqNhWeC2jT8JDX8sBJf0vja4k7Q9+9v /vnqn6/+F2JFM6RlbmRzdHJlYW0KZW5kb2JqCjk2IDAgb2JqCjU5MzkKZW5k b2JqCjk5IDAgb2JqCjw8L1I0Mwo0MyAwIFIvUjM1CjM1IDAgUi9SMjgKMjgg MCBSL1IyMgoyMiAwIFIvUjk4Cjk4IDAgUi9SOTMKOTMgMCBSL1I0NQo0NSAw IFI+PgplbmRvYmoKMTAxIDAgb2JqCjw8L0xlbmd0aCAxMDIgMCBSL0ZpbHRl ciAvRmxhdGVEZWNvZGU+PgpzdHJlYW0KeJytXE2T3DaSjZBv+hW6rR3RTRMA QYLHsS2HFTv2aKye8GyEL+wqdjftKrJMstzq/fWb+MhMgGSV5N2dOTiCqiaB /Hz5MoE8E29y+//w393x9R+v/3gj3DP8z+745pu711//LOWbOqtLWRZv7h5e +z8Qbyr5phJ5lsPD4+svp5dpbo/ZV3e/vVYqq0VZwY/u9q+//MU+MpkWRS3D o9Y+qjIllNLh0a7p7UNRZlpVNf6umbrDi30udWZqacLz47DvHtxzJTItBb53 fnJvFkVmykKEh+/eu2ciKxWt6alt9u3oXlxnUtX44i+ax8k9hddWdYGvHdwb 8qxQOf5ybG/tw1sJLy4K8+YWFuGX5n4rsyoXuI0/7aMCZCKEiiVQwqdZArD4 yT2WEmSgcPnN8b57PHdz17qVFSDJQuM/Pnfz03CenSRkVhhd0PKmeex2c9c/ ur+Cf1S49IdzD/8w9M2hm50QdQ67NfjOzO9LwnZlCfsSmTHuH+6eOrcEUWdl Scvueq9MkE212HAFO8YFDYc/14LxW7I2VBp8BouaD14OeSYrUeJW/WfySuWo 7mH83f29zqSoy2Q9dQamWVUru5BsF9NuPN/feytQRSZ0jq+48csXda5xl/fr HXmxpx/aD35LdumazHJs/zh3o1vCrahhETWZS7P/7TzNx7Z3LytKMFz65vAQ DFcZoxc70ZkqaCeJNeuarHn31O5+n87eKQvwN5Xje+6c3kG+FT0avJ8KLWjh +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 vF3ZESmStl9FPDEZozoA8bVIYF1QYqnIufn4mgd11SLAhqXmbHKMO6EyX+JO N2KGEuHW73LsM8F+PjjYM74qX+tRx0XdVT1Gx2ov6dG2halYO9NJGJBqxWWs KMJ6VEHFyycqnTDexCD/L6RNus2ML64oRHRxBSg0PDY8f7MZuvcDHzkAYaAs 3zJvG70hjtWCO+sX81cY/OCE8gy1qb8hxNtLcsEa3oxgeC7iChmoBM+pENlt WeYiTphDjx0lndtLvNhWiL2ILmLAIXlnQVxnsD0n53D5PoPUqiqbDtQnrMpH B8G3nPDhufi2kS30E45G47SHBhVpOpK1NZnaIDKJ79sDE7l10lVWMBQMqVuo ioin7ffTk4cNdliP5LUxfc0TPCVPmiVn3OML4Lab98iH5JxOxjYesS7sxRJq seWko88Dc2J1esebOwQU/PGP1CmWfJ3ii486lRYiRcZLfacfvhhFIBOhOFxC h9o3Ap7oLsZWmrFbxMyCzDmZrXMJUq9J658me6ucxr8m8HqkVKzTU8o9jcN9 i419QJHb4FzmG5kziuAf/usnTBkl4csvmsfgblXBZy9bPGBuzyewK0x45qIo V5fxJB2xoCMdhQJ2o2jiABCP5eLpCKPhUxtj9/iEXdMiPXeXooo1iR2+Hs1H Z2gzPLz2oTt2UCYf8MyUrtKbFtMhkSQFQPVix02SSjnNBMaIBS5PhrB8qy+9 WudxbJtQUNoxqII+feUskOv38vD69umy6F4BVajlG2Qc1V4Q+bLaogN7lb3e ZHEqwkeOaI7/kisnh3CWngoQKedDORc91R6wQws9czHMNxOGAXDLrTPzHc1j Sb2cx4o5lkCa+KIMHz4ilRzdwAX1El5HofI0G7nEatMRRVKv/k/dEdnRBR92 /qWO3poe9ryV9halIpmnuTTJX9qrW1RcVvmoDripLkvOZDQ5yLNY8+DvVHE9 BMFPMelvXKin+YDhY9uDt+C8fHRdSXSo0Vbt9bX30hF0G16p3rk4+u0u87TH z3mQoUEztP0kipmX7zyLa+J7e+VW0LGoqmtdGB9+4nOQ2zd5bN5q407fTDwq mavlASV3ydHq9kal6RAqn9Oy955V8a3B9uHbuzf/fP3P1/8D7SWSFGVuZHN0 cmVhbQplbmRvYmoKMTAyIDAgb2JqCjY4MTEKZW5kb2JqCjEwMyAwIG9iago8 PC9SMzUKMzUgMCBSL1IyOAoyOCAwIFIvUjIyCjIyIDAgUi9SOTgKOTggMCBS Pj4KZW5kb2JqCjEwNSAwIG9iago8PC9MZW5ndGggMTA2IDAgUi9GaWx0ZXIg L0ZsYXRlRGVjb2RlPj4Kc3RyZWFtCnic1VxNk+PGkd0Y3eZX9GXDcuw0pr4L tTfNyArPQVpZHocO6z2AJLqJHZKgAFKt9q/fLFRVZuGD7G7PyBEbDsco0CRQ lZn18uXLBFnBb5j/X/x3vX/9y+tfbvhwLf2z3t+8+/j67U9K37jCGWHUzce7 1+EL/KZUN8aVhTU3H/evv/74x4//+1oXwlqm4c8fN6+/rlb+GueF5vDNcG1X x2tMli5ek8X82sdtN1zURSmcjRfb8/32eD75PyhRaOvK+Ic7f0kWnFvF02fD 9+FjTqTvV/5SCWukS31zuA9rkrBOLeLl8+HUnftTvfF/ueVawDLEzS2ssSyH D2zbfliH0AV3LK3j1A4PlXAnpfKHuqKUTuDH6N7SFo7JtOjlu579IocPM7gN Sx/++P7H4bOq4EzLePHvX3+/OvZv/B/efgNOAn8lF9/6/yhVoW9MCXsdvPbV 8MELDnaw2xtj1bBn+DDY8t/j6iRXyVPVKXrPSJOs6lz4oCisw6W9//D3Pw6e /tPHm7/4WNOyLFRYGjwDgk6rwsATDXcFbB5C8t2H128/fH8D9qrf/nzD3/4Z /v/ux/c3/PWHb2/+7fWfPly/kYbwNC+4kf/ycBcXbyMKMdxGv2w9i4dIlzfg a8s4z23MIZAFPAICbLDxhx9DuIDZShMN990Q8IWxVhuM7oeq28SwiPYcr14I NwTrF1q9kkurF9KfeJWtv7QFM5cXpR2Lnnnhoi66mDHvo891sYL1qN/LxaIc HAGedgErvwPH1V08IcK5dJSOXXMIp8kVSvLk7L+uu/MApQJOsEqosHqW97/M xq55n+c7K01RPsP9L17VJfcrNmzzc90vnf39TjhAo/LPgPwkPsv9cJmSQhFA AVKWTKj7H/6SgYRXlulT33XVECTcFNxico3fVRI8GC/9VFd98XQ4fRlDXQkn LnNLeTRhT4fTi1d1KZwkk18mLkUpv4SdLvEuDWlclP8E74JVURioYn7tSd4F YeOewbtUYbVIETxQIM6ANbhEBjLeBSa3iXeNWJdRhVPLrKtcYF0GMiSxrsNw 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 4ZeJ/vL6/wA7X40yZW5kc3RyZWFtCmVuZG9iagoxMDYgMCBvYmoKNjIwMApl bmRvYmoKMTA3IDAgb2JqCjw8L1I0Mwo0MyAwIFIvQQoxMiAwIFIvUjIyCjIy IDAgUi9SOTgKOTggMCBSL1IxOAoxOCAwIFIvUjU4CjU4IDAgUi9SNDUKNDUg MCBSPj4KZW5kb2JqCjEwOSAwIG9iago8PC9MZW5ndGggMTEwIDAgUi9GaWx0 ZXIgL0ZsYXRlRGVjb2RlPj4Kc3RyZWFtCniczVzbchtHkt2YfdgIfcNuBF8m LMeSza57ld8o6kaPKNEkPZ5dax6aYJNoC0DDQIM09SH+3s26ZVUDDZG0zIkN hcOMZqORVZV58pzMbJYF2Sntv/D/0fTZr89+3SHuWvzfaLrz4vzZ/ikXO6Yw kkq+c371zH+A7Gi+I40ulNw5nz57fv7t+S/PREGVKgX8+vzy2fPqwl4jpBAE PumvTWq8pk24JorNa+fjhbsoCk2NChfb1fV4vursLzgrSoG/uLKXWEGI4iTe 6z8PFw2Nt1X2ElgsDNXh0rKZXXubGC1KRsPl1axbrJZdfem+yxREKRZ+NW6X zgLKC8rK+JyudV9HC2G42P512VOZKkrJyBefurLmucsGHlPGm398eRLvpSTa 9fH58cV8uWt/sX8AxwMnFQ93z/7AtSjMDpxOwd2B/bu7c8vZcgMbJ0x+wLC0 v7pvhccQHs+pclbvcSaKUvGdPThFrd1vjPG300IqEY08PPr4rTvtV+c7P4C/ MVKWhfZGcvgBHmzsA6RipoBtALd8cfRs/+h4B3au3v9ph+y/hf9enBzukGdH L3f+7dmro3seRHQhH/EgHp9iwmNUwd1jmH3cgx8zHEhC76jCqJKQfLOJhoPc kdJ+od3p187pYNuUkOjNt9XiMjgDeI6SNHrZebxb0ui9d/M62+P+iiBA4due eEVUs0KUPFuT5NYi8DQuWcSCi7uuXm41lBFVPrmhjAKOqHzzCVfUhbK9G5Hj HlMll9bJntZU2A4pZWYqLbkOpmrxQFM5oSTExdOZyiHmqCSZqRpQ+NGmCgCf P+IAW7FAUudRX4sFErIS/+qt42wQC4w1XQoOmOx27ujEZxFjFI+BEwCCEYOx BAAREhClAvMdQsaXoeApF0S1LiA75EsiYLq5P+6f0irGiLUmM0qbLxoVI/xJ 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 I1GgkSiwIaKQVXb6Q3WDPgbJgdA+0+pt44MZQNyU7QxA9hsY/h089474D8/+ D/r7xQplbmRzdHJlYW0KZW5kb2JqCjExMCAwIG9iago2MTQ1CmVuZG9iagox MTkgMCBvYmoKPDwvUjQzCjQzIDAgUi9BCjEyIDAgUi9SMTEyCjExMiAwIFIv UjIyCjIyIDAgUi9SMTgKMTggMCBSL1I1OAo1OCAwIFIvUjExNgoxMTYgMCBS L1IxMTQKMTE0IDAgUi9SNDUKNDUgMCBSPj4KZW5kb2JqCjYgMCBvYmoKPDwv VHlwZS9QYWdlL01lZGlhQm94IFswIDAgNjEyIDc5Ml0KL1BhcmVudCAzIDAg UgovUmVzb3VyY2VzPDwvUHJvY1NldFsvUERGIC9JbWFnZUIgL1RleHRdCi9G b250IDIzIDAgUgo+PgovQ29udGVudHMgNyAwIFIKPj4KZW5kb2JqCjI0IDAg b2JqCjw8L1R5cGUvUGFnZS9NZWRpYUJveCBbMCAwIDYxMiA3OTJdCi9QYXJl bnQgMyAwIFIKL1Jlc291cmNlczw8L1Byb2NTZXRbL1BERiAvSW1hZ2VCIC9U ZXh0XQovRm9udCAzMCAwIFIKPj4KL0NvbnRlbnRzIDI1IDAgUgo+PgplbmRv YmoKMzEgMCBvYmoKPDwvVHlwZS9QYWdlL01lZGlhQm94IFswIDAgNjEyIDc5 Ml0KL1BhcmVudCAzIDAgUgovUmVzb3VyY2VzPDwvUHJvY1NldFsvUERGIC9U ZXh0XQovRm9udCAzNiAwIFIKPj4KL0NvbnRlbnRzIDMyIDAgUgo+PgplbmRv YmoKMzcgMCBvYmoKPDwvVHlwZS9QYWdlL01lZGlhQm94IFswIDAgNjEyIDc5 Ml0KL1BhcmVudCAzIDAgUgovUmVzb3VyY2VzPDwvUHJvY1NldFsvUERGIC9U ZXh0XQovRm9udCA0NiAwIFIKPj4KL0NvbnRlbnRzIDM4IDAgUgo+PgplbmRv YmoKNDcgMCBvYmoKPDwvVHlwZS9QYWdlL01lZGlhQm94IFswIDAgNjEyIDc5 Ml0KL1BhcmVudCAzIDAgUgovUmVzb3VyY2VzPDwvUHJvY1NldFsvUERGIC9J bWFnZUIgL1RleHRdCi9Gb250IDU5IDAgUgo+PgovQ29udGVudHMgNDggMCBS Cj4+CmVuZG9iago2MCAwIG9iago8PC9UeXBlL1BhZ2UvTWVkaWFCb3ggWzAg MCA2MTIgNzkyXQovUGFyZW50IDMgMCBSCi9SZXNvdXJjZXM8PC9Qcm9jU2V0 Wy9QREYgL0ltYWdlQiAvVGV4dF0KL0ZvbnQgODMgMCBSCj4+Ci9Db250ZW50 cyA2MSAwIFIKPj4KZW5kb2JqCjg0IDAgb2JqCjw8L1R5cGUvUGFnZS9NZWRp YUJveCBbMCAwIDYxMiA3OTJdCi9QYXJlbnQgMyAwIFIKL1Jlc291cmNlczw8 L1Byb2NTZXRbL1BERiAvVGV4dF0KL0ZvbnQgOTEgMCBSCj4+Ci9Db250ZW50 cyA4NSAwIFIKPj4KZW5kb2JqCjk0IDAgb2JqCjw8L1R5cGUvUGFnZS9NZWRp YUJveCBbMCAwIDYxMiA3OTJdCi9QYXJlbnQgMyAwIFIKL1Jlc291cmNlczw8 L1Byb2NTZXRbL1BERiAvVGV4dF0KL0ZvbnQgOTkgMCBSCj4+Ci9Db250ZW50 cyA5NSAwIFIKPj4KZW5kb2JqCjEwMCAwIG9iago8PC9UeXBlL1BhZ2UvTWVk aWFCb3ggWzAgMCA2MTIgNzkyXQovUGFyZW50IDMgMCBSCi9SZXNvdXJjZXM8 PC9Qcm9jU2V0Wy9QREYgL1RleHRdCi9Gb250IDEwMyAwIFIKPj4KL0NvbnRl bnRzIDEwMSAwIFIKPj4KZW5kb2JqCjEwNCAwIG9iago8PC9UeXBlL1BhZ2Uv TWVkaWFCb3ggWzAgMCA2MTIgNzkyXQovUGFyZW50IDMgMCBSCi9SZXNvdXJj ZXM8PC9Qcm9jU2V0Wy9QREYgL0ltYWdlQiAvVGV4dF0KL0ZvbnQgMTA3IDAg Ugo+PgovQ29udGVudHMgMTA1IDAgUgo+PgplbmRvYmoKMTA4IDAgb2JqCjw8 L1R5cGUvUGFnZS9NZWRpYUJveCBbMCAwIDYxMiA3OTJdCi9QYXJlbnQgMyAw IFIKL1Jlc291cmNlczw8L1Byb2NTZXRbL1BERiAvSW1hZ2VCIC9UZXh0XQov Rm9udCAxMTkgMCBSCj4+Ci9Db250ZW50cyAxMDkgMCBSCj4+CmVuZG9iagoz IDAgb2JqCjw8IC9UeXBlIC9QYWdlcyAvS2lkcyBbCjYgMCBSCjI0IDAgUgoz MSAwIFIKMzcgMCBSCjQ3IDAgUgo2MCAwIFIKODQgMCBSCjk0IDAgUgoxMDAg MCBSCjEwNCAwIFIKMTA4IDAgUgpdIC9Db3VudCAxMQo+PgplbmRvYmoKMSAw IG9iago8PC9UeXBlIC9DYXRhbG9nIC9QYWdlcyAzIDAgUgo+PgplbmRvYmoK MTEgMCBvYmoKPDwvVHlwZS9FbmNvZGluZy9EaWZmZXJlbmNlc1swCi9hMC9h MS9hMi9hMy9hNC9hNS9hNi9hNy9hOC9hOS9hMTAvYTExL2ExMi9hMTMvYTE0 L2ExNQovYTE2L2ExNy9hMTgvYTE5L2EyMC9hMjEvYTIyL2EyMy9hMjQvYTI1 L2EyNi9hMjcvYTI4L2EyOS9hMzAvYTMxCi9hMzIvYTMzL2EzNC9hMzUvYTM2 L2EzNy9hMzgvYTM5L2E0MC9hNDEvYTQyL2E0My9hNDQvYTQ1L2E0Ni9hNDcK L2E0OC9hNDkvYTUwL2E1MS9hNTIvYTUzL2E1NC9hNTUvYTU2L2E1Ny9hNTgv YTU5L2E2MC9hNjEvYTYyL2E2MwovYTY0L2E2NS9hNjYvYTY3L2E2OC9hNjkv YTcwL2E3MS9hNzIvYTczL2E3NC9hNzUvYTc2L2E3Ny9hNzgvYTc5Ci9hODAv YTgxL2E4Mi9hODMvYTg0L2E4NS9hODYvYTg3L2E4OC9hODkvYTkwL2E5MS9h OTIvYTkzL2E5NC9hOTUKL2E5Ni9hOTcvYTk4L2E5OS9hMTAwL2ExMDEvYTEw Mi9hMTAzL2ExMDQvYTEwNS9hMTA2L2ExMDcvYTEwOC9hMTA5L2ExMTAvYTEx MQovYTExMi9hMTEzL2ExMTQvYTExNS9hMTE2L2ExMTcvYTExOC9hMTE5L2Ex MjAvYTEyMS9hMTIyL2ExMjMvYTEyNC9hMTI1L2ExMjYvYTEyNwovYTEyOC9h MTI5L2ExMzAvYTEzMS9hMTMyL2ExMzMvYTEzNC9hMTM1L2ExMzYvYTEzNy9h MTM4L2ExMzkvYTE0MC9hMTQxL2ExNDIvYTE0MwovYTE0NC9hMTQ1L2ExNDYv YTE0Ny9hMTQ4L2ExNDkvYTE1MC9hMTUxL2ExNTIvYTE1My9hMTU0L2ExNTUv YTE1Ni9hMTU3L2ExNTgvYTE1OQovYTE2MC9hMTYxL2ExNjIvYTE2My9hMTY0 L2ExNjUvYTE2Ni9hMTY3L2ExNjgvYTE2OS9hMTcwL2ExNzEvYTE3Mi9hMTcz L2ExNzQvYTE3NQovYTE3Ni9hMTc3L2ExNzgvYTE3OS9hMTgwL2ExODEvYTE4 Mi9hMTgzL2ExODQvYTE4NS9hMTg2L2ExODcvYTE4OC9hMTg5L2ExOTAvYTE5 MQovYTE5Mi9hMTkzL2ExOTQvYTE5NS9hMTk2L2ExOTcvYTE5OC9hMTk5L2Ey MDAvYTIwMS9hMjAyL2EyMDMvYTIwNC9hMjA1L2EyMDYvYTIwNwovYTIwOC9h MjA5L2EyMTAvYTIxMS9hMjEyL2EyMTMvYTIxNC9hMjE1L2EyMTYvYTIxNy9h MjE4L2EyMTkvYTIyMC9hMjIxL2EyMjIvYTIyMwovYTIyNC9hMjI1L2EyMjYv YTIyNy9hMjI4L2EyMjkvYTIzMC9hMjMxL2EyMzIvYTIzMy9hMjM0L2EyMzUv YTIzNi9hMjM3L2EyMzgvYTIzOQovYTI0MC9hMjQxL2EyNDIvYTI0My9hMjQ0 L2EyNDUvYTI0Ni9hMjQ3L2EyNDgvYTI0OS9hMjUwL2EyNTEvYTI1Mi9hMjUz L2EyNTQvYTI1NQpdID4+CmVuZG9iagoxMyAwIG9iago8PC9MZW5ndGggMjE5 ID4+CnN0cmVhbQowIDAgMCAwIDQzIDEyMCBkMQo0MyAwIDAgMTIwIDAgMCBj bQpCSQovSU0gdHJ1ZS9XIDQzL0ggMTIwL0JQQyAxL0YvQ0NGL0RQPDwvSyAt MQovQ29sdW1ucyA0MwovQmxhY2tJczEgdHJ1ZQo+PgpJRCAmoaWQzdIWCIZQ igJrSwl+guv0v///////////////////////9L9cJfoLS1yQcQULk1IPg8hE be+w8P3v3v////////////////////////t/3sPvD7eG+QygzUG8PIaVAAQA QApFSQplbmRzdHJlYW0KZW5kb2JqCjE2IDAgb2JqCjw8L0xlbmd0aCAyMjEg Pj4Kc3RyZWFtCjAgMCAwIC05MCA0MyAzMCBkMQo0MyAwIDAgMTIwIDAgLTkw IGNtCkJJCi9JTSB0cnVlL1cgNDMvSCAxMjAvQlBDIDEvRi9DQ0YvRFA8PC9L IC0xCi9Db2x1bW5zIDQzCi9CbGFja0lzMSB0cnVlCj4+CklEIDQNI6Bmhyak DyERvt7D/De/7f///////////////////////+3/ew/w3t94ZDKDNQbw/hE5 QXCKAlLrCXC1616////////////////////////0v1wlrwtLQWSDiChTQNIA EAEKRUkKZW5kc3RyZWFtCmVuZG9iagoyOSAwIG9iago8PC9MZW5ndGggMTU0 ID4+CnN0cmVhbQowIDAgMCAwIDM5IDM4IGQxCjM5IDAgMCAzOCAwIDAgY20K QkkKL0lNIHRydWUvVyAzOS9IIDM4L0JQQyAxL0YvQ0NGL0RQPDwvSyAtMQov Q29sdW1ucyAzOQovQmxhY2tJczEgdHJ1ZQo+PgpJRCAmoOUA8hBmnhA/08J6 f6f/+g/////7C//2v2vw1tYYLayDo+ACACAKRUkKZW5kc3RyZWFtCmVuZG9i ago1MCAwIG9iago8PC9MZW5ndGggMTYwID4+CnN0cmVhbQowIDAgMCAwIDY2 IDY1IGQxCjY2IDAgMCA2NSAwIDAgY20KQkkKL0lNIHRydWUvVyA2Ni9IIDY1 L0JQQyAxL0YvQ0NGL0RQPDwvSyAtMQovQ29sdW1ucyA2NgovQmxhY2tJczEg dHJ1ZQo+PgpJRCAmutP+1kGnP///////////////85pp/2sg05////////// ////////+1ABABAKRUkKZW5kc3RyZWFtCmVuZG9iago1MSAwIG9iago8PC9M ZW5ndGggMjAwID4+CnN0cmVhbQowIDAgMCAtMSA0MSA2NiBkMQo0MSAwIDAg NjcgMCAtMSBjbQpCSQovSU0gdHJ1ZS9XIDQxL0ggNjcvQlBDIDEvRi9DQ0Yv RFA8PC9LIC0xCi9Db2x1bW5zIDQxCi9CbGFja0lzMSB0cnVlCj4+CklEICao F//sPfff+fBRw2H39v2He+28N9+2Dw+9vbw+3sPh7fe+GHv33t/v3w9//Dcu +ED6f/////oLgq2C+/124Xa71sNLtLgwXBitgsMLIYPABABACkVJCmVuZHN0 cmVhbQplbmRvYmoKNTIgMCBvYmoKPDwvTGVuZ3RoIDE2Pj4Kc3RyZWFtCjc3 IDAgMCAwIDAgMCBkMQplbmRzdHJlYW0KZW5kb2JqCjUzIDAgb2JqCjw8L0xl bmd0aCAxMzIgPj4Kc3RyZWFtCjAgMCAwIDU1IDEyIDY2IGQxCjEyIDAgMCAx MSAwIDU1IGNtCkJJCi9JTSB0cnVlL1cgMTIvSCAxMS9CUEMgMS9GL0NDRi9E UDw8L0sgLTEKL0NvbHVtbnMgMTIKL0JsYWNrSXMxIHRydWUKPj4KSUQgJqzb gg4h/k1QWDCgAgAgCkVJCmVuZHN0cmVhbQplbmRvYmoKNTQgMCBvYmoKPDwv TGVuZ3RoIDE2Pj4Kc3RyZWFtCjU0IDAgMCAwIDAgMCBkMQplbmRzdHJlYW0K ZW5kb2JqCjU1IDAgb2JqCjw8L0xlbmd0aCAyMDkgPj4Kc3RyZWFtCjAgMCAw IC0xIDQxIDY5IGQxCjQxIDAgMCA3MCAwIC0xIGNtCkJJCi9JTSB0cnVlL1cg NDEvSCA3MC9CUEMgMS9GL0NDRi9EUDw8L0sgLTEKL0NvbHVtbnMgNDEKL0Js YWNrSXMxIHRydWUKPj4KSUQgJqDk4MQRrBPhB4R8V4WD0EDfCb4T6T9Xrfvp Q/+aBn9h+7///7X+1x//9YX+F+Rx+l3X/aXDS4NeYQgvDC8GC8f////////K D4msEw+/4Pvv+aBXzgaPCDwAQAQKRUkKZW5kc3RyZWFtCmVuZG9iago1NiAw IG9iago8PC9MZW5ndGggMTY+PgpzdHJlYW0KMjQgMCAwIDAgMCAwIGQxCmVu ZHN0cmVhbQplbmRvYmoKNjMgMCBvYmoKPDwvTGVuZ3RoIDE5OSA+PgpzdHJl YW0KMCAwIDAgLTQ2IDUxIDYgZDEKNTEgMCAwIDUyIDAgLTQ2IGNtCkJJCi9J TSB0cnVlL1cgNTEvSCA1Mi9CUEMgMS9GL0NDRi9EUDw8L0sgLTEKL0NvbHVt bnMgNTEKL0JsYWNrSXMxIHRydWUKPj4KSUQgNgrg4cOTXB4Phh4MHw8MPDB4 PhvBh8Hhh7B4Phh4YfB4MPDB4Phhw8LCwQXBYQWCBYXCCwQXBaCwgWC4QWCX BYQWEFguECwQXBRChcFABABACkVJCmVuZHN0cmVhbQplbmRvYmoKNjQgMCBv YmoKPDwvTGVuZ3RoIDE1NyA+PgpzdHJlYW0KMCAwIDAgLTUzIDI4IDAgZDEK MjggMCAwIDUzIDAgLTUzIGNtCkJJCi9JTSB0cnVlL1cgMjgvSCA1My9CUEMg MS9GL0NDRi9EUDw8L0sgLTEKL0NvbHVtbnMgMjgKL0JsYWNrSXMxIHRydWUK Pj4KSUQgJqv8hKbC//////////////////////////+Z2Pk1HyF798PABABA CkVJCmVuZHN0cmVhbQplbmRvYmoKNjUgMCBvYmoKPDwvTGVuZ3RoIDE2Pj4K c3RyZWFtCjkwIDAgMCAwIDAgMCBkMQplbmRzdHJlYW0KZW5kb2JqCjY2IDAg b2JqCjw8L0xlbmd0aCAxODEgPj4Kc3RyZWFtCjAgMCAwIC01MyAzNSAyIGQx CjM1IDAgMCA1NSAwIC01MyBjbQpCSQovSU0gdHJ1ZS9XIDM1L0ggNTUvQlBD IDEvRi9DQ0YvRFA8PC9LIC0xCi9Db2x1bW5zIDM1Ci9CbGFja0lzMSB0cnVl Cj4+CklEICahygP8IPCPmHhYegg30/T63oIN//63/0//8cP/////////k18L ////td6/3r/hhdtL/bSw2guPDCwwoAIAIApFSQplbmRzdHJlYW0KZW5kb2Jq CjY3IDAgb2JqCjw8L0xlbmd0aCAxNj4+CnN0cmVhbQozOCAwIDAgMCAwIDAg ZDEKZW5kc3RyZWFtCmVuZG9iago2OCAwIG9iago8PC9MZW5ndGggMTY+Pgpz dHJlYW0KNDIgMCAwIDAgMCAwIGQxCmVuZHN0cmVhbQplbmRvYmoKNzEgMCBv YmoKPDwvTGVuZ3RoIDE2MyA+PgpzdHJlYW0KMCAwIDAgLTY3IDM0IDAgZDEK MzQgMCAwIDY3IDAgLTY3IGNtCkJJCi9JTSB0cnVlL1cgMzQvSCA2Ny9CUEMg MS9GL0NDRi9EUDw8L0sgLTEKL0NvbHVtbnMgMzQKL0JsYWNrSXMxIHRydWUK Pj4KSUQgJqv/kORsL/////////////////////////////////+T2P5NQn8H wffeACACCkVJCmVuZHN0cmVhbQplbmRvYmoKNzIgMCBvYmoKPDwvTGVuZ3Ro IDIwMiA+PgpzdHJlYW0KMCAwIDAgLTY3IDQzIDMgZDEKNDMgMCAwIDcwIDAg LTY3IGNtCkJJCi9JTSB0cnVlL1cgNDMvSCA3MC9CUEMgMS9GL0NDRi9EUDw8 L0sgLTEKL0NvbHVtbnMgNDMKL0JsYWNrSXMxIHRydWUKPj4KSUQgJqDBoDEE agT4IzMPQQN6w9BN4Sb6fSDf+t/6TD///1v/hP///Hf//////////5NfX/// ///DXev/94X/a712F3rD1tpcGF2GCC2KwYWDNAYABABACkVJCmVuZHN0cmVh bQplbmRvYmoKNzMgMCBvYmoKPDwvTGVuZ3RoIDE2Pj4Kc3RyZWFtCjQ2IDAg MCAwIDAgMCBkMQplbmRzdHJlYW0KZW5kb2JqCjc0IDAgb2JqCjw8L0xlbmd0 aCAxOTcgPj4Kc3RyZWFtCjAgMCAwIC03NSAzOSAyNiBkMQozOSAwIDAgMTAx IDAgLTc1IGNtCkJJCi9JTSB0cnVlL1cgMzkvSCAxMDEvQlBDIDEvRi9DQ0Yv RFA8PC9LIC0xCi9Db2x1bW5zIDM5Ci9CbGFja0lzMSB0cnVlCj4+CklEICa5 gNL6ff/sP/37/9+//Df/v3/7D/9+//fv/w3/79/+w//fv/37/vD/v3/7D/9+ //b/8P3/79/+w//fv/2//D9/+/f/sP+9hfABABAKRUkKZW5kc3RyZWFtCmVu ZG9iago3NSAwIG9iago8PC9MZW5ndGggMTY+PgpzdHJlYW0KNDcgMCAwIDAg MCAwIGQxCmVuZHN0cmVhbQplbmRvYmoKNzYgMCBvYmoKPDwvTGVuZ3RoIDE4 OSA+PgpzdHJlYW0KMCAwIDAgLTMgNDUgNjYgZDEKNDUgMCAwIDY5IDAgLTMg Y20KQkkKL0lNIHRydWUvVyA0NS9IIDY5L0JQQyAxL0YvQ0NGL0RQPDwvSyAt MQovQ29sdW1ucyA0NQovQmxhY2tJczEgdHJ1ZQo+PgpJRCAmoMf/IGCMNf// /////xKcN+bBQaCE1Xww/v/2/b/9v3+H9+H9/b+//b9h/+H9v7/9v3+/f4fh v/39v4/33/D7/v++//ABABAKRUkKZW5kc3RyZWFtCmVuZG9iago3NyAwIG9i ago8PC9MZW5ndGggMTY+PgpzdHJlYW0KNDkgMCAwIDAgMCAwIGQxCmVuZHN0 cmVhbQplbmRvYmoKNzggMCBvYmoKPDwvTGVuZ3RoIDE2Pj4Kc3RyZWFtCjQ1 IDAgMCAwIDAgMCBkMQplbmRzdHJlYW0KZW5kb2JqCjc5IDAgb2JqCjw8L0xl bmd0aCAxNj4+CnN0cmVhbQo1MyAwIDAgMCAwIDAgZDEKZW5kc3RyZWFtCmVu ZG9iago4MCAwIG9iago8PC9MZW5ndGggMTY+PgpzdHJlYW0KNDggMCAwIDAg MCAwIGQxCmVuZHN0cmVhbQplbmRvYmoKODEgMCBvYmoKPDwvTGVuZ3RoIDI0 MSA+PgpzdHJlYW0KMCAwIDAgLTcxIDYwIDMgZDEKNjAgMCAwIDc0IDAgLTcx IGNtCkJJCi9JTSB0cnVlL1cgNjAvSCA3NC9CUEMgMS9GL0NDRi9EUDw8L0sg LTEKL0NvbHVtbnMgNjAKL0JsYWNrSXMxIHRydWUKPj4KSUQgJqjAYKAaNkIM /8IPsEaBA+1g+IIgxTYJvoH6b6Yf+98Jv3/3Df//3/u//r/j/+F11wv5Bqry GWDyCgnglpdYQWgtdFQDfIgMrOoNOUBp0v66IZsf8L/+9///h+9/9+2u/8PD a9+wYXbCe/gzQQ/cMQg/+Gm5BrPgAgAgCkVJCmVuZHN0cmVhbQplbmRvYmoK ODIgMCBvYmoKPDwvTGVuZ3RoIDIxMyA+PgpzdHJlYW0KMCAwIDAgLTY5IDc1 IDAgZDEKNzUgMCAwIDY5IDAgLTY5IGNtCkJJCi9JTSB0cnVlL1cgNzUvSCA2 OS9CUEMgMS9GL0NDRi9EUDw8L0sgLTEKL0NvbHVtbnMgNzUKL0JsYWNrSXMx IHRydWUKPj4KSUQgJWDWQoMwOHJqEJw0A9yBc/YYfhv4e4b4Yb9/bw4b+H23 9++7/fd+/w9w//d/+3v/9v9/7/D/f7h/+//e//f/9/+//rdf+6/9d14dfXrh wgvC9kCNMguqcLgtgvgAgAgKRUkKZW5kc3RyZWFtCmVuZG9iagoxMTcgMCBv YmoKPDwvTGVuZ3RoIDE2OCA+PgpzdHJlYW0KMCAwIDAgLTc5IDQ3IC0zOCBk MQo0NyAwIDAgNDEgMCAtNzkgY20KQkkKL0lNIHRydWUvVyA0Ny9IIDQxL0JQ QyAxL0YvQ0NGL0RQPDwvSyAtMQovQ29sdW1ucyA0NwovQmxhY2tJczEgdHJ1 ZQo+PgpJRCAmrIQNGH+Q88P/7f//7D//73//73//g7ILxh//+CPH+39//Dt/ /2w+weFxH+ACACAKRUkKZW5kc3RyZWFtCmVuZG9iagoxMTggMCBvYmoKPDwv TGVuZ3RoIDIxMiA+PgpzdHJlYW0KMCAwIDAgLTc5IDY3IC0zOCBkMQo2NyAw IDAgNDEgMCAtNzkgY20KQkkKL0lNIHRydWUvVyA2Ny9IIDQxL0JQQyAxL0Yv Q0NGL0RQPDwvSyAtMQovQ29sdW1ucyA2NwovQmxhY2tJczEgdHJ1ZQo+PgpJ RCAmqOoQwENYXdw/vyfqQf8Grf/+EVHt+3/f4Vv+m/9/b8N/t/8P9Q/3V3vu /7f//9/DVu8PCd///DD/2/vuHvu/rf9P/t+37f8P/DH6v9exswn7HkJpOi99 wAQAQApFSQplbmRzdHJlYW0KZW5kb2JqCjQzIDAgb2JqCjw8L1N1YnR5cGUv VHlwZTEvQmFzZUZvbnQvVGltZXMtUm9tYW4vVHlwZS9Gb250L05hbWUvUjQz L0ZpcnN0Q2hhciAxL0xhc3RDaGFyIDI1NS9XaWR0aHNbIDMzMyA1NTcgNTU2 IDE2NyAzMzMgNjExIDI3OCAzMzMgMzMzIDI1MCAzMzMgNTY0IDI1MCA2MTEg NDQ0CjMzMyAyNzggMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAy NTAgMjUwIDI1MCAyNTAgMzMzIDE4MAoyNTAgMzMzIDQwOCA1MDAgNTAwIDgz MyA3NzggMzMzIDMzMSAzMzEgNTAwIDU1NyAyNTAgMzMzIDI1NSAyNzgKNDk2 IDQ5NiA0OTYgNDk2IDQ5NiA0OTYgNDk2IDQ5NiA0OTYgNDk2IDI3OCAyNzgg NTY0IDU2NCA1NjQgNDQ0CjkyMSA3MjIgNjY3IDY2MiA3MjIgNjExIDU1NyA3 MjIgNzIyIDMzMSAzODkgNzIyIDYxNyA4ODkgNzIyIDcyMgo1NTcgNzIyIDY2 MiA1NTcgNjE3IDcyMiA3MjIgOTQ4IDcyMiA3MjIgNjExIDMzMyAyNzggMzMz IDQ2OSA1MDAKMzMzIDQzNiA0OTYgNDM2IDQ5NiA0MzYgMzMxIDQ5NiA0OTYg MjcxIDI3OCA0OTYgMjcxIDc4MiA0OTYgNDk2CjQ5NiA1MDAgMzMxIDM5MSAy NzEgNDk2IDQ5NiA3MjIgNDk2IDQ5NiA0NDQgNDgwIDIwMCA0ODAgNTQxIDI1 MAoyNTAgMjUwIDMzMyA1MDAgNDQ0IDEwMDAgNTAwIDUwMCAzMzMgMTAwMCA1 NTYgMzMzIDg4OSAyNTAgMjUwIDI1MAoyNTAgMjUwIDI1MCA0NDQgNDQ0IDM1 MCA1MDAgMTAwMCAzMzMgOTgwIDM4OSAzMzMgNzIyIDI1MCAyNTAgNzIyCjI1 MCAzMzMgNTAwIDUwMCA1MDAgNTAwIDIwMCA1MDAgMzMzIDc2MCAyNzYgNTAw IDU2NCAzMzMgNzYwIDMzMwo0MDAgNTY0IDMwMCAzMDAgMzMzIDUwMCA0NTMg MjUwIDMzMyAzMDAgMzEwIDUwMCA3NTAgNzUwIDc1MCA0NDQKNzIyIDcyMiA3 MjIgNzIyIDcyMiA3MjIgODg5IDY2NyA2MTEgNjExIDYxMSA2MTEgMzMzIDMz MyAzMzMgMzMzCjcyMiA3MjIgNzIyIDcyMiA3MjIgNzIyIDcyMiA1NjQgNzIy IDcyMiA3MjIgNzIyIDcyMiA3MjIgNTU2IDUwMAo0NDQgNDQ0IDQ0NCA0NDQg NDQ0IDQ0NCA2NjcgNDQ0IDQ0NCA0NDQgNDQ0IDQ0NCAyNzggMjc4IDI3OCAy NzgKNTAwIDUwMCA1MDAgNTAwIDUwMCA1MDAgNTAwIDU2NCA1MDAgNTAwIDUw MCA1MDAgNTAwIDUwMCA1MDAgNTAwXQovRW5jb2RpbmcgMTIwIDAgUj4+CmVu ZG9iagoxMjAgMCBvYmoKPDwvVHlwZS9FbmNvZGluZy9EaWZmZXJlbmNlc1sK Mi9maV0+PgplbmRvYmoKMTIgMCBvYmoKPDwvVHlwZS9Gb250L05hbWUvQS9T dWJ0eXBlL1R5cGUzL0VuY29kaW5nIDExIDAgUi9DaGFyUHJvY3M8PC9hMjkK MTE4IDAgUi9hMjgKMTE3IDAgUi9hMjcKODIgMCBSL2EyNgo4MSAwIFIvYTIx Cjc2IDAgUi9hMTkKNzQgMCBSL2ExNwo3MiAwIFIvYTE2CjcxIDAgUi9hMTMK NjYgMCBSL2ExMQo2NCAwIFIvYTEwCjYzIDAgUi9hOAo1NSAwIFIvYTYKNTMg MCBSL2E0CjUxIDAgUi9hMwo1MCAwIFIvYTIKMjkgMCBSL2ExCjE2IDAgUi9h MAoxMyAwIFIvYTkKNTYgMCBSL2ExNAo2NyAwIFIvYTE1CjY4IDAgUi9hMjMK NzggMCBSL2ExOAo3MyAwIFIvYTIwCjc1IDAgUi9hMjUKODAgMCBSL2EyMgo3 NyAwIFIvYTI0Cjc5IDAgUi9hNwo1NCAwIFIvYTUKNTIgMCBSL2ExMgo2NSAw IFI+Pi9Gb250QkJveFswIC01NSA3NSAyMTBdL0ZvbnRNYXRyaXhbMSAwIDAg MSAwIDBdL0ZpcnN0Q2hhciAwL0xhc3RDaGFyIDI5L1dpZHRoc1sKMCAwIDAg MCAwIDc3IDAgNTQgMCAyNCAwIDAgOTAgMCAzOCA0MgowIDAgNDYgMCA0NyAw IDQ5IDQ1IDUzIDQ4IDAgMCAwIDBdCj4+CmVuZG9iagozNSAwIG9iago8PC9T dWJ0eXBlL1R5cGUxL0Jhc2VGb250L1RpbWVzLUJvbGQvVHlwZS9Gb250L05h bWUvUjM1L0ZpcnN0Q2hhciAxL0xhc3RDaGFyIDI1NS9XaWR0aHNbIDMzMyA1 NTYgNTU2IDE2NyAzMzMgNjY3IDI3OCAzMzMgMzMzIDI1MCAzMzMgNTcwIDI1 MCA2NjcgNDQ0CjMzMyAyNzggMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUw IDI1MCAyNTAgMjUwIDI1MCAyNTAgMzMzIDI3OAoyNTAgMzMzIDU1NSA1MDAg NTAwIDEwMDAgODMzIDMzMyAzMzMgMzMzIDUwMCA1NzAgMjUwIDMyOCAyNTEg Mjc4CjUwMCA1MDMgNTAzIDUwMyA1MDMgNTAwIDUwMCA1MDAgNTAwIDUwMCAz MzMgMzMzIDU3MCA1NzAgNTcwIDUwMAo5MzAgNzIyIDY2NyA3MjIgNzIyIDY2 NyA2MTMgNzc3IDc3OCAzOTQgNTAwIDc3OCA2NjcgOTQ0IDcyMiA3NzgKNjEz IDc3OCA3MjIgNTU4IDY2NyA3MjIgNzIyIDEwMDAgNzIyIDcyMiA2NjcgMzMz IDI3OCAzMzMgNTgxIDUwMAozMzMgNTAzIDU1OCA0NDggNTU4IDQ0OCAzMjgg NTAzIDU1OCAyNzMgMzMzIDU1NiAyNzMgODMyIDU1OCA1MDMKNTU4IDU1NiA0 NDggMzk0IDMyOCA1NTggNTAzIDcyMiA1MDAgNTAwIDQ0NCAzOTQgMjIwIDM5 NCA1MjAgMjUwCjI1MCAyNTAgMzMzIDUwMCA1MDAgMTAwMCA1MDAgNTAwIDMz MyAxMDAwIDU1NiAzMzMgMTAwMCAyNTAgMjUwIDI1MAoyNTAgMjUwIDI1MCA1 MDAgNTAwIDM1MCA1MDAgMTAwMCAzMzMgMTAwMCAzODkgMzMzIDcyMiAyNTAg MjUwIDcyMgoyNTAgMzMzIDUwMCA1MDAgNTAwIDUwMCAyMjAgNTAwIDMzMyA3 NDcgMzAwIDUwMCA1NzAgMzI4IDc0NyAzMzMKNDAwIDU3MCAzMDAgMzAwIDMz MyA1NTYgNTQwIDI1MCAzMzMgMzAwIDMzMCA1MDAgNzUwIDc1MCA3NTAgNTAw CjcyMiA3MjIgNzIyIDcyMiA3MjIgNzIyIDEwMDAgNzIyIDY2NyA2NjcgNjY3 IDY2NyAzODkgMzg5IDM4OSAzODkKNzIyIDcyMiA3NzggNzc4IDc3OCA3Nzgg Nzc4IDU3MCA3NzggNzIyIDcyMiA3MjIgNzIyIDcyMiA2MTEgNTU2CjUwMCA1 MDAgNTAwIDUwMCA1MDAgNTAwIDcyMiA0NDQgNDQ0IDQ0NCA0NDQgNDQ0IDI3 OCAyNzggMjc4IDI3OAo1MDAgNTU2IDUwMCA1MDAgNTAwIDUwMCA1MDAgNTcw IDUwMCA1NTYgNTU2IDU1NiA1NTYgNTAwIDU1NiA1MDBdCi9FbmNvZGluZyAx MjEgMCBSPj4KZW5kb2JqCjEyMSAwIG9iago8PC9UeXBlL0VuY29kaW5nL0Rp ZmZlcmVuY2VzWwoxNzMvaHlwaGVuXT4+CmVuZG9iago3MCAwIG9iago8PC9T dWJ0eXBlL1R5cGUxL0Jhc2VGb250L1RpbWVzLVJvbWFuL1R5cGUvRm9udC9O YW1lL1I3MD4+CmVuZG9iagoxMTEgMCBvYmoKPDwvVHlwZS9Gb250RGVzY3Jp cHRvci9Gb250TmFtZS9UaW1lcy1Sb21hbj4+CmVuZG9iago4OSAwIG9iago8 PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL1RpbWVzLVJvbWFuPj4K ZW5kb2JqCjg3IDAgb2JqCjw8L1R5cGUvRm9udERlc2NyaXB0b3IvRm9udE5h bWUvVGltZXMtUm9tYW4+PgplbmRvYmoKNjkgMCBvYmoKPDwvVHlwZS9Gb250 RGVzY3JpcHRvci9Gb250TmFtZS9UaW1lcy1Sb21hbj4+CmVuZG9iago0MiAw IG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL1RpbWVzLVJv bWFuPj4KZW5kb2JqCjIxIDAgb2JqCjw8L1R5cGUvRm9udERlc2NyaXB0b3Iv Rm9udE5hbWUvVGltZXMtUm9tYW4+PgplbmRvYmoKOSAwIG9iago8PC9UeXBl L0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL1RpbWVzLVJvbWFuPj4KZW5kb2Jq CjExMiAwIG9iago8PC9TdWJ0eXBlL1R5cGUxL0Jhc2VGb250L1RpbWVzLVJv bWFuL1R5cGUvRm9udC9OYW1lL1IxMTIvRmlyc3RDaGFyIDEvTGFzdENoYXIg MjU1L1dpZHRoc1sgMzMzIDU2MiA1NTYgMTY3IDMzMyA2MTEgMjc4IDMzMyAz MzMgMjUwIDMzMyA1NjQgMjUwIDYxMSA0NDQKMzMzIDI3OCAyNTAgMjUwIDI1 MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAzMzMgMTgw CjI1MCAzMzMgNDA4IDUwMCA1MDAgODMzIDc3OCAzMzQgMzM0IDMzNCA1MDAg NTY0IDI1NCAzMzQgMjU0IDI4MQo0OTUgNDk1IDQ5NSA0OTUgNDk1IDQ5NSA0 OTUgNDk1IDQ5NSA0OTUgMjgxIDI3OCA1NjQgNTY0IDU2NCA0NDQKOTIxIDcy MiA2NjkgNjY5IDcyMiA2MTUgNTYyIDcyMiA3MjIgMzM0IDM4OCA3MjIgNjE1 IDg4MyA3MjIgNzIyCjU2MiA3MjIgNjY5IDU2MiA2MTUgNzIyIDcyMiA5NTAg NzIyIDcyMiA2MTUgMzM0IDI3OCAzMzQgNDY5IDUwMAozMzMgNDQxIDQ5NSA0 NDEgNDk1IDQ0MSAzMzQgNDk1IDQ5NSAyODEgMjgxIDQ5NSAyODEgNzc2IDQ5 NSA0OTUKNDk1IDUwMCAzMzQgMzg4IDI4MSA0OTUgNDk1IDcyMiA0OTUgNDk1 IDQ0MSA0ODAgMjAwIDQ4MCA1NDEgMjUwCjI1MCAyNTAgMzMzIDUwMCA0NDQg MTAwMCA1MDAgNTAwIDMzMyAxMDAwIDU1NiAzMzMgODg5IDI1MCAyNTAgMjUw CjI1MCAyNTAgMjUwIDQ0NCA0NDQgMzUwIDQ5NSAxMDAwIDMzMyA5ODAgMzg5 IDMzMyA3MjIgMjUwIDI1MCA3MjIKMjUwIDMzMyA1MDAgNTAwIDUwMCA1MDAg MjAwIDUwMCAzMzMgNzYwIDI3NiA1MDAgNTY0IDMzNCA3NjAgMzMzCjQwMCA1 NjQgMzAwIDMwMCAzMzMgNTAwIDQ1MyAyNTAgMzMzIDMwMCAzMTAgNTAwIDc1 MCA3NTAgNzUwIDQ0NAo3MjIgNzIyIDcyMiA3MjIgNzIyIDcyMiA4ODkgNjY3 IDYxMSA2MTEgNjExIDYxMSAzMzMgMzMzIDMzMyAzMzMKNzIyIDcyMiA3MjIg NzIyIDcyMiA3MjIgNzIyIDU2NCA3MjIgNzIyIDcyMiA3MjIgNzIyIDcyMiA1 NTYgNTAwCjQ0NCA0NDQgNDQ0IDQ0NCA0NDQgNDQ0IDY2NyA0NDQgNDQ0IDQ0 NCA0NDQgNDQ0IDI3OCAyNzggMjc4IDI3OAo1MDAgNTAwIDUwMCA1MDAgNTAw IDUwMCA1MDAgNTY0IDUwMCA1MDAgNTAwIDUwMCA1MDAgNTAwIDUwMCA1MDBd Ci9FbmNvZGluZyAxMjIgMCBSPj4KZW5kb2JqCjEyMiAwIG9iago8PC9UeXBl L0VuY29kaW5nL0RpZmZlcmVuY2VzWwoyL2ZpCjE1MC9lbmRhc2hdPj4KZW5k b2JqCjI4IDAgb2JqCjw8L1N1YnR5cGUvVHlwZTEvQmFzZUZvbnQvQ291cmll ci9UeXBlL0ZvbnQvTmFtZS9SMjgvRmlyc3RDaGFyIDEvTGFzdENoYXIgMjU1 L1dpZHRoc1sgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAg NjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAKNjAwIDYwMCA2MDAgNjAwIDYwMCA2 MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwCjYw MCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAw IDYwMCA2MDIgNjAyIDYwMAo2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAg NjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAKNjAwIDYwMCA2 MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYw MCA2MDIgNjAwCjYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAw IDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMAo2MDAgNjAyIDYwMCA2MDIg NjAyIDYwMiA2MDIgNjAyIDYwMiA2MDIgNjAwIDYwMCA2MDIgNjAyIDYwMiA2 MDIKNjAyIDYwMiA2MDIgNjAyIDYwMiA2MDIgNjAwIDYwMiA2MDIgNjAyIDYw MCA2MDAgNjAwIDYwMCA2MDAgNjAwCjYwMCA2MDAgNjAwIDYwMCA2MDAgNjAw IDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMAo2MDAg NjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2 MDAgNjAwIDYwMCA2MDAKNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYw MCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMiA2MDAgNjAwCjYwMCA2MDAgNjAw IDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAg NjAwIDYwMAo2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2 MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAKNjAwIDYwMCA2MDAgNjAwIDYw MCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAw CjYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAg NjAwIDYwMCA2MDAgNjAwIDYwMAo2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2 MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDBdCj4+CmVu ZG9iagoyMiAwIG9iago8PC9TdWJ0eXBlL1R5cGUxL0Jhc2VGb250L1RpbWVz LVJvbWFuL1R5cGUvRm9udC9OYW1lL1IyMi9GaXJzdENoYXIgMS9MYXN0Q2hh ciAyNTUvV2lkdGhzWyAzMzMgNTU0IDU1NCAxNjcgMzMzIDYxMSAyNzggMzMz IDMzMyAyNTAgMzMzIDU2NCAyNTAgNjExIDQ0NAozMzMgMjc4IDI1MCAyNTAg MjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDMzMyAx ODAKMjUwIDMzMyA0MDggNTAwIDUwMCA4MzEgNzc4IDMzNyAzMzcgMzM3IDUw MCA1NjQgMjUyIDMzNyAyNTIgMjc3CjUwNSA1MDUgNTA1IDUwNSA1MDUgNTA1 IDUwNSA1MDUgNTA1IDUwNSAyNzcgMjc3IDU2NCA1NjQgNTY0IDQ0NAo5MjEg NzIyIDY2MiA2NjIgNzIyIDYxNCA1NTQgNzIyIDcyMiAzMzcgMzg5IDcyMiA2 MTQgODkxIDcyMiA3MjIKNTU0IDcyMiA2NjIgNTU0IDYxNCA3MjIgNzIyIDkz OSA3MjIgNzIyIDYxMSAzMzcgMjc4IDMzNyA0NjkgNTAwCjMzMyA0NDUgNTA1 IDQ0NSA1MDUgNDQ1IDMzNyA1MDUgNTA1IDI3NyAyNzcgNTA1IDI3NyA3ODIg NTA1IDUwNQo1MDUgNTA1IDMzNyAzODUgMjc3IDUwNSA1MDUgNzIyIDUwNSA1 MDUgNDQ1IDQ4MCAyMDAgNDgwIDU0MSAyNTAKMjUwIDI1MCAzMzMgNTAwIDQ0 NCAxMDAwIDUwMCA1MDAgMzMzIDEwMDAgNTU2IDMzMyA4ODkgMjUwIDI1MCAy NTAKMjUwIDI1MCAyNTAgNDQ1IDQ0NSAzNTAgNTA1IDEwMDAgMzMzIDk4MCAz ODkgMzMzIDcyMiAyNTAgMjUwIDcyMgoyNTAgMzMzIDUwMCA1MDAgNTAwIDUw MCAyMDAgNTAwIDMzMyA3NjAgMjc2IDUwMCA1NjQgMzM3IDc2MCAzMzMKNDAw IDU2NCAzMDAgMzAwIDMzMyA1MDAgNDUzIDI1MCAzMzMgMzAwIDMxMCA1MDAg NzUwIDc1MCA3NTAgNDQ0CjcyMiA3MjIgNzIyIDcyMiA3MjIgNzIyIDg4OSA2 NjcgNjExIDYxMSA2MTEgNjExIDMzMyAzMzMgMzMzIDMzMwo3MjIgNzIyIDcy MiA3MjIgNzIyIDcyMiA3MjIgNTY0IDcyMiA3MjIgNzIyIDcyMiA3MjIgNzIy IDU1NiA1MDAKNDQ0IDQ0NCA0NDQgNDQ0IDQ0NCA0NDQgNjY3IDQ0NCA0NDQg NDQ0IDQ0NCA0NDQgMjc4IDI3OCAyNzggMjc4CjUwMCA1MDAgNTAwIDUwMCA1 MDAgNTAwIDUwMCA1NjQgNTAwIDUwMCA1MDAgNTAwIDUwMCA1MDAgNTAwIDUw MF0KL0VuY29kaW5nIDEyMyAwIFI+PgplbmRvYmoKMTIzIDAgb2JqCjw8L1R5 cGUvRW5jb2RpbmcvRGlmZmVyZW5jZXNbCjIvZmkvZmwKMTQ3L3F1b3RlZGJs bGVmdC9xdW90ZWRibHJpZ2h0CjE1MC9lbmRhc2hdPj4KZW5kb2JqCjk3IDAg b2JqCjw8L1R5cGUvRm9udERlc2NyaXB0b3IvRm9udE5hbWUvVGltZXMtQm9s ZD4+CmVuZG9iago1NyAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0Zv bnROYW1lL1RpbWVzLUJvbGQ+PgplbmRvYmoKMzQgMCBvYmoKPDwvVHlwZS9G b250RGVzY3JpcHRvci9Gb250TmFtZS9UaW1lcy1Cb2xkPj4KZW5kb2JqCjE3 IDAgb2JqCjw8L1R5cGUvRm9udERlc2NyaXB0b3IvRm9udE5hbWUvVGltZXMt Qm9sZD4+CmVuZG9iago0IDAgb2JqCjw8L1R5cGUvRm9udERlc2NyaXB0b3Iv Rm9udE5hbWUvVGltZXMtQm9sZD4+CmVuZG9iago5OCAwIG9iago8PC9TdWJ0 eXBlL1R5cGUxL0Jhc2VGb250L1RpbWVzLUJvbGQvVHlwZS9Gb250L05hbWUv Ujk4L0ZpcnN0Q2hhciAxL0xhc3RDaGFyIDI1NS9XaWR0aHNbIDMzMyA1NTYg NTU2IDE2NyAzMzMgNjY3IDI3OCAzMzMgMzMzIDI1MCAzMzMgNTcwIDI1MCA2 NjcgNDQ0CjMzMyAyNzggMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1 MCAyNTAgMjUwIDI1MCAyNTAgMzMzIDI3OAoyNTAgMzMzIDU1NSA1MDAgNTAw IDEwMDAgODMzIDMzMyAzMzMgMzMzIDUwMCA1NzAgMjUwIDMzMyAyNTIgMjc4 CjUwMCA1MDUgNTA1IDUwNSA1MDUgNTAwIDUwMCA1MDAgNTAwIDUwMCAzMzMg MzMzIDU3MCA1NzAgNTcwIDUwMAo5MzAgNzIyIDY2NyA3MjIgNzIyIDY2NyA2 MTQgNzc4IDc3OCAzODUgNTAwIDc3OCA2NjcgOTM5IDcyMiA3NzgKNjE0IDc3 OCA3MjIgNTU0IDY2MiA3MjIgNzIyIDEwMDAgNzIyIDcyMiA2NjcgMzMzIDI3 OCAzMzMgNTgxIDUwMAozMzMgNTA1IDU1NCA0NDUgNTU2IDQ0NSAzMzcgNTA1 IDU1NCAyNzcgMzMzIDU1NiAyNzggODMzIDU1NCA1MDUKNTU0IDU1NiA0NDUg Mzg1IDMzNyA1NTQgNTAwIDcyMiA1MDAgNTAwIDQ0NCAzOTQgMjIwIDM5NCA1 MjAgMjUwCjI1MCAyNTAgMzMzIDUwMCA1MDAgMTAwMCA1MDAgNTAwIDMzMyAx MDAwIDU1NiAzMzMgMTAwMCAyNTAgMjUwIDI1MAoyNTAgMjUwIDI1MCA1MDAg NTAwIDM1MCA1MDAgMTAwMCAzMzMgMTAwMCAzODkgMzMzIDcyMiAyNTAgMjUw IDcyMgoyNTAgMzMzIDUwMCA1MDAgNTAwIDUwMCAyMjAgNTAwIDMzMyA3NDcg MzAwIDUwMCA1NzAgMzMzIDc0NyAzMzMKNDAwIDU3MCAzMDAgMzAwIDMzMyA1 NTYgNTQwIDI1MCAzMzMgMzAwIDMzMCA1MDAgNzUwIDc1MCA3NTAgNTAwCjcy MiA3MjIgNzIyIDcyMiA3MjIgNzIyIDEwMDAgNzIyIDY2NyA2NjcgNjY3IDY2 NyAzODkgMzg5IDM4OSAzODkKNzIyIDcyMiA3NzggNzc4IDc3OCA3NzggNzc4 IDU3MCA3NzggNzIyIDcyMiA3MjIgNzIyIDcyMiA2MTEgNTU2CjUwMCA1MDAg NTAwIDUwMCA1MDAgNTAwIDcyMiA0NDQgNDQ0IDQ0NCA0NDQgNDQ0IDI3OCAy NzggMjc4IDI3OAo1MDAgNTU2IDUwMCA1MDAgNTAwIDUwMCA1MDAgNTcwIDUw MCA1NTYgNTU2IDU1NiA1NTYgNTAwIDU1NiA1MDBdCj4+CmVuZG9iago4OCAw IG9iago8PC9TdWJ0eXBlL1R5cGUxL0Jhc2VGb250L1RpbWVzLVJvbWFuL1R5 cGUvRm9udC9OYW1lL1I4OC9GaXJzdENoYXIgMzIvTGFzdENoYXIgMjU1L1dp ZHRoc1sKMjUwIDMzMyA0MDggNTAwIDUwMCA4MzMgNzc4IDMzMyAzMzMgMzMz IDUwMCA1NjQgMjUwIDU2NCAyNTAgMjc4CjUwMCA1MDAgNTAwIDUwMCA1MDAg NTAwIDUwMCA1MDAgNTAwIDUwMCAyNzggMjc4IDU2NCA1NjQgNTY0IDQ0NAo5 MjEgNzIyIDY2NyA2NjcgNzIyIDYxMSA1NTYgNzIyIDcyMiAzMzMgMzg5IDcy MiA2MTEgODg5IDcyMiA3MjIKNTU2IDcyMiA2NjcgNTU2IDYxMSA3MjIgNzIy IDk0NCA3MjIgNzIyIDYxMSAzMzMgMjc4IDMzMyA0NjkgNTAwCjMzMyA0NDQg NTAwIDQ0NCA1MDAgNDQ0IDMzMyA1MDAgNTAwIDI3OCAyNzggNTAwIDI3OCA3 NzggNTAwIDUwMAo1MDAgNTAwIDMzMyAzODkgMjc4IDUwMCA1MDAgNzIyIDUw MCA1MDAgNDQ0IDQ4MCAyMDAgNDgwIDU0MSAyNTAKMjUwIDI1MCAyNTAgMjUw IDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAg MjUwCjI3OCAzMzMgMzMzIDMzMyAzMzMgMzMzIDMzMyAzMzMgMzMzIDI1MCAz MzMgMzMzIDI1MCAzMzMgMzMzIDMzMwoyNTAgMzMzIDUwMCA1MDAgNTAwIDUw MCAyMDAgNTAwIDMzMyA3NjAgMjc2IDUwMCA1NjQgMzMzIDc2MCAzMzMKNDAw IDU2NCAzMDAgMzAwIDMzMyA1MDAgNDUzIDI1MCAzMzMgMzAwIDMxMCA1MDAg NzUwIDc1MCA3NTAgNDQ0CjcyMiA3MjIgNzIyIDcyMiA3MjIgNzIyIDg4OSA2 NjcgNjExIDYxMSA2MTEgNjExIDMzMyAzMzMgMzMzIDMzMwo3MjIgNzIyIDcy MiA3MjIgNzIyIDcyMiA3MjIgNTY0IDcyMiA3MjIgNzIyIDcyMiA3MjIgNzIy IDU1NiA1MDAKNDQ0IDQ0NCA0NDQgNDQ0IDQ0NCA0NDQgNjY3IDQ0NCA0NDQg NDQ0IDQ0NCA0NDQgMjc4IDI3OCAyNzggMjc4CjUwMCA1MDAgNTAwIDUwMCA1 MDAgNTAwIDUwMCA1NjQgNTAwIDUwMCA1MDAgNTAwIDUwMCA1MDAgNTAwIDUw MF0KPj4KZW5kb2JqCjIwIDAgb2JqCjw8L1N1YnR5cGUvVHlwZTEvQmFzZUZv bnQvVGltZXMtSXRhbGljL1R5cGUvRm9udC9OYW1lL1IyMC9GaXJzdENoYXIg MS9MYXN0Q2hhciAyNTUvV2lkdGhzWyAzMzMgNTA1IDUwNSAxNjcgMzMzIDU1 NiAyNzggMzMzIDMzMyAyNTAgMzMzIDY3NSAyNTAgNTU2IDM4OQozMzMgMjc4 IDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAg MjUwIDMzMyAyMTQKMjUwIDMzMyA0MjAgNTAwIDUwMCA4MzMgNzc4IDMzNyAz MzMgMzMzIDUwMCA2NzUgMjUyIDMzNyAyNTIgMjc4CjUwMCA1MDAgNTAwIDUw MCA1MDAgNTAwIDUwMCA1MDAgNTAwIDUwMCAzMzcgMzMzIDY3NSA2NzUgNjc1 IDUwMAo5MjAgNjE0IDYxMSA2NjIgNzIyIDYxMSA2MTEgNzIyIDcyMiAzMzcg NDQ0IDY2NyA1NTYgODMzIDY2NyA3MjIKNjE0IDcyMiA2MTEgNTAwIDU1NCA3 MjIgNjExIDgzMyA2MTEgNTU2IDU1NiAzODkgMjc4IDM4OSA0MjIgNTAwCjMz MyA1MDUgNTA1IDQ0NSA1MDUgNDQ1IDI3NyA1MDUgNTA1IDI3NyAyNzggNDQ1 IDI3NyA3MjIgNTA1IDUwNQo1MDUgNTA1IDM4NSAzODUgMjc3IDUwNSA0NDUg NjYyIDQ0NSA0NDUgMzg5IDQwMCAyNzUgNDAwIDU0MSAyNTAKMjUwIDI1MCAz MzMgNTAwIDU1NiA4ODkgNTAwIDUwMCAzMzMgMTAwMCA1MDAgMzMzIDk0NCAy NTAgMjUwIDI1MAoyNTAgMjUwIDI1MCA1NTYgNTU2IDM1MCA1MDUgODg5IDMz MyA5ODAgMzg5IDMzMyA2NjcgMjUwIDI1MCA1NTYKMjUwIDM4OSA1MDAgNTAw IDUwMCA1MDAgMjc1IDUwMCAzMzMgNzYwIDI3NiA1MDAgNjc1IDMzNyA3NjAg MzMzCjQwMCA2NzUgMzAwIDMwMCAzMzMgNTAwIDUyMyAyNTAgMzMzIDMwMCAz MTAgNTAwIDc1MCA3NTAgNzUwIDUwMAo2MTEgNjExIDYxMSA2MTEgNjExIDYx MSA4ODkgNjY3IDYxMSA2MTEgNjExIDYxMSAzMzMgMzMzIDMzMyAzMzMKNzIy IDY2NyA3MjIgNzIyIDcyMiA3MjIgNzIyIDY3NSA3MjIgNzIyIDcyMiA3MjIg NzIyIDU1NiA2MTEgNTAwCjUwMCA1MDAgNTAwIDUwMCA1MDAgNTAwIDY2NyA0 NDQgNDQ0IDQ0NCA0NDQgNDQ0IDI3OCAyNzggMjc4IDI3OAo1MDAgNTAwIDUw MCA1MDAgNTAwIDUwMCA1MDAgNjc1IDUwMCA1MDAgNTAwIDUwMCA1MDAgNDQ0 IDUwMCA0NDRdCi9FbmNvZGluZyAxMjQgMCBSPj4KZW5kb2JqCjEyNCAwIG9i ago8PC9UeXBlL0VuY29kaW5nL0RpZmZlcmVuY2VzWwoyL2ZpL2ZsCjE1MC9l bmRhc2hdPj4KZW5kb2JqCjE4IDAgb2JqCjw8L1N1YnR5cGUvVHlwZTEvQmFz ZUZvbnQvVGltZXMtQm9sZC9UeXBlL0ZvbnQvTmFtZS9SMTgvRmlyc3RDaGFy IDEvTGFzdENoYXIgMjU1L1dpZHRoc1sgMzMzIDU1NiA1NTYgMTY3IDMzMyA2 NjcgMjc4IDMzMyAzMzMgMjUwIDMzMyA1NzAgMjUwIDY2NyA0NDQKMzMzIDI3 OCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUw IDI1MCAzMzMgMjc4CjI1MCAzMzMgNTU1IDUwMCA1MDAgMTAwMCA4MzMgMzMz IDMzMyAzMzMgNTAwIDU3MCAyNTAgMzMzIDI1MCAyNzgKNTAwIDUwMSA1MDEg NTAxIDUwMSA1MDEgNTAwIDUwMCA1MDAgNTAwIDMzMyAzMzMgNTcwIDU3MCA1 NzAgNTAwCjkzMCA3MjIgNjY3IDcyMiA3MjIgNjY3IDYxMiA3NzggNzc4IDM5 MSA1MDAgNzc4IDY2NyA5NDQgNzIyIDc3OAo2MTEgNzc4IDcyMiA1NTIgNjYy IDcyMiA3MjIgMTAwMyA3MjIgNzIyIDY2NyAzMzMgMjc4IDMzMyA1ODEgNTAw CjMzMyA1MDEgNTUyIDQ0MSA1NTIgNDQxIDMzMSA1MDEgNTU2IDI4MSAzMzMg NTUyIDI4MSA4MzMgNTUyIDUwMQo1NTIgNTU2IDQ0MSAzOTEgMzMxIDU1MiA1 MDAgNzIyIDUwMCA1MDAgNDQ0IDM5NCAyMjAgMzk0IDUyMCAyNTAKMjUwIDI1 MCAzMzMgNTAwIDUwMCAxMDAwIDUwMCA1MDAgMzMzIDEwMDAgNTU2IDMzMyAx MDAwIDI1MCAyNTAgMjUwCjI1MCAyNTAgMjUwIDUwMCA1MDAgMzUwIDUwMCAx MDAwIDMzMyAxMDAwIDM4OSAzMzMgNzIyIDI1MCAyNTAgNzIyCjI1MCAzMzMg NTAwIDUwMCA1MDAgNTAwIDIyMCA1MDAgMzMzIDc0NyAzMDAgNTAwIDU3MCAz MzMgNzQ3IDMzMwo0MDAgNTcwIDMwMCAzMDAgMzMzIDU1NiA1NDAgMjUwIDMz MyAzMDAgMzMwIDUwMCA3NTAgNzUwIDc1MCA1MDAKNzIyIDcyMiA3MjIgNzIy IDcyMiA3MjIgMTAwMCA3MjIgNjY3IDY2NyA2NjcgNjY3IDM4OSAzODkgMzg5 IDM4OQo3MjIgNzIyIDc3OCA3NzggNzc4IDc3OCA3NzggNTcwIDc3OCA3MjIg NzIyIDcyMiA3MjIgNzIyIDYxMSA1NTYKNTAwIDUwMCA1MDAgNTAwIDUwMCA1 MDAgNzIyIDQ0NCA0NDQgNDQ0IDQ0NCA0NDQgMjc4IDI3OCAyNzggMjc4CjUw MCA1NTYgNTAwIDUwMCA1MDAgNTAwIDUwMCA1NzAgNTAwIDU1NiA1NTYgNTU2 IDU1NiA1MDAgNTU2IDUwMF0KPj4KZW5kb2JqCjkzIDAgb2JqCjw8L1N1YnR5 cGUvVHlwZTEvQmFzZUZvbnQvQ291cmllci9UeXBlL0ZvbnQvTmFtZS9SOTMv Rmlyc3RDaGFyIDEvTGFzdENoYXIgMjU1L1dpZHRoc1sgNjAwIDYwMCA2MDAg NjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2 MDAKNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYw MCA2MDAgNjAwIDYwMCA2MDAgNjAwCjYwMCA2MDIgNjAwIDYwMCA2MDAgNjAw IDYwMCA2MDAgNjAyIDYwMiA2MDAgNjAwIDYwMCA2MDIgNjAyIDYwMAo2MDIg NjAyIDYwMiA2MDIgNjAyIDYwMiA2MDAgNjAyIDYwMCA2MDIgNjAyIDYwMCA2 MDAgNjAyIDYwMCA2MDAKNjAwIDYwMCA2MDAgNjAyIDYwMiA2MDAgNjAwIDYw MiA2MDAgNjAwIDYwMCA2MDAgNjAyIDYwMCA2MDIgNjAwCjYwMiA2MDAgNjAy IDYwMiA2MDIgNjAwIDYwMCA2MDAgNjAyIDYwMCA2MDAgNjAwIDYwMCA2MDAg NjAwIDYwMAo2MDAgNjAyIDYwMCA2MDIgNjAyIDYwMiA2MDIgNjAyIDYwMCA2 MDIgNjAyIDYwMiA2MDIgNjAyIDYwMiA2MDIKNjAyIDYwMiA2MDIgNjAyIDYw MiA2MDIgNjAyIDYwMCA2MDIgNjAyIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAw CjYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAg NjAwIDYwMCA2MDAgNjAwIDYwMAo2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2 MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAKNjAwIDYw MCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAw IDYwMiA2MDAgNjAwCjYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAg NjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMAo2MDAgNjAwIDYwMCA2 MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYw MCA2MDAKNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAw IDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwCjYwMCA2MDAgNjAwIDYwMCA2MDAg NjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMAo2 MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYw MCA2MDAgNjAwIDYwMCA2MDBdCj4+CmVuZG9iagoxNSAwIG9iago8PC9TdWJ0 eXBlL1R5cGUxL0Jhc2VGb250L1RpbWVzLUl0YWxpYy9UeXBlL0ZvbnQvTmFt ZS9SMTUvRmlyc3RDaGFyIDEvTGFzdENoYXIgMjU1L1dpZHRoc1sgMzMzIDUw MCA1MDAgMTY3IDMzMyA1NTYgMjc4IDMzMyAzMzMgMjUwIDMzMyA2NzUgMjUw IDU1NiAzODkKMzMzIDI3OCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAg MjUwIDI1MCAyNTAgMjUwIDI1MCAzMzMgMjE0CjI1MCAzMzMgNDIwIDUwMCA1 MDAgODMzIDc3OCAzMzMgMzMzIDMzMyA1MDAgNjc1IDI1MCAzMzMgMjUwIDI3 OAo1MDAgNTAwIDUwMCA1MDAgNTAwIDUwMCA1MDAgNTAwIDUwMCA1MDAgMzMz IDMzMyA2NzUgNjc1IDY3NSA1MDAKOTIzIDYxMSA2MTEgNjY3IDcyMiA2MTEg NjExIDcyMiA3MjIgMzMzIDQ0NCA2NjcgNTU2IDgzMyA2NjcgNzIyCjYxMSA3 MjIgNjExIDUwMCA1NTYgNzIyIDYxMSA4MzMgNjExIDU1NiA1NTYgMzg5IDI3 OCAzODkgNDIyIDUwMAozMzMgNTAxIDUwMCA0NDEgNTAxIDQ0MSAyODEgNTAw IDUwMSAyODEgMjc4IDQ0NCAyODEgNzIyIDUwMSA1MDEKNTAwIDUwMCAzOTEg MzkxIDI4MSA1MDEgNDQ0IDY2MiA0NDQgNDQ0IDM4OSA0MDAgMjc1IDQwMCA1 NDEgMjUwCjI1MCAyNTAgMzMzIDUwMCA1NTYgODg5IDUwMCA1MDAgMzMzIDEw MDAgNTAwIDMzMyA5NDQgMjUwIDI1MCAyNTAKMjUwIDI1MCAyNTAgNTU2IDU1 NiAzNTAgNTAwIDg4OSAzMzMgOTgwIDM4OSAzMzMgNjY3IDI1MCAyNTAgNTU2 CjI1MCAzODkgNTAwIDUwMCA1MDAgNTAwIDI3NSA1MDAgMzMzIDc2MCAyNzYg NTAwIDY3NSAzMzMgNzYwIDMzMwo0MDAgNjc1IDMwMCAzMDAgMzMzIDUwMCA1 MjMgMjUwIDMzMyAzMDAgMzEwIDUwMCA3NTAgNzUwIDc1MCA1MDAKNjExIDYx MSA2MTEgNjExIDYxMSA2MTEgODg5IDY2NyA2MTEgNjExIDYxMSA2MTEgMzMz IDMzMyAzMzMgMzMzCjcyMiA2NjcgNzIyIDcyMiA3MjIgNzIyIDcyMiA2NzUg NzIyIDcyMiA3MjIgNzIyIDcyMiA1NTYgNjExIDUwMAo1MDAgNTAwIDUwMCA1 MDAgNTAwIDUwMCA2NjcgNDQ0IDQ0NCA0NDQgNDQ0IDQ0NCAyNzggMjc4IDI3 OCAyNzgKNTAwIDUwMCA1MDAgNTAwIDUwMCA1MDAgNTAwIDY3NSA1MDAgNTAw IDUwMCA1MDAgNTAwIDQ0NCA1MDAgNDQ0XQo+PgplbmRvYmoKOTAgMCBvYmoK PDwvU3VidHlwZS9UeXBlMS9CYXNlRm9udC9UaW1lcy1Sb21hbi9UeXBlL0Zv bnQvTmFtZS9SOTAvRmlyc3RDaGFyIDMyL0xhc3RDaGFyIDI1NS9XaWR0aHNb CjI1MCAzMzMgNDA4IDUwMCA1MDAgODMzIDc3OCAzMzMgMzMzIDMzMyA1MDAg NTY0IDI1MCA1NjQgMjUwIDI3OAo1MDAgNTAwIDUwMCA1MDAgNTAwIDUwMCA1 MDAgNTAwIDUwMCA1MDAgMjc4IDI3OCA1NjQgNTY0IDU2NCA0NDQKOTIxIDcy MiA2NjcgNjY3IDcyMiA2MTEgNTU2IDcyMiA3MjIgMzMzIDM4OSA3MjIgNjEx IDg4OSA3MjIgNzIyCjU1NiA3MjIgNjY3IDU1NiA2MTEgNzIyIDcyMiA5NDQg NzIyIDcyMiA2MTEgMzMzIDI3OCAzMzMgNDY5IDUwMAozMzMgNDQ0IDUwMCA0 NDQgNTAwIDQ0NCAzMzMgNTAwIDUwMCAyNzggMjc4IDUwMCAyNzggNzc4IDUw MCA1MDAKNTAwIDUwMCAzMzMgMzg5IDI3OCA1MDAgNTAwIDcyMiA1MDAgNTAw IDQ0NCA0ODAgMjAwIDQ4MCA1NDEgMjUwCjI1MCAyNTAgMjUwIDI1MCAyNTAg MjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MAoy NzggMzMzIDMzMyAzMzMgMzMzIDMzMyAzMzMgMzMzIDMzMyAyNTAgMzMzIDMz MyAyNTAgMzMzIDMzMyAzMzMKMjUwIDMzMyA1MDAgNTAwIDUwMCA1MDAgMjAw IDUwMCAzMzMgNzYwIDI3NiA1MDAgNTY0IDMzMyA3NjAgMzMzCjQwMCA1NjQg MzAwIDMwMCAzMzMgNTAwIDQ1MyAyNTAgMzMzIDMwMCAzMTAgNTAwIDc1MCA3 NTAgNzUwIDQ0NAo3MjIgNzIyIDcyMiA3MjIgNzIyIDcyMiA4ODkgNjY3IDYx MSA2MTEgNjExIDYxMSAzMzMgMzMzIDMzMyAzMzMKNzIyIDcyMiA3MjIgNzIy IDcyMiA3MjIgNzIyIDU2NCA3MjIgNzIyIDcyMiA3MjIgNzIyIDcyMiA1NTYg NTAwCjQ0NCA0NDQgNDQ0IDQ0NCA0NDQgNDQ0IDY2NyA0NDQgNDQ0IDQ0NCA0 NDQgNDQ0IDI3OCAyNzggMjc4IDI3OAo1MDAgNTAwIDUwMCA1MDAgNTAwIDUw MCA1MDAgNTY0IDUwMCA1MDAgNTAwIDUwMCA1MDAgNTAwIDUwMCA1MDBdCj4+ CmVuZG9iago1OCAwIG9iago8PC9TdWJ0eXBlL1R5cGUxL0Jhc2VGb250L1Rp bWVzLUJvbGQvVHlwZS9Gb250L05hbWUvUjU4L0ZpcnN0Q2hhciAxL0xhc3RD aGFyIDI1NS9XaWR0aHNbIDMzMyA1NTYgNTU2IDE2NyAzMzMgNjY3IDI3OCAz MzMgMzMzIDI1MCAzMzMgNTcwIDI1MCA2NjcgNDQ0CjMzMyAyNzggMjUwIDI1 MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMzMz IDI3OAoyNTAgMzMzIDU1NSA1MDAgNTAwIDEwMDAgODMzIDMzMyAzMzMgMzMz IDUwMCA1NzIgMjUwIDMzMyAyNTUgMjc4CjQ5NiA0OTYgNDk2IDUwMCA0OTYg NTAwIDQ5NiA0OTYgNDk2IDQ5NiAzMzMgMzMzIDU3MCA1NzAgNTcwIDUwMAo5 MzAgNzIyIDY2NyA3MjIgNzIyIDY2NyA2MTcgNzc4IDc3OCAzOTEgNTAwIDc3 OCA2NjcgOTQ4IDcyMiA3NzgKNjE3IDc3OCA3MjIgNTU3IDY2MiA3MjIgNzIy IDEwMDAgNzIyIDcyMiA2NjcgMzMzIDI3OCAzMzMgNTgxIDUwMAozMzMgNDk2 IDU1NyA0MzYgNTU3IDQzNiAzMzMgNDk2IDU1NiAyNzEgMzMzIDU1NiAyNzEg ODMzIDU1NyA0OTYKNTU3IDU1NiA0MzYgMzkxIDMzMSA1NTcgNDk2IDcyMiA0 OTYgNDk2IDQ0NCAzOTQgMjIwIDM5NCA1MjAgMjUwCjI1MCAyNTAgMzMzIDUw MCA1MDAgMTAwMCA1MDAgNTAwIDMzMyAxMDAwIDU1NiAzMzMgMTAwMCAyNTAg MjUwIDI1MAoyNTAgMjUwIDI1MCA1MDAgNTAwIDM1MCA1MDAgMTAwMCAzMzMg MTAwMCAzODkgMzMzIDcyMiAyNTAgMjUwIDcyMgoyNTAgMzMzIDUwMCA1MDAg NTAwIDUwMCAyMjAgNTAwIDMzMyA3NDcgMzAwIDUwMCA1NzAgMzMzIDc0NyAz MzMKNDAwIDU3MCAzMDAgMzAwIDMzMyA1NTYgNTQwIDI1MCAzMzMgMzAwIDMz MCA1MDAgNzUwIDc1MCA3NTAgNTAwCjcyMiA3MjIgNzIyIDcyMiA3MjIgNzIy IDEwMDAgNzIyIDY2NyA2NjcgNjY3IDY2NyAzODkgMzg5IDM4OSAzODkKNzIy IDcyMiA3NzggNzc4IDc3OCA3NzggNzc4IDU3MCA3NzggNzIyIDcyMiA3MjIg NzIyIDcyMiA2MTEgNTU2CjUwMCA1MDAgNTAwIDUwMCA1MDAgNTAwIDcyMiA0 NDQgNDQ0IDQ0NCA0NDQgNDQ0IDI3OCAyNzggMjc4IDI3OAo1MDAgNTU2IDUw MCA1MDAgNTAwIDUwMCA1MDAgNTcwIDUwMCA1NTYgNTU2IDU1NiA1NTYgNTAw IDU1NiA1MDBdCj4+CmVuZG9iagoxMCAwIG9iago8PC9TdWJ0eXBlL1R5cGUx L0Jhc2VGb250L1RpbWVzLVJvbWFuL1R5cGUvRm9udC9OYW1lL1IxMC9GaXJz dENoYXIgMS9MYXN0Q2hhciAyNTUvV2lkdGhzWyAzMzMgNTU2IDU1NiAxNjcg MzMzIDYxMSAyNzggMzMzIDMzMyAyNTAgMzMzIDU2NCAyNTAgNjExIDQ0NAoz MzMgMjc4IDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1 MCAyNTAgMjUwIDMzMyAxODAKMjUwIDMzMyA0MDggNTAwIDUwMCA4MzMgNzc4 IDMzMyAzMzMgMzMzIDUwMCA1NjQgMjUwIDMzMSAyNTAgMjc4CjUwMSA1MDEg NTAxIDUwMCA1MDEgNTAwIDUwMCA1MDAgNTAxIDUwMSAyNzggMjc4IDU2NCA1 NjQgNTY0IDQ0NAo5MjEgNzIyIDY2NyA2NjIgNzIyIDYxMiA1NTIgNzIyIDcy MiAzMzMgMzkxIDcyMiA2MTEgODkzIDcyMiA3MjIKNTU2IDcyMiA2NjIgNTUy IDYxMSA3MjIgNzIyIDk0MyA3MjIgNzIyIDYxMSAzMzMgMjc4IDMzMyA0Njkg NTAwCjMzMyA0NDEgNTAxIDQ0MSA1MDEgNDQxIDMzMSA1MDEgNTAxIDI4MSAy NzggNTAwIDI4MSA3ODIgNTAxIDUwMQo1MDEgNTAwIDMzMSAzOTEgMjgxIDUw MSA1MDEgNzIyIDUwMCA1MDEgNDQ0IDQ4MCAyMDAgNDgwIDU0MSAyNTAKMjUw IDI1MCAzMzMgNTAwIDQ0NCAxMDAwIDUwMCA1MDAgMzMzIDEwMDAgNTU2IDMz MyA4ODkgMjUwIDI1MCAyNTAKMjUwIDI1MCAyNTAgNDQ0IDQ0NCAzNTAgNTAw IDEwMDAgMzMzIDk4MCAzODkgMzMzIDcyMiAyNTAgMjUwIDcyMgoyNTAgMzMz IDUwMCA1MDAgNTAwIDUwMCAyMDAgNTAwIDMzMyA3NjAgMjc2IDUwMCA1NjQg MzMxIDc2MCAzMzMKNDAwIDU2NCAzMDAgMzAwIDMzMyA1MDAgNDUzIDI1MCAz MzMgMzAwIDMxMCA1MDAgNzUwIDc1MCA3NTAgNDQ0CjcyMiA3MjIgNzIyIDcy MiA3MjIgNzIyIDg4OSA2NjcgNjExIDYxMSA2MTEgNjExIDMzMyAzMzMgMzMz IDMzMwo3MjIgNzIyIDcyMiA3MjIgNzIyIDcyMiA3MjIgNTY0IDcyMiA3MjIg NzIyIDcyMiA3MjIgNzIyIDU1NiA1MDAKNDQ0IDQ0NCA0NDQgNDQ0IDQ0NCA0 NDQgNjY3IDQ0NCA0NDQgNDQ0IDQ0NCA0NDQgMjc4IDI3OCAyNzggMjc4CjUw MCA1MDAgNTAwIDUwMCA1MDAgNTAwIDUwMCA1NjQgNTAwIDUwMCA1MDAgNTAw IDUwMCA1MDAgNTAwIDUwMF0KPj4KZW5kb2JqCjUgMCBvYmoKPDwvU3VidHlw ZS9UeXBlMS9CYXNlRm9udC9UaW1lcy1Cb2xkL1R5cGUvRm9udC9OYW1lL1I1 L0ZpcnN0Q2hhciAxL0xhc3RDaGFyIDI1NS9XaWR0aHNbIDMzMyA1NTIgNTU2 IDE2NyAzMzMgNjY3IDI3OCAzMzMgMzMzIDI1MCAzMzMgNTcwIDI1MCA2Njcg NDQ0CjMzMyAyNzggMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAy NTAgMjUwIDI1MCAyNTAgMzMzIDI3OAoyNTAgMzMzIDU1NSA1MDAgNTAwIDEw MDAgODMzIDMzMyAzMzMgMzMzIDUwMCA1NzAgMjUwIDMzMyAyNTAgMjc4CjUw MCA1MDAgNTAwIDUwMCA1MDAgNTAwIDUwMCA1MDAgNTAwIDUwMCAzMzQgMzMz IDU3MCA1NzAgNTcwIDUwMAo5MzAgNzIyIDY2NyA3MjIgNzIyIDY2NyA2MTAg Nzc4IDc3OCAzODkgNTAwIDc3OCA2NjcgOTQ1IDcxOSA3NzgKNjEwIDc3OCA3 MjIgNTUyIDY2OSA3MjIgNzIyIDEwMDAgNzIyIDcyMiA2NjcgMzMzIDI3OCAz MzMgNTgxIDUwMAozMzMgNTAxIDU1MiA0NDMgNTUyIDQ0MyAzMzMgNTAxIDU1 MiAyNzYgMzMzIDU1MiAyNzYgODMzIDU1MiA1MDEKNTUyIDU1NiA0NDMgMzkz IDMzNCA1NTIgNTAwIDcxOSA1MDAgNTAxIDQ0NCAzOTQgMjIwIDM5NCA1MjAg MjUwCjI1MCAyNTAgMzMzIDUwMCA1MDAgMTAwMCA1MDAgNTAwIDMzMyAxMDAw IDU1NiAzMzMgMTAwMCAyNTAgMjUwIDI1MAoyNTAgMjUwIDI1MCA1MDAgNTAw IDM1MCA1MDAgMTAwMCAzMzMgMTAwMCAzODkgMzMzIDcyMiAyNTAgMjUwIDcy MgoyNTAgMzMzIDUwMCA1MDAgNTAwIDUwMCAyMjAgNTAwIDMzMyA3NDcgMzAw IDUwMCA1NzAgMzMzIDc0NyAzMzMKNDAwIDU3MCAzMDAgMzAwIDMzMyA1NTYg NTQwIDI1MCAzMzMgMzAwIDMzMCA1MDAgNzUwIDc1MCA3NTAgNTAwCjcyMiA3 MjIgNzIyIDcyMiA3MjIgNzIyIDEwMDAgNzIyIDY2NyA2NjcgNjY3IDY2NyAz ODkgMzg5IDM4OSAzODkKNzIyIDcyMiA3NzggNzc4IDc3OCA3NzggNzc4IDU3 MCA3NzggNzIyIDcyMiA3MjIgNzIyIDcyMiA2MTEgNTU2CjUwMCA1MDAgNTAw IDUwMCA1MDAgNTAwIDcyMiA0NDQgNDQ0IDQ0NCA0NDQgNDQ0IDI3OCAyNzgg Mjc4IDI3OAo1MDAgNTU2IDUwMCA1MDAgNTAwIDUwMCA1MDAgNTcwIDUwMCA1 NTYgNTU2IDU1NiA1NTYgNTAwIDU1NiA1MDBdCi9FbmNvZGluZyAxMjUgMCBS Pj4KZW5kb2JqCjEyNSAwIG9iago8PC9UeXBlL0VuY29kaW5nL0RpZmZlcmVu Y2VzWwoyL2ZpXT4+CmVuZG9iagoxMTUgMCBvYmoKPDwvVHlwZS9Gb250RGVz Y3JpcHRvci9Gb250TmFtZS9Db3VyaWVyPj4KZW5kb2JqCjkyIDAgb2JqCjw8 L1R5cGUvRm9udERlc2NyaXB0b3IvRm9udE5hbWUvQ291cmllcj4+CmVuZG9i agoyNyAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0Nv dXJpZXI+PgplbmRvYmoKMTE2IDAgb2JqCjw8L1N1YnR5cGUvVHlwZTEvQmFz ZUZvbnQvQ291cmllci9UeXBlL0ZvbnQvTmFtZS9SMTE2L0ZpcnN0Q2hhciAx L0xhc3RDaGFyIDI1NS9XaWR0aHNbIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAw IDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwCjYwMCA2MDAg NjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2 MDAgNjAwIDYwMAo2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYw MCA2MDAgNjAwIDYwMCA2MDAgNjAyIDYwMiA2MDIKNjAwIDYwMCA2MDAgNjAw IDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMiA2MDAgNjAwIDYwMCA2MDAg NjAwCjYwMCA2MDIgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMiA2 MDAgNjAwIDYwMCA2MDAgNjAwIDYwMAo2MDAgNjAwIDYwMCA2MDAgNjAwIDYw MCA2MDAgNjAwIDYwMiA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAKNjAw IDYwMiA2MDIgNjAyIDYwMiA2MDIgNjAyIDYwMiA2MDIgNjAyIDYwMiA2MDIg NjAyIDYwMiA2MDIgNjAyCjYwMiA2MDIgNjAyIDYwMiA2MDIgNjAyIDYwMiA2 MDIgNjAwIDYwMCA2MDIgNjAwIDYwMCA2MDAgNjAwIDYwMAo2MDAgNjAwIDYw MCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAw IDYwMCA2MDAKNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAg NjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwCjYwMCA2MDAgNjAwIDYwMCA2 MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDIgNjAwIDYw MAo2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAw IDYwMCA2MDAgNjAwIDYwMCA2MDAKNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAg NjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwCjYwMCA2 MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYw MCA2MDAgNjAwIDYwMAo2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAw IDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAKNjAwIDYwMCA2MDAg NjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2 MDAgNjAwXQo+PgplbmRvYmoKNDEgMCBvYmoKPDwvU3VidHlwZS9UeXBlMS9C YXNlRm9udC9IZWx2ZXRpY2EtQm9sZC9UeXBlL0ZvbnQvTmFtZS9SNDE+Pgpl bmRvYmoKMTEzIDAgb2JqCjw8L1R5cGUvRm9udERlc2NyaXB0b3IvRm9udE5h bWUvVGltZXMtSXRhbGljPj4KZW5kb2JqCjE5IDAgb2JqCjw8L1R5cGUvRm9u dERlc2NyaXB0b3IvRm9udE5hbWUvVGltZXMtSXRhbGljPj4KZW5kb2JqCjQ0 IDAgb2JqCjw8L1R5cGUvRm9udERlc2NyaXB0b3IvRm9udE5hbWUvSGVsdmV0 aWNhLUJvbGQ+PgplbmRvYmoKNDAgMCBvYmoKPDwvVHlwZS9Gb250RGVzY3Jp cHRvci9Gb250TmFtZS9IZWx2ZXRpY2EtQm9sZD4+CmVuZG9iagoxNCAwIG9i ago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL1RpbWVzLUl0YWxp Yz4+CmVuZG9iagoxMTQgMCBvYmoKPDwvU3VidHlwZS9UeXBlMS9CYXNlRm9u dC9UaW1lcy1JdGFsaWMvVHlwZS9Gb250L05hbWUvUjExNC9GaXJzdENoYXIg MS9MYXN0Q2hhciAyNTUvV2lkdGhzWyAzMzMgNTAwIDUwMCAxNjcgMzMzIDU1 NiAyNzggMzMzIDMzMyAyNTAgMzMzIDY3NSAyNTAgNTU2IDM4OQozMzMgMjc4 IDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAgMjUwIDI1MCAyNTAg MjUwIDMzMyAyMTQKMjUwIDMzMyA0MjAgNTAwIDUwMCA4MzMgNzc4IDMzNCAz MzQgMzM0IDUwMCA2NzUgMjU0IDMzNCAyNTAgMjgxCjQ5NSA0OTUgNDk1IDUw MCA1MDAgNTAwIDUwMCA0OTUgNTAwIDQ5NSAzMzQgMzMzIDY3NSA2NzUgNjc1 IDUwMAo5MjAgNjE1IDYxNSA2NjkgNzIyIDYxNSA2MTUgNzIyIDcyMiAzMzQg NDQ0IDY2NyA1NjIgODI5IDY2OSA3MjIKNjE1IDcyMiA2MTUgNDk1IDU2MiA3 MjIgNjE1IDgzMyA2MTUgNTU2IDU1NiAzODkgMjc4IDM4OSA0MjIgNTAwCjMz MyA0OTUgNTAwIDQ0MSA0OTUgNDQxIDI4MSA0OTUgNDk1IDI4MSAyNzggNDQx IDI4MSA3MjIgNDk1IDQ5NQo0OTUgNTAwIDM4OCAzODggMjgxIDQ5NSA0NDEg NjY5IDQ0NCA0NDEgMzg5IDQwMCAyNzUgNDAwIDU0MSAyNTAKMjUwIDI1MCAz MzMgNTAwIDU1NiA4ODkgNTAwIDUwMCAzMzMgMTAwMCA1MDAgMzMzIDk0NCAy NTAgMjUwIDI1MAoyNTAgMjUwIDI1MCA1NTYgNTU2IDM1MCA1MDAgODg5IDMz MyA5ODAgMzg5IDMzMyA2NjcgMjUwIDI1MCA1NTYKMjUwIDM4OSA1MDAgNTAw IDUwMCA1MDAgMjc1IDUwMCAzMzMgNzYwIDI3NiA1MDAgNjc1IDMzNCA3NjAg MzMzCjQwMCA2NzUgMzAwIDMwMCAzMzMgNTAwIDUyMyAyNTAgMzMzIDMwMCAz MTAgNTAwIDc1MCA3NTAgNzUwIDUwMAo2MTEgNjExIDYxMSA2MTEgNjExIDYx MSA4ODkgNjY3IDYxMSA2MTEgNjExIDYxMSAzMzMgMzMzIDMzMyAzMzMKNzIy IDY2NyA3MjIgNzIyIDcyMiA3MjIgNzIyIDY3NSA3MjIgNzIyIDcyMiA3MjIg NzIyIDU1NiA2MTEgNTAwCjUwMCA1MDAgNTAwIDUwMCA1MDAgNTAwIDY2NyA0 NDQgNDQ0IDQ0NCA0NDQgNDQ0IDI3OCAyNzggMjc4IDI3OAo1MDAgNTAwIDUw MCA1MDAgNTAwIDUwMCA1MDAgNjc1IDUwMCA1MDAgNTAwIDUwMCA1MDAgNDQ0 IDUwMCA0NDRdCj4+CmVuZG9iago0NSAwIG9iago8PC9TdWJ0eXBlL1R5cGUx L0Jhc2VGb250L0hlbHZldGljYS1Cb2xkL1R5cGUvRm9udC9OYW1lL1I0NS9G aXJzdENoYXIgMS9MYXN0Q2hhciAyNTUvV2lkdGhzWyAzMzMgNjExIDYxMSAx NjcgMzMzIDYxMSAyNzggMzMzIDMzMyAyNzggMzMzIDU4NCAyNzggNjExIDUw MAozMzMgMjc4IDI3OCAyNzggMjc4IDI3OCAyNzggMjc4IDI3OCAyNzggMjc4 IDI3OCAyNzggMjc4IDMzMyAyMzgKMjc4IDMzMyA0NzQgNTU2IDU1NiA4OTEg NzIyIDI3NyAzMzcgMzM3IDM4OSA1ODQgMjc3IDMzNyAyNzcgMjc3CjU1NiA1 NTQgNTU0IDU1NCA1NTQgNTU0IDU1NCA1NTYgNTU2IDU1NCAzMzMgMzMzIDU4 NCA1ODQgNTg0IDYxMQo5NzUgNzIyIDcyMiA3MjIgNzIyIDY2MiA2MTQgNzc4 IDcyMiAyNzcgNTU2IDcyMiA2MTQgODMxIDcyMiA3ODIKNjYyIDc3OCA3MjIg NjYyIDYxNCA3MjIgNjY3IDk0NCA2NjcgNjY3IDYxMSAzMzMgMjc4IDMzMyA1 ODQgNTU2CjI3OCA1NTQgNjE0IDU1NCA2MTQgNTU0IDMzNyA2MTQgNjE0IDI3 NyAyNzggNTU2IDI3NyA4OTEgNjE0IDYxNAo2MTQgNjExIDM4NSA1NTQgMzM3 IDYxNCA1NTQgNzgyIDU1NCA1NTQgNTAwIDM4OSAyODAgMzg5IDU4NCAyNzgK Mjc4IDI3OCAyNzggNTU2IDUwMCAxMDAwIDU1NiA1NTYgMzMzIDEwMDAgNjY3 IDMzMyAxMDAwIDI3OCAyNzggMjc4CjI3OCAyNzggMjc4IDUwMCA1MDAgMzUw IDU1NiAxMDAwIDMzMyAxMDAwIDU1NiAzMzMgOTQ0IDI3OCAyNzggNjY3CjI3 OCAzMzMgNTU2IDU1NiA1NTYgNTU2IDI4MCA1NTYgMzMzIDczNyAzNzAgNTU2 IDU4NCAzMzcgNzM3IDMzMwo2MDYgNTg0IDM1MSAzNTEgMzMzIDYxMSA1NTYg Mjc4IDMzMyAzNTEgMzY1IDU1NiA4NjkgODY5IDg2OSA2MTEKNzIyIDcyMiA3 MjIgNzIyIDcyMiA3MjIgMTAwMCA3MjIgNjY3IDY2NyA2NjcgNjY3IDI3OCAy NzggMjc4IDI3OAo3MjIgNzIyIDc3OCA3NzggNzc4IDc3OCA3NzggNTg0IDc3 OCA3MjIgNzIyIDcyMiA3MjIgNjY3IDY2NyA2MTEKNTU2IDU1NiA1NTYgNTU2 IDU1NiA1NTYgODg5IDU1NiA1NTYgNTU2IDU1NiA1NTYgMjc4IDI3OCAyNzgg Mjc4CjYxMSA2MTEgNjExIDYxMSA2MTEgNjExIDYxMSA1ODQgNjExIDYxMSA2 MTEgNjExIDYxMSA1NTYgNjExIDU1Nl0KL0VuY29kaW5nIDEyNiAwIFI+Pgpl bmRvYmoKMTI2IDAgb2JqCjw8L1R5cGUvRW5jb2RpbmcvRGlmZmVyZW5jZXNb CjE3My9oeXBoZW5dPj4KZW5kb2JqCjIgMCBvYmoKPDwvUHJvZHVjZXIgKEFs YWRkaW4gR2hvc3RzY3JpcHQgNi4wMSkKPj5lbmRvYmoKeHJlZgowIDEyNwow MDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNzY1ODcgMDAwMDAgbiAKMDAwMDEw NTYzNyAwMDAwMCBuIAowMDAwMDc2NDU0IDAwMDAwIG4gCjAwMDAwOTAyODQg MDAwMDAgbiAKMDAwMDEwMDM3OCAwMDAwMCBuIAowMDAwMDc0OTE0IDAwMDAw IG4gCjAwMDAwMDAwMTUgMDAwMDAgbiAKMDAwMDAwNTUxMCAwMDAwMCBuIAow MDAwMDg2Mzg1IDAwMDAwIG4gCjAwMDAwOTkyNDUgMDAwMDAgbiAKMDAwMDA3 NjYzNSAwMDAwMCBuIAowMDAwMDg0MTY1IDAwMDAwIG4gCjAwMDAwNzc4NzMg MDAwMDAgbiAKMDAwMDEwMzIyMyAwMDAwMCBuIAowMDAwMDk1OTY5IDAwMDAw IG4gCjAwMDAwNzgxNDIgMDAwMDAgbiAKMDAwMDA5MDIyMyAwMDAwMCBuIAow MDAwMDkzNzA2IDAwMDAwIG4gCjAwMDAxMDMwMzAgMDAwMDAgbiAKMDAwMDA5 MjQ4OCAwMDAwMCBuIAowMDAwMDg2MzIzIDAwMDAwIG4gCjAwMDAwODg3OTAg MDAwMDAgbiAKMDAwMDAwNTUzMCAwMDAwMCBuIAowMDAwMDc1MDU1IDAwMDAw IG4gCjAwMDAwMDU2MjQgMDAwMDAgbiAKMDAwMDAxMjQxMyAwMDAwMCBuIAow MDAwMTAxNzAyIDAwMDAwIG4gCjAwMDAwODc2NjQgMDAwMDAgbiAKMDAwMDA3 ODQxMyAwMDAwMCBuIAowMDAwMDEyNDM0IDAwMDAwIG4gCjAwMDAwNzUxOTgg MDAwMDAgbiAKMDAwMDAxMjUwOCAwMDAwMCBuIAowMDAwMDE5NTg2IDAwMDAw IG4gCjAwMDAwOTAxNjIgMDAwMDAgbiAKMDAwMDA4NDcyMiAwMDAwMCBuIAow MDAwMDE5NjA3IDAwMDAwIG4gCjAwMDAwNzUzMzMgMDAwMDAgbiAKMDAwMDAx OTY4MyAwMDAwMCBuIAowMDAwMDI2NDUyIDAwMDAwIG4gCjAwMDAxMDMxNTgg MDAwMDAgbiAKMDAwMDEwMjg4OCAwMDAwMCBuIAowMDAwMDg2MjYxIDAwMDAw IG4gCjAwMDAwODI5NjAgMDAwMDAgbiAKMDAwMDEwMzA5MyAwMDAwMCBuIAow MDAwMTA0NDIwIDAwMDAwIG4gCjAwMDAwMjY0NzMgMDAwMDAgbiAKMDAwMDA3 NTQ2OCAwMDAwMCBuIAowMDAwMDI2NTcxIDAwMDAwIG4gCjAwMDAwMzM4MzAg MDAwMDAgbiAKMDAwMDA3ODYxNyAwMDAwMCBuIAowMDAwMDc4ODI3IDAwMDAw IG4gCjAwMDAwNzkwNzcgMDAwMDAgbiAKMDAwMDA3OTE0MSAwMDAwMCBuIAow MDAwMDc5MzIzIDAwMDAwIG4gCjAwMDAwNzkzODcgMDAwMDAgbiAKMDAwMDA3 OTY0NiAwMDAwMCBuIAowMDAwMDkwMTAxIDAwMDAwIG4gCjAwMDAwOTgxMDgg MDAwMDAgbiAKMDAwMDAzMzg1MSAwMDAwMCBuIAowMDAwMDc1NjExIDAwMDAw IG4gCjAwMDAwMzM5NDcgMDAwMDAgbiAKMDAwMDA0MTg0OCAwMDAwMCBuIAow MDAwMDc5NzEwIDAwMDAwIG4gCjAwMDAwNzk5NTkgMDAwMDAgbiAKMDAwMDA4 MDE2NiAwMDAwMCBuIAowMDAwMDgwMjMwIDAwMDAwIG4gCjAwMDAwODA0NjEg MDAwMDAgbiAKMDAwMDA4MDUyNSAwMDAwMCBuIAowMDAwMDg2MTk5IDAwMDAw IG4gCjAwMDAwODU5MzcgMDAwMDAgbiAKMDAwMDA4MDU4OSAwMDAwMCBuIAow MDAwMDgwODAyIDAwMDAwIG4gCjAwMDAwODEwNTQgMDAwMDAgbiAKMDAwMDA4 MTExOCAwMDAwMCBuIAowMDAwMDgxMzY1IDAwMDAwIG4gCjAwMDAwODE0Mjkg MDAwMDAgbiAKMDAwMDA4MTY2OCAwMDAwMCBuIAowMDAwMDgxNzMyIDAwMDAw IG4gCjAwMDAwODE3OTYgMDAwMDAgbiAKMDAwMDA4MTg2MCAwMDAwMCBuIAow MDAwMDgxOTI0IDAwMDAwIG4gCjAwMDAwODIyMTUgMDAwMDAgbiAKMDAwMDA0 MTg2OSAwMDAwMCBuIAowMDAwMDc1NzU0IDAwMDAwIG4gCjAwMDAwNDE5NjUg MDAwMDAgbiAKMDAwMDA0ODkyNCAwMDAwMCBuIAowMDAwMDg2MTM3IDAwMDAw IG4gCjAwMDAwOTE0ODEgMDAwMDAgbiAKMDAwMDA4NjA3NSAwMDAwMCBuIAow MDAwMDk3MTAxIDAwMDAwIG4gCjAwMDAwNDg5NDUgMDAwMDAgbiAKMDAwMDEw MTY0NCAwMDAwMCBuIAowMDAwMDk0ODQzIDAwMDAwIG4gCjAwMDAwNzU4ODkg MDAwMDAgbiAKMDAwMDA0OTA1MiAwMDAwMCBuIAowMDAwMDU1MDYzIDAwMDAw IG4gCjAwMDAwOTAwNDAgMDAwMDAgbiAKMDAwMDA5MDM0NCAwMDAwMCBuIAow MDAwMDU1MDg0IDAwMDAwIG4gCjAwMDAwNzYwMjQgMDAwMDAgbiAKMDAwMDA1 NTE4MiAwMDAwMCBuIAowMDAwMDYyMDY3IDAwMDAwIG4gCjAwMDAwNjIwODkg MDAwMDAgbiAKMDAwMDA3NjE2MiAwMDAwMCBuIAowMDAwMDYyMTU1IDAwMDAw IG4gCjAwMDAwNjg0MjkgMDAwMDAgbiAKMDAwMDA2ODQ1MSAwMDAwMCBuIAow MDAwMDc2MzA4IDAwMDAwIG4gCjAwMDAwNjg1NDggMDAwMDAgbiAKMDAwMDA3 NDc2NyAwMDAwMCBuIAowMDAwMDg2MDEyIDAwMDAwIG4gCjAwMDAwODY0NDYg MDAwMDAgbiAKMDAwMDEwMjk2NiAwMDAwMCBuIAowMDAwMTAzMjg2IDAwMDAw IG4gCjAwMDAxMDE1ODUgMDAwMDAgbiAKMDAwMDEwMTc2MCAwMDAwMCBuIAow MDAwMDgyNDc4IDAwMDAwIG4gCjAwMDAwODI2OTcgMDAwMDAgbiAKMDAwMDA3 NDc4OSAwMDAwMCBuIAowMDAwMDg0MTEwIDAwMDAwIG4gCjAwMDAwODU4NzYg MDAwMDAgbiAKMDAwMDA4NzU5OCAwMDAwMCBuIAowMDAwMDg5OTQwIDAwMDAw IG4gCjAwMDAwOTM2MzcgMDAwMDAgbiAKMDAwMDEwMTUzMCAwMDAwMCBuIAow MDAwMTA1NTc2IDAwMDAwIG4gCnRyYWlsZXIKPDwgL1NpemUgMTI3IC9Sb290 IDEgMCBSIC9JbmZvIDIgMCBSCj4+CnN0YXJ0eHJlZgoxMDU2OTMKJSVFT0YK --0-1303892076-1092598998=:85493-- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 12:21:59 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10A6616A4CE for ; Mon, 16 Aug 2004 12:21:59 +0000 (GMT) Received: from ei.bzerk.org (ei.xs4all.nl [213.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18F3D43D4C for ; Mon, 16 Aug 2004 12:21:56 +0000 (GMT) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (BOFH@localhost [127.0.0.1]) by ei.bzerk.org (8.12.10/8.12.10) with ESMTP id i7GCO1WA081291; Mon, 16 Aug 2004 14:24:01 +0200 (CEST) (envelope-from mail25@bzerk.org) Received: (from bulk@localhost) by ei.bzerk.org (8.12.10/8.12.10/Submit) id i7GCO0YD081290; Mon, 16 Aug 2004 14:24:00 +0200 (CEST) (envelope-from mail25@bzerk.org) Date: Mon, 16 Aug 2004 14:24:00 +0200 From: Ruben de Groot To: Kevin Stevens Message-ID: <20040816122400.GA81160@ei.bzerk.org> Mail-Followup-To: Ruben de Groot , Kevin Stevens , Bill Moran , Remko Lodder , freebsd-questions@freebsd.org References: <200408151429.05110.aaron@daltons.ca> <20040815170806.45fcb779.wmoran@potentialtech.com> <200408151603.26022.aaron@daltons.ca> <411FE2E9.1090704@elvandar.org> <20040815183205.66b753cd.wmoran@potentialtech.com> <688492D4-EF2F-11D8-9CD1-000A959CEE6A@pursued-with.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <688492D4-EF2F-11D8-9CD1-000A959CEE6A@pursued-with.net> User-Agent: Mutt/1.4.2.1i cc: Remko Lodder cc: Bill Moran cc: freebsd-questions@freebsd.org Subject: Re: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 12:21:59 -0000 On Sun, Aug 15, 2004 at 07:53:10PM -0700, Kevin Stevens typed: > > A lot of network scanners also trigger on NICS in promiscuous mode > (there's a way to detect them, I forget the details at the moment) > because admins want to know if any hosts are out there sniffing. How sure are you about that? AFAIK there's no way to detect a NIC in promiscuous mode *from the outside*. I would be very interested in a network scanner that could. Ruben From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 12:46:23 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32D7A16A4CE for ; Mon, 16 Aug 2004 12:46:23 +0000 (GMT) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id D910643D31 for ; Mon, 16 Aug 2004 12:46:22 +0000 (GMT) (envelope-from Barbish3@adelphia.net) Received: from barbish ([67.20.101.71]) by mta11.adelphia.net (InterMail vM.6.01.03.02 201-2131-111-104-20040324) with SMTP id <20040816124621.YFVS404.mta11.adelphia.net@barbish> for ; Mon, 16 Aug 2004 08:46:21 -0400 From: "JJB" To: "freebsd-questions@FreeBSD. ORG" Date: Mon, 16 Aug 2004 08:46:20 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <20040815183205.66b753cd.wmoran@potentialtech.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Importance: Normal Subject: RE: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Barbish3@adelphia.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 12:46:23 -0000 Promiscuous mode can also be enabled on most hardware routers. A hardware router in front of a private network with promiscuous mode enabled allows public internet users to access (sniff) all the traffic passing through the router as well as insert packets. This is major security leak and one that spoofers look for. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 12:47:14 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88D0216A4CF for ; Mon, 16 Aug 2004 12:47:14 +0000 (GMT) Received: from eborcom.com (dsl-62-3-122-102.zen.co.uk [62.3.122.102]) by mx1.FreeBSD.org (Postfix) with SMTP id 6C2A943D3F for ; Mon, 16 Aug 2004 12:47:09 +0000 (GMT) (envelope-from tom@FreeBSD.org) Received: (qmail 7888 invoked by uid 1001); 16 Aug 2004 12:47:05 -0000 Date: Mon, 16 Aug 2004 13:47:05 +0100 From: Tom Hukins To: FreeBSD Daemon Message-ID: <20040816124705.GA7860@eborcom.com> Mail-Followup-To: Tom Hukins , FreeBSD Daemon , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org References: <004601c48353$4534a9e0$0501a8c0@kojo> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <004601c48353$4534a9e0$0501a8c0@kojo> User-Agent: Mutt/1.4.1i cc: freebsd-questions@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: mod_perl ... mod_perl2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 12:47:14 -0000 On Mon, Aug 16, 2004 at 01:38:27PM +0800, FreeBSD Daemon wrote: > What is the difference between mod_perl and mod_perl2 in the port > collection of 4.10? mod_perl works with Apache 1.3; mod_perl2 works with Apache 2. See http://perl.apache.org/ more for details. Tom From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 13:07:53 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B130E16A4FE for ; Mon, 16 Aug 2004 13:07:53 +0000 (GMT) Received: from nagual.st (cc20684-a.assen1.dr.home.nl [217.122.132.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD70543D1D for ; Mon, 16 Aug 2004 13:07:52 +0000 (GMT) (envelope-from dick@nagual.st) Received: from pooh.nagual.st (pooh.nagual.st [::ffff:192.168.11.22]) by nagual.st with esmtp; Mon, 16 Aug 2004 15:07:41 +0200 Date: Mon, 16 Aug 2004 15:07:09 +0200 From: dick hoogendijk To: freebsd-questions@freebsd.org Message-Id: <20040816150709.46cb151c.dick@nagual.st> Organization: nagual SiTe X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: aterm question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 13:07:54 -0000 What can I do about this strange aterm behaviour of NOT showing =E9 or =E8 but instead it just gives me a =B4e of `e whatever I try. I.e. vim runs fine under xterm, with dead_acute ; dead_diaeresis etc.. but if I start vim (or any other editor) under aterm all those =E9 =E8 =EB stuff is lost. Even a normal comma or dblquote can not be printed to the screen. This happens no matter how I configure the use of this high-ascii (in XFree86 or with xmodmap makes no diff at all). I really do not know where to look anymore. Please any hints? --=20 dick -- http://www.nagual.st/ -- PGP/GnuPG key: F86289CE ++ Running FreeBSD 4.10 ++ Debian GNU/Linux (Woody) + Nai tiruvantel ar vayuvantel i Valar tielyanna nu vilja From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 13:46:15 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81F5A16A4CE for ; Mon, 16 Aug 2004 13:46:15 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 199D843D41 for ; Mon, 16 Aug 2004 13:46:15 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 12146 invoked from network); 16 Aug 2004 13:46:14 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.no-ip.com) ([66.92.78.145]) (envelope-sender ) by mail1.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 16 Aug 2004 13:46:14 -0000 Received: by be-well.no-ip.com (Postfix, from userid 1147) id 3E6D67D; Mon, 16 Aug 2004 09:46:14 -0400 (EDT) Sender: lowell@be-well.ilk.org To: Alex Thomas References: <411FEA61.3020608@terrabytetech.com> <41200FC2.7070208@terrabytetech.com> From: Lowell Gilbert Date: 16 Aug 2004 09:46:13 -0400 In-Reply-To: <41200FC2.7070208@terrabytetech.com> Message-ID: <44ekm72o2i.fsf@be-well.ilk.org> Lines: 32 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-questions@freebsd.org Subject: Re: Error Compiling cyrus-sasl2-saslauthd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 13:46:15 -0000 Please don't top-post. Alex Thomas writes: > I found my problem. Current version of OpenSSL is 0.9.7d. Downloaded > package of it off FreeBSD.org. Question now is, Why is my ports list > so out of date? Just installed system today. Your ports list has nothing to do with it. > Alex Thomas wrote: > > > Trying to complie cyrus-sasl2-saslauthd from ports. Ports > > collection is up to date. > > ------------------------------------------------------------------------------------------- > > > > Dependency warning: used OpenSSL version contains known vulnerabilities > > Please update or define either WITH_OPENSSL_BASE or WITH_OPENSSL_PORT > > *** Error code 1 > > > > Stop in /usr/ports/security/cyrus-sasl2-saslauthd. > > ------------------------------------------------------------------------------------------- > > > > Checked version of OpenSSL that is installed to /usr/bin/openssl : > > OpenSSL 0.9.7c 30 Sep 2003 > > > > The most recent version in ports shows the same version. > > System is FreeBSD 5.2.1 fresh install. That's your base system. That *was* the latest version at the time FreeBSD 5.2.1 was created. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 13:54:43 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71EE416A4CE for ; Mon, 16 Aug 2004 13:54:43 +0000 (GMT) Received: from smtp813.mail.sc5.yahoo.com (smtp813.mail.sc5.yahoo.com [66.163.170.83]) by mx1.FreeBSD.org (Postfix) with SMTP id 3AAF543D3F for ; Mon, 16 Aug 2004 13:54:43 +0000 (GMT) (envelope-from addymin@pacbell.net) Received: from unknown (HELO ?192.168.1.12?) (m?chinn@pacbell.net@63.202.80.154 with plain) by smtp813.mail.sc5.yahoo.com with SMTP; 16 Aug 2004 13:54:43 -0000 Message-ID: <4120BDA1.7030700@pacbell.net> Date: Mon, 16 Aug 2004 06:58:57 -0700 From: Mike User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: How to increase scrollback for FreeBSD-4.10? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: addymin@pacbell.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 13:54:43 -0000 Greetings: I have a FBSD-4.10 system that I log into using PuTTY (on a Win2K workstation). I am able to set PuTTY's scrollback to 1200 lines. When I'm on the 4.10 box the scrollback is about 200 lines. If possible I'd like to set the scroll back to 600 lines or so (at least). Question: How do I increase the scrollback on 4.10? Note: The video card on the 4.10 box is a Voodoo3-2000 (16 Mb) card. I searched the FBSD mail archives going back to 2003 and could not find a single reference. I also googled and could not turn up anything specific to FBSD. Hints? Thanks, Michael From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 13:56:32 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E15916A4CE for ; Mon, 16 Aug 2004 13:56:32 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id E123543D55 for ; Mon, 16 Aug 2004 13:56:31 +0000 (GMT) (envelope-from tparrott@gmail.com) Received: by mproxy.gmail.com with SMTP id v18so70730rnb for ; Mon, 16 Aug 2004 06:56:27 -0700 (PDT) Received: by 10.38.8.67 with SMTP id 67mr1245552rnh; Mon, 16 Aug 2004 06:56:27 -0700 (PDT) Message-ID: <8550301b04081606561a00afdd@mail.gmail.com> Date: Mon, 16 Aug 2004 09:56:27 -0400 From: Tyler Parrott To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: 4.10 Install failure. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: tyler@boardom.ca List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 13:56:32 -0000 Hey All, I am havign some trouble installing FreeBSD 4.10 on my PC. I downloaded an ISO image (and verified the checksum) from the Canadian FreeBSD FTP site. After burning the image to CD, I checked the checksums, which were the same. When I put the CD in the drive and attempt to boot from it, I just get a register dump and the computer halts. For example: AL:......... AH:............. AX:.................. EAX:.................... etc..... I have made another CD from the same image and the same thing happens. I have a Compaq Eco PC, with a 2.0 GHz PIV processor, 256MB Ram, 40gig HDD, etc... Any suggestions on what I could try to remedy this? Thanks Tyler From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:03:12 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93B8716A4CF for ; Mon, 16 Aug 2004 14:03:12 +0000 (GMT) Received: from smtp.nemschoff.com (smtp.Nemschoff.com [64.179.52.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C74E43D53 for ; Mon, 16 Aug 2004 14:03:10 +0000 (GMT) (envelope-from MClark@Nemschoff.com) Received: from EMAILSERVER2.nemschoff.com ([10.10.11.20]) by smtp.nemschoff.com with Microsoft SMTPSVC(5.0.2195.6713); Mon, 16 Aug 2004 09:04:49 -0500 Received: by EMAILSERVER2.nemschoff.com with Internet Mail Service (5.5.2653.19) id ; Mon, 16 Aug 2004 09:05:15 -0500 Message-ID: From: Michael Clark To: "'addymin@pacbell.net'" Date: Mon, 16 Aug 2004 09:05:14 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="ISO-8859-1" X-OriginalArrivalTime: 16 Aug 2004 14:04:49.0956 (UTC) FILETIME=[FEB27640:01C48399] cc: "'freebsd-questions@freebsd.org'" Subject: RE: How to increase scrollback for FreeBSD-4.10? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:03:12 -0000 > -----Original Message----- > From: Mike [mailto:addymin@pacbell.net] > Sent: Monday, August 16, 2004 8:59 AM > To: freebsd-questions > Subject: How to increase scrollback for FreeBSD-4.10? > > > Greetings: > > I have a FBSD-4.10 system that I log into using PuTTY (on a Win2K > workstation). I am able to set PuTTY's scrollback to 1200 lines. > > When I'm on the 4.10 box the scrollback is about 200 lines. > If possible > I'd like to set the scroll back to 600 lines or so (at least). > > Question: How do I increase the scrollback on 4.10? > > Note: The video card on the 4.10 box is a Voodoo3-2000 (16 Mb) card. > > I searched the FBSD mail archives going back to 2003 and > could not find > a single reference. I also googled and could not turn up anything > specific to FBSD. > > Hints? > > Thanks, > Michael kbdcontrol http://groups.google.com/groups?q=FreeBSD+Console+increase&hl=en&lr=&ie=UTF- 8&selm=5q1lq7%24bjg%241%40nikko.utsunomiya-u.ac.jp&rnum=2 Michael Clark Nemschoff Chairs Inc mclark at nemschoff dot com CompTIA A+, Network+, Server+, MCP Voice: (920) 457 7726 x294 Fax: (920) 453 6594 CONFIDENTIALITY NOTE: This electronic transmission, including all attachments, is directed in confidence solely to the person(s) to whom it is addressed, or an authorized recipient, and may not otherwise be distributed, copied or disclosed. The contents of the transmission may also be subject to intellectual property rights and all such rights are expressly claimed and are not waived. If you have received this transmission in error, please notify the sender immediately by return electronic transmission and then immediately delete this transmission, including all attachments, without copying, distributing or disclosing same. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:06:52 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5AB116A4CE for ; Mon, 16 Aug 2004 14:06:52 +0000 (GMT) Received: from web14106.mail.yahoo.com (web14106.mail.yahoo.com [216.136.172.136]) by mx1.FreeBSD.org (Postfix) with SMTP id C7DCD43D55 for ; Mon, 16 Aug 2004 14:06:52 +0000 (GMT) (envelope-from k_greenwood1@yahoo.com) Message-ID: <20040816140650.29601.qmail@web14106.mail.yahoo.com> Received: from [24.76.88.76] by web14106.mail.yahoo.com via HTTP; Mon, 16 Aug 2004 07:06:49 PDT Date: Mon, 16 Aug 2004 07:06:49 -0700 (PDT) From: "K. Greenwood" To: Paulo Roberto , questions@freebsd.org In-Reply-To: <20040814221346.68233.qmail@web14929.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: freebsd's gallery X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:06:53 -0000 --- Paulo Roberto wrote: > > What happened to it? I couldn't find it... > While I certainly do not mean it to be as abrasive as the site proclaims (I am not saying that you are either an idiot, nor stupid)... google is good. http://www.justfuckinggoogleit.com/search?query=gallery&as_sitesearch=freebsd.org Good luck. __________________________________ Do you Yahoo!? Yahoo! Mail is new and improved - Check it out! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:09:43 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FC4E16A4CE for ; Mon, 16 Aug 2004 14:09:43 +0000 (GMT) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA98543D49 for ; Mon, 16 Aug 2004 14:09:41 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost.infracaninophile.co.uk [IPv6:::1])i7GE9XvB084432 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 16 Aug 2004 15:09:33 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)id i7GE9XAQ084422; Mon, 16 Aug 2004 15:09:33 +0100 (BST) (envelope-from matthew) Date: Mon, 16 Aug 2004 15:09:30 +0100 From: Matthew Seaman To: Mike Message-ID: <20040816140930.GA84216@happy-idiot-talk.infracaninophile.co.uk> Mail-Followup-To: Matthew Seaman , Mike , freebsd-questions References: <4120BDA1.7030700@pacbell.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7JfCtLOvnd9MIVvH" Content-Disposition: inline In-Reply-To: <4120BDA1.7030700@pacbell.net> User-Agent: Mutt/1.5.6i X-Greylist: Message not sent from an IPv4 address, not delayed by milter-greylist-1.5.3 (smtp.infracaninophile.co.uk [0.0.0.0]); Mon, 16 Aug 2004 15:09:34 +0100 (BST) X-Virus-Scanned: clamd / ClamAV version devel-20040705, clamav-milter version 0.74a on smtp.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, hits=-4.8 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on happy-idiot-talk.infracaninophile.co.uk cc: freebsd-questions Subject: Re: How to increase scrollback for FreeBSD-4.10? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:09:43 -0000 --7JfCtLOvnd9MIVvH Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 16, 2004 at 06:58:57AM -0700, Mike wrote: > When I'm on the 4.10 box the scrollback is about 200 lines. If possible= =20 > I'd like to set the scroll back to 600 lines or so (at least). >=20 > Question: How do I increase the scrollback on 4.10? That depends on the console program you're using. For an xterm(1), the following in ~/.Xdefaults will give you 8k scrollback lines: xterm*saveLines: 8192 (Remember to run '/usr/X11R6/bin/xrdb -merge ${HOME}/.Xdefaults' out of .xsession or .xinit so that gets set every time you log in) For the system console, you'll need to play with the syscons(4) history size. Modify your kernel configuration to set options SC_HISTORY_SIZE=3DN where N is the number of lines of scroll back you want (default 100). Then build and install a new kernel in the usual way: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.= html There doesn't seem to be any way of achieving the same effect via sysctl(8), which is unfortunate. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --7JfCtLOvnd9MIVvH Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBIMAaiD657aJF7eIRApXVAJ4y8TaTgIAU2AXw3ZTv3fnEDYYKCQCfSb+8 9JsNRwgFvDYTeOahlez6/Z0= =Bden -----END PGP SIGNATURE----- --7JfCtLOvnd9MIVvH-- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:13:57 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8613316A4CE for ; Mon, 16 Aug 2004 14:13:57 +0000 (GMT) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id C23AD43D2F for ; Mon, 16 Aug 2004 14:13:56 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost.infracaninophile.co.uk [IPv6:::1])i7GEDnNp084498 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 16 Aug 2004 15:13:49 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)id i7GEDnn5084497; Mon, 16 Aug 2004 15:13:49 +0100 (BST) (envelope-from matthew) Date: Mon, 16 Aug 2004 15:13:49 +0100 From: Matthew Seaman To: Mike , freebsd-questions Message-ID: <20040816141349.GB84216@happy-idiot-talk.infracaninophile.co.uk> Mail-Followup-To: Matthew Seaman , Mike , freebsd-questions References: <4120BDA1.7030700@pacbell.net> <20040816140930.GA84216@happy-idiot-talk.infracaninophile.co.uk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QKdGvSO+nmPlgiQ/" Content-Disposition: inline In-Reply-To: <20040816140930.GA84216@happy-idiot-talk.infracaninophile.co.uk> User-Agent: Mutt/1.5.6i X-Greylist: Message not sent from an IPv4 address, not delayed by milter-greylist-1.5.3 (smtp.infracaninophile.co.uk [0.0.0.0]); Mon, 16 Aug 2004 15:13:49 +0100 (BST) X-Virus-Scanned: clamd / ClamAV version devel-20040705, clamav-milter version 0.74a on smtp.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, hits=-4.8 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on happy-idiot-talk.infracaninophile.co.uk Subject: Re: How to increase scrollback for FreeBSD-4.10? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:13:57 -0000 --QKdGvSO+nmPlgiQ/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 16, 2004 at 03:09:30PM +0100, Matthew Seaman wrote: > On Mon, Aug 16, 2004 at 06:58:57AM -0700, Mike wrote: >=20 > > When I'm on the 4.10 box the scrollback is about 200 lines. If possible= =20 > > I'd like to set the scroll back to 600 lines or so (at least). > >=20 > > Question: How do I increase the scrollback on 4.10? >=20 > That depends on the console program you're using. For an xterm(1), > the following in ~/.Xdefaults will give you 8k scrollback lines: >=20 > xterm*saveLines: 8192 >=20 > (Remember to run '/usr/X11R6/bin/xrdb -merge ${HOME}/.Xdefaults' out > of .xsession or .xinit so that gets set every time you log in) >=20 > For the system console, you'll need to play with the syscons(4) > history size. Modify your kernel configuration to set >=20 > options SC_HISTORY_SIZE=3DN >=20 > where N is the number of lines of scroll back you want (default 100). > Then build and install a new kernel in the usual way: >=20 > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfi= g.html >=20 > There doesn't seem to be any way of achieving the same effect via > sysctl(8), which is unfortunate. Except of course, for the kbdcontrol(1) program which I am reminded does all that sort of stuff. Changing SC_HISTORY_SIZE will let you alter the default size of the history buffer, kbdcontrol(1) lets you override that to whatever value you want. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --QKdGvSO+nmPlgiQ/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBIMEdiD657aJF7eIRArcbAKCMgQqLenIvEl1vd5E/ZjxmXOEUDgCgsZ7w yu1eN6o5y47FaXsD4hy3uRM= =+8e/ -----END PGP SIGNATURE----- --QKdGvSO+nmPlgiQ/-- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:17:06 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B558F16A4CE for ; Mon, 16 Aug 2004 14:17:06 +0000 (GMT) Received: from mail.ninjabucket.com (ninjabucket.com [208.60.152.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 151B343D2D for ; Mon, 16 Aug 2004 14:17:06 +0000 (GMT) (envelope-from aaron@snaphat.com) Received: from snaphat.com (snaphat.com [68.34.255.192]) i7GEGx8l074025; Mon, 16 Aug 2004 10:17:04 -0400 (EDT) (envelope-from aaron@snaphat.com) Received: from [192.168.0.7] (pcp03895846pcs.frncht01.de.comcast.net [68.34.255.192]) by snaphat.com (8.13.1/8.12.10) with ESMTP id i7GEGrms014104; Mon, 16 Aug 2004 10:16:53 -0400 (EDT) (envelope-from aaron@snaphat.com) Message-ID: <4120C1CE.5030404@snaphat.com> Date: Mon, 16 Aug 2004 10:16:46 -0400 From: Aaron Myles Landwehr User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "K. Greenwood" , questions@freebsd.org References: <20040816140650.29601.qmail@web14106.mail.yahoo.com> In-Reply-To: <20040816140650.29601.qmail@web14106.mail.yahoo.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamd / ClamAV version 0.75.1, clamav-milter version 0.75c on snaphat.com X-Virus-Status: Clean Subject: Re: freebsd's gallery X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:17:06 -0000 K. Greenwood wrote: >While I certainly do not mean it to be as abrasive as > > >the site proclaims (I am not saying that you are >either an idiot, nor stupid)... google is good. > >http://www.justfuckinggoogleit.com/search?query=gallery&as_sitesearch=freebsd.org > >Good luck. > > If you are going post on the list then please refrain from attempting to insult others; otherwise, don't post. -aaron myles landwehr --; This Message was scanned by Clam AntiVirus (clamd / ClamAV version 0.75.1) on snaphat.com; Please direct questions or comments to 'admin at snaphat.com'; FreeBSD 5.2.1-RELEASE-p9 From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:32:31 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CADAD16A4CE for ; Mon, 16 Aug 2004 14:32:31 +0000 (GMT) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A55443D39 for ; Mon, 16 Aug 2004 14:32:31 +0000 (GMT) (envelope-from Barbish3@adelphia.net) Received: from barbish ([67.20.101.71]) by mta10.adelphia.net (InterMail vM.6.01.03.02 201-2131-111-104-20040324) with SMTP id <20040816143230.QKWE9204.mta10.adelphia.net@barbish>; Mon, 16 Aug 2004 10:32:30 -0400 From: "JJB" To: , Date: Mon, 16 Aug 2004 10:32:30 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <8550301b04081606561a00afdd@mail.gmail.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Importance: Normal Subject: RE: 4.10 Install failure. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Barbish3@adelphia.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:32:31 -0000 owner-freebsd-questions@freebsd.org wrote: > Hey All, > > I am havign some trouble installing FreeBSD 4.10 on my PC. I > downloaded an ISO image (and verified the checksum) from the Canadian > FreeBSD FTP site. After burning the image to CD, I checked the > checksums, which were the same. > > When I put the CD in the drive and attempt to boot from it, I just get > a register dump and the computer halts. > > For example: AL:......... AH:............. AX:.................. > EAX:.................... etc..... > > I have made another CD from the same image and the same thing happens. > I have a Compaq Eco PC, with a 2.0 GHz PIV processor, 256MB Ram, > 40gig HDD, etc... > > Any suggestions on what I could try to remedy this? > > Thanks > Tyler If your burned cd has just the single .iso file on it them you did not burn it correctly to cdrom. Your cdrom burn software has to be .iso aware. Meaning it has to know that the .iso file is a compresses single file that has to be uncompressed as its written out to cdrom. Your bootable cdrom should look like a data cd with many directories loaded with many files. If your cd is ok per the above, then you may be using a newer PC which has more ms/windows Bios options. Turn off PNP and OS bios options. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:33:16 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8053816A4CE for ; Mon, 16 Aug 2004 14:33:16 +0000 (GMT) Received: from mymail.netmagicians.com (mymail.netmagicians.com [202.87.39.126]) by mx1.FreeBSD.org (Postfix) with SMTP id 07E5F43D2F for ; Mon, 16 Aug 2004 14:33:15 +0000 (GMT) (envelope-from sid@netmagicsolutions.com) Received: (qmail 4978 invoked from network); 16 Aug 2004 14:47:44 -0000 Received: from sid@netmagicsolutions.com by netmagicsolutions.com by uid 504 with qmail-scanner-1.16 (uvscan: v4.3.20/v4100. Clear:. Processed in 0.753072 secs); 16 Aug 2004 14:47:44 -0000 Received: from intra.netmagicsolutions.com (HELO ?10.1.1.161?) (202.87.39.242) by mymail.netmagicians.com with SMTP; 16 Aug 2004 14:47:43 -0000 Message-ID: <4120C5AB.1060100@netmagicsolutions.com> Date: Mon, 16 Aug 2004 20:03:15 +0530 From: Siddhartha Jain User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org X-Enigmail-Version: 0.84.2.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:33:16 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 JJB wrote: | Promiscuous mode can also be enabled on most hardware routers. A | hardware router in front of a private network with promiscuous mode | enabled allows public internet users to access (sniff) all the | traffic passing through the router as well as insert packets. This | is major security leak and one that spoofers look for. | I am curious, how do you do that? From what I understand, a promiscous mode allows someone on the box to see all packets that hit the interface. How does it allow an attacker (outside the box) to sniff packets hitting that interface? Thanks, - -- Siddhartha Jain (CISSP) Consulting Engineer Netmagic Solutions Pvt Ltd Bombay - 400063 Phone: +91-22-26850001 Ext.128 Fax : +91-22-26850002 http://www.netmagicsolutions.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBIMWrOGaxOP7knVwRAj1nAJ9Ae+5APNi4YgeSNwxMkrv7jwUbjQCeLftp 8BIhFJfN9b5S2xUTDctKcuI= =bt2X -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:33:40 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CC1E16A4CE for ; Mon, 16 Aug 2004 14:33:40 +0000 (GMT) Received: from ddardaar.mine.nu (bwo182.neoplus.adsl.tpnet.pl [83.29.238.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1663343D48 for ; Mon, 16 Aug 2004 14:33:40 +0000 (GMT) (envelope-from radek@raadradd.com) Received: by ddardaar.mine.nu (Postfix, from userid 1001) id 7D7CAA526; Mon, 16 Aug 2004 16:33:43 +0200 (CEST) Date: Mon, 16 Aug 2004 16:33:43 +0200 From: Radek Kozlowski To: "Jorge Mario G." Message-ID: <20040816143343.GB39290@werd> References: <20040816003240.24298.qmail@web50307.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline In-Reply-To: <20040816003240.24298.qmail@web50307.mail.yahoo.com> User-Agent: Mutt/1.5.6i cc: freebsd-questions@freebsd.org Subject: Re: NDISulator (project evil) installation on 5.2.1??? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:33:40 -0000 On Sun, Aug 15, 2004 at 07:32:40PM -0500, Jorge Mario G. wrote: > Hi there > I Have a card that is supported by the ndisulator > but it sais it's only available in -CURRENT > > I'm running FreeBSD-5.2.1-p9 > is there any way to install the ndisulator? http://www.freebsddiary.org/ibm-thinkpad-t41.php and scroll down to "Project Evil - the wireless card". -Radek From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:40:55 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7F9116A4CE for ; Mon, 16 Aug 2004 14:40:55 +0000 (GMT) Received: from mta9.adelphia.net (mta9.adelphia.net [68.168.78.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97EF543D39 for ; Mon, 16 Aug 2004 14:40:55 +0000 (GMT) (envelope-from Barbish3@adelphia.net) Received: from barbish ([67.20.101.71]) by mta9.adelphia.net (InterMail vM.6.01.03.02 201-2131-111-104-20040324) with SMTP id <20040816144055.WVWJ2583.mta9.adelphia.net@barbish>; Mon, 16 Aug 2004 10:40:55 -0400 From: "JJB" To: "Michael Clark" , Date: Mon, 16 Aug 2004 10:40:54 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Importance: Normal cc: freebsd-questions@freebsd.org Subject: RE: How to increase scrollback for FreeBSD-4.10? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Barbish3@adelphia.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:40:56 -0000 owner-freebsd-questions@freebsd.org wrote: >> -----Original Message----- >> From: Mike [mailto:addymin@pacbell.net] >> Sent: Monday, August 16, 2004 8:59 AM >> To: freebsd-questions >> Subject: How to increase scrollback for FreeBSD-4.10? >> >> >> Greetings: >> >> I have a FBSD-4.10 system that I log into using PuTTY (on a Win2K >> workstation). I am able to set PuTTY's scrollback to 1200 lines. >> >> When I'm on the 4.10 box the scrollback is about 200 lines. >> If possible >> I'd like to set the scroll back to 600 lines or so (at least). >> >> Question: How do I increase the scrollback on 4.10? >> >> Note: The video card on the 4.10 box is a Voodoo3-2000 (16 Mb) card. >> >> I searched the FBSD mail archives going back to 2003 and >> could not find >> a single reference. I also googled and could not turn up anything >> specific to FBSD. >> >> Hints? >> >> Thanks, >> Michael > > kbdcontrol > Scroll Lock History While your system boots, probe messages scroll across the consoles screen so fast that you can not read them. Or when you list the contents of a large directory the same thing happens. The messages may have scrolled off your screen, but they are still in the screen buffer. You can redisplay the messages from the screen buffer. You hit the keyboard 'scroll lock' button, (IE: top row right side) and then use the keyboard up arrow button to scroll back through the screen buffer to redisplay the message lines. The 'page up' and 'page down' buttons also work to move backward and forwards through the screen buffer one full screen page at a time. Hit the 'scroll lock' button again when you are finished to return to the command line prompt. The default size of the screen buffer is to small to contain all the boot messages, so it should be increased to 200 lines. This is how you increase the size of the screen buffer. Add the -h 200 option onto the allscreens_flags= statement you already added to the /etc/rc.conf file ee /etc/rc.conf and add this statement, allscreens_flags="–h 200" # -h size of scroll lock buffer in number of lines Save the changed file and ‘reboot’ your system for your edit changes to take effect. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:44:29 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 664CB16A4CE for ; Mon, 16 Aug 2004 14:44:29 +0000 (GMT) Received: from gblinux.omniresources.com (host-69-48-112-132.mil.choiceone.net [69.48.112.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 640E843D55 for ; Mon, 16 Aug 2004 14:44:28 +0000 (GMT) (envelope-from dpoland@omniresources.com) Received: from 5x2822.omniresources.com (5x2822.omniresources.com [192.168.254.149])i7GEM0P7017815; Mon, 16 Aug 2004 09:22:00 -0500 (CDT) (envelope-from dpoland@atwdev.omniresources.com) Received: from 5x2822.omniresources.com (localhost [127.0.0.1]) i7GEM0Ik085702; Mon, 16 Aug 2004 09:22:00 -0500 (CDT) (envelope-from dpoland@5x2822.omniresources.com) Received: (from dpoland@localhost)i7GELxOD085688; Mon, 16 Aug 2004 09:21:59 -0500 (CDT) (envelope-from dpoland) Date: Mon, 16 Aug 2004 09:21:59 -0500 From: doug@polands.org To: Matthew Seaman , Mike , freebsd-questions Message-ID: <20040816142132.GD85541@omniresources.com> References: <4120BDA1.7030700@pacbell.net> <20040816140930.GA84216@happy-idiot-talk.infracaninophile.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040816140930.GA84216@happy-idiot-talk.infracaninophile.co.uk> User-Agent: Mutt/1.4.2.1i Subject: Re: How to increase scrollback for FreeBSD-4.10? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:44:29 -0000 On Mon, Aug 16, 2004 at 03:09:30PM +0100, Matthew Seaman wrote: > On Mon, Aug 16, 2004 at 06:58:57AM -0700, Mike wrote: > > > When I'm on the 4.10 box the scrollback is about 200 lines. If possible > > I'd like to set the scroll back to 600 lines or so (at least). > > > > Question: How do I increase the scrollback on 4.10? > > That depends on the console program you're using. For an xterm(1), > the following in ~/.Xdefaults will give you 8k scrollback lines: > > xterm*saveLines: 8192 > > (Remember to run '/usr/X11R6/bin/xrdb -merge ${HOME}/.Xdefaults' out > of .xsession or .xinit so that gets set every time you log in) > > For the system console, you'll need to play with the syscons(4) > history size. Modify your kernel configuration to set > > options SC_HISTORY_SIZE=N > > where N is the number of lines of scroll back you want (default 100). > Then build and install a new kernel in the usual way: > xterm like programs allow the -sl switch lines. I've had problems with numbers approaching 32767 but have never nailed down exactly how many lines I can save. I safely use -sl 30000 for xterm, rxvt, aterm, and gnome-terminal. This would be an excellent topic to include in the fortune file: freebsd-tips -- Regards, Doug From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:51:09 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F387D16A4CE for ; Mon, 16 Aug 2004 14:51:08 +0000 (GMT) Received: from ms-smtp-03-eri0.ohiordc.rr.com (ms-smtp-03-smtplb.ohiordc.rr.com [65.24.5.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E9FD43D1D for ; Mon, 16 Aug 2004 14:51:08 +0000 (GMT) (envelope-from dmehler26@woh.rr.com) Received: from satellite (dhcp065-031-041-029.woh.rr.com [65.31.41.29]) i7GEp5Vd027403 for ; Mon, 16 Aug 2004 10:51:06 -0400 (EDT) Message-ID: <001101c4839f$0816fee0$0200a8c0@satellite> From: "dave" To: Date: Mon, 16 Aug 2004 10:40:52 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: subversion on 5.x X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:51:09 -0000 Hello, I'm trying to install subversion on a 5.x box. I've got a current ports tree and running perl 5.85. I've tried: make WITH_PERL=yes WITH_APACHE2_APR=yes install clean because i want to be able to access subversion via the apache web server interface. I'm getting an error: /usr/ports/devel/subversion/work/subversion-1.0.6/subversion/bindings/swig/s wigutil_pl.c:1073: warning: data definition has no type or storage class then an error code 1 and the process aborts. Any help appreciated. Thanks. Dave. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:57:53 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20F8816A4CE for ; Mon, 16 Aug 2004 14:57:53 +0000 (GMT) Received: from lakermmtao04.cox.net (lakermmtao04.cox.net [68.230.240.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66D1943D2D for ; Mon, 16 Aug 2004 14:57:52 +0000 (GMT) (envelope-from jacoulter@jacoulter.net) Received: from [68.105.58.150] by lakermmtao04.cox.net (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709) with SMTP id <20040816145752.WYKH5215.lakermmtao04.cox.net@[68.105.58.150]>; Mon, 16 Aug 2004 10:57:52 -0400 Received: by _HOSTNAME_ (sSMTP sendmail emulation); Mon, 16 Aug 2004 09:57:37 -0500 From: "James A. Coulter" Date: Mon, 16 Aug 2004 09:57:37 -0500 To: freebsd-questions@freebsd.org Message-ID: <20040816145737.GA3924@sara.mshome.net> Mail-Followup-To: freebsd-questions@freebsd.org, jacoulter@jacoulter.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i cc: jacoulter@jacoulter.net Subject: Security question - uids of 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:57:53 -0000 The following appeared in my latest daily security run output: Checking for uids of 0: root 0 toor 0 This is the first time I've seen this message. I checked /etc/passwd and found this: root:*:0:0:Charlie &:/root:/bin/csh toor:*:0:0:Bourne-again Superuser:/root: I am running FreeBSD 4.10 as a gateway/router/firewall with IPFW for a small home LAN. I ran ps -aux and looked for any processes owned by "toor" but didn't find any. Is this something to be concerned about? Sorry if this is an obvious question, but I am still very much a newbie and trying to learn what I can about security. Thanks for your patience, Jim From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 14:58:21 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3C6316A4CE for ; Mon, 16 Aug 2004 14:58:20 +0000 (GMT) Received: from eastgate.starhub.net.sg (eastgate.starhub.net.sg [203.116.1.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14A3743D4C for ; Mon, 16 Aug 2004 14:58:20 +0000 (GMT) (envelope-from pryan@singnet.com.sg) Received: from DellDual (cm124.sigma234.maxonline.com.sg [218.212.234.124]) i7GEw3JS026580; Mon, 16 Aug 2004 22:58:10 +0800 (SST) Message-Id: <200408161458.i7GEw3JS026580@eastgate.starhub.net.sg> From: "Peter Ryan" To: , , Date: Mon, 16 Aug 2004 22:57:24 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 In-Reply-To: Thread-Index: AcSDnegUcgZavwP1TFSUEjhfxFpFKAAAlhxA Subject: RE: 4.10 Install failure. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: pryan@singnet.com.sg List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:58:21 -0000 > > Hey All, > > > > I am havign some trouble installing FreeBSD 4.10 on my PC. I > > downloaded an ISO image (and verified the checksum) from the > Canadian > > FreeBSD FTP site. After burning the image to CD, I checked the > > checksums, which were the same. > > > > When I put the CD in the drive and attempt to boot from it, I just > get > > a register dump and the computer halts. I have just got over a similar painful learning experience. I made a dumb mistake that might help you. I first just burnt the ISO file to a CD like I would any other file. (I had no idea what an ISO image was :)) After i discovered that you need special software to burn an ISO image, I downloaded the trial version of UltraISO software. It wanted to use Nero Burning ROM to actually do the burn. Once I had these 2 bits of software installed, I could actually use the CD's I burnt. I also burnt CD's of the 2 flp images. I happened to use Sonic Record Now to do that, and there was a button I could press that read the flp image and created a bootable CD. (This was pretty useful because the floppy drive in the PC was unusable) Hope this helps Peter From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 15:01:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DBE116A4CE for ; Mon, 16 Aug 2004 15:01:48 +0000 (GMT) Received: from zephon.secspace.de (zephon.secspace.de [62.75.136.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB6EC43D45 for ; Mon, 16 Aug 2004 15:01:47 +0000 (GMT) (envelope-from ml@ps102.de) Received: from ariel.office.volker.de (pD9522D9B.dip.t-dialin.net [217.82.45.155]) by zephon.secspace.de (Postfix) with ESMTP id 30F506EB3B for ; Mon, 16 Aug 2004 17:01:44 +0200 (CEST) Date: Mon, 16 Aug 2004 17:01:51 +0200 From: Volker Kindermann To: freebsd-questions@freebsd.org Message-Id: <20040816170151.789d86c6@ariel.office.volker.de> In-Reply-To: <20040816145737.GA3924@sara.mshome.net> References: <20040816145737.GA3924@sara.mshome.net> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Security question - uids of 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:01:48 -0000 Hi James, > The following appeared in my latest daily security run output: > > Checking for uids of 0: > root 0 > toor 0 > > This is the first time I've seen this message. > > I checked /etc/passwd and found this: > > root:*:0:0:Charlie &:/root:/bin/csh > toor:*:0:0:Bourne-again Superuser:/root: > > I am running FreeBSD 4.10 as a gateway/router/firewall with IPFW for a > small home LAN. > > I ran ps -aux and looked for any processes owned by "toor" but didn't > find any. did you install bash? Normally, the bash from ports or packages will install the "toor" account so you don't have to change root's shell. If you installed bash then there's nothing to worry about this entry. If you don't need it, just use vipw and delete it. -volker From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 15:03:51 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4102416A4CE for ; Mon, 16 Aug 2004 15:03:51 +0000 (GMT) Received: from web14107.mail.yahoo.com (web14107.mail.yahoo.com [216.136.172.137]) by mx1.FreeBSD.org (Postfix) with SMTP id 0FE1343D39 for ; Mon, 16 Aug 2004 15:03:51 +0000 (GMT) (envelope-from k_greenwood1@yahoo.com) Message-ID: <20040816150350.91158.qmail@web14107.mail.yahoo.com> Received: from [209.105.201.44] by web14107.mail.yahoo.com via HTTP; Mon, 16 Aug 2004 08:03:50 PDT Date: Mon, 16 Aug 2004 08:03:50 -0700 (PDT) From: "K. Greenwood" To: Aaron Myles Landwehr , questions@freebsd.org In-Reply-To: <4120C1CE.5030404@snaphat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: nirv199@yahoo.com Subject: Re: freebsd's gallery X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:03:51 -0000 --- Aaron Myles Landwehr wrote: > K. Greenwood wrote: > > >While I certainly do not mean it to be as abrasive > as > > > > > >the site proclaims (I am not saying that you are > >either an idiot, nor stupid)... google is good. > > > >http://www.justfuckinggoogleit.com/search?query=gallery&as_sitesearch=freebsd.org > > > >Good luck. > > > > > If you are going post on the list then please > refrain from attempting to > insult others; otherwise, don't post. > -aaron myles landwehr Aaron. I appreciate your concern... and I certainly intended no offense as stated prior, by the following: >While I certainly do not mean it to be as abrasive as >the site proclaims (I am not saying that you are >either an idiot, nor stupid)... google is good. Paulo... if I did not emphasize that enough, and you were offended, I am sorry. I did not mean to imply that you are either "dumb", "an idiot", or "stupid". Once again, if you took offense, I do apologise. __________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 15:07:56 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E025016A4CE for ; Mon, 16 Aug 2004 15:07:56 +0000 (GMT) Received: from mymail.netmagicians.com (mymail.netmagicians.com [202.87.39.126]) by mx1.FreeBSD.org (Postfix) with SMTP id 6504F43D1F for ; Mon, 16 Aug 2004 15:07:55 +0000 (GMT) (envelope-from sid@netmagicsolutions.com) Received: (qmail 7932 invoked from network); 16 Aug 2004 15:22:25 -0000 Received: from sid@netmagicsolutions.com by netmagicsolutions.com by uid 504 with qmail-scanner-1.16 (uvscan: v4.3.20/v4100. Clear:. Processed in 0.806573 secs); 16 Aug 2004 15:22:25 -0000 Received: from intra.netmagicsolutions.com (HELO ?10.1.1.161?) (202.87.39.242) by mymail.netmagicians.com with SMTP; 16 Aug 2004 15:22:24 -0000 Message-ID: <4120CDCD.9040202@netmagicsolutions.com> Date: Mon, 16 Aug 2004 20:37:57 +0530 From: Siddhartha Jain User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20040816145737.GA3924@sara.mshome.net> In-Reply-To: <20040816145737.GA3924@sara.mshome.net> X-Enigmail-Version: 0.84.2.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Security question - uids of 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:07:57 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 James A. Coulter wrote: | The following appeared in my latest daily security run output: | | Checking for uids of 0: | root 0 | toor 0 | | This is the first time I've seen this message. | | I checked /etc/passwd and found this: | | root:*:0:0:Charlie &:/root:/bin/csh | toor:*:0:0:Bourne-again Superuser:/root: | | I am running FreeBSD 4.10 as a gateway/router/firewall with IPFW for a small | home LAN. | | I ran ps -aux and looked for any processes owned by "toor" but didn't find any. | | Is this something to be concerned about? | | Sorry if this is an obvious question, but I am still very much a newbie | and trying to learn what I can about security. http://freebsd.active-venture.com/faq/security.html#TOOR-ACCOUNT - -- Siddhartha Jain (CISSP) Consulting Engineer Netmagic Solutions Pvt Ltd Bombay - 400063 Phone: +91-22-26850001 Ext.128 Fax : +91-22-26850002 http://www.netmagicsolutions.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBIM3MOGaxOP7knVwRAv1HAJ4+/67fLaZbpgR3U25vy9xGMLtelQCeKhdO iTuVWEHFhbH/n+1tXxNIYFY= =RBsX -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 15:08:56 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C238E16A4D0 for ; Mon, 16 Aug 2004 15:08:56 +0000 (GMT) Received: from ddardaar.mine.nu (bwo182.neoplus.adsl.tpnet.pl [83.29.238.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 689FE43D39 for ; Mon, 16 Aug 2004 15:08:56 +0000 (GMT) (envelope-from radek@raadradd.com) Received: by ddardaar.mine.nu (Postfix, from userid 1001) id D9276A526; Mon, 16 Aug 2004 17:09:00 +0200 (CEST) Date: Mon, 16 Aug 2004 17:09:00 +0200 From: Radek Kozlowski To: freebsd-questions@freebsd.org, jacoulter@jacoulter.net Message-ID: <20040816150900.GC39290@werd> References: <20040816145737.GA3924@sara.mshome.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline In-Reply-To: <20040816145737.GA3924@sara.mshome.net> User-Agent: Mutt/1.5.6i Subject: Re: Security question - uids of 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:08:56 -0000 On Mon, Aug 16, 2004 at 09:57:37AM -0500, James A. Coulter wrote: > The following appeared in my latest daily security run output: > > Checking for uids of 0: > root 0 > toor 0 > > This is the first time I've seen this message. > > I checked /etc/passwd and found this: > > root:*:0:0:Charlie &:/root:/bin/csh > toor:*:0:0:Bourne-again Superuser:/root: > > I am running FreeBSD 4.10 as a gateway/router/firewall with IPFW for a small > home LAN. > > I ran ps -aux and looked for any processes owned by "toor" but didn't find any. > > Is this something to be concerned about? > > Sorry if this is an obvious question, but I am still very much a newbie > and trying to learn what I can about security. > > Thanks for your patience, http://www.freebsd.org/doc/faq/security.html#TOOR-ACCOUNT -Radek From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 15:09:07 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29FB916A4EC for ; Mon, 16 Aug 2004 15:09:07 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC10543D41 for ; Mon, 16 Aug 2004 15:09:06 +0000 (GMT) (envelope-from tparrott@gmail.com) Received: by mproxy.gmail.com with SMTP id 80so100741rnk for ; Mon, 16 Aug 2004 08:09:02 -0700 (PDT) Received: by 10.38.206.50 with SMTP id d50mr1268239rng; Mon, 16 Aug 2004 08:09:02 -0700 (PDT) Message-ID: <8550301b04081608095d39c518@mail.gmail.com> Date: Mon, 16 Aug 2004 11:09:02 -0400 From: Tyler Parrott To: pryan@singnet.com.sg In-Reply-To: <200408161458.i7GEw3JS026580@eastgate.starhub.net.sg> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <200408161458.i7GEw3JS026580@eastgate.starhub.net.sg> cc: tyler@boardom.ca cc: barbish3@adelphia.net cc: freebsd-questions@freebsd.org Subject: Re: 4.10 Install failure. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: tyler@boardom.ca List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:09:07 -0000 Hey Guys, The CD's both have valid data structures (i.e. directories, etc...). I'm positive that I burnt the image correctly, as it's not just an .ISO file and the checksums check out correctly. I checked for the options in the BIOD but they're not there. The BIOS is "Compaq Computer Corporation Setup Ultility" Any other ideas as to what I might try? Thanks Tyler On Mon, 16 Aug 2004 22:57:24 +0800, Peter Ryan wrote: > > > > > Hey All, > > > > > > I am havign some trouble installing FreeBSD 4.10 on my PC. I > > > downloaded an ISO image (and verified the checksum) from the > > Canadian > > > FreeBSD FTP site. After burning the image to CD, I checked the > > > checksums, which were the same. > > > > > > When I put the CD in the drive and attempt to boot from it, I just > > get > > > a register dump and the computer halts. > > > I have just got over a similar painful learning experience. > I made a dumb mistake that might help you. I first just burnt the > ISO file to a CD like I would any other file. (I had no idea what > an ISO image was :)) > > After i discovered that you need special software to burn > an ISO image, I downloaded the trial version of UltraISO > software. It wanted to use Nero Burning ROM to actually > do the burn. Once I had these 2 bits of software installed, > I could actually use the CD's I burnt. > > I also burnt CD's of the 2 flp images. I happened to use Sonic > Record Now to do that, and there was a button I could press > that read the flp image and created a bootable CD. > > (This was pretty useful because the floppy drive in the PC > was unusable) > > Hope this helps > Peter > > From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 15:15:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B9A716A4CE for ; Mon, 16 Aug 2004 15:15:42 +0000 (GMT) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86C6C43D1F for ; Mon, 16 Aug 2004 15:15:41 +0000 (GMT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.11.7p1+Sun/8.11.7) id i7GFFXC28813; Mon, 16 Aug 2004 11:15:33 -0400 (EDT) From: Jerry McAllister Message-Id: <200408161515.i7GFFXC28813@clunix.cl.msu.edu> To: jacoulter@jacoulter.net (James A. Coulter) Date: Mon, 16 Aug 2004 11:15:30 -0400 (EDT) In-Reply-To: <20040816145737.GA3924@sara.mshome.net> from "James A. Coulter" at Aug 16, 2004 09:57:37 AM X-Mailer: ELM [version 2.5 PL2] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: jacoulter@jacoulter.net cc: freebsd-questions@freebsd.org Subject: Re: Security question - uids of 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:15:42 -0000 > > The following appeared in my latest daily security run output: > > Checking for uids of 0: > root 0 > toor 0 > > This is the first time I've seen this message. > > I checked /etc/passwd and found this: > > root:*:0:0:Charlie &:/root:/bin/csh > toor:*:0:0:Bourne-again Superuser:/root: > > I am running FreeBSD 4.10 as a gateway/router/firewall with IPFW for a small > home LAN. > > I ran ps -aux and looked for any processes owned by "toor" but didn't find any. > > Is this something to be concerned about? No. It is normal. It is one of the normal accounts put there in a standard install. It is essentially a root account by another name. Some things used to like to use it to own their installed stuff but avoid using root directly. I don't know if anything really does that any more. I sometimes use it as a model pw entry when in vipw for creating new accounts directly to help avoid missing a field. > > Sorry if this is an obvious question, but I am still very much a newbie > and trying to learn what I can about security. This has been brought up and answered numerous times in the past. You might try and search for information on toor account. You should be able to find something. ////jerry > > Thanks for your patience, > > Jim > _______________________________________________ > 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 Aug 16 15:18:24 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 415FA16A4CF for ; Mon, 16 Aug 2004 15:18:24 +0000 (GMT) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id E11CD43D45 for ; Mon, 16 Aug 2004 15:18:23 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.11/8.12.11) id i7GFI4F7076528; Mon, 16 Aug 2004 10:18:04 -0500 (CDT) (envelope-from dan) Date: Mon, 16 Aug 2004 10:18:04 -0500 From: Dan Nelson To: Ruben de Groot , Kevin Stevens , Bill Moran , Remko Lodder , freebsd-questions@freebsd.org Message-ID: <20040816151804.GI73391@dan.emsphone.com> References: <200408151429.05110.aaron@daltons.ca> <20040815170806.45fcb779.wmoran@potentialtech.com> <200408151603.26022.aaron@daltons.ca> <411FE2E9.1090704@elvandar.org> <20040815183205.66b753cd.wmoran@potentialtech.com> <688492D4-EF2F-11D8-9CD1-000A959CEE6A@pursued-with.net> <20040816122400.GA81160@ei.bzerk.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040816122400.GA81160@ei.bzerk.org> X-OS: FreeBSD 5.2-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.6i Subject: Re: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:18:24 -0000 In the last episode (Aug 16), Ruben de Groot said: > On Sun, Aug 15, 2004 at 07:53:10PM -0700, Kevin Stevens typed: > > A lot of network scanners also trigger on NICS in promiscuous mode > > (there's a way to detect them, I forget the details at the moment) > > because admins want to know if any hosts are out there sniffing. > > How sure are you about that? AFAIK there's no way to detect a NIC in > promiscuous mode *from the outside*. I would be very interested in a > network scanner that could. The basic points are that since the kernel sees packets it usually doesn't, there may be codepaths that incorrectly process certain packets and send replies. There's also a small delay in processing all those extra packets that might be seen as extra latency in pings etc. As CPUs get faster and kernel bugs get fixed, these become harder and harder to detect. Do a web or usenet search for "detect promiscuous mode" for lots and lots of links. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 15:19:57 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4E5C16A4CE for ; Mon, 16 Aug 2004 15:19:57 +0000 (GMT) Received: from cathy.bmts.com (cathy.bmts.com [216.183.128.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28DE543D46 for ; Mon, 16 Aug 2004 15:19:57 +0000 (GMT) (envelope-from rhempel@bmts.com) Received: from PC300GL (cheetah-bar-ppp036.bmts.com [216.183.159.37]) by cathy.bmts.com (8.12.10/8.12.10) with SMTP id i7GFKph6013663 for ; Mon, 16 Aug 2004 11:20:52 -0400 (EDT) From: "Ralph Hempel" To: Date: Mon, 16 Aug 2004 11:23:08 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <200408161458.i7GEw3JS026580@eastgate.starhub.net.sg> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4927.1200 Importance: Normal X-bmts-MailScanner: Found to be clean X-bmts-MailScanner-SpamCheck: X-MailScanner-From: rhempel@bmts.com Subject: RE: 4.10 Install failure. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: rhempel@bmts.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:19:57 -0000 > > > I am havign some trouble installing FreeBSD 4.10 on my PC. I > > > downloaded an ISO image (and verified the checksum) from the > > Canadian > > > FreeBSD FTP site. After burning the image to CD, I checked the > > > checksums, which were the same. > > > > > > When I put the CD in the drive and attempt to boot from it, I just > > get > > > a register dump and the computer halts. > > > I have just got over a similar painful learning experience. > I made a dumb mistake that might help you. I first just burnt the > ISO file to a CD like I would any other file. (I had no idea what > an ISO image was :)) > > After i discovered that you need special software to burn > an ISO image, I downloaded the trial version of UltraISO > software. It wanted to use Nero Burning ROM to actually > do the burn. Once I had these 2 bits of software installed, > I could actually use the CD's I burnt. Unless you have a crippled version of Nero, it will let you burn ISO images. You don't need UltraISO. Just cancel the stupid wizard at startup and choose File/BurnImage from the main Nero window. > I also burnt CD's of the 2 flp images. I happened to use Sonic > Record Now to do that, and there was a button I could press > that read the flp image and created a bootable CD. Also unnecessary. Nero lets you choose CDROM(boot) if you select File/New from the main menu. Just point it to the floppy image you want to burn and you are good to go. Ralph From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 15:33:28 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7D6716A4CE for ; Mon, 16 Aug 2004 15:33:28 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76DB443D31 for ; Mon, 16 Aug 2004 15:33:28 +0000 (GMT) (envelope-from tparrott@gmail.com) Received: by mproxy.gmail.com with SMTP id 80so101688rnk for ; Mon, 16 Aug 2004 08:33:27 -0700 (PDT) Received: by 10.38.206.39 with SMTP id d39mr800826rng; Mon, 16 Aug 2004 08:33:27 -0700 (PDT) Message-ID: <8550301b040816083348caeb19@mail.gmail.com> Date: Mon, 16 Aug 2004 11:33:27 -0400 From: Tyler Parrott To: rhempel@bmts.com In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: cc: freebsd-questions@freebsd.org Subject: Re: 4.10 Install failure. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: tyler@boardom.ca List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:33:29 -0000 After reading that, I think it might be possible that I burnt the images correctly, but I simply did not make the CD's bootable. I was using k3b to burn the images, but I might just have a go at it with Nero. Thanks! On Mon, 16 Aug 2004 11:23:08 -0400, Ralph Hempel wrote: > > > > > I am havign some trouble installing FreeBSD 4.10 on my PC. I > > > > downloaded an ISO image (and verified the checksum) from the > > > Canadian > > > > FreeBSD FTP site. After burning the image to CD, I checked the > > > > checksums, which were the same. > > > > > > > > When I put the CD in the drive and attempt to boot from it, I just > > > get > > > > a register dump and the computer halts. > > > > > > I have just got over a similar painful learning experience. > > I made a dumb mistake that might help you. I first just burnt the > > ISO file to a CD like I would any other file. (I had no idea what > > an ISO image was :)) > > > > After i discovered that you need special software to burn > > an ISO image, I downloaded the trial version of UltraISO > > software. It wanted to use Nero Burning ROM to actually > > do the burn. Once I had these 2 bits of software installed, > > I could actually use the CD's I burnt. > > Unless you have a crippled version of Nero, it will let you burn > ISO images. You don't need UltraISO. Just cancel the stupid > wizard at startup and choose File/BurnImage from the main > Nero window. > > > I also burnt CD's of the 2 flp images. I happened to use Sonic > > Record Now to do that, and there was a button I could press > > that read the flp image and created a bootable CD. > > Also unnecessary. Nero lets you choose CDROM(boot) if you select > File/New from the main menu. Just point it to the floppy image > you want to burn and you are good to go. > > Ralph > > > _______________________________________________ > 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 Aug 16 15:37:22 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3AAE16A4CE for ; Mon, 16 Aug 2004 15:37:21 +0000 (GMT) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70D1E43D1D for ; Mon, 16 Aug 2004 15:37:21 +0000 (GMT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.11.7p1+Sun/8.11.7) id i7GFamA28975; Mon, 16 Aug 2004 11:36:48 -0400 (EDT) From: Jerry McAllister Message-Id: <200408161536.i7GFamA28975@clunix.cl.msu.edu> To: tyler@boardom.ca Date: Mon, 16 Aug 2004 11:36:47 -0400 (EDT) In-Reply-To: <8550301b040816083348caeb19@mail.gmail.com> from "Tyler Parrott" at Aug 16, 2004 11:33:27 AM X-Mailer: ELM [version 2.5 PL2] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: rhempel@bmts.com cc: freebsd-questions@freebsd.org Subject: Re: 4.10 Install failure. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:37:22 -0000 > > After reading that, I think it might be possible that I burnt the > images correctly, but I simply did not make the CD's bootable. I was > using k3b to burn the images, but I might just have a go at it with > Nero. Thanks! The CD image that you download from the FreeBSD site is already a bootable ISO. It needs to be written to the CD as a raw file and not converted or processed in any way. It should not be put in a file system on the CD or processed to be bootable, or etc. It is already a complete CD image. ////jerry > > On Mon, 16 Aug 2004 11:23:08 -0400, Ralph Hempel wrote: > > > > > > > I am havign some trouble installing FreeBSD 4.10 on my PC. I > > > > > downloaded an ISO image (and verified the checksum) from the > > > > Canadian > > > > > FreeBSD FTP site. After burning the image to CD, I checked the > > > > > checksums, which were the same. > > > > > > > > > > When I put the CD in the drive and attempt to boot from it, I just > > > > get > > > > > a register dump and the computer halts. > > > > > > > > > I have just got over a similar painful learning experience. > > > I made a dumb mistake that might help you. I first just burnt the > > > ISO file to a CD like I would any other file. (I had no idea what > > > an ISO image was :)) > > > > > > After i discovered that you need special software to burn > > > an ISO image, I downloaded the trial version of UltraISO > > > software. It wanted to use Nero Burning ROM to actually > > > do the burn. Once I had these 2 bits of software installed, > > > I could actually use the CD's I burnt. > > > > Unless you have a crippled version of Nero, it will let you burn > > ISO images. You don't need UltraISO. Just cancel the stupid > > wizard at startup and choose File/BurnImage from the main > > Nero window. > > > > > I also burnt CD's of the 2 flp images. I happened to use Sonic > > > Record Now to do that, and there was a button I could press > > > that read the flp image and created a bootable CD. > > > > Also unnecessary. Nero lets you choose CDROM(boot) if you select > > File/New from the main menu. Just point it to the floppy image > > you want to burn and you are good to go. > > > > Ralph > > > > > > _______________________________________________ > > 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 Mon Aug 16 15:43:13 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBE0D16A4CE for ; Mon, 16 Aug 2004 15:43:12 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91D5643D3F for ; Mon, 16 Aug 2004 15:43:12 +0000 (GMT) (envelope-from tparrott@gmail.com) Received: by mproxy.gmail.com with SMTP id v18so73295rnb for ; Mon, 16 Aug 2004 08:43:11 -0700 (PDT) Received: by 10.38.8.67 with SMTP id 67mr1275454rnh; Mon, 16 Aug 2004 08:43:11 -0700 (PDT) Message-ID: <8550301b040816084311805b30@mail.gmail.com> Date: Mon, 16 Aug 2004 11:43:10 -0400 From: Tyler Parrott To: Jerry McAllister In-Reply-To: <200408161536.i7GFamA28975@clunix.cl.msu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <200408161536.i7GFamA28975@clunix.cl.msu.edu> cc: rhempel@bmts.com cc: tyler@boardom.ca cc: freebsd-questions@freebsd.org Subject: Re: 4.10 Install failure. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: tyler@boardom.ca List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:43:13 -0000 Yeah, right after I sent that email I read about the image already being bootable. I supposed I should do my homework before making my posts:) Anyways, the image is burnt correctly, so I'm back to where I started with no idea how to move forward... On Mon, 16 Aug 2004 11:36:47 -0400 (EDT), Jerry McAllister wrote: > > > > After reading that, I think it might be possible that I burnt the > > images correctly, but I simply did not make the CD's bootable. I was > > using k3b to burn the images, but I might just have a go at it with > > Nero. Thanks! > > The CD image that you download from the FreeBSD site is already a > bootable ISO. It needs to be written to the CD as a raw file and > not converted or processed in any way. It should not be put in a > file system on the CD or processed to be bootable, or etc. It is > already a complete CD image. > > ////jerry > > > > > > > On Mon, 16 Aug 2004 11:23:08 -0400, Ralph Hempel wrote: > > > > > > > > > I am havign some trouble installing FreeBSD 4.10 on my PC. I > > > > > > downloaded an ISO image (and verified the checksum) from the > > > > > Canadian > > > > > > FreeBSD FTP site. After burning the image to CD, I checked the > > > > > > checksums, which were the same. > > > > > > > > > > > > When I put the CD in the drive and attempt to boot from it, I just > > > > > get > > > > > > a register dump and the computer halts. > > > > > > > > > > > > I have just got over a similar painful learning experience. > > > > I made a dumb mistake that might help you. I first just burnt the > > > > ISO file to a CD like I would any other file. (I had no idea what > > > > an ISO image was :)) > > > > > > > > After i discovered that you need special software to burn > > > > an ISO image, I downloaded the trial version of UltraISO > > > > software. It wanted to use Nero Burning ROM to actually > > > > do the burn. Once I had these 2 bits of software installed, > > > > I could actually use the CD's I burnt. > > > > > > Unless you have a crippled version of Nero, it will let you burn > > > ISO images. You don't need UltraISO. Just cancel the stupid > > > wizard at startup and choose File/BurnImage from the main > > > Nero window. > > > > > > > I also burnt CD's of the 2 flp images. I happened to use Sonic > > > > Record Now to do that, and there was a button I could press > > > > that read the flp image and created a bootable CD. > > > > > > Also unnecessary. Nero lets you choose CDROM(boot) if you select > > > File/New from the main menu. Just point it to the floppy image > > > you want to burn and you are good to go. > > > > > > Ralph > > > > > > > > > _______________________________________________ > > > 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 Mon Aug 16 15:44:47 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17EB916A4CF for ; Mon, 16 Aug 2004 15:44:47 +0000 (GMT) Received: from phantom.chiptech.com (phantom.chiptech.com [69.41.161.32]) by mx1.FreeBSD.org (Postfix) with SMTP id 51EE643D1D for ; Mon, 16 Aug 2004 15:44:46 +0000 (GMT) (envelope-from freebsd-questions@jc-news.com) Received: (qmail 50959 invoked from network); 16 Aug 2004 15:44:42 -0000 Received: from unknown (HELO ?192.168.0.10?) (64.115.119.58) by 0 with SMTP; 16 Aug 2004 15:44:42 -0000 Message-ID: <4120D6FA.5010702@jc-news.com> Date: Mon, 16 Aug 2004 11:47:06 -0400 From: John Cholewa User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.1) Gecko/20040707 MultiZilla/1.6.4.0b X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Any problems with php 4.3.8_2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:44:47 -0000 Hi, I upgraded the php4 port on this 4.8-RELEASE box to 4.3.8_2. I'm also using apache+mod_ssl-1.3.31+2.8.19. When the lines LoadModule php4_module libexec/apache/libphp4.so AddModule mod_php4.c are uncommented, apache segfaults on startup. We're not in a position to upgrade to a newer version of FreeBSD, given that this box is a thousand miles away from us and I, being a novice in many respects, am considered the unquestioned unix/bsd/etc expert in this company (sadly, I wear too many hats for my employers to become genuinely experienced in any one thing). I read in a recent post that installing php5 seems to be something that you install *instead* of "mod_php5 and "php5-cli". Does the same apply for php4? I ask because I have "mod_php4-4.3.8_2,1", "php4-4.3.8_2" and "php4-cli-4.3.8_2" installed here (as listed in "/var/db/pkg", all installed from ports) Has anything simlar to what I've described been reported with newer versions of php? Might I have installed conflicting packages? Any suggestions will be welcomed. :) -- -JC From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 15:53:24 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A484F16A4CE for ; Mon, 16 Aug 2004 15:53:24 +0000 (GMT) Received: from aiolos.otenet.gr (aiolos.otenet.gr [195.170.0.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CA6643D2F for ; Mon, 16 Aug 2004 15:52:13 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])i7GFpZFi016739; Mon, 16 Aug 2004 18:52:10 +0300 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) i7GFpVf1007174; Mon, 16 Aug 2004 18:51:31 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost)i7GFpSNb007173; Mon, 16 Aug 2004 18:51:28 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Mon, 16 Aug 2004 18:51:28 +0300 From: Giorgos Keramidas To: doug@polands.org Message-ID: <20040816155128.GB7099@orion.daedalusnetworks.priv> References: <4120BDA1.7030700@pacbell.net> <20040816140930.GA84216@happy-idiot-talk.infracaninophile.co.uk> <20040816142132.GD85541@omniresources.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040816142132.GD85541@omniresources.com> cc: Mike cc: freebsd-questions Subject: Re: How to increase scrollback for FreeBSD-4.10? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 15:53:24 -0000 On 2004-08-16 09:21, doug@polands.org wrote: > On Mon, Aug 16, 2004 at 03:09:30PM +0100, Matthew Seaman wrote: > > On Mon, Aug 16, 2004 at 06:58:57AM -0700, Mike wrote: > > > When I'm on the 4.10 box the scrollback is about 200 lines. If > > > possible I'd like to set the scroll back to 600 lines or so > > > (at least). > > > > > > Question: How do I increase the scrollback on 4.10? > > > > That depends on the console program you're using. For an xterm(1), > > the following in ~/.Xdefaults will give you 8k scrollback lines: > > > > xterm*saveLines: 8192 > > xterm like programs allow the -sl switch lines. I've had problems with > numbers approaching 32767 but have never nailed down exactly how many > lines I can save. I safely use -sl 30000 for xterm, rxvt, aterm, and > gnome-terminal. I use screen most of the time in my terminal sessions, which also includes a nice option for scrollback. Putting the following in my ~/.screenrc file works like a charm: defscrollback 10000 This is IMHO a bit more preferable than using syscons scrollback, because syscons allocates memory inside the kernel for the scrollback buffer IIRC. I tend to prefer userspace allocations when possible, like the xterm -sl or screen's scrollback. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 16:08:43 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABACD16A4CE for ; Mon, 16 Aug 2004 16:08:43 +0000 (GMT) Received: from mtiwmhc11.worldnet.att.net (mtiwmhc11.worldnet.att.net [204.127.131.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1E6E43D39 for ; Mon, 16 Aug 2004 16:08:42 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc11) with ESMTP id <2004081616084111100bn7que> (Authid: jayobrien@att.net); Mon, 16 Aug 2004 16:08:42 +0000 Message-ID: <4120DC08.7060206@att.net> Date: Mon, 16 Aug 2004 09:08:40 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Matthew Seaman References: <41200C8D.8000907@att.net> <20040815215650.6dd9309d.wmoran@potentialtech.com> <4120289C.1090401@att.net> <20040816072948.GB79605@happy-idiot-talk.infracaninophile.co.uk> In-Reply-To: <20040816072948.GB79605@happy-idiot-talk.infracaninophile.co.uk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: FreeBSD - questions Subject: Re: root access to ftp, telnet -- CP/M? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 16:08:43 -0000 Matthew Seaman wrote: > > Eeek! You do realise you've just sent the root password across your > network in plain text? Maybe your network is completely secure and > you aren't running a risk by doing that, but on the whole it's a > really bad idea. Get into the habit of using ssh(1) routinely for > your own peace of mind, if nothing else. You can also replace ftp(1) > for many purposes by scp(1) or rsync(1) (from the net/rsync port), > both of which operate over ssh(1). > Matthew, Thanks for your concern. Once there is anything on the computer, I will certainly close those security holes. Right now it is only a means to learn about FreeBSD and document the steps necessary to build a machine that will fit my needs. I opened ftp and telnet access to root as a simple way to copy files to and from a windows computer and to control the FreeBSD computer from another location. I do plan to implement ssh, but first I must evaluate PuTTY and other alternatives. In the meantime, it is protected from the internet by a hardware router that doesn't forward any ports to the FreeBSD computer. There's so much to learn! This experience with FreeBSD takes me back to my days with CP/M and S-100 bus computers. Maybe if CP/M had been allowed to grow up, rather than be killed by DOS and Windows, it could have become CP/M-BSD? Jay O'Brien Rio Linda, CA USA From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 16:15:16 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4558516A4CE for ; Mon, 16 Aug 2004 16:15:16 +0000 (GMT) Received: from ispmxmta05-srv.alltel.net (ispmxmta05-srv.alltel.net [166.102.165.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A68B43D2F for ; Mon, 16 Aug 2004 16:15:15 +0000 (GMT) (envelope-from uidzero@one-arm.com) Received: from [192.168.1.2] (really [166.102.52.217]) by ispmxmta05-srv.alltel.net with ESMTP <20040816161514.OJSN17206.ispmxmta05-srv.alltel.net@[192.168.1.2]>; Mon, 16 Aug 2004 11:15:14 -0500 Message-ID: <4120DD71.40904@one-arm.com> Date: Mon, 16 Aug 2004 11:14:41 -0500 From: uidzero User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040807) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jay O'Brien , FreeBSD-Questions References: <41200C8D.8000907@att.net> <20040815215650.6dd9309d.wmoran@potentialtech.com> <4120289C.1090401@att.net> <20040816072948.GB79605@happy-idiot-talk.infracaninophile.co.uk> <4120DC08.7060206@att.net> In-Reply-To: <4120DC08.7060206@att.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: root access to ftp, telnet -- CP/M? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 16:15:16 -0000 Jay O'Brien wrote: >Matthew Seaman wrote: > > >>Eeek! You do realise you've just sent the root password across your >>network in plain text? Maybe your network is completely secure and >>you aren't running a risk by doing that, but on the whole it's a >>really bad idea. Get into the habit of using ssh(1) routinely for >>your own peace of mind, if nothing else. You can also replace ftp(1) >>for many purposes by scp(1) or rsync(1) (from the net/rsync port), >>both of which operate over ssh(1). >> >> >> >Matthew, >Thanks for your concern. Once there is anything on the computer, I >will certainly close those security holes. Right now it is only a >means to learn about FreeBSD and document the steps necessary to build >a machine that will fit my needs. I opened ftp and telnet access to >root as a simple way to copy files to and from a windows computer and >to control the FreeBSD computer from another location. I do plan to >implement ssh, but first I must evaluate PuTTY and other alternatives. > >In the meantime, it is protected from the internet by a hardware >router that doesn't forward any ports to the FreeBSD computer. > >There's so much to learn! This experience with FreeBSD takes me back >to my days with CP/M and S-100 bus computers. Maybe if CP/M had been >allowed to grow up, rather than be killed by DOS and Windows, it >could have become CP/M-BSD? > >Jay O'Brien >Rio Linda, CA USA > > >_______________________________________________ >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 use WinSCP from my Windows boxes to my servers. Enable ssh so that it allows root. It's secure. No need for ftp and telnet. Michael -- Michael D. Whities uidzero@one-arm.com http://www.one-arm.com -- There are four colors of hats to watch for: Black, White, Grey, and Red. The meanings are: Cracker, Hacker, Guru, and Victim. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 16:17:58 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D21D16A4CE for ; Mon, 16 Aug 2004 16:17:58 +0000 (GMT) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FCA543D41 for ; Mon, 16 Aug 2004 16:17:57 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) i7GGHkwU085953 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 16 Aug 2004 17:17:46 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)id i7GGHk3h085952; Mon, 16 Aug 2004 17:17:46 +0100 (BST) (envelope-from matthew) Date: Mon, 16 Aug 2004 17:17:45 +0100 From: Matthew Seaman To: John Cholewa Message-ID: <20040816161745.GA85600@happy-idiot-talk.infracaninophile.co.uk> Mail-Followup-To: Matthew Seaman , John Cholewa , freebsd-questions@freebsd.org References: <4120D6FA.5010702@jc-news.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="n8g4imXOkfNTN/H1" Content-Disposition: inline In-Reply-To: <4120D6FA.5010702@jc-news.com> User-Agent: Mutt/1.5.6i X-Greylist: Message not sent from an IPv4 address, not delayed by milter-greylist-1.5.3 (smtp.infracaninophile.co.uk [0.0.0.0]); Mon, 16 Aug 2004 17:17:46 +0100 (BST) X-Virus-Scanned: clamd / ClamAV version devel-20040705, clamav-milter version 0.74a on smtp.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, hits=-4.8 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on happy-idiot-talk.infracaninophile.co.uk cc: freebsd-questions@freebsd.org Subject: Re: Any problems with php 4.3.8_2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 16:17:58 -0000 --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 16, 2004 at 11:47:06AM -0400, John Cholewa wrote: > Hi, >=20 > I upgraded the php4 port on this 4.8-RELEASE box to 4.3.8_2. I'm also=20 > using apache+mod_ssl-1.3.31+2.8.19. >=20 > When the lines >=20 > LoadModule php4_module libexec/apache/libphp4.so > AddModule mod_php4.c >=20 > are uncommented, apache segfaults on startup. >=20 > We're not in a position to upgrade to a newer version of FreeBSD, given= =20 > that this box is a thousand miles away from us and I, being a novice in= =20 > many respects, am considered the unquestioned unix/bsd/etc expert in=20 > this company (sadly, I wear too many hats for my employers to become=20 > genuinely experienced in any one thing). >=20 > I read in a recent post that installing php5 seems to be something that= =20 > you install *instead* of "mod_php5 and "php5-cli". Does the same apply= =20 > for php4? I ask because I have "mod_php4-4.3.8_2,1", "php4-4.3.8_2" and= =20 > "php4-cli-4.3.8_2" installed here (as listed in "/var/db/pkg", all=20 > installed from ports) >=20 > Has anything simlar to what I've described been reported with newer=20 > versions of php? Might I have installed conflicting packages? Any=20 > suggestions will be welcomed. :) Hmmm... well, the structure of the php4 ports parallels the structure of the php5 ports, so yes you are correct that you shouldn't have all of the packages installed simultaneously. If you try and install that combination with an up to date ports tree it will complain: % cd /usr/ports/lang/php4 % make -V CONFLICTS php4-cli-4* mod_php4-4* php4-cgi-4* php5-5* php5-cli-5* mod_php5-5* php= 5-cgi-5* Unless you've been deliberately ignoring warnings, the only way you can end up with that sort of situation is by updating a system from before the CONFLICTS mechanism was introduced. Since the whole CONFLICTS thing is about not installing ports that all lay claim to various files, the symptom you see of PHP causing apache to segfault could well be a consequence. Another way in which you can get into trouble is to install a php *package* from the FTP sites: the package will have been compiled against the plain non-ssl version of apache, and that is significantly different internally to the mod_ssl version you're using. So long as you compile the php stuff yourself, everything should work OK with whatever version of apache you choose. I suggest that you deinstall all PHP related ports (anything with php or pecl in the name) and start again from scratch just installing the minimum that you need. With the new ports framework it's very easy to add extension modules, should you find that you need to. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --n8g4imXOkfNTN/H1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBIN4piD657aJF7eIRAgS+AKCYlWgqfIm/2K+h8YuPibTb/wOncQCfQKP3 /F1hUqv6llwhAFULJbQBwpw= =lpPX -----END PGP SIGNATURE----- --n8g4imXOkfNTN/H1-- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 16:19:28 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D80016A4CE for ; Mon, 16 Aug 2004 16:19:28 +0000 (GMT) Received: from cathy.bmts.com (cathy.bmts.com [216.183.128.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC94643D3F for ; Mon, 16 Aug 2004 16:19:27 +0000 (GMT) (envelope-from rhempel@bmts.com) Received: from PC300GL (cheetah-bar-ppp036.bmts.com [216.183.159.37]) by cathy.bmts.com (8.12.10/8.12.10) with SMTP id i7GGKoh6010450 for ; Mon, 16 Aug 2004 12:20:51 -0400 (EDT) From: "Ralph Hempel" Date: Mon, 16 Aug 2004 12:23:06 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4927.1200 In-Reply-To: <4120DC08.7060206@att.net> X-bmts-MailScanner: Found to be clean X-bmts-MailScanner-SpamCheck: X-MailScanner-From: rhempel@bmts.com cc: FreeBSD - questions Subject: RE: root access to ftp, telnet -- CP/M? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: rhempel@bmts.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 16:19:28 -0000 > Matthew, > Thanks for your concern. Once there is anything on the computer, I > will certainly close those security holes. Right now it is only a > means to learn about FreeBSD and document the steps necessary to build > a machine that will fit my needs. I opened ftp and telnet access to > root as a simple way to copy files to and from a windows computer and > to control the FreeBSD computer from another location. I do plan to > implement ssh, but first I must evaluate PuTTY and other alternatives. PuTTY works great! Here's a bit more info on my experience setting up a FreeBSD server and using PuTTY: Cheers, Ralph From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 16:28:22 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6107316A4CF for ; Mon, 16 Aug 2004 16:28:22 +0000 (GMT) Received: from dsl-mail.kamp.net (mail.kamp-dsl.de [195.62.99.42]) by mx1.FreeBSD.org (Postfix) with SMTP id 836FD43D49 for ; Mon, 16 Aug 2004 16:28:21 +0000 (GMT) (envelope-from root@pukruppa.de) Received: (qmail 25805 invoked by uid 513); 16 Aug 2004 16:31:21 -0000 Received: from root@pukruppa.de by dsl-mail by uid 89 with qmail-scanner-1.21 Clear:RC:1(213.146.114.24):SA:0(-4.9/5.0):. Processed in 2.688029 secs); 16 Aug 2004 16:31:21 -0000 X-Spam-Status: No, hits=-4.9 required=5.0 Received: from unknown (HELO reverse-213-146-114-24.dialin.kamp-dsl.de) (213.146.114.24) by dsl-mail.kamp.net with SMTP; 16 Aug 2004 16:31:18 -0000 Date: Mon, 16 Aug 2004 18:29:07 +0200 (CEST) From: Peter Ulrich Kruppa X-X-Sender: root@pukruppa.net To: Matthew Seaman In-Reply-To: <20040816074227.GC79605@happy-idiot-talk.infracaninophile.co.uk> Message-ID: <20040816182839.Y796@pukruppa.net> References: <20040816070545.O804@pukruppa.net> <20040816074227.GC79605@happy-idiot-talk.infracaninophile.co.uk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: freebsd-questions@freebsd.org Subject: Re: mod_php5 and php5-cli X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 16:28:22 -0000 On Mon, 16 Aug 2004, Matthew Seaman wrote: > On Mon, Aug 16, 2004 at 07:37:53AM +0200, Peter Ulrich Kruppa wrote: > >> Is there some deeper reason why mod_php and php-cli conflict? >> I have got mod_php5 and apache2 running and would like to enable >> the php command line interface, too. How can I do this? > > Install the lang/php5 port which should get you both cli and mod_php5 > support together. Make sure that WITH_APACHE2 is set in > /etc/make.conf or equivalent so you get apache-2.x support, rather > than apache-1.3.x. Great, Thanks! Uli. > > Cheers, > > Matthew > > -- > Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks > Savill Way > PGP: http://www.infracaninophile.co.uk/pgpkey Marlow > Tel: +44 1628 476614 Bucks., SL7 1TH UK > +---------------------------+ | Peter Ulrich Kruppa | | Wuppertal | | Germany | +---------------------------+ From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 16:46:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 895F916A4CE for ; Mon, 16 Aug 2004 16:46:05 +0000 (GMT) Received: from web14104.mail.yahoo.com (web14104.mail.yahoo.com [216.136.172.134]) by mx1.FreeBSD.org (Postfix) with SMTP id 6208E43D5F for ; Mon, 16 Aug 2004 16:46:05 +0000 (GMT) (envelope-from k_greenwood1@yahoo.com) Message-ID: <20040816164605.46053.qmail@web14104.mail.yahoo.com> Received: from [24.76.88.76] by web14104.mail.yahoo.com via HTTP; Mon, 16 Aug 2004 09:46:05 PDT Date: Mon, 16 Aug 2004 09:46:05 -0700 (PDT) From: "K. Greenwood" To: tparrott@gmail.com In-Reply-To: <8550301b040816084311805b30@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-questions@freebsd.org Subject: Re: 4.10 Install failure. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 16:46:05 -0000 --- Tyler Parrott wrote: > Yeah, right after I sent that email I read about the > image already > being bootable. I supposed I should do my homework > before making my > posts:) > > Anyways, the image is burnt correctly, so I'm back > to where I started > with no idea how to move forward... First off, I have never pretended to know what I am talking about... I am just a random subscriber. Take what I say with a grain of salt. That being out of the way, a quick little comment. You previously mentioned you had a compaq evo (?). Have you tried making bootable floppies and trying them? http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-pre.html#INSTALL-FLOPPIES Also, have you tried experimenting with your bios settings? Perhaps Advanced, Device options? Specifically the ACPI settings... (I kinda doubt this will have any effect, however). Was the error similar to the following? (after loading bootstrap loader) | int=0000000d err=00000000 efl=00030246 eip=00003034 eax=0000205d ebx=00000004 ecx=00002000 edx=0000288c esi=000008d5 edi=0006290c ebp=00001538 esp=00001502 cs=f000 ds=ee00 es=ee00 fs=0000 gs=0000 ss=ee00 cs:eip=0f 20 dd 81 e5 00 f0 0f-20 c2 0f 01 e0 a8 01 75 08 80 e2 fe e8 53 ff eb-21 0f 20 e0 a9 30 00 75 ss:esp=0c 29 06 00 d5 08 00 00-38 15 00 00 22 15 00 00 04 00 00 00 8c 28 00 00-04 00 00 00 5d 28 00 00 BTX halted Hopefully someone who knows more than I (accounts for pretty much everyone on this list...) comprehends what this means. I'm without clue. Hth, and good luck. __________________________________ Do you Yahoo!? Yahoo! Mail is new and improved - Check it out! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 16:46:26 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7F7D16A4CE for ; Mon, 16 Aug 2004 16:46:26 +0000 (GMT) Received: from mail.snowfall.se (guldivar.globalwire.se [212.112.184.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23D3E43D58 for ; Mon, 16 Aug 2004 16:46:26 +0000 (GMT) (envelope-from stefan@snowfall.se) Received: by mail.snowfall.se (Postfix, from userid 1001) id 8127541; Mon, 16 Aug 2004 18:46:23 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail.snowfall.se (Postfix) with ESMTP id 8057D3A for ; Mon, 16 Aug 2004 18:46:23 +0200 (CEST) Date: Mon, 16 Aug 2004 18:46:23 +0200 (CEST) From: Stefan Cars To: questions@freebsd.org Message-ID: <20040816184529.Q45254@pluring.snowfall.se> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: ipfw2 or ipfilter X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 16:46:27 -0000 Hi! I'm looking into if I should go with ipfw2 or ipfilter, anyone that could point me to some links or tell me pro's and con's (both feature and performance wise). Kind Regards, Stefan Cars -- Stefan Cars Snowfall Communications http://www.snowfall.se Tel: +46 (0)18 430 80 50 - Direct: +46 (0)18 430 80 51 Mobile: +46 (0)708 44 36 00 - Fax: +46 (0)708 44 36 04 From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 16:51:10 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A58816A4CE for ; Mon, 16 Aug 2004 16:51:10 +0000 (GMT) Received: from mail.rhwi.net (mail.rhwi.net [64.72.68.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0031D43D55 for ; Mon, 16 Aug 2004 16:51:09 +0000 (GMT) (envelope-from techielists@regionalhelpwanted.com) Received: from creemore (creemore.internal.rhw [192.168.1.37]) by mail.rhwi.net (Postfix) with SMTP id 6DF4024FA0 for ; Mon, 16 Aug 2004 12:46:32 -0400 (EDT) Date: Mon, 16 Aug 2004 12:50:52 -0400 From: Jeanne To: freebsd-questions@freebsd.org Message-Id: <20040816125052.15c278ad.techielists@regionalhelpwanted.com> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: dell 400sc scsi and 4.10 install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 16:51:10 -0000 Hi, I've seen this topic come up in the lists recently but I haven't seen a solution for it. I'm trying to install 4.10 on a new 400SC. When I boot I see: HBA ID LUN Vendor 0 0 0 Fugitsu 36422MB 0 7 0 LSILogic 1020/1030 1 7 0 LSILogic 1020/2030 I'm able to partition the 36G drive but then the install (floppy - network) hangs when creating the file systems. Unable to make new root filesystem on /dev/da0s1a Command returned status 36 BIOS options for drive configurations: SATA Primary off/auto, primary master off/auto, ide drive udama off/auto. I would appreciate any help at all. Thanks. Jeanne From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 17:07:21 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF90616A4CE for ; Mon, 16 Aug 2004 17:07:21 +0000 (GMT) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 829C043D1D for ; Mon, 16 Aug 2004 17:07:21 +0000 (GMT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.11.7p1+Sun/8.11.7) id i7GH7Ib29425; Mon, 16 Aug 2004 13:07:18 -0400 (EDT) From: Jerry McAllister Message-Id: <200408161707.i7GH7Ib29425@clunix.cl.msu.edu> To: techielists@regionalhelpwanted.com (Jeanne) Date: Mon, 16 Aug 2004 13:07:17 -0400 (EDT) In-Reply-To: <20040816125052.15c278ad.techielists@regionalhelpwanted.com> from "Jeanne" at Aug 16, 2004 12:50:52 PM X-Mailer: ELM [version 2.5 PL2] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: dell 400sc scsi and 4.10 install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 17:07:22 -0000 > > Hi, > > I've seen this topic come up in the lists recently but I haven't seen a > solution for it. I'm trying to install 4.10 on a new 400SC. When I boot I see: > > HBA ID LUN Vendor > 0 0 0 Fugitsu 36422MB > 0 7 0 LSILogic 1020/1030 > 1 7 0 LSILogic 1020/2030 > > I'm able to partition the 36G drive but then the install (floppy - network) > hangs when creating the file systems. > Unable to make new root filesystem on /dev/da0s1a > Command returned status 36 > > BIOS options for drive configurations: SATA Primary off/auto, primary > master off/auto, ide drive udama off/auto. We had one site with nearly the same stuff (Dell 400, etc and a controller that seemed to be SATA) and the same result. We could not install on it and the site admin finally replaced the controller with a plain SCSI and was able to install with no problem. Note that it appeared to slice (fdisk) and make partitiona (disklabel) and these showed up on future attempts so it seemed to be able to write the label. But, it was completely unable to write anything more than that. The newfs failed as you see. So, no help, but just some support for your experience - unless recommending switching to a SCSI controller is considered help. I posted to the list at that time and had a couple inquiries, but no-one seemed to have any workable suggestions. I am guessing that the driver support is incomplete for that setup, but don't know enough to pinpoint it. ////jerry > > I would appreciate any help at all. Thanks. > > Jeanne > From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 17:08:55 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2949D16A4CE for ; Mon, 16 Aug 2004 17:08:55 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEDC543D31 for ; Mon, 16 Aug 2004 17:08:54 +0000 (GMT) (envelope-from tparrott@gmail.com) Received: by mproxy.gmail.com with SMTP id 80so105757rnk for ; Mon, 16 Aug 2004 10:08:54 -0700 (PDT) Received: by 10.38.206.50 with SMTP id d50mr1298890rng; Mon, 16 Aug 2004 10:08:54 -0700 (PDT) Message-ID: <8550301b04081610086cfc5a26@mail.gmail.com> Date: Mon, 16 Aug 2004 13:08:53 -0400 From: Tyler Parrott To: "K. Greenwood" In-Reply-To: <20040816164605.46053.qmail@web14104.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <20040816164605.46053.qmail@web14104.mail.yahoo.com> cc: freebsd-questions@freebsd.org Subject: Re: 4.10 Install failure. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: tyler@boardom.ca List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 17:08:55 -0000 Thanks for all the advice, it is much appreciated. I'll give the floppies a try. That error that you pasted is pretty much exactly what I get, although I'm not sure whether or not the register values are the same:) Again, I'll try with the floppies:) Thanks! On Mon, 16 Aug 2004 09:46:05 -0700 (PDT), K. Greenwood wrote: > > --- Tyler Parrott wrote: > > > Yeah, right after I sent that email I read about the > > image already > > being bootable. I supposed I should do my homework > > before making my > > posts:) > > > > Anyways, the image is burnt correctly, so I'm back > > to where I started > > with no idea how to move forward... > > unable to boot from cd> > > First off, I have never pretended to know what I am > talking about... I am just a random subscriber. Take > what I say with a grain of salt. > > That being out of the way, a quick little comment. > > You previously mentioned you had a compaq evo (?). > Have you tried making bootable floppies and trying > them? > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-pre.html#INSTALL-FLOPPIES > > Also, have you tried experimenting with your bios > settings? Perhaps Advanced, Device options? > Specifically the ACPI settings... (I kinda doubt this > will have any effect, however). > > Was the error similar to the following? (after loading > bootstrap loader) > > | > int=0000000d err=00000000 efl=00030246 eip=00003034 > eax=0000205d ebx=00000004 ecx=00002000 edx=0000288c > esi=000008d5 edi=0006290c ebp=00001538 esp=00001502 > cs=f000 ds=ee00 es=ee00 fs=0000 gs=0000 ss=ee00 > cs:eip=0f 20 dd 81 e5 00 f0 0f-20 c2 0f 01 e0 a8 01 75 > 08 80 e2 fe e8 53 ff eb-21 0f 20 e0 a9 30 00 75 > ss:esp=0c 29 06 00 d5 08 00 00-38 15 00 00 22 15 00 00 > 04 00 00 00 8c 28 00 00-04 00 00 00 5d 28 00 00 > BTX halted > > Hopefully someone who knows more than I (accounts for > pretty much everyone on this list...) comprehends what > this means. I'm without clue. > > Hth, and good luck. > > > __________________________________ > Do you Yahoo!? > Yahoo! Mail is new and improved - Check it out! > http://promotions.yahoo.com/new_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" > From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 17:11:26 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCDCF16A4CE for ; Mon, 16 Aug 2004 17:11:26 +0000 (GMT) Received: from usw2.natel.net (2b.bz [209.152.117.190]) by mx1.FreeBSD.org (Postfix) with SMTP id CEB8143D39 for ; Mon, 16 Aug 2004 17:11:25 +0000 (GMT) (envelope-from WD@US-Webmasters.com) Received: (qmail 17071 invoked from network); 16 Aug 2004 17:11:18 -0000 Received: from batv-01-000.dialup.netins.net (HELO xyz.US-Webmasters.com) (216.248.109.1) by us-webmasters.com with SMTP; 16 Aug 2004 17:11:18 -0000 Message-Id: <5.1.0.14.2.20040816120927.0d4d7d90@209.152.117.178> X-Sender: wd@209.152.117.178 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Mon, 16 Aug 2004 12:10:36 -0500 To: freebsd-questions@freebsd.org From: "W. D." In-Reply-To: <8550301b040816084311805b30@mail.gmail.com> References: <200408161536.i7GFamA28975@clunix.cl.msu.edu> <200408161536.i7GFamA28975@clunix.cl.msu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: Re: 4.10 Install failure. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 17:11:26 -0000 At 10:43 8/16/2004, Tyler Parrott, wrote: >Yeah, right after I sent that email I read about the image already >being bootable. I supposed I should do my homework before making my >posts:) > >Anyways, the image is burnt correctly, so I'm back to where I started >with no idea how to move forward... > >On Mon, 16 Aug 2004 11:36:47 -0400 (EDT), Jerry McAllister > wrote: >> > >> > After reading that, I think it might be possible that I burnt the >> > images correctly, but I simply did not make the CD's bootable. I was >> > using k3b to burn the images, but I might just have a go at it with >> > Nero. Thanks! >>=20 >> The CD image that you download from the FreeBSD site is already a >> bootable ISO. It needs to be written to the CD as a raw file and >> not converted or processed in any way. It should not be put in a >> file system on the CD or processed to be bootable, or etc. It is >> already a complete CD image. >>=20 >> ////jerry Try your 4.10 CD on a different computer? Burn a 4.9 CD? Start Here to Find It Fast!=99 ->= http://www.US-Webmasters.com/best-start-page/ $8.77 Domain Names -> http://domains.us-webmasters.com/ From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 17:27:54 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 028AE16A4CE for ; Mon, 16 Aug 2004 17:27:54 +0000 (GMT) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95D9C43D46 for ; Mon, 16 Aug 2004 17:27:52 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost.infracaninophile.co.uk [IPv6:::1])i7GHPkvB086955 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 16 Aug 2004 18:25:46 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)id i7GHPkrb086954; Mon, 16 Aug 2004 18:25:46 +0100 (BST) (envelope-from matthew) Date: Mon, 16 Aug 2004 18:25:46 +0100 From: Matthew Seaman To: Stefan Cars Message-ID: <20040816172546.GA86466@happy-idiot-talk.infracaninophile.co.uk> Mail-Followup-To: Matthew Seaman , Stefan Cars , questions@freebsd.org References: <20040816184529.Q45254@pluring.snowfall.se> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sdtB3X0nJg68CQEu" Content-Disposition: inline In-Reply-To: <20040816184529.Q45254@pluring.snowfall.se> User-Agent: Mutt/1.5.6i X-Greylist: Message not sent from an IPv4 address, not delayed by milter-greylist-1.5.3 (smtp.infracaninophile.co.uk [0.0.0.0]); Mon, 16 Aug 2004 18:25:46 +0100 (BST) X-Virus-Scanned: clamd / ClamAV version devel-20040705, clamav-milter version 0.74a on smtp.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, hits=-4.8 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on happy-idiot-talk.infracaninophile.co.uk cc: questions@freebsd.org Subject: Re: ipfw2 or ipfilter X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 17:27:54 -0000 --sdtB3X0nJg68CQEu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 16, 2004 at 06:46:23PM +0200, Stefan Cars wrote: > I'm looking into if I should go with ipfw2 or ipfilter, anyone that could > point me to some links or tell me pro's and con's (both feature and > performance wise). Unless your running quite a complicated setup or have specific requirements then there isn't really any preference for one over the other. If you're running a typical home system, even with say, a 10Mbit/s cable modem connection, any reasonably modern FreeBSD machine is going to be able to do firewall filtering without breaking into a sweat. You'ld need so quite fancy hardware to detect performance differences between the two. Probably the biggest reason to choose one over the other is simple personal preference between the different rule-set styles. ipfw is 'first match wins' (hence rule sets tend to be ordered from most to least specific). ipfilter is 'last match wins', so the most general rules tend to go at the top of rulesets -- although there are special 'quick' rules that can shortcut the process. In general both firewalls have very similar functionality. ipfw(8) can act as a filtering bridge and it can provide weighted fair queuing and bandwidth limited pipes in conjunction with dummynet(4). ipfilter seems to have more complete IPv6 support than ip6fw. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --sdtB3X0nJg68CQEu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBIO4aiD657aJF7eIRAoC7AJ96jq4DxIi1zfuMofYOFEloLQnGGACcDJ/M 5HXnLV0TowpsJAwp0c6OWFQ= =nf2F -----END PGP SIGNATURE----- --sdtB3X0nJg68CQEu-- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 17:28:39 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9044116A4CE for ; Mon, 16 Aug 2004 17:28:39 +0000 (GMT) Received: from lakermmtao05.cox.net (lakermmtao05.cox.net [68.230.240.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C01843D48 for ; Mon, 16 Aug 2004 17:28:39 +0000 (GMT) (envelope-from jacoulter@jacoulter.net) Received: from [68.105.58.150] by lakermmtao05.cox.net (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709) with SMTP id <20040816172837.XXXE25497.lakermmtao05.cox.net@[68.105.58.150]>; Mon, 16 Aug 2004 13:28:37 -0400 Received: by _HOSTNAME_ (sSMTP sendmail emulation); Mon, 16 Aug 2004 12:28:20 -0500 From: "James A. Coulter" Date: Mon, 16 Aug 2004 12:28:20 -0500 To: freebsd-questions@freebsd.org Message-ID: <20040816172820.GA4109@sara.mshome.net> Mail-Followup-To: freebsd-questions@freebsd.org, Volker Kindermann References: <20040816145737.GA3924@sara.mshome.net> <20040816170151.789d86c6@ariel.office.volker.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040816170151.789d86c6@ariel.office.volker.de> User-Agent: Mutt/1.4.2.1i cc: Volker Kindermann Subject: Re: Security question - uids of 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 17:28:39 -0000 On Mon, Aug 16, 2004 at 05:01:51PM +0200, Volker Kindermann wrote: > Hi James, > > > > The following appeared in my latest daily security run output: > > > > Checking for uids of 0: > > root 0 > > toor 0 > > > > This is the first time I've seen this message. > > > > I checked /etc/passwd and found this: > > > > root:*:0:0:Charlie &:/root:/bin/csh > > toor:*:0:0:Bourne-again Superuser:/root: > > > > I am running FreeBSD 4.10 as a gateway/router/firewall with IPFW for a > > small home LAN. > > > > I ran ps -aux and looked for any processes owned by "toor" but didn't > > find any. > > did you install bash? Normally, the bash from ports or packages will > install the "toor" account so you don't have to change root's shell. > > If you installed bash then there's nothing to worry about this entry. > If you don't need it, just use vipw and delete it. > > -volker Thank you Volker - I did install bash several weeks ago, so the sudden appearance of the message in my daily security run caught my attention. Thanks to everyone who sent the http://www.freebsd.org/doc/faq/security.html#TOOR-ACCOUNT link. Jim From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 17:35:17 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AB6316A4CE for ; Mon, 16 Aug 2004 17:35:17 +0000 (GMT) Received: from mail.rhwi.net (mail.rhwi.net [64.72.68.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A52C43D48 for ; Mon, 16 Aug 2004 17:35:17 +0000 (GMT) (envelope-from techielists@regionalhelpwanted.com) Received: from creemore (creemore.internal.rhw [192.168.1.37]) by mail.rhwi.net (Postfix) with SMTP id 99B6C24FA0; Mon, 16 Aug 2004 13:30:39 -0400 (EDT) Date: Mon, 16 Aug 2004 13:34:59 -0400 From: Jeanne To: Jerry McAllister Message-Id: <20040816133459.4c8dd6bd.techielists@regionalhelpwanted.com> In-Reply-To: <200408161707.i7GH7Ib29425@clunix.cl.msu.edu> References: <20040816125052.15c278ad.techielists@regionalhelpwanted.com> <200408161707.i7GH7Ib29425@clunix.cl.msu.edu> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: dell 400sc scsi and 4.10 install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 17:35:17 -0000 On Mon, 16 Aug 2004 13:07:17 -0400 (EDT) Jerry McAllister wrote: > > > > Hi, > > > > I've seen this topic come up in the lists recently but I haven't seen a > > solution for it. I'm trying to install 4.10 on a new 400SC. When I boot I see: > > > > HBA ID LUN Vendor > > 0 0 0 Fugitsu 36422MB > > 0 7 0 LSILogic 1020/1030 > > 1 7 0 LSILogic 1020/2030 > > > > I'm able to partition the 36G drive but then the install (floppy - network) > > hangs when creating the file systems. > > Unable to make new root filesystem on /dev/da0s1a > > Command returned status 36 > > > > BIOS options for drive configurations: SATA Primary off/auto, primary > > master off/auto, ide drive udama off/auto. > > We had one site with nearly the same stuff (Dell 400, etc and a controller > that seemed to be SATA) and the same result. > > We could not install on it and the site admin finally replaced the > controller with a plain SCSI and was able to install with no problem. Jerry - thanks for the response. I did see your comments on the situation you describe below, sorry that you had to say the same thing twice. But I was/am confused, because I'm not using SATA. I am using the LSILogic scsi controller card. Am I correct in understanding that the LSILogic Ultra320 scsi controller is not supported in FreeBSD? Sorry for the confusion. This is the first trouble I've ever had with a Dell (IDE or SCSI). Can anyone confirm that the lsilogic ultra320 scsi controller just wont work at all, or just won't work in 4.10. Is there maybe some way to emulate an adaptec card or something like that? (I'm pushing for more help because I've got a deadline for putting a machine in production and shipping this back will really cause a delay). Thanks again for any help, Jeanne > > Note that it appeared to slice (fdisk) and make partitiona (disklabel) > and these showed up on future attempts so it seemed to be able > to write the label. But, it was completely unable to write anything > more than that. The newfs failed as you see. > > So, no help, but just some support for your experience - unless > recommending switching to a SCSI controller is considered help. > > I posted to the list at that time and had a couple inquiries, but > no-one seemed to have any workable suggestions. I am guessing > that the driver support is incomplete for that setup, but don't > know enough to pinpoint it. > > ////jerry > > > > > I would appreciate any help at all. Thanks. > > > > Jeanne > > > _______________________________________________ > 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 Aug 16 17:42:35 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A696D16A4CE for ; Mon, 16 Aug 2004 17:42:35 +0000 (GMT) Received: from smtp805.mail.sc5.yahoo.com (smtp805.mail.sc5.yahoo.com [66.163.168.184]) by mx1.FreeBSD.org (Postfix) with SMTP id 5BB5943D31 for ; Mon, 16 Aug 2004 17:42:35 +0000 (GMT) (envelope-from addymin@pacbell.net) Received: from unknown (HELO ?192.168.1.12?) (m?chinn@pacbell.net@67.120.102.63 with plain) by smtp805.mail.sc5.yahoo.com with SMTP; 16 Aug 2004 17:42:35 -0000 Message-ID: <4120F30A.5050802@pacbell.net> Date: Mon, 16 Aug 2004 10:46:50 -0700 From: Mike User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD-Questions@FreeBSD.ORG References: <4120BDA1.7030700@pacbell.net> <20040816140930.GA84216@happy-idiot-talk.infracaninophile.co.uk> <20040816142132.GD85541@omniresources.com> <20040816155128.GB7099@orion.daedalusnetworks.priv> In-Reply-To: <20040816155128.GB7099@orion.daedalusnetworks.priv> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: How to increase scrollback for FreeBSD-4.10? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: addymin@pacbell.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 17:42:35 -0000 Giorgos Keramidas wrote: > On 2004-08-16 09:21, doug@polands.org wrote: > >>On Mon, Aug 16, 2004 at 03:09:30PM +0100, Matthew Seaman wrote: >> >>>On Mon, Aug 16, 2004 at 06:58:57AM -0700, Mike wrote: >>> >>>>When I'm on the 4.10 box the scrollback is about 200 lines. If >>>>possible I'd like to set the scroll back to 600 lines or so >>>>(at least). >>>> >>>>Question: How do I increase the scrollback on 4.10? >>> >>>That depends on the console program you're using. For an xterm(1), >>>the following in ~/.Xdefaults will give you 8k scrollback lines: >>> >>> xterm*saveLines: 8192 >> >>xterm like programs allow the -sl switch lines. I've had problems with >>numbers approaching 32767 but have never nailed down exactly how many >>lines I can save. I safely use -sl 30000 for xterm, rxvt, aterm, and >>gnome-terminal. > > > I use screen most of the time in my terminal sessions, which also > includes a nice option for scrollback. Putting the following in my > ~/.screenrc file works like a charm: > > defscrollback 10000 > > This is IMHO a bit more preferable than using syscons scrollback, > because syscons allocates memory inside the kernel for the scrollback > buffer IIRC. I tend to prefer userspace allocations when possible, like > the xterm -sl or screen's scrollback. > Greetings: Thank you for the tips!!! I went and tried this using this kdbcontrol command in my .cshrc: # added to increase scrollback to 1000 /usr/sbin/kbdcontrol -h 1000 This gave me 1,000 lines when I'm logged into the console however, it resulted in a "Inapproriate ioctrl for device" error when using xterm (xfterm4) under xfce4. So I removed the "kdbcontrol" from my .cshrc and used a "-sl 3000" option to launch xfterm4. So launching "xfterm4 -sl 3000" now does the trick! Regards, Michael From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 17:46:09 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16F3316A4CE for ; Mon, 16 Aug 2004 17:46:09 +0000 (GMT) Received: from bobigny-6-82-226-251-58.fbx.proxad.net (bobigny-6-82-226-251-58.fbx.proxad.net [82.226.251.58]) by mx1.FreeBSD.org (Postfix) with SMTP id 3AECA43D39 for ; Mon, 16 Aug 2004 17:46:07 +0000 (GMT) (envelope-from xkcauis@postdirect.com) Message-ID: <53630717387945.464dsg55790yf@hotmail.com> Received: from 60.166.112.164 by law8-aa77.law1.hotmail.com with DAV; Mon, 16 Aug 2004 23:36:58 +0500 From: "Nickolas Contreras" To: Date: Mon, 16 Aug 2004 14:44:58 -0400 MIME-Version: 1.0 Content-Type: text/plain; X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: =?iso-8859-1?q?X=E3nax_Here?= X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Nickolas Contreras List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 17:46:09 -0000 From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 18:35:24 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2A9A16A4CE for ; Mon, 16 Aug 2004 18:35:24 +0000 (GMT) Received: from priv-edtnes28.telusplanet.net (outbound04.telus.net [199.185.220.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E2C143D5C for ; Mon, 16 Aug 2004 18:35:24 +0000 (GMT) (envelope-from aaron@daltons.ca) Received: from d137-186-239-215.abhsia.telus.net ([137.186.239.215]) by priv-edtnes28.telusplanet.netESMTP <20040816183521.MGJP12536.priv-edtnes28.telusplanet.net@d137-186-239-215.abhsia.telus.net> for ; Mon, 16 Aug 2004 12:35:21 -0600 From: Aaron Dalton To: freebsd-questions@freebsd.org Date: Mon, 16 Aug 2004 12:35:49 -0600 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408161235.49549.aaron@daltons.ca> Subject: ProFTPd: 229 Entering Extended Passive Mode X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 18:35:25 -0000 I am running the latest port version of ProFTPd on one of my servers but it seems to hang for as long as 60 seconds whenever I attempt to transfer data. The cmd line says "229 Entering Extended Passive Mode" and then hangs. Eventually it does work, but it greatly impedes my coding efforts. What is odd is that this does *not* occur when I access an identical ProFTPd installation on another machine. Does anybody know what might cause this sort of excessive delay and how maybe to repair it? Thank you, as always, for your time and assistance. -- Aaron Dalton http://aaron.daltons.ca From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 18:38:44 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E19A16A4CE for ; Mon, 16 Aug 2004 18:38:43 +0000 (GMT) Received: from quasar.skima.is (quasar.skima.is [212.30.200.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43D2B43D3F for ; Mon, 16 Aug 2004 18:38:43 +0000 (GMT) (envelope-from fbd@simnet.is) Received: from [192.168.1.13] ([157.157.206.205] [157.157.206.205]) by quasar.skima.is with ESMTP; Mon, 16 Aug 2004 18:38:41 Z From: Fridrik Bragi Dyrfjordðrik Bragi Dýrfjör To: freebsd-questions@freebsd.org Content-Type: text/plain Message-Id: <1093113487.5742.2.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Sat, 21 Aug 2004 18:38:07 +0000 Content-Transfer-Encoding: 7bit Subject: My Atheros WIFI adapter X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 18:38:44 -0000 Supposedly, the Atheros 5212 chipset supports both 11.a/b/g, but for some reason 'ifconfig -m' does not return any modes for the 11b network (which I am currently trying to stay connected to). bumbaldi# dmesg |grep ath0 ath0: mem 0xed800000-0xed80ffff irq 16 at device 13.0 on pci0 ath0: mac 5.6 phy 4.1 5ghz radio 1.7 2ghz radio 2.3 ath0: 11a rates: 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps ath0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps ath0: turbo rates: 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps ath0: 802.11 address: 00:20:a6:4f:93:77 Nor does the dmesg as you can see. I am using FreeBSD 5.2.1-RELEASE and I have just rebuild world and installed a new kernel, still nothing works. Does anyone know why this happens? This is causing me allot of problems, I cannot connect to the router properly because the card randomly looses carrier and I - of course - loose connectivity. Very irritating, because I often disconnect from IRC, slow download etc. Regards, Fridrik Bragi Dyrfjord From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 18:51:29 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29BBB16A4CE for ; Mon, 16 Aug 2004 18:51:29 +0000 (GMT) Received: from smtp.knology.net (smtp.knology.net [24.214.63.101]) by mx1.FreeBSD.org (Postfix) with SMTP id AD9F843D48 for ; Mon, 16 Aug 2004 18:51:28 +0000 (GMT) (envelope-from dkelly@HiWAAY.net) Received: (qmail 31354 invoked by uid 0); 16 Aug 2004 18:51:40 -0000 Received: from user-69-73-60-132.knology.net (HELO ?10.0.0.68?) (69.73.60.132) by smtp2.knology.net with SMTP; 16 Aug 2004 18:51:40 -0000 In-Reply-To: <20040816133459.4c8dd6bd.techielists@regionalhelpwanted.com> References: <20040816125052.15c278ad.techielists@regionalhelpwanted.com> <200408161707.i7GH7Ib29425@clunix.cl.msu.edu> <20040816133459.4c8dd6bd.techielists@regionalhelpwanted.com> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <42EE81F2-EFB5-11D8-8117-000393BB56F2@HiWAAY.net> Content-Transfer-Encoding: 7bit From: David Kelly Date: Mon, 16 Aug 2004 13:51:19 -0500 To: Jeanne X-Mailer: Apple Mail (2.619) cc: Jerry McAllister cc: freebsd-questions@freebsd.org Subject: Re: dell 400sc scsi and 4.10 install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 18:51:29 -0000 On Aug 16, 2004, at 12:34 PM, Jeanne wrote: > Jerry - thanks for the response. I did see your comments on the > situation you describe below, sorry that you had to say the same thing > twice. But I was/am confused, because I'm not using SATA. I am using > the LSILogic scsi controller card. Am I correct in understanding that > the LSILogic Ultra320 scsi controller is not supported in FreeBSD? > Sorry for the confusion. This is the first trouble I've ever had with > a Dell (IDE or SCSI). > > Can anyone confirm that the lsilogic ultra320 scsi controller just > wont work at all, or just won't work in 4.10. Is there maybe some way > to emulate an adaptec card or something like that? The mpt(4) driver in 5.2.1 (thats what I have, guessing its pretty much the same for your 4.10) says it supports the 53c1030 Dual Ultra320 SCSI. Also says it first appeared in FreeBSD 4.6. I don't have this SCSI adapter. As for SATA on the 400SC, the MB SATA interface works fine for me in 5.2.1-p9 altho its installed on PATA, SATA only has data. Don't believe I noticed how much memory your system has. The Dell BIOS has an "OS installation mode" which greatly truncates the amount of memory appearing in the system. For all I know that might prevent mpt(4) from operating reliably. F2 after boot and check which state this BIOS setting is using. "What the heck?" Try it the other way. I am having problems with my 400SC failing to reboot. With ACPI enabled dmesg output appears cleaner than without but "shutdown -r now" appears to go all the way down to BIOS but doesn't turn around and come back up. At least it doesn't now, but did the first few days I was beating on the machine to make sure it was suitable. Seems to have happened when the Seagate 40G PATA drive was replaced with a Hitachi 120G PATA drive. Swapping back to the Seagate didn't fix the problem. -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Top posters will not be shown the honor of a reply. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 19:51:36 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF93A16A4CE for ; Mon, 16 Aug 2004 19:51:36 +0000 (GMT) Received: from web53404.mail.yahoo.com (web53404.mail.yahoo.com [206.190.37.51]) by mx1.FreeBSD.org (Postfix) with SMTP id 8ABB443D1D for ; Mon, 16 Aug 2004 19:51:36 +0000 (GMT) (envelope-from bg271828@yahoo.com) Message-ID: <20040816195136.62744.qmail@web53404.mail.yahoo.com> Received: from [12.107.204.36] by web53404.mail.yahoo.com via HTTP; Mon, 16 Aug 2004 12:51:36 PDT Date: Mon, 16 Aug 2004 12:51:36 -0700 (PDT) From: Your Name To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Frequent crashes with Mozilla and Firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 19:51:37 -0000 In the last few weeks ive started getting a number of crashes using either Mozilla or Firefox. im using the newest version of each from Ports, on FreeBSD 4.9. It typically happens when i visit a complicated website with lots of dynamically-generated content, like the N.Y. Times or eBay. But its not regular; i can restart the browser and go back to the same page and it could then just work. There isnt anything useful in the logs, at least, /var/log/messages sometimes has a core dump, and sometimes has nothing, but it never has anything detailed. Sorry to be nonspecific but i cant seem to figure out a good pattern, other than a complicated webpage. Also im not sure what i changed when it first started. But i am fully up to date. Thanks for your help! Jen __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 19:59:25 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B57716A4CE for ; Mon, 16 Aug 2004 19:59:25 +0000 (GMT) Received: from mail.rhwi.net (mail.rhwi.net [64.72.68.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id E168B43D3F for ; Mon, 16 Aug 2004 19:59:24 +0000 (GMT) (envelope-from techielists@regionalhelpwanted.com) Received: from creemore (creemore.internal.rhw [192.168.1.37]) by mail.rhwi.net (Postfix) with SMTP id 4C8A624FB7; Mon, 16 Aug 2004 15:54:46 -0400 (EDT) Date: Mon, 16 Aug 2004 15:59:06 -0400 From: Jeanne To: David Kelly Message-Id: <20040816155906.1b63502f.techielists@regionalhelpwanted.com> In-Reply-To: <42EE81F2-EFB5-11D8-8117-000393BB56F2@HiWAAY.net> References: <20040816125052.15c278ad.techielists@regionalhelpwanted.com> <200408161707.i7GH7Ib29425@clunix.cl.msu.edu> <20040816133459.4c8dd6bd.techielists@regionalhelpwanted.com> <42EE81F2-EFB5-11D8-8117-000393BB56F2@HiWAAY.net> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: jerrymc@clunix.cl.msu.edu cc: freebsd-questions@freebsd.org Subject: Re: dell 400sc scsi and 4.10 install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 19:59:25 -0000 On Mon, 16 Aug 2004 13:51:19 -0500 David Kelly wrote: > The mpt(4) driver in 5.2.1 (thats what I have, guessing its pretty much > the same for your 4.10) says it supports the 53c1030 Dual Ultra320 > SCSI. Also says it first appeared in FreeBSD 4.6. I don't have this > SCSI adapter. The dell BIOS is mpt boot ROM. sysinstall boot shows: mpt0: ...irq10 at device 1.0 on pci2 mpt1: ...irq10 at device 1.1 on pci2 pci2: at 12.0 irq9 da0 at mpt1 bus 0 target 0 lun 0 da0 Fixed direct acess SCSI-3 device This level of hardware troubleshooting leaves me scratching my head. Does it seem that the mpt driver is working correctly? And of course I get the same errors that Jerry was getting, |write error: 128 |newfs: wtfs - writecombine - Input/output error Well unless some good hardware folks can suggest a fix I'm going to either have to ship this back or just throw an ide hardrive in it and put the lsi controller in the spare parts box. At least there is some good documentation on it in the archives if someone does a search on 400SC and freebsd before they make a purchase. Thanks for all the help. Cheers, Jeanne > > Don't believe I noticed how much memory your system has. The Dell BIOS > has an "OS installation mode" which greatly truncates the amount of > memory appearing in the system. For all I know that might prevent > mpt(4) from operating reliably. F2 after boot and check which state > this BIOS setting is using. "What the heck?" Try it the other way. The BIOS shows that I have a full 512MB. > > I am having problems with my 400SC failing to reboot. With ACPI enabled > dmesg output appears cleaner than without but "shutdown -r now" appears > to go all the way down to BIOS but doesn't turn around and come back > up. At least it doesn't now, but did the first few days I was beating > on the machine to make sure it was suitable. Seems to have happened > when the Seagate 40G PATA drive was replaced with a Hitachi 120G PATA > drive. Swapping back to the Seagate didn't fix the problem. > > -- > David Kelly N4HHE, dkelly@HiWAAY.net > ======================================================================== > Top posters will not be shown the honor of a reply. > > _______________________________________________ > 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 Aug 16 20:02:52 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DF4316A4CF for ; Mon, 16 Aug 2004 20:02:52 +0000 (GMT) Received: from mail.jerseymail.co.uk (mail.jerseymail.co.uk [213.167.64.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D7B643D5E for ; Mon, 16 Aug 2004 20:02:51 +0000 (GMT) (envelope-from gary.edwards@jerseymail.co.uk) Received: from [82.112.143.140] by mail.jerseymail.co.uk (GMS 9.02.3180/XR0700.01.0de48f87) with ESMTP id rfqcsfaa for freebsd-questions@FreeBSD.org; Mon, 16 Aug 2004 21:02:46 +0100 From: "Gary Edwards" To: Date: Mon, 16 Aug 2004 21:05:44 +0100 Message-ID: <000001c483cc$69d46230$0200a8c0@MAIN> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Info: Please report abuse to abuse@foreshore.net X-AntiSpam: Checked for restricted content by Gordano's AntiSpam Software X-AntiVirus: Checked for viruses by Gordano's AntiVirus Software Subject: PCI ADSL Modems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 20:02:52 -0000 I was wondering what PCI modems FreeBSD supports. I have followed the hardware link on the web site but could not find a supplier to the UK. I was wondering if the "ADSL PCI Conexant Chipset" was supported. I would be grateful for any information on this matter. Gary Edwards From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 20:15:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5D0516A4CE for ; Mon, 16 Aug 2004 20:15:42 +0000 (GMT) Received: from mta08-svc.ntlworld.com (mta08-svc.ntlworld.com [62.253.162.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0120D43D31 for ; Mon, 16 Aug 2004 20:15:42 +0000 (GMT) (envelope-from d3c3it-linux@ntlworld.com) Received: from [192.168.0.2] ([213.106.176.107]) by mta08-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with ESMTP id <20040816201533.PMQT13575.mta08-svc.ntlworld.com@[192.168.0.2]> for ; Mon, 16 Aug 2004 21:15:33 +0100 From: Glyn Tebbutt To: freebsd-questions@freebsd.org Content-Type: text/plain Message-Id: <1092687345.16888.0.camel@frozen.lazarus.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 16 Aug 2004 21:15:45 +0100 Content-Transfer-Encoding: 7bit Subject: X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 20:15:43 -0000 Hi all Just a quick question, as it was posted on the list nvidia has released some new drivers, i've yet to try these drivers but at the moment im having to use -CURRENT to be able to get the previous release to work properly and they did very well. I rebuilt my world/kernel with -CURRENT and then my software, xorg, gnome 2.6 etc. My questions is, everything ive compiled was with gcc 3.4.x thats in -CURRENT if i downgrade to 5.2.1 Release will this cause any problems with the software i compiled with the newer gcc. Reasons being for changing as i dont like being that much on the bleeding edge as im just a user not a developer, saying that thou these new drivers might not work out for me and i may end up going back to -CURRENT, as i had the libpthread > libr_c problem and had to map them with libmap.conf Anyway any opinions please as im going to do this tonight and if it means it will screw things up i might just reinstall. Thanks Again Glyn -- *-----------------------------------------------------* | Glyn Tebbutt | d3c3it-linux@ntlworld.com | |--------------' http://homepage.ntlworld.com/d3c3it | | Lisa, if you dont like your job you dont strike, | | You just go in everyday and do it really half-assed | | Thats the American way. -Homer Simpson | *-----------------------------------------------------* From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 20:16:13 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA54916A4CE for ; Mon, 16 Aug 2004 20:16:13 +0000 (GMT) Received: from mta06-svc.ntlworld.com (mta06-svc.ntlworld.com [62.253.162.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 483D343D2F for ; Mon, 16 Aug 2004 20:16:13 +0000 (GMT) (envelope-from d3c3it-linux@ntlworld.com) Received: from [192.168.0.2] ([213.106.176.107]) by mta06-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with ESMTP id <20040816201624.UZTF9678.mta06-svc.ntlworld.com@[192.168.0.2]> for ; Mon, 16 Aug 2004 21:16:24 +0100 From: Glyn Tebbutt To: freebsd-questions@freebsd.org Content-Type: text/plain Message-Id: <1092687345.16888.0.camel@frozen.lazarus.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 16 Aug 2004 21:16:12 +0100 Content-Transfer-Encoding: 7bit Subject: X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 20:16:13 -0000 Hi all Just a quick question, as it was posted on the list nvidia has released some new drivers, i've yet to try these drivers but at the moment im having to use -CURRENT to be able to get the previous release to work properly and they did very well. I rebuilt my world/kernel with -CURRENT and then my software, xorg, gnome 2.6 etc. My questions is, everything ive compiled was with gcc 3.4.x thats in -CURRENT if i downgrade to 5.2.1 Release will this cause any problems with the software i compiled with the newer gcc. Reasons being for changing as i dont like being that much on the bleeding edge as im just a user not a developer, saying that thou these new drivers might not work out for me and i may end up going back to -CURRENT, as i had the libpthread > libr_c problem and had to map them with libmap.conf Anyway any opinions please as im going to do this tonight and if it means it will screw things up i might just reinstall. Thanks Again Glyn -- *-----------------------------------------------------* | Glyn Tebbutt | d3c3it-linux@ntlworld.com | |--------------' http://homepage.ntlworld.com/d3c3it | | Lisa, if you dont like your job you dont strike, | | You just go in everyday and do it really half-assed | | Thats the American way. -Homer Simpson | *-----------------------------------------------------* From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 20:31:24 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 573F516A4CE for ; Mon, 16 Aug 2004 20:31:24 +0000 (GMT) Received: from gblinux.omniresources.com (host-69-48-112-132.mil.choiceone.net [69.48.112.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CED943D2D for ; Mon, 16 Aug 2004 20:31:23 +0000 (GMT) (envelope-from dpoland@omniresources.com) Received: from 5x2822.omniresources.com (5x2822.omniresources.com [192.168.254.149])i7GKVMmf018104; Mon, 16 Aug 2004 15:31:22 -0500 (CDT) (envelope-from dpoland@atwdev.omniresources.com) Received: from 5x2822.omniresources.com (localhost [127.0.0.1]) i7GKVMIk086540; Mon, 16 Aug 2004 15:31:22 -0500 (CDT) (envelope-from dpoland@5x2822.omniresources.com) Received: (from dpoland@localhost)i7GKVMQP086539; Mon, 16 Aug 2004 15:31:22 -0500 (CDT) (envelope-from dpoland) Date: Mon, 16 Aug 2004 15:31:22 -0500 From: doug@polands.org To: Your Name Message-ID: <20040816203054.GK85541@omniresources.com> References: <20040816195136.62744.qmail@web53404.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040816195136.62744.qmail@web53404.mail.yahoo.com> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: Frequent crashes with Mozilla and Firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 20:31:24 -0000 On Mon, Aug 16, 2004 at 12:51:36PM -0700, Your Name wrote: > In the last few weeks ive started getting a number of crashes using > either Mozilla or Firefox. im using the newest version of each from > Ports, on FreeBSD 4.9. > And on 5.2.1-RELEASE and 5.2-CURRENT > It typically happens when i visit a complicated website with lots of > dynamically-generated content, like the N.Y. Times or eBay. But its > not regular; i can restart the browser and go back to the same page > and it could then just work. > Two sites that failed consistently for me were http://www.pga.com and http://www.statefarm.com The browser versions are Mozilla 1.7.2 Mozilla Firefox 0.9.3 Both versions were built from ports the day after the port was committed. All other ports are up-to-date. -- Regards, Doug From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 20:31:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 146EF16A4CE for ; Mon, 16 Aug 2004 20:31:48 +0000 (GMT) Received: from smtp.volant.org (gate.volant.org [207.111.218.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id E511143D2D for ; Mon, 16 Aug 2004 20:31:47 +0000 (GMT) (envelope-from patl@volant.org) Received: from 64-144-229-193.client.dsl.net ([64.144.229.193] helo=[192.168.0.22]) by smtp.volant.org with asmtp (TLSv1:AES256-SHA:256) (Exim 4.34 (FreeBSD)) id 1Bwo8k-000DXx-MN; Mon, 16 Aug 2004 13:31:36 -0700 Date: Mon, 16 Aug 2004 13:31:38 -0700 From: Pat Lashley To: "Paul A. Hoadley" Message-ID: In-Reply-To: <20040816120713.GH26453@grover.logicsquad.net> References: <20040814230143.GB8610@grover.logicsquad.net> <20040814233234.GA56333@falcon.midgard.homeip.net> <20040815013954.GC25751@grover.logicsquad.net> <893994951.20040814211332@mygirlfriday.info> <78D3657555876AE17CEE2ECD@vanvoght.phoenix.volant.org> <20040816120713.GH26453@grover.logicsquad.net> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Scan-Signature: 106a317f3e33c1e32c9ba517d70ce429824ba71c X-Spam-User: nobody X-Spam-Score: -4.8 (----) X-Spam-Score-Int: -47 X-Spam-Report: This mail has matched the spam-filter tests listed below. See http://spamassassin.org/tag/ for details about the specific tests reported. In general, the higher the number of total points, the more likely that it actually is spam. (The 'required' number of points listed below is the arbitrary number above which the message is normally considered spam.) Content analysis details: (-4.8 points total, 5.0 required) -4.9 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] 0.1 AWL AWL: Auto-whitelist adjustment cc: freebsd-questions@freebsd.org Subject: Re: find -exec surprisingly slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 20:31:48 -0000 --On Monday, August 16, 2004 21:37:13 +0930 "Paul A. Hoadley" wrote: > On Sun, Aug 15, 2004 at 02:22:02PM -0700, Pat Lashley wrote: > >> Just FYI, Exim, with the ExiScan patches, can reject at SMTP time; >> and also has a 'fakereject' capability which tells the sender that >> the message has been rejected; but actually delivers it. > > Thanks for the info. I have been thinking of changing MTAs for a > while. I've been using Exim for years now, and in several widly varying installations. I can heartily recommend it as solid, flexable, and capable. And the config file is actually pretty easy to read even in complex or highly customized configurations. (Unlike a certain ancient but still inexplicably popular MTA...) The FreeBSD port automatically includes the semi-official ExiScan patchest which adds the ability to do SpamAssassin and anti-virus scanning while the SMTP connection is still open. The Exim mailing list has a pretty high signal-to-noise ratio; and the folks on it tend to be friendly and helpful. And there's very good on-line documentation at http://www.exim.org/ -Pat From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 20:49:26 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0404A16A4CE for ; Mon, 16 Aug 2004 20:49:26 +0000 (GMT) Received: from lists.freedombi.com (okemoscommunitychurch.org [207.179.98.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 652AB43D2D for ; Mon, 16 Aug 2004 20:49:23 +0000 (GMT) (envelope-from charles@idealso.com) Received: by lists.freedombi.com (Postfix, from userid 1000) id 57E03724F5; Mon, 16 Aug 2004 16:49:20 -0400 (EDT) Received: from freedombi.com (localhost [192.168.10.108]) by lists.freedombi.com (Postfix) with SMTP id 6EEC372341 for ; Mon, 16 Aug 2004 16:49:18 -0400 (EDT) Received: from 24.11.146.21 (SquirrelMail authenticated user charles) by freedombi.com with HTTP; Mon, 16 Aug 2004 16:49:18 -0400 (EDT) Message-ID: <51307.24.11.146.21.1092689358.squirrel@freedombi.com> Date: Mon, 16 Aug 2004 16:49:18 -0400 (EDT) From: "Charles Ulrich" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.2 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on freedombi.com X-Spam-Level: X-Spam-Status: No, hits=-3.7 required=7.0 tests=BAYES_00,PRIORITY_NO_NAME autolearn=no version=2.63 Subject: firewire pseudo-hotplug X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 20:49:26 -0000 Hello, Is there any way to make a shell script execute immediately after a firewire device is plugged in? The man pages and mailing list archives didn't even get me close to a hint of whether this is possible or not. Failing that, is there a (good) way to tell from the command line whether a particular device (say, a hard disk) happens to be plugged in or not? Thanks in advance for your time. -- Charles Ulrich System Administrator Ideal Solution - http://www.idealso.com From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 21:04:37 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BE9C16A4CE for ; Mon, 16 Aug 2004 21:04:37 +0000 (GMT) Received: from priv-edtnes57.telusplanet.net (outbound01.telus.net [199.185.220.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA25843D48 for ; Mon, 16 Aug 2004 21:04:36 +0000 (GMT) (envelope-from aaron@daltons.ca) Received: from d137-186-239-215.abhsia.telus.net ([137.186.239.215]) by priv-edtnes57.telusplanet.netESMTP <20040816210436.HPXF14687.priv-edtnes57.telusplanet.net@d137-186-239-215.abhsia.telus.net> for ; Mon, 16 Aug 2004 15:04:36 -0600 From: Aaron Dalton To: freebsd-questions@freebsd.org Date: Mon, 16 Aug 2004 15:05:05 -0600 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408161505.05971.aaron@daltons.ca> Subject: Re: ProFTPd: 229 Entering Extended Passive Mode X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 21:04:37 -0000 As a follow-up, this happens even if I replace ProFTPd with the built-in ftpd via inetd. How do I eliminate this delay? Cheers! -- Aaron Dalton http://aaron.daltons.ca From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 21:08:14 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFF2C16A4CE for ; Mon, 16 Aug 2004 21:08:14 +0000 (GMT) Received: from dns13.mail.yahoo.co.jp (dns13.mail.yahoo.co.jp [210.81.151.173]) by mx1.FreeBSD.org (Postfix) with SMTP id DC19B43D2F for ; Mon, 16 Aug 2004 21:08:09 +0000 (GMT) (envelope-from ayakokiko@ybb.ne.jp) Received: from unknown (HELO gorgon.near.this) (219.11.234.11 with poptime) by dns13.mail.yahoo.co.jp with SMTP; 16 Aug 2004 21:08:08 -0000 X-Apparently-From: Received: by gorgon.near.this (Postfix, from userid 100) id 718647F8C; Tue, 17 Aug 2004 06:08:01 +0900 (JST) Date: Tue, 17 Aug 2004 05:59:59 +0900 From: horio shoichi To: freebsd-questions@freebsd.org In-Reply-To: <20040816122400.GA81160@ei.bzerk.org> References: <200408151429.05110.aaron@daltons.ca> <20040815170806.45fcb779.wmoran@potentialtech.com> <200408151603.26022.aaron@daltons.ca> <411FE2E9.1090704@elvandar.org> <20040815183205.66b753cd.wmoran@potentialtech.com> <688492D4-EF2F-11D8-9CD1-000A959CEE6A@pursued-with.net> <20040816122400.GA81160@ei.bzerk.org> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20040816.210800.551fee0ee7277bf1.10.0.3.12@bugsgrief.net> Subject: Re: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 21:08:15 -0000 On Mon, 16 Aug 2004 14:24:00 +0200 Ruben de Groot wrote: > On Sun, Aug 15, 2004 at 07:53:10PM -0700, Kevin Stevens typed: > > > > A lot of network scanners also trigger on NICS in promiscuous mode > > (there's a way to detect them, I forget the details at the moment) > > because admins want to know if any hosts are out there sniffing. > > How sure are you about that? AFAIK there's no way to detect a NIC in > promiscuous mode *from the outside*. I would be very interested in a network > scanner that could. > > Ruben > > _______________________________________________ > 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" > Ping it with wrong mac. horio shoichi From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 21:10:31 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9EE016A4CE; Mon, 16 Aug 2004 21:10:31 +0000 (GMT) Received: from eclipse.4d.net (eclipse.4d.net [64.66.5.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2EEE43D39; Mon, 16 Aug 2004 21:10:31 +0000 (GMT) (envelope-from tech39@tech39.net) Received: from win2000-t39 (solarsurf-64-66-4-135.4d.net [64.66.4.135] (may be forged)) by eclipse.4d.net (8.12.9/8.12.9) with ESMTP id i7GL9mmA032669; Mon, 16 Aug 2004 14:09:48 -0700 (PDT) From: tech39@tech39.net To: freebsd-questions@FreeBSD.org Date: Mon, 16 Aug 2004 14:11:14 -0700 MIME-Version: 1.0 Message-ID: <4120C082.23639.5A6050@localhost> Priority: normal X-mailer: Pegasus Mail for Windows (4.21c) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: freebsd-doc@FreeBSD.org cc: jccv@4d.net Subject: Help me ObwanKnobi your my only hope. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: tech39@tech39.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 21:10:32 -0000 I have spent many usless hours looking at Freebsd.org, google.com and yahoo.com in an attempt to find a ftpd that I can cap / choke the outgoing bandwith. Do you know of any such animals? Reading the man pages for ftpd is like trying to read and understand Klingon. Thanks DS From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 21:29:34 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C18E16A4CE for ; Mon, 16 Aug 2004 21:29:34 +0000 (GMT) Received: from smtp814.mail.sc5.yahoo.com (smtp814.mail.sc5.yahoo.com [66.163.170.84]) by mx1.FreeBSD.org (Postfix) with SMTP id 3C5FA43D39 for ; Mon, 16 Aug 2004 21:29:33 +0000 (GMT) (envelope-from krinklyfig@spymac.com) Received: from unknown (HELO smogmonster.com) (jtinnin@pacbell.net@64.171.1.210 with login) by smtp814.mail.sc5.yahoo.com with SMTP; 16 Aug 2004 21:29:33 -0000 From: Joshua Tinnin To: freebsd-questions@freebsd.org Date: Mon, 16 Aug 2004 14:30:02 -0700 User-Agent: KMail/1.6.2 References: <20040816195136.62744.qmail@web53404.mail.yahoo.com> <20040816203054.GK85541@omniresources.com> In-Reply-To: <20040816203054.GK85541@omniresources.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408161430.02630.krinklyfig@spymac.com> Subject: Re: Frequent crashes with Mozilla and Firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: krinklyfig@spymac.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 21:29:34 -0000 On Monday 16 August 2004 01:31 pm, doug@polands.org wrote: > On Mon, Aug 16, 2004 at 12:51:36PM -0700, Your Name wrote: > > In the last few weeks ive started getting a number of crashes using > > either Mozilla or Firefox. im using the newest version of each from > > Ports, on FreeBSD 4.9. > > And on 5.2.1-RELEASE and 5.2-CURRENT > > > It typically happens when i visit a complicated website with lots of > > dynamically-generated content, like the N.Y. Times or eBay. But its > > not regular; i can restart the browser and go back to the same page > > and it could then just work. > > Two sites that failed consistently for me were http://www.pga.com and > http://www.statefarm.com > > The browser versions are > > Mozilla 1.7.2 > Mozilla Firefox 0.9.3 > > Both versions were built from ports the day after the port was > committed. All other ports are up-to-date. I don't know if this would be helpful, but I'm testing both sites at the same time (tabbed) with Mozilla and Firefox, and I'm not having problems - am clicking through many links with both browsers fetching on both tabs (and Mozilla also has other tabs open). I'm running 5.2.1-RELEASE-p9 and have the same versions of Mozilla and Firefox as you do, and all my ports are also up-to-date. Both browsers have Flash, Java and scripting enabled. If it means anything, I'm also running X.org and Xfce4. However, the OP it was an intermittent problem (is it with you as well?), so not sure if I'm just getting lucky, as I haven't ever surfed either of those sites before. - jt From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 21:36:26 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4EE616A4CE for ; Mon, 16 Aug 2004 21:36:26 +0000 (GMT) Received: from smtp811.mail.sc5.yahoo.com (smtp811.mail.sc5.yahoo.com [66.163.170.81]) by mx1.FreeBSD.org (Postfix) with SMTP id 760E443D46 for ; Mon, 16 Aug 2004 21:36:26 +0000 (GMT) (envelope-from krinklyfig@spymac.com) Received: from unknown (HELO smogmonster.com) (jtinnin@pacbell.net@64.171.1.210 with login) by smtp811.mail.sc5.yahoo.com with SMTP; 16 Aug 2004 21:36:26 -0000 From: Joshua Tinnin To: "FreeBSD-questions" Date: Mon, 16 Aug 2004 14:36:49 -0700 User-Agent: KMail/1.6.2 References: <20040816195136.62744.qmail@web53404.mail.yahoo.com> <20040816203054.GK85541@omniresources.com> <200408161430.02630.krinklyfig@spymac.com> In-Reply-To: <200408161430.02630.krinklyfig@spymac.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408161436.49165.krinklyfig@spymac.com> Subject: Re: Frequent crashes with Mozilla and Firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: krinklyfig@spymac.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 21:36:26 -0000 On Monday 16 August 2004 02:30 pm, Joshua Tinnin wrote: > On Monday 16 August 2004 01:31 pm, doug@polands.org wrote: > > On Mon, Aug 16, 2004 at 12:51:36PM -0700, Your Name wrote: > > > In the last few weeks ive started getting a number of crashes using > > > either Mozilla or Firefox. im using the newest version of each from > > > Ports, on FreeBSD 4.9. > > > > And on 5.2.1-RELEASE and 5.2-CURRENT > > > > > It typically happens when i visit a complicated website with lots of > > > dynamically-generated content, like the N.Y. Times or eBay. But its > > > not regular; i can restart the browser and go back to the same page > > > and it could then just work. > > > > Two sites that failed consistently for me were http://www.pga.com and > > http://www.statefarm.com > > > > The browser versions are > > > > Mozilla 1.7.2 > > Mozilla Firefox 0.9.3 > > > > Both versions were built from ports the day after the port was > > committed. All other ports are up-to-date. > > I don't know if this would be helpful, but I'm testing both sites at the > same time (tabbed) with Mozilla and Firefox, and I'm not having problems - > am clicking through many links with both browsers fetching on both tabs > (and Mozilla also has other tabs open). I'm running 5.2.1-RELEASE-p9 and > have the same versions of Mozilla and Firefox as you do, and all my ports > are also up-to-date. Both browsers have Flash, Java and scripting enabled. > If it means anything, I'm also running X.org and Xfce4. However, the OP it > was an intermittent problem (is it with you as well?), so not sure if I'm > just getting lucky, as I haven't ever surfed either of those sites before. I should probably also mention that neither browser has ever crashed on me on FreeBSD, and I use both extensively. I've only been a FreeBSD user for a few months, but I've never had issues with either browser crashing whatsoever. I'm also running on a 2GHz Athlon and 512MB RAM. Mozilla tends to be a memory hog - maybe it's an issue with memory and swapping? - jt From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 21:38:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E76F916A4CE for ; Mon, 16 Aug 2004 21:38:42 +0000 (GMT) Received: from conn.mc.mpls.visi.com (conn.mc.mpls.visi.com [208.42.156.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C198A43D2D for ; Mon, 16 Aug 2004 21:38:42 +0000 (GMT) (envelope-from drue@therub.org) Received: from egypt.therub.org (drue.dsl.visi.com [209.98.146.43]) by conn.mc.mpls.visi.com (Postfix) with ESMTP id 1BF89821F; Mon, 16 Aug 2004 16:38:42 -0500 (CDT) Received: by egypt.therub.org (Postfix, from userid 1001) id BFE86455CC6; Mon, 16 Aug 2004 16:38:41 -0500 (CDT) Date: Mon, 16 Aug 2004 16:38:41 -0500 From: Dan Rue To: doug@polands.org Message-ID: <20040816213841.GB32759@therub.org> References: <20040816195136.62744.qmail@web53404.mail.yahoo.com> <20040816203054.GK85541@omniresources.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040816203054.GK85541@omniresources.com> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org cc: Your Name Subject: Re: Frequent crashes with Mozilla and Firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 21:38:43 -0000 On Mon, Aug 16, 2004 at 03:31:22PM -0500, doug@polands.org wrote: > On Mon, Aug 16, 2004 at 12:51:36PM -0700, Your Name wrote: > > In the last few weeks ive started getting a number of crashes using > > either Mozilla or Firefox. im using the newest version of each from > > Ports, on FreeBSD 4.9. > > > And on 5.2.1-RELEASE and 5.2-CURRENT I'm having the problem too. Been having it for months always with the latest firefox builds. Are you guys running it under gnome? The console messages it logs when it quits out (sorry I don't have them available anymore) made me think it might be gnome+firefox specific. dan From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 21:41:07 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2765D16A4CE for ; Mon, 16 Aug 2004 21:41:07 +0000 (GMT) Received: from c60-outbound.ironport.com (devastator.ironport.com [63.251.108.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFB2F43D3F for ; Mon, 16 Aug 2004 21:41:06 +0000 (GMT) (envelope-from vlb@ironport.com) Received: from catnip.ironport.com (HELO [10.1.1.144]) (10.1.1.144) by c60-outbound.ironport.com with ESMTP; 16 Aug 2004 14:41:07 -0700 X-Ironport-AV: i="3.84,84,1091430000"; d="scan'208"; a="4994240:sNHT30485384" Mime-Version: 1.0 X-Sender: vlbrown@webmail.ironportsystems.com (Unverified) Message-Id: Date: Mon, 16 Aug 2004 14:33:26 -0700 To: questions@FreeBSD.org From: Vicki Brown Content-Type: text/plain; charset="us-ascii" ; format="flowed" Subject: difficulties building gcc from ports collection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 21:41:07 -0000 uname -a FreeBSD test21.eng 4.7-RELEASE FreeBSD 4.7-RELEASE #0: Fri Dec 6 13:38:10 PST 2002 root@:/usr/src/sys/compile/350-GODSPEED-4.7 i386 I've been trying to build a documentation package called "synopsis" ( http://synopsis.fresco.org/index.html ). It requires gcc 3.x. I have gcc version 2.95.4 20020320 [FreeBSD] So, of course, I cd'd to /usr/ports/lang to build a later version of gcc. I tried gcc33 first (to no success) and then gcc32 (different errors): cd /usr/ports/lang/ gcc33 sudo make install Making GCC 3.2 for FreeBSD 4.7 elf target i386-portbld-freebsd4.7 >> Attempting to CVS checkout from :pserver:anoncvs@subversions.gnu.org:/cvsroot/gcc. cvs [checkout aborted]: connect to subversions.gnu.org(199.232.41.3):2401 failed: Operation timed out >> Couldn't CVS checkout gcc-3.2_20020518. >> Please try again later. *** Error code 1 Stop in /usr/ports/lang/gcc33. cd ../gcc32 sudo make install Making GCC 3.2 for FreeBSD 4.7 elf target i386-portbld-freebsd4.7 >> port_gcc32_2002-09-02.diff doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from ftp://relay.nuxi.com/obrien/. fetch: port_gcc32_2002-09-02.diff: Undefined error: 0 >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: port_gcc32_2002-09-02.diff: File unavailable (e.g., file not found, no access) >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop in /usr/ports/lang/gcc32. then I tried gcc31 - I get a lot further... but I get a lot of warnings: ../../gcc-3.1.1/gcc/combine.c:10573: warning: comparison between signed and unsigned still, it did eventually build and (with nudging) install. Have people built 3.2? Should I worry about the errors building 3.1? -- - V. Vicki Brown (Jabber: vlbrown Home: vlb@cfcl.com) Internal Documentation: Review, Edit, (Re)Write - Overviews, Specs, Web Pages, Process Descriptions About: http://www.cfcl.com/vlb/Jobweb Demo: http://catnip.ironport.com/~vlbrown/ (pointers to recent work) From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 21:54:47 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A2B616A4CE for ; Mon, 16 Aug 2004 21:54:47 +0000 (GMT) Received: from audiogram.mail.pas.earthlink.net (audiogram.mail.pas.earthlink.net [207.217.120.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id B163843D1F for ; Mon, 16 Aug 2004 21:54:44 +0000 (GMT) (envelope-from algould@datawok.com) Received: from 22-243.lctv-b4.cablelynx.com ([24.204.22.243] helo=[192.168.63.10]) by audiogram.mail.pas.earthlink.net with asmtp (TLSv1:RC4-MD5:128) (Exim 4.34) id 1BwpRE-0004cI-8y; Mon, 16 Aug 2004 14:54:44 -0700 From: "Andrew L. Gould" To: freebsd-questions@freebsd.org Date: Mon, 16 Aug 2004 16:55:07 -0500 User-Agent: KMail/1.6.2 References: <20040816195136.62744.qmail@web53404.mail.yahoo.com> <20040816203054.GK85541@omniresources.com> <20040816213841.GB32759@therub.org> In-Reply-To: <20040816213841.GB32759@therub.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408161655.07757.algould@datawok.com> X-ELNK-Trace: ee791d459e3d6817d780f4a490ca69564776905774d2ac4bcdde308254b81a3feb96d66eb210a114350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 24.204.22.243 cc: Your Name cc: Dan Rue Subject: Re: Frequent crashes with Mozilla and Firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 21:54:47 -0000 On Monday 16 August 2004 04:38 pm, Dan Rue wrote: > On Mon, Aug 16, 2004 at 03:31:22PM -0500, doug@polands.org wrote: > > On Mon, Aug 16, 2004 at 12:51:36PM -0700, Your Name wrote: > > > In the last few weeks ive started getting a number of crashes > > > using either Mozilla or Firefox. im using the newest version of > > > each from Ports, on FreeBSD 4.9. > > > > And on 5.2.1-RELEASE and 5.2-CURRENT > > I'm having the problem too. Been having it for months always with > the latest firefox builds. > > Are you guys running it under gnome? The console messages it logs > when it quits out (sorry I don't have them available anymore) made me > think it might be gnome+firefox specific. > > dan I've been having crashes with Mozilla running in KDE on FreeBSD 4.10 with Java and Flash plugin support. Andrew Gould From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 22:17:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B271416A4CE for ; Mon, 16 Aug 2004 22:17:42 +0000 (GMT) Received: from sccimhc91.asp.att.net (sccimhc91.asp.att.net [63.240.76.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DEED43D1D for ; Mon, 16 Aug 2004 22:17:42 +0000 (GMT) (envelope-from StevenFriedrich@insightbb.com) Received: from [192.168.1.239] (12-202-28-183.client.insightbb.com[12.202.28.183]) by sccimhc91.asp.att.net (sccimhc91) with ESMTP id <20040816221741i9100bv9ope>; Mon, 16 Aug 2004 22:17:41 +0000 From: Steven Friedrich To: "FreeBSD-Questions" Date: Mon, 16 Aug 2004 18:17:41 -0400 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408161817.41375.StevenFriedrich@InsightBB.com> Subject: Gimp port broke? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 22:17:42 -0000 I'm running 4.10-STABLE. Here's my uname output: root@lightning(p0)/usr/ports/graphics/gimp 115% uname -a FreeBSD lightning.StevenFriedrich.org 4.10-STABLE FreeBSD 4.10-STABLE #49: Tue Aug 10 23:10:38 EDT 2004 root@lightning.StevenFriedrich.org:/usr/obj/usr/src/sys/LIGHTNING i386 Here's the error: /usr/local/lib/libxml2.so.5: undefined reference to `pthread_equal' /usr/local/lib/libxml2.so.5: undefined reference to `pthread_once' gmake[3]: *** [svg] Error 1 The log of the port build is 1.1MB and will be sent upon request. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 22:19:55 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09C9D16A4F8 for ; Mon, 16 Aug 2004 22:19:55 +0000 (GMT) Received: from conure.mail.pas.earthlink.net (conure.mail.pas.earthlink.net [207.217.120.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDDAA43D5C for ; Mon, 16 Aug 2004 22:19:54 +0000 (GMT) (envelope-from elcoocooi@earthlink.net) Received: from user-10lf2ou.cable.mindspring.com ([65.87.139.30]) by conure.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 1Bwppa-0003eb-00; Mon, 16 Aug 2004 15:19:54 -0700 From: "E. Eusey" To: freebsd-questions@freebsd.org Date: Mon, 16 Aug 2004 18:22:17 -0400 User-Agent: KMail/1.6.2 References: <4120C082.23639.5A6050@localhost> In-Reply-To: <4120C082.23639.5A6050@localhost> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408161822.17935.elcoocooi@earthlink.net> cc: tech39@tech39.net Subject: Re: Help me ObwanKnobi your my only hope. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: elcoocooi@earthlink.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 22:19:55 -0000 Taken from the vsftpd website FAQ: Q) Help! Does vsftpd support bandwidth limiting? A) Yes. See vsftpd.conf.5 man page and investigate settings such as "anon_max_rate" and "local_max_rate". (That is, install vsftpd and run "man 5 vsftpd.conf". Alternately, read the HTML version at http://tinyurl.com/5qnd5 .) Never tried this myself, but I've heard good things about vsftpd in general. Evan Eusey On Monday 16 August 2004 05:11 pm, tech39@tech39.net wrote: > I have spent many usless hours looking at Freebsd.org, google.com and > yahoo.com in an attempt to find a ftpd that I can cap / choke the > outgoing bandwith. > > Do you know of any such animals? > > Reading the man pages for ftpd is like trying to read and understand > Klingon. > > Thanks > > DS > > > _______________________________________________ > 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 Aug 16 22:25:27 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCE0C16A4CE for ; Mon, 16 Aug 2004 22:25:27 +0000 (GMT) Received: from exch1.nfmwe.com (68-75-194-133.ded.ameritech.net [68.75.194.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5409943D31 for ; Mon, 16 Aug 2004 22:25:27 +0000 (GMT) (envelope-from PHILLEN@NFM.NET) Received: by exch1.nfmwe.com with Internet Mail Service (5.5.2657.72) id ; Mon, 16 Aug 2004 18:31:42 -0400 Message-ID: <2D5D66504FBF4E4FB3A199F121C86238225A2A@exch1.nfmwe.com> From: Paul Hillen To: freebsd-questions@freebsd.org Date: Mon, 16 Aug 2004 18:31:33 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Application level inspection - firewall? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 22:25:28 -0000 Quick question, is there an Application Level firewall available to FreeBSD. I understand IPFilter is a stateful packet filter, but has it or any other packages moved to the next level - Application Level Inspection? Sorry I am all googled out on this one. Thanks Paul From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 22:34:01 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 651A416A4CE; Mon, 16 Aug 2004 22:34:01 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D79943D55; Mon, 16 Aug 2004 22:34:01 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i7GMXuJc012785; Mon, 16 Aug 2004 15:33:56 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i7GMXuvl012781; Mon, 16 Aug 2004 15:33:56 -0700 Date: Mon, 16 Aug 2004 15:33:56 -0700 From: Brooks Davis To: tech39@tech39.net Message-ID: <20040816223356.GA12480@odin.ac.hmc.edu> References: <4120C082.23639.5A6050@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zhXaljGHf11kAtnf" Content-Disposition: inline In-Reply-To: <4120C082.23639.5A6050@localhost> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=1.1 required=8.0 tests=MAILTO_TO_SPAM_ADDR autolearn=no version=2.63 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: freebsd-doc@freebsd.org cc: freebsd-questions@freebsd.org cc: jccv@4d.net Subject: Re: Help me ObwanKnobi your my only hope. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 22:34:01 -0000 --zhXaljGHf11kAtnf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 16, 2004 at 02:11:14PM -0700, tech39@tech39.net wrote: >=20 > I have spent many usless hours looking at Freebsd.org, google.com and=20 > yahoo.com in an attempt to find a ftpd that I can cap / choke the=20 > outgoing bandwith. >=20 > Do you know of any such animals? dummynet(4) will probably do what you want unless you need to do it per user. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --zhXaljGHf11kAtnf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBITZTXY6L6fI4GtQRAlnHAKC3MIsvRPvV2zzP6xWJTYVs+gr+cgCfTiUo m5GC9gk9WiNMkPh2PP6PN14= =aYtr -----END PGP SIGNATURE----- --zhXaljGHf11kAtnf-- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 22:35:26 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A47716A4CE; Mon, 16 Aug 2004 22:35:26 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F79143D1F; Mon, 16 Aug 2004 22:35:26 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 586B469A8D; Mon, 16 Aug 2004 18:35:25 -0400 (EDT) Date: Mon, 16 Aug 2004 18:35:24 -0400 From: Bill Moran To: tech39@tech39.net Message-Id: <20040816183524.70e1eaee.wmoran@potentialtech.com> In-Reply-To: <4120C082.23639.5A6050@localhost> References: <4120C082.23639.5A6050@localhost> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-doc@FreeBSD.org cc: freebsd-questions@FreeBSD.org Subject: Re: Help me ObwanKnobi your my only hope. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 22:35:26 -0000 tech39@tech39.net wrote: > > I have spent many usless hours looking at Freebsd.org, google.com and > yahoo.com in an attempt to find a ftpd that I can cap / choke the > outgoing bandwith. > > Do you know of any such animals? No. But look at the bandwidth shaping capabilities of IPFW. It _can_ do what you want. > Reading the man pages for ftpd is like trying to read and understand > Klingon. I disagree. I think the ftpd manual page is very clear and to the point. Is English your native language? -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 22:36:53 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AD0716A4CE for ; Mon, 16 Aug 2004 22:36:53 +0000 (GMT) Received: from parts-unknown.org (26.sub-69-82-14.myvzw.com [69.82.14.26]) by mx1.FreeBSD.org (Postfix) with SMTP id 0D4C843D3F for ; Mon, 16 Aug 2004 22:36:50 +0000 (GMT) (envelope-from benfell@parts-unknown.org) Received: (qmail 11933 invoked by alias); 16 Aug 2004 22:36:45 -0000 Date: Mon, 16 Aug 2004 15:36:45 -0700 From: David Benfell To: freebsd-questions@freebsd.org Message-ID: <20040816223645.GA11915@parts-unknown.org> Mail-Followup-To: freebsd-questions@freebsd.org References: <4120C082.23639.5A6050@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4120C082.23639.5A6050@localhost> X-stardate: [-29]2584.69 X-moon: The Moon is Waxing Crescent (1% of Full) User-Agent: Mutt/1.5.6i Subject: Re: Help me ObwanKnobi your my only hope. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 22:36:53 -0000 On Mon, 16 Aug 2004 14:11:14 -0700, tech39@tech39.net wrote: > > I have spent many usless hours looking at Freebsd.org, google.com and > yahoo.com in an attempt to find a ftpd that I can cap / choke the > outgoing bandwith. > This is generally not an ftp daemon function. Bandwidth limiting may be done through a firewall. -- David Benfell, LCP benfell@parts-unknown.org --- Resume available at http://www.parts-unknown.org/resume.html From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 22:51:36 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26B3516A4CE for ; Mon, 16 Aug 2004 22:51:36 +0000 (GMT) Received: from out008.verizon.net (out008pub.verizon.net [206.46.170.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4F1E43D2D for ; Mon, 16 Aug 2004 22:51:35 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from [192.168.1.3] ([68.161.136.200]) by out008.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040816225135.TREV8960.out008.verizon.net@[192.168.1.3]>; Mon, 16 Aug 2004 17:51:35 -0500 Message-ID: <41213A76.3010107@mac.com> Date: Mon, 16 Aug 2004 18:51:34 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Paul Hillen References: <2D5D66504FBF4E4FB3A199F121C86238225A2A@exch1.nfmwe.com> In-Reply-To: <2D5D66504FBF4E4FB3A199F121C86238225A2A@exch1.nfmwe.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out008.verizon.net from [68.161.136.200] at Mon, 16 Aug 2004 17:51:34 -0500 cc: freebsd-questions@freebsd.org Subject: Re: Application level inspection - firewall? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 22:51:36 -0000 Paul Hillen wrote: > Quick question, is there an Application Level firewall available to FreeBSD. For some definitions of that buzzword, sure. > I understand IPFilter is a stateful packet filter, but has it or any other > packages moved to the next level - Application Level Inspection? Squid plus a firewall which blocks or redirects port 80 will serve for HTTP; Postfix or Qmail or whatever plus firewall rules which do the same for port 25 serve as application-level filtering for SMTP (enough to protect that Exchange server some people want to run), etc. -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 22:52:33 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AD0516A4CE for ; Mon, 16 Aug 2004 22:52:33 +0000 (GMT) Received: from web61302.mail.yahoo.com (web61302.mail.yahoo.com [216.155.196.145]) by mx1.FreeBSD.org (Postfix) with SMTP id A015543D31 for ; Mon, 16 Aug 2004 22:52:32 +0000 (GMT) (envelope-from stheg_olloydson@yahoo.com) Message-ID: <20040816225232.20224.qmail@web61302.mail.yahoo.com> Received: from [67.34.130.149] by web61302.mail.yahoo.com via HTTP; Mon, 16 Aug 2004 15:52:32 PDT Date: Mon, 16 Aug 2004 15:52:32 -0700 (PDT) From: stheg olloydson To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: jayobrien@att.net Subject: [OT] Security hole in PuTTY (Windows ssh client) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 22:52:33 -0000 Hello, Sorry for the completely OT post, but I saw two mentions of PuTTY in one day on the list and assume it must be a popular piece of Windows software. The SANS Institute "@Risk" newsletter dated 8AUG04 contains the following item regarding PuTTY: 04.31.4 CVE: Not Available Platform: Third Party Windows Apps Title: PuTTY Remote Buffer Overflow Description: PuTTY is a free Telnet and SSH client. It has been reported that PuTTY is subject to a pre-authentication buffer overflow that can allow malicious servers to execute code on a client machine as it attempts to negotiate connection. PuTTY 0.54 and previous versions are vulnerable. Ref: http://www.coresecurity.com/common/showdoc.php?idx=417&idxseccion=10 Again, sorry for the OT post, but it seems (at least) very marginally relevant to some. We now return you regularly scheduled program of FBSD.... Regards, Stheg __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 23:05:00 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93A6916A4CE for ; Mon, 16 Aug 2004 23:05:00 +0000 (GMT) Received: from mproxy.gmail.com (mproxy.gmail.com [216.239.56.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D97F43D55 for ; Mon, 16 Aug 2004 23:05:00 +0000 (GMT) (envelope-from dhrider@gmail.com) Received: by mproxy.gmail.com with SMTP id x17so34403cwb for ; Mon, 16 Aug 2004 16:05:00 -0700 (PDT) Received: by 10.11.120.63 with SMTP id s63mr113239cwc; Mon, 16 Aug 2004 15:38:20 -0700 (PDT) Message-ID: <89ceee704081615384f4e7055@mail.gmail.com> Date: Mon, 16 Aug 2004 15:38:19 -0700 From: Dan Finn To: Steven Friedrich In-Reply-To: <200408161817.41375.StevenFriedrich@InsightBB.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <200408161817.41375.StevenFriedrich@InsightBB.com> cc: FreeBSD-Questions Subject: Re: Gimp port broke? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dan Finn List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 23:05:00 -0000 Don't mean to steal your spot light but here's the errors I got this morning when trying to build: In file included from /usr/local/include/libwmf/types.h:26, from /usr/local/include/libwmf/api.h:25, from wmf.c:33: /usr/local/include/freetype2/freetype/freetype.h:20:2: #error "`ft2build.h' hasn't been included yet!" /usr/local/include/freetype2/freetype/freetype.h:21:2: #error "Please always use macros to include FreeType header files." /usr/local/include/freetype2/freetype/freetype.h:22:2: #error "Example:" /usr/local/include/freetype2/freetype/freetype.h:23:2: #error " #include " /usr/local/include/freetype2/freetype/freetype.h:24:2: #error " #include FT_FREETYPE_H" gmake[3]: *** [wmf.o] Error 1 gmake[3]: Leaving directory `/usr/ports/graphics/gimp/work/gimp-2.0.4/plug-ins/common' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/graphics/gimp/work/gimp-2.0.4/plug-ins' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/graphics/gimp/work/gimp-2.0.4' gmake: *** [all] Error 2 *** Error code 2 On Mon, 16 Aug 2004 18:17:41 -0400, Steven Friedrich wrote: > I'm running 4.10-STABLE. > > Here's my uname output: > root@lightning(p0)/usr/ports/graphics/gimp 115% uname -a > FreeBSD lightning.StevenFriedrich.org 4.10-STABLE FreeBSD 4.10-STABLE #49: Tue > Aug 10 23:10:38 EDT 2004 > root@lightning.StevenFriedrich.org:/usr/obj/usr/src/sys/LIGHTNING i386 > > Here's the error: > /usr/local/lib/libxml2.so.5: undefined reference to `pthread_equal' > /usr/local/lib/libxml2.so.5: undefined reference to `pthread_once' > gmake[3]: *** [svg] Error 1 > > The log of the port build is 1.1MB and will be sent upon request. > > _______________________________________________ > 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 Aug 16 23:14:59 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9F5916A4CE for ; Mon, 16 Aug 2004 23:14:59 +0000 (GMT) Received: from sccimhc91.asp.att.net (sccimhc91.asp.att.net [63.240.76.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FC9743D46 for ; Mon, 16 Aug 2004 23:14:59 +0000 (GMT) (envelope-from StevenFriedrich@insightbb.com) Received: from [192.168.1.239] (12-202-28-183.client.insightbb.com[12.202.28.183]) by sccimhc91.asp.att.net (sccimhc91) with ESMTP id <20040816231459i9100bvckue>; Mon, 16 Aug 2004 23:14:59 +0000 From: Steven Friedrich To: "FreeBSD-Questions" Date: Mon, 16 Aug 2004 19:14:58 -0400 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408161914.58781.StevenFriedrich@InsightBB.com> Subject: FreeBSD search question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 23:15:00 -0000 I'm using the FreeBSD search at the bottom of the home page. I searched for libc_r and I got pages that don't have that in them. Why? Is the underscore a problem? Also, is there anyway to limit hits to a particular language? From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 23:23:22 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 035AA16A4CE for ; Mon, 16 Aug 2004 23:23:22 +0000 (GMT) Received: from mtiwmhc11.worldnet.att.net (mtiwmhc11.worldnet.att.net [204.127.131.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B05C843D1F for ; Mon, 16 Aug 2004 23:23:21 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc11) with ESMTP id <2004081623232011100bmslie> (Authid: jayobrien@att.net); Mon, 16 Aug 2004 23:23:20 +0000 Message-ID: <412141E7.60205@att.net> Date: Mon, 16 Aug 2004 16:23:19 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: stheg olloydson References: <20040816225232.20224.qmail@web61302.mail.yahoo.com> In-Reply-To: <20040816225232.20224.qmail@web61302.mail.yahoo.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: questions@freebsd.org Subject: Re: [OT] Security hole in PuTTY (Windows ssh client) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 23:23:22 -0000 stheg olloydson wrote: > Hello, > > Sorry for the completely OT post, but I saw two mentions of PuTTY in > one day on the list and assume it must be a popular piece of Windows > software. The SANS Institute "@Risk" newsletter dated 8AUG04 contains > the following item regarding PuTTY: > > 04.31.4 CVE: Not Available > Platform: Third Party Windows Apps > Title: PuTTY Remote Buffer Overflow > Description: PuTTY is a free Telnet and SSH client. It has been > reported that PuTTY is subject to a pre-authentication buffer overflow > that can allow malicious servers to execute code on a client machine > as it attempts to negotiate connection. PuTTY 0.54 and previous > versions are vulnerable. > Ref: > http://www.coresecurity.com/common/showdoc.php?idx=417&idxseccion=10 > > Again, sorry for the OT post, but it seems (at least) very marginally > relevant to some. We now return you regularly scheduled program of > FBSD.... > > Regards, > > Stheg > > I think what you are saying is that if you use PuTTY as a client application that you should be concerned about what server you connect to? From what you are saying, I suspect that if the only use is to connect to your own (FreeBSD) server, you are probably ok? Jay O'Brien From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 23:43:09 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1611516A4CE for ; Mon, 16 Aug 2004 23:43:09 +0000 (GMT) Received: from smtp809.mail.sc5.yahoo.com (smtp809.mail.sc5.yahoo.com [66.163.168.188]) by mx1.FreeBSD.org (Postfix) with SMTP id AE37543D2D for ; Mon, 16 Aug 2004 23:43:08 +0000 (GMT) (envelope-from krinklyfig@spymac.com) Received: from unknown (HELO smogmonster.com) (jtinnin@pacbell.net@64.171.1.210 with login) by smtp809.mail.sc5.yahoo.com with SMTP; 16 Aug 2004 23:43:02 -0000 From: Joshua Tinnin To: freebsd-questions@freebsd.org Date: Mon, 16 Aug 2004 16:43:31 -0700 User-Agent: KMail/1.6.2 References: <20040816225232.20224.qmail@web61302.mail.yahoo.com> In-Reply-To: <20040816225232.20224.qmail@web61302.mail.yahoo.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408161643.31387.krinklyfig@spymac.com> Subject: Re: [OT] Security hole in PuTTY (Windows ssh client) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: krinklyfig@spymac.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 23:43:09 -0000 On Monday 16 August 2004 03:52 pm, stheg olloydson wrote: > Hello, > > Sorry for the completely OT post, but I saw two mentions of PuTTY in > one day on the list and assume it must be a popular piece of Windows > software. It is written for *nix and win32, and it has an MIT license. > The SANS Institute "@Risk" newsletter dated 8AUG04 contains > the following item regarding PuTTY: > > 04.31.4 CVE: Not Available > Platform: Third Party Windows Apps > Title: PuTTY Remote Buffer Overflow > Description: PuTTY is a free Telnet and SSH client. It has been > reported that PuTTY is subject to a pre-authentication buffer > overflow that can allow malicious servers to execute code on a client > machine as it attempts to negotiate connection. PuTTY 0.54 and > previous versions are vulnerable. > Ref: > http://www.coresecurity.com/common/showdoc.php?idx=417&idxseccion=10 You forgot to include this (from the link above): *Solution/Vendor Information/Workaround:* PuTTY 0.55 fixes these vulnerabilities. It is available at: http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html PuTTY maintainers recommend that everybody upgrade to 0.55 as soon as possible. -- The latest PuTTY version in ports is 0.55. - jt From owner-freebsd-questions@FreeBSD.ORG Mon Aug 16 23:58:07 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6212A16A4CE for ; Mon, 16 Aug 2004 23:58:07 +0000 (GMT) Received: from imf24aec.mail.bellsouth.net (imf24aec.mail.bellsouth.net [205.152.59.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 392F343D2D for ; Mon, 16 Aug 2004 23:57:58 +0000 (GMT) (envelope-from cubicool@bellsouth.net) Received: from ripley ([67.34.27.75]) by imf24aec.mail.bellsouth.net (InterMail vM.5.01.06.08 201-253-122-130-108-20031117) with SMTP id <20040816235757.FGJD1756.imf24aec.mail.bellsouth.net@ripley> for ; Mon, 16 Aug 2004 19:57:57 -0400 Message-ID: <001301c483a1$71217d50$0401a8c0@ripley> From: "Cubicool" To: Date: Mon, 16 Aug 2004 07:58:08 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Subject: 802.1x X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 23:58:07 -0000 I will be attending college in a few weeks. The network at this uni requires 802.1x authentication over wireless connections. I've scoured google all over and discovered Open1x--which has openly dropped all BSD support--and a guy who has ported Open1x, but only on wired connections. I'm a decent programmer in some regards, but not so much C/system code, so it's not like I could just make the neccesary adjustments and recompile. :) Is 802.1x supported on FreeBSD yet? I know I can build open1x on a Linux box, but that is my ABSOLUTE LATE resort. I really want to keep using FreeBSD, but if I can't access the school's network I won't be able to continue doing so. What's the status of this in FreeBSD, including the upcoming 5.3? Am I just out of luck? Regards, Cubicool ------------------------------ http://www.the-bob.org/~jlmoles ------------------------------ AIM: cubicool MSN: cubicool@bellsouth.net IRC: cubicool :: irc.openprojects.net ------------------------------ "If the automobile had followed the same development cycle as the computer, a Rolls-Royce would today cost $100, get a million miles per gallon, and explode once a year, killing everyone inside." - Robert X. Cringely. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 00:03:37 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6FE016A4CE for ; Tue, 17 Aug 2004 00:03:37 +0000 (GMT) Received: from gromit.dlib.vt.edu (gromit.dlib.vt.edu [128.173.49.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70D1D43D3F for ; Tue, 17 Aug 2004 00:03:37 +0000 (GMT) (envelope-from paul@gromit.dlib.vt.edu) Received: from hawkwind.Chelsea-Ct.Org (pool-151-199-91-61.roa.east.verizon.net [151.199.91.61]) by gromit.dlib.vt.edu (8.12.11/8.12.11) with ESMTP id i7H03Yjo001768 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 16 Aug 2004 20:03:36 -0400 (EDT) (envelope-from paul@gromit.dlib.vt.edu) Received: from [192.168.1.25] (zappa [192.168.1.25])i7H03Sw8013626; Mon, 16 Aug 2004 20:03:29 -0400 (EDT) From: Paul Mather To: tech39@tech39.net In-Reply-To: <20040816231616.9E7F016A4FC@hub.freebsd.org> References: <20040816231616.9E7F016A4FC@hub.freebsd.org> Content-Type: text/plain Message-Id: <1092701006.81118.117.camel@zappa.Chelsea-Ct.Org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 16 Aug 2004 20:03:27 -0400 Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: Help me ObwanKnobi your my only hope. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 00:03:37 -0000 On Mon, 16 Aug 2004 14:11:14 -0700, tech39@tech39.net wrote: > I have spent many usless hours looking at Freebsd.org, google.com and > yahoo.com in an attempt to find a ftpd that I can cap / choke the > outgoing bandwith. > > Do you know of any such animals? Yes, ProFTPD (ftp/proftpd in ports) will let you do this flexibly. See the TransferRate directive used in proftpd.conf for details. (E.g., http://www.proftpd.org/docs/directives/linked/config_ref_TransferRate.html) Cheers, Paul. -- e-mail: paul@gromit.dlib.vt.edu "Without music to decorate it, time is just a bunch of boring production deadlines or dates by which bills must be paid." --- Frank Vincent Zappa From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 00:06:29 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5C8816A4CF for ; Tue, 17 Aug 2004 00:06:29 +0000 (GMT) Received: from web61302.mail.yahoo.com (web61302.mail.yahoo.com [216.155.196.145]) by mx1.FreeBSD.org (Postfix) with SMTP id 3AC7043D39 for ; Tue, 17 Aug 2004 00:06:29 +0000 (GMT) (envelope-from stheg_olloydson@yahoo.com) Message-ID: <20040817000628.46249.qmail@web61302.mail.yahoo.com> Received: from [67.34.130.149] by web61302.mail.yahoo.com via HTTP; Mon, 16 Aug 2004 17:06:28 PDT Date: Mon, 16 Aug 2004 17:06:28 -0700 (PDT) From: stheg olloydson To: Jay O'Brien In-Reply-To: <412141E7.60205@att.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: questions@freebsd.org Subject: Re: [OT] Security hole in PuTTY (Windows ssh client) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 00:06:29 -0000 it was said: > I think what you are saying is that if you use PuTTY as a client > application that you should be concerned about what server you > connect to? From what you are saying, I suspect that if the only > use is to connect to your own (FreeBSD) server, you are probably ok? > > Jay O'Brien Hello, To quote from the link: In SSH2, an attacker impersonating a trusted host can launch an attack before the client has the ability to determine the difference between the trusted and fake host. This attack is performed before host key verification. Presuming one were connecting over "private" network IP space by IP address only, then I believe you are correct. I can imagine scenarios in which if one were to connect over the Internet or even into a different network segment using DNS that one would be at risk. The vendor has a patched the hole and released 0.55, recommending all users update. If I were using this software, I would take their advice. Note: Apparently, a "Unix" version exists, and the source code is available under the MIT Licence. So I guess my post was "completely" OT. HTH, Stheg __________________________________ Do you Yahoo!? Y! Messenger - Communicate in real time. Download now. http://messenger.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 00:37:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84D1416A4CE for ; Tue, 17 Aug 2004 00:37:05 +0000 (GMT) Received: from hotmail.com (bay22-f38.bay22.hotmail.com [64.4.16.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7295843D31 for ; Tue, 17 Aug 2004 00:37:05 +0000 (GMT) (envelope-from ryanlamb82@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 16 Aug 2004 17:37:05 -0700 Received: from 67.174.62.89 by by22fd.bay22.hotmail.msn.com with HTTP; Tue, 17 Aug 2004 00:37:04 GMT X-Originating-IP: [67.174.62.89] X-Originating-Email: [ryanlamb82@hotmail.com] X-Sender: ryanlamb82@hotmail.com From: "Ryan Lamb" To: freebsd-questions@freebsd.org Date: Mon, 16 Aug 2004 17:37:04 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 17 Aug 2004 00:37:05.0349 (UTC) FILETIME=[51F40F50:01C483F2] Subject: filesystem full on install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 00:37:05 -0000 I'm trying to install FreeBSD for the first time but I am having an error that I can't figure out. I have googled for an answer and read mailing list posts but still can't find what I'm looking for. First, when the disk boots and checks the hardware, it does something strange to my network card that makes my router light turn yellow instead of green indicating 10 Mbps mode instead of 100. Anyway, once I get ready to do the install, it can't contact the ftp site, it just stays forever at connecting but it does change my network card back so the router light is green. If I do a control c to cancel it and restart installation, I can contact the site. However, when it starts to install, it fails saying the filesystem is full. This can't be. It's a 40Gb drive. I started by overwriting my hd using a utility called boot and nuke. Then I allocated the whole thing to freebsd and made that partition bootable. Then in disklabel, I hit "a" to do a default setup. I've tried several different things in disklabel and I wipe my disk clean between each try and nothing seems to work. Any help would be appreciated. Thanks. _________________________________________________________________ Check out Election 2004 for up-to-date election news, plus voter tools and more! http://special.msn.com/msn/election2004.armx From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 00:59:09 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D96716A4CE for ; Tue, 17 Aug 2004 00:59:09 +0000 (GMT) Received: from mail3.panix.com (mail3.panix.com [166.84.1.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2619C43D2F for ; Tue, 17 Aug 2004 00:59:09 +0000 (GMT) (envelope-from jester@panix.com) Received: from panix2.panix.com (panix2.panix.com [166.84.1.2]) by mail3.panix.com (Postfix) with ESMTP id 4B65F9822A; Mon, 16 Aug 2004 20:59:08 -0400 (EDT) Received: (from jester@localhost) by panix2.panix.com (8.11.6p2-a/8.8.8/PanixN1.1) id i7H0x7e24628; Mon, 16 Aug 2004 20:59:07 -0400 (EDT) Date: Mon, 16 Aug 2004 20:59:07 -0400 From: Jesse Sheidlower To: Your Name Message-ID: <20040817005907.GA21349@panix.com> References: <20040816195136.62744.qmail@web53404.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040816195136.62744.qmail@web53404.mail.yahoo.com> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: Frequent crashes with Mozilla and Firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 00:59:09 -0000 On Mon, Aug 16, 2004 at 12:51:36PM -0700, Your Name wrote: > In the last few weeks ive started getting a number of > crashes using either Mozilla or Firefox. im using the > newest version of each from Ports, on FreeBSD 4.9. Sorry for the "me too" post, but since people are reporting different results: I have two main computers, one running 4.10 and one running 5.2-CURRENT, but with otherwise similar setups. GNOME in both cases. The CURRENT machine is fine; I'm pretty sure I've never had a crash in several months of operation. The 4.10 machine is similar to the OP's report: I get relatively frequent but unpredictable crashes on complex Web pages, with both Mozilla and Firefox. It's annoying, and I'd love to know causes and solutions! Jesse Sheidlower From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 01:21:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B95A616A4CE for ; Tue, 17 Aug 2004 01:21:05 +0000 (GMT) Received: from mtiwmhc11.worldnet.att.net (mtiwmhc11.worldnet.att.net [204.127.131.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23E4F43D60 for ; Tue, 17 Aug 2004 01:21:05 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc11) with ESMTP id <2004081701210411100bnjoje> (Authid: jayobrien@att.net); Tue, 17 Aug 2004 01:21:04 +0000 Message-ID: <41215D7F.902@att.net> Date: Mon, 16 Aug 2004 18:21:03 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: How to start clean install again? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 01:21:05 -0000 What's the best way to erase an installation of FreeBSD completely from a HD and start over? I'm installing 4.10 from am ISO CD, and it installs fine. However, I would like to start over from scratch and it "remembers" some of what was on the HD from the last install. If I were in Windows/DOS I would just "format C:" but that doesn't seem to be an option here. Jay O'Brien Rio Linda, CA USA From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 01:24:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1206516A4CE for ; Tue, 17 Aug 2004 01:24:42 +0000 (GMT) Received: from kende.com (ns1.kende.com [66.17.131.94]) by mx1.FreeBSD.org (Postfix) with SMTP id 9512443D2F for ; Tue, 17 Aug 2004 01:24:41 +0000 (GMT) (envelope-from andras@kende.com) Received: (qmail 92387 invoked by uid 0); 17 Aug 2004 01:24:52 -0000 Received: from unknown (HELO a) (24.1.130.29) by ns1.kende.com with SMTP; 17 Aug 2004 01:24:52 -0000 From: "Andras Kende" To: "'Aaron Dalton'" , Date: Mon, 16 Aug 2004 20:24:40 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 In-Reply-To: <200408161505.05971.aaron@daltons.ca> Thread-Index: AcSD1Uhz2jYiCpAsRRmO87ewsltXpAAI63Dg Message-Id: <20040817012441.9512443D2F@mx1.FreeBSD.org> Subject: RE: ProFTPd: 229 Entering Extended Passive Mode X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 01:24:42 -0000 -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Aaron Dalton Sent: Monday, August 16, 2004 4:05 PM To: freebsd-questions@freebsd.org Subject: Re: ProFTPd: 229 Entering Extended Passive Mode As a follow-up, this happens even if I replace ProFTPd with the built-in ftpd via inetd. How do I eliminate this delay? Cheers! -- Aaron Dalton http://aaron.daltons.ca _______________________________________________ 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" Aaron, Is there a firewall running on that system or between server and client? Andras Kende http://www.kende.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 01:28:13 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A634916A4CE for ; Tue, 17 Aug 2004 01:28:13 +0000 (GMT) Received: from kende.com (ns1.kende.com [66.17.131.94]) by mx1.FreeBSD.org (Postfix) with SMTP id 463A843D1D for ; Tue, 17 Aug 2004 01:28:13 +0000 (GMT) (envelope-from andras@kende.com) Received: (qmail 92781 invoked by uid 0); 17 Aug 2004 01:28:24 -0000 Received: from unknown (HELO a) (24.1.130.29) by ns1.kende.com with SMTP; 17 Aug 2004 01:28:24 -0000 From: "Andras Kende" To: "'Jay O'Brien'" , "'FreeBSD - questions'" Date: Mon, 16 Aug 2004 20:28:13 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 In-Reply-To: <41215D7F.902@att.net> Thread-Index: AcSD+JSD3cjBF2rkRc24z+de9NEjAAAAHPdg Message-Id: <20040817012813.463A843D1D@mx1.FreeBSD.org> Subject: RE: How to start clean install again? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 01:28:13 -0000 -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Jay O'Brien Sent: Monday, August 16, 2004 8:21 PM To: FreeBSD - questions Subject: How to start clean install again? What's the best way to erase an installation of FreeBSD completely from a HD and start over? I'm installing 4.10 from am ISO CD, and it installs fine. However, I would like to start over from scratch and it "remembers" some of what was on the HD from the last install. If I were in Windows/DOS I would just "format C:" but that doesn't seem to be an option here. Jay O'Brien Rio Linda, CA USA _______________________________________________ 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" Jay, Boot from CD as usual at When displaying the hard disk with FreeBSD slice click on Delete key... Then just recreate the partition as before... Andras Kende http://www.kende.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 01:28:36 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E355816A4CE for ; Tue, 17 Aug 2004 01:28:36 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8EB343D2F for ; Tue, 17 Aug 2004 01:28:36 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id CC11E69A8D; Mon, 16 Aug 2004 21:28:35 -0400 (EDT) Date: Mon, 16 Aug 2004 21:28:34 -0400 From: Bill Moran To: Jay O'Brien Message-Id: <20040816212834.5c3920b3.wmoran@potentialtech.com> In-Reply-To: <41215D7F.902@att.net> References: <41215D7F.902@att.net> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: questions@freebsd.org Subject: Re: How to start clean install again? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 01:28:37 -0000 Jay O'Brien wrote: > What's the best way to erase an installation of FreeBSD > completely from a HD and start over? I'm installing 4.10 > from am ISO CD, and it installs fine. However, I would > like to start over from scratch and it "remembers" some > of what was on the HD from the last install. If I were > in Windows/DOS I would just "format C:" but that doesn't > seem to be an option here. During the reinstall, when it comes time to slice the disk with fdisk, simply delete the previous slice and recreate it. That will blow away anything that existed before. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 01:43:14 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80A1416A4CE for ; Tue, 17 Aug 2004 01:43:14 +0000 (GMT) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 207F843D46 for ; Tue, 17 Aug 2004 01:43:14 +0000 (GMT) (envelope-from grog@lemis.com) Received: from blackwater.lemis.com (blackwater.lemis.com [192.109.197.80]) by ozlabs.org (Postfix) with ESMTP id 60EC12BD71 for ; Tue, 17 Aug 2004 11:43:12 +1000 (EST) Received: by blackwater.lemis.com (Postfix, from userid 1004) id A4FDD511FA; Tue, 17 Aug 2004 11:13:10 +0930 (CST) Date: Tue, 17 Aug 2004 11:13:10 +0930 From: Greg 'groggy' Lehey To: Mario Doria Message-ID: <20040817014310.GG81257@wantadilla.lemis.com> References: <200407080157.35126.mariodoria@yahoo.com> <20040708070522.GK63489@wantadilla.lemis.com> <200407080221.30895.mariodoria@yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+QwZB9vYiNIzNXIj" Content-Disposition: inline In-Reply-To: <200407080221.30895.mariodoria@yahoo.com> User-Agent: Mutt/1.4.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 cc: freebsd-questions@freebsd.org Subject: Vinum in -CURRENT (was: Vinum panic on boot) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 01:43:14 -0000 --+QwZB9vYiNIzNXIj Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thursday, 8 July 2004 at 2:21:30 -0500, Mario Doria wrote: > Hi, > > Another vinum question. I have a machine running 5-CURRENT sources from > yesterday (yes I know the dangers of running CURRENT and I did read the > mailing list archives).=20 Well, the issue was discussed there. > I think I found a bug, if I add start_vinum=3D"YES" to /etc/rc.conf, > at boot I get a panic with a message saying: > > panic: vinum: dangling vnode > > Im sorry I do not have the complete message, it is the machine I am using > as a gateway and I prefered to get online and find some more information. > I'd be happy to compile a debugging kernel if necessary. Well, is the least that people will ask of you when running -CURRENT. But since this problem has already been reported, there's no longer much point. The current status of Vinum in -CURRENT is that it is being rewritten. The introduction of the GEOM layer has badly broken Vinum, and it has been decided better to rewrite it than to fix it. It'll be a while before it's smooth again. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply or reply to the original recipients. For more information, see http://www.lemis.com/questions.html Note: I discard all HTML mail unseen. Finger grog@FreeBSD.org for PGP public key. See complete headers for address and phone numbers. --+QwZB9vYiNIzNXIj Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQFBIWKuIubykFB6QiMRAr7KAKCaqqDS8dy42/e7nrWqNnz9ZPzFLwCfU2Ob ACE/Al/ZFpnrtBpivEpcZU8= =cTeJ -----END PGP SIGNATURE----- --+QwZB9vYiNIzNXIj-- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 01:55:22 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C13616A4CE for ; Tue, 17 Aug 2004 01:55:22 +0000 (GMT) Received: from priv-edtnes40.telusplanet.net (outbound05.telus.net [199.185.220.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 239D043D2D for ; Tue, 17 Aug 2004 01:55:22 +0000 (GMT) (envelope-from aaron@daltons.ca) Received: from d137-186-239-215.abhsia.telus.net ([137.186.239.215]) by priv-edtnes40.telusplanet.netESMTP <20040817015521.DKSW20375.priv-edtnes40.telusplanet.net@d137-186-239-215.abhsia.telus.net>; Mon, 16 Aug 2004 19:55:21 -0600 From: Aaron Dalton To: "Andras Kende" Date: Mon, 16 Aug 2004 19:55:55 -0600 User-Agent: KMail/1.6.2 References: In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408161955.55265.aaron@daltons.ca> cc: freebsd-questions@freebsd.org Subject: Re: ProFTPd: 229 Entering Extended Passive Mode X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 01:55:22 -0000 On August 16, 2004 07:24 pm, Andras Kende wrote: > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Aaron Dalton > Sent: Monday, August 16, 2004 4:05 PM > To: freebsd-questions@freebsd.org > Subject: Re: ProFTPd: 229 Entering Extended Passive Mode > >Is there a firewall running on that system or between server and client? > There is indeed and I finally found an article that speaks about it. The solution was for me to manually enter the "passive" command before transferring. This is odd seeing as it "says" it's entering some form of passive mode, but it's really not. What's even more odd is that for me to make Konqueror work with this server, I had to go to KControl and turn PASV ftp mode OFF! Go figure. Anyway, it seems to work now. Cheers! -- Aaron Dalton http://aaron.daltons.ca From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 02:05:18 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5985516A4CF; Tue, 17 Aug 2004 02:05:18 +0000 (GMT) Received: from mail.cableone.net (scanmail2.cableone.net [24.116.0.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90F9243D49; Tue, 17 Aug 2004 02:05:13 +0000 (GMT) (envelope-from v.velox@vvelox.net) Received: from vixen42.24-119-122-191.cpe.cableone.net (unverified [24.119.122.85]) by smail2.cableone.net (SurgeMail 1.9b) with ESMTP id 13276048 for multiple; Mon, 16 Aug 2004 18:50:01 -0700 Date: Mon, 16 Aug 2004 21:04:28 -0500 From: Vulpes Velox To: Brooks Davis Message-Id: <20040816210428.319c7b1d@vixen42.24-119-122-191.cpe.cableone.net> In-Reply-To: <20040816223356.GA12480@odin.ac.hmc.edu> References: <4120C082.23639.5A6050@localhost> <20040816223356.GA12480@odin.ac.hmc.edu> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Server: High Performance Mail Server - http://surgemail.com cc: jccv@4d.net cc: freebsd-doc@freebsd.org cc: freebsd-questions@freebsd.org cc: tech39@tech39.net Subject: Re: Help me ObwanKnobi your my only hope. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 02:05:18 -0000 On Mon, 16 Aug 2004 15:33:56 -0700 Brooks Davis wrote: > On Mon, Aug 16, 2004 at 02:11:14PM -0700, tech39@tech39.net wrote: > > > > I have spent many usless hours looking at Freebsd.org, google.com > > and yahoo.com in an attempt to find a ftpd that I can cap / choke > > the outgoing bandwith. > > > > Do you know of any such animals? > > dummynet(4) will probably do what you want unless you need to do it > per user. Can be done if you use inetd. Just set up a rule limiting certian users to certian pipes. :) From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 02:14:37 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7905A16A4CE for ; Tue, 17 Aug 2004 02:14:37 +0000 (GMT) Received: from sccimhc92.asp.att.net (sccimhc92.asp.att.net [63.240.76.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C01B43D41 for ; Tue, 17 Aug 2004 02:14:35 +0000 (GMT) (envelope-from StevenFriedrich@insightbb.com) Received: from [192.168.1.239] (12-202-28-183.client.insightbb.com[12.202.28.183]) by sccimhc92.asp.att.net (sccimhc92) with ESMTP id <20040817021434i9200937qve>; Tue, 17 Aug 2004 02:14:34 +0000 From: Steven Friedrich To: freebsd-questions@freebsd.org Date: Mon, 16 Aug 2004 22:14:33 -0400 User-Agent: KMail/1.6.2 References: In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408162214.33539.StevenFriedrich@InsightBB.com> Subject: Re: filesystem full on install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 02:14:37 -0000 Your router light turning yellow could be an indication that it has been reset and has entered an "auto-negotiation" mode where it determines what speed to configure itself as, i.e., either 10 or 100. Try waiting until it turns green to proceed with the install, rather than aborting and restarting. I think it should take no more than 30 seconds, but time it with a stopwatch. Anything over 2 minutes is WAY too long. What kind of router are you talking about? On Monday 16 August 2004 08:37 pm, Ryan Lamb wrote: > I'm trying to install FreeBSD for the first time but I am having an error > that I can't figure out. I have googled for an answer and read mailing > list posts but still can't find what I'm looking for. First, when the disk > boots and checks the hardware, it does something strange to my network card > that makes my router light turn yellow instead of green indicating 10 Mbps > mode instead of 100. Anyway, once I get ready to do the install, it can't > contact the ftp site, it just stays forever at connecting but it does > change my network card back so the router light is green. If I do a > control c to cancel it and restart installation, I can contact the site. > However, when it starts to install, it fails saying the filesystem is full. > This can't be. It's a 40Gb drive. I started by overwriting my hd using a > utility called boot and nuke. Then I allocated the whole thing to freebsd > and made that partition bootable. Then in disklabel, I hit "a" to do a > default setup. I've tried several different things in disklabel and I wipe > my disk clean between each try and nothing seems to work. Any help would > be appreciated. Thanks. > > _________________________________________________________________ > Check out Election 2004 for up-to-date election news, plus voter tools and > more! http://special.msn.com/msn/election2004.armx > > _______________________________________________ > 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 Aug 17 02:19:01 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF81416A4CE for ; Tue, 17 Aug 2004 02:19:01 +0000 (GMT) Received: from sccimhc92.asp.att.net (sccimhc92.asp.att.net [63.240.76.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89DE543D41 for ; Tue, 17 Aug 2004 02:19:01 +0000 (GMT) (envelope-from StevenFriedrich@insightbb.com) Received: from [192.168.1.239] (12-202-28-183.client.insightbb.com[12.202.28.183]) by sccimhc92.asp.att.net (sccimhc92) with ESMTP id <20040817021901i9200927pre>; Tue, 17 Aug 2004 02:19:01 +0000 From: Steven Friedrich To: freebsd-questions@freebsd.org Date: Mon, 16 Aug 2004 22:19:00 -0400 User-Agent: KMail/1.6.2 References: <200408161817.41375.StevenFriedrich@InsightBB.com> In-Reply-To: <200408161817.41375.StevenFriedrich@InsightBB.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408162219.00457.StevenFriedrich@InsightBB.com> Subject: Re: Gimp port broke? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 02:19:01 -0000 Alright, I found the problem. I reinstalled libxml2 without thread support (yea, it said it might break other ports), and now gimp is installed. But that begs the question: can't Gimp be built multithreaded on FreeBSD? On Monday 16 August 2004 06:17 pm, Steven Friedrich wrote: > I'm running 4.10-STABLE. > > Here's my uname output: > root@lightning(p0)/usr/ports/graphics/gimp 115% uname -a > FreeBSD lightning.StevenFriedrich.org 4.10-STABLE FreeBSD 4.10-STABLE #49: > Tue Aug 10 23:10:38 EDT 2004 > root@lightning.StevenFriedrich.org:/usr/obj/usr/src/sys/LIGHTNING i386 > > > Here's the error: > /usr/local/lib/libxml2.so.5: undefined reference to `pthread_equal' > /usr/local/lib/libxml2.so.5: undefined reference to `pthread_once' > gmake[3]: *** [svg] Error 1 > > > The log of the port build is 1.1MB and will be sent upon request. > > > > > _______________________________________________ > 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 Aug 17 02:19:10 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ECC316A4CE for ; Tue, 17 Aug 2004 02:19:10 +0000 (GMT) Received: from kende.com (ns1.kende.com [66.17.131.94]) by mx1.FreeBSD.org (Postfix) with SMTP id 99F5243D1F for ; Tue, 17 Aug 2004 02:19:09 +0000 (GMT) (envelope-from andras@kende.com) Received: (qmail 97162 invoked by uid 0); 17 Aug 2004 02:19:21 -0000 Received: from unknown (HELO a) (24.1.130.29) by ns1.kende.com with SMTP; 17 Aug 2004 02:19:21 -0000 From: "Andras Kende" To: Date: Mon, 16 Aug 2004 21:19:08 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 In-Reply-To: <200408161955.55265.aaron@daltons.ca> Thread-Index: AcSD/UiHt5x23/axQQ2QieFHaHm4PAAAq/aw Message-Id: <20040817021909.99F5243D1F@mx1.FreeBSD.org> cc: aaron@daltons.ca Subject: RE: ProFTPd: 229 Entering Extended Passive Mode X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 02:19:10 -0000 -----Original Message----- From: Aaron Dalton [mailto:aaron@daltons.ca] Sent: Monday, August 16, 2004 8:56 PM To: Andras Kende Cc: freebsd-questions@freebsd.org Subject: Re: ProFTPd: 229 Entering Extended Passive Mode On August 16, 2004 07:24 pm, Andras Kende wrote: > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Aaron Dalton > Sent: Monday, August 16, 2004 4:05 PM > To: freebsd-questions@freebsd.org > Subject: Re: ProFTPd: 229 Entering Extended Passive Mode > >Is there a firewall running on that system or between server and client? > There is indeed and I finally found an article that speaks about it. The solution was for me to manually enter the "passive" command before transferring. This is odd seeing as it "says" it's entering some form of passive mode, but it's really not. What's even more odd is that for me to make Konqueror work with this server, I had to go to KControl and turn PASV ftp mode OFF! Go figure. Anyway, it seems to work now. Cheers! -- Aaron Dalton http://aaron.daltons.ca Aaron, You could do it like: Proftpd.conf: PassivePorts 10000 10100 And open ports 10000-10100 on the firewall config.. This way both passive and active client could connect.. http://slacksite.com/other/ftp.html http://slacksite.com/other/ftp-appendix1.html Best regards, Andras Kende http://www.kende.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 02:29:31 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54AB616A4CE; Tue, 17 Aug 2004 02:29:31 +0000 (GMT) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1F7043D3F; Tue, 17 Aug 2004 02:29:30 +0000 (GMT) (envelope-from grog@lemis.com) Received: from blackwater.lemis.com (blackwater.lemis.com [192.109.197.80]) by ozlabs.org (Postfix) with ESMTP id BEA7B2BD43; Tue, 17 Aug 2004 12:29:28 +1000 (EST) Received: by blackwater.lemis.com (Postfix, from userid 1004) id E854A511FA; Tue, 17 Aug 2004 11:59:26 +0930 (CST) Date: Tue, 17 Aug 2004 11:59:26 +0930 From: Greg 'groggy' Lehey To: FreeBSD Questions , FreeBSD Hackers Message-ID: <20040817022926.GK81257@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/ZYM6PqDyfNytx60" Content-Disposition: inline User-Agent: Mutt/1.4.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 cc: BSD User Group of Adelaide cc: LinuxSA Subject: Samsung Cordless Mouse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 02:29:31 -0000 --/ZYM6PqDyfNytx60 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline More by accident than by design, I find myself the owner of a Samsung PS/2 Cordless Mouse. To make identification easier, it doesn't have a model number, so I assume it's the only one they made. This mouse has five buttons: the normal three on top, and one on each side. I can't find a way to get the side buttons to work, and looking on the web hasn't shown anything of interest. I don't suppose anybody knows this mouse, though I'd be interested in hearing if somebody has. My real question is: how can I enable the side buttons? There's obviously some kind of initialization sequence that is performed by the Microsoft drivers included with the mouse, but how do I find out what they do? Is there some utility that runs under Microsoft and snoops what's going on on the PS/2 port? I know of something similar for USB, but so far I've drawn a blank for PS/2. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply or reply to the original recipients. For more information, see http://www.lemis.com/questions.html Note: I discard all HTML mail unseen. Finger grog@FreeBSD.org for PGP public key. See complete headers for address and phone numbers. --/ZYM6PqDyfNytx60 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQFBIW2GIubykFB6QiMRAp0jAJ9nacG+UU6Nagb2ieGE1iV5Shjd8gCffKdC fAEDf4wpPl7qmmeqwqzbX/M= =BPu/ -----END PGP SIGNATURE----- --/ZYM6PqDyfNytx60-- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 02:41:40 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD03616A4CE for ; Tue, 17 Aug 2004 02:41:40 +0000 (GMT) Received: from galilee.polands.org (CPE-24-208-53-189.new.rr.com [24.208.53.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id D567643D2F for ; Tue, 17 Aug 2004 02:41:39 +0000 (GMT) (envelope-from doug@polands.org) Received: from [172.16.1.35] (jericho.polands.org [172.16.1.35]) by galilee.polands.org (8.12.9/8.12.9) with ESMTP id i7H2h9Gk018253; Mon, 16 Aug 2004 21:43:10 -0500 (CDT) (envelope-from doug@polands.org) Message-ID: <41217061.9010904@polands.org> Date: Mon, 16 Aug 2004 21:41:37 -0500 From: Doug Poland User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040811 X-Accept-Language: en-us, en MIME-Version: 1.0 To: krinklyfig@spymac.com References: <20040816195136.62744.qmail@web53404.mail.yahoo.com> <20040816203054.GK85541@omniresources.com> <200408161430.02630.krinklyfig@spymac.com> In-Reply-To: <200408161430.02630.krinklyfig@spymac.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: Frequent crashes with Mozilla and Firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 02:41:40 -0000 Joshua Tinnin wrote: >>Two sites that failed consistently for me were >>http://www.pga.com and >>http://www.statefarm.com >> >>The browser versions are >> >> Mozilla 1.7.2 >> Mozilla Firefox 0.9.3 >> >>Both versions were built from ports the day after the port was >>committed. All other ports are up-to-date. > > > I don't know if this would be helpful, but I'm testing both sites at the same > time (tabbed) with Mozilla and Firefox, and I'm not having problems - am > clicking through many links with both browsers fetching on both tabs (and > Mozilla also has other tabs open). I'm running 5.2.1-RELEASE-p9 and have the > same versions of Mozilla and Firefox as you do, and all my ports are also > up-to-date. Both browsers have Flash, Java and scripting enabled. If it means > anything, I'm also running X.org and Xfce4. However, the OP it was an > intermittent problem (is it with you as well?), so not sure if I'm just > getting lucky, as I haven't ever surfed either of those sites before. > Hi, I've got flash and java plugins too. The windowmanager doesn't seem to matter, I typically use WindowMaker but am often in XFCE. The problem is intermittent for me. I was consistently crashing on the statefarm login href, but now it's working. Other sites intermittently crash the browser. Hmmm... maybe this warrants a posting to mozilla's bugzilla site. -- Regards, Doug From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 02:45:26 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7364316A4CE for ; Tue, 17 Aug 2004 02:45:26 +0000 (GMT) Received: from gw.visp.com.au (gw.visp.com.au [202.6.158.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6923143D45 for ; Tue, 17 Aug 2004 02:45:25 +0000 (GMT) (envelope-from tim@spyderweb.com.au) Received: from bofh.spyderweb.com.au (202-6-150-37.ip.visp.com.au [202.6.150.37] (may be forged)) by gw.visp.com.au (8.12.8p2/8.12.8) with ESMTP id i7H2jNm2034345 for ; Tue, 17 Aug 2004 12:15:27 +0930 (CST) (envelope-from tim@spyderweb.com.au) Received: from spyderweb.com.au (localhost [127.0.0.1])i7H2iq9r072492 for ; Tue, 17 Aug 2004 12:14:53 +0930 (CST) (envelope-from tim@spyderweb.com.au) Date: Tue, 17 Aug 2004 12:14:52 +0930 From: Tim Aslat To: freebsd-questions@freebsd.org Message-Id: <20040817121452.1b54eb2f@bofh.spyderweb.com.au> In-Reply-To: <20040817022926.GK81257@wantadilla.lemis.com> References: <20040817022926.GK81257@wantadilla.lemis.com> Organization: Spyderweb Consulting X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Samsung Cordless Mouse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 02:45:26 -0000 In the immortal words of Greg 'groggy' Lehey ... > More by accident than by design, I find myself the owner of a Samsung > PS/2 Cordless Mouse. To make identification easier, it doesn't have a > model number, so I assume it's the only one they made. I've come across one of these myself recently, interesting, but practically useless. > This mouse has five buttons: the normal three on top, and one on each > side. I can't find a way to get the side buttons to work, and looking > on the web hasn't shown anything of interest. There are several models and manufacturers of this kind of rodent. You might want to experiment with it in X (man xev is a good place to start), but a simple solution is to see what it's detected as when the system boots up. > I don't suppose anybody knows this mouse, though I'd be interested in > hearing if somebody has. My real question is: how can I enable the > side buttons? There's obviously some kind of initialization sequence > that is performed by the Microsoft drivers included with the mouse, > but how do I find out what they do? Is there some utility that runs > under Microsoft and snoops what's going on on the PS/2 port? I know > of something similar for USB, but so far I've drawn a blank for PS/2. The buttons are probably already enabled, but you might need to mess with some X resources to make them do anything useful. Also, try something like Option "Buttons" "5" int the /etc/X11/XF86Config file > When replying to this message, please copy the original recipients. > If you don't, I may ignore the reply or reply to the original > recipients. For more information, see > http://www.lemis.com/questions.html I'd like to but I don't have control over my upstream providers DNS or mail settings so your mail server rejects anything I send and there's not a lot I can do about it. Cheers Tim -- Tim Aslat Spyderweb Consulting http://www.spyderweb.com.au Phone: +61 0401088479 From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 03:00:20 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5922616A4CE for ; Tue, 17 Aug 2004 03:00:20 +0000 (GMT) Received: from ns1.tiadon.com (SMTP.tiadon.com [69.27.132.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id E682143D31 for ; Tue, 17 Aug 2004 03:00:19 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [69.27.131.0] ([69.27.131.0]) by ns1.tiadon.com with Microsoft SMTPSVC(6.0.3790.0); Mon, 16 Aug 2004 22:03:56 -0500 Message-ID: <412174C0.9080003@daleco.biz> Date: Mon, 16 Aug 2004 22:00:16 -0500 From: "Kevin D. Kinsey, DaleCo, S.P." User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7) Gecko/20040712 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Doug Poland References: <20040816195136.62744.qmail@web53404.mail.yahoo.com> <20040816203054.GK85541@omniresources.com> <200408161430.02630.krinklyfig@spymac.com> <41217061.9010904@polands.org> In-Reply-To: <41217061.9010904@polands.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 17 Aug 2004 03:03:56.0810 (UTC) FILETIME=[D5FE4EA0:01C48406] cc: krinklyfig@spymac.com cc: freebsd-questions@freebsd.org Subject: Re: Frequent crashes with Mozilla and Firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 03:00:20 -0000 Doug Poland wrote: > Joshua Tinnin wrote: > >>> Two sites that failed consistently for me were >> > >>http://www.pga.com and > >>> http://www.statefarm.com >>> >>> The browser versions are >>> >>> Mozilla 1.7.2 >>> Mozilla Firefox 0.9.3 >>> >>> Both versions were built from ports the day after the port was >>> committed. All other ports are up-to-date. >> >> I don't know if this would be helpful, but I'm testing both sites at >> the same time (tabbed) with Mozilla and Firefox, and I'm not having >> problems - am clicking through many links with both browsers fetching >> on both tabs (and Mozilla also has other tabs open). I'm running >> 5.2.1-RELEASE-p9 and have the same versions of Mozilla and Firefox as >> you do, and all my ports are also up-to-date. Both browsers have >> Flash, Java and scripting enabled. If it means anything, I'm also >> running X.org and Xfce4. However, the OP it was an intermittent >> problem (is it with you as well?), so not sure if I'm just getting >> lucky, as I haven't ever surfed either of those sites before. >> > Hi, > > I've got flash and java plugins too. The windowmanager doesn't seem > to matter, I typically use WindowMaker but am often in XFCE. The > problem is intermittent for me. I was consistently crashing on the > statefarm login href, but now it's working. Other sites > intermittently crash the browser. > > Hmmm... maybe this warrants a posting to mozilla's bugzilla site. > I do wonder if it's Flash or Java. I'm watching: http://bugzilla.mozilla.org/show_bug.cgi?id=224427 I run Mozilla on GNOME; starting it in a terminal ["mozilla &"] (instead of a gnome launcher) yields "invalid cast from Gtk-SuperWin to Gtk-SuperWidget" or somesuch error (I may have gotten those casts backwards). I don't know if this is the problem you're having, or if "me too" posts at Bugzilla would help by urging the programmers on to greater deeds, or exacerbate the situation by creating greater angst/hair-pulling, just wondering if this would be helpful/informative to someone... Kevin Kinsey DaleCo, S.P. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 03:24:27 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6D5A16A4CE for ; Tue, 17 Aug 2004 03:24:27 +0000 (GMT) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50E4943D2F for ; Tue, 17 Aug 2004 03:24:27 +0000 (GMT) (envelope-from parv@chvlva.adelphia.net) Received: from default.chvlva.adelphia.net ([69.160.71.53]) by mta10.adelphia.netESMTP <20040817032426.GTRI9204.mta10.adelphia.net@default.chvlva.adelphia.net>; Mon, 16 Aug 2004 23:24:26 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id 6A3AF5570; Mon, 16 Aug 2004 23:26:20 -0400 (EDT) Date: Mon, 16 Aug 2004 23:26:20 -0400 From: Parv To: doug@polands.org Message-ID: <20040817032620.GA5949@moo.holy.cow> Mail-Followup-To: doug@polands.org, Your Name , freebsd-questions@freebsd.org References: <20040816195136.62744.qmail@web53404.mail.yahoo.com> <20040816203054.GK85541@omniresources.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040816203054.GK85541@omniresources.com> cc: freebsd-questions@freebsd.org cc: Your Name Subject: Re: Frequent crashes with Mozilla and Firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 03:24:27 -0000 in message <20040816203054.GK85541@omniresources.com>, wrote doug@polands.org thusly... > > Two sites that failed consistently for me were http://www.pga.com > and http://www.statefarm.com > > The browser versions are > > Mozilla 1.7.2 > Mozilla Firefox 0.9.3 > > Both versions were built from ports the day after the port was > committed. All other ports are up-to-date. No problems here w/ Mozilla 1.7.1,2 (gtk1, no proxy, no Java, no Flash, w/ JavaScript and custom stylesheet) while twiddling links/menus (DHTML) on a page or two of each site listed above. - Parv -- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 03:32:32 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E614316A4CE for ; Tue, 17 Aug 2004 03:32:32 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89E9843D53 for ; Tue, 17 Aug 2004 03:32:32 +0000 (GMT) (envelope-from bsdslut@gmail.com) Received: by mproxy.gmail.com with SMTP id 80so124706rnk for ; Mon, 16 Aug 2004 20:32:25 -0700 (PDT) Received: by 10.11.117.50 with SMTP id p50mr2754cwc; Mon, 16 Aug 2004 20:32:25 -0700 (PDT) Message-ID: <1a33bb9c04081620327818c948@mail.gmail.com> Date: Mon, 16 Aug 2004 23:32:25 -0400 From: FreeBSD User To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Mplayer, GTK2 and gcc33 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: FreeBSD User List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 03:32:33 -0000 FreeBSD fortytwo.zapto.org 4.10-STABLE FreeBSD 4.10-STABLE #0: Sun Aug 15 23:13:02 EDT 2004 root@fortytwo.zapto.org:/usr/obj/usr/src/sys/FORTYTWO i386 # $FreeBSD: ports/multimedia/mplayer/Makefile,v 1.101 2004/08/16 09:43:58 vs Exp $ usr/ports/multimedia/mplayer/Makefile .if defined(WITH_GTK2) && !defined(WITH_GTK1) && !defined(WITHOUT_GUI) .if ( ${OSVERSION} < 500000 ) USE_GCC= 3.3 .endif I'm not understanding why, WITH_GTK2 requires GCC3.3 with mplayer, when all my other GTK2 apps are fine with the base GCC-2.95.4. Is there something special about mplayer, is the GCC version upto the maintainer? Also, is having the two version of GCC on the same system going to cause any problems, or gotchas to look out for? .if defined(WITH_GTK2) && !defined(WITH_GTK1) && !defined(WITHOUT_GUI) .if ( ${OSVERSION} < 500000 ) USE_GCC= 3.3 .endif Thanks. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 03:34:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 592A016A4CE for ; Tue, 17 Aug 2004 03:34:48 +0000 (GMT) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id D66C243D2D for ; Tue, 17 Aug 2004 03:34:47 +0000 (GMT) (envelope-from parv@chvlva.adelphia.net) Received: from default.chvlva.adelphia.net ([69.160.71.53]) by mta11.adelphia.netESMTP <20040817033447.QAWW404.mta11.adelphia.net@default.chvlva.adelphia.net>; Mon, 16 Aug 2004 23:34:47 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id 31FC25570; Mon, 16 Aug 2004 23:36:46 -0400 (EDT) Date: Mon, 16 Aug 2004 23:36:46 -0400 From: Parv To: doug@polands.org, Your Name , freebsd-questions@freebsd.org Message-ID: <20040817033646.GA6634@moo.holy.cow> Mail-Followup-To: doug@polands.org, Your Name , freebsd-questions@freebsd.org References: <20040816195136.62744.qmail@web53404.mail.yahoo.com> <20040816203054.GK85541@omniresources.com> <20040817032620.GA5949@moo.holy.cow> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040817032620.GA5949@moo.holy.cow> Subject: Re: Frequent crashes with Mozilla and Firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 03:34:48 -0000 in message <20040817032620.GA5949@moo.holy.cow>, wrote Parv thusly... > > in message <20040816203054.GK85541@omniresources.com>, wrote > doug@polands.org thusly... > > > > Two sites that failed consistently for me were http://www.pga.com > > and http://www.statefarm.com > > > > The browser versions are > > > > Mozilla 1.7.2 > > Mozilla Firefox 0.9.3 > > No problems here w/ Mozilla 1.7.1,2 (gtk1, no proxy, no Java, no > Flash, w/ JavaScript and custom stylesheet) And OS is FreeBSD 4.9-RELEASE-p11. - Parv -- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 05:02:08 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D949D16A4CE for ; Tue, 17 Aug 2004 05:02:08 +0000 (GMT) Received: from mail1.simplenet.com (mailer.simplenet.com [209.132.1.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id B594E43D53 for ; Tue, 17 Aug 2004 05:02:08 +0000 (GMT) (envelope-from tt-list@simplenet.com) Received: from TraverPC.simplenet.com (66.27.122.77) by mail1.simplenet.com (7.0.016) (authenticated as tt-list@simplenet.com) id 412086C60000736D for freebsd-questions@freebsd.org; Mon, 16 Aug 2004 21:51:32 -0700 Message-Id: <6.1.2.0.0.20040816220030.04148ec0@mail1.simplenet.com> X-Sender: tt-list@simplenet.com@mail1.simplenet.com X-Mailer: QUALCOMM Windows Eudora Version 6.1.2.0 Date: Mon, 16 Aug 2004 22:02:11 -0700 To: freebsd-questions@freebsd.org From: Tim Traver Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: hard links for directories ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 05:02:09 -0000 Hi all, This may be a stupid question, but is it possible to make hard links to directories ??? I know you can with files, and normally, you would do a soft link for directories, but is there any way to finagle this ? Thanks, Tim. SimpleNet's Back ! http://www.simplenet.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 05:17:06 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FDBB16A4CE for ; Tue, 17 Aug 2004 05:17:06 +0000 (GMT) Received: from hotmail.com (bay22-f16.bay22.hotmail.com [64.4.16.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BD1643D55 for ; Tue, 17 Aug 2004 05:17:06 +0000 (GMT) (envelope-from ryanlamb82@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 16 Aug 2004 22:17:06 -0700 Received: from 67.174.62.89 by by22fd.bay22.hotmail.msn.com with HTTP; Tue, 17 Aug 2004 05:17:05 GMT X-Originating-IP: [67.174.62.89] X-Originating-Email: [ryanlamb82@hotmail.com] X-Sender: ryanlamb82@hotmail.com From: "Ryan Lamb" To: freebsd-questions@freebsd.org Date: Mon, 16 Aug 2004 22:17:05 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 17 Aug 2004 05:17:06.0345 (UTC) FILETIME=[70209990:01C48419] Subject: filesystem full on install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 05:17:06 -0000 It's a netgear router. The thing is, it does go way over 2 min. Here's what it does. When I am initially booting off the disk and it checks the hardware for the first time it turns it yellow. Then, when I first try to connect to an ftp it turns it green but it never connects. When I hit ctrl c and then choose restart installation, it takes me back for a new installation and the light remains green. When I set everything up again, it says my filesystem was written correctly, it connects to the ftp, it starts a download, then it tells me the filesystem is full. >Your router light turning yellow could be an indication that it has been >reset and has entered an "auto-negotiation" mode where it determines what >speed to configure itself as, i.e., either 10 or 100. > >Try waiting until it turns green to proceed with the install, rather than >aborting and restarting. I think it should take no more than 30 seconds, >but time it with a stopwatch. Anything over 2 minutes is WAY too long. >What kind of router are you talking about? On Monday 16 August 2004 08:37 pm, Ryan Lamb wrote: >I'm trying to install FreeBSD for the first time but I am having an error >that I can't figure out. I have googled for an answer and read mailing >list posts but still can't find what I'm looking for. First, when the disk >boots and checks the hardware, it does something strange to my network card >that makes my router light turn yellow instead of green indicating 10 Mbps >mode instead of 100. Anyway, once I get ready to do the install, it can't >.contact the ftp site, it just stays forever at connecting but it does >change my network card back so the router light is green. If I do a >control c to cancel it and restart installation, I can contact the site. >However, when it starts to install, it fails saying the filesystem is full. > This can't be. It's a 40Gb drive. I started by overwriting my hd using >a >utility called boot and nuke. Then I allocated the whole thing to freebsd >and made that partition bootable. Then in disklabel, I hit "a" to do a >default setup. I've tried several different things in disklabel and I wipe >my disk clean between each try and nothing seems to work. Any help would >be appreciated. Thanks. _________________________________________________________________ Don’t just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01/ From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 05:24:08 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FA5D16A4CE for ; Tue, 17 Aug 2004 05:24:08 +0000 (GMT) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE49743D48 for ; Tue, 17 Aug 2004 05:24:07 +0000 (GMT) (envelope-from grog@lemis.com) Received: from blackwater.lemis.com (blackwater.lemis.com [192.109.197.80]) by ozlabs.org (Postfix) with ESMTP id 9A5152BD9F for ; Tue, 17 Aug 2004 15:24:05 +1000 (EST) Received: by blackwater.lemis.com (Postfix, from userid 1004) id DAE07511FA; Tue, 17 Aug 2004 14:54:03 +0930 (CST) Date: Tue, 17 Aug 2004 14:54:03 +0930 From: Greg 'groggy' Lehey To: Tim Traver Message-ID: <20040817052403.GE88156@wantadilla.lemis.com> References: <6.1.2.0.0.20040816220030.04148ec0@mail1.simplenet.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="f61P+fpdnY2FZS1u" Content-Disposition: inline In-Reply-To: <6.1.2.0.0.20040816220030.04148ec0@mail1.simplenet.com> User-Agent: Mutt/1.4.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 cc: freebsd-questions@freebsd.org Subject: Re: hard links for directories ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 05:24:08 -0000 --f61P+fpdnY2FZS1u Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Monday, 16 August 2004 at 22:02:11 -0700, Tim Traver wrote: > Hi all, > > This may be a stupid question, but is it possible to make hard links to > directories ??? I know you can with files, and normally, you would do a > soft link for directories, but is there any way to finagle this ? Sure, there are ways. But why would you want to? A link to a directory makes it a subdirectory of the directory containing the link. If you have two links to a directory, where should the directory's .. link point? How would fsck know what to do? Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply or reply to the original recipients. For more information, see http://www.lemis.com/questions.html Note: I discard all HTML mail unseen. Finger grog@FreeBSD.org for PGP public key. See complete headers for address and phone numbers. --f61P+fpdnY2FZS1u Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQFBIZZzIubykFB6QiMRAjOIAJ9Vu3ozP5qy76ZdqolmLk6Sq8ViMQCcCU0/ xuoj+WAr6UAXc4FSMO8Vrao= =xhyb -----END PGP SIGNATURE----- --f61P+fpdnY2FZS1u-- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 05:34:43 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0A4416A4CE for ; Tue, 17 Aug 2004 05:34:42 +0000 (GMT) Received: from sccimhc92.asp.att.net (sccimhc92.asp.att.net [63.240.76.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F24943D49 for ; Tue, 17 Aug 2004 05:34:42 +0000 (GMT) (envelope-from StevenFriedrich@insightbb.com) Received: from [192.168.1.239] (12-202-28-183.client.insightbb.com[12.202.28.183]) by sccimhc92.asp.att.net (sccimhc92) with ESMTP id <20040817053441i920091ci1e>; Tue, 17 Aug 2004 05:34:41 +0000 From: Steven Friedrich To: freebsd-questions@freebsd.org Date: Tue, 17 Aug 2004 01:34:40 -0400 User-Agent: KMail/1.6.2 References: In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Message-Id: <200408170134.41015.StevenFriedrich@InsightBB.com> Subject: Re: filesystem full on install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 05:34:43 -0000 So is your netgear router attached to a cable or dsl modem? Could you conn= ect=20 your box directly to the modem, at least until you get installed? I don't understand why you used "boot and nuke". When you get to the partition editor, do you delete all the partitions, then make one and mark it bootable and then in the slice editor use "a" for automatically use entire disk, and it lays out / (root), /usr, var, etc.? You must be filling in the page for a network adapter. What IP adx are you using for your box and what IP adx do you tell it is the gateway? I don't know you, so don't be offended by any questions. I'm trying to help without knowing you're level of expertise. Does your router also have a build-in firewall? Are you trying "passive ft= p"? When you restart your install, can you get back into fdisk and delete the=20 partition and remake it again? What network card is in the box? I guess you're booting off floppies? When FreeBSD boots, does it correctly probe and identify your network adapter? On Tuesday 17 August 2004 01:17 am, Ryan Lamb wrote: > It's a netgear router. The thing is, it does go way over 2 min. Here's > what it does. When I am initially booting off the disk and it checks the > hardware for the first time it turns it yellow. Then, when I first try to > connect to an ftp it turns it green but it never connects. When I hit ct= rl > c and then choose restart installation, it takes me back for a new > installation and the light remains green. > When I set everything up again, it says my filesystem was written > correctly, it connects to the ftp, it starts a download, then it tells me > the filesystem is full. > > >Your router light turning yellow could be an indication that it has been > >reset and has entered an "auto-negotiation" mode where it determines what > >speed to configure itself as, i.e., either 10 or 100. > > > >Try waiting until it turns green to proceed with the install, rather than > >aborting and restarting. I think it should take no more than 30 seconds, > >but time it with a stopwatch. Anything over 2 minutes is WAY too long. > > > >What kind of router are you talking about? > > On Monday 16 August 2004 08:37 pm, Ryan Lamb wrote: > >I'm trying to install FreeBSD for the first time but I am having an error > >that I can't figure out. I have googled for an answer and read mailing > >list posts but still can't find what I'm looking for. First, when the > > disk boots and checks the hardware, it does something strange to my > > network card that makes my router light turn yellow instead of green > > indicating 10 Mbps mode instead of 100. Anyway, once I get ready to do > > the install, it can't .contact the ftp site, it just stays forever at > > connecting but it does change my network card back so the router light = is > > green. If I do a control c to cancel it and restart installation, I can > > contact the site. However, when it starts to install, it fails saying t= he > > filesystem is full. This can't be. It's a 40Gb drive. I started by > > overwriting my hd using a > >utility called boot and nuke. Then I allocated the whole thing to freeb= sd > >and made that partition bootable. Then in disklabel, I hit "a" to do a > >default setup. I've tried several different things in disklabel and I > > wipe my disk clean between each try and nothing seems to work. Any help > > would be appreciated. Thanks. > > _________________________________________________________________ > Don=92t just search. Find. Check out the new MSN Search! > http://search.msn.click-url.com/go/onm00200636ave/direct/01/ > > _______________________________________________ > 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 Aug 17 06:29:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0118816A4CE for ; Tue, 17 Aug 2004 06:29:05 +0000 (GMT) Received: from mta09-svc.ntlworld.com (mta09-svc.ntlworld.com [62.253.162.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16C2C43D55 for ; Tue, 17 Aug 2004 06:29:04 +0000 (GMT) (envelope-from d3c3it-linux@ntlworld.com) Received: from [192.168.0.2] ([213.106.176.107]) by mta09-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with ESMTP id <20040817062958.OOQV380.mta09-svc.ntlworld.com@[192.168.0.2]> for ; Tue, 17 Aug 2004 07:29:58 +0100 From: Glyn Tebbutt To: freebsd-questions@freebsd.org Content-Type: text/plain Message-Id: <1092724148.8213.0.camel@frozen.lazarus.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 17 Aug 2004 07:29:08 +0100 Content-Transfer-Encoding: 7bit Subject: Moving from -CURRENT to 5.2.1 Release X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 06:29:05 -0000 Hi all Just a quick question, as it was posted on the list nvidia has released some new drivers, i've yet to try these drivers but at the moment im having to use -CURRENT to be able to get the previous release to work properly and they did very well. I rebuilt my world/kernel with -CURRENT and then my software, xorg, gnome 2.6 etc. My questions is, everything ive compiled was with gcc 3.4.x thats in -CURRENT if i downgrade to 5.2.1 Release will this cause any problems with the software i compiled with the newer gcc. Reasons being for changing as i dont like being that much on the bleeding edge as im just a user not a developer, saying that thou these new drivers might not work out for me and i may end up going back to -CURRENT, as i had the libpthread > libr_c problem and had to map them with libmap.conf Anyway any opinions please as im going to do this tonight and if it means it will screw things up i might just reinstall. Thanks Again Glyn ps i have posted this before but i forgot the subject line, very sorry about that. -- *-----------------------------------------------------* | Glyn Tebbutt | d3c3it-linux@ntlworld.com | |--------------' http://homepage.ntlworld.com/d3c3it | | Lisa, if you dont like your job you dont strike, | | You just go in everyday and do it really half-assed | | Thats the American way. -Homer Simpson | *-----------------------------------------------------* From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 06:47:02 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C908816A4CE for ; Tue, 17 Aug 2004 06:47:02 +0000 (GMT) Received: from web61304.mail.yahoo.com (web61304.mail.yahoo.com [216.155.196.147]) by mx1.FreeBSD.org (Postfix) with SMTP id 4660A43D41 for ; Tue, 17 Aug 2004 06:47:02 +0000 (GMT) (envelope-from stheg_olloydson@yahoo.com) Message-ID: <20040817064701.43241.qmail@web61304.mail.yahoo.com> Received: from [67.34.130.149] by web61304.mail.yahoo.com via HTTP; Mon, 16 Aug 2004 23:47:01 PDT Date: Mon, 16 Aug 2004 23:47:01 -0700 (PDT) From: stheg olloydson To: ryanlamb82@hotmail.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: questions@freebsd.org Subject: Re: filesystem full on install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 06:47:02 -0000 it was written: >However, when it starts to install, it fails saying the filesystem is >full. This can't be. It's a 40Gb drive. I started by overwriting my >hd using a utility called boot and nuke. Then I allocated the whole >thing to freebsd and made that partition bootable. Then in disklabel, >I hit "a" to do a default setup. I've tried several different things >in disklabel and I wipe my disk clean between each try and nothing >seems to work. Any help would be appreciated. Thanks. Hello, This seems to be the nub of your problem. The message saying "the filesystem is full" means the partition is full, not the harddrive. Make sure the drive's geometry and that reported in disklabel agree. I think you should start over and use the instructions at http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-steps.html as a guide, particularly section 2.5.5. As to the problem with the router and intermittent failures to connect, that sounds like TCP/IP problem. The fact it seemingly goes away is very odd. Make sure you're not using an IP address already assigned to some other interface (and may as well that your subnet mask, hostname, and DNS address are correct, too). Double check that you're using a supported NIC. HTH, Stheg __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 07:53:52 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2939D16A4CE for ; Tue, 17 Aug 2004 07:53:52 +0000 (GMT) Received: from dsl-mail.kamp.net (mail.kamp-dsl.de [195.62.99.42]) by mx1.FreeBSD.org (Postfix) with SMTP id F2BC343D48 for ; Tue, 17 Aug 2004 07:53:50 +0000 (GMT) (envelope-from root@pukruppa.de) Received: (qmail 31674 invoked by uid 513); 17 Aug 2004 07:56:54 -0000 Received: from root@pukruppa.de by dsl-mail by uid 89 with qmail-scanner-1.21 Clear:RC:1(213.146.114.24):SA:0(-4.9/5.0):. Processed in 0.317259 secs); 17 Aug 2004 07:56:54 -0000 X-Spam-Status: No, hits=-4.9 required=5.0 Received: from unknown (HELO reverse-213-146-114-24.dialin.kamp-dsl.de) (213.146.114.24) by dsl-mail.kamp.net with SMTP; 17 Aug 2004 07:56:53 -0000 Date: Tue, 17 Aug 2004 09:53:49 +0200 (CEST) From: Peter Ulrich Kruppa X-X-Sender: root@pukruppa.net To: freebsd-questions@freebsd.org Message-ID: <20040817094732.X820@pukruppa.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: SATA drive bootable ??? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 07:53:52 -0000 Hi! I just started playing around with my new SATA disk (with SATA 150 TX2plus controller on -CURRENT). I can mount and format it all-right. Is it generally posssible to boot from such a disk (different question would be if it made sense to do so)? My SATA drive is recognized as ata2-master. Thanks, Uli. +---------------------------+ | Peter Ulrich Kruppa | | Wuppertal | | Germany | +---------------------------+ From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 08:04:50 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 000C816A4CE; Tue, 17 Aug 2004 08:04:49 +0000 (GMT) Received: from smtp.customer.uunet.se (smtp.customer.uunet.se [195.129.12.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1277A43D4C; Tue, 17 Aug 2004 08:04:49 +0000 (GMT) (envelope-from L@ust.dk) Received: from [195.24.31.210] (port=62063 helo=[129.181.247.38]) by smtp.customer.uunet.se with esmtp id 1Bwyxa-0006ZZ-TV; Tue, 17 Aug 2004 08:04:46 +0000 Message-ID: <4121BC9D.2080908@ust.dk> Date: Tue, 17 Aug 2004 10:06:53 +0200 From: "Laust S. Jespersen" User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Vulpes Velox References: <4120C082.23639.5A6050@localhost> <20040816223356.GA12480@odin.ac.hmc.edu> <20040816210428.319c7b1d@vixen42.24-119-122-191.cpe.cableone.net> In-Reply-To: <20040816210428.319c7b1d@vixen42.24-119-122-191.cpe.cableone.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-doc@freebsd.org cc: freebsd-questions@freebsd.org cc: tech39@tech39.net Subject: Re: Help me ObwanKnobi your my only hope. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 08:04:50 -0000 Vulpes Velox wrote: > On Mon, 16 Aug 2004 15:33:56 -0700 > Brooks Davis wrote: > > >>On Mon, Aug 16, 2004 at 02:11:14PM -0700, tech39@tech39.net wrote: >> >>>I have spent many usless hours looking at Freebsd.org, google.com >>>and yahoo.com in an attempt to find a ftpd that I can cap / choke >>>the outgoing bandwith. >>> >>>Do you know of any such animals? >> >>dummynet(4) will probably do what you want unless you need to do it >>per user. > > > Can be done if you use inetd. Just set up a rule limiting certian > users to certian pipes. :) > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" > You can do this with pure-ftpd's "UserBandwidth" and "AnonymousBandwidth" directives. Med venlig hilsen / Best Regards Laust Jespersen http://www.ust.dk ====================================================================== Viking Rule of Acquisition 1: Remember where you beached the long ship From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 08:13:29 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EA0A16A4CE for ; Tue, 17 Aug 2004 08:13:29 +0000 (GMT) Received: from mtiwmhc13.worldnet.att.net (mtiwmhc13.worldnet.att.net [204.127.131.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFDFB43D4C for ; Tue, 17 Aug 2004 08:13:28 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc13) with ESMTP id <2004081708130611300sv0nke> (Authid: jayobrien@att.net); Tue, 17 Aug 2004 08:13:07 +0000 Message-ID: <4121BE26.2040503@att.net> Date: Tue, 17 Aug 2004 01:13:26 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions References: <41215D7F.902@att.net> <20040816212834.5c3920b3.wmoran@potentialtech.com> In-Reply-To: <20040816212834.5c3920b3.wmoran@potentialtech.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: How to start clean install again? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 08:13:29 -0000 > Jay O'Brien wrote: > >>What's the best way to erase an installation of FreeBSD >>completely from a HD and start over? I'm installing 4.10 >>from am ISO CD, and it installs fine. However, I would >>like to start over from scratch and it "remembers" some >>of what was on the HD from the last install. If I were >>in Windows/DOS I would just "format C:" but that doesn't >>seem to be an option here. > Bill Moran wrote: > During the reinstall, when it comes time to slice the disk with fdisk, > simply delete the previous slice and recreate it. That will blow away > anything that existed before. > Andras Kende wrote: > Boot from CD as usual > When displaying the hard disk with FreeBSD slice click on Delete key... > Then just recreate the partition as before... > Bill, Andras: Thanks, that does the job. Much appreciated. Jay From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 08:14:12 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A36D16A4CE for ; Tue, 17 Aug 2004 08:14:12 +0000 (GMT) Received: from kayjay.xs4all.nl (kayjay.xs4all.nl [80.126.33.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF25943D4C for ; Tue, 17 Aug 2004 08:14:11 +0000 (GMT) (envelope-from karelj@kayjay.xs4all.nl) Received: from kayjay.xs4all.nl (localhost.kayjay.xs4all.nl [127.0.0.1]) by kayjay.xs4all.nl (8.12.11/8.12.11) with ESMTP id i7H8E9vH030415 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Tue, 17 Aug 2004 10:14:09 +0200 (CEST) (envelope-from karelj@kayjay.xs4all.nl) Received: (from karelj@localhost) by kayjay.xs4all.nl (8.12.11/8.12.11/Submit) id i7H8E8rY030414; Tue, 17 Aug 2004 10:14:08 +0200 (CEST) (envelope-from karelj) Date: Tue, 17 Aug 2004 10:14:08 +0200 From: "Karel J. Bosschaart" To: Jesse Sheidlower Message-ID: <20040817081408.GA30369@kayjay.xs4all.nl> References: <20040816195136.62744.qmail@web53404.mail.yahoo.com> <20040817005907.GA21349@panix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040817005907.GA21349@panix.com> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org cc: Your Name Subject: Re: Frequent crashes with Mozilla and Firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 08:14:12 -0000 On Mon, Aug 16, 2004 at 08:59:07PM -0400, Jesse Sheidlower wrote: > On Mon, Aug 16, 2004 at 12:51:36PM -0700, Your Name wrote: > > In the last few weeks ive started getting a number of > > crashes using either Mozilla or Firefox. im using the > > newest version of each from Ports, on FreeBSD 4.9. > > Sorry for the "me too" post, but since people are reporting > different results: I have two main computers, one running > 4.10 and one running 5.2-CURRENT, but with otherwise > similar setups. GNOME in both cases. > So I'm not the only one!? I'm using Firefox on 4.10 and 5.2 with KDE and found that it's quite OK on 5.2 but crashes often on 4.10, I think mostly on webpages with flash content. > The CURRENT machine is fine; I'm pretty sure I've never had a > crash in several months of operation. The 4.10 machine is Never? Wow. I can't say that here but I consider a weekly crash or so for a browser nowadays an excellent achievement ;-). > similar to the OP's report: I get relatively frequent but > unpredictable crashes on complex Web pages, with both > Mozilla and Firefox. Can't say anything for Mozilla. > It's annoying, and I'd love to know causes and solutions! Because it's so difficult to reproduce it's also hard to find the cause :-(. I plan to try linux-opera on 4.10. Should do flash and java... (being unable to get java working was what made me switch from Opera to Firefox couple of months ago) Karel. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 08:16:47 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1199916A4CE for ; Tue, 17 Aug 2004 08:16:47 +0000 (GMT) Received: from web53907.mail.yahoo.com (web53907.mail.yahoo.com [206.190.36.217]) by mx1.FreeBSD.org (Postfix) with SMTP id 85D9243D1D for ; Tue, 17 Aug 2004 08:16:46 +0000 (GMT) (envelope-from easyeinfo@yahoo.com) Message-ID: <20040817081645.57593.qmail@web53907.mail.yahoo.com> Received: from [202.168.70.130] by web53907.mail.yahoo.com via HTTP; Tue, 17 Aug 2004 01:16:45 PDT Date: Tue, 17 Aug 2004 01:16:45 -0700 (PDT) From: Dennis George To: questions@freebsd.org In-Reply-To: <20040817064701.43241.qmail@web61304.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Kernel Hacking (symbol not Found) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 08:16:47 -0000 Hi, I am studying the kernel source of FreeBSD. I like to know the flow of packets from NIC to different modules of Kernel and then to the user-level. I studied the code and identified some of the functions through which the kernel handles network packets..... But I want to check from where the control goes to that function....... So I decided to debug the kernel.... since I have only one machine I am not checking for kgdb.... I decided to work with DDB so compiled the kernel with option DDB and with debugging enabled (-g option). After installing the new kernel I rebooted the system and in the boot prompt I gave "-d" option to enter the debugging module..... My problem is that I can't provide any breakpoints with this method... It gives me error saying "symbol not found"..... Can anybody tell me where is the problem................ thanks Joseph stheg olloydson wrote: it was written: >However, when it starts to install, it fails saying the filesystem is >full. This can't be. It's a 40Gb drive. I started by overwriting my >hd using a utility called boot and nuke. Then I allocated the whole >thing to freebsd and made that partition bootable. Then in disklabel, >I hit "a" to do a default setup. I've tried several different things >in disklabel and I wipe my disk clean between each try and nothing >seems to work. Any help would be appreciated. Thanks. Hello, This seems to be the nub of your problem. The message saying "the filesystem is full" means the partition is full, not the harddrive. Make sure the drive's geometry and that reported in disklabel agree. I think you should start over and use the instructions at http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-steps.html as a guide, particularly section 2.5.5. As to the problem with the router and intermittent failures to connect, that sounds like TCP/IP problem. The fact it seemingly goes away is very odd. Make sure you're not using an IP address already assigned to some other interface (and may as well that your subnet mask, hostname, and DNS address are correct, too). Double check that you're using a supported NIC. HTH, Stheg __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_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" --------------------------------- Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 08:31:33 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A51B16A4CE for ; Tue, 17 Aug 2004 08:31:33 +0000 (GMT) Received: from mtiwmhc11.worldnet.att.net (mtiwmhc11.worldnet.att.net [204.127.131.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1491D43D1F for ; Tue, 17 Aug 2004 08:31:33 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc11) with ESMTP id <2004081708313111100bn1fde> (Authid: jayobrien@att.net); Tue, 17 Aug 2004 08:31:32 +0000 Message-ID: <4121C262.6020409@att.net> Date: Tue, 17 Aug 2004 01:31:30 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: X configuration problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 08:31:33 -0000 Initial 4.10 installation. Trying to configure XFree86. from /stand/sysinstall, select Configure | XFree86. I THINK I've tried every possible combination. I couldn't use the "Fully graphical XFree86 configuration tool" as the graphic was partially off-screen and the monitor was "out of range". I used the textmode tool and the shell- script tool, settling on the shell-script tool. After agreeing that it should write /etc/X11/XF86, and selecting a desktop to use, many different attempts all result in this error: "Error mounting /dev/acd0c on /dist: Input/output error (5)" And the next screen is: "An error occurred while adding the package(s) required by this desktop type. Please change installation media and/or select a different, perhaps simpler, desktop environment and try again." I don't find a /etc/X11/ directory, much less a XF86 file. Video card is ati XPERT 98, monitor is 1280x1024 LCD. A suggestion for what to try next? Jay O'Brien Rio Linda, CA USA From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 08:40:10 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6746F16A4CE for ; Tue, 17 Aug 2004 08:40:10 +0000 (GMT) Received: from minotaur.host4u.net (minotaur.host4u.net [209.150.128.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3CA443D2F for ; Tue, 17 Aug 2004 08:40:09 +0000 (GMT) (envelope-from mo.autoresponder@sonictimeworks.com) Received: (from mail@localhost) by minotaur.host4u.net (8.11.6/8.11.6) id i7H8e9P05393 for freebsd-questions@freebsd.org; Tue, 17 Aug 2004 03:40:09 -0500 Date: Tue, 17 Aug 2004 03:40:09 -0500 From: Nobody Message-Id: <200408170840.i7H8e9P05393@minotaur.host4u.net> To: freebsd-questions@freebsd.org X-Loop: one Subject: SONIC TIMEWORKS AUTOMATED REPLY X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 08:40:10 -0000 This is an automated reply, no human has read or will read your message. Due to the current increase in virus related mailing activity the email address you tried to reach, mo@sonictimeworks.com, has been deactivated. Instead, please mail molsen@ Thanks for your understanding. Sonic Timeworks From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 08:44:49 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62A2016A4CE for ; Tue, 17 Aug 2004 08:44:49 +0000 (GMT) Received: from fam.ulusiada.pt (mail.fam.ulusiada.pt [193.136.184.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 0647043D41 for ; Tue, 17 Aug 2004 08:44:47 +0000 (GMT) (envelope-from "") Received: (qmail 25830 invoked by uid 502); 17 Aug 2004 08:44:41 -0000 Received: from by mail.fam.ulusiada.pt in 0.119401 secs); 17 Aug 2004 08:44:41 -0000 Date: 17 Aug 2004 08:44:41 -0000 From: "Mail System Anti-Virus Administrator" To: questions@freebsd.org Message-ID: X-Tnz-Problem-Type: 40 MIME-Version: 1.0 Content-type: text/plain cc: lixo@mail.fam.ulusiada.pt Subject: Virus found in sent message "something for you" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 08:44:49 -0000 Attention: questions@freebsd.org. A Virus was found in an Email message you sent. This Email scanner intercepted it and stopped the entire message reaching it's destination. The Virus was reported to be: W32/Netsky.B@mm Please update your virus scanner or contact your I.T support personnel as soon as possible as you have a virus on your system. Your message was sent with the following envelope: MAIL FROM: questions@freebsd.org RCPT TO: puto@fam.ulusiada.pt ... and with the following headers: From: questions@freebsd.org To: puto@fam.ulusiada.pt Subject: something for you Date: Tue, 17 Aug 2004 09:48:54 +0100 The original message is kept in: mail.fam.ulusiada.pt:/var/spool/qmailscan/quarantine where the Mail System Anti-Virus Administrator can further diagnose it. The Email scanner reported the following when it scanned that message: --- ---fprot results --- Virus scanning report - 17. August 2004 9:44 F-PROT 3.11b SIGN.DEF created 17. August 2004 SIGN2.DEF created 17. August 2004 MACRO.DEF created 16. August 2004 Search: /var/spool/qmailscan/mail.fam.ulusiada.pt109273228040425817 /var/spool/qmailscan/working/new/mail.fam.ulusiada.pt109273228040425817 Action: Report only Files: "Dumb" scan of all files Switches: /ARCHIVE /AI /var/spool/qmailscan/mail.fam.ulusiada.pt109273228040425817/note.com Infection: W32/Netsky.B@mm /var/spool/qmailscan/working/new/mail.fam.ulusiada.pt109273228040425817->note.com Infection: W32/Netsky.B@mm Results of virus scanning: Files: 3 MBRs: 0 Boot sectors: 0 Objects scanned: 4 Infected: 2 Suspicious: 0 Disinfected: 0 Deleted: 0 Renamed: 0 Time: 0:00 --- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 09:36:00 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A455C16A4CE for ; Tue, 17 Aug 2004 09:36:00 +0000 (GMT) Received: from p1028-ipbffx02marunouchi.tokyo.ocn.ne.jp (p1028-ipbffx02marunouchi.tokyo.ocn.ne.jp [220.111.132.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FC6343D60 for ; Tue, 17 Aug 2004 09:35:59 +0000 (GMT) (envelope-from lukek@meibin.net) Received: (qmail 39750 invoked by uid 89); 17 Aug 2004 09:35:58 -0000 Received: from unknown (HELO ?192.168.10.8?) (192.168.10.8) by 192.168.20.5 with SMTP; 17 Aug 2004 09:35:58 -0000 Date: Tue, 17 Aug 2004 18:31:59 +0900 From: Luke Kearney To: Jay O'Brien In-Reply-To: <4121C262.6020409@att.net> References: <4121C262.6020409@att.net> Message-Id: <20040817183040.3511.LUKEK@meibin.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.07.01 cc: FreeBSD - questions Subject: Re: X configuration problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 09:36:00 -0000 On Tue, 17 Aug 2004 01:31:30 -0700 Jay O'Brien spake thus: > Initial 4.10 installation. Trying to configure XFree86. > from /stand/sysinstall, select Configure | XFree86. > > I THINK I've tried every possible combination. I couldn't > use the "Fully graphical XFree86 configuration tool" as > the graphic was partially off-screen and the monitor was > "out of range". I used the textmode tool and the shell- > script tool, settling on the shell-script tool. After > agreeing that it should write /etc/X11/XF86, and selecting > a desktop to use, many different attempts all result in > this error: > > "Error mounting /dev/acd0c on /dist: Input/output error (5)" > > And the next screen is: > > "An error occurred while adding the package(s) required by > this desktop type. Please change installation media and/or > select a different, perhaps simpler, desktop environment > and try again." > > I don't find a /etc/X11/ directory, much less a XF86 file. > > Video card is ati XPERT 98, monitor is 1280x1024 LCD. > > A suggestion for what to try next? > > Jay O'Brien > Rio Linda, CA USA Yes, download and burn yourself another install disk or change the media source in the install screen and then make it download the sources from the internet. Sounds like you've got bad media rather than a config that can't be done. HTH LukeK -- Luke Kearney From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 09:49:02 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA0A516A4CE for ; Tue, 17 Aug 2004 09:49:02 +0000 (GMT) Received: from mymail.netmagicians.com (mymail.netmagicians.com [202.87.39.126]) by mx1.FreeBSD.org (Postfix) with SMTP id 6070043D45 for ; Tue, 17 Aug 2004 09:49:01 +0000 (GMT) (envelope-from sid@netmagicsolutions.com) Received: (qmail 2929 invoked from network); 17 Aug 2004 10:03:38 -0000 Received: from sid@netmagicsolutions.com by netmagicsolutions.com by uid 504 with qmail-scanner-1.16 (uvscan: v4.3.20/v4100. Clear:. Processed in 0.845545 secs); 17 Aug 2004 10:03:38 -0000 Received: from intra.netmagicsolutions.com (HELO ?10.1.1.161?) (202.87.39.242) by mymail.netmagicians.com with SMTP; 17 Aug 2004 10:03:37 -0000 Message-ID: <4121D48D.2080002@netmagicsolutions.com> Date: Tue, 17 Aug 2004 15:19:01 +0530 From: Siddhartha Jain User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org X-Enigmail-Version: 0.84.2.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Is promiscuous mode bad? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 09:49:03 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 horio shoichi wrote: | On Mon, 16 Aug 2004 14:24:00 +0200 | Ruben de Groot wrote: | |>On Sun, Aug 15, 2004 at 07:53:10PM -0700, Kevin Stevens typed: |> |>>A lot of network scanners also trigger on NICS in promiscuous mode |>>(there's a way to detect them, I forget the details at the moment) |>>because admins want to know if any hosts are out there sniffing. |> |>How sure are you about that? AFAIK there's no way to detect a NIC in |>promiscuous mode *from the outside*. I would be very interested in a network |>scanner that could. |> |>Ruben |> |>_______________________________________________ |>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" |> | | | Ping it with wrong mac. | Don't you have to be on the same broadcast domain to do a MAC ping? I mean how would you do a MAC ping over the internet? - -- Siddhartha Jain (CISSP) Consulting Engineer Netmagic Solutions Pvt Ltd Bombay - 400063 Phone: +91-22-26850001 Ext.128 Fax : +91-22-26850002 http://www.netmagicsolutions.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBIdSMOGaxOP7knVwRAkUCAJ4m3u55mbVps9skAyr3OnMrMLxBBACffMDf blzs3L+y384dbZna0ZqCEwA= =dYSX -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 10:01:29 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1889516A4CF for ; Tue, 17 Aug 2004 10:01:29 +0000 (GMT) Received: from web53905.mail.yahoo.com (web53905.mail.yahoo.com [206.190.36.215]) by mx1.FreeBSD.org (Postfix) with SMTP id 8BCA543D3F for ; Tue, 17 Aug 2004 10:01:28 +0000 (GMT) (envelope-from easyeinfo@yahoo.com) Message-ID: <20040817100128.95409.qmail@web53905.mail.yahoo.com> Received: from [202.168.70.130] by web53905.mail.yahoo.com via HTTP; Tue, 17 Aug 2004 03:01:27 PDT Date: Tue, 17 Aug 2004 03:01:27 -0700 (PDT) From: Dennis George To: questions@freebsd.org In-Reply-To: <20040817081645.57593.qmail@web53907.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: ELF Kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 10:01:29 -0000 What is elf kernel ? --------------------------------- Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 10:32:55 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E97016A4CE for ; Tue, 17 Aug 2004 10:32:55 +0000 (GMT) Received: from mymail.netmagicians.com (mymail.netmagicians.com [202.87.39.126]) by mx1.FreeBSD.org (Postfix) with SMTP id A86F843D39 for ; Tue, 17 Aug 2004 10:32:53 +0000 (GMT) (envelope-from sid@netmagicsolutions.com) Received: (qmail 8110 invoked from network); 17 Aug 2004 10:47:30 -0000 Received: from sid@netmagicsolutions.com by netmagicsolutions.com by uid 504 with qmail-scanner-1.16 (uvscan: v4.3.20/v4100. Clear:. Processed in 0.757692 secs); 17 Aug 2004 10:47:30 -0000 Received: from intra.netmagicsolutions.com (HELO ?10.1.1.161?) (202.87.39.242) by mymail.netmagicians.com with SMTP; 17 Aug 2004 10:47:29 -0000 Message-ID: <4121DED6.2000808@netmagicsolutions.com> Date: Tue, 17 Aug 2004 16:02:54 +0530 From: Siddhartha Jain User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Dennis George References: <20040817100128.95409.qmail@web53905.mail.yahoo.com> In-Reply-To: <20040817100128.95409.qmail@web53905.mail.yahoo.com> X-Enigmail-Version: 0.84.2.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: questions@freebsd.org Subject: Re: ELF Kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 10:32:55 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dennis George wrote: | What is elf kernel ? | ELF is a binary file format. Stands for Executable and Linking format. The kernel must support this format so that files made in this format can be loaded, read and executed by the kernel. http://www.cs.ucdavis.edu/~haungs/paper/node10.html Now the kernel itself is a big binary file. Under FreeBSD, the kernel itself is a dynamically linked ELF binary. Goto "/" and issue "file kernel" and see the results. Ofcourse, there are unconfirmed rumours that Linus Torvarlds was just the front man for Santa Claus and the Tooth fairy, who actually wrote the Linux kernel alongwith elves and hence the name Elf Kernel ;) HTH, - -- Siddhartha Jain (CISSP) Consulting Engineer Netmagic Solutions Pvt Ltd Bombay - 400063 Phone: +91-22-26850001 Ext.128 Fax : +91-22-26850002 http://www.netmagicsolutions.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBId7WOGaxOP7knVwRAo6bAJ49Pp6U7rvmuSodd0RuaH3fwHgLAQCeMGVd N5VXUzzI14VeoYhuqfxpKoA= =umxi -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 11:00:21 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C80C316A4CF for ; Tue, 17 Aug 2004 11:00:21 +0000 (GMT) Received: from mail.rdstm.ro (mail.rdstm.ro [193.231.233.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15D4C43D3F for ; Tue, 17 Aug 2004 11:00:21 +0000 (GMT) (envelope-from aanton@spintech.ro) Received: from [10.0.0.2] (casa_auto [81.196.32.25]) by mail.rdstm.ro (8.12.10/8.12.1) with ESMTP id i7HAxswh007225 for ; Tue, 17 Aug 2004 13:59:54 +0300 Message-ID: <4121E53D.7000900@spintech.ro> Date: Tue, 17 Aug 2004 14:00:13 +0300 From: Anton Alin-Adrian User-Agent: Mozilla Thunderbird 0.7.1 (X11/20040706) X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD Questions References: <411E9639.2070609@spintech.ro> <8cb27cbf0408152126257ec1bc@mail.gmail.com> In-Reply-To: <8cb27cbf0408152126257ec1bc@mail.gmail.com> X-Enigmail-Version: 0.84.2.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: FreeBSD scanners X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 11:00:21 -0000 Thank you all for all of the information. I found this "CANON Scanner Canon Lide30 USB" available to be bought, nice price, nice performance, donno much about canon's reputation with scanners. It has "complete" support by the plustek-sane backened. The only problem is it is not listed in uscanner.c. Do you think adding it to uscanner.c is all that takes to make it work? If yes, I am going to buy it (it is the only one with complete sane support, from what i can get my hands on). There's also mustek 1200 ta, listed in uscanner, but only has good support in sane backeneds, and it cannot scan deeper than 16 bits of colour, in spite of the fact that it's capacity is 48 bit. Ok, so what about canon? Will manually adding it to uscanner.c solve everything? Thank you all. Regards, -- Alin-Adrian Anton Spintech Systems GPG keyID 0x1E2FFF2E (2963 0C11 1AF1 96F6 0030 6EE9 D323 639D 1E2F FF2E) gpg --keyserver pgp.mit.edu --recv-keys 1E2FFF2E From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 11:20:35 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31C4816A4CE for ; Tue, 17 Aug 2004 11:20:35 +0000 (GMT) Received: from mail.u4eatech.com (blackhole.u4eatech.com [195.188.241.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3334643D41 for ; Tue, 17 Aug 2004 11:20:34 +0000 (GMT) (envelope-from richard.williamson@u4eatech.com) Received: by mail.u4eatech.com (Postfix, from userid 503) id AFEB03600B8; Tue, 17 Aug 2004 12:20:32 +0100 (BST) Received: from apus.u4eatech.com (apus.degree2.com [172.30.40.129]) (using TLSv1 with cipher DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by mail.u4eatech.com (Postfix) with ESMTP id 023AF360070 for ; Tue, 17 Aug 2004 12:20:28 +0100 (BST) Message-Id: <6.1.2.0.2.20040817122406.02797010@cygnus> X-Sender: richard@cygnus X-Mailer: QUALCOMM Windows Eudora Version 6.1.2.0 Date: Tue, 17 Aug 2004 12:24:14 +0100 To: freebsd-questions@freebsd.org From: "Richard P. Williamson" Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on mail X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 Subject: ot Re: ELF Kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 11:20:35 -0000 At 11:32 17/08/2004. Siddhartha Jain had this to say: >Ofcourse, there are unconfirmed rumours that Linus Torvarlds was just >the front man for Santa Claus and the Tooth fairy, who actually wrote >the Linux kernel alongwith elves and hence the name Elf Kernel ;) Which would explain why the debug extensions to the ELF format are called DWARF. (ie, Debug With Arbitrary Record Format) rip From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 11:42:02 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBCD116A4CE for ; Tue, 17 Aug 2004 11:42:02 +0000 (GMT) Received: from postfix3-2.free.fr (postfix3-2.free.fr [213.228.0.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B58843D1D for ; Tue, 17 Aug 2004 11:42:02 +0000 (GMT) (envelope-from valery@no-log.org) Received: from [192.168.0.22] (gambetta-2-82-67-185-6.fbx.proxad.net [82.67.185.6]) by postfix3-2.free.fr (Postfix) with ESMTP id 46160CB03 for ; Tue, 17 Aug 2004 15:37:10 +0200 (CEST) Message-ID: <4121EEE7.4080503@no-log.org> Date: Tue, 17 Aug 2004 13:41:27 +0200 From: =?ISO-8859-1?Q?Val=E9ry?= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040616 X-Accept-Language: en-us, en MIME-Version: 1.0 To: questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Subject: Newbies Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 11:42:02 -0000 REF : documentation http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-start.html Hi, i'm installing FreeBSD in order to change my NT5.1 with Apache & ftp server. I'm comming from IBM OS/390 mainframe and don't know anything on Unix like systems. I'm a C/C++ developper too. My question beeing very simple, i think you don't need technical information, but see on * lines below. Q : how to launch the "Kernel Configuration Menu" script as described on Ch 2.3.2 (fig. 2.1) ? i don't have any option to do that on the Loader Menu (i tried all) i tried to "grep-find" the script (or command) but fails. * i'm using/booting from FreeBSD 5.2.1, disc-1 * boot0 & boot1 are Ok * Loader Ok * Sysinstall running Ok Note : a mini-install of 5.2.1 is currently installed on my HDD and seem to work properly. I would like to configure more accurately my Kernel now. Great thanks, FreeBSD is exactly what i want, -- Valéry Seys / Paris-France From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 11:50:46 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B193816A4CE for ; Tue, 17 Aug 2004 11:50:46 +0000 (GMT) Received: from abigail.blackend.org (blackend.org [212.11.35.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id B39D043D1D for ; Tue, 17 Aug 2004 11:50:45 +0000 (GMT) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (localhost [127.0.0.1]) i7HBohCo038358; Tue, 17 Aug 2004 13:50:43 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: (from marc@localhost) by abigail.blackend.org (8.12.11/8.12.11/Submit) id i7HBohBg038357; Tue, 17 Aug 2004 13:50:43 +0200 (CEST) (envelope-from marc) Date: Tue, 17 Aug 2004 13:50:42 +0200 From: Marc Fonvieille To: Anton Alin-Adrian Message-ID: <20040817115042.GB38060@abigail.blackend.org> References: <411E9639.2070609@spintech.ro> <8cb27cbf0408152126257ec1bc@mail.gmail.com> <4121E53D.7000900@spintech.ro> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4121E53D.7000900@spintech.ro> User-Agent: Mutt/1.4.2.1i X-Useless-Header: blackend.org X-Operating-System: FreeBSD 4.10-PRERELEASE cc: FreeBSD Questions Subject: Re: FreeBSD scanners X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 11:50:46 -0000 On Tue, Aug 17, 2004 at 02:00:13PM +0300, Anton Alin-Adrian wrote: > Thank you all for all of the information. > > I found this "CANON Scanner Canon Lide30 USB" available to be bought, nice > price, nice performance, donno much about canon's reputation with scanners. > > It has "complete" support by the plustek-sane backened. > > The only problem is it is not listed in uscanner.c. > > Do you think adding it to uscanner.c is all that takes to make it work? If > yes, I am going to buy it (it is the only one with complete sane support, > from what i can get my hands on). > [...] It is supported under 4.10 and -CURRENT. I use it :) and I used it during the write of the Handbook's scanners section. Marc From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 12:17:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5695916A4CE for ; Tue, 17 Aug 2004 12:17:05 +0000 (GMT) Received: from lists.freedombi.com (okemoscommunitychurch.org [207.179.98.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id E412743D2F for ; Tue, 17 Aug 2004 12:17:04 +0000 (GMT) (envelope-from charles@idealso.com) Received: by lists.freedombi.com (Postfix, from userid 1000) id 07D787256C; Tue, 17 Aug 2004 08:17:04 -0400 (EDT) Received: from freedombi.com (localhost [192.168.10.108]) by lists.freedombi.com (Postfix) with SMTP id E6F5572496 for ; Tue, 17 Aug 2004 08:17:00 -0400 (EDT) Received: from 207.179.91.96 (SquirrelMail authenticated user charles) by freedombi.com with HTTP; Tue, 17 Aug 2004 08:17:00 -0400 (EDT) Message-ID: <49165.207.179.91.96.1092745020.squirrel@freedombi.com> In-Reply-To: <8cb27cbf0408152126257ec1bc@mail.gmail.com> References: <411E9639.2070609@spintech.ro> <8cb27cbf0408152126257ec1bc@mail.gmail.com> Date: Tue, 17 Aug 2004 08:17:00 -0400 (EDT) From: "Charles Ulrich" To: "FreeBSD Questions" User-Agent: SquirrelMail/1.4.2 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on freedombi.com X-Spam-Level: X-Spam-Status: No, hits=-3.7 required=7.0 tests=BAYES_00,PRIORITY_NO_NAME autolearn=no version=2.63 Subject: Re: FreeBSD scanners X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 12:17:05 -0000 wrote: > Please, if any of you has confident experience with any of the following > scanners under FreeBSD, please let me know. I must find something available > for buying and it must work smoothly in FreeBSD (otherwise there's no point > of buying a new scanner, as I already have one which is not working in > anything else but Windows..) > > EPSON perfection 1670 > EPSON perfection 1670 Photo A little tip: check out Epison's Clearance Center on their website if you're in the market for one of their scanners. I secured a Perfection 1660 Photo for half the price of a brand-new 1670. (Except for the chipset inside, the 1660 and 1670 seem to be identical in every way.) Haven't quite gotten it working with FreeBSD and SANE but that's due more to a lack of time to figure out exactly why SANE can't see the scanner on the bus. -- Charles Ulrich System Administrator Ideal Solution - http://www.idealso.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 12:26:44 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E627E16A4CE for ; Tue, 17 Aug 2004 12:26:44 +0000 (GMT) Received: from mymail.netmagicians.com (mymail.netmagicians.com [202.87.39.126]) by mx1.FreeBSD.org (Postfix) with SMTP id 561FD43D41 for ; Tue, 17 Aug 2004 12:26:43 +0000 (GMT) (envelope-from sid@netmagicsolutions.com) Received: (qmail 20822 invoked from network); 17 Aug 2004 12:41:19 -0000 Received: from sid@netmagicsolutions.com by netmagicsolutions.com by uid 504 with qmail-scanner-1.16 (uvscan: v4.3.20/v4100. Clear:. Processed in 0.757407 secs); 17 Aug 2004 12:41:19 -0000 Received: from intra.netmagicsolutions.com (HELO ?10.1.1.161?) (202.87.39.242) by mymail.netmagicians.com with SMTP; 17 Aug 2004 12:41:18 -0000 Message-ID: <4121F985.6030501@netmagicsolutions.com> Date: Tue, 17 Aug 2004 17:56:45 +0530 From: Siddhartha Jain User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: =?ISO-8859-1?Q?Val=E9ry?= References: <4121EEE7.4080503@no-log.org> In-Reply-To: <4121EEE7.4080503@no-log.org> X-Enigmail-Version: 0.84.2.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit cc: questions@FreeBSD.org Subject: Re: Newbies Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 12:26:45 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Valéry wrote: | REF : documentation | http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-start.html | | | Hi, | i'm installing FreeBSD in order to change my NT5.1 | with Apache & ftp server. | I'm comming from IBM OS/390 mainframe and don't know | anything on Unix like systems. I'm a C/C++ developper too. | | My question beeing very simple, i think you don't need | technical information, but see on * lines below. | | Q : how to launch the "Kernel Configuration Menu" script | as described on Ch 2.3.2 (fig. 2.1) ? | | i don't have any option to do that on the Loader Menu (i tried all) | i tried to "grep-find" the script (or command) but fails. | | * i'm using/booting from FreeBSD 5.2.1, disc-1 | * boot0 & boot1 are Ok | * Loader Ok | * Sysinstall running Ok | Note : a mini-install of 5.2.1 is currently installed on my HDD | and seem to work properly. I would like to configure more | accurately my Kernel now. | | Great thanks, FreeBSD is exactly what i want, | First you might want to move away from 5.2.1 to 4.10 because 5.2.1 isn't stable release. 4.10 is the stable release or wait till 5.3 gets released. Also, see this http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html - -- Siddhartha Jain (CISSP) Consulting Engineer Netmagic Solutions Pvt Ltd Bombay - 400063 Phone: +91-22-26850001 Ext.128 Fax : +91-22-26850002 http://www.netmagicsolutions.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBIfmEOGaxOP7knVwRAhgvAJ0Ri6EdjVeGhg4Ej/uPl5xc4cfOBQCeOAXX t3wpvYduXBAcsa9UARrlt0Y= =p0C7 -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 12:35:49 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E6D416A4CE for ; Tue, 17 Aug 2004 12:35:49 +0000 (GMT) Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5D5143D1F for ; Tue, 17 Aug 2004 12:35:48 +0000 (GMT) (envelope-from mi@aldan.algebra.com) Received: from aldan.algebra.com (mi@localhost [127.0.0.1]) by aldan.algebra.com (8.12.11/8.12.11) with ESMTP id i7HCZk3x059798 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 17 Aug 2004 08:35:47 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Received: from localhost (localhost [[UNIX: localhost]]) by aldan.algebra.com (8.12.11/8.12.11/Submit) id i7HCZjAs059797 for questions@FreeBSD.org; Tue, 17 Aug 2004 08:35:45 -0400 (EDT) (envelope-from mi) From: Mikhail Teterin To: questions@FreeBSD.org Date: Tue, 17 Aug 2004 08:35:45 -0400 User-Agent: KMail/1.6.2 X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7whJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" Subject: web-serving does not update a file's atime? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 12:35:49 -0000 Hello! I tried to use stat(1) to see the last time a file was downloaded through Apache. To my surprise, all three dates displayed by stat are long ago, even though the web-server's log is showing downloads from a just a few hours back. The file-system used to be mounted noatime, but I turned that option off some time ago. If I read one of those files (with head(1) or file(1), for example), the atime is updated. But if Apache serves it out -- it is not... There is no caching in Apache either. Any ideas? Thanks! -mi From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 12:44:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CCC716A4CE for ; Tue, 17 Aug 2004 12:44:48 +0000 (GMT) Received: from frontend1.messagingengine.com (frontend1.messagingengine.com [66.111.4.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B22743D39 for ; Tue, 17 Aug 2004 12:44:47 +0000 (GMT) (envelope-from ian_leroux@fastmail.fm) Received: from server1.messagingengine.com (server1.internal [10.202.2.132]) by frontend1.messagingengine.com (Postfix) with ESMTP id 931C8C14AA5 for ; Tue, 17 Aug 2004 08:44:45 -0400 (EDT) Received: by server1.messagingengine.com (Postfix, from userid 99) id 8F5D13C85E; Tue, 17 Aug 2004 08:44:45 -0400 (EDT) Content-Disposition: inline Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="ISO-8859-1" MIME-Version: 1.0 X-Mailer: MIME::Lite 1.4 (F2.72; T1.001; A1.62; B3.01; Q3.01) To: freebsd-questions@freebsd.org Date: Tue, 17 Aug 2004 08:44:45 -0400 From: "Ian D. Leroux" X-Sasl-Enc: N7kjGxrAIojPfLF4x6jODA 1092746685 Message-Id: <1092746685.14782.202489521@webmail.messagingengine.com> Subject: Central SSL Certificate Store? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 12:44:48 -0000 I've been trying to set up isync or mailsync, and have run into the following issue: When setting up a secure connection, both of them (in my limited understanding) want to verify the certificate received from the imap server against a trusted certificate. Mailsync seems to look for such a trusted certificate in a hardcoded location, whereas isync needs me to specify the CertificateFile parameter in its configuration. I can't seem to find where these certificates are supposed to be stored. I've found a number of helpful documents on _generating_ certificates (for use by people setting up servers), but I'm interested strictly in the client end for now. Also, old documentation suggests that installing the openssl port sets up such a directory, but now that OpenSSH is in the base system I assume that is not necessary. So is there a standard location for trusted certificates? or does each application keep its own information? Thanks, Ian Who is learning a fair bit about ssl in the process, which is a good thing -- Ian D. Leroux ian_leroux@fastmail.fm From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 12:52:34 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15FD916A4CE for ; Tue, 17 Aug 2004 12:52:34 +0000 (GMT) Received: from bmyster.com (loqtis.bmyster.com [66.55.195.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94FAD43D48 for ; Tue, 17 Aug 2004 12:52:33 +0000 (GMT) (envelope-from misterb@bmyster.com) Received: from loqtis.bmyster.com (localhost.bmyster.com [127.0.0.1]) by bmyster.com (8.12.11/8.12.11) with ESMTP id i7HCxpkj085530 for ; Tue, 17 Aug 2004 08:59:51 -0400 (EDT) Received: (from www@localhost) by loqtis.bmyster.com (8.12.11/8.12.11/Submit) id i7HCxko8085529; Tue, 17 Aug 2004 08:59:46 -0400 (EDT) X-Authentication-Warning: loqtis.bmyster.com: www set sender to misterb@bmyster.com using -f Received: from 207.5.142.198 (SquirrelMail authenticated user mrb) by new.host.name with HTTP; Tue, 17 Aug 2004 08:59:46 -0400 (EDT) Message-ID: <56092.207.5.142.198.1092747586.squirrel@new.host.name> Date: Tue, 17 Aug 2004 08:59:46 -0400 (EDT) From: "Brent Bailey" To: questions@freebsd.org User-Agent: SquirrelMail/1.4.0 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 X-Priority: 3 Importance: Normal Subject: portmap starting by itself ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: misterb@bmyster.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 12:52:34 -0000 Hello .. I have a test box running Freebsd 4.9-RC2 , anyway this mornhign i check my logs and saw this in a "ps" 13560 ?? Is 0:00.00 portmap 218.49.183.17 correct me if im wrong BUT this appears to be a portmap connection to the said ip ?? how does somethign liek this just start up ?? has this box been compromised ? by the way the box is runing basic ip filters w/ no nat and one interface. -- Brent Bailey CCNA Bmyster LLC Computer Networking and Webhosting Network Engineer, Webmaster, President http://www.bmyster.com mrb@bmyster.com 207-247-8330 From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 13:00:36 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDD6D16A4CE for ; Tue, 17 Aug 2004 13:00:36 +0000 (GMT) Received: from mail.u4eatech.com (blackhole.u4eatech.com [195.188.241.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 274C743D45 for ; Tue, 17 Aug 2004 13:00:36 +0000 (GMT) (envelope-from richard.williamson@u4eatech.com) Received: by mail.u4eatech.com (Postfix, from userid 503) id 6EE9936012E; Tue, 17 Aug 2004 14:00:35 +0100 (BST) Received: from apus.u4eatech.com (apus.degree2.com [172.30.40.129]) (using TLSv1 with cipher DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by mail.u4eatech.com (Postfix) with ESMTP id 76678360123 for ; Tue, 17 Aug 2004 14:00:32 +0100 (BST) Message-Id: <6.1.2.0.2.20040817135901.02705d88@cygnus> X-Sender: richard@cygnus X-Mailer: QUALCOMM Windows Eudora Version 6.1.2.0 Date: Tue, 17 Aug 2004 14:04:20 +0100 To: freebsd-questions@freebsd.org From: "Richard P. Williamson" Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on mail X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 Subject: vnconfig and a compact flash disk image X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 13:00:36 -0000 Hello, 4.10-RELEASE I've got an image of a 32mb compact flash card that I created by dd if=/dev/ad3 of=./sanDisk.32Mb.image Now, I want to mount that image and check it for validity, edit it, etc, and then get it back onto the flash card. I've already worked out how to get it back onto a compact flash card (dd, or if it is gzipped, then zcat). But how can I mount it? The format is a 28Mb slice (a) and a 4Mb slice (e). I've tried vnconfig vn0 sanDisk.32Mb.image and vnconfig vn0a sanDisk.32Mb.image but fdisk tells me 'invalid superblock' when pointed at /dev/vn0[a]. How can I mount the two slices on different mount points? Can I do this at all? TIA, rip From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 13:23:45 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66D9816A4CE for ; Tue, 17 Aug 2004 13:23:45 +0000 (GMT) Received: from abigail.blackend.org (blackend.org [212.11.35.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F3D643D5D for ; Tue, 17 Aug 2004 13:23:44 +0000 (GMT) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (localhost [127.0.0.1]) i7HDNg0e039757; Tue, 17 Aug 2004 15:23:42 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: (from marc@localhost) by abigail.blackend.org (8.12.11/8.12.11/Submit) id i7HDNgY1039756; Tue, 17 Aug 2004 15:23:42 +0200 (CEST) (envelope-from marc) Date: Tue, 17 Aug 2004 15:23:41 +0200 From: Marc Fonvieille To: Anton Alin-Adrian Message-ID: <20040817132341.GC38060@abigail.blackend.org> References: <411E9639.2070609@spintech.ro> <8cb27cbf0408152126257ec1bc@mail.gmail.com> <4121E53D.7000900@spintech.ro> <20040817115042.GB38060@abigail.blackend.org> <4121FAE5.70605@spintech.ro> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4121FAE5.70605@spintech.ro> User-Agent: Mutt/1.4.2.1i X-Useless-Header: blackend.org X-Operating-System: FreeBSD 4.10-PRERELEASE cc: freebsd-questions@FreeBSD.org Subject: Re: FreeBSD scanners X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 13:23:45 -0000 On Tue, Aug 17, 2004 at 03:32:37PM +0300, Anton Alin-Adrian wrote: > Marc Fonvieille wrote: > > >>I found this "CANON Scanner Canon Lide30 USB" available to be bought > > > >It is supported under 4.10 and -CURRENT. I use it :) and I used it > >during the write of the Handbook's scanners section. > > > >Marc > > Ok can you please confirm to me again that this is the model you are using > and that it is working smoothly? > > Thanks and appologises for this reply, but I am going to buy it right away > if you answer me positively. > I just pluged it on my -CURRENT laptop and did 2 scans :) I find it noisy like many USB scanners (I prefer my old SCSI Snapscan), but it remains a decent scanner. Here are some logs for this scanner: # dmesg | grep scanner kernel: uscanner0: Canon CanoScan, rev 1.10/1.00, addr # sane-find-scanner -q found USB scanner (vendor=0x04a9, product=0x220e) at /dev/uscanner0 # scanimage -L device `plustek:/dev/uscanner0' is a Canon N1240U/LiDE30 USB flatbed scanner Marc From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 13:25:54 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 010EF16A4CE for ; Tue, 17 Aug 2004 13:25:54 +0000 (GMT) Received: from abigail.blackend.org (blackend.org [212.11.35.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 349D043D5D for ; Tue, 17 Aug 2004 13:25:53 +0000 (GMT) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (localhost [127.0.0.1]) i7HDPpM1039802; Tue, 17 Aug 2004 15:25:52 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: (from marc@localhost) by abigail.blackend.org (8.12.11/8.12.11/Submit) id i7HDPpP5039801; Tue, 17 Aug 2004 15:25:51 +0200 (CEST) (envelope-from marc) Date: Tue, 17 Aug 2004 15:25:51 +0200 From: Marc Fonvieille To: Charles Ulrich Message-ID: <20040817132551.GD38060@abigail.blackend.org> References: <411E9639.2070609@spintech.ro> <8cb27cbf0408152126257ec1bc@mail.gmail.com> <49165.207.179.91.96.1092745020.squirrel@freedombi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <49165.207.179.91.96.1092745020.squirrel@freedombi.com> User-Agent: Mutt/1.4.2.1i X-Useless-Header: blackend.org X-Operating-System: FreeBSD 4.10-PRERELEASE cc: FreeBSD Questions Subject: Re: FreeBSD scanners X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 13:25:54 -0000 On Tue, Aug 17, 2004 at 08:17:00AM -0400, Charles Ulrich wrote: > wrote: > > Please, if any of you has confident experience with any of the following > > scanners under FreeBSD, please let me know. I must find something available > > for buying and it must work smoothly in FreeBSD (otherwise there's no point > > of buying a new scanner, as I already have one which is not working in > > anything else but Windows..) > > > > EPSON perfection 1670 > > EPSON perfection 1670 Photo > > A little tip: check out Epison's Clearance Center on their website if you're > in the market for one of their scanners. I secured a Perfection 1660 Photo for > half the price of a brand-new 1670. (Except for the chipset inside, the 1660 > and 1670 seem to be identical in every way.) > > Haven't quite gotten it working with FreeBSD and SANE but that's due more to a > lack of time to figure out exactly why SANE can't see the scanner on the bus. > A quick read of ttp://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/scanners.html will give you the answer :) Marc From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 13:36:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E0AD16A4CE for ; Tue, 17 Aug 2004 13:36:42 +0000 (GMT) Received: from mta08-svc.ntlworld.com (mta08-svc.ntlworld.com [62.253.162.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B84743D3F for ; Tue, 17 Aug 2004 13:36:41 +0000 (GMT) (envelope-from swampdog@ntlworld.com) Received: from sd.swampdog ([80.4.128.81]) by mta08-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with ESMTP id <20040817133632.TLME512.mta08-svc.ntlworld.com@sd.swampdog> for ; Tue, 17 Aug 2004 14:36:32 +0100 From: SD To: freebsd-questions@freebsd.org Date: Tue, 17 Aug 2004 13:31:46 +0100 User-Agent: KMail/1.6.2 References: <200408141740.58105.malcolm.kay@internode.on.net> <411E6239.7030704@dhumketu.cjb.net> <200408150926.45448.malcolm.kay@internode.on.net> In-Reply-To: <200408150926.45448.malcolm.kay@internode.on.net> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408171331.47668.swampdog@ntlworld.com> Subject: Re: Fetchmail/Sendmail rejects X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 13:36:42 -0000 On Sunday 15 August 2004 00:56, Malcolm Kay wrote: > On Sunday 15 August 2004 04:34, you wrote: > > Malcolm Kay wrote: > > > I run fetchmail in daemon mode to download > > > POP3 mail from my ISP. > > > > > > Sendmail rejects many messages as for example: > > > Aug 14 16:59:33 beta sm-mta[35000]: i7E7DYje035000: > > > ruleset=check_mail, arg1=, > > > relay=localhost.home [127.0.0.1], reject=451 > > > 4.1.8 Domain of sender address > > > fbbjqwvcydimv@lightspeedcredit.com does not resolve > > > > > > I am quite happy to have these rejected but it seems they don't > > > get deleted at the ISP end and clog up the mail box, I think > > > eventually confusing fetchmail. > > > > > > Is there some reasonable way of disposing of these messages. I > > > would prefer not to download these into my normal user mailbox > > > but I would be quite happy to divert them to some pseudo user > > > setup for the purpose. I would imagine sendmail can be coaxed > > > into doing this, but how? > > > > > > Responding to 2 or 3 lists using a valid e-mail address means > > > that I receive a lot of spam including much with unresolvable > > > addresses. > > > > have a look at mail/filtermail > > I've just downloaded this port and find it quite interesting. However > it seems not to offer very much in this particular case as the > criteria used are similar to those used by my ISP to reject mail -- > I'm able to set the level. But I don't see a way of getting > filtermail to reject based on domain name resolution. > > Others have pointed out that spam filtering in fetchmail can be used > to delete mail based on the error code returned by sendmail. It seems > it might also be reasonable to change sendmail.cf to issue a 553 > error in place of the 451 as the 553 invoking messages are deleted by > fetchmail by default. No need. Assuming you do want to reject (trash) the email you can specify multiple return codes to fetchmail. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 13:36:45 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E64616A4CE for ; Tue, 17 Aug 2004 13:36:45 +0000 (GMT) Received: from mta08-svc.ntlworld.com (mta08-svc.ntlworld.com [62.253.162.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08BFF43D48 for ; Tue, 17 Aug 2004 13:36:45 +0000 (GMT) (envelope-from swampdog@ntlworld.com) Received: from sd.swampdog ([80.4.128.81]) by mta08-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with ESMTP id <20040817133637.TLPM512.mta08-svc.ntlworld.com@sd.swampdog> for ; Tue, 17 Aug 2004 14:36:37 +0100 From: SD To: freebsd-questions@freebsd.org Date: Tue, 17 Aug 2004 13:36:08 +0100 User-Agent: KMail/1.6.2 References: <20040815203141.96877.qmail@web50806.mail.yahoo.com> In-Reply-To: <20040815203141.96877.qmail@web50806.mail.yahoo.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408171336.08820.swampdog@ntlworld.com> Subject: Re: dealing with deffective RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 13:36:45 -0000 On Sunday 15 August 2004 21:31, Laurentiu Pancescu wrote: > I was afraid this is what I'll be told, you're > probably right. I have two 128M modules, I'll try to > find the faulty one, by running the tests just with > one at a time. If it's one of them (could also be the > processor, or the mainboard, right?), is it better to > buy a replacement for the defective one, or just a > single 256M module, to avoid mismatches between the > chips? MB is a Matsonic/Chaintech 7AJA0 (I know, it's > cheap and not very good - that's what Compaq decided > to put inside Presario), KT833-based, hosting an > Athlon 1100MHz. If 256Mb will fit in one slot instead of 2 slots with 128Mb then go for it. As others have stated, buy decent ram. Been there myself - add up your travel+time and it just isn't worth it. Fwiw, it's only once I got decent ram that I was able to diagnose defective L2 cache. Not that I want to worry you mind! Remember that gcc and bzip are excellent torture tests. Set g++ off on something "heavy" and have bzip2 compress/decompress all night in tandem. If it's still alive in the morning, consider yourself reliable. ;-) From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 13:39:44 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFF9D16A4CE for ; Tue, 17 Aug 2004 13:39:44 +0000 (GMT) Received: from ux11.ltcm.net (ux11.ltcm.net [64.215.98.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE8C943D5E for ; Tue, 17 Aug 2004 13:39:43 +0000 (GMT) (envelope-from mipam@ibb.net) Received: from ux11.ltcm.net (mipam@localhost.ltcm.net [IPv6:::1]) by ux11.ltcm.net (8.12.9/8.12.9/UX11TT) with ESMTP id i7HDdfIo030103 for ; Tue, 17 Aug 2004 15:39:42 +0200 (MEST) Received: from localhost (mipam@localhost) by ux11.ltcm.net (8.12.9/8.12.9/Submit) with ESMTP id i7HDdeq6011400 for ; Tue, 17 Aug 2004 15:39:41 +0200 (MEST) X-Authentication-Warning: ux11.ltcm.net: mipam owned process doing -bs Date: Tue, 17 Aug 2004 15:39:40 +0200 (MEST) From: Mipam X-X-Sender: mipam@ux11.ltcm.net To: freebsd-questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: memory usage question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 13:39:44 -0000 Hi, I have a question about usage of memory. Despite the well documented articles about it some things are still unclear. In top we see memory devided in several items: Active, inactive, buffered, wired and free. The active memory is clear, it's what is in use by programs now. Wired mem is also clear, it's for the kernel data structs. When a program ends, the mem is put in the inactive part right? So when the program is run 10 minutes after it can be started very quickly, also because the data used from the disk of that program is still in the cache part right? However, suppose the program isnt run in 2 hours, will there be a timeout in the parts which are being put in inactive and in cache? Suppose the timeout has occured, will the mem be added to free mem or? What is the difference between buffered mem and cached mem? Both represent data which is recently being called from the disk, so that next time when the file is called again, no disk access, needs to be made in order to save time right? However, suppose i have little mem free, say 7 mb and still 200 in inactive. Then a program needs to start which needs say 30 mb on mem, will also mem be taken from the inactive part and discard the cache? Some ppl only look at how much free mem is available on their system and then sound the alarm, however, shouldnt they add inactive and free together in order to see how much mem can be used for newly used programs (which didnt run before?). Bye, Mipam. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 14:08:20 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B2A816A4CE for ; Tue, 17 Aug 2004 14:08:20 +0000 (GMT) Received: from excalibur.tpn.ch (excalibur.tpn.ch [195.141.179.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0E9C43D5F for ; Tue, 17 Aug 2004 14:08:18 +0000 (GMT) (envelope-from michel.schwab@tpn.ch) Received: from [192.168.8.100] (zux181-163.adsl.green.ch [80.254.181.163]) by excalibur.tpn.ch (8.12.11/8.12.11) with ESMTP id i7HE8CbX026980 for ; Tue, 17 Aug 2004 16:08:12 +0200 (CEST) (envelope-from michel.schwab@tpn.ch) From: Michel Schwab To: freebsd-questions@freebsd.org Content-Type: text/plain Message-Id: <1092751656.69937.83.camel@atm.badboy.ch> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 17 Aug 2004 16:07:37 +0200 Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamd / ClamAV version 0.73, clamav-milter version 0.73a on excalibur.tpn.ch X-Virus-Status: Clean Subject: PopTop (pptp) and DHCP Server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 14:08:20 -0000 Hi, I have a question and how a can sovled my problem. Installed form the Port: - POPTOP - DHCP Server Now, i have a external connection with PPTP (poptop) in the freebsd i see tun0 active, that very good. But now send the end of the tunnel hardware (a AccessPoint whith dhcp relay) DHCP Request over the Tunnel, but nothing will be answerd. For me it's clear, that the DHCP Server listing only on the Hardware Interface but not on a "virtuel" Tunnel (tun0). When i start dhcpd manuell with -> dhcpd tun0 will not work Have everyone a quick/dirty solution for this? Many thanks Michel PS: Sorry for my bad english.... From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 14:10:40 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45E7716A4CE for ; Tue, 17 Aug 2004 14:10:40 +0000 (GMT) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id D243343D1F for ; Tue, 17 Aug 2004 14:10:38 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) i7HEAXfO090246 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 17 Aug 2004 15:10:33 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)id i7HEAX9m090245; Tue, 17 Aug 2004 15:10:33 +0100 (BST) (envelope-from matthew) Date: Tue, 17 Aug 2004 15:10:33 +0100 From: Matthew Seaman To: Mipam Message-ID: <20040817141033.GA89945@happy-idiot-talk.infracaninophile.co.uk> Mail-Followup-To: Matthew Seaman , Mipam , freebsd-questions@freebsd.org References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="17pEHd4RhPHOinZp" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6i X-Greylist: Message not sent from an IPv4 address, not delayed by milter-greylist-1.5.3 (smtp.infracaninophile.co.uk [0.0.0.0]); Tue, 17 Aug 2004 15:10:34 +0100 (BST) X-Virus-Scanned: clamd / ClamAV version devel-20040705, clamav-milter version 0.74a on smtp.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, hits=-4.8 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on happy-idiot-talk.infracaninophile.co.uk cc: freebsd-questions@freebsd.org Subject: Re: memory usage question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 14:10:40 -0000 --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 17, 2004 at 03:39:40PM +0200, Mipam wrote: > I have a question about usage of memory. > Despite the well documented articles about it some things are still > unclear. In top we see memory devided in several items: Try this article, buy the guy who wrote some very large chunks of the VM system: http://www.daemonnews.org/200001/freebsd_vm.html As for the meaning of the different labels top(1) shows attached to memory sizes: those indicate a sequence of memory caches for different age levels of pages. Note that the system doesn't overwrite cached pages on a timed basis, but rather picks the oldest unused memory to recycle as and when some other application requests it. Stuff can stay in the memory caches for a very long time on a quiet system. http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/misc.html#TOP-FREE= MEM Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --17pEHd4RhPHOinZp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBIhHZiD657aJF7eIRAiWHAJ41sPZ3vTj7LkdUeu0uC2yrAPxYvgCeNmKL y2dKsZtsG75ZfuWE/CRwFQI= =UfHB -----END PGP SIGNATURE----- --17pEHd4RhPHOinZp-- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 14:36:30 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0C9916A4CE for ; Tue, 17 Aug 2004 14:36:30 +0000 (GMT) Received: from web40105.mail.yahoo.com (web40105.mail.yahoo.com [66.218.78.39]) by mx1.FreeBSD.org (Postfix) with SMTP id 8CBFD43D5D for ; Tue, 17 Aug 2004 14:36:30 +0000 (GMT) (envelope-from dino_vliet@yahoo.com) Message-ID: <20040817143629.54816.qmail@web40105.mail.yahoo.com> Received: from [130.37.20.20] by web40105.mail.yahoo.com via HTTP; Tue, 17 Aug 2004 07:36:29 PDT Date: Tue, 17 Aug 2004 07:36:29 -0700 (PDT) From: Dino Vliet To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: additional fonts in x11 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 14:36:30 -0000 Can anyone tell me where I can find these fonts: -adobe-helvetica-medium-o-normal--*-120-*-*.... -adobe-helvetica-medium-r-normal--*-120-*-*.... I need them because gnucash 1.8.8 won't start and complaints about them. Brgds Dino Vliet __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 14:36:41 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1633016A4CE for ; Tue, 17 Aug 2004 14:36:41 +0000 (GMT) Received: from web40103.mail.yahoo.com (web40103.mail.yahoo.com [66.218.78.37]) by mx1.FreeBSD.org (Postfix) with SMTP id 06AFC43D1F for ; Tue, 17 Aug 2004 14:36:41 +0000 (GMT) (envelope-from dino_vliet@yahoo.com) Message-ID: <20040817143640.44172.qmail@web40103.mail.yahoo.com> Received: from [130.37.20.20] by web40103.mail.yahoo.com via HTTP; Tue, 17 Aug 2004 07:36:40 PDT Date: Tue, 17 Aug 2004 07:36:40 -0700 (PDT) From: Dino Vliet To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: additional fonts in x11 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 14:36:41 -0000 Can anyone tell me where I can find these fonts: -adobe-helvetica-medium-o-normal--*-120-*-*.... -adobe-helvetica-medium-r-normal--*-120-*-*.... I need them because gnucash 1.8.8 won't start and complaints about them. I'm using freebsd version 4.10. Brgds Dino Vliet __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 14:38:01 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E139C16A4CE for ; Tue, 17 Aug 2004 14:38:01 +0000 (GMT) Received: from mail.u4eatech.com (blackhole.u4eatech.com [195.188.241.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A3EF43D3F for ; Tue, 17 Aug 2004 14:37:57 +0000 (GMT) (envelope-from richard.williamson@u4eatech.com) Received: by mail.u4eatech.com (Postfix, from userid 503) id E425A36014B; Tue, 17 Aug 2004 15:37:55 +0100 (BST) Received: from apus.u4eatech.com (apus.degree2.com [172.30.40.129]) (using TLSv1 with cipher DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by mail.u4eatech.com (Postfix) with ESMTP id 721CC360148 for ; Tue, 17 Aug 2004 15:37:52 +0100 (BST) Message-Id: <6.1.2.0.2.20040817153240.027486b8@cygnus> X-Sender: richard@cygnus X-Mailer: QUALCOMM Windows Eudora Version 6.1.2.0 Date: Tue, 17 Aug 2004 15:41:40 +0100 To: freebsd-questions@freebsd.org From: "Richard P. Williamson" Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on mail X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 Subject: using ttys to restart a process X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 14:38:02 -0000 Hello, 4.10-RELEASE According to ttys(5) and init(8), init will restart a process if it is found in ttys. I can not find, however, an example syntax for doing just that. Say I have a process called /usr/bin/sleeploop # is this how it works? sleeper "/usr/bin/sleeploop -q 3000" none on insecure ? Then, if I killall -s HUP sleeploop, it should 'magically reappear, as if by magic', right? Loath to have a go on this on the running system, on the off chance that I end up by breaking the boot sequence. TIA, rip From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 14:44:55 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BC0B16A4CE; Tue, 17 Aug 2004 14:44:55 +0000 (GMT) Received: from lists.freedombi.com (okemoscommunitychurch.org [207.179.98.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47D1543D39; Tue, 17 Aug 2004 14:44:55 +0000 (GMT) (envelope-from charles@idealso.com) Received: by lists.freedombi.com (Postfix, from userid 1000) id 6CA147256C; Tue, 17 Aug 2004 10:44:54 -0400 (EDT) Received: from freedombi.com (localhost [192.168.10.108]) by lists.freedombi.com (Postfix) with SMTP id 4F1F272496; Tue, 17 Aug 2004 10:44:52 -0400 (EDT) Received: from 24.11.146.21 (SquirrelMail authenticated user charles) by freedombi.com with HTTP; Tue, 17 Aug 2004 10:44:52 -0400 (EDT) Message-ID: <52449.24.11.146.21.1092753892.squirrel@freedombi.com> In-Reply-To: <20040817014310.GG81257@wantadilla.lemis.com> References: <200407080157.35126.mariodoria@yahoo.com><20040708070522.GK63489@wantadilla.lemis.com><200407080221.30895.mariodoria@yahoo.com> <20040817014310.GG81257@wantadilla.lemis.com> Date: Tue, 17 Aug 2004 10:44:52 -0400 (EDT) From: "Charles Ulrich" To: "Greg 'groggy' Lehey" User-Agent: SquirrelMail/1.4.2 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on freedombi.com X-Spam-Level: X-Spam-Status: No, hits=-3.7 required=7.0 tests=BAYES_00,PRIORITY_NO_NAME autolearn=no version=2.63 cc: Mario Doria cc: freebsd-questions@freebsd.org Subject: Re: Vinum in -CURRENT (was: Vinum panic on boot) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 14:44:55 -0000 Greg 'groggy' Lehey said: > The current status of Vinum in -CURRENT is that it is being > rewritten. The introduction of the GEOM layer has badly broken Vinum, > and it has been decided better to rewrite it than to fix it. It'll be > a while before it's smooth again. This would be a good note to put somewhere obvious such as the 5.x-RELEASE errata. I too had been trying to get Vinum to work in -CURRENT. Vinum is an important part of FreeBSD for some people and there's likely going to be a lot of people trying to test it out as 5.x approaches STABLE. -- Charles Ulrich System Administrator Ideal Solution - http://www.idealso.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 14:46:24 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C20716A4CE for ; Tue, 17 Aug 2004 14:46:24 +0000 (GMT) Received: from web52501.mail.yahoo.com (web52501.mail.yahoo.com [206.190.39.122]) by mx1.FreeBSD.org (Postfix) with SMTP id 853D343D41 for ; Tue, 17 Aug 2004 14:46:23 +0000 (GMT) (envelope-from ronj_clark@yahoo.com) Message-ID: <20040817144623.53277.qmail@web52501.mail.yahoo.com> Received: from [63.89.83.220] by web52501.mail.yahoo.com via HTTP; Tue, 17 Aug 2004 07:46:23 PDT Date: Tue, 17 Aug 2004 07:46:23 -0700 (PDT) From: Ronnie Clark To: FreeBSD Questions MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Syslog-ng questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ronj_clark@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 14:46:24 -0000 Hello all, I am trying to build a FreeBSD syslog server for multiple systems to write to. I have loaded sysog-ng from ports, and I noticed that in my /var/log/messages I see the following: Aug 17 09:34:15 rc-bsd syslog-ng[424]: io.c: do_write: write() failed (errno 32), Broken pipe Aug 17 09:34:15 rc-bsd syslog-ng[424]: pkt_buffer::do_flush(): Error flushing data Aug 17 09:34:15 rc-bsd syslog-ng[424]: Garbage collecting while idle... Aug 17 09:34:15 rc-bsd syslog-ng[424]: Objects alive: 200, garbage collected: 0 Is there an issue with this "broken pipe"? Anyone else seeing this issue? Thanks in advance, Ron Clark __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 14:55:08 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3F6316A4CE for ; Tue, 17 Aug 2004 14:55:08 +0000 (GMT) Received: from smtp.knology.net (smtp.knology.net [24.214.63.101]) by mx1.FreeBSD.org (Postfix) with SMTP id 5F42B43D4C for ; Tue, 17 Aug 2004 14:55:08 +0000 (GMT) (envelope-from dkelly@HiWAAY.net) Received: (qmail 16606 invoked by uid 0); 17 Aug 2004 14:55:10 -0000 Received: from user-69-73-60-132.knology.net (HELO ?10.0.0.68?) (69.73.60.132) by smtp1.knology.net with SMTP; 17 Aug 2004 14:55:10 -0000 Mime-Version: 1.0 (Apple Message framework v619) In-Reply-To: <20040817052403.GE88156@wantadilla.lemis.com> References: <6.1.2.0.0.20040816220030.04148ec0@mail1.simplenet.com> <20040817052403.GE88156@wantadilla.lemis.com> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <6BDB5047-F05D-11D8-8B80-000393BB56F2@HiWAAY.net> Content-Transfer-Encoding: 7bit From: David Kelly Date: Tue, 17 Aug 2004 09:55:03 -0500 To: FreeBSD_Questions FreeBSD_Questions X-Mailer: Apple Mail (2.619) Subject: Re: hard links for directories ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 14:55:08 -0000 On Aug 17, 2004, at 12:24 AM, Greg 'groggy' Lehey wrote: > On Monday, 16 August 2004 at 22:02:11 -0700, Tim Traver wrote: > >> This may be a stupid question, but is it possible to make hard links >> to >> directories ??? I know you can with files, and normally, you would do >> a >> soft link for directories, but is there any way to finagle this ? > > Sure, there are ways. But why would you want to? > > A link to a directory makes it a subdirectory of the directory > containing the link. If you have two links to a directory, where > should the directory's .. link point? How would fsck know what to do? Root is the only one allowed to make hard links to directories. As Greg says, "How would fsck know which is the correct parent directory?" Directories have only one parent. If a directory were to have two parents then you'd break the tree structure of the directory hierarchy. You would create a loop in the tree branches which would place utilities such as "find" in an infinite loop. A symbolic link works just as well and is an obvious signpost to find, fsck, tar, etc... -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Top posters will not be shown the honor of a reply. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 15:00:23 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC37116A4CE for ; Tue, 17 Aug 2004 15:00:23 +0000 (GMT) Received: from web14103.mail.yahoo.com (web14103.mail.yahoo.com [216.136.172.133]) by mx1.FreeBSD.org (Postfix) with SMTP id 9E59443D45 for ; Tue, 17 Aug 2004 15:00:23 +0000 (GMT) (envelope-from k_greenwood1@yahoo.com) Message-ID: <20040817150018.64889.qmail@web14103.mail.yahoo.com> Received: from [209.105.201.44] by web14103.mail.yahoo.com via HTTP; Tue, 17 Aug 2004 08:00:18 PDT Date: Tue, 17 Aug 2004 08:00:18 -0700 (PDT) From: "K. Greenwood" To: Peter Ulrich Kruppa , freebsd-questions@freebsd.org In-Reply-To: <20040817094732.X820@pukruppa.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: SATA drive bootable ??? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:00:23 -0000 --- Peter Ulrich Kruppa wrote: > Hi! > > I just started playing around with my new SATA disk > (with SATA > 150 TX2plus controller on -CURRENT). I can mount and > format it > all-right. > > Is it generally posssible to boot from such a disk > (different > question would be if it made sense to do so)? > My SATA drive is recognized as ata2-master. Well, I was kinda hoping someone else would come up with an answer. I kinda prefer to lurk (something about opening one's mouth and removing doubt...). In the past, I have forgotten to set external controller's to be bootable. Perhaps you need to set either scsi or "mass storage device" bootable before hd/cd/floppy/whatever. Good luck. __________________________________ Do you Yahoo!? Yahoo! Mail is new and improved - Check it out! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 15:00:46 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CD1916A4CF for ; Tue, 17 Aug 2004 15:00:46 +0000 (GMT) Received: from smtp801.mail.sc5.yahoo.com (smtp801.mail.sc5.yahoo.com [66.163.168.180]) by mx1.FreeBSD.org (Postfix) with SMTP id 7246E43D39 for ; Tue, 17 Aug 2004 15:00:41 +0000 (GMT) (envelope-from addymin@pacbell.net) Received: from unknown (HELO ?192.168.1.12?) (m?chinn@pacbell.net@63.202.82.203 with plain) by smtp801.mail.sc5.yahoo.com with SMTP; 17 Aug 2004 15:00:41 -0000 Message-ID: <41221E98.9020509@pacbell.net> Date: Tue, 17 Aug 2004 08:04:56 -0700 From: Mike User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: stheg olloydson , freebsd-questions References: <20040816214027.93749.qmail@web61302.mail.yahoo.com> In-Reply-To: <20040816214027.93749.qmail@web61302.mail.yahoo.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: How to increase scrollback for FreeBSD-4.10 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: addymin@pacbell.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:00:46 -0000 stheg olloydson wrote: > you said: > > >>I have a FBSD-4.10 system that I log into using PuTTY (on a Win2K >>workstation). I am able to set PuTTY's scrollback to 1200 lines. > > > > Hello, > > Unfortunately, I do not have a solution to your problem. I just wanted > to pass along some information concerning PuTTY from a security news > letter to which I subscribe: > > >>04.31.4 CVE: Not Available >>Platform: Third Party Windows Apps >>Title: PuTTY Remote Buffer Overflow >>Description: PuTTY is a free Telnet and SSH client. It has been >>reported that PuTTY is subject to a pre-authentication buffer overflow >>that can allow malicious servers to execute code on a client machine >>as it attempts to negotiate connection. PuTTY 0.54 and previous >>versions are vulnerable. >>Ref: > > http://www.coresecurity.com/common/showdoc.php?idx=417&idxseccion=10 > > Note that the URL may have wrapped. > > Regards, > > Stheg Stehg Thanks for the security note/update on putty! I'm using version 5.5 now. Michael > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Mail - 50x more storage than other providers! > http://promotions.yahoo.com/new_mail > From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 15:09:36 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B6BC16A4CE for ; Tue, 17 Aug 2004 15:09:36 +0000 (GMT) Received: from redtick.homeunix.com (adsl-68-89-249-225.dsl.okcyok.swbell.net [68.89.249.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2483043D31 for ; Tue, 17 Aug 2004 15:09:36 +0000 (GMT) (envelope-from boxend@redtick.homeunix.com) Received: from redtick.homeunix.com (localhost.homeunix.com [127.0.0.1]) i7HF83Hi018960 for ; Tue, 17 Aug 2004 10:08:03 -0500 (CDT) (envelope-from boxend@redtick.homeunix.com) Received: (from boxend@localhost) by redtick.homeunix.com (8.12.10/8.12.10/Submit) id i7HF832Z018959 for freebsd-questions@freebsd.org; Tue, 17 Aug 2004 10:08:03 -0500 (CDT) (envelope-from boxend) Date: Tue, 17 Aug 2004 10:08:03 -0500 (CDT) From: Mark Message-Id: <200408171508.i7HF832Z018959@redtick.homeunix.com> To: freebsd-questions@freebsd.org Subject: logins X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:09:36 -0000 I've beend getting the sshd login attempts, like everyone else so I've been watching the logs close, this is the first time to see this item in /var/log/messages. Aug 14 04:15:00 chillico su: _secure_path: /nonexistent/.login_conf is not owned by uid 65534 I've looked in the passwd file and groups, there is not a uid of 65534 listed. I installed rsync last week to backup some windows computers during the weekend, this would have been during one of the backups, but the other five would have triggered the same msg, just thinking outloud here. Any idea what would have made this entry?? From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 15:17:47 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ED7216A4DD for ; Tue, 17 Aug 2004 15:17:47 +0000 (GMT) Received: from mail2.speakeasy.net (mail2.speakeasy.net [216.254.0.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 360CF43D4C for ; Tue, 17 Aug 2004 15:17:47 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 2411 invoked from network); 17 Aug 2004 15:17:46 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.no-ip.com) ([66.92.78.145]) (envelope-sender ) by mail2.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 17 Aug 2004 15:17:46 -0000 Received: by be-well.no-ip.com (Postfix, from userid 1147) id 6A53C7D; Tue, 17 Aug 2004 11:17:46 -0400 (EDT) Sender: lowell@be-well.ilk.org To: Mark References: <200408171508.i7HF832Z018959@redtick.homeunix.com> From: Lowell Gilbert Date: 17 Aug 2004 11:17:46 -0400 In-Reply-To: <200408171508.i7HF832Z018959@redtick.homeunix.com> Message-ID: <448ycdhjz9.fsf@be-well.ilk.org> Lines: 17 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-questions@freebsd.org Subject: Re: logins X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:17:47 -0000 Mark writes: > I've beend getting the sshd login attempts, like everyone else so I've been > watching the logs close, this is the first time to see this item in /var/log/messages. > Aug 14 04:15:00 chillico su: _secure_path: /nonexistent/.login_conf is not owned by uid 65534 The machine doesn't have a '/nonexistent/' directory, does it? It is important security-wise that such a directory must *not* exist. > I've looked in the passwd file and groups, there is not a uid of 65534 listed. There *should* be; it's "nobody". And it shouldn't be in the wheel group. > I installed rsync last week to backup some windows computers during the weekend, this would have been > during one of the backups, but the other five would have triggered the same msg, just thinking outloud here. Unless /nonexistent got created during the process... From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 15:18:41 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE65116A4CE for ; Tue, 17 Aug 2004 15:18:41 +0000 (GMT) Received: from frontend1.messagingengine.com (frontend1.messagingengine.com [66.111.4.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 757A843D41 for ; Tue, 17 Aug 2004 15:18:40 +0000 (GMT) (envelope-from nkinkade@fastmail.fm) X-Sasl-enc: f9vA+V3cB/q1AE2YKl+keA 1092755918 Received: from gentoo-npk.bmp.ub (unknown [206.27.244.136]) by www.fastmail.fm (Postfix) with ESMTP id 560B9C1490F; Tue, 17 Aug 2004 11:18:37 -0400 (EDT) Received: from nkinkade by gentoo-npk.bmp.ub with local (Exim 4.21) id 1Bx5iH-00086E-7O; Tue, 17 Aug 2004 09:17:25 -0600 Date: Tue, 17 Aug 2004 09:17:25 -0600 From: Nathan Kinkade To: Mikhail Teterin Message-ID: <20040817151725.GA782@gentoo-npk.bmp.ub> References: <200408170835.45402@aldan> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QgvTbcZPsSS/HkXe" Content-Disposition: inline In-Reply-To: <200408170835.45402@aldan> User-Agent: Mutt/1.5.6i Sender: cc: questions@FreeBSD.org Subject: Re: web-serving does not update a file's atime? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Nathan Kinkade List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:18:42 -0000 --QgvTbcZPsSS/HkXe Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 17, 2004 at 08:35:45AM -0400, Mikhail Teterin wrote: > Hello! >=20 > I tried to use stat(1) to see the last time a file was downloaded > through Apache. >=20 > To my surprise, all three dates displayed by stat are long ago, even > though the web-server's log is showing downloads from a just a few > hours back. >=20 > The file-system used to be mounted noatime, but I turned that option > off some time ago. If I read one of those files (with head(1) or > file(1), for example), the atime is updated. But if Apache serves it > out -- it is not... There is no caching in Apache either. >=20 > Any ideas? Thanks! >=20 > -mi Is this all running on your local machine? If not, is it possible that there is a proxy server between you and the host running Apache? Perhaps a transparent proxy? Nathan --=20 PGP Public Key: pgp.mit.edu:11371/pks/lookup?op=3Dget&search=3D0xD8527E49 --QgvTbcZPsSS/HkXe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) iD8DBQFBIiGFO0ZIEthSfkkRApVDAKDJ+vBjeyVLiWJ+SdtsQ5EleULR8ACgzpk3 h3p5NpUtAPzv3a+UKxXMhgM= =Livt -----END PGP SIGNATURE----- --QgvTbcZPsSS/HkXe-- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 15:27:17 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B806816A4CE for ; Tue, 17 Aug 2004 15:27:17 +0000 (GMT) Received: from hotmail.com (bay9-f51.bay9.hotmail.com [64.4.47.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id A374543D55 for ; Tue, 17 Aug 2004 15:27:17 +0000 (GMT) (envelope-from dead_line@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 17 Aug 2004 08:27:17 -0700 Received: from 195.226.241.103 by by9fd.bay9.hotmail.msn.com with HTTP; Tue, 17 Aug 2004 15:27:17 GMT X-Originating-IP: [195.226.241.103] X-Originating-Email: [dead_line@hotmail.com] X-Sender: dead_line@hotmail.com From: "Long Story" To: freebsd-questions@freebsd.org Date: Tue, 17 Aug 2004 15:27:17 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 17 Aug 2004 15:27:17.0586 (UTC) FILETIME=[AE20A320:01C4846E] Subject: hosts.allow Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:27:17 -0000 Hello everyone, Because of the MASS failure tries to connect to my server using random passwords I decided to allow only my IP to access the server. I didnot do this before cuz i was worried this restriction will effect any services running.. a question: If i change hosts.allow to accept only my ip adrs and next line is ALL : ALL : deny is this will effect any performance? such as webmail, smtp or other connections/services? After fixing those lines, I used the webMail to send mail, then an SMTP error came saying (access denied) hmm any hint? Example (The IP is an Example): ALL : 192.168.0. : allow ALL : ALL : deny One more stupid question. If i want to allow a whole class of ips, shall i write as ALL : 192.168.0.* : allow (using the star) OR ALL : 192.168.0. : allow (leave it empty) Thanks for the help. Marwan. _________________________________________________________________ MSN 8 helps eliminate e-mail viruses. Get 2 months FREE*. http://join.msn.com/?page=features/virus From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 15:32:20 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1C1916A4CE for ; Tue, 17 Aug 2004 15:32:20 +0000 (GMT) Received: from mymail.netmagicians.com (mymail.netmagicians.com [202.87.39.126]) by mx1.FreeBSD.org (Postfix) with SMTP id 4610143D1F for ; Tue, 17 Aug 2004 15:32:19 +0000 (GMT) (envelope-from sid@netmagicsolutions.com) Received: (qmail 3436 invoked from network); 17 Aug 2004 15:46:54 -0000 Received: from sid@netmagicsolutions.com by netmagicsolutions.com by uid 504 with qmail-scanner-1.16 (uvscan: v4.3.20/v4100. Clear:. Processed in 0.754808 secs); 17 Aug 2004 15:46:54 -0000 Received: from intra.netmagicsolutions.com (HELO ?10.1.1.161?) (202.87.39.242) by mymail.netmagicians.com with SMTP; 17 Aug 2004 15:46:53 -0000 Message-ID: <41222503.6090103@netmagicsolutions.com> Date: Tue, 17 Aug 2004 21:02:19 +0530 From: Siddhartha Jain User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Long Story References: In-Reply-To: X-Enigmail-Version: 0.84.2.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: hosts.allow Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:32:20 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Long Story wrote: | Hello everyone, | | Because of the MASS failure tries to connect to my server using | random passwords | I decided to allow only my IP to access the server. http://www.die.net/doc/linux/man/man5/hosts.allow.5.html - -- Siddhartha Jain (CISSP) Consulting Engineer Netmagic Solutions Pvt Ltd Bombay - 400063 Phone: +91-22-26850001 Ext.128 Fax : +91-22-26850002 http://www.netmagicsolutions.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBIiUDOGaxOP7knVwRAtiQAJsEwRrkHHHpP40dauJxv7eUPduKVQCgi/RZ TGzrLReOco2hhbo4L52Pu78= =UDqD -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 15:35:00 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED94C16A4CE; Tue, 17 Aug 2004 15:34:59 +0000 (GMT) Received: from mail1.simplenet.com (mailer.simplenet.com [209.132.1.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id D473243D1D; Tue, 17 Aug 2004 15:34:59 +0000 (GMT) (envelope-from tt-list@simplenet.com) Received: from TraverPC.simplenet.com (66.27.122.77) by mail1.simplenet.com (7.0.016) (authenticated as tt-list@simplenet.com) id 4121D85200001B96; Tue, 17 Aug 2004 08:24:23 -0700 Message-Id: <6.1.2.0.0.20040817083303.038ec190@mail1.simplenet.com> X-Sender: tt-list@simplenet.com@mail1.simplenet.com X-Mailer: QUALCOMM Windows Eudora Version 6.1.2.0 Date: Tue, 17 Aug 2004 08:35:02 -0700 To: Greg 'groggy' Lehey From: Tim Traver In-Reply-To: <20040817052403.GE88156@wantadilla.lemis.com> References: <6.1.2.0.0.20040816220030.04148ec0@mail1.simplenet.com> <20040817052403.GE88156@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: freebsd-questions@freebsd.org Subject: Re: hard links for directories ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:35:00 -0000 Greg, Well, specifically, I'm trying to link some directories inside a chrooted environment... THe filesystem also happens to be an nfs mounted one, so I know the files to be linked would have to be on the same volume, and separate systems deal with the filesystem integrity (NetApp)... So, how would you do this kind of thing ? Tim. At 10:24 PM 8/16/2004, Greg 'groggy' Lehey wrote: >On Monday, 16 August 2004 at 22:02:11 -0700, Tim Traver wrote: > > Hi all, > > > > This may be a stupid question, but is it possible to make hard links to > > directories ??? I know you can with files, and normally, you would do a > > soft link for directories, but is there any way to finagle this ? > >Sure, there are ways. But why would you want to? > >A link to a directory makes it a subdirectory of the directory >containing the link. If you have two links to a directory, where >should the directory's .. link point? How would fsck know what to do? > >Greg >-- >When replying to this message, please copy the original recipients. >If you don't, I may ignore the reply or reply to the original recipients. >For more information, see http://www.lemis.com/questions.html >Note: I discard all HTML mail unseen. >Finger grog@FreeBSD.org for PGP public key. >See complete headers for address and phone numbers. SimpleNet's Back ! http://www.simplenet.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 15:38:37 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EED416A4CE for ; Tue, 17 Aug 2004 15:38:37 +0000 (GMT) Received: from mtiwmhc12.worldnet.att.net (mtiwmhc12.worldnet.att.net [204.127.131.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3684C43D31 for ; Tue, 17 Aug 2004 15:38:37 +0000 (GMT) (envelope-from duanewinner@worldnet.att.net) Received: from [10.10.100.91] (unknown[216.113.237.29]) by worldnet.att.net (mtiwmhc12) with ESMTP id <2004081715383611200lb34ve> (Authid: duanewinner); Tue, 17 Aug 2004 15:38:36 +0000 Message-ID: <41222679.7080000@att.net> Date: Tue, 17 Aug 2004 11:38:33 -0400 From: Duane Winner User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040809 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: xtset or xtermset tricks? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:38:37 -0000 Hello, Hey, does anybody know of any useful tricks for automating xtset or xtermset? I use xtset to set the title and icon labels to user@host:path so I can keep track of my xterms littered all over my desktop (pretty frequent! :) But it sure would be nice to have them updated whenever I 'cd' to another directory or 'su' to another user or 'ssh' to another host! I'm sure there's got to be someway to make this a little more seamless then running # xtset %u@%h:`pwd` everytime, but I'm just not good enough with shell programming to know how to do this. The closest I came was writing a small bash script that does: for filename in /dev/ttyp*; do /usr/local/bin/xtset %u@%h:`pwd` > "$filename" done And thought about cron'ing it (every minute), but the problem is that when I tested this, all my xterms get the same title/icon based on who is running the script and where at the time. No good :( (And of course this would be useless to update the titles/icons for xterms that are remote shells (ssh). Any thoughts? Thanks! Duane From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 15:42:18 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B079416A4CE for ; Tue, 17 Aug 2004 15:42:18 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52D1243D39 for ; Tue, 17 Aug 2004 15:42:18 +0000 (GMT) (envelope-from jason.n.taylor@gmail.com) Received: by mproxy.gmail.com with SMTP id 77so112541rnl for ; Tue, 17 Aug 2004 08:42:11 -0700 (PDT) Received: by 10.38.79.23 with SMTP id c23mr76274rnb; Tue, 17 Aug 2004 08:42:11 -0700 (PDT) Message-ID: Date: Tue, 17 Aug 2004 16:42:11 +0100 From: Jason Taylor To: Gary Edwards In-Reply-To: <000001c483cc$69d46230$0200a8c0@MAIN> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable References: <000001c483cc$69d46230$0200a8c0@MAIN> cc: freebsd-questions@freebsd.org Subject: Re: PCI ADSL Modems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: jason@aber.co.uk List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:42:18 -0000 On Mon, 16 Aug 2004 21:05:44 +0100, Gary Edwards wrote: > I was wondering what PCI modems FreeBSD supports. I have followed the > hardware link on the web site but could not find a supplier to the UK. > I was wondering if the "ADSL PCI Conexant Chipset" was supported. An external standalone ethernet based ADSL router can be bought for =A330 or so and you will have no interoperability problems with FreeBSD or any other operating system that supports ethernet. Even for a single machine setup the ethernet option is usually superior to USB or an internal card, having no driver problems and a few additional security benefits. Jason. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 15:46:14 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 783BE16A4CE for ; Tue, 17 Aug 2004 15:46:14 +0000 (GMT) Received: from redtick.homeunix.com (adsl-68-89-249-225.dsl.okcyok.swbell.net [68.89.249.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAD4543D31 for ; Tue, 17 Aug 2004 15:46:13 +0000 (GMT) (envelope-from boxend@redtick.homeunix.com) Received: from redtick.homeunix.com (localhost.homeunix.com [127.0.0.1]) i7HFicHi020025; Tue, 17 Aug 2004 10:44:38 -0500 (CDT) (envelope-from boxend@redtick.homeunix.com) Received: (from boxend@localhost) by redtick.homeunix.com (8.12.10/8.12.10/Submit) id i7HFicmb020024; Tue, 17 Aug 2004 10:44:38 -0500 (CDT) (envelope-from boxend) Date: Tue, 17 Aug 2004 10:44:38 -0500 From: Mark To: Lowell Gilbert Message-ID: <20040817154438.GA19940@redtick.homeunix.com> References: <200408171508.i7HF832Z018959@redtick.homeunix.com> <448ycdhjz9.fsf@be-well.ilk.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <448ycdhjz9.fsf@be-well.ilk.org> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: logins X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:46:14 -0000 On Tue, Aug 17, 2004 at 11:17:46AM -0400, Lowell Gilbert wrote: > Mark writes: > > > I've beend getting the sshd login attempts, like everyone else so I've been > > watching the logs close, this is the first time to see this item in /var/log/messages. > > Aug 14 04:15:00 chillico su: _secure_path: /nonexistent/.login_conf is not owned by uid 65534 > > The machine doesn't have a '/nonexistent/' directory, does it? > It is important security-wise that such a directory must *not* exist. It was there but is now gone. > > > I've looked in the passwd file and groups, there is not a uid of 65534 listed. > > There *should* be; it's "nobody". And it shouldn't be in the wheel group. You are right nobody does have that uid and it's not in the wheel group. > > > I installed rsync last week to backup some windows computers during the weekend, this would have been > > during one of the backups, but the other five would have triggered the same msg, just thinking outloud here. > > Unless /nonexistent got created during the process... thanks, After deleteing the nonexistent dir, I thought about the creation date and time stamp. =( >______________________________________________ > 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" -- ------------------------------------------------------------------------------ ********** The information contained in this communication is confidential, private, proprietary, or otherwise privileged and is intended only for the use of the addressee. Unauthorized use, disclosure, distribution or copying is strictly prohibited and may be unlawful. If you have received this communication in error, please notify the sender immediately. ********** ============================================================================== From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 15:55:41 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6228416A4CE for ; Tue, 17 Aug 2004 15:55:41 +0000 (GMT) Received: from gblinux.omniresources.com (host-69-48-112-132.mil.choiceone.net [69.48.112.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2CC343D2F for ; Tue, 17 Aug 2004 15:55:40 +0000 (GMT) (envelope-from dpoland@omniresources.com) Received: from 5x2822.omniresources.com (5x2822.omniresources.com [192.168.254.149])i7HFtdKf019354 for ; Tue, 17 Aug 2004 10:55:39 -0500 (CDT) (envelope-from dpoland@atwdev.omniresources.com) Received: from 5x2822.omniresources.com (localhost [127.0.0.1]) i7HFtdIk022180 for ; Tue, 17 Aug 2004 10:55:39 -0500 (CDT) (envelope-from dpoland@5x2822.omniresources.com) Received: (from dpoland@localhost) by 5x2822.omniresources.com (8.12.10/8.12.10/Submit) id i7HFtdZk022179 for questions@freebsd.org; Tue, 17 Aug 2004 10:55:39 -0500 (CDT) (envelope-from dpoland) Date: Tue, 17 Aug 2004 10:55:39 -0500 From: doug@polands.org To: questions@freebsd.org Message-ID: <20040817155512.GB21780@omniresources.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: Harddrive beginning to expire? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:55:41 -0000 Hello, I'm seeing this entry in my /var/log/messages approx. every three hours: Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a 0 Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): RECOVERED ERROR asc:5d,0 Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): Failure prediction threshold exceeded field replaceable unit: 1 Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a 0 Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): RECOVERED ERROR asc:5d,0 Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): Failure prediction threshold exceeded field replaceable unit: 1 This 4.9-STABLE box is running 7 SCSI drives in a vinum stripped array. Question, is this the beginning of the end for drive da5? -- Regards, Doug From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 16:05:34 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7231D16A4CF for ; Tue, 17 Aug 2004 16:05:34 +0000 (GMT) Received: from mymail.netmagicians.com (mymail.netmagicians.com [202.87.39.126]) by mx1.FreeBSD.org (Postfix) with SMTP id 0A1DA43D31 for ; Tue, 17 Aug 2004 16:05:33 +0000 (GMT) (envelope-from sid@netmagicsolutions.com) Received: (qmail 5352 invoked from network); 17 Aug 2004 16:20:08 -0000 Received: from sid@netmagicsolutions.com by netmagicsolutions.com by uid 504 with qmail-scanner-1.16 (uvscan: v4.3.20/v4100. Clear:. Processed in 0.859031 secs); 17 Aug 2004 16:20:08 -0000 Received: from intra.netmagicsolutions.com (HELO ?10.1.1.161?) (202.87.39.242) by mymail.netmagicians.com with SMTP; 17 Aug 2004 16:20:07 -0000 Message-ID: <41222CCE.5060206@netmagicsolutions.com> Date: Tue, 17 Aug 2004 21:35:34 +0530 From: Siddhartha Jain User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: doug@polands.org References: <20040817155512.GB21780@omniresources.com> In-Reply-To: <20040817155512.GB21780@omniresources.com> X-Enigmail-Version: 0.84.2.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: questions@freebsd.org Subject: Re: Harddrive beginning to expire? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 16:05:34 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 doug@polands.org wrote: | Hello, | | I'm seeing this entry in my /var/log/messages approx. every three hours: | | Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a 0 | Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): RECOVERED ERROR asc:5d,0 | Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): Failure prediction threshold exceeded field replaceable unit: 1 | Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a 0 | Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): RECOVERED ERROR asc:5d,0 | Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): Failure prediction threshold exceeded field replaceable unit: 1 | | This 4.9-STABLE box is running 7 SCSI drives in a vinum stripped array. | Question, is this the beginning of the end for drive da5? | If the setup has been working error free ealier and the errors have started coming up recently then it looks like you have a disk that needs replacement. - -- Siddhartha Jain (CISSP) Consulting Engineer Netmagic Solutions Pvt Ltd Bombay - 400063 Phone: +91-22-26850001 Ext.128 Fax : +91-22-26850002 http://www.netmagicsolutions.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBIizOOGaxOP7knVwRAnR1AJ4ictuNJr7WL86dbouCmSvY4dqgrACfSMy1 Cr8sSc2xp8A2WKSmjEZ5qes= =QZT+ -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 16:08:25 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2432016A4CE for ; Tue, 17 Aug 2004 16:08:25 +0000 (GMT) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3CEE43D67 for ; Tue, 17 Aug 2004 16:08:24 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.11/8.12.11) id i7HG8J5t016089; Tue, 17 Aug 2004 11:08:19 -0500 (CDT) (envelope-from dan) Date: Tue, 17 Aug 2004 11:08:19 -0500 From: Dan Nelson To: doug@polands.org Message-ID: <20040817160819.GA53307@dan.emsphone.com> References: <20040817155512.GB21780@omniresources.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040817155512.GB21780@omniresources.com> X-OS: FreeBSD 5.2-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.6i cc: questions@freebsd.org Subject: Re: Harddrive beginning to expire? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 16:08:25 -0000 In the last episode (Aug 17), doug@polands.org said: > I'm seeing this entry in my /var/log/messages approx. every three hours: > > Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a 0 > Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): RECOVERED ERROR asc:5d,0 > Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): Failure prediction threshold exceeded field replaceable unit: 1 > Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a 0 > Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): RECOVERED ERROR asc:5d,0 > Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): Failure prediction threshold exceeded field replaceable unit: 1 > > This 4.9-STABLE box is running 7 SCSI drives in a vinum stripped array. > Question, is this the beginning of the end for drive da5? It probably still has some life left in it. It looks like you don't have automatic write reallocation enabled, since the block number is the same on both requests. You can enable it by running "camcontrol mode da5 -e -m 1 -P 3", and setting AWRE to 1. That will let the drive remap that disk block to a spare one. You can monitor how many blocks have been reallocated by viewing the grown defect list: "camcontrol defects da5 -f phys -G". If you use -P instead of -G, you can see the primary defect list, which is a list of all the bad blocks found when the disk was shipped. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 16:14:47 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4037616A4CE; Tue, 17 Aug 2004 16:14:47 +0000 (GMT) Received: from mail.farley.org (farley.org [67.64.95.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id C162043D1D; Tue, 17 Aug 2004 16:14:46 +0000 (GMT) (envelope-from sean-freebsd@farley.org) Received: from thor.farley.org (cb3ali2c0md2g0km@thor.farley.org [IPv6:2002:4340:5fcd:1::5]) by mail.farley.org (8.12.11/8.12.11) with ESMTP id i7HGDJPa076058; Tue, 17 Aug 2004 11:13:19 -0500 (CDT) (envelope-from sean-freebsd@farley.org) Received: from thor.farley.org (localhost [127.0.0.1]) by thor.farley.org (8.12.11/8.12.11) with ESMTP id i7HGDIKC068159; Tue, 17 Aug 2004 11:13:18 -0500 (CDT) (envelope-from sean-freebsd@farley.org) Received: from localhost (sean@localhost)i7HGDHO0068154; Tue, 17 Aug 2004 11:13:17 -0500 (CDT) (envelope-from sean-freebsd@farley.org) X-Authentication-Warning: thor.farley.org: sean owned process doing -bs Date: Tue, 17 Aug 2004 11:13:17 -0500 (CDT) From: Sean Farley X-X-Sender: sean@thor.farley.org To: "Greg 'groggy' Lehey" In-Reply-To: <20040817022926.GK81257@wantadilla.lemis.com> Message-ID: <20040817110515.F67959@thor.farley.org> References: <20040817022926.GK81257@wantadilla.lemis.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: FreeBSD Hackers cc: BSD User Group of Adelaide cc: FreeBSD Questions cc: LinuxSA Subject: Re: Samsung Cordless Mouse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 16:14:47 -0000 On Tue, 17 Aug 2004, Greg 'groggy' Lehey wrote: > This mouse has five buttons: the normal three on top, and one on each > side. I can't find a way to get the side buttons to work, and looking > on the web hasn't shown anything of interest. I assume you mean in X as opposed to moused although moused appears to support at least five buttons according to its man page. This may help with your X issues: http://www.xfree86.org/current/mouse5.html#22 Sean ----------------------- sean-freebsd@farley.org From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 16:41:00 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58D7A16A4CE for ; Tue, 17 Aug 2004 16:41:00 +0000 (GMT) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 62F0543D41 for ; Tue, 17 Aug 2004 16:40:59 +0000 (GMT) (envelope-from mayday@gmx.net) Received: (qmail 25934 invoked by uid 65534); 17 Aug 2004 16:40:58 -0000 Received: from pD95EE48F.dip0.t-ipconnect.de (EHLO [192.168.0.12]) (217.94.228.143) by mail.gmx.net (mp024) with SMTP; 17 Aug 2004 18:40:58 +0200 X-Authenticated: #431110 From: Benjamin Sobotta To: freebsd-questions@freebsd.org Date: Tue, 17 Aug 2004 18:47:55 +0000 User-Agent: KMail/1.6.2 References: <20040817094732.X820@pukruppa.net> In-Reply-To: <20040817094732.X820@pukruppa.net> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408171847.55732.mayday@gmx.net> cc: Peter Ulrich Kruppa Subject: Re: SATA drive bootable ??? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 16:41:00 -0000 Hi I don't know about the controller but in general this should work. Just make proper adjustments in your BIOS. I'm booting FreeBSD from an SATA RAID0. Works perfectly fine. Cheers, Ben On Tuesday 17 August 2004 07:53, Peter Ulrich Kruppa wrote: > Hi! > > I just started playing around with my new SATA disk (with SATA > 150 TX2plus controller on -CURRENT). I can mount and format it > all-right. > > Is it generally posssible to boot from such a disk (different > question would be if it made sense to do so)? > My SATA drive is recognized as ata2-master. > > Thanks, > > Uli. > > > +---------------------------+ > > | Peter Ulrich Kruppa | > | > | Wuppertal | > | Germany | > > +---------------------------+ > _______________________________________________ > 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 Aug 17 16:41:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A73FA16A4E4 for ; Tue, 17 Aug 2004 16:41:05 +0000 (GMT) Received: from mtiwmhc12.worldnet.att.net (mtiwmhc12.worldnet.att.net [204.127.131.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B0E443D49 for ; Tue, 17 Aug 2004 16:41:05 +0000 (GMT) (envelope-from duanewinner@worldnet.att.net) Received: from [10.10.100.91] (unknown[216.113.237.29]) by worldnet.att.net (mtiwmhc12) with ESMTP id <2004081716410411200lch3fe> (Authid: duanewinner); Tue, 17 Aug 2004 16:41:05 +0000 Message-ID: <4122351E.7040205@att.net> Date: Tue, 17 Aug 2004 12:41:02 -0400 From: Duane Winner User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040809 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <41222679.7080000@att.net> In-Reply-To: <41222679.7080000@att.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: xtset or xtermset tricks? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 16:41:05 -0000 Found a solution! In ~/.bashrc, put this: cd () { builtin cd "$@" /usr/local/bin/xtset %u@%h:`pwd` } -Duane Duane Winner wrote: > Hello, > > Hey, does anybody know of any useful tricks for automating xtset or > xtermset? > > I use xtset to set the title and icon labels to user@host:path so I can > keep track of my xterms littered all over my desktop (pretty frequent! :) > > But it sure would be nice to have them updated whenever I 'cd' to > another directory or 'su' to another user or 'ssh' to another host! > > I'm sure there's got to be someway to make this a little more seamless > then running # xtset %u@%h:`pwd` everytime, but I'm just not good enough > with shell programming to know how to do this. > > The closest I came was writing a small bash script that does: > > for filename in /dev/ttyp*; do > /usr/local/bin/xtset %u@%h:`pwd` > "$filename" > done > > And thought about cron'ing it (every minute), but the problem is that > when I tested this, all my xterms get the same title/icon based on who > is running the script and where at the time. No good :( > (And of course this would be useless to update the titles/icons for > xterms that are remote shells (ssh). > > > Any thoughts? > > Thanks! > Duane > _______________________________________________ > 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 Aug 17 16:49:22 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD23016A4CE for ; Tue, 17 Aug 2004 16:49:22 +0000 (GMT) Received: from corbulon.video-collage.com (corbulon.video-collage.com [64.35.99.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7899243D39 for ; Tue, 17 Aug 2004 16:49:22 +0000 (GMT) (envelope-from mi+mxmoz@aldan.algebra.com) Received: from 250-217.customer.cloud9.net (195-11.customer.cloud9.net [168.100.195.11])i7HGnKu5071687 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 17 Aug 2004 12:49:21 -0400 (EDT) (envelope-from mi+mxmoz@aldan.algebra.com) Received: from [127.0.0.1] (mteterin@localhost [127.0.0.1]) i7HGnEcN041375; Tue, 17 Aug 2004 12:49:15 -0400 (EDT) (envelope-from mi+mxmoz@aldan.algebra.com) Message-ID: <4122370A.1010102@aldan.algebra.com> Date: Tue, 17 Aug 2004 12:49:14 -0400 From: Mikhail Teterin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; uk-UA; rv:1.7) Gecko/20040702 X-Accept-Language: uk, en-us, en MIME-Version: 1.0 To: Nathan Kinkade References: <200408170835.45402@aldan> <20040817151725.GA782@gentoo-npk.bmp.ub> In-Reply-To: <20040817151725.GA782@gentoo-npk.bmp.ub> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamd / ClamAV version devel-20040615, clamav-milter version 0.73a on corbulon.video-collage.com X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.43 cc: questions@FreeBSD.org Subject: Re: web-serving does not update a file's atime? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 16:49:23 -0000 Nathan Kinkade wrote: >On Tue, Aug 17, 2004 at 08:35:45AM -0400, Mikhail Teterin wrote: > > >>Hello! >> >>I tried to use stat(1) to see the last time a file was downloaded >>through Apache. >> >>To my surprise, all three dates displayed by stat are long ago, even >>though the web-server's log is showing downloads from a just a few >>hours back. >> >>The file-system used to be mounted noatime, but I turned that option >>off some time ago. If I read one of those files (with head(1) or >>file(1), for example), the atime is updated. But if Apache serves it >>out -- it is not... There is no caching in Apache either. >> >> >> > >Is this all running on your local machine? If not, is it possible that >there is a proxy server between you and the host running Apache? >Perhaps a transparent proxy? > > There are not other servers and no proxies. The locally running apache logs successful requests for the files, but their atimes are not updated. Just checked -- the file was last downloaded 13 minutes ago, but all of the three time-stamps (according to stat(1)) point to many hours back... Thanks! -mi From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 16:49:51 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C2F016A4CE for ; Tue, 17 Aug 2004 16:49:51 +0000 (GMT) Received: from gblinux.omniresources.com (atwns1.omniresource.com [69.48.112.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5208F43D48 for ; Tue, 17 Aug 2004 16:49:50 +0000 (GMT) (envelope-from dpoland@omniresources.com) Received: from 5x2822.omniresources.com (5x2822.omniresources.com [192.168.254.149])i7HGnn1S019394; Tue, 17 Aug 2004 11:49:49 -0500 (CDT) (envelope-from dpoland@atwdev.omniresources.com) Received: from 5x2822.omniresources.com (localhost [127.0.0.1]) i7HGnnIk022300; Tue, 17 Aug 2004 11:49:49 -0500 (CDT) (envelope-from dpoland@5x2822.omniresources.com) Received: (from dpoland@localhost)i7HGnnAS022299; Tue, 17 Aug 2004 11:49:49 -0500 (CDT) (envelope-from dpoland) Date: Tue, 17 Aug 2004 11:49:49 -0500 From: doug@polands.org To: Siddhartha Jain Message-ID: <20040817164921.GC21780@omniresources.com> References: <20040817155512.GB21780@omniresources.com> <41222CCE.5060206@netmagicsolutions.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41222CCE.5060206@netmagicsolutions.com> User-Agent: Mutt/1.4.2.1i cc: questions@freebsd.org Subject: Re: Harddrive beginning to expire? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 16:49:51 -0000 On Tue, Aug 17, 2004 at 09:35:34PM +0530, Siddhartha Jain wrote: > doug@polands.org wrote: > > > > I'm seeing this entry in my /var/log/messages approx. every three hours: > > > > Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a 0 > > Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): RECOVERED ERROR asc:5d,0 > > Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): Failure prediction threshold exceeded field replaceable unit: 1 > > Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a 0 > > Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): RECOVERED ERROR asc:5d,0 > > Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): Failure prediction threshold exceeded field replaceable unit: 1 > > > > This 4.9-STABLE box is running 7 SCSI drives in a vinum stripped array. > > Question, is this the beginning of the end for drive da5? > > > > > If the setup has been working error free ealier and the errors have > started coming up recently then it looks like you have a disk that needs > replacement. > This system has been running since April 14, 2001 with one glitch in May 2004. I'd have to dig up the logs to see what that was. I started getting these messages on August 10th. -- Regards, Doug From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 16:53:28 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1ED1416A4D0 for ; Tue, 17 Aug 2004 16:53:28 +0000 (GMT) Received: from gblinux.omniresources.com (atwns1.omniresources.com [69.48.112.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id A692343D5F for ; Tue, 17 Aug 2004 16:53:27 +0000 (GMT) (envelope-from dpoland@omniresources.com) Received: from 5x2822.omniresources.com (5x2822.omniresources.com [192.168.254.149])i7HGrPC1019400; Tue, 17 Aug 2004 11:53:25 -0500 (CDT) (envelope-from dpoland@atwdev.omniresources.com) Received: from 5x2822.omniresources.com (localhost [127.0.0.1]) i7HGrPIk022314; Tue, 17 Aug 2004 11:53:25 -0500 (CDT) (envelope-from dpoland@5x2822.omniresources.com) Received: (from dpoland@localhost)i7HGrPfE022313; Tue, 17 Aug 2004 11:53:25 -0500 (CDT) (envelope-from dpoland) Date: Tue, 17 Aug 2004 11:53:25 -0500 From: doug@polands.org To: Dan Nelson Message-ID: <20040817165258.GD21780@omniresources.com> References: <20040817155512.GB21780@omniresources.com> <20040817160819.GA53307@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040817160819.GA53307@dan.emsphone.com> User-Agent: Mutt/1.4.2.1i cc: questions@freebsd.org Subject: Re: Harddrive beginning to expire? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 16:53:28 -0000 On Tue, Aug 17, 2004 at 11:08:19AM -0500, Dan Nelson wrote: > In the last episode (Aug 17), doug@polands.org said: > > I'm seeing this entry in my /var/log/messages approx. every three hours: > > > > Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a 0 > > Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): RECOVERED ERROR asc:5d,0 > > Aug 17 06:09:07 judea /kernel: (da5:ahc0:0:5:0): Failure prediction threshold exceeded field replaceable unit: 1 > > Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a 0 > > Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): RECOVERED ERROR asc:5d,0 > > Aug 17 09:28:52 judea /kernel: (da5:ahc0:0:5:0): Failure prediction threshold exceeded field replaceable unit: 1 > > > > This 4.9-STABLE box is running 7 SCSI drives in a vinum stripped array. > > Question, is this the beginning of the end for drive da5? > > It probably still has some life left in it. It looks like you don't > have automatic write reallocation enabled, since the block number is > the same on both requests. You can enable it by running "camcontrol > mode da5 -e -m 1 -P 3", and setting AWRE to 1. That will let the drive > remap that disk block to a spare one. You can monitor how many blocks > have been reallocated by viewing the grown defect list: "camcontrol > defects da5 -f phys -G". If you use -P instead of -G, you can see the > primary defect list, which is a list of all the bad blocks found when > the disk was shipped. > Great! Am I correct in assuming that these commands should be issued in single user mode with the vinum volume not mounted? -- Regards, Doug From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 16:58:04 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4A2F16A4CE for ; Tue, 17 Aug 2004 16:58:04 +0000 (GMT) Received: from sage.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2843843D31 for ; Tue, 17 Aug 2004 16:58:04 +0000 (GMT) (envelope-from kline@tao.thought.org) Received: from thought.org (tao [10.0.0.247]) by sage.thought.org (8.12.10/8.12.10) with ESMTP id i7HGw0FS009394; Tue, 17 Aug 2004 09:58:01 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by thought.org (8.12.11/8.12.11) with ESMTP id i7HGvwb7012317; Tue, 17 Aug 2004 09:57:58 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.12.11/8.12.11/Submit) id i7HGvvdN012316; Tue, 17 Aug 2004 09:57:57 -0700 (PDT) (envelope-from kline) Date: Tue, 17 Aug 2004 09:57:57 -0700 From: Gary Kline To: Duane Winner Message-ID: <20040817165757.GA88222@thought.org> References: <41222679.7080000@att.net> <4122351E.7040205@att.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4122351E.7040205@att.net> X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 18 years of service to the Unix community User-Agent: Mutt/1.5.6i cc: freebsd-questions@freebsd.org Subject: Re: xtset or xtermset tricks? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 16:58:04 -0000 On Tue, Aug 17, 2004 at 12:41:02PM -0400, Duane Winner wrote: > Found a solution! > > In ~/.bashrc, put this: > > cd () > { > builtin cd "$@" > /usr/local/bin/xtset %u@%h:`pwd` > } > > > > -Duane > > > Duane Winner wrote: > >Hello, > > > >Hey, does anybody know of any useful tricks for automating xtset or > >xtermset? > > > >I use xtset to set the title and icon labels to user@host:path so I can > >keep track of my xterms littered all over my desktop (pretty frequent! :) > > > >But it sure would be nice to have them updated whenever I 'cd' to > >another directory or 'su' to another user or 'ssh' to another host! > > [ ... ] I've got a slight problem with having the host/directory/etc on the title bar. It will help clear my zsh right-prompt, of course. But how do you set the title bar *back* to the name of the xterm? (My xterms are titled "Mail", "Net", "Hacking", "Scratch", and so forth.) Is there a way of using xtset/xtermset to retrieve the -n "Name"?? thanks, gary -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 17:03:25 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C220D16A4CE for ; Tue, 17 Aug 2004 17:03:25 +0000 (GMT) Received: from mailgw-20.stcloudstate.edu (exchange8.stcloudstate.edu [199.17.25.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 509D443D1F for ; Tue, 17 Aug 2004 17:03:25 +0000 (GMT) (envelope-from bepratt@stcloudstate.edu) Received: from exchange17.campus.stcloudstate.edu [199.17.25.221] by mailgw-20.stcloudstate.edu with XWall v3.30c ; Tue, 17 Aug 2004 12:03:24 -0500 Received: from exchange2003.campus.stcloudstate.edu ([199.17.25.142]) by exchange17.campus.stcloudstate.edu with Microsoft SMTPSVC(6.0.3790.0); Tue, 17 Aug 2004 12:03:23 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Tue, 17 Aug 2004 12:03:23 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Prelude-IDS questions Thread-Index: AcSEfBr/orHQlenxQmqhKgXEm7e6cA== From: "Pratt, Benjamin E." To: X-OriginalArrivalTime: 17 Aug 2004 17:03:23.0748 (UTC) FILETIME=[1B072240:01C4847C] Subject: Prelude-IDS questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 17:03:25 -0000 I've been wanting to get Prelude-IDS up and running for a while but just haven't had/made the time to do so until now. I was going through the documentation at http://www.prelude-ids.org/article.php3?id_article=3D6 and they make a couple of references that I have some questions about... 1) They reference prelude-php-frontend but that doesn't exist in the ports tree anywhere. I can't find the package on their page either. Does anyone have any experience with it?? If not I'll contact the Prelude-IDS developers to get more info.=20 2) They also reference a prelude-manager-db-create.sh script located in the prelude-manager directory but I'm not seeing the script. It looks like the only thing it does (according to the documentation) is create a DB in mySQL, create a user and give the user permissions but I'm wondering if there is something else that is being done. I'd appreciate any help from anyone with experience out there. Also, the prelude-ids port is listed as maintained by ports@FreeBSD.org and I was wondering what protocol is for contacting that address?? Do I just e-mail the address or should I contact the list first?? Thanks, Ben From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 17:04:17 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A21816A4CE for ; Tue, 17 Aug 2004 17:04:17 +0000 (GMT) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id D364E43D1F for ; Tue, 17 Aug 2004 17:04:16 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.11/8.12.11) id i7HH4FI7031140; Tue, 17 Aug 2004 12:04:16 -0500 (CDT) (envelope-from dan) Date: Tue, 17 Aug 2004 12:04:15 -0500 From: Dan Nelson To: doug@polands.org Message-ID: <20040817170415.GD53307@dan.emsphone.com> References: <20040817155512.GB21780@omniresources.com> <20040817160819.GA53307@dan.emsphone.com> <20040817165258.GD21780@omniresources.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040817165258.GD21780@omniresources.com> X-OS: FreeBSD 5.2-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.6i cc: questions@freebsd.org Subject: Re: Harddrive beginning to expire? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 17:04:17 -0000 In the last episode (Aug 17), doug@polands.org said: > On Tue, Aug 17, 2004 at 11:08:19AM -0500, Dan Nelson wrote: > > It probably still has some life left in it. It looks like you > > don't have automatic write reallocation enabled, since the block > > number is the same on both requests. You can enable it by running > > "camcontrol mode da5 -e -m 1 -P 3", and setting AWRE to 1. That > > will let the drive remap that disk block to a spare one. You can > > monitor how many blocks have been reallocated by viewing the grown > > defect list: "camcontrol defects da5 -f phys -G". If you use -P > > instead of -G, you can see the primary defect list, which is a list > > of all the bad blocks found when the disk was shipped. > > Great! Am I correct in assuming that these commands should be issued > in single user mode with the vinum volume not mounted? You can run them at any time. The AWRE change should be immediate, and the defects command is just a status inquiry and won't affect anything. Some drives don't update the current settings until the drive is reset, so if "camcontrol mode da5 -m 1 -P 0" shows AWRE at 0 while "-P 3" shows it at 1, you may need to reset the drive ("camcontrol reset da5" with the vinum volume dismounted, or a power-cycle). -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 17:10:51 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64D6216A4CE for ; Tue, 17 Aug 2004 17:10:51 +0000 (GMT) Received: from mtiwmhc13.worldnet.att.net (mtiwmhc13.worldnet.att.net [204.127.131.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB11D43D49 for ; Tue, 17 Aug 2004 17:10:50 +0000 (GMT) (envelope-from duanewinner@worldnet.att.net) Received: from [10.10.100.91] (unknown[216.113.237.29]) by worldnet.att.net (mtiwmhc13) with ESMTP id <2004081717102811300svhs4e> (Authid: duanewinner); Tue, 17 Aug 2004 17:10:29 +0000 Message-ID: <41223C19.1050800@att.net> Date: Tue, 17 Aug 2004 13:10:49 -0400 From: Duane Winner User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040809 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <41222679.7080000@att.net> <4122351E.7040205@att.net> In-Reply-To: <4122351E.7040205@att.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: xtset or xtermset tricks? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 17:10:51 -0000 This is a little better: cd () { # do the actual cd builtin cd "$@" # if in homedir, then make path '~', not full path if [ $PWD == $HOME ]; then XTDIR="~" else XTDIR="$PWD" fi # set xtset title and icon to user@host:path /usr/local/bin/xtset %u@%h:`echo $XTDIR` } # force an xtset title at shell login: cd -Duane Duane Winner wrote: > Found a solution! > > In ~/.bashrc, put this: > > cd () > { > builtin cd "$@" > /usr/local/bin/xtset %u@%h:`pwd` > } > > > > -Duane > > > Duane Winner wrote: > >> Hello, >> >> Hey, does anybody know of any useful tricks for automating xtset or >> xtermset? >> >> I use xtset to set the title and icon labels to user@host:path so I >> can keep track of my xterms littered all over my desktop (pretty >> frequent! :) >> >> But it sure would be nice to have them updated whenever I 'cd' to >> another directory or 'su' to another user or 'ssh' to another host! >> >> I'm sure there's got to be someway to make this a little more seamless >> then running # xtset %u@%h:`pwd` everytime, but I'm just not good >> enough with shell programming to know how to do this. >> >> The closest I came was writing a small bash script that does: >> >> for filename in /dev/ttyp*; do >> /usr/local/bin/xtset %u@%h:`pwd` > "$filename" >> done >> >> And thought about cron'ing it (every minute), but the problem is that >> when I tested this, all my xterms get the same title/icon based on who >> is running the script and where at the time. No good :( >> (And of course this would be useless to update the titles/icons for >> xterms that are remote shells (ssh). >> >> >> Any thoughts? >> >> Thanks! >> Duane >> _______________________________________________ >> 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 Aug 17 17:19:10 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 917E616A4CE for ; Tue, 17 Aug 2004 17:19:10 +0000 (GMT) Received: from gblinux.omniresources.com (atwns1.omniresources.com [69.48.112.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id E23C343D45 for ; Tue, 17 Aug 2004 17:19:09 +0000 (GMT) (envelope-from dpoland@omniresources.com) Received: from 5x2822.omniresources.com (5x2822.omniresources.com [192.168.254.149])i7HHIlKH019426; Tue, 17 Aug 2004 12:18:47 -0500 (CDT) (envelope-from dpoland@atwdev.omniresources.com) Received: from 5x2822.omniresources.com (localhost [127.0.0.1]) i7HHIbIk022393; Tue, 17 Aug 2004 12:18:37 -0500 (CDT) (envelope-from dpoland@5x2822.omniresources.com) Received: (from dpoland@localhost)i7HHIaN8022392; Tue, 17 Aug 2004 12:18:36 -0500 (CDT) (envelope-from dpoland) Date: Tue, 17 Aug 2004 12:18:36 -0500 From: doug@polands.org To: Dan Nelson Message-ID: <20040817171809.GF21780@omniresources.com> References: <20040817155512.GB21780@omniresources.com> <20040817160819.GA53307@dan.emsphone.com> <20040817165258.GD21780@omniresources.com> <20040817170415.GD53307@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040817170415.GD53307@dan.emsphone.com> User-Agent: Mutt/1.4.2.1i cc: questions@freebsd.org Subject: Re: Harddrive beginning to expire? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 17:19:10 -0000 On Tue, Aug 17, 2004 at 12:04:15PM -0500, Dan Nelson wrote: > > You can run them at any time. The AWRE change should be immediate, and > the defects command is just a status inquiry and won't affect anything. > > Some drives don't update the current settings until the drive is reset, > so if "camcontrol mode da5 -m 1 -P 0" shows AWRE at 0 while "-P 3" > shows it at 1, you may need to reset the drive ("camcontrol reset da5" > with the vinum volume dismounted, or a power-cycle). > Very good. Thank's for your help Dan. -- Regards, Doug From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 17:34:01 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0621E16A4CE for ; Tue, 17 Aug 2004 17:34:01 +0000 (GMT) Received: from mtiwmhc12.worldnet.att.net (mtiwmhc12.worldnet.att.net [204.127.131.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2E6C43D4C for ; Tue, 17 Aug 2004 17:34:00 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc12) with ESMTP id <2004081717335911200lb81ee> (Authid: jayobrien@att.net); Tue, 17 Aug 2004 17:34:00 +0000 Message-ID: <41224187.2040909@att.net> Date: Tue, 17 Aug 2004 10:33:59 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions References: <4121C262.6020409@att.net> <20040817183040.3511.LUKEK@meibin.net> In-Reply-To: <20040817183040.3511.LUKEK@meibin.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: X configuration problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 17:34:01 -0000 Luke Kearney wrote: > On Tue, 17 Aug 2004 01:31:30 -0700 > Jay O'Brien spake thus: > > >>Initial 4.10 installation. Trying to configure XFree86. >>from /stand/sysinstall, select Configure | XFree86. >> >>I THINK I've tried every possible combination. I couldn't >>use the "Fully graphical XFree86 configuration tool" as >>the graphic was partially off-screen and the monitor was >>"out of range". I used the textmode tool and the shell- >>script tool, settling on the shell-script tool. After >>agreeing that it should write /etc/X11/XF86, and selecting >>a desktop to use, many different attempts all result in >>this error: >> >>"Error mounting /dev/acd0c on /dist: Input/output error (5)" >> >>And the next screen is: >> >>"An error occurred while adding the package(s) required by >>this desktop type. Please change installation media and/or >>select a different, perhaps simpler, desktop environment >>and try again." >> >>I don't find a /etc/X11/ directory, much less a XF86 file. >> >>Video card is ati XPERT 98, monitor is 1280x1024 LCD. >> >>A suggestion for what to try next? >> >>Jay O'Brien >>Rio Linda, CA USA > > > Yes, download and burn yourself another install disk or change the media > source in the install screen and then make it download the sources from > the internet. Sounds like you've got bad media rather than a config that > can't be done. > > HTH > > LukeK > Ok, I did as you suggested and I'm presently getting stuff via ftp. It looks like it will be downloading all day. I thought the ISO image CD would avoid this; what is all the stuff that is downloading? Isn't there a way to just replace the XF86 stuff that may be bad? Where are all these files going, and why do I need to download them all? Once this is done, will I have to do it all over again when I rebuild again from scratch, or is there a way, like on the CD, that I can store just those files I need? There's got to be a better way! Jay From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 17:41:27 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07F0816A4CE for ; Tue, 17 Aug 2004 17:41:27 +0000 (GMT) Received: from gblinux.omniresources.com (atwns1.omniresource.com [69.48.112.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5009543D1D for ; Tue, 17 Aug 2004 17:41:26 +0000 (GMT) (envelope-from dpoland@omniresources.com) Received: from 5x2822.omniresources.com (5x2822.omniresources.com [192.168.254.149])i7HHfNTe019444; Tue, 17 Aug 2004 12:41:23 -0500 (CDT) (envelope-from dpoland@atwdev.omniresources.com) Received: from 5x2822.omniresources.com (localhost [127.0.0.1]) i7HHfNIk022445; Tue, 17 Aug 2004 12:41:23 -0500 (CDT) (envelope-from dpoland@5x2822.omniresources.com) Received: (from dpoland@localhost)i7HHfNu0022444; Tue, 17 Aug 2004 12:41:23 -0500 (CDT) (envelope-from dpoland) Date: Tue, 17 Aug 2004 12:41:23 -0500 From: doug@polands.org To: Dan Nelson Message-ID: <20040817174055.GG21780@omniresources.com> References: <20040817155512.GB21780@omniresources.com> <20040817160819.GA53307@dan.emsphone.com> <20040817165258.GD21780@omniresources.com> <20040817170415.GD53307@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040817170415.GD53307@dan.emsphone.com> User-Agent: Mutt/1.4.2.1i cc: questions@freebsd.org Subject: Re: Harddrive beginning to expire? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 17:41:27 -0000 On Tue, Aug 17, 2004 at 12:04:15PM -0500, Dan Nelson wrote: > You can run them at any time. The AWRE change should be immediate, and > the defects command is just a status inquiry and won't affect anything. > > Some drives don't update the current settings until the drive is reset, > so if "camcontrol mode da5 -m 1 -P 0" shows AWRE at 0 while "-P 3" > shows it at 1, you may need to reset the drive ("camcontrol reset da5" > with the vinum volume dismounted, or a power-cycle). > Curious, both camcontrol commands show: AWRE (Auto Write Reallocation Enbld): 1 So it would appear that AWRE has been enabled all along. Here's a unique list (and count) of the errors since 10 Aug: 1 (da5:ahc0:0:5:0): READ(06). CDB: 8 10 9a 99 70 43 (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a 1 (da5:ahc0:0:5:0): WRITE(06). CDB: a 10 1b 39 10 1 (da5:ahc0:0:5:0): WRITE(10). CDB: 2a 0 0 21 7d 19 0 0 10 1 (da5:ahc0:0:5:0): WRITE(10). CDB: 2a 0 0 21 7d f9 0 0 20 1 (da5:ahc0:0:5:0): WRITE(10). CDB: 2a 0 0 21 7e 75 0 0 4 1 (da5:ahc0:0:5:0): WRITE(10). CDB: 2a 0 0 2f 87 e9 0 0 10 Is that meaningful? -- Regards, Doug From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 17:47:45 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 097B616A4CE for ; Tue, 17 Aug 2004 17:47:45 +0000 (GMT) Received: from hobbiton.shire.net (hobbiton.shire.net [206.71.64.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id D487543D53 for ; Tue, 17 Aug 2004 17:47:44 +0000 (GMT) (envelope-from chad@shire.net) Received: from [67.161.247.57] (helo=[192.168.99.66]) by hobbiton.shire.net with asmtp (TLSv1:RC4-SHA:128) (Exim 4.10) id 1Bx83k-0000dw-00 for freebsd-questions@freebsd.org; Tue, 17 Aug 2004 11:47:44 -0600 Mime-Version: 1.0 (Apple Message framework v619) In-Reply-To: <411D87B3.2050808@gldis.ca> References: <20040813121022.GB94786@dogma.freebsd-uk.eu.org> <411D868B.6020908@gldis.ca> <411D87B3.2050808@gldis.ca> Message-Id: <890EAA5F-F075-11D8-998A-003065A70D30@shire.net> From: "Chad Leigh -- Shire.Net LLC" Date: Tue, 17 Aug 2004 11:47:40 -0600 To: freebsd-questions@freebsd.org Questions X-Mailer: Apple Mail (2.619) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on hobbiton.shire.net X-Spam-Status: No, hits=-1.5 required=5.0 tests=BAYES_01 autolearn=no version=2.63 X-Spam-Level: Subject: Re: Looking for commercial code gone open source X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 17:47:45 -0000 Jonathon McKitrick wrote: > Does anyone know where there are any web-accessible examples of large > or > medium sized commercial software products that have been open sourced? > > I'd like to see some examples of code that were not written from the > beginning with the intention of being open source. > > jm > Apple's Darwin OS probably qualifies... Came from NextStep / OpenStep (commercial)... While lots of it itself comes from opensource (BSD land etc), there were significant changes / updates in its commercial version (like netinfo etc) Chad From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 17:54:58 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61CEE16A4CE for ; Tue, 17 Aug 2004 17:54:58 +0000 (GMT) Received: from imf22aec.mail.bellsouth.net (imf22aec.mail.bellsouth.net [205.152.59.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B5EB43D39 for ; Tue, 17 Aug 2004 17:54:58 +0000 (GMT) (envelope-from cubicool@bellsouth.net) Received: from ripley ([67.34.27.75]) by imf22aec.mail.bellsouth.net (InterMail vM.5.01.06.08 201-253-122-130-108-20031117) with SMTP id <20040817175457.ZJNJ1788.imf22aec.mail.bellsouth.net@ripley> for ; Tue, 17 Aug 2004 13:54:57 -0400 Message-ID: <001f01c48437$e6edac20$0401a8c0@ripley> From: "Cubicool" To: References: <001301c483a1$71217d50$0401a8c0@ripley> Date: Tue, 17 Aug 2004 01:55:10 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Subject: Re: 802.1x X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 17:54:58 -0000 I'm not trying to offend anyone by bumping this, but I'm actually pretty desperate to know what the status is. Surely I'm not the only person to need 802.1x authentication over wireless on a FreeBSD box? :) Anyways, again, sorry for the bumpage, but I have another complete day off and if I can find out that FreeBSD doesn't support it yet, I'm going to try and spend this time finding an alternative solution. If, however, support will be added soon, I won't reformat and I'll just go without net access for a while at school. Regards... (original message below, sent about 15hrs ago) ------------------------------------------------------------------------- I will be attending college in a few weeks. The network at this uni requires 802.1x authentication over wireless connections. I've scoured google all over and discovered Open1x--which has openly dropped all BSD support --and a guy who has ported Open1x, but only on wired connections. I'm a decent programmer in some regards, but not so much C/system code, so it's not like I could just make the neccesary adjustments and recompile. :) Is 802.1x supported on FreeBSD yet? I know I can build open1x on a Linux box, but that is my ABSOLUTE LATE resort. I really want to keep using FreeBSD, but if I can't access the school's network I won't be able to continue doing so. What's the status of this in FreeBSD, including the upcoming 5.3? Am I just out of luck? From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 18:01:51 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0CE716A4CE for ; Tue, 17 Aug 2004 18:01:51 +0000 (GMT) Received: from mail.btito.net (btito.demon.nl [212.238.216.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D98C43D2F for ; Tue, 17 Aug 2004 18:01:51 +0000 (GMT) (envelope-from lists@magicfingers.org) Received: from localhost (localhost [127.0.0.1]) by mail.btito.net (Postfix) with ESMTP id 0EB1654CC; Tue, 17 Aug 2004 20:01:50 +0200 (CEST) Received: from mail.btito.net (localhost [127.0.0.1]) by localhost (AvMailGate-2.0.2-6) id 09604-795F4FDD; Tue, 17 Aug 2004 20:01:49 +0200 Received: from [192.168.1.10] (shuttle.btito.local [192.168.1.10]) by mail.btito.net (Postfix) with ESMTP id BFDBB54C9; Tue, 17 Aug 2004 20:01:49 +0200 (CEST) Message-ID: <4122480E.9030509@magicfingers.org> Date: Tue, 17 Aug 2004 20:01:50 +0200 From: Bob Tito User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Pratt, Benjamin E." References: In-Reply-To: X-Enigmail-Version: 0.84.1.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-AntiVirus: checked by AntiVir MailGate (version: 2.0.2-6; AVE: 6.27.0.4; VDF: 6.27.0.17; host: mail.btito.local) cc: freebsd-questions@freebsd.org Subject: Re: Prelude-IDS questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 18:01:51 -0000 Pratt, Benjamin E. wrote: > I've been wanting to get Prelude-IDS up and running for a while but just > haven't had/made the time to do so until now. I was going through the > documentation at http://www.prelude-ids.org/article.php3?id_article=6 > and they make a couple of references that I have some questions about... > > 1) They reference prelude-php-frontend but that doesn't exist in the > ports tree anywhere. I can't find the package on their page either. > Does anyone have any experience with it?? If not I'll contact the > Prelude-IDS developers to get more info. try looking for prelude PIWI, AFAIK that is the frontend... Bob. > > 2) They also reference a prelude-manager-db-create.sh script located in > the prelude-manager directory but I'm not seeing the script. It looks > like the only thing it does (according to the documentation) is create a > DB in mySQL, create a user and give the user permissions but I'm > wondering if there is something else that is being done. > > I'd appreciate any help from anyone with experience out there. > > Also, the prelude-ids port is listed as maintained by ports@FreeBSD.org > and I was wondering what protocol is for contacting that address?? Do I > just e-mail the address or should I contact the list first?? > > Thanks, > > Ben > _______________________________________________ > 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 Aug 17 18:06:34 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75CDF16A4CE for ; Tue, 17 Aug 2004 18:06:34 +0000 (GMT) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2865743D46 for ; Tue, 17 Aug 2004 18:06:34 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.11/8.12.11) id i7HI6X4i075320; Tue, 17 Aug 2004 13:06:33 -0500 (CDT) (envelope-from dan) Date: Tue, 17 Aug 2004 13:06:33 -0500 From: Dan Nelson To: doug@polands.org Message-ID: <20040817180633.GF53307@dan.emsphone.com> References: <20040817155512.GB21780@omniresources.com> <20040817160819.GA53307@dan.emsphone.com> <20040817165258.GD21780@omniresources.com> <20040817170415.GD53307@dan.emsphone.com> <20040817174055.GG21780@omniresources.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040817174055.GG21780@omniresources.com> X-OS: FreeBSD 5.2-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.6i cc: questions@freebsd.org Subject: Re: Harddrive beginning to expire? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 18:06:34 -0000 In the last episode (Aug 17), doug@polands.org said: > On Tue, Aug 17, 2004 at 12:04:15PM -0500, Dan Nelson wrote: > > You can run them at any time. The AWRE change should be immediate, and > > the defects command is just a status inquiry and won't affect anything. > > > > Some drives don't update the current settings until the drive is reset, > > so if "camcontrol mode da5 -m 1 -P 0" shows AWRE at 0 while "-P 3" > > shows it at 1, you may need to reset the drive ("camcontrol reset da5" > > with the vinum volume dismounted, or a power-cycle). > > > Curious, both camcontrol commands show: > > AWRE (Auto Write Reallocation Enbld): 1 > > So it would appear that AWRE has been enabled all along. Here's a > unique list (and count) of the errors since 10 Aug: Strange. > 43 (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a This is the block you have to be worried about. It's definitely either a file or metadata that gets modified a lot. If the drive isn't reallocating the block, it may be easier to just replace it. SCSI drives usually have a 5-year warranty, so check the vendor's site and see if you can get them to replace it. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 18:25:50 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A80416A4CE for ; Tue, 17 Aug 2004 18:25:50 +0000 (GMT) Received: from msr64.hinet.net (msr64.hinet.net [168.95.4.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 084C143D1F for ; Tue, 17 Aug 2004 18:25:50 +0000 (GMT) (envelope-from tryout.chen@msa.hinet.net) Received: from linuxgz5j8uwmt (218-162-179-224.dynamic.hinet.net [218.162.179.224]) by msr64.hinet.net (8.9.3/8.9.3) with SMTP id CAA23382 for ; Wed, 18 Aug 2004 02:25:48 +0800 (CST) Message-ID: <000801c48487$9be60150$0301a8c0@linuxgz5j8uwmt> From: "tryout.chen" To: Date: Wed, 18 Aug 2004 02:25:43 +0800 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Question about natd and ipfw X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 18:25:50 -0000 I got a problem about 4 net-interfaces : 3 are for DSL ISP services and = one for my own local network, can i achieve that a local network user = could make choice of which ISP providers he prefered to and needn't = renew for his network configuration by using natd+ipfw or ipfilter = or..??. ps.all of the ISP services are existing together, not like if one is = down and one would be up. Thanks so much for reply. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 18:36:32 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81AE716A4CE for ; Tue, 17 Aug 2004 18:36:32 +0000 (GMT) Received: from gblinux.omniresources.com (host-69-48-112-132.mil.choiceone.net [69.48.112.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id B262C43D1D for ; Tue, 17 Aug 2004 18:36:31 +0000 (GMT) (envelope-from dpoland@omniresources.com) Received: from 5x2822.omniresources.com (5x2822.omniresources.com [192.168.254.149])i7HIaTWh019487; Tue, 17 Aug 2004 13:36:29 -0500 (CDT) (envelope-from dpoland@atwdev.omniresources.com) Received: from 5x2822.omniresources.com (localhost [127.0.0.1]) i7HIaTIk022573; Tue, 17 Aug 2004 13:36:29 -0500 (CDT) (envelope-from dpoland@5x2822.omniresources.com) Received: (from dpoland@localhost)i7HIaTdu022572; Tue, 17 Aug 2004 13:36:29 -0500 (CDT) (envelope-from dpoland) Date: Tue, 17 Aug 2004 13:36:29 -0500 From: doug@polands.org To: Dan Nelson Message-ID: <20040817183602.GH21780@omniresources.com> References: <20040817155512.GB21780@omniresources.com> <20040817160819.GA53307@dan.emsphone.com> <20040817165258.GD21780@omniresources.com> <20040817170415.GD53307@dan.emsphone.com> <20040817174055.GG21780@omniresources.com> <20040817180633.GF53307@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040817180633.GF53307@dan.emsphone.com> User-Agent: Mutt/1.4.2.1i cc: questions@freebsd.org Subject: Re: Harddrive beginning to expire? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 18:36:32 -0000 On Tue, Aug 17, 2004 at 01:06:33PM -0500, Dan Nelson wrote: > In the last episode (Aug 17), doug@polands.org said: > > On Tue, Aug 17, 2004 at 12:04:15PM -0500, Dan Nelson wrote: > > > You can run them at any time. The AWRE change should be immediate, and > > > the defects command is just a status inquiry and won't affect anything. > > > > > > Some drives don't update the current settings until the drive is reset, > > > so if "camcontrol mode da5 -m 1 -P 0" shows AWRE at 0 while "-P 3" > > > shows it at 1, you may need to reset the drive ("camcontrol reset da5" > > > with the vinum volume dismounted, or a power-cycle). > > > > > Curious, both camcontrol commands show: > > > > AWRE (Auto Write Reallocation Enbld): 1 > > > > So it would appear that AWRE has been enabled all along. Here's a > > unique list (and count) of the errors since 10 Aug: > > Strange. > > > 43 (da5:ahc0:0:5:0): WRITE(06). CDB: a 0 1 f9 a > > This is the block you have to be worried about. It's definitely either > a file or metadata that gets modified a lot. If the drive isn't > reallocating the block, it may be easier to just replace it. SCSI > drives usually have a 5-year warranty, so check the vendor's site and > see if you can get them to replace it. > Thanks Dan... I think the drives in this array are about 14 years old so I doubt IBM will honor the warranty :) Certainly have got my money's worth, however. -- Regards, Doug From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 19:34:31 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12E6216A4D0 for ; Tue, 17 Aug 2004 19:34:31 +0000 (GMT) Received: from postfix3-1.free.fr (postfix3-1.free.fr [213.228.0.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFC9F43D31 for ; Tue, 17 Aug 2004 19:34:30 +0000 (GMT) (envelope-from hyvernp@free.fr) Received: from free.fr (alesia-8-82-224-213-22.fbx.proxad.net [82.224.213.22]) by postfix3-1.free.fr (Postfix) with ESMTP id ADB3D173D71 for ; Tue, 17 Aug 2004 21:34:29 +0200 (CEST) Message-ID: <41225DC5.5060906@free.fr> Date: Tue, 17 Aug 2004 21:34:29 +0200 From: HYVERNAT Philippe User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040706 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: compile + distfiles X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 19:34:31 -0000 On Mon, Jul 26, 2004 at 01:51:50PM -0600, HYVERNAT Philippe wrote: >/ / >/ I run on freebsd 4.10 and i want to install Java, but cos to the/ >/ licence restriction i must download it and place into/ >/ /usr/ports//distfiles/ >/ / >/ I move it into this directory, but when i compile again, the make file/ >/ doesn't find it in /usr/ports/distfiles it's the same spelling./ The JDK14 port actually requires more than one file to be moved into the distfiles directory. It will prompt you for them one at a time. The spelling looks very similar but is in fact different. Verify that the port is not actually asking you for a different file. -- Danny MacMillan _______________________________________________ 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" Hello, The problem is that the file in my distfiles and the file asked is exactly the same without different spelling, and i put the patch in distfiles but the error occure. Please help me thanks a lot From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 20:03:51 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A573716A4CE for ; Tue, 17 Aug 2004 20:03:51 +0000 (GMT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E95C43D3F for ; Tue, 17 Aug 2004 20:03:51 +0000 (GMT) (envelope-from alex.thomas@terrabytetech.com) Received: from [192.168.0.3] (c-24-0-24-56.client.comcast.net[24.0.24.56]) by comcast.net (sccrmhc11) with ESMTP id <20040817200350011004p5une>; Tue, 17 Aug 2004 20:03:50 +0000 Message-ID: <412264A7.3030405@terrabytetech.com> Date: Tue, 17 Aug 2004 15:03:51 -0500 From: Alex Thomas User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Error after installing cyrus-sasl2-saslauthd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 20:03:51 -0000 Trying to inststall cyrus-sasl2-saslauthd on Fresh 4.10-Release machine. Did make WITH_BDB_VER=42 install clean After that gets done with no errors, console and syslog pop up with this error saslpasswd2:error deleting entry from sasldb: DBNOTFOUND: No matching key/data pair found Trying to get this working as part of following cdr(from bsdforums.org) Postfix/Cyrus-sasl-cyrus-imap howto. Thanks for the help From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 20:07:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C910216A4CE for ; Tue, 17 Aug 2004 20:07:48 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57D0243D45 for ; Tue, 17 Aug 2004 20:07:48 +0000 (GMT) (envelope-from jon.drews@gmail.com) Received: by mproxy.gmail.com with SMTP id 77so122025rnl for ; Tue, 17 Aug 2004 13:07:44 -0700 (PDT) Received: by 10.38.70.6 with SMTP id s6mr323410rna; Tue, 17 Aug 2004 13:07:44 -0700 (PDT) Message-ID: <8cb27cbf0408171307587a10bf@mail.gmail.com> Date: Tue, 17 Aug 2004 15:07:43 -0500 From: Jon Drews To: freebsd-questions@freebsd.org In-Reply-To: <001f01c48437$e6edac20$0401a8c0@ripley> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <001301c483a1$71217d50$0401a8c0@ripley> <001f01c48437$e6edac20$0401a8c0@ripley> Subject: Re: 802.1x X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jon Drews List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 20:07:48 -0000 Hello Cubicool: The only thing I can think of is this book on WiFi security: http://www.oreilly.com/catalog/80211security/desc.html You might want to look at /usr/ports/net-mgmt/bsd-airtools The home page is here http://www.dachb0den.com/projects/bsd-airtools.html On Tue, 17 Aug 2004 01:55:10 -0700, Cubicool wrote: > Surely I'm not the only person to need > 802.1x authentication over wireless on a FreeBSD box? :) From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 21:21:44 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82DE816A4CE for ; Tue, 17 Aug 2004 21:21:44 +0000 (GMT) Received: from smtp1.utdallas.edu (smtp1.utdallas.edu [129.110.10.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C0D943D1F for ; Tue, 17 Aug 2004 21:21:44 +0000 (GMT) (envelope-from pauls@utdallas.edu) Received: from utd49554 (utd49554.utdallas.edu [129.110.3.85]) by smtp1.utdallas.edu (Postfix) with ESMTP id A3486388DBF; Tue, 17 Aug 2004 16:21:43 -0500 (CDT) Date: Tue, 17 Aug 2004 16:21:41 -0500 From: Paul Schmehl To: Alex Thomas , freebsd-questions@freebsd.org Message-ID: <84814CE3A19511EC783E93A7@utd49554.utdallas.edu> In-Reply-To: <412264A7.3030405@terrabytetech.com> References: <412264A7.3030405@terrabytetech.com> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Re: Error after installing cyrus-sasl2-saslauthd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 21:21:44 -0000 --On Tuesday, August 17, 2004 03:03:51 PM -0500 Alex Thomas wrote: > Trying to inststall cyrus-sasl2-saslauthd on Fresh 4.10-Release machine. > Did make WITH_BDB_VER=42 install clean > > After that gets done with no errors, console and syslog pop up with this > error > > saslpasswd2:error deleting entry from sasldb: DBNOTFOUND: No matching > key/data pair found > Were there any key/data pairs in the sasldb2 database? Paul Schmehl (pauls@utdallas.edu) Adjunct Information Security Officer The University of Texas at Dallas AVIEN Founding Member http://www.utdallas.edu/ir/security/ From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 21:32:18 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91DE916A4CE for ; Tue, 17 Aug 2004 21:32:18 +0000 (GMT) Received: from fed1rmmtao06.cox.net (fed1rmmtao06.cox.net [68.230.241.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46AB443D3F for ; Tue, 17 Aug 2004 21:32:18 +0000 (GMT) (envelope-from freebsd@thesnodgrass.com) Received: from [192.168.1.33] (really [68.7.129.109]) by fed1rmmtao06.cox.net (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709) with ESMTP id <20040817213216.CNOE18308.fed1rmmtao06.cox.net@[192.168.1.33]> for ; Tue, 17 Aug 2004 17:32:16 -0400 Message-ID: <412278EB.10404@thesnodgrass.com> Date: Tue, 17 Aug 2004 14:30:19 -0700 From: j snod User-Agent: Mozilla Thunderbird 0.7+ (Windows/20040816) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: BTX Halted from 5.2.1 CD, MS-9211 1U Rackmount Server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 21:32:18 -0000 As soon as my machine boots off the CD, I get a memory dump of some sort followed by "BTX Halted" ... Boot from CD: CD Loader 1.01 Building the boot loader arguments Looking up /BOOT/LOADER... Found Relocating the loader and the BTX Starting the BTX loader BTX loader 1.00 BTX version is 1.01 Console: internal video/keyboard BIOS CD is cd0 int=0000000d err=00000000 efl=00030046 eip=00009066 eax=000000f8 ebx=00002820 ecx=00000000 edx=000008ee esi=00009701 edi=00001f98 ebp=000000a0 esp=00001800 cs=0000 ds=0000 es=0000 fs=0000 gs=0000 ss=0000 cs:eip=0f 01 1e d6 96 0f 01 16-d0 96 0f 20 c0 66 83 c8 01 0f 22 c0 ea 7f 90 08-00 31 c9 b1 10 8e d1 b1 ss:esp=0a 69 6e 74 3d 30 30 30-30 30 30 30 64 20 20 65 72 72 3d 30 30 30 30 30-30 30 30 20 20 65 66 6c BTX Halted Sometimes this BTX Halt only happens once and hangs the system, other times it dumps this info to my screen over and over in an infinite loop. Only a power down stops it. I've come across TONS of articles/discussions with the same problem but none of their suggestions have worked. I've verified that I have the latest BIOS for my motherboard, but it does not have a "Virtual boot device" to disable. I forced my IDEs to use PIO as suggested in one discussion, no worky. I've disabled all unneeded items in the BIOS, including unused IDE channels, USB, onboard LAN, still no fix. I've verified that my RAID drivers work with 5.2.1 as seen in other dicussions. I've verified the MD5 of this 5.2.1 disk before burning, and I've also used this very CD to install on another machine with no problems. The 5.1 and 4.10 CDs boot just fine. My system: MSI P1-1000 1U Rackmount http://www.msi.com.tw/program/products/server/svr/pro_svr_detail.php?UID=376 Motherboard says: "MS-9129 Ver 1" BIOS Version: W9211MS v1.0 121002 19:07:50 RAID BIOS: MB FastTrack "Lite" 2.00.1030.27 256MB PC266 RAM IDE1 Master: NONE IDE1 Slave : NONE IDE2 Master: CD-ROM (Mitsumi SR244W1) IDE2 Slave : NONE ATA Raid: (2) Hitachi Deskstar 7K250 40GB configured as RAID1 Mirror. Please Help! Any ideas? Thanks, -j From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 21:34:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30CC416A4CE for ; Tue, 17 Aug 2004 21:34:48 +0000 (GMT) Received: from ms-smtp-01.rdc-kc.rr.com (ms-smtp-01.rdc-kc.rr.com [24.94.166.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCBD043D49 for ; Tue, 17 Aug 2004 21:34:47 +0000 (GMT) (envelope-from mcabanatuan@wi.rr.com) Received: from [192.168.0.3] (CPE-65-31-156-223.wi.rr.com [65.31.156.223]) i7HLYj8o019041 for ; Tue, 17 Aug 2004 16:34:45 -0500 (CDT) Message-ID: <412279F4.7040805@wi.rr.com> Date: Tue, 17 Aug 2004 16:34:44 -0500 From: Marc Cabanatuan User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040814) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org X-Enigmail-Version: 0.85.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: multi-homing and pf; removing user with uid 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 21:34:48 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 This is somewhat of a multipart question and unrelated question. Figured I would ask here since the host I have the box on isn't much help with anything, and when they do help they want to charge up the ass for it. I understand they need to make money too, but they end up breaking shit and not helping than anything...So here goes nothing. Right now I've got a /27 and I am attemtpting to add 5 addresses of that adress block (ipv4) to the box as either seperate addreses (not aliases to the primary interface) or seperate addresses bound to sub-interfaces. So far I have been unsuccessful and the host told me to use aliases. I also wish for these settings to stay after (re)boot. Not to mention they say my firewall is the problem and they couldn't get out to the internet from root console (im using pf and have the rule of 'pass out all'. Next thing, a second account just 'showed up' on the box with uid 0. toor:*:0:0:Bourne-again Superuser:/root: - from /etc/master.passwd I suspect it was techs from the host, but I want it off the machine. How do I do this? thanks, m - -- Marc Cabanatuan Network and Systems Administrator A+, Net+, Linux+, CCNA, MCP -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBInn0QXmDWC9ByjIRAq/ZAJ49XJ37qihWUFFMO8Wf2e1AU1J7ygCgk7AP SKIlYffqYO5a5ABNmJN9CPY= =YHVK -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 21:46:49 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DF9C16A4CE for ; Tue, 17 Aug 2004 21:46:49 +0000 (GMT) Received: from out010.verizon.net (out010pub.verizon.net [206.46.170.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3AD243D2F for ; Tue, 17 Aug 2004 21:46:48 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from [192.168.1.3] ([68.160.193.218]) by out010.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040817214648.EKZC14383.out010.verizon.net@[192.168.1.3]>; Tue, 17 Aug 2004 16:46:48 -0500 Message-ID: <41227CC2.7060303@mac.com> Date: Tue, 17 Aug 2004 17:46:42 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Marc Cabanatuan References: <412279F4.7040805@wi.rr.com> In-Reply-To: <412279F4.7040805@wi.rr.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out010.verizon.net from [68.160.193.218] at Tue, 17 Aug 2004 16:46:47 -0500 cc: freebsd-questions@freebsd.org Subject: Re: multi-homing and pf; removing user with uid 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 21:46:49 -0000 Marc Cabanatuan wrote: [ ... ] > Right now I've got a /27 and I am attemtpting to add 5 addresses of > that adress block (ipv4) to the box as either seperate addreses (not > aliases to the primary interface) or seperate addresses bound to > sub-interfaces. So far I have been unsuccessful and the host told me > to use aliases. FreeBSD doesn't let you configure multiple IP addresses within the same subnet. You will either have to use different netmasks, or else use aliases as recommended. > I also wish for these settings to stay after (re)boot. See /etc/rc.conf, and add something like: # Sample alias entry. #ifconfig_lo0_alias0="inet 127.0.0.254 netmask 0xffffffff" > Not to mention they say my firewall is the problem and they couldn't > get out to the internet from root console (im using pf and have the > rule of 'pass out all'. Hmm. > Next thing, a second account just 'showed up' on the box with uid 0. > > toor:*:0:0:Bourne-again Superuser:/root: - from /etc/master.passwd > > I suspect it was techs from the host, but I want it off the machine. > How do I do this? FreeBSD ships with a toor account available but disabled, which can be useful if someone breaks the shell used by the root account itself. If you want to get rid of it, run vipw. -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 21:54:43 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A032916A4CE for ; Tue, 17 Aug 2004 21:54:43 +0000 (GMT) Received: from ms-smtp-01.rdc-kc.rr.com (ms-smtp-01.rdc-kc.rr.com [24.94.166.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E98C43D55 for ; Tue, 17 Aug 2004 21:54:43 +0000 (GMT) (envelope-from mcabanatuan@wi.rr.com) Received: from [192.168.0.3] (CPE-65-31-156-223.wi.rr.com [65.31.156.223]) i7HLse8o029368; Tue, 17 Aug 2004 16:54:40 -0500 (CDT) Message-ID: <41227E9F.3010204@wi.rr.com> Date: Tue, 17 Aug 2004 16:54:39 -0500 From: Marc Cabanatuan User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040814) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Chuck Swiger References: <412279F4.7040805@wi.rr.com> <41227CC2.7060303@mac.com> In-Reply-To: <41227CC2.7060303@mac.com> X-Enigmail-Version: 0.85.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine cc: freebsd-questions@freebsd.org Subject: Re: multi-homing and pf; removing user with uid 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 21:54:43 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Alright as far as netmasks goes, am i allowed to add an ip with netmask 255.255.255.255 for each IP? Chuck Swiger wrote: | Marc Cabanatuan wrote: [ ... ] | |> Right now I've got a /27 and I am attemtpting to add 5 addresses |> of that adress block (ipv4) to the box as either seperate |> addreses (not aliases to the primary interface) or seperate |> addresses bound to sub-interfaces. So far I have been |> unsuccessful and the host told me to use aliases. | | | FreeBSD doesn't let you configure multiple IP addresses within the | same subnet. You will either have to use different netmasks, or | else use aliases as recommended. | |> I also wish for these settings to stay after (re)boot. | | | See /etc/rc.conf, and add something like: | | # Sample alias entry. #ifconfig_lo0_alias0="inet 127.0.0.254 | netmask 0xffffffff" | |> Not to mention they say my firewall is the problem and they |> couldn't get out to the internet from root console (im using pf |> and have the rule of 'pass out all'. | | | Hmm. | |> Next thing, a second account just 'showed up' on the box with uid |> 0. |> |> toor:*:0:0:Bourne-again Superuser:/root: - from |> /etc/master.passwd |> |> I suspect it was techs from the host, but I want it off the |> machine. How do I do this? | | | FreeBSD ships with a toor account available but disabled, which can | be useful if someone breaks the shell used by the root account | itself. If you want to get rid of it, run vipw. | - -- Marc Cabanatuan Network and Systems Administrator A+, Net+, Linux+, CCNA, MCP -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBIn6fQXmDWC9ByjIRAivrAKDcyJ62CuBDxZwLlt4FFqK483EiBgCbBkxk ai4Q2sV0j9iK9DxEHeC/Tlk= =jE6o -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 22:07:03 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 541FC16A4CE for ; Tue, 17 Aug 2004 22:07:03 +0000 (GMT) Received: from mail2.speakeasy.net (mail2.speakeasy.net [216.254.0.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A2DE43D2D for ; Tue, 17 Aug 2004 22:07:03 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 30881 invoked from network); 17 Aug 2004 22:07:02 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.no-ip.com) ([66.92.78.145]) (envelope-sender ) by mail2.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 17 Aug 2004 22:07:02 -0000 Received: by be-well.no-ip.com (Postfix, from userid 1147) id 076B97F; Tue, 17 Aug 2004 18:07:02 -0400 (EDT) Sender: lowell@be-well.ilk.org To: Marc Cabanatuan References: <412279F4.7040805@wi.rr.com> From: Lowell Gilbert Date: 17 Aug 2004 18:07:01 -0400 In-Reply-To: <412279F4.7040805@wi.rr.com> Message-ID: <44brh9iflm.fsf@be-well.ilk.org> Lines: 37 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-questions@freebsd.org Subject: Re: multi-homing and pf; removing user with uid 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 22:07:03 -0000 Marc Cabanatuan writes: > This is somewhat of a multipart question and unrelated question. Please try putting them in separate messages next time, then. > Figured I would ask here since the host I have the box on isn't much > help with anything, and when they do help they want to charge up the > ass for it. I understand they need to make money too, but they end up > breaking shit and not helping than anything...So here goes nothing. > > Right now I've got a /27 and I am attemtpting to add 5 addresses of > that adress block (ipv4) to the box as either seperate addreses (not > aliases to the primary interface) or seperate addresses bound to > sub-interfaces. So far I have been unsuccessful and the host told me > to use aliases. I also wish for these settings to stay after (re)boot. > Not to mention they say my firewall is the problem and they couldn't > get out to the internet from root console (im using pf and have the > rule of 'pass out all'. What actually *happened* when you tried this? Did you remember to use all-ones netmasks? Ref. FAQ: "How can I set up Ethernet aliases?" http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/networking.html#ETHERNET-ALIASES > Next thing, a second account just 'showed up' on the box with uid 0. > > toor:*:0:0:Bourne-again Superuser:/root: - from /etc/master.passwd > > I suspect it was techs from the host, but I want it off the machine. > How do I do this? It's completely standard, and while you can remove it like any other account, there's no reason to. Ref. FAQ: "What is this UID 0 toor account? Have I been compromised?" http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/security.html#TOOR-ACCOUNT From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 22:14:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63CFC16A4CE for ; Tue, 17 Aug 2004 22:14:05 +0000 (GMT) Received: from sccimhc91.asp.att.net (sccimhc91.asp.att.net [63.240.76.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13F1943D39 for ; Tue, 17 Aug 2004 22:14:05 +0000 (GMT) (envelope-from StevenFriedrich@insightbb.com) Received: from [192.168.1.239] (12-202-28-183.client.insightbb.com[12.202.28.183]) by sccimhc91.asp.att.net (sccimhc91) with ESMTP id <20040817221404i9100bv6tme>; Tue, 17 Aug 2004 22:14:04 +0000 From: Steven Friedrich To: "FreeBSD-Questions" Date: Tue, 17 Aug 2004 18:14:03 -0400 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408171814.03800.StevenFriedrich@InsightBB.com> Subject: foomatic-db-engine port broke? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 22:14:05 -0000 I get this error: root@lightning(p0)/usr/ports/print/foomatic-db-engine 114% make ===> Vulnerability check disabled ===> Extracting for foomatic-db-engine-20031213_2 ===> Patching for foomatic-db-engine-20031213_2 ===> Applying FreeBSD patches for foomatic-db-engine-20031213_2 ===> foomatic-db-engine-20031213_2 depends on executable: gmake - found ===> foomatic-db-engine-20031213_2 depends on file: /usr/local/bin/automake15 - found ===> foomatic-db-engine-20031213_2 depends on file: /usr/local/bin/autoconf253 - found ===> foomatic-db-engine-20031213_2 depends on shared library: xml2.5 - found ===> foomatic-db-engine-20031213_2 depends on shared library: curl.3 - found ===> Configuring for foomatic-db-engine-20031213_2 configure.in:20: error: possibly undefined macro: AM_PATH_XML2 configure.in:205: error: possibly undefined macro: AC_PATH_DIRS *** Error code 1 Stop in /usr/ports/print/foomatic-db-engine. Here's my uname output root@lightning(p0)/usr/ports/print/foomatic-db-engine 115% uname -a FreeBSD lightning.StevenFriedrich.org 4.10-STABLE FreeBSD 4.10-STABLE #49: Tue Aug 10 23:10:38 EDT 2004 root@lightning.StevenFriedrich.org:/usr/obj/usr/src/sys/LIGHTNING i386 From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 22:26:41 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA2FE16A4CE for ; Tue, 17 Aug 2004 22:26:41 +0000 (GMT) Received: from frontend1.messagingengine.com (frontend1.messagingengine.com [66.111.4.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BFA643D2F for ; Tue, 17 Aug 2004 22:26:40 +0000 (GMT) (envelope-from ian_leroux@fastmail.fm) Received: from server1.messagingengine.com (server1.internal [10.202.2.132]) by frontend1.messagingengine.com (Postfix) with ESMTP id A45BEC149B5 for ; Tue, 17 Aug 2004 18:26:37 -0400 (EDT) Received: by server1.messagingengine.com (Postfix, from userid 99) id A890A4769D; Tue, 17 Aug 2004 18:26:37 -0400 (EDT) Content-Disposition: inline Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="ISO-8859-1" MIME-Version: 1.0 X-Mailer: MIME::Lite 1.4 (F2.72; T1.001; A1.62; B3.01; Q3.01) References: <1092746685.14782.202489521@webmail.messagingengine.com> In-Reply-To: <1092746685.14782.202489521@webmail.messagingengine.com> To: freebsd-questions@freebsd.org Date: Tue, 17 Aug 2004 18:26:37 -0400 From: "Ian D. Leroux" X-Sasl-Enc: xq2z8LsGyLyWQA+/Vp/aaA 1092781597 Message-Id: <1092781597.32450.202530409@webmail.messagingengine.com> Subject: Re: Central SSL Certificate Store? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 22:26:41 -0000 > So is there a standard location for trusted certificates? or does each > application keep its own information? Partial answer to my own question, for the archive: the certificates are stored in /usr/src/crypto/openssl/certs Which leads to the next question: why are the certs left in the src tree and not installed? Thanks, Ian -- Ian D. Leroux ian_leroux@fastmail.fm From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 22:40:26 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 570D416A4E3 for ; Tue, 17 Aug 2004 22:40:26 +0000 (GMT) Received: from hermes.webtent.net (hermes.webtent.net [208.38.145.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96D3743D7E for ; Tue, 17 Aug 2004 22:40:21 +0000 (GMT) (envelope-from robert@webtent.com) Received: from [192.168.1.11] (webtent.org [198.79.127.235]) by hermes.webtent.net (8.10.2/8.10.2) with ESMTP id i7HMeDJ29433 for ; Tue, 17 Aug 2004 18:40:13 -0400 From: Robert Fitzpatrick To: FreeBSD Content-Type: text/plain Organization: WebTent Networking, Inc. Message-Id: <1092782416.13413.58.camel@columbus.webtent.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 17 Aug 2004 18:40:16 -0400 Content-Transfer-Encoding: 7bit Subject: Postfix+LDAP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 22:40:27 -0000 Is the doc below still the way to go for LDAP support? I do a 'postconf -m' and see ldap on the list. With that, I setup the alias_maps as shown in the docs and used sample-ldap.cf to setup my main.cf file. I can't see any attempts to the LDAP directory in the logs, should there be? And in Webmin, it says 'It seems that LDAP is nonexistent in your Postfix system'. I am running the FreeBSD port postfix-2.0.16...but thinking of doing portupgrade to 2.1. BTW, I don't see any notes on this kind of upgrade in /usr/ports/UPDATING. Any advice? http://www.postfix.org/LDAP_README.html esmtp# cat /etc/ldap-aliases.cf server_host = directory.webtent.net search_base = dc=webtent, dc=net esmtp# grep ldap main.cf ldap_timeout = 10 ldap_search_base = dc=webtent,dc=net ldap_server_host = localhost ldap_server_port = 389 ldap_query_filter = (uid=%s) ldap_result_filter = %s ldap_result_attribute = mailRoutingAddress ldap_scope = sub ldap_bind = yes ldap_bind_dn = cn=,dc=webtent,dc=net ldap_bind_pw = alias_maps = hash:/etc/aliases, ldap:/etc/ldap-aliases.cf -- Robert From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 22:45:33 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EA0B16A4CE for ; Tue, 17 Aug 2004 22:45:33 +0000 (GMT) Received: from sccimhc92.asp.att.net (sccimhc92.asp.att.net [63.240.76.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9796843D45 for ; Tue, 17 Aug 2004 22:45:32 +0000 (GMT) (envelope-from StevenFriedrich@insightbb.com) Received: from [192.168.1.239] (12-202-28-183.client.insightbb.com[12.202.28.183]) by sccimhc92.asp.att.net (sccimhc92) with ESMTP id <20040817224528i9200924g1e>; Tue, 17 Aug 2004 22:45:32 +0000 From: Steven Friedrich To: "FreeBSD-Questions" Date: Tue, 17 Aug 2004 18:40:38 -0400 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408171840.38184.StevenFriedrich@InsightBB.com> Subject: Getting CUPS configured on FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 22:45:33 -0000 I set up CUPS over a year ago and got it to work partially. I've been wrestling it again and I've read all the CUPS docs and tutorials on varios Linux sites. I have an HP560C (which needs LF to CR/LF translation) on parallel port /dev/lpt0. If anyone has a HP manual on the 560C, I'd like to know the definitions for the two switch banks on the front of the printer. I'm pretty sure one of those switches will enable auto LF to CR/LF translation. Originally, I used only CUPS software and I can print from various X apps (I use mostly KDE apps). I want to also be able to print from a shell, but all I get is some garbage. Do I need to use cups-lpd? I tried, but it didn't print anything intelligable (is that spelt right?). I've manipulated/authored printcap entries before, but CUPS took over that file anyway. A year ago, I noticed that CUPS web interface wouldn't let me choose a parallel port unless the printer was turned on before I booted. Now it doesn't allow me to specify a parallel port at all. But I CAN hand-edit /usr/local/etc/cups/printers.conf and set it to a valid parallel URI. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 22:47:17 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1037F16A4CE for ; Tue, 17 Aug 2004 22:47:17 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id B70BB43D45 for ; Tue, 17 Aug 2004 22:47:16 +0000 (GMT) (envelope-from alex.thomas@terrabytetech.com) Received: from [192.168.0.3] (c-24-0-24-56.client.comcast.net[24.0.24.56]) by comcast.net (sccrmhc13) with ESMTP id <2004081722471501600db59be>; Tue, 17 Aug 2004 22:47:16 +0000 Message-ID: <41228AF6.8000905@terrabytetech.com> Date: Tue, 17 Aug 2004 17:47:18 -0500 From: Alex Thomas User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en MIME-Version: 1.0 Cc: freebsd-questions@freebsd.org References: <412264A7.3030405@terrabytetech.com> <84814CE3A19511EC783E93A7@utd49554.utdallas.edu> In-Reply-To: <84814CE3A19511EC783E93A7@utd49554.utdallas.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Error after installing cyrus-sasl2-saslauthd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 22:47:17 -0000 No. Had not added any. This popped up on console as soon as port was finished installing. Paul Schmehl wrote: > --On Tuesday, August 17, 2004 03:03:51 PM -0500 Alex Thomas > wrote: > >> Trying to inststall cyrus-sasl2-saslauthd on Fresh 4.10-Release machine. >> Did make WITH_BDB_VER=42 install clean >> >> After that gets done with no errors, console and syslog pop up with this >> error >> >> saslpasswd2:error deleting entry from sasldb: DBNOTFOUND: No matching >> key/data pair found >> > Were there any key/data pairs in the sasldb2 database? > > Paul Schmehl (pauls@utdallas.edu) > Adjunct Information Security Officer > The University of Texas at Dallas > AVIEN Founding Member > http://www.utdallas.edu/ir/security/ > _______________________________________________ > 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 Aug 17 22:47:54 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EDD116A4CE for ; Tue, 17 Aug 2004 22:47:54 +0000 (GMT) Received: from mtiwmhc13.worldnet.att.net (mtiwmhc13.worldnet.att.net [204.127.131.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BC4943D45 for ; Tue, 17 Aug 2004 22:47:54 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc13) with ESMTP id <2004081722473111300svhobe> (Authid: jayobrien@att.net); Tue, 17 Aug 2004 22:47:32 +0000 Message-ID: <41228B16.80804@att.net> Date: Tue, 17 Aug 2004 15:47:50 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions References: <4121C262.6020409@att.net> <20040817183040.3511.LUKEK@meibin.net> In-Reply-To: <20040817183040.3511.LUKEK@meibin.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: X configuration problem - new info X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 22:47:54 -0000 Luke Kearney wrote: > On Tue, 17 Aug 2004 01:31:30 -0700 > Jay O'Brien spake thus: > > >>Initial 4.10 installation. Trying to configure XFree86. >>from /stand/sysinstall, select Configure | XFree86. >> >>I THINK I've tried every possible combination. I couldn't >>use the "Fully graphical XFree86 configuration tool" as >>the graphic was partially off-screen and the monitor was >>"out of range". I used the textmode tool and the shell- >>script tool, settling on the shell-script tool. After >>agreeing that it should write /etc/X11/XF86, and selecting >>a desktop to use, many different attempts all result in >>this error: >> >>"Error mounting /dev/acd0c on /dist: Input/output error (5)" >> >>And the next screen is: >> >>"An error occurred while adding the package(s) required by >>this desktop type. Please change installation media and/or >>select a different, perhaps simpler, desktop environment >>and try again." >> >>I don't find a /etc/X11/ directory, much less a XF86 file. >> >>Video card is ati XPERT 98, monitor is 1280x1024 LCD. >> >>A suggestion for what to try next? >> >>Jay O'Brien >>Rio Linda, CA USA > > > Yes, download and burn yourself another install disk or change the media > source in the install screen and then make it download the sources from > the internet. Sounds like you've got bad media rather than a config that > can't be done. > > HTH > > LukeK > Ok, I did as you suggested and I'm presently getting stuff via ftp. It looks like it will be downloading all day. I thought the ISO image CD would avoid this; what is all the stuff that is downloading? Isn't there a way to just replace the XF86 stuff that may be bad? Where are all these files going, and why do I need to download them all? Once this is done, will I have to do it all over again when I rebuild again from scratch, or is there a way, like on the CD, that I can store just those files I need? There's got to be a better way! Jay After over an hour and a half of downloading (and I have a 1.3MHz DSL) I tried again. Now I get different error messages, and I don't understand at all what this unwanted download has done to my computer. The errors are: VGA(0): Virtual height (0) is too small for the hardware (min 1) Screen(s) found, but none have a usable configuration. I'm going to wipe the HD clean again and start over, using my current ISO CD. This download, with many separate unrelated files, has me really concerned about what I unwittingly added to my HD. I don't even know where all the files I saw come in are now placed on the HD! Is there any disadvantage to installing XFree86 with # pkg_add -r XFree86 as compared to using /stand/sysinstall, select Configure | XFree86 ? Jay PS.. I'm really frustrated, so obviously I'm learning... From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 22:48:56 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ABCE16A4CE for ; Tue, 17 Aug 2004 22:48:56 +0000 (GMT) Received: from ms-smtp-02.rdc-kc.rr.com (ms-smtp-02.rdc-kc.rr.com [24.94.166.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F07E43D46 for ; Tue, 17 Aug 2004 22:48:55 +0000 (GMT) (envelope-from mcabanatuan@wi.rr.com) Received: from [192.168.0.3] (CPE-65-31-156-223.wi.rr.com [65.31.156.223]) i7HMmq9W026412; Tue, 17 Aug 2004 17:48:52 -0500 (CDT) Message-ID: <41228B53.9080405@wi.rr.com> Date: Tue, 17 Aug 2004 17:48:51 -0500 From: Marc Cabanatuan User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040814) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Chuck Swiger References: <412279F4.7040805@wi.rr.com> <41227CC2.7060303@mac.com> In-Reply-To: <41227CC2.7060303@mac.com> X-Enigmail-Version: 0.85.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine cc: freebsd-questions@freebsd.org Subject: Re: multi-homing and pf; removing user with uid 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 22:48:56 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 so far ive got this along with the primary inet address with the /27 subnet mask in /etc/rc.conf ifconfig_rl0_alias*="inet 0.0.0.0 netmask 255.255.255.255" (replacing 0's with ip address of course) Chuck Swiger wrote: | Marc Cabanatuan wrote: [ ... ] | |> Right now I've got a /27 and I am attemtpting to add 5 addresses |> of that adress block (ipv4) to the box as either seperate |> addreses (not aliases to the primary interface) or seperate |> addresses bound to sub-interfaces. So far I have been |> unsuccessful and the host told me to use aliases. | | | FreeBSD doesn't let you configure multiple IP addresses within the | same subnet. You will either have to use different netmasks, or | else use aliases as recommended. | |> I also wish for these settings to stay after (re)boot. | | | See /etc/rc.conf, and add something like: | | # Sample alias entry. #ifconfig_lo0_alias0="inet 127.0.0.254 | netmask 0xffffffff" | |> Not to mention they say my firewall is the problem and they |> couldn't get out to the internet from root console (im using pf |> and have the rule of 'pass out all'. | | | Hmm. | |> Next thing, a second account just 'showed up' on the box with uid |> 0. |> |> toor:*:0:0:Bourne-again Superuser:/root: - from |> /etc/master.passwd |> |> I suspect it was techs from the host, but I want it off the |> machine. How do I do this? | | | FreeBSD ships with a toor account available but disabled, which can | be useful if someone breaks the shell used by the root account | itself. If you want to get rid of it, run vipw. | - -- Marc Cabanatuan Network and Systems Administrator A+, Net+, Linux+, CCNA, MCP -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBIotTQXmDWC9ByjIRAiRrAJ4sCx8m0/eaKHU4OcZS9EQAYrAlQwCg2+Cw YXerOL9ouz07WCB7S8PohG8= =OVE9 -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 22:55:51 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE35F16A4CE for ; Tue, 17 Aug 2004 22:55:51 +0000 (GMT) Received: from ms-smtp-03.rdc-kc.rr.com (ms-smtp-03.rdc-kc.rr.com [24.94.166.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A35643D39 for ; Tue, 17 Aug 2004 22:55:51 +0000 (GMT) (envelope-from mcabanatuan@wi.rr.com) Received: from [192.168.0.3] (CPE-65-31-156-223.wi.rr.com [65.31.156.223]) i7HMtljE010544; Tue, 17 Aug 2004 17:55:48 -0500 (CDT) Message-ID: <41228CF3.50709@wi.rr.com> Date: Tue, 17 Aug 2004 17:55:47 -0500 From: Marc Cabanatuan User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040814) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Marc Cabanatuan References: <412279F4.7040805@wi.rr.com> <41227CC2.7060303@mac.com> <41228B53.9080405@wi.rr.com> In-Reply-To: <41228B53.9080405@wi.rr.com> X-Enigmail-Version: 0.85.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine cc: freebsd-questions@freebsd.org Subject: Re: multi-homing and pf; removing user with uid 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 22:55:51 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Oh also, when i connect to a service bound to the primary IP (say its a .2) and im connecting to a .6 to the SAME service (not bound to the address) it goes right to .2 eg, i can ssh to .6 and it allows me to get to the box. i would really like it to be completely seperate, or at least as seperate as possible. Marc Cabanatuan wrote: | so far ive got this along with the primary inet address with the | /27 subnet mask in /etc/rc.conf | | | ifconfig_rl0_alias*="inet 0.0.0.0 netmask 255.255.255.255" | (replacing 0's with ip address of course) Chuck Swiger wrote: | | | Marc Cabanatuan wrote: [ ... ] | |> Right now I've got a /27 and | I am attemtpting to add 5 addresses |> of that adress block (ipv4) | to the box as either seperate |> addreses (not aliases to the | primary interface) or seperate |> addresses bound to | sub-interfaces. So far I have been |> unsuccessful and the host | told me to use aliases. | | | FreeBSD doesn't let you configure | multiple IP addresses within the | same subnet. You will either | have to use different netmasks, or | else use aliases as | recommended. | |> I also wish for these settings to stay after | (re)boot. | | | See /etc/rc.conf, and add something like: | | # | Sample alias entry. #ifconfig_lo0_alias0="inet 127.0.0.254 | | netmask 0xffffffff" | |> Not to mention they say my firewall is the | problem and they |> couldn't get out to the internet from root | console (im using pf |> and have the rule of 'pass out all'. | | | | Hmm. | |> Next thing, a second account just 'showed up' on the box | with uid |> 0. |> |> toor:*:0:0:Bourne-again Superuser:/root: - | from |> /etc/master.passwd |> |> I suspect it was techs from the | host, but I want it off the |> machine. How do I do this? | | | | FreeBSD ships with a toor account available but disabled, which can | | be useful if someone breaks the shell used by the root account | | itself. If you want to get rid of it, run vipw. | | _______________________________________________ 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" - -- Marc Cabanatuan Network and Systems Administrator A+, Net+, Linux+, CCNA, MCP -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBIozzQXmDWC9ByjIRAspSAKC4btPRPk9M7PECUPznYrK+hCcGpQCgtyeY HBFN/sExTav5yPcF8lvWV9I= =6Z6W -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 23:10:16 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE78A16A4CF for ; Tue, 17 Aug 2004 23:10:16 +0000 (GMT) Received: from ns1.tiadon.com (SMTP.tiadon.com [69.27.132.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B03043D39 for ; Tue, 17 Aug 2004 23:10:16 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [69.27.131.0] ([69.27.131.0]) by ns1.tiadon.com with Microsoft SMTPSVC(6.0.3790.0); Tue, 17 Aug 2004 18:13:53 -0500 Message-ID: <41229055.9080403@daleco.biz> Date: Tue, 17 Aug 2004 18:10:13 -0500 From: "Kevin D. Kinsey, DaleCo, S.P." User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7) Gecko/20040712 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Cubicool References: <001301c483a1$71217d50$0401a8c0@ripley> <001f01c48437$e6edac20$0401a8c0@ripley> In-Reply-To: <001f01c48437$e6edac20$0401a8c0@ripley> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 17 Aug 2004 23:13:54.0107 (UTC) FILETIME=[DD5AB8B0:01C484AF] cc: freebsd-questions@freebsd.org Subject: Re: 802.1x X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 23:10:16 -0000 Cubicool wrote: >Anyways, again, sorry for the bumpage, but I have another complete day off >and if I can find out that FreeBSD doesn't support it yet, I'm going to try >and spend this time finding an alternative solution. If, however, support >will be added soon, I won't reformat and I'll just go without net access for >a while at school. > > >I will be attending college in a few weeks. The network at this uni requires >802.1x authentication over wireless connections. > >Is 802.1x supported on FreeBSD yet? I know I can build open1x on a Linux >box, but that is my ABSOLUTE LATE resort. I really want to keep using >FreeBSD, but if I can't access the school's network I won't be able to >continue doing so. > >What's the status of this in FreeBSD, including the upcoming 5.3? Am I just >out of luck? > > It does seem to be a little hard to discover much about. Have you tried freebsd-mobile@freebsd.org? Kevin Kinsey From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 23:14:53 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF2FE16A4CE for ; Tue, 17 Aug 2004 23:14:53 +0000 (GMT) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A32843D2F for ; Tue, 17 Aug 2004 23:14:53 +0000 (GMT) (envelope-from grog@lemis.com) Received: from blackwater.lemis.com (blackwater.lemis.com [192.109.197.80]) by ozlabs.org (Postfix) with ESMTP id AA9012BDAB for ; Wed, 18 Aug 2004 09:14:49 +1000 (EST) Received: by blackwater.lemis.com (Postfix, from userid 1004) id CCAB5511FA; Wed, 18 Aug 2004 08:44:47 +0930 (CST) Date: Wed, 18 Aug 2004 08:44:47 +0930 From: Greg 'groggy' Lehey To: David Kelly Message-ID: <20040817231447.GM88156@wantadilla.lemis.com> References: <6.1.2.0.0.20040816220030.04148ec0@mail1.simplenet.com> <20040817052403.GE88156@wantadilla.lemis.com> <6BDB5047-F05D-11D8-8B80-000393BB56F2@HiWAAY.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="xn9xNsWbHJd/50IB" Content-Disposition: inline In-Reply-To: <6BDB5047-F05D-11D8-8B80-000393BB56F2@HiWAAY.net> User-Agent: Mutt/1.4.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 cc: FreeBSD_Questions FreeBSD_Questions Subject: Re: hard links for directories ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 23:14:53 -0000 --xn9xNsWbHJd/50IB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tuesday, 17 August 2004 at 9:55:03 -0500, David Kelly wrote: > > On Aug 17, 2004, at 12:24 AM, Greg 'groggy' Lehey wrote: > >> On Monday, 16 August 2004 at 22:02:11 -0700, Tim Traver wrote: >> >>> This may be a stupid question, but is it possible to make hard links >>> to >>> directories ??? I know you can with files, and normally, you would do >>> a >>> soft link for directories, but is there any way to finagle this ? >> >> Sure, there are ways. But why would you want to? >> >> A link to a directory makes it a subdirectory of the directory >> containing the link. If you have two links to a directory, where >> should the directory's .. link point? How would fsck know what to do? > > Root is the only one allowed to make hard links to directories. This is not correct. root has no special powers here. > As Greg says, "How would fsck know which is the correct parent > directory?" To make it clearer: the term "hard link" is a misnomer. It's just a link, and there are lots of links to directories. One is always called ".", and all the others are called "..". So when you create a directory, it has a link count of 2. Every time you create a subdirectory of that directory, you add to the link count: $ mkdir new=20 $ ls -dl new drwxr-xr-x 2 grog wheel 512 Aug 18 08:42 new $ mkdir new/subdir $ ls -dl new drwxr-xr-x 3 grog wheel 512 Aug 18 08:43 new $ mkdir new/subdir2 $ ls -dl new drwxr-xr-x 4 grog wheel 512 Aug 18 08:43 new > Directories have only one parent. If a directory were to have two > parents then you'd break the tree structure of the directory > hierarchy. You would could > create a loop in the tree branches which would place > utilities such as "find" in an infinite loop. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply or reply to the original recipients. For more information, see http://www.lemis.com/questions.html Note: I discard all HTML mail unseen. Finger grog@FreeBSD.org for PGP public key. See complete headers for address and phone numbers. --xn9xNsWbHJd/50IB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQFBIpFnIubykFB6QiMRAu/4AJ9htHQP110mc/rzlBsAOZuxqdsFCACffdrs As4reYJCc54aLaWEyQaKVl4= =Yk2L -----END PGP SIGNATURE----- --xn9xNsWbHJd/50IB-- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 23:21:34 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D19CA16A4CE for ; Tue, 17 Aug 2004 23:21:34 +0000 (GMT) Received: from lilzmailso02.liwest.at (lilzmailso02.liwest.at [212.33.55.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CFA443D3F for ; Tue, 17 Aug 2004 23:21:34 +0000 (GMT) (envelope-from dgw@liwest.at) Received: from cm248-230.liwest.at ([81.10.248.230]) by lilzmailso02.liwest.at with esmtp (Exim 4.24) id 1BxDG6-0004SE-W4 for questions@freebsd.org; Wed, 18 Aug 2004 01:20:51 +0200 From: Daniela To: questions@freebsd.org Date: Wed, 18 Aug 2004 01:25:21 +0000 User-Agent: KMail/1.5.3 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200408180125.21407.dgw@liwest.at> Subject: Read from keyboard with redirected stdin X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: dgw@liwest.at List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 23:21:34 -0000 Hi! I'm writing a program which acts as a filter, so stdin and stdout will be redirected most of the time. However, in one case I have to read some input from the keyboard. Well, I have stderr for displaying the prompt, but what file can I read from to get keyboard input in any case? Please don't point me to libraries doing the job, as I'm doing it in ASM. It's a quite simplistic program and I don't want it to grow unnecessarily. Regards, Daniela From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 23:28:23 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13D3116A4CE; Tue, 17 Aug 2004 23:28:23 +0000 (GMT) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EDC343D3F; Tue, 17 Aug 2004 23:28:22 +0000 (GMT) (envelope-from grog@lemis.com) Received: from blackwater.lemis.com (blackwater.lemis.com [192.109.197.80]) by ozlabs.org (Postfix) with ESMTP id 081782BD68; Wed, 18 Aug 2004 09:28:19 +1000 (EST) Received: by blackwater.lemis.com (Postfix, from userid 1004) id 022F051201; Wed, 18 Aug 2004 08:58:16 +0930 (CST) Date: Wed, 18 Aug 2004 08:58:16 +0930 From: Greg 'groggy' Lehey To: Sean Farley Message-ID: <20040817232816.GO88156@wantadilla.lemis.com> References: <20040817022926.GK81257@wantadilla.lemis.com> <20040817110515.F67959@thor.farley.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="K9fy5ol1Oes4Q/ix" Content-Disposition: inline In-Reply-To: <20040817110515.F67959@thor.farley.org> User-Agent: Mutt/1.4.1i Organization: AUUG: Australian UNIX and Open Systems User Group Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.auug.org.au/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 cc: FreeBSD Hackers cc: BSD User Group of Adelaide cc: FreeBSD Questions cc: LinuxSA Subject: What mouse? (was: Samsung Cordless Mouse) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 23:28:23 -0000 --K9fy5ol1Oes4Q/ix Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tuesday, 17 August 2004 at 11:13:17 -0500, Sean Farley wrote: > On Tue, 17 Aug 2004, Greg 'groggy' Lehey wrote: > >> This mouse has five buttons: the normal three on top, and one on each >> side. I can't find a way to get the side buttons to work, and looking >> on the web hasn't shown anything of interest. > > I assume you mean in X as opposed to moused although moused appears to > support at least five buttons according to its man page. No, this is with moused. It still needs to initialize the mouse. > This may help with your X issues: > http://www.xfree86.org/current/mouse5.html#22 Yes, been through all of that and more. Nothing worked. In the meantime I've connected it up anyway as a 3 button mouse and decided I really don't like it; the buttons are far too heavy in their action, and it's difficult to move it sideways without pressing one of the side buttons. So this is not much of an issue any more. Can anybody recommend a good mouse? My criteria are: - Middle button easy to use. The current crop of mice has the middle button integrated with the roller, and that makes the middle button either heavy or easy to confuse with the roller. - Preferably cordless. Cord mice tend to wander a little when you let go of them, and that's a real nuisance on a high-resolution display. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply or reply to the original recipients. For more information, see http://www.lemis.com/questions.html Note: I discard all HTML mail unseen. Finger Greg.Lehey@FreeBSD.org for PGP public key. See complete headers for address and phone numbers. --K9fy5ol1Oes4Q/ix Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQFBIpSQIubykFB6QiMRAt7uAKCMf73tYGbMv93gqldZi0qf9127MwCgs+3P 1u79I8AjzGLRwkqESXfMJ8s= =OUHl -----END PGP SIGNATURE----- --K9fy5ol1Oes4Q/ix-- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 23:29:12 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E023216A4CE for ; Tue, 17 Aug 2004 23:29:12 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B27343D2D for ; Tue, 17 Aug 2004 23:29:10 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 439B669A8C; Tue, 17 Aug 2004 19:29:09 -0400 (EDT) Date: Tue, 17 Aug 2004 19:29:08 -0400 From: Bill Moran To: Mikhail Teterin Message-Id: <20040817192908.228cca04.wmoran@potentialtech.com> In-Reply-To: <4122370A.1010102@aldan.algebra.com> References: <200408170835.45402@aldan> <20040817151725.GA782@gentoo-npk.bmp.ub> <4122370A.1010102@aldan.algebra.com> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: nkinkade@ub.edu.bz cc: questions@FreeBSD.org Subject: Re: web-serving does not update a file's atime? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 23:29:13 -0000 Mikhail Teterin wrote: > Nathan Kinkade wrote: > > >On Tue, Aug 17, 2004 at 08:35:45AM -0400, Mikhail Teterin wrote: > > > >>Hello! > >> > >>I tried to use stat(1) to see the last time a file was downloaded > >>through Apache. > >> > >>To my surprise, all three dates displayed by stat are long ago, even > >>though the web-server's log is showing downloads from a just a few > >>hours back. > >> > >>The file-system used to be mounted noatime, but I turned that option > >>off some time ago. If I read one of those files (with head(1) or > >>file(1), for example), the atime is updated. But if Apache serves it > >>out -- it is not... There is no caching in Apache either. > > > >Is this all running on your local machine? If not, is it possible that > >there is a proxy server between you and the host running Apache? > >Perhaps a transparent proxy? > > > > > There are not other servers and no proxies. The locally running apache logs > successful requests for the files, but their atimes are not updated. > > Just checked -- the file was last downloaded 13 minutes ago, but all of > the three time-stamps (according to stat(1)) point to many hours back... My guess on this would be that Apache is caching the file and has only actually loaded it from disk once. Try stop/starting Apache and see if it has to reload the file to see if my guess is correct. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 17 23:37:32 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0E2F16A4CE for ; Tue, 17 Aug 2004 23:37:32 +0000 (GMT) Received: from server.rozanka.net (pw118.wroclaw.sdi.tpnet.pl [217.98.143.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90A2443D49 for ; Tue, 17 Aug 2004 23:37:31 +0000 (GMT) (envelope-from pawel@rozanka.net) Received: from urbanskiwwpiu3 (unknown [192.168.0.9]) by server.rozanka.net (Postfix) with SMTP id 97ED322F166 for ; Wed, 18 Aug 2004 01:43:12 +0200 (CEST) Message-ID: <000801c484b3$28583ba0$0900a8c0@urbanskiwwpiu3> From: =?iso-8859-2?Q?Pawe=B3@rozanka.net?= To: Date: Wed, 18 Aug 2004 01:37:27 +0200 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Upgrade FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 23:37:32 -0000 Hey=20 I have FreeBSD 4-9 RELEASE,and i wont upgrade it to 4.10 STABLE.I use for this operation CVSUP,and when cvsup dawnload sources in /usr/src directory ,i write: cd /usr/src make buildworld and system compiling the sources,while return my error message. With another time errors whas different,and I don know why.My compiuter = is pentium 100 with 32 MB ram Please Healp MY ??? From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 00:06:09 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5366716A4CE; Wed, 18 Aug 2004 00:06:09 +0000 (GMT) Received: from fep.baea.com.au (gateway.baea.com.au [202.20.20.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id C59E043D1D; Wed, 18 Aug 2004 00:06:06 +0000 (GMT) (envelope-from blymn@baesystems.com.au) Received: from proxy.baea.com.au (HELO sbuxscan.baea.com.au) (150.207.31.25) by fep.baea.com.au with ESMTP; 18 Aug 2004 09:36:04 +0930 Received: from bunya.baea.com.au.awadi (bunya.baea.com.au.207.150.in-addr.arpa [150.207.1.63] (may be forged))i7I03vq4014961; Wed, 18 Aug 2004 09:33:58 +0930 (CST) Received: from nmallee.baea.com.au by bunya.baea.com.au.awadi (SMI-8.6/SMI-SVR4) id JAA16601; Wed, 18 Aug 2004 09:35:59 +0930 Received: (from blymn@localhost) by nmallee.baea.com.au (8.11.7p1+Sun/8.11.7) id i7I05vb11670; Wed, 18 Aug 2004 09:35:57 +0930 (CST) Date: Wed, 18 Aug 2004 09:35:57 +0930 From: Brett Lymn To: "Greg 'groggy' Lehey" Message-ID: <20040818000557.GA11663@baea.com.au> References: <20040817022926.GK81257@wantadilla.lemis.com> <20040817110515.F67959@thor.farley.org> <20040817232816.GO88156@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040817232816.GO88156@wantadilla.lemis.com> User-Agent: Mutt/1.3.28i cc: LinuxSA cc: BSD User Group of Adelaide cc: FreeBSD Hackers cc: Sean Farley cc: FreeBSD Questions Subject: Re: [BUGA] What mouse? (was: Samsung Cordless Mouse) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 00:06:09 -0000 On Wed, Aug 18, 2004 at 08:58:16AM +0930, Greg 'groggy' Lehey wrote: > > - Middle button easy to use. The current crop of mice has the middle > button integrated with the roller, and that makes the middle button > either heavy or easy to confuse with the roller. > I have a logitech wireless ball mouse. It is a bit old now but the thing functions fine. I solved the problem of the middle button being on the roller by buying a tiny push button switch from Dick Smith and mounting that as a thumb button. It was a relatively simple hardware hack to get a thumb button - because I prefer to use the mouse in my left hand my mousing options are rather limited. It sucks to be one of the superior minority ;) -- Brett Lymn From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 00:14:58 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F268D16A4CE; Wed, 18 Aug 2004 00:14:57 +0000 (GMT) Received: from cathy.bmts.com (cathy.bmts.com [216.183.128.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8360943D2F; Wed, 18 Aug 2004 00:14:57 +0000 (GMT) (envelope-from rhempel@bmts.com) Received: from PC300GL (cheetah-bar-ppp036.bmts.com [216.183.159.37]) by cathy.bmts.com (8.12.10/8.12.10) with SMTP id i7I0Fnh6025338; Tue, 17 Aug 2004 20:15:49 -0400 (EDT) From: "Ralph Hempel" To: "Greg 'groggy' Lehey" , "FreeBSD Questions" Date: Tue, 17 Aug 2004 20:17:55 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <20040817232816.GO88156@wantadilla.lemis.com> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4927.1200 Importance: Normal X-bmts-MailScanner: Found to be clean X-bmts-MailScanner-SpamCheck: X-MailScanner-From: rhempel@bmts.com Subject: RE: What mouse? (was: Samsung Cordless Mouse) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: rhempel@bmts.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 00:14:58 -0000 > Can anybody recommend a good mouse? My criteria are: > > - Middle button easy to use. The current crop of mice has the middle > button integrated with the roller, and that makes the middle button > either heavy or easy to confuse with the roller. > - Preferably cordless. Cord mice tend to wander a little when you let > go of them, and that's a real nuisance on a high-resolution display. Greg, Have you tried a trackball? I'm using a Logitech Marble Mouse, it has 4 buttons, I'm not sure if there's a three button version. Nice thing about a trackball is it stays where you park it, and I've felt much less writest strain lately... Ralph From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 00:32:28 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F10E716A4CE; Wed, 18 Aug 2004 00:32:27 +0000 (GMT) Received: from postit.mail.adnap.net.au (postit.mail.adnap.net.au [203.6.132.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8728343D4C; Wed, 18 Aug 2004 00:32:27 +0000 (GMT) (envelope-from bastill@adam.com.au) Received: from [192.168.1.11] (202-136-104-146.ip.adam.com.au [202.136.104.146]) by postit.mail.adnap.net.au (Postfix) with ESMTP id AA9E31E604; Wed, 18 Aug 2004 10:02:24 +0930 (CST) From: Brian Astill To: freebsd-questions@freebsd.org Date: Wed, 18 Aug 2004 10:02:54 -0400 User-Agent: KMail/1.6.2 References: <20040817022926.GK81257@wantadilla.lemis.com> <20040817110515.F67959@thor.farley.org> <20040817232816.GO88156@wantadilla.lemis.com> In-Reply-To: <20040817232816.GO88156@wantadilla.lemis.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408181002.54857.bastill@adam.com.au> cc: Greg 'groggy' Lehey cc: Sean Farley cc: FreeBSD Questions cc: FreeBSD Hackers cc: BSD User Group of Adelaide cc: LinuxSA Subject: Re: What mouse? (was: Samsung Cordless Mouse) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 00:32:28 -0000 On Tue, 17 Aug 2004 07:28 pm, Greg 'groggy' Lehey wrote: > Can anybody recommend a good mouse? My criteria are: > > - Middle button easy to use. The current crop of mice has the middle > button integrated with the roller, and that makes the middle button > either heavy or easy to confuse with the roller. > - Preferably cordless. Cord mice tend to wander a little when you > let go of them, and that's a real nuisance on a high-resolution > display. if you want three buttons PLUS a wheel ... ?? Otherwise, Logitech provide a very nice three-button mouse in either wired or wireless form. -- Regards, Brian sos-sa.org.au From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 00:32:27 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F10E716A4CE; Wed, 18 Aug 2004 00:32:27 +0000 (GMT) Received: from postit.mail.adnap.net.au (postit.mail.adnap.net.au [203.6.132.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8728343D4C; Wed, 18 Aug 2004 00:32:27 +0000 (GMT) (envelope-from bastill@adam.com.au) Received: from [192.168.1.11] (202-136-104-146.ip.adam.com.au [202.136.104.146]) by postit.mail.adnap.net.au (Postfix) with ESMTP id AA9E31E604; Wed, 18 Aug 2004 10:02:24 +0930 (CST) From: Brian Astill To: freebsd-questions@freebsd.org Date: Wed, 18 Aug 2004 10:02:54 -0400 User-Agent: KMail/1.6.2 References: <20040817022926.GK81257@wantadilla.lemis.com> <20040817110515.F67959@thor.farley.org> <20040817232816.GO88156@wantadilla.lemis.com> In-Reply-To: <20040817232816.GO88156@wantadilla.lemis.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408181002.54857.bastill@adam.com.au> cc: Greg 'groggy' Lehey cc: Sean Farley cc: FreeBSD Questions cc: FreeBSD Hackers cc: BSD User Group of Adelaide cc: LinuxSA Subject: Re: What mouse? (was: Samsung Cordless Mouse) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 00:32:28 -0000 On Tue, 17 Aug 2004 07:28 pm, Greg 'groggy' Lehey wrote: > Can anybody recommend a good mouse? My criteria are: > > - Middle button easy to use. The current crop of mice has the middle > button integrated with the roller, and that makes the middle button > either heavy or easy to confuse with the roller. > - Preferably cordless. Cord mice tend to wander a little when you > let go of them, and that's a real nuisance on a high-resolution > display. if you want three buttons PLUS a wheel ... ?? Otherwise, Logitech provide a very nice three-button mouse in either wired or wireless form. -- Regards, Brian sos-sa.org.au From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 01:01:57 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61FED16A4CE; Wed, 18 Aug 2004 01:01:57 +0000 (GMT) Received: from mail.farley.org (farley.org [67.64.95.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9AD343D45; Wed, 18 Aug 2004 01:01:56 +0000 (GMT) (envelope-from sean-freebsd@farley.org) Received: from thor.farley.org (sw1iwtkriyevmtgy@thor.farley.org [IPv6:2002:4340:5fcd:1::5]) by mail.farley.org (8.12.11/8.12.11) with ESMTP id i7I11XIG083124; Tue, 17 Aug 2004 20:01:33 -0500 (CDT) (envelope-from sean-freebsd@farley.org) Received: from thor.farley.org (localhost [127.0.0.1]) by thor.farley.org (8.12.11/8.12.11) with ESMTP id i7I11XD9005116; Tue, 17 Aug 2004 20:01:33 -0500 (CDT) (envelope-from sean-freebsd@farley.org) Received: from localhost (sean@localhost)i7I11XT0005113; Tue, 17 Aug 2004 20:01:33 -0500 (CDT) (envelope-from sean-freebsd@farley.org) X-Authentication-Warning: thor.farley.org: sean owned process doing -bs Date: Tue, 17 Aug 2004 20:01:33 -0500 (CDT) From: Sean Farley X-X-Sender: sean@thor.farley.org To: Brian Astill In-Reply-To: <200408181002.54857.bastill@adam.com.au> Message-ID: <20040817195721.X4931@thor.farley.org> References: <20040817022926.GK81257@wantadilla.lemis.com> <20040817232816.GO88156@wantadilla.lemis.com> <200408181002.54857.bastill@adam.com.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: Greg 'groggy' Lehey cc: FreeBSD Questions cc: FreeBSD Hackers cc: BSD User Group of Adelaide cc: freebsd-questions@freebsd.org cc: LinuxSA Subject: Re: What mouse? (was: Samsung Cordless Mouse) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 01:01:57 -0000 On Wed, 18 Aug 2004, Brian Astill wrote: > On Tue, 17 Aug 2004 07:28 pm, Greg 'groggy' Lehey wrote: > >> Can anybody recommend a good mouse? My criteria are: >> >> - Middle button easy to use. The current crop of mice has the middle >> button integrated with the roller, and that makes the middle button >> either heavy or easy to confuse with the roller. >> - Preferably cordless. Cord mice tend to wander a little when you >> let go of them, and that's a real nuisance on a high-resolution >> display. > > if you want three buttons PLUS a wheel ... ?? > Otherwise, Logitech provide a very nice three-button mouse in either > wired or wireless form. I have two three-button mice without wheels (one Logitech MouseMan and a Dell that is looks just like it) that I protect with my life. :) I like three buttons, but I dislike wheels. When I checked Logitech's website, I could not find any three-button mice without wheels. Did I miss it, or are you speaking of the wheeled mice? Sean ----------------------- sean-freebsd@farley.org From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 01:01:57 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61FED16A4CE; Wed, 18 Aug 2004 01:01:57 +0000 (GMT) Received: from mail.farley.org (farley.org [67.64.95.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9AD343D45; Wed, 18 Aug 2004 01:01:56 +0000 (GMT) (envelope-from sean-freebsd@farley.org) Received: from thor.farley.org (sw1iwtkriyevmtgy@thor.farley.org [IPv6:2002:4340:5fcd:1::5]) by mail.farley.org (8.12.11/8.12.11) with ESMTP id i7I11XIG083124; Tue, 17 Aug 2004 20:01:33 -0500 (CDT) (envelope-from sean-freebsd@farley.org) Received: from thor.farley.org (localhost [127.0.0.1]) by thor.farley.org (8.12.11/8.12.11) with ESMTP id i7I11XD9005116; Tue, 17 Aug 2004 20:01:33 -0500 (CDT) (envelope-from sean-freebsd@farley.org) Received: from localhost (sean@localhost)i7I11XT0005113; Tue, 17 Aug 2004 20:01:33 -0500 (CDT) (envelope-from sean-freebsd@farley.org) X-Authentication-Warning: thor.farley.org: sean owned process doing -bs Date: Tue, 17 Aug 2004 20:01:33 -0500 (CDT) From: Sean Farley X-X-Sender: sean@thor.farley.org To: Brian Astill In-Reply-To: <200408181002.54857.bastill@adam.com.au> Message-ID: <20040817195721.X4931@thor.farley.org> References: <20040817022926.GK81257@wantadilla.lemis.com> <20040817232816.GO88156@wantadilla.lemis.com> <200408181002.54857.bastill@adam.com.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: Greg 'groggy' Lehey cc: FreeBSD Questions cc: FreeBSD Hackers cc: BSD User Group of Adelaide cc: freebsd-questions@freebsd.org cc: LinuxSA Subject: Re: What mouse? (was: Samsung Cordless Mouse) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 01:01:57 -0000 On Wed, 18 Aug 2004, Brian Astill wrote: > On Tue, 17 Aug 2004 07:28 pm, Greg 'groggy' Lehey wrote: > >> Can anybody recommend a good mouse? My criteria are: >> >> - Middle button easy to use. The current crop of mice has the middle >> button integrated with the roller, and that makes the middle button >> either heavy or easy to confuse with the roller. >> - Preferably cordless. Cord mice tend to wander a little when you >> let go of them, and that's a real nuisance on a high-resolution >> display. > > if you want three buttons PLUS a wheel ... ?? > Otherwise, Logitech provide a very nice three-button mouse in either > wired or wireless form. I have two three-button mice without wheels (one Logitech MouseMan and a Dell that is looks just like it) that I protect with my life. :) I like three buttons, but I dislike wheels. When I checked Logitech's website, I could not find any three-button mice without wheels. Did I miss it, or are you speaking of the wheeled mice? Sean ----------------------- sean-freebsd@farley.org From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 01:03:52 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ABF016A4CE for ; Wed, 18 Aug 2004 01:03:52 +0000 (GMT) Received: from outbox.allstream.net (outbox.allstream.net [207.245.244.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15D9443D39 for ; Wed, 18 Aug 2004 01:03:52 +0000 (GMT) (envelope-from epilogue@allstream.net) Received: from localhost (mon-pq64-088.dial.allstream.net [216.123.138.88]) by outbox.allstream.net (Allstream MTA) with SMTP id 79771573FC; Tue, 17 Aug 2004 21:03:50 -0400 (EDT) Date: Tue, 17 Aug 2004 21:03:44 -0400 From: epilogue To: =?ISO-8859-1?Q? "Pawe=B3@rozanka.net" ?= Message-Id: <20040817210344.1b33c005@localhost> In-Reply-To: <000801c484b3$28583ba0$0900a8c0@urbanskiwwpiu3> References: <000801c484b3$28583ba0$0900a8c0@urbanskiwwpiu3> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable cc: freebsd-questions@freebsd.org Subject: Re: Upgrade FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 01:03:52 -0000 On Wed, 18 Aug 2004 01:37:27 +0200 "Pawe=B3@rozanka.net" wrote: > Hey=20 > I have FreeBSD 4-9 RELEASE,and i wont upgrade it to > 4.10 STABLE.I use for this operation CVSUP,and > when cvsup dawnload sources in /usr/src directory > ,i write: > cd /usr/src > make buildworld > and system compiling the sources,while return my > error message. hello, P. it is generally expected that you provide the error message you are seeing. trust me, you will get much better help, if you do. without it, we can only guess. (btw, if you not yet familiar with 'script', try reading its man page. it is a very handy way to capture this kind of information.) so, without more information about your error, my first guess would be that you are not supping the right source. for 4.10-release (+patches), your cvsup file has to have this: *default release=3Dcvs tag=3DRELENG_4_10 _not_ this: *default release=3Dcvs tag=3DRELENG_4 now, if this isn't your problem, are you supping 'src-all' or have you commented out any of the 'src-*' entries? also, are you using a 'refuse' file? if so, what are its contents? please write back with more info. in the meantime, i hope that this helps to narrow down the cause. cheers, epi > With another time errors whas different,and I don know why.My compiuter > is pentium 100 with 32 MB ram Please Healp MY ??? _______________________________________________ > 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 From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 01:10:08 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B66D16A4CE for ; Wed, 18 Aug 2004 01:10:08 +0000 (GMT) Received: from outbox.allstream.net (outbox.allstream.net [207.245.244.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18FF143D3F for ; Wed, 18 Aug 2004 01:10:08 +0000 (GMT) (envelope-from epilogue@allstream.net) Received: from localhost (mon-pq64-088.dial.allstream.net [216.123.138.88]) by outbox.allstream.net (Allstream MTA) with SMTP id 0F035B47BB for ; Tue, 17 Aug 2004 21:10:06 -0400 (EDT) Date: Tue, 17 Aug 2004 21:10:01 -0400 From: epilogue To: freebsd-questions@freebsd.org Message-Id: <20040817211001.32c650e7@localhost> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: openoffice : unable to set accelerator keys X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 01:10:08 -0000 questions@ is probably the right forum for this... Begin forwarded message: Date: Wed, 11 Aug 2004 18:36:05 -0400 From: epilogue To: freebsd-openoffice@freebsd.org Subject: unable to set accelerator keys hello all, i've got the english openoffice-1.1.2 package for 4.x installed. i know that it is supposed to be a fairly vanilla build, so i expect that the problem i'm having also applies to builds from source. before i send off a problem report to oo.o, i would appreciate it if someone else could confirm that they also see the same behaviour... 1) open a .sxw text document (or make a new one) 2) tools > configure > menu 3) try to change any of the accelerator keys (ie. the tildes --> ~) though i have been through the oo.o documentation more than once, i am entirely unable to change these settings. thanks! epi _______________________________________________ freebsd-openoffice@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-openoffice To unsubscribe, send any mail to "freebsd-openoffice-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 01:18:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9005516A4CE; Wed, 18 Aug 2004 01:18:48 +0000 (GMT) Received: from mail.farley.org (farley.org [67.64.95.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0287343D2D; Wed, 18 Aug 2004 01:18:48 +0000 (GMT) (envelope-from sean-freebsd@farley.org) Received: from thor.farley.org (yzfnkdla5v4r9lie@thor.farley.org [IPv6:2002:4340:5fcd:1::5]) by mail.farley.org (8.12.11/8.12.11) with ESMTP id i7I1IgMa083359; Tue, 17 Aug 2004 20:18:42 -0500 (CDT) (envelope-from sean-freebsd@farley.org) Received: from thor.farley.org (localhost [127.0.0.1]) by thor.farley.org (8.12.11/8.12.11) with ESMTP id i7I1Ig7E005405; Tue, 17 Aug 2004 20:18:42 -0500 (CDT) (envelope-from sean-freebsd@farley.org) Received: from localhost (sean@localhost)i7I1IgSK005402; Tue, 17 Aug 2004 20:18:42 -0500 (CDT) (envelope-from sean-freebsd@farley.org) X-Authentication-Warning: thor.farley.org: sean owned process doing -bs Date: Tue, 17 Aug 2004 20:18:42 -0500 (CDT) From: Sean Farley X-X-Sender: sean@thor.farley.org To: "Greg 'groggy' Lehey" In-Reply-To: <20040817232816.GO88156@wantadilla.lemis.com> Message-ID: <20040817200137.P4931@thor.farley.org> References: <20040817022926.GK81257@wantadilla.lemis.com> <20040817232816.GO88156@wantadilla.lemis.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: BSD User Group of Adelaide cc: FreeBSD Hackers cc: FreeBSD Questions cc: LinuxSA Subject: Re: What mouse? (was: Samsung Cordless Mouse) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 01:18:48 -0000 On Wed, 18 Aug 2004, Greg 'groggy' Lehey wrote: > On Tuesday, 17 August 2004 at 11:13:17 -0500, Sean Farley wrote: >> On Tue, 17 Aug 2004, Greg 'groggy' Lehey wrote: >> >>> This mouse has five buttons: the normal three on top, and one on >>> each side. I can't find a way to get the side buttons to work, and >>> looking on the web hasn't shown anything of interest. >> >> I assume you mean in X as opposed to moused although moused appears >> to support at least five buttons according to its man page. > > No, this is with moused. It still needs to initialize the mouse. Will you be using moused on the console? It is not needed to run X. > Can anybody recommend a good mouse? My criteria are: > > - Middle button easy to use. The current crop of mice has the middle > button integrated with the roller, and that makes the middle button > either heavy or easy to confuse with the roller. I am not aware of any makers of three-button mice without wheels. However, I have always Logitech as a brand. > - Preferably cordless. Cord mice tend to wander a little when you let > go of them, and that's a real nuisance on a high-resolution display. Maybe you can find a cord-to-cordless converter--there is bound to be an engineer that has done this :)--if you find a mouse you like that just happens to have a tail. Sean ----------------------- sean-freebsd@farley.org From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 01:43:30 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7939E16A4CE for ; Wed, 18 Aug 2004 01:43:30 +0000 (GMT) Received: from grog.secure-computing.net (grog.secure-computing.net [63.228.14.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1B2043D5C for ; Wed, 18 Aug 2004 01:43:27 +0000 (GMT) (envelope-from ecrist@secure-computing.net) Received: from Nomad (nat-server.secure-computing.net [63.228.14.245]) (authenticated bits=0)i7I1gxvL013449 for ; Tue, 17 Aug 2004 20:43:08 -0500 (CDT) (envelope-from ecrist@secure-computing.net) From: "Eric Crist" To: Date: Tue, 17 Aug 2004 20:36:47 -0500 Message-ID: <002201c484c3$d6f5d220$6501a8c0@Nomad> X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Virus-Scanned: clamd / ClamAV version 0.74, clamav-milter version 0.74a on grog.secure-computing.net X-Virus-Status: Clean Subject: [OT] VPN issues with some windows users... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 01:43:30 -0000 Hello all, I'm sorry this is a bit off-topic, but you're the only truly knowledgable group I know. ;) Some fellow users and I have been having some issues connecting to a Cisco VPN system with the built-in windows VPN software. While successfully connected to the internet (at home, for example), I connect to the remote VPN. Instantly, my internet connectivity seems to be lost, but I can use the VPN perfectly fine. As soon as I disconnect, my internet connectivity is completely restored. I have a second VPN I connect to using V-One's SmartPass software, and I have no issues (i.e. everything works perfectly, including my 'net connection). Anyone have any ideas? Sorry about the OT question, and thanks for your help. Eric F Crist Best Access Systems 11300 Rupp Dr. Burnsville, MN 55337 Phone: 952.894.3830 Cell: 612.998.3588 Fax: 952-894-1990 From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 01:44:55 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8980F16A4CE for ; Wed, 18 Aug 2004 01:44:55 +0000 (GMT) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24F6E43D4C for ; Wed, 18 Aug 2004 01:44:55 +0000 (GMT) (envelope-from parv@chvlva.adelphia.net) Received: from default.chvlva.adelphia.net ([69.160.71.53]) by mta10.adelphia.netESMTP <20040818014454.CLSC9204.mta10.adelphia.net@default.chvlva.adelphia.net>; Tue, 17 Aug 2004 21:44:54 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id BE0F15366; Tue, 17 Aug 2004 21:46:38 -0400 (EDT) Date: Tue, 17 Aug 2004 21:46:38 -0400 From: Parv To: Marc Cabanatuan Message-ID: <20040818014638.GA5173@moo.holy.cow> Mail-Followup-To: Marc Cabanatuan , freebsd-questions@freebsd.org References: <412279F4.7040805@wi.rr.com> <41227CC2.7060303@mac.com> <41228B53.9080405@wi.rr.com> <41228CF3.50709@wi.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41228CF3.50709@wi.rr.com> cc: freebsd-questions@freebsd.org Subject: Re: multi-homing and pf; removing user with uid 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: f-questions List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 01:44:55 -0000 in message <41228CF3.50709@wi.rr.com>, wrote Marc Cabanatuan thusly... > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Oh also, when i connect to a service bound to the primary IP (say > its Could you please not top post? > Marc Cabanatuan wrote: > > | so far ive got this along with the primary inet address with the > | /27 subnet mask in /etc/rc.conf > | > | > | ifconfig_rl0_alias*="inet 0.0.0.0 netmask 255.255.255.255" > | (replacing 0's with ip address of course) Chuck Swiger wrote: > | > | | Marc Cabanatuan wrote: [ ... ] | |> Right now I've got a /27 and > | I am attemtpting to add 5 addresses |> of that adress block (ipv4) Additionaly, please properly quote only the relevant parts to your reply. Thanks much for your consideration. - Parv -- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 01:50:53 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68FC716A4CE for ; Wed, 18 Aug 2004 01:50:53 +0000 (GMT) Received: from theatre.msu.edu (theatre.msu.edu [35.8.69.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E9B443D39 for ; Wed, 18 Aug 2004 01:50:53 +0000 (GMT) (envelope-from sagejona@theatre.msu.edu) Received: from [192.168.0.4] (d14-69-33-4.try.wideopenwest.com [69.14.4.33]) (authenticated bits=0) by theatre.msu.edu (8.12.11/8.12.11) with ESMTP id i7I1okYc033998 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 17 Aug 2004 21:50:47 -0400 (EDT) (envelope-from sagejona@theatre.msu.edu) Message-ID: <4122B5F6.5070306@theatre.msu.edu> Date: Tue, 17 Aug 2004 21:50:46 -0400 From: "Jonathan T. Sage" Organization: MSU Dept of Theatre User-Agent: Mozilla Thunderbird 0.7.2 (Windows/20040707) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Eric Crist References: <002201c484c3$d6f5d220$6501a8c0@Nomad> In-Reply-To: <002201c484c3$d6f5d220$6501a8c0@Nomad> X-Enigmail-Version: 0.85.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime X-Phone: +1-517-974-1428 X-WWW-Home-Page: http://theatre.msu.edu X-PGP-Key-Figerprint: 182C CF3F 93A9 1DAA 2EBE D4D5 A159 96D9 452E A7F1 X-IM: AIM(jonathantsage,spartyman), ICQ(9587621), YIM(wisesage98) Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig000C94E75A2EDC43EDBE903A" X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on www.theatre.msu.edu X-Virus-Scanned: clamd / ClamAV version devel-20040526, clamav-milter version 0.71 X-Virus-Status: Clean cc: freebsd-questions@freebsd.org Subject: Re: [OT] VPN issues with some windows users... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 01:50:53 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig000C94E75A2EDC43EDBE903A Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Eric Crist wrote: > Hello all, > > I'm sorry this is a bit off-topic, but you're the only truly > knowledgable group I know. ;) Some fellow users and I have been having > some issues connecting to a Cisco VPN system with the built-in windows > VPN software. While successfully connected to the internet (at home, > for example), I connect to the remote VPN. Instantly, my internet > connectivity seems to be lost, but I can use the VPN perfectly fine. As > soon as I disconnect, my internet connectivity is completely restored. > I have a second VPN I connect to using V-One's SmartPass software, and I > have no issues (i.e. everything works perfectly, including my 'net > connection). > > Anyone have any ideas? probably (although not definatally) is related to a misconfigured router on the cisco VPN not allowing internet traffic out. this might be intentional too. I run a very small vpn, and in order to keep connection times down (my user base is um.... well then) i have configured to not allow any traffic other than directly to the machine that hosts the vpn. dunno if this helps much, but might give you a starting point. ~j -- Jonathan T. Sage Theatrical Lighting / Set Designer Professional Web Design "He said he likes me, but he's not in-like with me."- Connie, King of the Hill [HTTP://www.JTSage.com] [HTTP://design.JTSage.com] [sagejona@msu.edu] [See Headers for Contact Info] --------------enig000C94E75A2EDC43EDBE903A 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.2.4 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBIrX6oVmW2UUup/ERAqBmAKCSuc81Yn3yH+Q6CLHUD58iWTqFQwCeNNj0 SA6VBpW9hfuXk5A8jY3ENnE= =vnQr -----END PGP SIGNATURE----- --------------enig000C94E75A2EDC43EDBE903A-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 01:52:04 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7116816A4CE for ; Wed, 18 Aug 2004 01:52:03 +0000 (GMT) Received: from mtiwmhc11.worldnet.att.net (mtiwmhc11.worldnet.att.net [204.127.131.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BD8543D3F for ; Wed, 18 Aug 2004 01:52:03 +0000 (GMT) (envelope-from duanewinner@worldnet.att.net) Received: from [10.10.0.101] (pcp04355855pcs.glstrt01.nj.comcast.net[68.45.111.171]) by worldnet.att.net (mtiwmhc11) with ESMTP id <2004081801520211100bngele> (Authid: duanewinner); Wed, 18 Aug 2004 01:52:02 +0000 Message-ID: <4122B61B.1050608@att.net> Date: Tue, 17 Aug 2004 21:51:23 -0400 From: Duane Winner User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040809 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Gary Kline References: <41222679.7080000@att.net> <4122351E.7040205@att.net> <20040817165757.GA88222@thought.org> In-Reply-To: <20040817165757.GA88222@thought.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: xtset or xtermset tricks? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 01:52:04 -0000 Gary Kline wrote: > On Tue, Aug 17, 2004 at 12:41:02PM -0400, Duane Winner wrote: > >>Found a solution! >> >>In ~/.bashrc, put this: >> >>cd () >>{ >> builtin cd "$@" >> /usr/local/bin/xtset %u@%h:`pwd` >>} >> >> >> >>-Duane >> >> >>Duane Winner wrote: >> >>>Hello, >>> >>>Hey, does anybody know of any useful tricks for automating xtset or >>>xtermset? >>> >>>I use xtset to set the title and icon labels to user@host:path so I can >>>keep track of my xterms littered all over my desktop (pretty frequent! :) >>> >>>But it sure would be nice to have them updated whenever I 'cd' to >>>another directory or 'su' to another user or 'ssh' to another host! >>> > > > [ ... ] > > > I've got a slight problem with having the host/directory/etc on the > title bar. It will help clear my zsh right-prompt, of course. > But how do you set the title bar *back* to the name of the xterm? > (My xterms are titled "Mail", "Net", "Hacking", "Scratch", and so > forth.) Is there a way of using xtset/xtermset to retrieve the > -n "Name"?? Hm, not sure. I just started with xtset myself this morning when I decided I was getting sick of having 10 xterm windows all over my lawn with the name 'xterm'. I never gave descriptive labels since I'm most often ssh'd into other boxes and am more interested in where I am. Maybe, depending on how you start each xterm (icon/shortcut), you could set a variable name (XTNAME="Mail") for each one, then run: # xtset `echo $XTNAME` But now, since I hammered out that little cd() function for .bashrc, I found another little problem: If I su to another user (for instance, "su - root"), the title changes as long as the other account has my the function in .bashrc, but when I exit, the title still has the old credentials (example: root@mybox:~) until I cd somewhere again. Sigh. Cheers, Duane > > thanks, > > gary > > From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 01:55:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38B1D16A4D0 for ; Wed, 18 Aug 2004 01:55:05 +0000 (GMT) Received: from grog.secure-computing.net (grog.secure-computing.net [63.228.14.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90C4C43D49 for ; Wed, 18 Aug 2004 01:55:04 +0000 (GMT) (envelope-from ecrist@secure-computing.net) Received: from Nomad (nat-server.secure-computing.net [63.228.14.245]) (authenticated bits=0)i7I1saSd013499; Tue, 17 Aug 2004 20:54:45 -0500 (CDT) (envelope-from ecrist@secure-computing.net) From: "Eric Crist" To: "'Jonathan T. Sage'" Date: Tue, 17 Aug 2004 20:48:23 -0500 Message-ID: <005901c484c5$78b443c0$6501a8c0@Nomad> X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 Importance: Normal In-Reply-To: <4122B5F6.5070306@theatre.msu.edu> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Virus-Scanned: clamd / ClamAV version 0.74, clamav-milter version 0.74a on grog.secure-computing.net X-Virus-Status: Clean cc: freebsd-questions@freebsd.org Subject: RE: [OT] VPN issues with some windows users... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 01:55:05 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of > Jonathan T. Sage > Sent: Tuesday, August 17, 2004 8:51 PM > To: Eric Crist > Cc: freebsd-questions@freebsd.org > Subject: Re: [OT] VPN issues with some windows users... > > > > > Eric Crist wrote: > > > Hello all, > > > > I'm sorry this is a bit off-topic, but you're the only truly > > knowledgable group I know. ;) Some fellow users and I have been > > having some issues connecting to a Cisco VPN system with > the built-in > > windows VPN software. While successfully connected to the internet > > (at home, for example), I connect to the remote VPN. Instantly, my > > internet connectivity seems to be lost, but I can use the VPN > > perfectly fine. As soon as I disconnect, my internet > connectivity is > > completely restored. I have a second VPN I connect to using V-One's > > SmartPass software, and I have no issues (i.e. everything works > > perfectly, including my 'net connection). > > > > Anyone have any ideas? > > probably (although not definatally) is related to a > misconfigured router > on the cisco VPN not allowing internet traffic out. this might be > intentional too. I run a very small vpn, and in order to keep > connection times down (my user base is um.... well then) i have > configured to not allow any traffic other than directly to > the machine > that hosts the vpn. > > dunno if this helps much, but might give you a starting point. Jonathan, Thanks for the quick reply. I'm not trying to access the internet through this VPN, I want to access the internet through my own internet connection, and have only the VPN traffic try to use the VPN tunnel. The SmartPass VPN connection resides just fine without interfering with my connection. This is what I'm hoping for. Does this make sense? Thanks, Eric F Crist Best Access Systems 11300 Rupp Dr. Burnsville, MN 55337 Phone: 952.894.3830 Cell: 612.998.3588 Fax: 952-894-1990 From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 01:57:59 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4F9B16A4CE for ; Wed, 18 Aug 2004 01:57:59 +0000 (GMT) Received: from theatre.msu.edu (theatre.msu.edu [35.8.69.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B22D43D5E for ; Wed, 18 Aug 2004 01:57:59 +0000 (GMT) (envelope-from sagejona@theatre.msu.edu) Received: from [192.168.0.4] (d14-69-33-4.try.wideopenwest.com [69.14.4.33]) (authenticated bits=0) by theatre.msu.edu (8.12.11/8.12.11) with ESMTP id i7I1vvEA034048 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 17 Aug 2004 21:57:58 -0400 (EDT) (envelope-from sagejona@theatre.msu.edu) Message-ID: <4122B7A9.6080607@theatre.msu.edu> Date: Tue, 17 Aug 2004 21:58:01 -0400 From: "Jonathan T. Sage" Organization: MSU Dept of Theatre User-Agent: Mozilla Thunderbird 0.7.2 (Windows/20040707) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Eric Crist References: <005901c484c5$78b443c0$6501a8c0@Nomad> In-Reply-To: <005901c484c5$78b443c0$6501a8c0@Nomad> X-Enigmail-Version: 0.85.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime X-Phone: +1-517-974-1428 X-WWW-Home-Page: http://theatre.msu.edu X-PGP-Key-Figerprint: 182C CF3F 93A9 1DAA 2EBE D4D5 A159 96D9 452E A7F1 X-IM: AIM(jonathantsage,spartyman), ICQ(9587621), YIM(wisesage98) Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig76412E69E0776E41D36A6DFB" X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on www.theatre.msu.edu X-Virus-Scanned: clamd / ClamAV version devel-20040526, clamav-milter version 0.71 X-Virus-Status: Clean cc: freebsd-questions@freebsd.org Subject: Re: [OT] VPN issues with some windows users... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 01:58:00 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig76412E69E0776E41D36A6DFB Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Eric Crist wrote: > > Jonathan, > > Thanks for the quick reply. I'm not trying to access the internet > through this VPN, I want to access the internet through my own internet > connection, and have only the VPN traffic try to use the VPN tunnel. > The SmartPass VPN connection resides just fine without interfering with > my connection. This is what I'm hoping for. > > Does this make sense? > absolutly. in this case, i *beleive* it should be an option to set up the routing table on your local machine to not change your default route when i connets (which i probably is doing), and only add direct routes to the vpn connection. i know this is possible using a *nix vpn client, as it is on macosx. With a bit of work, or maybe a good bit of google, i'm sure at least xp can be coerced into this too. hope this helps. ~j -- Jonathan T. Sage Theatrical Lighting / Set Designer Professional Web Design "He said he likes me, but he's not in-like with me."- Connie, King of the Hill [HTTP://www.JTSage.com] [HTTP://design.JTSage.com] [sagejona@msu.edu] [See Headers for Contact Info] --------------enig76412E69E0776E41D36A6DFB 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.2.4 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBIrepoVmW2UUup/ERAuv1AJ9J8G6mIFm0prlOdeZNmxCyc7+IkwCcCp44 gSOnZusLDowcpBLkvY6Ct/g= =FbM4 -----END PGP SIGNATURE----- --------------enig76412E69E0776E41D36A6DFB-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 02:04:36 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3367B16A4CE for ; Wed, 18 Aug 2004 02:04:35 +0000 (GMT) Received: from outbox.allstream.net (outbox.allstream.net [207.245.244.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE42C43D49 for ; Wed, 18 Aug 2004 02:04:33 +0000 (GMT) (envelope-from epilogue@allstream.net) Received: from localhost (mon-pq64-088.dial.allstream.net [216.123.138.88]) by outbox.allstream.net (Allstream MTA) with SMTP id 369495DE8; Tue, 17 Aug 2004 22:04:32 -0400 (EDT) Date: Tue, 17 Aug 2004 22:04:26 -0400 From: epilogue To: freebsd-questions@freebsd.org Message-Id: <20040817220426.299be9c9@localhost> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: eaja@erols.com cc: raphael-langerhorst@gmx.at Subject: Driver for Yopy PDA X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 02:04:36 -0000 hello all, i recently received a yopy 3500 pda (yopy.com and yopydeveloper.org) and have been trying very much in vain to get it to speak 'ethernet over usb' with my fbsd 4.10 install. the only promising *bsd related threads i have been able to locate were: http://lists.freebsd.org/mailman/htdig/freebsd-hardware/2004-June/001703.html http://lists.freebsd.org/mailman/htdig/freebsd-hardware/2003-August/000429.html i am hoping to learn whether: a) the 5.x driver mentioned in these messages is on its way into the source tree (i did not come across any if_saue entries in cvsweb.cgi/src/sys/dev/usb) ? b) i can help test a version designed for 4.x ? my yopy awaits your command =] hopefully someone will get back to me regarding these questions. in the meantime, linux already has driver support for the yopy, so i'm going to give knoppix a try. thanks for reading, epi p.s. comms/birda appears to be another option for connecting to the machine, but i haven't yet made any headway with that tool set. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 02:14:23 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E50516A4CE for ; Wed, 18 Aug 2004 02:14:23 +0000 (GMT) Received: from cactus.fi.uba.ar (cactus.fi.uba.ar [157.92.49.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED7A343D67 for ; Wed, 18 Aug 2004 02:14:22 +0000 (GMT) (envelope-from fgleiser@cactus.fi.uba.ar) Received: from localhost (localhost [127.0.0.1]) by cactus.fi.uba.ar (8.12.11/8.12.11) with ESMTP id i7I2EpNF023088; Tue, 17 Aug 2004 23:14:51 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Tue, 17 Aug 2004 23:14:51 -0300 (ART) From: Fernando Gleiser To: Eric Crist In-Reply-To: <002201c484c3$d6f5d220$6501a8c0@Nomad> Message-ID: <20040817230953.P46305@cactus.fi.uba.ar> References: <002201c484c3$d6f5d220$6501a8c0@Nomad> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Score: -104.901 () BAYES_00,USER_IN_WHITELIST X-Scanned-By: MIMEDefang 2.42 cc: freebsd-questions@freebsd.org Subject: Re: [OT] VPN issues with some windows users... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 02:14:23 -0000 On Tue, 17 Aug 2004, Eric Crist wrote: > Hello all, > > I'm sorry this is a bit off-topic, but you're the only truly > knowledgable group I know. ;) Some fellow users and I have been having > some issues connecting to a Cisco VPN system with the built-in windows > VPN software. While successfully connected to the internet (at home, > for example), I connect to the remote VPN. Instantly, my internet > connectivity seems to be lost, but I can use the VPN perfectly fine. As > soon as I disconnect, my internet connectivity is completely restored. > I have a second VPN I connect to using V-One's SmartPass software, and I > have no issues (i.e. everything works perfectly, including my 'net > connection). It's the VPN default configuration. By default, it tries to send everything through the VPN. There should be a checkbox somewhere which says "send everything through the tunnel" or something like that. Try unchecking that. Some other VPN clients (Cisco, for example) disalow all traffic other than the VPN for security reasons. You shouldn't surf the net and use a VPN to a corporate net at the same time, more so with a windows box ;) Fer From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 02:17:12 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81E6E16A4CE for ; Wed, 18 Aug 2004 02:17:12 +0000 (GMT) Received: from grog.secure-computing.net (grog.secure-computing.net [63.228.14.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20B6743D46 for ; Wed, 18 Aug 2004 02:17:12 +0000 (GMT) (envelope-from ecrist@secure-computing.net) Received: from Nomad (nat-server.secure-computing.net [63.228.14.245]) (authenticated bits=0)i7I2Gd9U013599; Tue, 17 Aug 2004 21:16:52 -0500 (CDT) (envelope-from ecrist@secure-computing.net) From: "Eric Crist" To: "'Jonathan T. Sage'" Date: Tue, 17 Aug 2004 21:10:26 -0500 Message-ID: <00ba01c484c8$8cb9d0d0$6501a8c0@Nomad> X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 Importance: Normal In-Reply-To: <4122B7A9.6080607@theatre.msu.edu> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Virus-Scanned: clamd / ClamAV version 0.74, clamav-milter version 0.74a on grog.secure-computing.net X-Virus-Status: Clean cc: freebsd-questions@freebsd.org Subject: RE: [OT] VPN issues with some windows users... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 02:17:12 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of > Jonathan T. Sage > Sent: Tuesday, August 17, 2004 8:58 PM > To: Eric Crist > Cc: freebsd-questions@freebsd.org > Subject: Re: [OT] VPN issues with some windows users... > > > > > Eric Crist wrote: > > > > Jonathan, > > > > Thanks for the quick reply. I'm not trying to access the internet > > through this VPN, I want to access the internet through my own > > internet connection, and have only the VPN traffic try to > use the VPN > > tunnel. The SmartPass VPN connection resides just fine without > > interfering with my connection. This is what I'm hoping for. > > > > Does this make sense? > > > > absolutly. in this case, i *beleive* it should be an option > to set up > the routing table on your local machine to not change your > default route > when i connets (which i probably is doing), and only add > direct routes > to the vpn connection. i know this is possible using a *nix > vpn client, > as it is on macosx. With a bit of work, or maybe a good bit of > google, i'm sure at least xp can be coerced into this too. > > hope this helps. I've done an extreme amount of googling on this matter, and I do find one entry, in particular, but it's a pay-service to obtain the solution. I guess this isn't worth the $9.95/month for 12 months to me, so I was hoping someone would have an answer. I guess I haven't checked out the default route settings, but I'm sure that's what's going on. Kinda retarded how it's just changing things on me. Thanks again, Eric F Crist From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 02:17:33 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E61D16A4CE for ; Wed, 18 Aug 2004 02:17:33 +0000 (GMT) Received: from fed1rmmtao10.cox.net (fed1rmmtao10.cox.net [68.230.241.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46BA343D53 for ; Wed, 18 Aug 2004 02:17:33 +0000 (GMT) (envelope-from mnavarre@cox.net) Received: from reichlieu.lan ([68.6.195.68]) by fed1rmmtao10.cox.net (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709) with ESMTP id <20040818021731.IJVF7726.fed1rmmtao10.cox.net@reichlieu.lan> for ; Tue, 17 Aug 2004 22:17:31 -0400 Received: from reichlieu.lan (localhost [127.0.0.1]) by reichlieu.lan (8.12.11/8.12.11) with ESMTP id i7I2HWQ0044832 for ; Tue, 17 Aug 2004 19:17:32 -0700 (PDT) (envelope-from mnavarre@reichlieu.lan) Received: from localhost (localhost [[UNIX: localhost]]) by reichlieu.lan (8.12.11/8.12.11/Submit) id i7I2HVim044831 for freebsd-questions@freebsd.org; Tue, 17 Aug 2004 19:17:31 -0700 (PDT) (envelope-from mnavarre) From: Matt Navarre To: freebsd-questions@freebsd.org Date: Tue, 17 Aug 2004 19:17:31 -0700 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408171917.31678.mnavarre@cox.net> X-SA-Scanned: 0 () X-Scanned-By: MIMEDefang 2.41 Subject: Wireless Keyboard/Mouse recommendations? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 02:17:33 -0000 Does anyone know of a wireless keyboard/mouse combo that works well with FreeBSD (and X Windows/ Kde)? I like the feel of most of the Logitech and Microsoft combos that I've tried*, but I'm concerned that all the web, cd control and email gewgaws they're festooned with will interfere with proper operation. I'm not really concerned with having all the extra buttons work, though it'd be nice, just as long as the keyboard doesn't cause random crashy badness like the POS GE wireless board I've got now. TIA for any sugestions, Matt *Actually, what I want is a wireless version of the old IBM/Fujitsu "klickyKlacky" keyboard with a decent optical mouse. But that'll never happen. -- "We all enter this world in the same way: naked, screaming, and soaked in blood. But if you live your life right, that kind of thing doesn't have to stop there." -- Dana Gould From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 02:22:52 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1466016A4CE for ; Wed, 18 Aug 2004 02:22:52 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id D69AD43D2D for ; Wed, 18 Aug 2004 02:22:51 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 1239F69A8D; Tue, 17 Aug 2004 22:22:50 -0400 (EDT) Date: Tue, 17 Aug 2004 22:22:49 -0400 From: Bill Moran To: "Eric Crist" Message-Id: <20040817222249.18fe95ee.wmoran@potentialtech.com> In-Reply-To: <002201c484c3$d6f5d220$6501a8c0@Nomad> References: <002201c484c3$d6f5d220$6501a8c0@Nomad> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: [OT] VPN issues with some windows users... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 02:22:52 -0000 "Eric Crist" wrote: > Hello all, > > I'm sorry this is a bit off-topic, but you're the only truly > knowledgable group I know. ;) Some fellow users and I have been having > some issues connecting to a Cisco VPN system with the built-in windows > VPN software. While successfully connected to the internet (at home, > for example), I connect to the remote VPN. Instantly, my internet > connectivity seems to be lost, but I can use the VPN perfectly fine. As > soon as I disconnect, my internet connectivity is completely restored. > I have a second VPN I connect to using V-One's SmartPass software, and I > have no issues (i.e. everything works perfectly, including my 'net > connection). I think Fernando already answered well, but I just want to second this. This is definatly a config on the client. I dealt with this a few years ago and we had to spend quite a few hours researching to figure out what to change to fix it, but there was just one option hidden deep in a cascade of dialog boxes that basically told the machine that it should only use the VPN for traffic that needed the VPN. Everything worked fine after that. The default is set to "broken" (figures). Sorry I don't remember the exact config setting :( -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 02:34:43 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12BA216A4CE for ; Wed, 18 Aug 2004 02:34:43 +0000 (GMT) Received: from grog.secure-computing.net (grog.secure-computing.net [63.228.14.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C85E43D41 for ; Wed, 18 Aug 2004 02:34:42 +0000 (GMT) (envelope-from ecrist@secure-computing.net) Received: from Nomad (nat-server.secure-computing.net [63.228.14.245]) (authenticated bits=0)i7I2Y7qe013680; Tue, 17 Aug 2004 21:34:23 -0500 (CDT) (envelope-from ecrist@secure-computing.net) From: "Eric Crist" To: "'Bill Moran'" Date: Tue, 17 Aug 2004 21:27:51 -0500 Message-ID: <00fd01c484ca$fc547470$6501a8c0@Nomad> X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 Importance: Normal In-Reply-To: <20040817222249.18fe95ee.wmoran@potentialtech.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Virus-Scanned: clamd / ClamAV version 0.74, clamav-milter version 0.74a on grog.secure-computing.net X-Virus-Status: Clean cc: freebsd-questions@freebsd.org Subject: RE: [SOLVED] [OT] VPN issues with some windows users... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 02:34:43 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Bill Moran > Sent: Tuesday, August 17, 2004 9:23 PM > To: Eric Crist > Cc: freebsd-questions@freebsd.org > Subject: Re: [OT] VPN issues with some windows users... > > > "Eric Crist" wrote: > > Hello all, > > > > I'm sorry this is a bit off-topic, but you're the only truly > > knowledgable group I know. ;) Some fellow users and I have been > > having some issues connecting to a Cisco VPN system with > the built-in > > windows VPN software. While successfully connected to the internet > > (at home, for example), I connect to the remote VPN. Instantly, my > > internet connectivity seems to be lost, but I can use the VPN > > perfectly fine. As soon as I disconnect, my internet > connectivity is > > completely restored. I have a second VPN I connect to using V-One's > > SmartPass software, and I have no issues (i.e. everything works > > perfectly, including my 'net connection). > > I think Fernando already answered well, but I just want to > second this. > > This is definatly a config on the client. I dealt with this > a few years ago and we had to spend quite a few hours > researching to figure out what to change to fix it, but there > was just one option hidden deep in a cascade of dialog boxes > that basically told the machine that it should only use the > VPN for traffic that needed the VPN. Everything worked fine > after that. The default is set to "broken" (figures). > > Sorry I don't remember the exact config setting :( Ok all, After the prompting by you folks, I started poking around those deep dialogue boxes, and behold, I found it! Following this map, you'll see what I mean: 1) VPN Connection Properties Dialogue 2) Click the 'Networking' Tab 3) Click on 'Internet Protocol (TCP/IP)' and then the 'Properties' button. 4) Click on the Advanced Tab. 5) Under the 'General' Tab, there is a single check box that states: 'Use default gateway on remote network' 6) Unchecking this box allows your current internet connection to work again! Thanks for all your help! Eric F Crist From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 02:36:38 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A14616A4CE for ; Wed, 18 Aug 2004 02:36:38 +0000 (GMT) Received: from lakermmtao11.cox.net (lakermmtao11.cox.net [68.230.240.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6EF143D2F for ; Wed, 18 Aug 2004 02:36:37 +0000 (GMT) (envelope-from micheal@tsgincorporated.com) Received: from router.rcservers.com ([68.12.171.184]) by lakermmtao11.cox.net (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709) with ESMTP <20040818023637.BSNX6461.lakermmtao11.cox.net@router.rcservers.com>; Tue, 17 Aug 2004 22:36:37 -0400 Received: from dredster (dredster.rcservers.com [192.168.1.2]) by router.rcservers.com (8.13.0/8.12.9) with ESMTP id i7I2aaAM038334; Tue, 17 Aug 2004 21:36:36 -0500 (CDT) (envelope-from micheal@tsgincorporated.com) Message-ID: From: "Micheal Patterson" To: "Eric Crist" , "'Jonathan T. Sage'" References: <005901c484c5$78b443c0$6501a8c0@Nomad> Date: Tue, 17 Aug 2004 21:34:51 -0500 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="Windows-1252"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 cc: freebsd-questions@freebsd.org Subject: Re: [OT] VPN issues with some windows users... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 02:36:38 -0000 ----- Original Message ----- From: "Eric Crist" To: "'Jonathan T. Sage'" Cc: Sent: Tuesday, August 17, 2004 8:48 PM Subject: RE: [OT] VPN issues with some windows users... >> -----Original Message----- >> From: owner-freebsd-questions@freebsd.org >> [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of >> Jonathan T. Sage >> Sent: Tuesday, August 17, 2004 8:51 PM >> To: Eric Crist >> Cc: freebsd-questions@freebsd.org >> Subject: Re: [OT] VPN issues with some windows users... >> >> >> >> >> Eric Crist wrote: >> >> > Hello all, >> > >> > I'm sorry this is a bit off-topic, but you're the only truly >> > knowledgable group I know. ;) Some fellow users and I have been >> > having some issues connecting to a Cisco VPN system with >> the built-in >> > windows VPN software. While successfully connected to the internet >> > (at home, for example), I connect to the remote VPN. Instantly, my >> > internet connectivity seems to be lost, but I can use the VPN >> > perfectly fine. As soon as I disconnect, my internet >> connectivity is >> > completely restored. I have a second VPN I connect to using V-One's >> > SmartPass software, and I have no issues (i.e. everything works >> > perfectly, including my 'net connection). >> > >> > Anyone have any ideas? >> >> probably (although not definatally) is related to a >> misconfigured router >> on the cisco VPN not allowing internet traffic out. this might be >> intentional too. I run a very small vpn, and in order to keep >> connection times down (my user base is um.... well then) i have >> configured to not allow any traffic other than directly to >> the machine >> that hosts the vpn. >> >> dunno if this helps much, but might give you a starting point. > > Jonathan, > > Thanks for the quick reply. I'm not trying to access the internet > through this VPN, I want to access the internet through my own > internet > connection, and have only the VPN traffic try to use the VPN tunnel. > The SmartPass VPN connection resides just fine without interfering > with > my connection. This is what I'm hoping for. > > Does this make sense? > > Thanks, > > > > Eric F Crist > Best Access Systems > 11300 Rupp Dr. Burnsville, MN 55337 > Phone: 952.894.3830 > Cell: 612.998.3588 > Fax: 952-894-1990 > > When I was using the Cisco VPN client to connect to our router as a terminator back in the olden days, there was an option for the security policy within the client software to totally disable access to non-secure networks while the client was active. I can't see Cisco changing that as time progressed. There's also a couple of things to consider when working with the built in vpn software for Win2k and WinXP. Windows, when connected via builtin VPN, will connect with the remote network and provide a metric of 1 for that route and it will also be flagged as a default gateway (remote network of 0.0.0.0) , it becomes your best, lowest metric, route to the world by design. I would say, that one of your vpn connections is configured to allow your traffic to pass through it to the net whereas one is not. Since my remote vpn users need access to medical web sites due to the nature of thier specific jobs, I have to provide them a method of either adjusting the metric on their individual systems or configure to allow their web traffic to proceed as required. To me, it's easier for me to allow their traffic and filter it heavily than to allow remote users in other states administrative control over their network settings. -- Micheal Patterson TSG Network Administration 405-917-0600 Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 02:44:28 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55E7D16A4CE for ; Wed, 18 Aug 2004 02:44:28 +0000 (GMT) Received: from web61304.mail.yahoo.com (web61304.mail.yahoo.com [216.155.196.147]) by mx1.FreeBSD.org (Postfix) with SMTP id D483F43D31 for ; Wed, 18 Aug 2004 02:44:27 +0000 (GMT) (envelope-from stheg_olloydson@yahoo.com) Message-ID: <20040818024427.9893.qmail@web61304.mail.yahoo.com> Received: from [67.34.130.149] by web61304.mail.yahoo.com via HTTP; Tue, 17 Aug 2004 19:44:27 PDT Date: Tue, 17 Aug 2004 19:44:27 -0700 (PDT) From: stheg olloydson To: Greg.Lehey@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: questions@freebsd.org Subject: Re: What mouse? (was: Samsung Cordless Mouse) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 02:44:28 -0000 it wad said: >Can anybody recommend a good mouse? My criteria are: > >- Middle button easy to use. The current crop of mice has the middle > button integrated with the roller, and that makes the middle button > either heavy or easy to confuse with the roller. >- Preferably cordless. Cord mice tend to wander a little when you let > go of them, and that's a real nuisance on a high-resolution display. Hello, After a bit of googling, I'd say the choices are either true three-button _or_ cordless. Then there's the trackball route. I hate them, but my wife loves them. At home, I use a left-handed three-button serial testicle mouse from Logitech. At work (a Windows-only house) I use a left-handed true three-button with wheel and rocker switch USB optical mouse from Contour Design. I can live without the wheel, but I love my rocker switch because it effectively adds two buttons. So if being corded is less of a problem than the button/wheel issue, I would suggest checking out http://www.contourdesign.com/perfit-new.htm. The mouse is even available in different sizes. HTH, Stheg __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 02:44:35 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA46E16A4CE for ; Wed, 18 Aug 2004 02:44:35 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9523D43D2D for ; Wed, 18 Aug 2004 02:44:35 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from working.potentialtech.com (pa-plum-cmts1e-68-68-113-64.pittpa.adelphia.net [68.68.113.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id AFA0E69A8F; Tue, 17 Aug 2004 22:44:34 -0400 (EDT) Date: Tue, 17 Aug 2004 22:44:32 -0400 From: Bill Moran To: "Eric Crist" Message-Id: <20040817224432.5ae327a5.wmoran@potentialtech.com> In-Reply-To: <00fd01c484ca$fc547470$6501a8c0@Nomad> References: <20040817222249.18fe95ee.wmoran@potentialtech.com> <00fd01c484ca$fc547470$6501a8c0@Nomad> Organization: Potential Technologies X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: [SOLVED] [OT] VPN issues with some windows users... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 02:44:36 -0000 "Eric Crist" wrote: > > From: owner-freebsd-questions@freebsd.org > > "Eric Crist" wrote: > > > Hello all, > > > > > > I'm sorry this is a bit off-topic, but you're the only truly > > > knowledgable group I know. ;) Some fellow users and I have been > > > having some issues connecting to a Cisco VPN system with > > the built-in > > > windows VPN software. While successfully connected to the internet > > > (at home, for example), I connect to the remote VPN. Instantly, my > > > internet connectivity seems to be lost, but I can use the VPN > > > perfectly fine. As soon as I disconnect, my internet > > connectivity is > > > completely restored. I have a second VPN I connect to using V-One's > > > SmartPass software, and I have no issues (i.e. everything works > > > perfectly, including my 'net connection). > > > > I think Fernando already answered well, but I just want to > > second this. > > > > This is definatly a config on the client. I dealt with this > > a few years ago and we had to spend quite a few hours > > researching to figure out what to change to fix it, but there > > was just one option hidden deep in a cascade of dialog boxes > > that basically told the machine that it should only use the > > VPN for traffic that needed the VPN. Everything worked fine > > after that. The default is set to "broken" (figures). > > > > Sorry I don't remember the exact config setting :( > > Ok all, > > After the prompting by you folks, I started poking around those deep > dialogue boxes, and behold, I found it! > > Following this map, you'll see what I mean: > > 1) VPN Connection Properties Dialogue > 2) Click the 'Networking' Tab > 3) Click on 'Internet Protocol (TCP/IP)' and then the 'Properties' > button. > 4) Click on the Advanced Tab. > 5) Under the 'General' Tab, there is a single check box that states: > 'Use default gateway on remote network' > 6) Unchecking this box allows your current internet connection to work > again! Yup ... that's the one. Of course, me remembering now isn't much help to you ;) Glad you were able to find it. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 03:48:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02D0016A4CE for ; Wed, 18 Aug 2004 03:48:05 +0000 (GMT) Received: from mtiwmhc12.worldnet.att.net (mtiwmhc12.worldnet.att.net [204.127.131.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE03143D5D for ; Wed, 18 Aug 2004 03:48:04 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc12) with ESMTP id <2004081803480311200lbeade> (Authid: jayobrien@att.net); Wed, 18 Aug 2004 03:48:03 +0000 Message-ID: <4122D175.8060707@att.net> Date: Tue, 17 Aug 2004 20:48:05 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: keyboard history buffer setting X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 03:48:05 -0000 I can run kbdcontrol -h 500 or vidcontrol -h 500 to set the scroll back keyboard history buffer to 500 lines for the virtual terminal I'm using. How can I make that happen at boot, in the same manner as I run allscreens_flags in rc.conf to set other terminal parameters? I don't need this to set all of the virtual terminals; it would be nice if each terminal could be set separately. It doesn't work for me when placed in rc.conf, with either a direct command or attempting to use allscreens_flags. I'm using 4.10. Jay O'Brien Rio Linda, CA USA From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 04:00:25 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A59916A4CF for ; Wed, 18 Aug 2004 04:00:25 +0000 (GMT) Received: from sage.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC91B43D58 for ; Wed, 18 Aug 2004 04:00:24 +0000 (GMT) (envelope-from kline@tao.thought.org) Received: from thought.org (tao [10.0.0.247]) by sage.thought.org (8.12.10/8.12.10) with ESMTP id i7I3wLFS078105; Tue, 17 Aug 2004 20:58:57 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by thought.org (8.12.11/8.12.11) with ESMTP id i7I3wG58070793; Tue, 17 Aug 2004 20:58:16 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.12.11/8.12.11/Submit) id i7I3w4RE070778; Tue, 17 Aug 2004 20:58:04 -0700 (PDT) (envelope-from kline) Date: Tue, 17 Aug 2004 20:58:03 -0700 From: Gary Kline To: Duane Winner Message-ID: <20040818035803.GA13423@thought.org> References: <41222679.7080000@att.net> <4122351E.7040205@att.net> <20040817165757.GA88222@thought.org> <4122B61B.1050608@att.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4122B61B.1050608@att.net> X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 18 years of service to the Unix community User-Agent: Mutt/1.5.6i cc: Gary Kline cc: freebsd-questions@freebsd.org Subject: Re: xtset or xtermset tricks? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 04:00:25 -0000 On Tue, Aug 17, 2004 at 09:51:23PM -0400, Duane Winner wrote: > > > Gary Kline wrote: > > Is there a way of using xtset/xtermset to retrieve the > > -n "Name"?? > > Hm, not sure. I just started with xtset myself this morning when I > decided I was getting sick of having 10 xterm windows all over my lawn > with the name 'xterm'. I never gave descriptive labels since I'm most > often ssh'd into other boxes and am more interested in where I am. > > Maybe, depending on how you start each xterm (icon/shortcut), you could > set a variable name (XTNAME="Mail") for each one, then run: > # xtset `echo $XTNAME` Yeah, sure there is some kludgey way of resetting the xterms. Looking at the issue from a hacker's perspective I can't see many options for resetting. Unless you wantedthe names always reset at 04:30 or whatever. Oh-well. > > But now, since I hammered out that little cd() function for .bashrc, I > found another little problem: > > If I su to another user (for instance, "su - root"), the title changes > as long as the other account has my the function in .bashrc, but when I > exit, the title still has the old credentials (example: root@mybox:~) > until I cd somewhere again. Sigh. > What happns if you omit the " - " when you su? gary -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 04:14:07 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAA6D16A4CE for ; Wed, 18 Aug 2004 04:14:07 +0000 (GMT) Received: from web53906.mail.yahoo.com (web53906.mail.yahoo.com [206.190.36.216]) by mx1.FreeBSD.org (Postfix) with SMTP id 4EA2243D68 for ; Wed, 18 Aug 2004 04:14:07 +0000 (GMT) (envelope-from easyeinfo@yahoo.com) Message-ID: <20040818041406.61362.qmail@web53906.mail.yahoo.com> Received: from [202.168.70.130] by web53906.mail.yahoo.com via HTTP; Tue, 17 Aug 2004 21:14:06 PDT Date: Tue, 17 Aug 2004 21:14:06 -0700 (PDT) From: Dennis George To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: PROCFS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 04:14:07 -0000 Hi all, Can I disable PROCFS (through kernel configuration[sysctl/GENERIC] ) in freeBSD.... If yes then what will the effect of this ??? I mean to say that, do we really need the PROCFS ? If I disable it will I get any improvement in system performance in terms of speed ? Dennis --------------------------------- Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 04:16:40 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C7B016A4CE for ; Wed, 18 Aug 2004 04:16:40 +0000 (GMT) Received: from newman.alt-network.com (wsip-68-110-223-100.ks.ok.cox.net [68.110.223.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id D95C143D5A for ; Wed, 18 Aug 2004 04:16:39 +0000 (GMT) (envelope-from justin@alt-network.com) Received: from [192.168.0.14] ([192.168.0.14])i7I4GYSu012045; Tue, 17 Aug 2004 23:16:34 -0500 (CDT) (envelope-from justin@alt-network.com) From: "Justin L. Boss" Organization: Alternative Network Solutions To: freebsd-questions@freebsd.org, jacoulter@jacoulter.net Date: Tue, 17 Aug 2004 23:16:34 -0500 User-Agent: KMail/1.6.2 References: <20040816145737.GA3924@sara.mshome.net> In-Reply-To: <20040816145737.GA3924@sara.mshome.net> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408172316.34568.justin@alt-network.com> X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on newman.alt-network.com Subject: Re: Security question - uids of 0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 04:16:40 -0000 toor is a base system user. It is a default user. It is used for several reason and is secure as long as no one can access your console directly. On Monday 16 August 2004 09:57 am, James A. Coulter wrote: > The following appeared in my latest daily security run output: > > Checking for uids of 0: > root 0 > toor 0 > > This is the first time I've seen this message. > > I checked /etc/passwd and found this: > > root:*:0:0:Charlie &:/root:/bin/csh > toor:*:0:0:Bourne-again Superuser:/root: > > I am running FreeBSD 4.10 as a gateway/router/firewall with IPFW for a > small home LAN. > > I ran ps -aux and looked for any processes owned by "toor" but didn't find > any. > > Is this something to be concerned about? > > Sorry if this is an obvious question, but I am still very much a newbie > and trying to learn what I can about security. > > Thanks for your patience, > > Jim > _______________________________________________ > 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 Aug 18 04:34:52 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DBFC16A4CE for ; Wed, 18 Aug 2004 04:34:52 +0000 (GMT) Received: from mail1.computerking.ca (computerking.ca [209.115.173.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2AD743D5A for ; Wed, 18 Aug 2004 04:34:51 +0000 (GMT) (envelope-from maillist@computerking.ca) Received: from computerking.ca (v22001.computerking.ca [192.168.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail1.computerking.ca (Postfix) with ESMTP id 39581268 for ; Tue, 17 Aug 2004 22:34:50 -0600 (MDT) Message-ID: <4122DC73.5060105@computerking.ca> Date: Tue, 17 Aug 2004 22:34:59 -0600 From: RYAN vAN GINNEKEN User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040113 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: sasl plain login ath failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 04:34:52 -0000 I am using postfix version 2.0.0.18 with tls and sasl2 on freebsd stable 4.9 using cyrus-sasl/saslauthd version 2.1.1.19 have configured the my /user/local/lib/sasl2 dir to contain only Sendmail.conf liblogin.so libplain.a libplain.so.2 liblogin.a liblogin.so.2 libplain.so smptd.conf and my smtpd.conf file has this configuration # This sets smtpd to authenticate using the saslauthd daemon. pwcheck_method:saslauthd # This allows only plain and login as the authentication mechanisms. mech_list: plain login Seems simple enough however when i try to logon to my SMTP server i get the following errors. Aug 17 17:07:07 v22 postfix/smtpd[2643]: warning: unknown[209.115.173.22]: SASL PLAIN authentication failed Aug 17 17:07:08 v22 postfix/smtpd[2643]: warning: unknown[209.115.173.22]: SASL LOGIN authentication failed when i test the server with telnet i get this EHLO computerking.ca 250-mail1.computerking.ca 250-PIPELINING 250-SIZE 10240000 250-VRFY 250-ETRN 250-STARTTLS 250-XVERP 250 8BITMIME there is know output about this must be my problem 250-AUTH LOGIN PLAIN OTP DIGEST-MD5 CRAM-MD5 250-AUTH=LOGIN PLAIN OTP DIGEST-MD5 CRAM-MD5 Is there a log i can check for sasl errors somewhere or do i need to change my permissions on the passwd file any help would be appreciated. Here is a posconf -n output if that helps anyone help me thank you in advance. v22.computerking.ca > /usr/local/lib/sasl2 $postconf -n alias_database = hash:/etc/aliases alias_maps = hash:/etc/aliases broken_sasl_auth_clients = yes command_directory = /usr/local/sbin config_directory = /usr/local/etc/postfix daemon_directory = /usr/local/libexec/postfix debug_peer_level = 2 home_mailbox = IMAPdir/INBOX/ inet_interfaces = all mail_owner = postfix mailq_path = /usr/local/bin/mailq manpage_directory = /usr/local/man mydestination = $myhostname, localhost.$mydomain $mydomain mydomain = computerking.ca myhostname = mail1.computerking.ca mynetworks_style = subnet myorigin = $mydomain newaliases_path = /usr/local/bin/newaliases queue_directory = /var/spool/postfix readme_directory = no relay_domains = $mydestination, shoemasters.computerking.ca, highcoup.ca sample_directory = /usr/local/etc/postfix sendmail_path = /usr/local/sbin/sendmail setgid_group = maildrop smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd smtp_tls_loglevel = 2 smtp_tls_note_starttls_offer = yes smtp_use_tls = yes smtpd_recipient_restrictions = permit_mx_backup permit_sasl_authenticated, permit_mynetworks, reject_unauth_destination smtpd_sasl_auth_enable = yes smtpd_sasl_local_domain = smtpd_sasl_security_options = noanonymous smtpd_sender_restrictions = permit_mx_backup permit_sasl_authenticated, permit_mynetworks, reject_unauth_destination smtpd_tls_CAfile = /usr/local/sslcerts/cacert.pem smtpd_tls_auth_only = yes smtpd_tls_cert_file = /usr/local/sslcerts/certs/mail-cert.pem smtpd_tls_key_file = /usr/local/sslcerts/certs/mail-key.pem smtpd_tls_loglevel = 2 smtpd_tls_received_header = yes smtpd_tls_session_cache_timeout = 3600s smtpd_use_tls = yes soft_bounce = no tls_random_source = dev:/dev/urandom unknown_local_recipient_reject_code = 450 virtual_alias_domains = sculpturaldesign.ca virtual_alias_maps = hash:/usr/local/etc/postfix/virtual From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 05:04:44 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C74BA16A576 for ; Wed, 18 Aug 2004 05:04:43 +0000 (GMT) Received: from ms-smtp-02-eri0.ohiordc.rr.com (ms-smtp-02-smtplb.ohiordc.rr.com [65.24.5.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA6F043D48 for ; Wed, 18 Aug 2004 05:04:42 +0000 (GMT) (envelope-from dmehler26@woh.rr.com) Received: from satellite (dhcp065-031-041-029.woh.rr.com [65.31.41.29]) i7I54ena017766 for ; Wed, 18 Aug 2004 01:04:40 -0400 (EDT) Message-ID: <000501c484df$71bafdb0$0200a8c0@satellite> From: "dave" To: Date: Wed, 18 Aug 2004 00:54:28 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: Via VT6202 USB2 controller, FreeBSD5? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 05:04:44 -0000 Hello, Has anyone got the above controller working with FreeBSD5.x? A dmesg output does not show this controller, yet using pciconf with the -v and -l options here is what my usb controllers look like, the 1.1 controllers show up fine and are usable the 6202 does not appear to have a driver assigned. I'm hoping all that is required is a line in device.hints or a kernel recompilation. Any help appreciated. Thanks. Dave. agp0@pci0:0:0: class=0x060000 card=0x1403147b chip=0x30991106 rev=0x00 hdr=0x00 vendor = 'VIA Technologies Inc' device = 'VT8366/A,VT8367 Apollo KT266/A,KT333 CPU to PCI Bridge' class = bridge subclass = HOST-PCI pcib1@pci0:1:0: class=0x060400 card=0x00000080 chip=0xb0991106 rev=0x00 hdr=0x01 vendor = 'VIA Technologies Inc' device = 'VT8366/A,VT8367 Apollo KT266/A,KT333 PCI to AGP Bridge' class = bridge subclass = PCI-PCI rl0@pci0:8:0: class=0x020000 card=0x813910ec chip=0x813910ec rev=0x10 hdr=0x00 vendor = 'Realtek Semiconductor' device = 'RT8139 (A/B/C/813x/C+) Fast Ethernet Adapter' class = network subclass = ethernet pcm0@pci0:9:0: class=0x040100 card=0x80641102 chip=0x00021102 rev=0x07 hdr=0x00 vendor = 'Creative Labs' device = 'EMU10K1 Audio Chipset (SB Live!)' class = multimedia subclass = audio emujoy0@pci0:9:1: class=0x098000 card=0x00201102 chip=0x70021102 rev=0x07 hdr=0x00 vendor = 'Creative Labs' device = 'EMU10000 Game Port' class = input device atapci0@pci0:10:0: class=0x018085 card=0x4d68105a chip=0x4d68105a rev=0x02 hdr=0x00 vendor = 'Promise Technology Inc' device = 'PDC20268 Ultra100 TX2 EIDE Controller' class = mass storage uhci0@pci0:16:0: class=0x0c0300 card=0x1403147b chip=0x30381106 rev=0x80 hdr=0x00 vendor = 'VIA Technologies Inc' device = 'VT82xxxxx UHCI USB 1.1 Controller (All VIA Chipsets)' class = serial bus subclass = USB uhci1@pci0:16:1: class=0x0c0300 card=0x1403147b chip=0x30381106 rev=0x80 hdr=0x00 vendor = 'VIA Technologies Inc' device = 'VT82xxxxx UHCI USB 1.1 Controller (All VIA Chipsets)' class = serial bus subclass = USB uhci2@pci0:16:2: class=0x0c0300 card=0x1403147b chip=0x30381106 rev=0x80 hdr=0x00 vendor = 'VIA Technologies Inc' device = 'VT82xxxxx UHCI USB 1.1 Controller (All VIA Chipsets)' class = serial bus subclass = USB none0@pci0:16:3: class=0x0c0320 card=0x1403147b chip=0x31041106 rev=0x82 hdr=0x00 vendor = 'VIA Technologies Inc' device = 'VT6202 USB 2.0 Enhanced Host Controller' class = serial bus subclass = USB isab0@pci0:17:0: class=0x060100 card=0x31771106 chip=0x31771106 rev=0x00 hdr=0x00 vendor = 'VIA Technologies Inc' device = 'VT8235 PCI to ISA Bridge' class = bridge subclass = PCI-ISA atapci1@pci0:17:1: class=0x01018a card=0x1403147b chip=0x05711106 rev=0x06 hdr=0x00 vendor = 'VIA Technologies Inc' device = 'VT82xxxx EIDE Controller (All VIA Chipsets)' class = mass storage subclass = ATA none1@pci1:0:0: class=0x030000 card=0x003a1002 chip=0x51591002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies' device = 'RV100 Radeon 7000 / Radeon VE' class = display subclass = VGA From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 05:08:52 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7119A16A4CE for ; Wed, 18 Aug 2004 05:08:52 +0000 (GMT) Received: from ylpvm15.prodigy.net (ylpvm15-ext.prodigy.net [207.115.57.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BA6A43D31 for ; Wed, 18 Aug 2004 05:08:52 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i7I58rEU010068; Wed, 18 Aug 2004 01:08:53 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 4A3D4513CF; Tue, 17 Aug 2004 22:08:50 -0700 (PDT) Date: Tue, 17 Aug 2004 22:08:50 -0700 From: Kris Kennaway To: Dennis George Message-ID: <20040818050850.GA435@xor.obsecurity.org> References: <20040818041406.61362.qmail@web53906.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UugvWAfsgieZRqgk" Content-Disposition: inline In-Reply-To: <20040818041406.61362.qmail@web53906.mail.yahoo.com> User-Agent: Mutt/1.4.2.1i cc: questions@freebsd.org Subject: Re: PROCFS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 05:08:52 -0000 --UugvWAfsgieZRqgk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 17, 2004 at 09:14:06PM -0700, Dennis George wrote: > Hi all, > =20 > Can I disable PROCFS (through kernel configuration[sysctl/GENERIC] ) in f= reeBSD.... Yes. It's clear from the GENERIC config how to do this (remove the entry)). > If yes then what will the effect of this ??? > =20 > I mean to say that, do we really need the PROCFS ? No, unless you run the one or two applications that require it. > If I disable it will I get any improvement in system performance in term= s of speed ? No. It is better for security on a multi-user system though since procfs has had a lot of security vulnerabilities over time, so there may be more. Kris --UugvWAfsgieZRqgk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBIuRhWry0BWjoQKURAm6TAJ0eivkk7StHVFzHrRVGSreTEZx6twCfbbZT LpXMEIFT36ekKNnD3kKKFnM= =bGd/ -----END PGP SIGNATURE----- --UugvWAfsgieZRqgk-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 05:36:43 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD32E16A4CE for ; Wed, 18 Aug 2004 05:36:43 +0000 (GMT) Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54B8243D1D for ; Wed, 18 Aug 2004 05:36:43 +0000 (GMT) (envelope-from mi@aldan.algebra.com) Received: from aldan.algebra.com (mi@localhost [127.0.0.1]) by aldan.algebra.com (8.12.11/8.12.11) with ESMTP id i7I5abS1063407 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 18 Aug 2004 01:36:41 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Received: from localhost (localhost [[UNIX: localhost]]) by aldan.algebra.com (8.12.11/8.12.11/Submit) id i7I5aTJ2063406; Wed, 18 Aug 2004 01:36:29 -0400 (EDT) (envelope-from mi) From: Mikhail Teterin To: Bill Moran Date: Wed, 18 Aug 2004 01:36:28 -0400 User-Agent: KMail/1.6.2 References: <200408170835.45402@aldan> <4122370A.1010102@aldan.algebra.com> <20040817192908.228cca04.wmoran@potentialtech.com> In-Reply-To: <20040817192908.228cca04.wmoran@potentialtech.com> X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7whJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" cc: nkinkade@ub.edu.bz cc: questions@FreeBSD.org Subject: Re: web-serving does not update a file's atime? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 05:36:43 -0000 On Tuesday 17 August 2004 07:29 pm, you wrote: = Mikhail Teterin wrote: = > Nathan Kinkade wrote: = > = > >On Tue, Aug 17, 2004 at 08:35:45AM -0400, Mikhail Teterin wrote: = > > = > >>Hello! = > >> = > >>I tried to use stat(1) to see the last time a file was downloaded = > >>through Apache. = > >> = > >>To my surprise, all three dates displayed by stat are long ago, = > >>even though the web-server's log is showing downloads from a just = > >>a few hours back. = > >> = > >>The file-system used to be mounted noatime, but I turned that = > >>option off some time ago. If I read one of those files (with = > >>head(1) or file(1), for example), the atime is updated. But if = > >>Apache serves it out -- it is not... There is no caching in Apache = > >>either. = > > = > >Is this all running on your local machine? If not, is it possible = > >that there is a proxy server between you and the host running = > >Apache? Perhaps a transparent proxy? = > > = > > = > There are not other servers and no proxies. The locally running = > apache logs successful requests for the files, but their atimes are = > not updated. = > = > Just checked -- the file was last downloaded 13 minutes ago, but all = > of the three time-stamps (according to stat(1)) point to many hours = > back... = = My guess on this would be that Apache is caching the file and has only = actually loaded it from disk once. = = Try stop/starting Apache and see if it has to reload the file to see = if my guess is correct. Apache is restarted regularly here by newsyslog... -mi From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 06:01:35 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0577916A4CE for ; Wed, 18 Aug 2004 06:01:35 +0000 (GMT) Received: from omail3.walla.co.il (omail3.walla.co.il [192.118.71.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7CFF43D39 for ; Wed, 18 Aug 2004 06:01:33 +0000 (GMT) (envelope-from hlddn@walla.com) Date: Wed, 18 Aug 2004 08:56:43 +0300 Received: from ([211.100.12.114]) by omail3.walla.co.il ([192.118.71.125]) with HTTP; Wed, 18 Aug 2004 08:56:41 +0300 From: =?utf-8?Q?=73=74=61=72=72=79=20=68=75=61=6E=67?= X-Sender: hlddn@walla.com X-Originating-Email: [hlddn@walla.com] X-Originating-IP: [211.100.12.114] To: Message-Id: <1092808601.698000-38413603-5828@walla.com> Content-Type: multipart/mixed; boundary="------=_EREZ_P_WallaMail_64158_3031_P_0" X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: install jabberd error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 06:01:35 -0000 --------=_EREZ_P_WallaMail_64158_3031_P_0 Content-Transfer-Encoding: base64 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" DQo8Qk9EWSBvbmNvbnRleHRtZW51PSJyZXR1cm4gZmFsc2UiIGRpcj1sdHIg c3R5bGU9Ik9WRVJGTE9XLVk6IHNjcm9sbCIgbGVmdE1hcmdpbj0wIHRvcE1h cmdpbj0wIHJpZ2h0TWFyZ2luPTA+PERJViBpZD13cnRlcGxhY2Vob2xkZXIg c3R5bGU9IkZPTlQtRkFNSUxZOiBBcmlhbCIgbmFtZT0id3J0ZXBsYWNlaG9s ZGVyIj4NCjxESVY+PEJSPjxCUj5teSBmcmVlYnNkIGluc3RhbGxlZCBvcGVu c3NsIDAuOS43ZCA8QlI+bm93IGluc3RhbGxpbmcgamFiYmVyZCAyLjAuMiA6 IDxCUj5jZCAvdXNyL3BvcnRzL25ldC9qYWJiZHJkLyA8QlI+bWFrZSAtRFdJ VEhPVVRfREVCVUcgLURXSVRIX01ZU1FMIGluc3RhbGwgPEJSPi4uLi4uIDxC Uj5jaGVja2luZyBmb3IgT3BlblNTTCBpbiAvdXNyL2xvY2FsLi4uIG5vIDxC Uj5jb25maWd1cmU6IGVycm9yOiBDb3VsZCBub3QgZmluZCBPcGVuU1NMIDAu OS42LjIgKG9yIGhpZ2hlcikgPEJSPj09PSZndDsmbmJzcDsmbmJzcDtTY3Jp cHQgImNvbmZpZ3VyZSIgZmFpbGVkIHVuZXhwZWN0ZWRseS4gPEJSPlBsZWFz ZSByZXBvcnQgdGhlIHByb2JsZW0gdG8gPEEgaHJlZj0iaHR0cDovL21haWwu d2FsbGEuY29tL3RzLmNnaT90c3NjcmlwdD1jb21wb3NlJmFtcDt0bz1kZW1v bkBGcmVlQlNELm9yZyI+ZGVtb25ARnJlZUJTRC5vcmc8L0E+IFttYWludGFp bmVyXSBhbmQgYXR0YWNoIHRoZSA8QlI+Ii91c3IvcG9ydHMvbmV0L2phYmJl cmQvd29yay9qYWJiZXJkLTIuMHMyL2NvbmZpZy5sb2ciIGluY2x1ZGluZyB0 aGUgb3V0cHV0IDxCUj5vZiB0aGUgZmFpbHVyZSBvZiB5b3VyIG1ha2UgY29t bWFuZC4gQWxzbywgaXQgbWlnaHQgYmUgYSBnb29kIGlkZWEgdG8gcHJvdmlk ZSA8QlI+YW4gb3ZlcnZpZXcgb2YgYWxsIHBhY2thZ2VzIGluc3RhbGxlZCBv biB5b3VyIHN5c3RlbSAoZS5nLiBhbiBgbHMgPEJSPi92YXIvZGIvcGtnYCku IDxCUj4qKiogRXJyb3IgY29kZSAxIDxCUj48QlI+c28gSSB0cnkgZWRpdCBN YWtlZmlsZTogPEJSPkNPTkZJR1VSRV9BUkdTPSAtLWxvY2Fsc3RhdGVkaXI9 L3ZhciBcIDxCUj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJz cDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm bmJzcDsmbmJzcDsmbmJzcDstLXdpdGgtbGliaWNvbnYtcHJlZml4PSR7TE9D QUxCQVNFfSBcIDxCUj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJz cDsmbmJzcDsmbmJzcDsmbmJzcDstLXdpdGgtb3BlbnNzbCBcIDxCUj4mbmJz cDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJz cDstLWVuYWJsZS1zdG9yYWdlPScke1NUT1JBR0V9JyBcIDxCUj4mbmJzcDsm bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJz cDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDst LWVuYWJsZS1hdXRocmVnPScke0FVVEhSRUd9JyA8QlI+QnV0IDogPEJSPi4u Li4gPEJSPmNoZWNraW5nIGZvciBPcGVuU1NMIGluIC91c3IvbG9jYWwvb3Bl bnNzbC4uLiBubyA8QlI+Y2hlY2tpbmcgZm9yIE9wZW5TU0wgaW4gL3Vzci9s b2NhbC9zc2wuLi4gbm8gPEJSPmNoZWNraW5nIGZvciBPcGVuU1NMIGluIC9z dy4uLiBubyA8QlI+Y29uZmlndXJlOiBlcnJvcjogQ291bGQgbm90IGZpbmQg T3BlblNTTCAwLjkuNi4yIChvciBoaWdoZXIpIDxCUj49PT0mZ3Q7Jm5ic3A7 Jm5ic3A7U2NyaXB0ICJjb25maWd1cmUiIGZhaWxlZCB1bmV4cGVjdGVkbHku IDxCUj5QbGVhc2UgcmVwb3J0IHRoZSBwcm9ibGVtIHRvIDxBIGhyZWY9Imh0 dHA6Ly9tYWlsLndhbGxhLmNvbS90cy5jZ2k/dHNzY3JpcHQ9Y29tcG9zZSZh bXA7dG89ZGVtb25ARnJlZUJTRC5vcmciPmRlbW9uQEZyZWVCU0Qub3JnPC9B PiBbbWFpbnRhaW5lcl0gYW5kIGF0dGFjaCB0aGUgPEJSPiIvdXNyL3BvcnRz L25ldC9qYWJiZXJkL3dvcmsvamFiYmVyZC0yLjBzMi9jb25maWcubG9nIiBp bmNsdWRpbmcgdGhlIG91dHB1dCA8QlI+b2YgdGhlIGZhaWx1cmUgb2YgeW91 ciBtYWtlIGNvbW1hbmQuIEFsc28sIGl0IG1pZ2h0IGJlIGEgZ29vZCBpZGVh IHRvIHByb3ZpZGUgPEJSPmFuIG92ZXJ2aWV3IG9mIGFsbCBwYWNrYWdlcyBp bnN0YWxsZWQgb24geW91ciBzeXN0ZW0gKGUuZy4gYW4gYGxzIDxCUj4vdmFy L2RiL3BrZ2ApLiA8QlI+KioqIEVycm9yIGNvZGUgMSA8QlI+PEJSPndoYXQg Y2FuIGkgZG8/Pz8gPEJSPnRoYW5rcyEhISA8QlI+PEJSPjxCUj48L0RJVj48 L0RJVj48L0JPRFk+PGhyPjxkaXYgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6 d2hpdGU7Y29sb3I6YmxhY2s7Ij5XYWxsYSEgTWFpbCAtIDxhIGhyZWY9Imh0 dHA6Ly93d3cud2FsbGEuY29tIiBzdHlsZT0iY29sb3I6Ymx1ZSI+Z2V0IHlv dXIgZnJlZSAxRyBtYWlsIHRvZGF5PC9hPjwvZGl2PgA= --------=_EREZ_P_WallaMail_64158_3031_P_0-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 06:35:00 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBF6416A4CE for ; Wed, 18 Aug 2004 06:35:00 +0000 (GMT) Received: from hotmail.com (bay17-f11.bay17.hotmail.com [64.4.43.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id D83C343D1D for ; Wed, 18 Aug 2004 06:35:00 +0000 (GMT) (envelope-from davarsky@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 17 Aug 2004 23:35:00 -0700 Received: from 80.72.65.162 by by17fd.bay17.hotmail.msn.com with HTTP; Wed, 18 Aug 2004 06:35:00 GMT X-Originating-IP: [80.72.65.162] X-Originating-Email: [davarsky@hotmail.com] X-Sender: davarsky@hotmail.com From: "Atanas Davarsky" To: questions@FreeBSD.org Date: Wed, 18 Aug 2004 09:35:00 +0300 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 18 Aug 2004 06:35:00.0576 (UTC) FILETIME=[7C996600:01C484ED] Subject: VPN over IPSEC X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 06:35:01 -0000 Hi, i am Bulgaria from. I use FreeBsd about 2 years, and i am very impressed. After read in detail "VPN over IPSEC" from handbook, I can't find a solution how to run VPN server if the remote clients are with dynamic ip adresses. Thank you _________________________________________________________________ Help STOP SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 07:01:56 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 392D416A4CE for ; Wed, 18 Aug 2004 07:01:56 +0000 (GMT) Received: from mtiwmhc12.worldnet.att.net (mtiwmhc12.worldnet.att.net [204.127.131.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id B650943D3F for ; Wed, 18 Aug 2004 07:01:55 +0000 (GMT) (envelope-from jayobrien@worldnet.att.net) Received: from [192.168.1.6] (dsl093-180-184.sac1.dsl.speakeasy.net[66.93.180.184]) by worldnet.att.net (mtiwmhc12) with ESMTP id <2004081807015411200lb3p6e> (Authid: jayobrien@att.net); Wed, 18 Aug 2004 07:01:55 +0000 Message-ID: <4122FEE1.8040000@att.net> Date: Wed, 18 Aug 2004 00:01:53 -0700 From: Jay O'Brien User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD - questions References: <4122D175.8060707@att.net> In-Reply-To: <4122D175.8060707@att.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: scrollback history buffer setting (was keyboard) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 07:01:56 -0000 Jay O'Brien wrote: > I can run kbdcontrol -h 500 or vidcontrol -h 500 to set the > scroll back keyboard history buffer to 500 lines for the > virtual terminal I'm using. How can I make that happen at > boot, in the same manner as I run allscreens_flags in > rc.conf to set other terminal parameters? I don't need > this to set all of the virtual terminals; it would be > nice if each terminal could be set separately. > > It doesn't work for me when placed in rc.conf, with either > a direct command or attempting to use allscreens_flags. > > I'm using 4.10. > > Jay O'Brien > Rio Linda, CA USA Follow-up: Re-reading the above could be interpreted that I want to be able to review more keyboard lines; not so. I should not have used the word "keyboard". I'm looking for redisplay of the screen lines. Both kbdcontrol and vidcontrol perform that function. I've built a workaround by adding this to root and user .cshrc: alias bu vidcontrol -h (with a space following). This allows me to type 'bu 500' to set the buffer to 500 lines. In addition, I would like to be able to set it during boot. Is that possible? Jay From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 07:05:44 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88DE616A50D for ; Wed, 18 Aug 2004 07:05:44 +0000 (GMT) Received: from dsl-mail.kamp.net (mail.kamp-dsl.de [195.62.99.42]) by mx1.FreeBSD.org (Postfix) with SMTP id AA47043D58 for ; Wed, 18 Aug 2004 07:05:43 +0000 (GMT) (envelope-from root@pukruppa.de) Received: (qmail 5360 invoked by uid 513); 18 Aug 2004 07:08:53 -0000 Received: from root@pukruppa.de by dsl-mail by uid 89 with qmail-scanner-1.21 Clear:RC:1(213.146.114.24):SA:0(-4.9/5.0):. Processed in 0.445766 secs); 18 Aug 2004 07:08:53 -0000 X-Spam-Status: No, hits=-4.9 required=5.0 Received: from unknown (HELO reverse-213-146-114-24.dialin.kamp-dsl.de) (213.146.114.24) by dsl-mail.kamp.net with SMTP; 18 Aug 2004 07:08:53 -0000 Date: Wed, 18 Aug 2004 09:05:45 +0200 (CEST) From: Peter Ulrich Kruppa X-X-Sender: root@pukruppa.net To: Benjamin Sobotta In-Reply-To: <200408171847.55732.mayday@gmx.net> Message-ID: <20040818082131.I780@pukruppa.net> References: <20040817094732.X820@pukruppa.net> <200408171847.55732.mayday@gmx.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: freebsd-questions@freebsd.org Subject: Re: SATA drive bootable ??? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 07:05:44 -0000 On Tue, 17 Aug 2004, Benjamin Sobotta wrote: > Hi > > I don't know about the controller but in general this should work. Just make > proper adjustments in your BIOS. I'm booting FreeBSD from an SATA RAID0. > Works perfectly fine. My BIOS doesn't show any boot options for SATA, neither does the controller. I can install FreeBSD from CD on the SATA drive, but the boot manager seems to lead nowhere. I guess my mainboard is too old for that. But that doesn't really matter: I am going to divide the disk up and mount it on my old system. Thanks, Uli. > On Tuesday 17 August 2004 07:53, Peter Ulrich Kruppa wrote: >> Hi! >> >> I just started playing around with my new SATA disk (with SATA >> 150 TX2plus controller on -CURRENT). I can mount and format it >> all-right. >> >> Is it generally posssible to boot from such a disk (different >> question would be if it made sense to do so)? >> My SATA drive is recognized as ata2-master. +---------------------------+ | Peter Ulrich Kruppa | | Wuppertal | | Germany | +---------------------------+ From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 07:07:28 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5506E16A4CE for ; Wed, 18 Aug 2004 07:07:28 +0000 (GMT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 7F47543D31 for ; Wed, 18 Aug 2004 07:07:27 +0000 (GMT) (envelope-from raphael-langerhorst@gmx.at) Received: (qmail 7952 invoked by uid 65534); 18 Aug 2004 07:07:23 -0000 Received: from unknown (EHLO [192.168.207.3]) (213.162.66.71) by mail.gmx.net (mp023) with SMTP; 18 Aug 2004 09:07:23 +0200 X-Authenticated: #5766884 From: Raphael Langerhorst To: epilogue Date: Wed, 18 Aug 2004 09:05:16 +0200 User-Agent: KMail/1.7 References: <20040817220426.299be9c9@localhost> In-Reply-To: <20040817220426.299be9c9@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200408180905.16102.raphael-langerhorst@gmx.at> cc: eaja@erols.com cc: freebsd-questions@freebsd.org Subject: Re: Driver for Yopy PDA X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 07:07:28 -0000 Hi, I'm also still very interested in this driver, so far I haven't received any response. I hope someone takes care that it is included in FreeBSD 5. Raphael PS: I'm not registered to the freebsd-questions list, please cc me on reply. On Wednesday 18 August 2004 04:04, you wrote: > hello all, > > i recently received a yopy 3500 pda (yopy.com and yopydeveloper.org) and > have been trying very much in vain to get it to speak 'ethernet over usb' > with my fbsd 4.10 install. > > the only promising *bsd related threads i have been able to locate were: > > http://lists.freebsd.org/mailman/htdig/freebsd-hardware/2004-June/001703.ht >ml > http://lists.freebsd.org/mailman/htdig/freebsd-hardware/2003-August/000429. >html > > i am hoping to learn whether: > > a) the 5.x driver mentioned in these messages is on its way into > the source tree (i did not come across any if_saue entries in > cvsweb.cgi/src/sys/dev/usb) ? > > b) i can help test a version designed for 4.x ? my yopy awaits your > command =] > > hopefully someone will get back to me regarding these questions. in the > meantime, linux already has driver support for the yopy, so i'm going to > give knoppix a try. > > > thanks for reading, > epi > > > p.s. comms/birda appears to be another option for connecting to the > machine, but i haven't yet made any headway with that tool set. -- G System, the evolving universe - http://www.g-system.at From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 07:23:11 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BED416A4CE for ; Wed, 18 Aug 2004 07:23:11 +0000 (GMT) Received: from lupus.url.com.tw (lupus.url.com.tw [210.59.228.24]) by mx1.FreeBSD.org (Postfix) with SMTP id 8F93C43D41 for ; Wed, 18 Aug 2004 07:23:08 +0000 (GMT) (envelope-from aetch@ms12.url.com.tw) Received: (qmail 18726 invoked from network); 18 Aug 2004 07:18:14 -0000 Received: from unknown (HELO ala.url.com.tw) ([210.59.228.50]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 18 Aug 2004 07:18:14 -0000 Received: (qmail 23006 invoked from network); 18 Aug 2004 15:13:47 +0800 Received: from unknown (HELO ms12.url.com.tw) ([210.59.228.105]) (envelope-sender ) by ms12.url.com.tw (qmail-ldap-1.03) with SMTP for ; 18 Aug 2004 15:13:47 +0800 Message-ID: <67292004831871953343@ms12.url.com.tw> X-EM-Version: 5, 0, 0, 21 X-EM-Registration: #01305001105800006300 X-Priority: 3 From: "AETCH" To: freebsd-questions@freebsd.org Date: Wed, 18 Aug 2004 15:19:53 +0800 Subject: Have Config freebsd as getway problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 07:23:11 -0000 I have install freebsd 4.x,and have two netcards. I want it as getway. I have config "gateway_enable=YES" in rc.conf,and then reboot. [a pc]--------[freebsd]-------[b pc] After reboot , I try to use a pc to ping b pc ,it`s not work ,but a pc and b pc can ping freebsd successful,why? Please give me a hand. Thanks!! LILY -- -- ¦Û¤v°µµo«H¾÷¥D¤H¡A¦Û¤v¨M©w¹q¤l¶l¥ó¦a§} http://mymailer.url.com.tw From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 07:30:38 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA3E616A4CE for ; Wed, 18 Aug 2004 07:30:38 +0000 (GMT) Received: from lupus.url.com.tw (lupus.url.com.tw [210.59.228.24]) by mx1.FreeBSD.org (Postfix) with SMTP id 6FCE643D1F for ; Wed, 18 Aug 2004 07:30:38 +0000 (GMT) (envelope-from aetch@ms12.url.com.tw) Received: (qmail 23276 invoked from network); 18 Aug 2004 07:25:58 -0000 Received: from unknown (HELO ala.url.com.tw) ([210.59.228.50]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 18 Aug 2004 07:25:58 -0000 Received: (qmail 19348 invoked from network); 18 Aug 2004 15:30:26 +0800 Received: from unknown (HELO ms12.url.com.tw) ([210.59.228.105]) (envelope-sender ) by ms12.url.com.tw (qmail-ldap-1.03) with SMTP for ; 18 Aug 2004 15:30:26 +0800 Message-ID: <200372004831873631906@ms12.url.com.tw> X-EM-Version: 5, 0, 0, 21 X-EM-Registration: #01305001105800006300 X-Priority: 3 From: "AETCH" To: freebsd-questions@freebsd.org Date: Wed, 18 Aug 2004 15:36:31 +0800 Subject: problem with getway X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 07:30:39 -0000 I have install freebsd 4.x,and have two netcards. I want it as getway. I have config "gateway_enable=YES" in rc.conf,and then reboot. [a pc]--------[freebsd]-------[b pc] After reboot , I try to use a pc to ping b pc ,it`s not work ,but a pc and b pc can ping freebsd successful,why? Please give me a hand. Thanks!! aetch -- -- ¥xÆW³Ìª«¶W©Ò­Èªº¤j²³¤ÆµêÀÀ¶l¥ó¥D¾÷ http://mymailer.url.com.tw From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 08:40:48 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4656616A4CE for ; Wed, 18 Aug 2004 08:40:48 +0000 (GMT) Received: from web40106.mail.yahoo.com (web40106.mail.yahoo.com [66.218.78.40]) by mx1.FreeBSD.org (Postfix) with SMTP id 1E64943D2D for ; Wed, 18 Aug 2004 08:40:48 +0000 (GMT) (envelope-from dino_vliet@yahoo.com) Message-ID: <20040818084048.42957.qmail@web40106.mail.yahoo.com> Received: from [130.37.20.20] by web40106.mail.yahoo.com via HTTP; Wed, 18 Aug 2004 01:40:48 PDT Date: Wed, 18 Aug 2004 01:40:48 -0700 (PDT) From: Dino Vliet To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: freebsd compatible routers X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 08:40:48 -0000 Hi there, I'm a network novice and want to establish this: @home we have a cable internet connection and I want to attach a router to it to be able to share the internet connection of 1 standalone winxp pc and a laptop running freebsd 4.10 The cable connection uses dhcp to assign me a ip-address. I also would like a switch to be able to set up a lan between the pc's at home. Personally I would favour a netgear solution but some of the don't allow port forwarding and even though I don't know at the moment if I will need this, I do want a product which is capable of doing that:-) What are the best freebsd compatible routers? Will te fact that I use freebsd on my laptop be a serious constraint? Brgds __________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 08:46:09 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7362016A4CE for ; Wed, 18 Aug 2004 08:46:09 +0000 (GMT) Received: from ray.idi.ntnu.no (ray.idi.ntnu.no [129.241.107.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95E3C43D1F for ; Wed, 18 Aug 2004 08:46:08 +0000 (GMT) (envelope-from Jan.Christian.Meyer@idi.ntnu.no) Received: from uranus.idi.ntnu.no (uranus.idi.ntnu.no [129.241.110.11]) by ray.idi.ntnu.no (8.12.10/8.12.10) with ESMTP id i7I8k12x006663; Wed, 18 Aug 2004 10:46:01 +0200 (MEST) Date: Wed, 18 Aug 2004 10:46:01 +0200 (MEST) From: Jan Christian Meyer To: "Jay O'Brien" In-Reply-To: <4122D175.8060707@att.net> Message-ID: References: <4122D175.8060707@att.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Spam-Status: No, hits=-1 required=1 X-Virus-Scanned: by amavisd-new-IDI cc: FreeBSD - questions Subject: Re: keyboard history buffer setting X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 08:46:09 -0000 > It doesn't work for me when placed in rc.conf, with either > a direct command or attempting to use allscreens_flags. I run 5.2.1 myself, but if anything I write is incorrect for 4.10 someone will surely correct me shortly. It looks to me like you've been putting your parameter in the wrong string; as far as I understand, allscreens_flags is sent to vidcontrol, while allscreens_kbdflags goes to kbdcontrol. Putting plain commands into rc.conf is unlikely ever to accomplish much. Peek in /etc/defaults/rc.conf for a lot of interesting stuff which will work, though. If you still need to do shell stuff on startup, slapping together a script and putting it in rc.d is the way to go. The man pages of rc explain the works, and include a template script which you can copy and fill in. Cheers, -Jan Christian From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 08:51:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D27316A4CE for ; Wed, 18 Aug 2004 08:51:42 +0000 (GMT) Received: from pursued-with.net (adsl-66-125-9-244.dsl.sndg02.pacbell.net [66.125.9.244]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC10143D39 for ; Wed, 18 Aug 2004 08:51:41 +0000 (GMT) (envelope-from freebsd@pursued-with.net) Received: from [10.0.1.101] (unknown [10.0.1.101]) by pursued-with.net (Postfix) with ESMTP id C2185233ED8; Wed, 18 Aug 2004 01:52:04 -0700 (PDT) In-Reply-To: <20040818084048.42957.qmail@web40106.mail.yahoo.com> References: <20040818084048.42957.qmail@web40106.mail.yahoo.com> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <067810B6-F0F4-11D8-BDC8-000A959CEE6A@pursued-with.net> Content-Transfer-Encoding: 7bit From: Kevin Stevens Date: Wed, 18 Aug 2004 01:53:07 -0700 To: Dino Vliet X-Mailer: Apple Mail (2.619) cc: freebsd-questions@freebsd.org Subject: Re: freebsd compatible routers X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 08:51:42 -0000 On Aug 18, 2004, at 01:40, Dino Vliet wrote: > @home we have a cable internet connection and I want > to attach a router to it to be able to share the > internet connection of 1 standalone winxp pc and a > laptop running freebsd 4.10 > The cable connection uses dhcp to assign me a > ip-address. I also would like a switch to be able to > set up a lan between the pc's at home. Most of the products out there combine a 4/5 port switch with the router. > Personally I would favour a netgear solution but some > of the don't allow port forwarding and even though I > don't know at the moment if I will need this, I do > want a product which is capable of doing that:-) I'm not aware of any router/firewall products which don't offer port forwarding, though sometimes it's called something different. Which Netgear product are you referring to? > What are the best freebsd compatible routers? Well, Cisco 3660s are nice... The phrase "freebsd compatible router" is pretty meaningless, FreeBSD uses a standard TCP/IP implementation and so do routers, so they are all interoperable. The only thing you might find is a product that has a Windows-specific setup program, but that is very rare on current equipment - they all use browser-based setups. Buy the cheapest thing on sale (should be < $30 new if you shop around) and replace it later if you need some specific different feature. > Will te fact that I use freebsd on my laptop be a > serious constraint? Depends on what you're trying to do with it. KeS From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 08:54:24 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7E8316A4CE for ; Wed, 18 Aug 2004 08:54:24 +0000 (GMT) Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com [62.253.162.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08E6543D39 for ; Wed, 18 Aug 2004 08:54:24 +0000 (GMT) (envelope-from jon@witchspace.com) Received: from witchspace.com ([81.110.67.239]) by mta02-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with SMTP id <20040818085245.TKPU4370.mta02-svc.ntlworld.com@witchspace.com> for ; Wed, 18 Aug 2004 09:52:45 +0100 Received: (qmail 81985 invoked from network); 18 Aug 2004 08:54:15 -0000 Received: from unknown (HELO webmail.local) (127.0.0.1) by localhost.witchspace.com with SMTP; 18 Aug 2004 08:54:15 -0000 Received: from 192.168.0.1 (SquirrelMail authenticated user jon); by webmail.local with HTTP; Wed, 18 Aug 2004 09:54:15 +0100 (BST) Message-ID: <4070.192.168.0.1.1092819255.squirrel@192.168.0.1> Date: Wed, 18 Aug 2004 09:54:15 +0100 (BST) From: "Jonathan Belson" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.3a X-Mailer: SquirrelMail/1.4.3a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Corrupted e-mails X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 08:54:24 -0000 Hiya For the last few months, I've had a problem where a small number (less than ~1 in 1000) of e-mails get corrupted. All I have in my Maildir is something like the following two lines: Return-Path: Delivered-To: jon@localhost In case case it's a spam so it's no great loss, but I've had it happen to important e-mails too. Here are the appropriate lines from my maillog: Aug 18 05:35:17 dookie qmail: 1092803717.270465 new msg 2018 Aug 18 05:35:17 dookie qmail: 1092803717.270808 info msg 2018: bytes 6860 from qp 66137 uid 82 Aug 18 05:35:17 dookie qmail: 1092803717.283085 starting delivery 1895: msg 2018 to local jon@localhost Aug 18 05:35:32 dookie qmail: 1092803732.535421 end msg 2018 The original e-mail looks to have been ~6.5kB. Here is my .qmail, which runs SpamAssassin on the incoming e-mail for this account: |/usr/local/bin/spamassassin | /usr/local/bin/maildir /home/jon/Maildir/ #./Maildir/ I'm inclined to blame SpamAssassin since I saw a similar problem when I had it misconfigured before - that was easy to track down since it wrote error messages in the system log left (missing p5 package). This time there are no error messages, and the problem only occurs very occasionally. Has anyone else seen this before? Any clues on what could be going wrong? Disabling SpamAssassin would make e-mail unusable since I get hundreds of spam e-mails a day. Cheers, --Jon http://www.witchspace.com From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 09:06:09 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32B0616A4CE for ; Wed, 18 Aug 2004 09:06:09 +0000 (GMT) Received: from aiolos.otenet.gr (aiolos.otenet.gr [195.170.0.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7923443D80 for ; Wed, 18 Aug 2004 09:06:08 +0000 (GMT) (envelope-from keramida@linux.gr) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])i7I95jeT032100; Wed, 18 Aug 2004 12:05:51 +0300 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) i7I95V3v005085; Wed, 18 Aug 2004 12:05:31 +0300 (EEST) (envelope-from keramida@linux.gr) Received: (from keramida@localhost)i7I95T7n005084; Wed, 18 Aug 2004 12:05:29 +0300 (EEST) (envelope-from keramida@linux.gr) Date: Wed, 18 Aug 2004 12:05:28 +0300 (EEST) From: Giorgos Keramidas To: Duane Winner In-Reply-To: <4122B61B.1050608@att.net> Message-ID: <20040818115550.T4343@orion> References: <41222679.7080000@att.net> <4122351E.7040205@att.net> <20040817165757.GA88222@thought.org> <4122B61B.1050608@att.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: freebsd-questions@freebsd.org Subject: Re: xtset or xtermset tricks? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 09:06:09 -0000 On 2004-08-17 21:51, Duane Winner wrote: > Gary Kline wrote: >> On Tue, Aug 17, 2004 at 12:41:02PM -0400, Duane Winner wrote: >>> Found a solution! >>> >>> In ~/.bashrc, put this: >>> >>> cd () >>> { >>> builtin cd "$@" >>> /usr/local/bin/xtset %u@%h:`pwd` >>> } >> I've got a slight problem with having the host/directory/etc on the >> title bar. It will help clear my zsh right-prompt, of course. > But now, since I hammered out that little cd() function for .bashrc, I > found another little problem: > > If I su to another user (for instance, "su - root"), the title changes > as long as the other account has my the function in .bashrc, but when > I exit, the title still has the old credentials (example: > root@mybox:~) until I cd somewhere again. Sigh. Don't use cd aliases for showing the current path in your xterm titlebar. There's a more elegant way involving PROMPT_COMMAND: bash-2.05b$ export PS1='\$ ' $ export PROMPT_COMMAND='echo ::`pwd`::' ::/home/keramida:: $ cd /etc ::/etc:: $ cd /usr/src ::/usr/src:: $ exit exit You can set PROMPT_COMMAND to any command you want, no matter how complicated. A nice wrapper script around your "usual stuff" for PROMPT_COMMAND can be called too with: $ export PROMPT_COMMAND='/home/keramida/bin/promptcmd.sh' Regarding the current username, host name and directory, you might be interested in this output too: $ echo $USER keramida $ hostname -s orion $ echo $PWD /home/keramida $ - Giorgos From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 09:18:38 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC8F116A4CE for ; Wed, 18 Aug 2004 09:18:38 +0000 (GMT) Received: from mx1.valuehost.ru (mx1.valuehost.ru [62.118.251.208]) by mx1.FreeBSD.org (Postfix) with SMTP id B576343D2D for ; Wed, 18 Aug 2004 09:18:37 +0000 (GMT) (envelope-from ttmc@mail.ru) Received: (qmail 33158 invoked by uid 89); 18 Aug 2004 13:18:35 +0400 Received: from unknown (HELO mx0.valuehost.ru) (62.118.251.6) by mx1.valuehost.ru with SMTP; 18 Aug 2004 13:18:35 +0400 Received: (qmail 32243 invoked by uid 89); 18 Aug 2004 13:18:34 +0400 Received: from unknown (HELO 172.20.0.84) (pavlo@furgon-center.ru@217.118.66.232) by mx0.valuehost.ru with SMTP; 18 Aug 2004 13:18:18 +0400 Date: Wed, 18 Aug 2004 13:17:41 +0400 From: Ighor X-Mailer: FC'2000! (v1.62i) Organization: OOO TTM-Centr X-Priority: 3 (Normal) Message-ID: <1698934765.20040818131741@mail.ru> To: questions@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----------8A98F238197060" Subject: Intel PRO/1000 and Intel 865 PE, FreeBSD 5.2.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Ighor, Dmitry" List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 09:18:39 -0000 ------------8A98F238197060 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Good day! Sorry about my stupid questions, but i can't resolve my problem by myself. I've read a lot of pages and FAQs but can't do this: I have Intel PRO/1000 Network Card on Albatron motherb PX865PE ProII oard with Inter 82865PE chipset. After boot network card doesn't work. I think it's something with interrupts. It only works when I disable ACPI in device.hints. The the card uses IRQ18 and all is ok. I've shitched resources in BIOS in thousands combinations - it's all the same. I need ACPI for HT pseudo-dual processing. There are two logs attached - with ACPI and without Thank you if you can help me. -- With Best regards/wishes Ighor mailto:ttmc@mail.ru ICQ 65975280, phone +7-916-7219187 ------------8A98F238197060 Content-Type: text/plain; name="without-ok.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="without-ok.txt" Q29weXJpZ2h0IChjKSAxOTkyLTIwMDQgVGhlIEZyZWVCU0QgUHJvamVjdC4KQ29weXJpZ2h0IChj KSAxOTc5LCAxOTgwLCAxOTgzLCAxOTg2LCAxOTg4LCAxOTg5LCAxOTkxLCAxOTkyLCAxOTkzLCAx OTk0CglUaGUgUmVnZW50cyBvZiB0aGUgVW5pdmVyc2l0eSBvZiBDYWxpZm9ybmlhLiBBbGwgcmln aHRzIHJlc2VydmVkLgpGcmVlQlNEIDUuMi4xLVJFTEVBU0UgIzA6IE1vbiBGZWIgMjMgMjA6NDU6 NTUgR01UIDIwMDQKICAgIHJvb3RAd3YxdS5idGMuYWRhcHRlYy5jb206L3Vzci9vYmovdXNyL3Ny Yy9zeXMvR0VORVJJQwpQcmVsb2FkZWQgZWxmIGtlcm5lbCAiL2Jvb3Qva2VybmVsL2tlcm5lbCIg YXQgMHhjMDllMzAwMC4KTVBUYWJsZTogPE9FTTAwMDAwIFBST0QwMDAwMDAwMD4KVGltZWNvdW50 ZXIgImk4MjU0IiBmcmVxdWVuY3kgMTE5MzE4MiBIeiBxdWFsaXR5IDAKQ1BVOiBJbnRlbChSKSBQ ZW50aXVtKFIpIDQgQ1BVIDIuODBHSHogKDI4MDAuNDgtTUh6IDY4Ni1jbGFzcyBDUFUpCiAgT3Jp Z2luID0gIkdlbnVpbmVJbnRlbCIgIElkID0gMHhmMjkgIFN0ZXBwaW5nID0gOQogIEZlYXR1cmVz PTB4YmZlYmZiZmY8RlBVLFZNRSxERSxQU0UsVFNDLE1TUixQQUUsTUNFLENYOCxBUElDLFNFUCxN VFJSLFBHRSxNQ0EsQ01PVixQQVQsUFNFMzYsQ0xGTFVTSCxEVFMsQUNQSSxNTVgsRlhTUixTU0Us U1NFMixTUyxIVFQsVE0sUEJFPgogIEh5cGVydGhyZWFkaW5nOiAyIGxvZ2ljYWwgQ1BVcwpyZWFs IG1lbW9yeSAgPSA1MzY4MDUzNzYgKDUxMSBNQikKYXZhaWwgbWVtb3J5ID0gNTExNzc0NzIwICg0 ODggTUIpCmlvYXBpYzA6IEFzc3VtaW5nIGludGJhc2Ugb2YgMAppb2FwaWMwIDxWZXJzaW9uIDIu MD4gaXJxcyAwLTIzIG9uIG1vdGhlcmJvYXJkClBlbnRpdW0gUHJvIE1UUlIgc3VwcG9ydCBlbmFi bGVkCm5weDA6IFtGQVNUXQpucHgwOiA8bWF0aCBwcm9jZXNzb3I+IG9uIG1vdGhlcmJvYXJkCm5w eDA6IElOVCAxNiBpbnRlcmZhY2UKcGNpYmlvczogQklPUyB2ZXJzaW9uIDIuMTAKVXNpbmcgJFBJ UiB0YWJsZSwgMTQgZW50cmllcyBhdCAweGMwMGZkZTcwCnBjaWIwOiA8TVBUYWJsZSBIb3N0LVBD SSBicmlkZ2U+IGF0IHBjaWJ1cyAwIG9uIG1vdGhlcmJvYXJkCnBjaTA6IDxQQ0kgYnVzPiBvbiBw Y2liMApwY2liMDogc2xvdCAyOSBJTlRBIHJvdXRlZCB0byBpcnEgMTYKcGNpYjA6IHNsb3QgMjkg SU5UQiByb3V0ZWQgdG8gaXJxIDE5CnBjaWIwOiBzbG90IDI5IElOVEMgcm91dGVkIHRvIGlycSAx OApwY2liMDogc2xvdCAyOSBJTlRBIHJvdXRlZCB0byBpcnEgMTYKcGNpYjA6IHNsb3QgMjkgSU5U RCByb3V0ZWQgdG8gaXJxIDIzCnBjaWIwOiBzbG90IDMxIElOVEEgcm91dGVkIHRvIGlycSAxNgpw Y2liMDogc2xvdCAzMSBJTlRCIHJvdXRlZCB0byBpcnEgMTcKYWdwMDogPEludGVsIDgyODY1IGhv c3QgdG8gQUdQIGJyaWRnZT4gbWVtIDB4ZTgwMDAwMDAtMHhlZmZmZmZmZiBhdCBkZXZpY2UgMC4w IG9uIHBjaTAKcGNpYjE6IDxNUFRhYmxlIFBDSS1QQ0kgYnJpZGdlPiBhdCBkZXZpY2UgMS4wIG9u IHBjaTAKcGNpMTogPFBDSSBidXM+IG9uIHBjaWIxCnBjaWIxOiBzbG90IDAgSU5UQSByb3V0ZWQg dG8gaXJxIDE2CnBjaTE6IDxkaXNwbGF5LCBWR0E+IGF0IGRldmljZSAwLjAgKG5vIGRyaXZlciBh dHRhY2hlZCkKcGNpYjI6IDxNUFRhYmxlIFBDSS1QQ0kgYnJpZGdlPiBhdCBkZXZpY2UgMy4wIG9u IHBjaTAKcGNpMjogPFBDSSBidXM+IG9uIHBjaWIyCnBjaWIyOiBzbG90IDEgSU5UQSByb3V0ZWQg dG8gaXJxIDE4CmVtMDogPEludGVsKFIpIFBSTy8xMDAwIE5ldHdvcmsgQ29ubmVjdGlvbiwgVmVy c2lvbiAtIDEuNy4xOT4gcG9ydCAweDkwMDAtMHg5MDFmIG1lbSAweGZhMDAwMDAwLTB4ZmEwMWZm ZmYgaXJxIDE4IGF0IGRldmljZSAxLjAgb24gcGNpMgplbTA6ICBTcGVlZDpOL0EgIER1cGxleDpO L0EKdWhjaTA6IDxJbnRlbCA4MjgwMUVCIChJQ0g1KSBVU0IgY29udHJvbGxlciBVU0ItQT4gcG9y dCAweGJjMDAtMHhiYzFmIGlycSAxNiBhdCBkZXZpY2UgMjkuMCBvbiBwY2kwCnVzYjA6IDxJbnRl bCA4MjgwMUVCIChJQ0g1KSBVU0IgY29udHJvbGxlciBVU0ItQT4gb24gdWhjaTAKdXNiMDogVVNC IHJldmlzaW9uIDEuMAp1aHViMDogSW50ZWwgVUhDSSByb290IGh1YiwgY2xhc3MgOS8wLCByZXYg MS4wMC8xLjAwLCBhZGRyIDEKdWh1YjA6IDIgcG9ydHMgd2l0aCAyIHJlbW92YWJsZSwgc2VsZiBw b3dlcmVkCnVoY2kxOiA8SW50ZWwgODI4MDFFQiAoSUNINSkgVVNCIGNvbnRyb2xsZXIgVVNCLUI+ IHBvcnQgMHhiMDAwLTB4YjAxZiBpcnEgMTkgYXQgZGV2aWNlIDI5LjEgb24gcGNpMAp1c2IxOiA8 SW50ZWwgODI4MDFFQiAoSUNINSkgVVNCIGNvbnRyb2xsZXIgVVNCLUI+IG9uIHVoY2kxCnVzYjE6 IFVTQiByZXZpc2lvbiAxLjAKdWh1YjE6IEludGVsIFVIQ0kgcm9vdCBodWIsIGNsYXNzIDkvMCwg cmV2IDEuMDAvMS4wMCwgYWRkciAxCnVodWIxOiAyIHBvcnRzIHdpdGggMiByZW1vdmFibGUsIHNl bGYgcG93ZXJlZAp1aGNpMjogPEludGVsIDgyODAxRUIgKElDSDUpIFVTQiBjb250cm9sbGVyIFVT Qi1DPiBwb3J0IDB4YjQwMC0weGI0MWYgaXJxIDE4IGF0IGRldmljZSAyOS4yIG9uIHBjaTAKdXNi MjogPEludGVsIDgyODAxRUIgKElDSDUpIFVTQiBjb250cm9sbGVyIFVTQi1DPiBvbiB1aGNpMgp1 c2IyOiBVU0IgcmV2aXNpb24gMS4wCnVodWIyOiBJbnRlbCBVSENJIHJvb3QgaHViLCBjbGFzcyA5 LzAsIHJldiAxLjAwLzEuMDAsIGFkZHIgMQp1aHViMjogMiBwb3J0cyB3aXRoIDIgcmVtb3ZhYmxl LCBzZWxmIHBvd2VyZWQKdWhjaTM6IDxJbnRlbCA4MjgwMUVCIChJQ0g1KSBVU0IgY29udHJvbGxl ciBVU0ItRD4gcG9ydCAweGI4MDAtMHhiODFmIGlycSAxNiBhdCBkZXZpY2UgMjkuMyBvbiBwY2kw CnVzYjM6IDxJbnRlbCA4MjgwMUVCIChJQ0g1KSBVU0IgY29udHJvbGxlciBVU0ItRD4gb24gdWhj aTMKdXNiMzogVVNCIHJldmlzaW9uIDEuMAp1aHViMzogSW50ZWwgVUhDSSByb290IGh1YiwgY2xh c3MgOS8wLCByZXYgMS4wMC8xLjAwLCBhZGRyIDEKdWh1YjM6IDIgcG9ydHMgd2l0aCAyIHJlbW92 YWJsZSwgc2VsZiBwb3dlcmVkCnBjaTA6IDxzZXJpYWwgYnVzLCBVU0I+IGF0IGRldmljZSAyOS43 IChubyBkcml2ZXIgYXR0YWNoZWQpCnBjaWIzOiA8TVBUYWJsZSBQQ0ktUENJIGJyaWRnZT4gYXQg ZGV2aWNlIDMwLjAgb24gcGNpMApwY2kzOiA8UENJIGJ1cz4gb24gcGNpYjMKcGNpYjM6IHNsb3Qg MCBJTlRBIHJvdXRlZCB0byBpcnEgMjIKZndvaGNpMDogPFZJQSBWVDYzMDY+IHBvcnQgMHhhMDAw LTB4YTA3ZiBtZW0gMHhmYTEwMDAwMC0weGZhMTAwN2ZmIGlycSAyMiBhdCBkZXZpY2UgMC4wIG9u IHBjaTMKZndvaGNpMDogT0hDSSB2ZXJzaW9uIDEuMCAoUk9NPTEpCmZ3b2hjaTA6IE5vLiBvZiBJ c29jaHJvbm91cyBjaGFubmVsIGlzIDQuCmZ3b2hjaTA6IEVVSTY0IDAwOjBhOjQ4OjAwOjAwOjAx OjQ2OjhhCmZ3b2hjaTA6IFBoeSAxMzk0YSBhdmFpbGFibGUgUzQwMCwgMiBwb3J0cy4KZndvaGNp MDogTGluayBTNDAwLCBtYXhfcmVjIDIwNDggYnl0ZXMuCmZpcmV3aXJlMDogPElFRUUxMzk0KEZp cmVXaXJlKSBidXM+IG9uIGZ3b2hjaTAKZndlMDogPEV0aGVybmV0IG92ZXIgRmlyZVdpcmU+IG9u IGZpcmV3aXJlMAppZl9md2UwOiBGYWtlIEV0aGVybmV0IGFkZHJlc3M6IDAyOjBhOjQ4OjAxOjQ2 OjhhCnNicDA6IDxTQlAtMi9TQ1NJIG92ZXIgRmlyZVdpcmU+IG9uIGZpcmV3aXJlMApmd29oY2kw OiBJbml0aWF0ZSBidXMgcmVzZXQKZndvaGNpMDogQlVTIHJlc2V0CmZ3b2hjaTA6IG5vZGVfaWQ9 MHhjODAwZmZjMCwgZ2VuPTEsIENZQ0xFTUFTVEVSIG1vZGUKZmlyZXdpcmUwOiAxIG5vZGVzLCBt YXhob3AgPD0gMCwgY2FibGUgSVJNID0gMCAobWUpCmZpcmV3aXJlMDogYnVzIG1hbmFnZXIgMCAo bWUpCmlzYWIwOiA8UENJLUlTQSBicmlkZ2U+IGF0IGRldmljZSAzMS4wIG9uIHBjaTAKaXNhMDog PElTQSBidXM+IG9uIGlzYWIwCmF0YXBjaTA6IDxJbnRlbCBJQ0g1IFNBVEExNTAgY29udHJvbGxl cj4gcG9ydCAweGYwMDAtMHhmMDBmLDAtMHgzLDAtMHg3LDAtMHgzLDAtMHg3IGlycSAxNiBhdCBk ZXZpY2UgMzEuMiBvbiBwY2kwCmF0YTA6IGF0IDB4MWYwIGlycSAxNCBvbiBhdGFwY2kwCmF0YTA6 IFtNUFNBRkVdCmF0YTE6IGF0IDB4MTcwIGlycSAxNSBvbiBhdGFwY2kwCmF0YTE6IFtNUFNBRkVd CnBjaTA6IDxzZXJpYWwgYnVzLCBTTUJ1cz4gYXQgZGV2aWNlIDMxLjMgKG5vIGRyaXZlciBhdHRh Y2hlZCkKb3JtMDogPE9wdGlvbiBST01zPiBhdCBpb21lbSAweGQwMDAwLTB4ZDE3ZmYsMHhjMDAw MC0weGNmN2ZmIG9uIGlzYTAKcG10aW1lcjAgb24gaXNhMAphdGtiZGMwOiA8S2V5Ym9hcmQgY29u dHJvbGxlciAoaTgwNDIpPiBhdCBwb3J0IDB4NjQsMHg2MCBvbiBpc2EwCmF0a2JkMDogPEFUIEtl eWJvYXJkPiBmbGFncyAweDEgaXJxIDEgb24gYXRrYmRjMAprYmQwIGF0IGF0a2JkMApwc20wOiA8 UFMvMiBNb3VzZT4gaXJxIDEyIG9uIGF0a2JkYzAKcHNtMDogbW9kZWwgR2VuZXJpYyBQUy8yIG1v dXNlLCBkZXZpY2UgSUQgMApmZGMwOiA8RW5oYW5jZWQgZmxvcHB5IGNvbnRyb2xsZXIgKGk4MjA3 NywgTkU3MjA2NSBvciBjbG9uZSk+IGF0IHBvcnQgMHgzZjcsMHgzZjAtMHgzZjUgaXJxIDYgZHJx IDIgb24gaXNhMApmZGMwOiBGSUZPIGVuYWJsZWQsIDggYnl0ZXMgdGhyZXNob2xkCmZkMDogPDE0 NDAtS0IgMy41IiBkcml2ZT4gb24gZmRjMCBkcml2ZSAwCnBwYzA6IDxQYXJhbGxlbCBwb3J0PiBh dCBwb3J0IDB4M2JjLTB4M2MzIGlycSA3IG9uIGlzYTAKcHBjMDogR2VuZXJpYyBjaGlwc2V0IChF Q1AvUFMyL05JQkJMRSkgaW4gQ09NUEFUSUJMRSBtb2RlCnBwYnVzMDogPFBhcmFsbGVsIHBvcnQg YnVzPiBvbiBwcGMwCnBsaXAwOiA8UExJUCBuZXR3b3JrIGludGVyZmFjZT4gb24gcHBidXMwCnBw aTA6IDxQYXJhbGxlbCBJL08+IG9uIHBwYnVzMApzYzA6IDxTeXN0ZW0gY29uc29sZT4gYXQgZmxh Z3MgMHgxMDAgb24gaXNhMApzYzA6IFZHQSA8MTYgdmlydHVhbCBjb25zb2xlcywgZmxhZ3M9MHgz MDA+CnNpbzAgYXQgcG9ydCAweDNmOC0weDNmZiBpcnEgNCBmbGFncyAweDEwIG9uIGlzYTAKc2lv MDogdHlwZSAxNjU1MEEKc2lvMSBhdCBwb3J0IDB4MmY4LTB4MmZmIGlycSAzIG9uIGlzYTAKc2lv MTogdHlwZSAxNjU1MEEKdmdhMDogPEdlbmVyaWMgSVNBIFZHQT4gYXQgcG9ydCAweDNjMC0weDNk ZiBpb21lbSAweGEwMDAwLTB4YmZmZmYgb24gaXNhMAp1bmtub3duOiA8UE5QMDMwMz4gY2FuJ3Qg YXNzaWduIHJlc291cmNlcyAocG9ydCkKdW5rbm93bjogPFBOUDBmMTM+IGNhbid0IGFzc2lnbiBy ZXNvdXJjZXMgKGlycSkKdW5rbm93bjogPFBOUDA1MDE+IGNhbid0IGFzc2lnbiByZXNvdXJjZXMg KHBvcnQpCnVua25vd246IDxQTlAwNzAwPiBjYW4ndCBhc3NpZ24gcmVzb3VyY2VzIChwb3J0KQp1 bmtub3duOiA8UE5QMDQwMT4gY2FuJ3QgYXNzaWduIHJlc291cmNlcyAocG9ydCkKdW5rbm93bjog PFBOUDA1MDE+IGNhbid0IGFzc2lnbiByZXNvdXJjZXMgKHBvcnQpClRpbWVjb3VudGVyICJUU0Mi IGZyZXF1ZW5jeSAyODAwNDgwNjc2IEh6IHF1YWxpdHkgODAwClRpbWVjb3VudGVycyB0aWNrIGV2 ZXJ5IDEwLjAwMCBtc2VjCkdFT006IGNyZWF0ZSBkaXNrIGFkMCBkcD0weGM0OWUxMDYwCmFkMDog MTE0NDczTUIgPFNUMzEyMDAyNkFTPiBbMjMyNTgxLzE2LzYzXSBhdCBhdGEwLW1hc3RlciBVRE1B MTAwCmFjZDA6IENEUlcgPEhMLURULVNUIFJXL0RWRCBHQ0MtNDUyMEI+IGF0IGF0YTEtbWFzdGVy IFBJTzQKTW91bnRpbmcgcm9vdCBmcm9tIHVmczovZGV2L2FkMHMxYQplbTA6IExpbmsgaXMgdXAg MTAwIE1icHMgRnVsbCBEdXBsZXgKZW0wOiBMaW5rIGlzIHVwIDEwMCBNYnBzIEZ1bGwgRHVwbGV4 CmNkOTY2MDogUm9ja1JpZGdlIEV4dGVuc2lvbgo= ------------8A98F238197060 Content-Type: text/plain; name="with-bad.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="with-bad.txt" Q29weXJpZ2h0IChjKSAxOTkyLTIwMDQgVGhlIEZyZWVCU0QgUHJvamVjdC4KQ29weXJpZ2h0IChj KSAxOTc5LCAxOTgwLCAxOTgzLCAxOTg2LCAxOTg4LCAxOTg5LCAxOTkxLCAxOTkyLCAxOTkzLCAx OTk0CglUaGUgUmVnZW50cyBvZiB0aGUgVW5pdmVyc2l0eSBvZiBDYWxpZm9ybmlhLiBBbGwgcmln aHRzIHJlc2VydmVkLgpGcmVlQlNEIDUuMi4xLVJFTEVBU0UgIzA6IE1vbiBGZWIgMjMgMjA6NDU6 NTUgR01UIDIwMDQKICAgIHJvb3RAd3YxdS5idGMuYWRhcHRlYy5jb206L3Vzci9vYmovdXNyL3Ny Yy9zeXMvR0VORVJJQwpQcmVsb2FkZWQgZWxmIGtlcm5lbCAiL2Jvb3Qva2VybmVsL2tlcm5lbCIg YXQgMHhjMGEzNTAwMC4KUHJlbG9hZGVkIGVsZiBtb2R1bGUgIi9ib290L2tlcm5lbC9hY3BpLmtv IiBhdCAweGMwYTM1MWY0LgpBQ1BJIEFQSUMgVGFibGU6IDxJbnRlbFIgQVdSREFDUEk+ClRpbWVj b3VudGVyICJpODI1NCIgZnJlcXVlbmN5IDExOTMxODIgSHogcXVhbGl0eSAwCkNQVTogSW50ZWwo UikgUGVudGl1bShSKSA0IENQVSAyLjgwR0h6ICgyODAwLjQ4LU1IeiA2ODYtY2xhc3MgQ1BVKQog IE9yaWdpbiA9ICJHZW51aW5lSW50ZWwiICBJZCA9IDB4ZjI5ICBTdGVwcGluZyA9IDkKICBGZWF0 dXJlcz0weGJmZWJmYmZmPEZQVSxWTUUsREUsUFNFLFRTQyxNU1IsUEFFLE1DRSxDWDgsQVBJQyxT RVAsTVRSUixQR0UsTUNBLENNT1YsUEFULFBTRTM2LENMRkxVU0gsRFRTLEFDUEksTU1YLEZYU1Is U1NFLFNTRTIsU1MsSFRULFRNLFBCRT4KICBIeXBlcnRocmVhZGluZzogMiBsb2dpY2FsIENQVXMK cmVhbCBtZW1vcnkgID0gNTM2ODA1Mzc2ICg1MTEgTUIpCmF2YWlsIG1lbW9yeSA9IDUxMTc2NjUy OCAoNDg4IE1CKQpGcmVlQlNEL1NNUDogTXVsdGlwcm9jZXNzb3IgU3lzdGVtIERldGVjdGVkOiAy IENQVXMKIGNwdTAgKEJTUCk6IEFQSUMgSUQ6ICAwCiBjcHUxIChBUCk6IEFQSUMgSUQ6ICAxCmlv YXBpYzAgPFZlcnNpb24gMi4wPiBpcnFzIDAtMjMgb24gbW90aGVyYm9hcmQKUGVudGl1bSBQcm8g TVRSUiBzdXBwb3J0IGVuYWJsZWQKbnB4MDogW0ZBU1RdCm5weDA6IDxtYXRoIHByb2Nlc3Nvcj4g b24gbW90aGVyYm9hcmQKbnB4MDogSU5UIDE2IGludGVyZmFjZQphY3BpMDogPEludGVsUiBBV1JE QUNQST4gb24gbW90aGVyYm9hcmQKcGNpYmlvczogQklPUyB2ZXJzaW9uIDIuMTAKVXNpbmcgJFBJ UiB0YWJsZSwgMTQgZW50cmllcyBhdCAweGMwMGZkZTcwCmFjcGkwOiBQb3dlciBCdXR0b24gKGZp eGVkKQpUaW1lY291bnRlciAiQUNQSS1mYXN0IiBmcmVxdWVuY3kgMzU3OTU0NSBIeiBxdWFsaXR5 IDEwMDAKYWNwaV90aW1lcjA6IDwyNC1iaXQgdGltZXIgYXQgMy41Nzk1NDVNSHo+IHBvcnQgMHg0 MDgtMHg0MGIgb24gYWNwaTAKYWNwaV9jcHUwOiA8Q1BVPiBvbiBhY3BpMAphY3BpX2NwdTE6IDxD UFU+IG9uIGFjcGkwCmFjcGlfdHowOiA8VGhlcm1hbCBab25lPiBvbiBhY3BpMAphY3BpX2J1dHRv bjA6IDxQb3dlciBCdXR0b24+IG9uIGFjcGkwCnBjaWIwOiA8QUNQSSBIb3N0LVBDSSBicmlkZ2U+ IHBvcnQgMHhjZjgtMHhjZmYgb24gYWNwaTAKcGNpMDogPEFDUEkgUENJIGJ1cz4gb24gcGNpYjAK YWdwMDogPEludGVsIDgyODY1IGhvc3QgdG8gQUdQIGJyaWRnZT4gbWVtIDB4ZTgwMDAwMDAtMHhl ZmZmZmZmZiBhdCBkZXZpY2UgMC4wIG9uIHBjaTAKcGNpYjE6IDxQQ0ktUENJIGJyaWRnZT4gYXQg ZGV2aWNlIDEuMCBvbiBwY2kwCnBjaTE6IDxQQ0kgYnVzPiBvbiBwY2liMQpwY2liMTogc2xvdCAw IElOVEEgaXMgcm91dGVkIHRvIGlycSAxNgpwY2kxOiA8ZGlzcGxheSwgVkdBPiBhdCBkZXZpY2Ug MC4wIChubyBkcml2ZXIgYXR0YWNoZWQpCnBjaWIyOiA8QUNQSSBQQ0ktUENJIGJyaWRnZT4gYXQg ZGV2aWNlIDMuMCBvbiBwY2kwCnBjaWIyOiBjb3VsZCBub3QgZ2V0IFBDSSBpbnRlcnJ1cHQgcm91 dGluZyB0YWJsZSBmb3IgXFxfU0JfLlBDSTAuQ1NBQiAtIEFFX05PVF9GT1VORApeXl5eXl5eXl5e Xl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5eXl5e Xl5eXl5eXl5eXl4KcGNpMjogPEFDUEkgUENJIGJ1cz4gb24gcGNpYjIKZW0wOiA8SW50ZWwoUikg UFJPLzEwMDAgTmV0d29yayBDb25uZWN0aW9uLCBWZXJzaW9uIC0gMS43LjE5PiBwb3J0IDB4OTAw MC0weDkwMWYgbWVtIDB4ZmEwMDAwMDAtMHhmYTAxZmZmZiBpcnEgMTEgYXQgZGV2aWNlIDEuMCBv biBwY2kyCmVtMDogIFNwZWVkOk4vQSAgRHVwbGV4Ok4vQQp1aGNpMDogPEludGVsIDgyODAxRUIg KElDSDUpIFVTQiBjb250cm9sbGVyIFVTQi1BPiBwb3J0IDB4YmMwMC0weGJjMWYgaXJxIDE2IGF0 IGRldmljZSAyOS4wIG9uIHBjaTAKdXNiMDogPEludGVsIDgyODAxRUIgKElDSDUpIFVTQiBjb250 cm9sbGVyIFVTQi1BPiBvbiB1aGNpMAp1c2IwOiBVU0IgcmV2aXNpb24gMS4wCnVodWIwOiBJbnRl bCBVSENJIHJvb3QgaHViLCBjbGFzcyA5LzAsIHJldiAxLjAwLzEuMDAsIGFkZHIgMQp1aHViMDog MiBwb3J0cyB3aXRoIDIgcmVtb3ZhYmxlLCBzZWxmIHBvd2VyZWQKdWhjaTE6IDxJbnRlbCA4Mjgw MUVCIChJQ0g1KSBVU0IgY29udHJvbGxlciBVU0ItQj4gcG9ydCAweGIwMDAtMHhiMDFmIGlycSAx OSBhdCBkZXZpY2UgMjkuMSBvbiBwY2kwCnVzYjE6IDxJbnRlbCA4MjgwMUVCIChJQ0g1KSBVU0Ig Y29udHJvbGxlciBVU0ItQj4gb24gdWhjaTEKdXNiMTogVVNCIHJldmlzaW9uIDEuMAp1aHViMTog SW50ZWwgVUhDSSByb290IGh1YiwgY2xhc3MgOS8wLCByZXYgMS4wMC8xLjAwLCBhZGRyIDEKdWh1 YjE6IDIgcG9ydHMgd2l0aCAyIHJlbW92YWJsZSwgc2VsZiBwb3dlcmVkCnVoY2kyOiA8SW50ZWwg ODI4MDFFQiAoSUNINSkgVVNCIGNvbnRyb2xsZXIgVVNCLUM+IHBvcnQgMHhiNDAwLTB4YjQxZiBp cnEgMTggYXQgZGV2aWNlIDI5LjIgb24gcGNpMAp1c2IyOiA8SW50ZWwgODI4MDFFQiAoSUNINSkg VVNCIGNvbnRyb2xsZXIgVVNCLUM+IG9uIHVoY2kyCnVzYjI6IFVTQiByZXZpc2lvbiAxLjAKdWh1 YjI6IEludGVsIFVIQ0kgcm9vdCBodWIsIGNsYXNzIDkvMCwgcmV2IDEuMDAvMS4wMCwgYWRkciAx CnVodWIyOiAyIHBvcnRzIHdpdGggMiByZW1vdmFibGUsIHNlbGYgcG93ZXJlZAp1aGNpMzogPElu dGVsIDgyODAxRUIgKElDSDUpIFVTQiBjb250cm9sbGVyIFVTQi1EPiBwb3J0IDB4YjgwMC0weGI4 MWYgaXJxIDE2IGF0IGRldmljZSAyOS4zIG9uIHBjaTAKdXNiMzogPEludGVsIDgyODAxRUIgKElD SDUpIFVTQiBjb250cm9sbGVyIFVTQi1EPiBvbiB1aGNpMwp1c2IzOiBVU0IgcmV2aXNpb24gMS4w CnVodWIzOiBJbnRlbCBVSENJIHJvb3QgaHViLCBjbGFzcyA5LzAsIHJldiAxLjAwLzEuMDAsIGFk ZHIgMQp1aHViMzogMiBwb3J0cyB3aXRoIDIgcmVtb3ZhYmxlLCBzZWxmIHBvd2VyZWQKcGNpMDog PHNlcmlhbCBidXMsIFVTQj4gYXQgZGV2aWNlIDI5LjcgKG5vIGRyaXZlciBhdHRhY2hlZCkKcGNp YjM6IDxBQ1BJIFBDSS1QQ0kgYnJpZGdlPiBhdCBkZXZpY2UgMzAuMCBvbiBwY2kwCnBjaTM6IDxB Q1BJIFBDSSBidXM+IG9uIHBjaWIzCmZ3b2hjaTA6IDxWSUEgVlQ2MzA2PiBwb3J0IDB4YTAwMC0w eGEwN2YgbWVtIDB4ZmExMDAwMDAtMHhmYTEwMDdmZiBpcnEgMjIgYXQgZGV2aWNlIDAuMCBvbiBw Y2kzCmZ3b2hjaTA6IE9IQ0kgdmVyc2lvbiAxLjAgKFJPTT0xKQpmd29oY2kwOiBOby4gb2YgSXNv Y2hyb25vdXMgY2hhbm5lbCBpcyA0Lgpmd29oY2kwOiBFVUk2NCAwMDowYTo0ODowMDowMDowMTo0 Njo4YQpmd29oY2kwOiBQaHkgMTM5NGEgYXZhaWxhYmxlIFM0MDAsIDIgcG9ydHMuCmZ3b2hjaTA6 IExpbmsgUzQwMCwgbWF4X3JlYyAyMDQ4IGJ5dGVzLgpmaXJld2lyZTA6IDxJRUVFMTM5NChGaXJl V2lyZSkgYnVzPiBvbiBmd29oY2kwCmZ3ZTA6IDxFdGhlcm5ldCBvdmVyIEZpcmVXaXJlPiBvbiBm aXJld2lyZTAKaWZfZndlMDogRmFrZSBFdGhlcm5ldCBhZGRyZXNzOiAwMjowYTo0ODowMTo0Njo4 YQpzYnAwOiA8U0JQLTIvU0NTSSBvdmVyIEZpcmVXaXJlPiBvbiBmaXJld2lyZTAKZndvaGNpMDog SW5pdGlhdGUgYnVzIHJlc2V0CmZ3b2hjaTA6IEJVUyByZXNldApmd29oY2kwOiBub2RlX2lkPTB4 YzgwMGZmYzAsIGdlbj0xLCBDWUNMRU1BU1RFUiBtb2RlCmZpcmV3aXJlMDogMSBub2RlcywgbWF4 aG9wIDw9IDAsIGNhYmxlIElSTSA9IDAgKG1lKQpmaXJld2lyZTA6IGJ1cyBtYW5hZ2VyIDAgKG1l KQppc2FiMDogPFBDSS1JU0EgYnJpZGdlPiBhdCBkZXZpY2UgMzEuMCBvbiBwY2kwCmlzYTA6IDxJ U0EgYnVzPiBvbiBpc2FiMAphdGFwY2kwOiA8SW50ZWwgSUNINSBTQVRBMTUwIGNvbnRyb2xsZXI+ IHBvcnQgMHhmMDAwLTB4ZjAwZiwwLTB4MywwLTB4NywwLTB4MywwLTB4NyBpcnEgMTggYXQgZGV2 aWNlIDMxLjIgb24gcGNpMAphdGEwOiBhdCAweDFmMCBpcnEgMTQgb24gYXRhcGNpMAphdGEwOiBb TVBTQUZFXQphdGExOiBhdCAweDE3MCBpcnEgMTUgb24gYXRhcGNpMAphdGExOiBbTVBTQUZFXQpw Y2kwOiA8c2VyaWFsIGJ1cywgU01CdXM+IGF0IGRldmljZSAzMS4zIChubyBkcml2ZXIgYXR0YWNo ZWQpCmZkYzA6IDxFbmhhbmNlZCBmbG9wcHkgY29udHJvbGxlciAoaTgyMDc3LCBORTcyMDY1IG9y IGNsb25lKT4gcG9ydCAweDNmNywweDNmMC0weDNmNSBpcnEgNiBkcnEgMiBvbiBhY3BpMApmZGMw OiBGSUZPIGVuYWJsZWQsIDggYnl0ZXMgdGhyZXNob2xkCmZkMDogPDE0NDAtS0IgMy41IiBkcml2 ZT4gb24gZmRjMCBkcml2ZSAwCnNpbzAgcG9ydCAweDNmOC0weDNmZiBpcnEgNCBvbiBhY3BpMApz aW8wOiB0eXBlIDE2NTUwQQpzaW8xIHBvcnQgMHgyZjgtMHgyZmYgaXJxIDMgb24gYWNwaTAKc2lv MTogdHlwZSAxNjU1MEEKcHBjMCBwb3J0IDB4N2JjLTB4N2JmLDB4M2JjLTB4M2MzIGlycSA3IGRy cSAzIG9uIGFjcGkwCnBwYzA6IEdlbmVyaWMgY2hpcHNldCAoRUNQL1BTMi9OSUJCTEUpIGluIENP TVBBVElCTEUgbW9kZQpwcGJ1czA6IDxQYXJhbGxlbCBwb3J0IGJ1cz4gb24gcHBjMApwbGlwMDog PFBMSVAgbmV0d29yayBpbnRlcmZhY2U+IG9uIHBwYnVzMApwcGkwOiA8UGFyYWxsZWwgSS9PPiBv biBwcGJ1czAKYXRrYmRjMDogPEtleWJvYXJkIGNvbnRyb2xsZXIgKGk4MDQyKT4gcG9ydCAweDY0 LDB4NjAgaXJxIDEgb24gYWNwaTAKYXRrYmQwOiA8QVQgS2V5Ym9hcmQ+IGZsYWdzIDB4MSBpcnEg MSBvbiBhdGtiZGMwCmtiZDAgYXQgYXRrYmQwCnBzbTA6IDxQUy8yIE1vdXNlPiBpcnEgMTIgb24g YXRrYmRjMApwc20wOiBtb2RlbCBHZW5lcmljIFBTLzIgbW91c2UsIGRldmljZSBJRCAwCm9ybTA6 IDxPcHRpb24gUk9Ncz4gYXQgaW9tZW0gMHhkMDAwMC0weGQxN2ZmLDB4YzAwMDAtMHhjZjdmZiBv biBpc2EwCnBtdGltZXIwIG9uIGlzYTAKc2MwOiA8U3lzdGVtIGNvbnNvbGU+IGF0IGZsYWdzIDB4 MTAwIG9uIGlzYTAKc2MwOiBWR0EgPDE2IHZpcnR1YWwgY29uc29sZXMsIGZsYWdzPTB4MzAwPgp2 Z2EwOiA8R2VuZXJpYyBJU0EgVkdBPiBhdCBwb3J0IDB4M2MwLTB4M2RmIGlvbWVtIDB4YTAwMDAt MHhiZmZmZiBvbiBpc2EwClRpbWVjb3VudGVycyB0aWNrIGV2ZXJ5IDEwLjAwMCBtc2VjCkdFT006 IGNyZWF0ZSBkaXNrIGFkMCBkcD0weGM0OTVlODYwCmFkMDogMTE0NDczTUIgPFNUMzEyMDAyNkFT PiBbMjMyNTgxLzE2LzYzXSBhdCBhdGEwLW1hc3RlciBVRE1BMTAwCmFjZDA6IENEUlcgPEhMLURU LVNUIFJXL0RWRCBHQ0MtNDUyMEI+IGF0IGF0YTEtbWFzdGVyIFBJTzQKU01QOiBBUCBDUFUgIzEg TGF1bmNoZWQhCk1vdW50aW5nIHJvb3QgZnJvbSB1ZnM6L2Rldi9hZDBzMWEKZW0wOiBMaW5rIGlz IHVwIDEwMCBNYnBzIEZ1bGwgRHVwbGV4CmVtMDogd2F0Y2hkb2cgdGltZW91dCAtLSByZXNldHRp bmcKZW0wOiBMaW5rIGlzIHVwIDEwMCBNYnBzIEZ1bGwgRHVwbGV4CmVtMDogd2F0Y2hkb2cgdGlt ZW91dCAtLSByZXNldHRpbmcKZW0wOiBMaW5rIGlzIHVwIDEwMCBNYnBzIEZ1bGwgRHVwbGV4CmVt MDogd2F0Y2hkb2cgdGltZW91dCAtLSByZXNldHRpbmcKZW0wOiBMaW5rIGlzIHVwIDEwMCBNYnBz IEZ1bGwgRHVwbGV4CmVtMDogd2F0Y2hkb2cgdGltZW91dCAtLSByZXNldHRpbmcKZW0wOiBMaW5r IGlzIHVwIDEwMCBNYnBzIEZ1bGwgRHVwbGV4CmVtMDogd2F0Y2hkb2cgdGltZW91dCAtLSByZXNl dHRpbmcKZW0wOiBMaW5rIGlzIHVwIDEwMCBNYnBzIEZ1bGwgRHVwbGV4CmVtMDogd2F0Y2hkb2cg dGltZW91dCAtLSByZXNldHRpbmcKZW0wOiBMaW5rIGlzIHVwIDEwMCBNYnBzIEZ1bGwgRHVwbGV4 Cg== ------------8A98F238197060-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 09:28:51 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB48E16A4CE for ; Wed, 18 Aug 2004 09:28:51 +0000 (GMT) Received: from mailgate.teledome.gr (mailgate.teledome.gr [213.142.128.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3EEC43D48 for ; Wed, 18 Aug 2004 09:28:50 +0000 (GMT) (envelope-from nvass@teledome.gr) Received: from [192.168.1.71] (helo=iris.teledomenet.gr) by mailgate.teledome.gr with esmtp (Exim 4.34) id 1BxMwn-0004Zk-3B; Wed, 18 Aug 2004 12:41:33 +0300 From: Nikos Vassiliadis To: Duane Winner , freebsd-questions@freebsd.org Date: Wed, 18 Aug 2004 12:28:16 +0300 User-Agent: KMail/1.5.4 References: <41222679.7080000@att.net> <4122351E.7040205@att.net> <41223C19.1050800@att.net> In-Reply-To: <41223C19.1050800@att.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200408181228.16847.nvass@teledome.gr> Subject: Re: xtset or xtermset tricks? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 09:28:52 -0000 Since you use bash, you can use the variable PROMPT_COMMAND to execute something, just before the shell prints out PS1. And then you can set the xterm's title using something like this: echo -ne "\033]0;my xterm\007" Cheers, NikV On Tuesday 17 August 2004 20:10, Duane Winner wrote: > This is a little better: > > cd () > { > # do the actual cd > builtin cd "$@" > > # if in homedir, then make path '~', not full path > if [ $PWD == $HOME ]; then > XTDIR="~" > else > XTDIR="$PWD" > fi > > # set xtset title and icon to user@host:path > /usr/local/bin/xtset %u@%h:`echo $XTDIR` > } > > # force an xtset title at shell login: > cd > > > -Duane > > Duane Winner wrote: > > Found a solution! > > > > In ~/.bashrc, put this: > > > > cd () > > { > > builtin cd "$@" > > /usr/local/bin/xtset %u@%h:`pwd` > > } > > > > > > > > -Duane > > > > Duane Winner wrote: > >> Hello, > >> > >> Hey, does anybody know of any useful tricks for automating xtset or > >> xtermset? > >> > >> I use xtset to set the title and icon labels to user@host:path so I > >> can keep track of my xterms littered all over my desktop (pretty > >> frequent! :) > >> > >> But it sure would be nice to have them updated whenever I 'cd' to > >> another directory or 'su' to another user or 'ssh' to another host! > >> > >> I'm sure there's got to be someway to make this a little more seamless > >> then running # xtset %u@%h:`pwd` everytime, but I'm just not good > >> enough with shell programming to know how to do this. > >> > >> The closest I came was writing a small bash script that does: > >> > >> for filename in /dev/ttyp*; do > >> /usr/local/bin/xtset %u@%h:`pwd` > "$filename" > >> done > >> > >> And thought about cron'ing it (every minute), but the problem is that > >> when I tested this, all my xterms get the same title/icon based on who > >> is running the script and where at the time. No good :( > >> (And of course this would be useless to update the titles/icons for > >> xterms that are remote shells (ssh). > >> > >> > >> Any thoughts? > >> > >> Thanks! > >> Duane > >> _______________________________________________ > >> 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 Wed Aug 18 10:18:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDAF116A4CE for ; Wed, 18 Aug 2004 10:18:42 +0000 (GMT) Received: from webmail.tiscali.de (relay1.tiscali.de [62.26.116.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA2AB43D49 for ; Wed, 18 Aug 2004 10:18:41 +0000 (GMT) (envelope-from walter@pelissero.de) Received: from daemon.home.loc (62.246.48.34) by webmail.tiscali.de (6.7.019) id 40FB89FE008FD607 for freebsd-questions@freebsd.org; Wed, 18 Aug 2004 12:18:39 +0200 Received: from hyde.home.loc (hyde.home.loc [10.0.0.2]) by daemon.home.loc (8.13.1/8.12.8) with ESMTP id i7IAHp41000421 for ; Wed, 18 Aug 2004 12:17:51 +0200 (CEST) (envelope-from wcp@hyde.home.loc) Received: from hyde.home.loc (localhost [127.0.0.1]) by hyde.home.loc (8.12.10/8.12.8) with ESMTP id i7IAILoX000850 for ; Wed, 18 Aug 2004 12:18:21 +0200 (CEST) (envelope-from wcp@hyde.home.loc) Received: (from wcp@localhost) by hyde.home.loc (8.12.10/8.12.6/Submit) id i7IAILKH000847; Wed, 18 Aug 2004 12:18:21 +0200 (CEST) (envelope-from wcp) From: "Walter C. Pelissero" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16675.11500.845219.591909@hyde.home.loc> Date: Wed, 18 Aug 2004 12:18:20 +0200 To: freebsd-questions@freebsd.org X-Mailer: VM 7.16 under Emacs 21.3.50.1 X-Attribution: WP X-For-Spammers: blacklistme@pelissero.de Subject: dhclient fails to get lease X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: walter@pelissero.de List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 10:18:42 -0000 On my laptop I'm experiencing a problem with dhclient. When I bootstrap the laptop (FreeBSD 5.2.1) after the server (FreeBSD 4.10), dhclient fails to get a lease within a useful time, while, if I bootstrap the server after the laptop, it gets immediately the lease. When the client is stuck in the first scenario I kill dhclient and restart and this would fix the problem: killall dhclient dhclient ep0 The ep0 interface is a PCMCIA, 3Com Etherlink III 3C589. The only suspicious thing is a couple of messages on /var/log/messages of the laptop: Aug 18 12:01:39 hyde dhclient: send_packet: No route to host Aug 18 12:01:44 hyde dhclient: send_packet: No route to host The /etc/dhclient.conf on the laptop is: timeout 60; retry 30; select-timeout 5; initial-interval 2; omapi port 7911; The relevant rc.conf settings on the laptop look like: pccard_enable=YES removable_interfaces="ep0" ifconfig_ep0=DHCP The rc.conf settings for dhcpd on the server are (mostly defaults): dhcpd_enable=YES dhcpd_flags="-q -early_chroot" dhcpd_conf="/usr/local/etc/dhcpd.conf" dhcpd_ifaces="" dhcpd_umask="022" dhcpd_chuser_enable="YES" dhcpd_withuser="dhcpd" dhcpd_withgroup="dhcpd" dhcpd_chroot_enable=NO dhcpd_rootdir="/var/db/dhcpd" Any help is greatly appreciated. -- walter pelissero http://www.pelissero.de From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 10:40:39 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1365216A4CE for ; Wed, 18 Aug 2004 10:40:39 +0000 (GMT) Received: from dsl-mail.kamp.net (mail.kamp-dsl.de [195.62.99.42]) by mx1.FreeBSD.org (Postfix) with SMTP id 80A3B43D46 for ; Wed, 18 Aug 2004 10:40:37 +0000 (GMT) (envelope-from root@pukruppa.de) Received: (qmail 11559 invoked by uid 513); 18 Aug 2004 10:43:48 -0000 Received: from root@pukruppa.de by dsl-mail by uid 89 with qmail-scanner-1.21 Clear:RC:1(213.146.114.24):SA:0(-4.9/5.0):. Processed in 0.692347 secs); 18 Aug 2004 10:43:48 -0000 X-Spam-Status: No, hits=-4.9 required=5.0 Received: from unknown (HELO reverse-213-146-114-24.dialin.kamp-dsl.de) (213.146.114.24) by dsl-mail.kamp.net with SMTP; 18 Aug 2004 10:43:47 -0000 Date: Wed, 18 Aug 2004 12:41:30 +0200 (CEST) From: Peter Ulrich Kruppa X-X-Sender: root@pukruppa.net To: Kevin Stevens In-Reply-To: <067810B6-F0F4-11D8-BDC8-000A959CEE6A@pursued-with.net> Message-ID: <20040818123639.U820@pukruppa.net> References: <20040818084048.42957.qmail@web40106.mail.yahoo.com> <067810B6-F0F4-11D8-BDC8-000A959CEE6A@pursued-with.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: Dino Vliet cc: freebsd-questions@freebsd.org Subject: Re: freebsd compatible routers X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 10:40:39 -0000 On Wed, 18 Aug 2004, Kevin Stevens wrote: > > On Aug 18, 2004, at 01:40, Dino Vliet wrote: > >> @home we have a cable internet connection and I want >> to attach a router to it to be able to share the >> internet connection of 1 standalone winxp pc and a >> laptop running freebsd 4.10 >> The cable connection uses dhcp to assign me a >> ip-address. I also would like a switch to be able to >> set up a lan between the pc's at home. > Buy the cheapest > thing on sale (should be < $30 new if you shop around) and replace it later > if you need some specific different feature. If you are new to FreeBSD this really is the best idea to get started. With some experience you will be able to connect your FreeBSD machine directly to the internet and make it a gateway for all other workstations. Regards, Uli. +---------------------------+ | Peter Ulrich Kruppa | | Wuppertal | | Germany | +---------------------------+ From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 10:59:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 943FD16A4CE for ; Wed, 18 Aug 2004 10:59:05 +0000 (GMT) Received: from relay1.slt.lk (relay1.slt.lk [203.115.0.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A82B43D1F for ; Wed, 18 Aug 2004 10:59:04 +0000 (GMT) (envelope-from indunil@stafford.lk) Received: from stafford.lk (localhost [127.0.0.1]) by relay1.slt.lk (8.12.10/8.12.10) with ESMTP id i7IAvOca019586 for ; Wed, 18 Aug 2004 16:57:26 +0600 (LKT) Received: from indunil ([200.200.200.189]) (authenticated user indunil@stafford.lk) by stafford.lk (stafford.lk [200.200.200.150]) (MDaemon.PRO.v6.8.5.R) with ESMTP id 39-md50000000024.tmp for ; Wed, 18 Aug 2004 17:06:42 +0600 Message-ID: <001801c48513$55826be0$bdc8c8c8@indunil> From: "indunil" To: Date: Wed, 18 Aug 2004 17:05:45 +0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MIMEOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 X-Authenticated-Sender: indunil@stafford.lk X-Spam-Processed: stafford.lk, Wed, 18 Aug 2004 17:06:42 +0600 (not processed: message from valid local sender) X-MDRemoteIP: 200.200.200.189 X-Return-Path: indunil@stafford.lk X-MDaemon-Deliver-To: freebsd-questions@freebsd.org Subject: help !!!!! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: indunil List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 10:59:05 -0000 Hi, I installed FREEBSD 5.2.1. I can telnet to Free BSD box from Windows 2000 client. I can telnet to it with my USERNAME and PASSWORD. Then I want to be root. So I issue SU - ( or SU - root). then FreeBSD box asks me the password (root's password ). when I give root's password, FreeBSD box does not accept . Why ? Pls help me ... Thanks Indunil Jayasooriya Healthiness of the System 99.99% From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 11:00:02 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3365016A4CE for ; Wed, 18 Aug 2004 11:00:02 +0000 (GMT) Received: from abigail.blackend.org (blackend.org [212.11.35.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9A4443D31 for ; Wed, 18 Aug 2004 11:00:00 +0000 (GMT) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (localhost [127.0.0.1]) i7IAxtFW080240; Wed, 18 Aug 2004 12:59:55 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: (from marc@localhost) by abigail.blackend.org (8.12.11/8.12.11/Submit) id i7IAxnJ3080239; Wed, 18 Aug 2004 12:59:49 +0200 (CEST) (envelope-from marc) Date: Wed, 18 Aug 2004 12:59:49 +0200 From: Marc Fonvieille To: freebsd-questions@FreeBSD.org Message-ID: <20040818105949.GA78450@abigail.blackend.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="G4iJoqBmSsgzjUCe" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-Useless-Header: blackend.org X-Operating-System: FreeBSD 4.10-PRERELEASE cc: indunil Subject: [indunil@stafford.lk: help !!!!!!] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 11:00:02 -0000 --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline The freebsd-questions@FreeBSD.org mailing list is the right place to ask this sort of question. You have to add your user to the wheel group to be able to su. pw groupmod wheel -m yourusername should do the trick. Marc --G4iJoqBmSsgzjUCe Content-Type: message/rfc822 Content-Disposition: inline Return-Path: Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by abigail.blackend.org (8.12.11/8.12.11) with ESMTP id i7IAfsVT080051 for ; Wed, 18 Aug 2004 12:41:55 +0200 (CEST) (envelope-from owner-freebsd-doc@freebsd.org) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 3CA5C56C2E for ; Wed, 18 Aug 2004 10:41:53 +0000 (GMT) (envelope-from owner-freebsd-doc@freebsd.org) Received: by hub.freebsd.org (Postfix) id BEBC516A4CF; Wed, 18 Aug 2004 10:41:52 +0000 (GMT) Delivered-To: blackend@freebsd.org Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id AB38F16A4D1; Wed, 18 Aug 2004 10:41:52 +0000 (GMT) Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BFCC16A4CE for ; Wed, 18 Aug 2004 10:41:50 +0000 (GMT) Received: from relay1.slt.lk (relay1.slt.lk [203.115.0.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0E2643D48 for ; Wed, 18 Aug 2004 10:41:46 +0000 (GMT) (envelope-from indunil@stafford.lk) Received: from stafford.lk (localhost [127.0.0.1]) by relay1.slt.lk (8.12.10/8.12.10) with ESMTP id i7IAdvca014703 for ; Wed, 18 Aug 2004 16:39:58 +0600 (LKT) Received: from indunil ([200.200.200.189]) (authenticated user indunil@stafford.lk) by stafford.lk (stafford.lk [200.200.200.150]) (MDaemon.PRO.v6.8.5.R) with ESMTP id 29-md50000000024.tmp for ; Wed, 18 Aug 2004 16:49:04 +0600 Message-ID: <001c01c48510$df19afb0$bdc8c8c8@indunil> From: "indunil" To: Date: Wed, 18 Aug 2004 16:48:17 +0600 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 X-Authenticated-Sender: indunil@stafford.lk X-Spam-Processed: stafford.lk, Wed, 18 Aug 2004 16:49:04 +0600 (not processed: message from valid local sender) X-MDRemoteIP: 200.200.200.189 X-Return-Path: indunil@stafford.lk X-MDaemon-Deliver-To: freebsd-doc@freebsd.org Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: help !!!!!! X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: indunil List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: owner-freebsd-doc@freebsd.org Errors-To: owner-freebsd-doc@freebsd.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by abigail.blackend.org id i7IAfsVT080051 X-SpamProbe: GOOD 0.0000378 4823d03ecf1c34ebaa3fa04bf188ab37 Hi, I installed FREEBSD 5.2.1. I can telnet to Free BSD box from Windows 2000 client. I can telnet to it with my USERNAME and PASSWORD. Then I want to be root. So I issue SU - ( or SU - root). then FreeBSD box asks me the passwrd (root's password ). when I give root's password, FreeBSD box does not accept . Why ? Pls help me ... Thanks Indunil Jayasooriya Healthiness of the System 99.99% _______________________________________________ freebsd-doc@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-doc To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" --G4iJoqBmSsgzjUCe-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 11:00:19 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2789D16A512 for ; Wed, 18 Aug 2004 11:00:19 +0000 (GMT) Received: from postfix4-2.free.fr (postfix4-2.free.fr [213.228.0.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90E0A43D1F for ; Wed, 18 Aug 2004 11:00:18 +0000 (GMT) (envelope-from valery@no-log.org) Received: from [192.168.0.22] (gambetta-2-82-67-185-6.fbx.proxad.net [82.67.185.6]) by postfix4-2.free.fr (Postfix) with ESMTP id 1BBB31C6FF8 for ; Wed, 18 Aug 2004 13:00:17 +0200 (CEST) Message-ID: <41233699.8020106@no-log.org> Date: Wed, 18 Aug 2004 12:59:37 +0200 From: =?ISO-8859-1?Q?Val=E9ry?= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040616 X-Accept-Language: en-us, en MIME-Version: 1.0 To: questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Subject: KERNEL : Ethernet Device not recognized X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 11:00:19 -0000 Version : FreeBSDi386-5.2.1 Foreword : FreeBSD5.2.1 is used because 4.1 don't recognized my motherboard correctly. Hi, some trouble to start an integrated Ethernet Device by FreeBSD. Loader give the message : pci2: at device 8.0 (no driver attached) in my case, i'm using : MotherBoard : Asus P4SL8 / Pundit Ethernet : 3Com 3C920B-EM-WNM Integrated Fast Ethernet with this informations (returned by NT5.1) : PCI 2, device 8 (same as FreeBSD) IRQ 18 I/O : EC00-EC7F Memory : FE200000-FE20007F Here's the Kernel Configuration : * loader.conf I tried to load the module 'if_xl' on loader.conf but got the message that module was already loaded (default/loader.conf set the if_xl module_load to "NO")... * device.hints (5.2.1) hint.ed.0.at="isa" hint.ed.0.disable="0" hint.ed.0.port="0xec00" #Loader resp. : wrong hint.ed.0.irq="18" #Loader resp. : wrong IRQ - over 15 hint.ed.0.maddr="0xFE200000" #Loader resp. : wrong addr Well. My questions are : Q1 : how to attach a device driver on pci2.dev8 ? Q2 : how to setup correctly parms in device.hints ? Q3 : why loader say that if_xl is already loaded when setting up if_xl_load to "YES" ? Q4 : setting up verbose_loading="YES" has worked one time, but seem to be ignored by the loader now (no verbose in /var/log/messages) Why ? Thanks, as you understand i'm a very newbies on FreeBSD, i would like to migrate my Apache from NT5.1 to FreeBSD but without network i'm affraid that would be not possible :o) Regards, PS : i can't send you my /var/log/messages file because i can't write on my NTFS partition ("mount_ntfs" doesn't permit that) and have no floppy on my computer (a friend give me this computer, this was not my choice, sorry ..) -- Valéry Seys / Paris-France From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 11:04:08 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E766816A4CE for ; Wed, 18 Aug 2004 11:04:07 +0000 (GMT) Received: from mk-smarthost-4.mail.uk.tiscali.com (mk-smarthost-4.mail.uk.tiscali.com [212.74.114.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A87E43D3F for ; Wed, 18 Aug 2004 11:04:07 +0000 (GMT) (envelope-from fbsd-help@0x10.com) Received: from mk-webmail-1.b2b.uk.tiscali.com ([212.74.112.91]:3340) by mk-smarthost-4.mail.uk.tiscali.com with esmtp (Exim 4.30) id 1BxOEg-000Kx6-O5 for freebsd-questions@freebsd.org; Wed, 18 Aug 2004 12:04:06 +0100 Received: from exim by mk-webmail-1.b2b.uk.tiscali.com with local (Exim 4.24) id 1BxOEf-00071r-1y for freebsd-questions@freebsd.org; Wed, 18 Aug 2004 12:04:05 +0100 From: fbsd-help@0x10.com To: freebsd-questions@freebsd.org Date: Wed, 18 Aug 2004 12:04:04 +0100 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: Subject: (Another) NATD/IPFW port forwarding problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 11:04:08 -0000 .oO( Internet )Oo. || || [----DSL------] [ adsl router ] <- No Nat [-------------] | | | | | | B A [--------WL-------] [---BSD---] NAT -> [ wireless router ] [ bsd box ] [-----------------] [---------] X | | | | | | | |___________| Y [---------WEB--------] [ web server + media ] [--------------------] IP Addresses: A: External IP 82.*.*.A B: External IP 82.*.*.B X: Internal IP 192.168.1.101 Y: Internal IP 192.168.1.100 ### External Connectivity ### WEB -> WL -> (DSL) -> Internet [IP B] BSD -> (DSL) -> Internet [IP A] Require: Connection to A:80 forwarded to Y:80 ### Theoretical Solution ### Packet - [sourceip:port, destip:port] Packets IN [any:any, A:80] fwd/nat [A:80, X:80] [A:80, X:80] fwd/nat [X:80, Y:80] Packets OUT [Y:80, X:80] fwd/nat [X:80, A:80] [X:80, A:80] fwd/nat [A:80, any:any] ### Description ### Hiya, As you can hopefully see, i'm trying to port forward a connection to an external ip on my BSD be box to the internal ip address of a machine that sits behind a wireless router. Please advise as to whether my "Theoretical Solution" is indeed correct for this purpose. I've been playing around with NATD and IPFW for a while now, and just cannot get it to respond. Assuming my logic is correct, my problem seems to be translating it in to the require configs/rules for natd and ipfw. In an attempt to simplify the problem, i have set apache to run on all the IPs of the BSD box. A telnet to 82.*.*.A 80 gets an index file showing "default", whereas a telnet to 192.168.1.101 80 gets an index file showing "192.168.1.101", the obvious trick being to get a telnet to 82.*.*.A to display "192.168.1.101" As this is failing badly too, i assume i am doing some really wrong. As you will see, i have a /29 external subnet but we're only really interested in 82.*.*.A rl0 -> external NIC going to ADSL Router xl0 -> internal NIC going to Wireless Router IP Connectivity between all "hosts" is fine Details are as follows: ----- rc.conf ----- defaultrouter="82.*.*.*" hostname="XXX" ifconfig_rl0="inet 82.*.*.* netmask 255.255.255.248" ifconfig_rl0_alias0="inet 82.*.*.A netmask 255.255.255.255" ifconfig_rl0_alias1="inet 82.*.*.* netmask 255.255.255.255" ifconfig_rl0_alias2="inet alias 82.*.*.* netmask 255.255.255.255" ifconfig_xl0="inet 192.168.1.101 netmask 255.255.255.0" ifconfig_xl0_alias0="inet 192.168.1.111 netmask 255.255.255.255" gateway_enable="YES" natd_enable="YES" natd_interface="rl0" natd_flags="-f /etc/natd.conf" portmap_enable="YES" firewall_enable="YES" firewall_type="/etc/ipfw.rules/default" firewall_quiet="NO" ----- natd.conf ----- interface rl0 same_ports yes redirect_port tcp 192.168.1.101:80 80 ----- KERNAL ----- options IPFIREWALL options IPFIREWALL_DEFAULT_TO_ACCEPT options IPFILTER options IPFILTER_LOG options IPDIVERT Cheers for the help!!! From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 11:30:30 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 236FE16A4CE for ; Wed, 18 Aug 2004 11:30:30 +0000 (GMT) Received: from frontend1.messagingengine.com (frontend1.messagingengine.com [66.111.4.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAE5443D5C for ; Wed, 18 Aug 2004 11:30:29 +0000 (GMT) (envelope-from judmarc@fastmail.fm) Received: from server2.messagingengine.com (server2.internal [10.202.2.133]) by frontend1.messagingengine.com (Postfix) with ESMTP id 627DCC14566; Wed, 18 Aug 2004 07:30:28 -0400 (EDT) Received: by server2.messagingengine.com (Postfix, from userid 99) id 878298365B; Wed, 18 Aug 2004 07:30:28 -0400 (EDT) Content-Disposition: inline Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="ISO-8859-1" MIME-Version: 1.0 X-Mailer: MIME::Lite 1.4 (F2.72; T1.001; A1.62; B3.01; Q3.01) References: <4121C262.6020409@att.net> <20040817183040.3511.LUKEK@meibin.net> <41228B16.80804@att.net> In-Reply-To: <41228B16.80804@att.net> To: "Jay O'Brien" , "FreeBSD - questions" Date: Wed, 18 Aug 2004 07:30:28 -0400 From: "Jud" X-Sasl-Enc: oewoy4g3fsXPaS73YxvxDg 1092828628 Message-Id: <1092828628.13079.202564342@webmail.messagingengine.com> Subject: Re: X configuration problem - new info X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 11:30:30 -0000 On Tue, 17 Aug 2004 15:47:50 -0700, "Jay O'Brien" said: [snip] > After over an hour and a half of downloading (and I have a 1.3MHz DSL) I > tried again. Now I get different error messages, and I don't understand > at all what this unwanted download has done to my computer. > The errors are: > > VGA(0): Virtual height (0) is too small for the hardware (min 1) > Screen(s) found, but none have a usable configuration. > > I'm going to wipe the HD clean again and start over, using my current ISO > CD. This download, with many separate unrelated files, has me really > concerned about what I unwittingly added to my HD. I don't even know > where all the files I saw come in are now placed on the HD! Seems like the problems are with X config rather than what files are living on your HD. There are any number of X config files/tutorials on the Net to read through and compare to what you're getting in /etc/X11/XF86Config. If that doesn't give you a good idea what to fix, send your config file to the list so someone smarter than I am can help you. ;-) > Is there any disadvantage to installing XFree86 with # pkg_add -r XFree86 > as compared to using /stand/sysinstall, select Configure | XFree86 ? You just have to do the config step separately after pkg_add. Otherwise, no difference I'm aware of. Jud From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 11:31:31 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55FED16A4CE for ; Wed, 18 Aug 2004 11:31:31 +0000 (GMT) Received: from smtp.hispeed.ch (mxout.hispeed.ch [62.2.95.247]) by mx1.FreeBSD.org (Postfix) with ESMTP id 868C843D46 for ; Wed, 18 Aug 2004 11:31:30 +0000 (GMT) (envelope-from spreng@socket.ch) Received: from [192.168.0.25] (80-218-242-242.dclient.hispeed.ch [80.218.242.242])i7IBVSuL004861; Wed, 18 Aug 2004 13:31:29 +0200 Message-ID: <41233E10.3070004@socket.ch> Date: Wed, 18 Aug 2004 13:31:28 +0200 From: Thomas Spreng User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040813) X-Accept-Language: en-us, en MIME-Version: 1.0 To: indunil References: <001801c48513$55826be0$bdc8c8c8@indunil> In-Reply-To: <001801c48513$55826be0$bdc8c8c8@indunil> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: help !!!!! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 11:31:31 -0000 hi, please be more specific when asking a question. Read http://www.freebsd.org/doc/en_US.ISO8859-1/articles/freebsd-questions/ about how to ask question on this list. as a second note, read the User Account Management documentation (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/users.html). > I installed FREEBSD 5.2.1. I can telnet to Free BSD box from Windows 2000 > client. I can telnet to it with my USERNAME and PASSWORD. Then I want to be > root. So I issue SU - ( or SU - root). then FreeBSD box asks me the > password (root's password ). > when I give root's password, FreeBSD box does not accept . Why ? Pls help me > ... it's a very bad idea to use telnet for obvious security reasons. Use ssh. Please note that toor and root both have a password of their own and you'll have to be in their group in order to su. Cheers From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 11:50:54 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4F7B16A4CE for ; Wed, 18 Aug 2004 11:50:54 +0000 (GMT) Received: from postfix4-2.free.fr (postfix4-2.free.fr [213.228.0.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 640F543D62 for ; Wed, 18 Aug 2004 11:50:54 +0000 (GMT) (envelope-from valery@no-log.org) Received: from [192.168.0.22] (gambetta-2-82-67-185-6.fbx.proxad.net [82.67.185.6]) by postfix4-2.free.fr (Postfix) with ESMTP id 8ECD51C7660 for ; Wed, 18 Aug 2004 13:50:53 +0200 (CEST) Message-ID: <41234275.3020508@no-log.org> Date: Wed, 18 Aug 2004 13:50:13 +0200 From: =?ISO-8859-1?Q?Val=E9ry?= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040616 X-Accept-Language: en-us, en MIME-Version: 1.0 To: questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Subject: KERNEL : ethernet device not present on if_xl module X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 11:50:54 -0000 Version : FreeBSDi386-5.2.1 Foreword : FreeBSD5.2.1 is used because 4.1 don't recognized my motherboard correctly. Note : this email following : "KERNEL : Ethernet Device not recog." by valery@no-log.org at Wed, 18 August 10:59 GMT Hi, it seem that the following PCI_ID is not included in the module if_xl.c : PCI_ID: 9202 Relative to: 3Com 3C920B-EMB-WNM Integrated Fast Ethernet Controller Question : Q1 : how to obtain a certified if_xl module with this PCI_ID ? (if_xl.c have only the 9201 PCI_ID, could we use this one by renaming it ?) A compiled .ko version will be nice. Thank, -- Valéry Seys / Paris-France From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 02:33:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEAE816A4CE for ; Wed, 18 Aug 2004 02:33:42 +0000 (GMT) Received: from maillog.itri.org.tw (itri.org.tw [210.68.176.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id C80A843D31 for ; Wed, 18 Aug 2004 02:33:41 +0000 (GMT) (envelope-from lily@itri.org.tw) Received: from mail.itri.org.tw (mail [140.96.157.2]) by maillog.itri.org.tw (8.11.6+Sun/8.11.6) with ESMTP id i7I2aj405537 for ; Wed, 18 Aug 2004 10:36:45 +0800 (CST) Received: from ms3.itri.org.tw (ms3.itri.org.tw [140.96.150.43]) by mail.itri.org.tw (8.11.6+Sun/8.11.6) with ESMTP id i7I2SiT08266 for ; Wed, 18 Aug 2004 10:28:45 +0800 (CST) Received: from 17088036901 ([140.96.254.153]) by ms3.itri.org.tw (Lotus Domino Release 5.0.11) with ESMTP id 2004081810333406:5284 ; Wed, 18 Aug 2004 10:33:34 +0800 Message-ID: <00dc01c484cb$c2444ca0$52a4608c@ITRI.DS> From: "lily" To: Date: Wed, 18 Aug 2004 10:33:34 +0800 MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-MIMETrack: Itemize by SMTP Server on MS3/ITRI(Release 5.0.11 |July 24, 2002) at 2004-08-18 10:33:34 AM,2004-08-18 10:33:39 AM, Serialize complete at 2004-08-18 10:33:39 AM X-Mailman-Approved-At: Wed, 18 Aug 2004 12:47:22 +0000 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Config freebsd as getway X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 02:33:43 -0000 Dear all: I have install freebsd 4.x,and have two netcards. I want it as getway. I have config gateway_enable=3DYES in rc.conf,and then reboot. [a pc]--------[freebsd]-------[b pc] After reboot , I try to use a pc to ping b pc ,it`s not work ,but a pc = and b pc can ping freebsd successful,why? Please give me a hand. Thanks!! LILY From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 12:55:46 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EC5A16A4CE for ; Wed, 18 Aug 2004 12:55:46 +0000 (GMT) Received: from bmyster.com (loqtis.bmyster.com [66.55.195.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C08143D48 for ; Wed, 18 Aug 2004 12:55:45 +0000 (GMT) (envelope-from mrb@bmyster.com) Received: from loqtis.bmyster.com (localhost.bmyster.com [127.0.0.1]) by bmyster.com (8.12.11/8.12.11) with ESMTP id i7ID2ocP001148 for ; Wed, 18 Aug 2004 09:02:54 -0400 (EDT) Received: (from www@localhost) by loqtis.bmyster.com (8.12.11/8.12.11/Submit) id i7ID2jRN001147; Wed, 18 Aug 2004 09:02:45 -0400 (EDT) X-Authentication-Warning: loqtis.bmyster.com: www set sender to mrb@bmyster.com using -f Received: from 65.175.134.2 (SquirrelMail authenticated user mrb) by new.host.name with HTTP; Wed, 18 Aug 2004 09:02:45 -0400 (EDT) Message-ID: <1099.65.175.134.2.1092834165.squirrel@new.host.name> Date: Wed, 18 Aug 2004 09:02:45 -0400 (EDT) From: "Brent Bailey" To: questions@freebsd.org User-Agent: SquirrelMail/1.4.0 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 X-Priority: 3 Importance: Normal Subject: help !?!? portmap , what is it used for ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: mrb@bmyster.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 12:55:46 -0000 Im running a freebsd 4.10 and the other morning i noticed this in my "ps -ax" output. 13560 ?? Is 0:00.00 portmap 218.49.183.17 Now ive denied portmap from /etc/hosts.allow ...however accrding to the above ps listing ...this IP managed to make a connection to portmap .. what portmap used for ?? and does this mean the box has been compromised ? thank you in advance for any help -- Brent Bailey From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 12:57:17 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 480F616A4CE for ; Wed, 18 Aug 2004 12:57:17 +0000 (GMT) Received: from bmyster.com (loqtis.bmyster.com [66.55.195.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE0CE43D1F for ; Wed, 18 Aug 2004 12:57:16 +0000 (GMT) (envelope-from misterb@bmyster.com) Received: from loqtis.bmyster.com (localhost.bmyster.com [127.0.0.1]) by bmyster.com (8.12.11/8.12.11) with ESMTP id i7ID4Q1K001189 for ; Wed, 18 Aug 2004 09:04:26 -0400 (EDT) Received: (from www@localhost) by loqtis.bmyster.com (8.12.11/8.12.11/Submit) id i7ID4KT0001188; Wed, 18 Aug 2004 09:04:20 -0400 (EDT) X-Authentication-Warning: loqtis.bmyster.com: www set sender to misterb@bmyster.com using -f Received: from 65.175.134.2 (SquirrelMail authenticated user mrb) by new.host.name with HTTP; Wed, 18 Aug 2004 09:04:20 -0400 (EDT) Message-ID: <1103.65.175.134.2.1092834260.squirrel@new.host.name> Date: Wed, 18 Aug 2004 09:04:20 -0400 (EDT) From: "Brent Bailey" To: questions@freebsd.org User-Agent: SquirrelMail/1.4.0 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 X-Priority: 3 Importance: Normal Subject: help!?!? portmap , what is it used for ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: misterb@bmyster.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 12:57:17 -0000 forgive me for posting this twice...i forgot what email address is allowd on this list...anywho.. Im running a freebsd 4.10 and the other morning i noticed this in my "ps -ax" output. 13560 ?? Is 0:00.00 portmap 218.49.183.17 Now ive denied portmap from /etc/hosts.allow ...however accrding to the above ps listing ...this IP managed to make a connection to portmap .. what portmap used for ?? and does this mean the box has been compromised ? thank you in advance for any help -- Brent Bailey -- Brent Bailey CCNA Bmyster LLC Computer Networking and Webhosting Network Engineer, Webmaster, President http://www.bmyster.com mrb@bmyster.com 207-247-8330 From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 13:08:08 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99B4D16A4CE for ; Wed, 18 Aug 2004 13:08:08 +0000 (GMT) Received: from dawghouse.internet-helpers.net (node762.fsip.execulink.com [69.63.33.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA46243D2D for ; Wed, 18 Aug 2004 13:08:07 +0000 (GMT) (envelope-from admin@internet-helpers.net) Received: (qmail 96000 invoked by uid 1004); 18 Aug 2004 13:05:33 -0000 Received: from admin@internet-helpers.net by dawghouse.internet-helpers.net by uid 89 with qmail-scanner-1.21 (clamdscan: 0.67-1. spamassassin: 2.63. Clear:RC:1(206.186.13.86):. Processed in 0.167201 secs); 18 Aug 2004 13:05:33 -0000 Received: from unknown (HELO teamlead) (admin@internet-helpers.net@206.186.13.86) by node762.fsip.execulink.com with SMTP; 18 Aug 2004 13:05:32 -0000 Message-ID: <00aa01c48524$66186c50$560dbace@call.gtn.ca> From: "Rob G" To: "lily" References: <00dc01c484cb$c2444ca0$52a4608c@ITRI.DS> Date: Wed, 18 Aug 2004 09:08:02 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 cc: freebsd-questions@freebsd.org Subject: Re: Config freebsd as getway X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 13:08:08 -0000 Ok my setup is something a little different but still works on the same premise Internal Lan --- 10base Hub --- FBSD -- Internet THe only thing that I have different is the 24 port hub inbetween my lan and the FreeBSD box. It's been awhile since it was configured but here is an excerpt from my rc.conf file: network devices="vr0 dc0 lc0" ifconfig_vr0="media10BaseT/UTP up" (This is my internet connection) ifconfig_dc0="***.***.***.*** 255.255.255.0" (Lan Card) gateway_enable="yes" The ip for the internal LAN has been masked because they are routable IP's and I am having problems with attacks on my network right now. I am not sure you can do what you want to without a hub between a pc and b pc as if my logic serves me correct both network cards would have to be set as a gateway. Hopefully this gets you pointed in the right direction. Rob G No Special Titles ----- Original Message ----- From: "lily" To: Sent: Tuesday, August 17, 2004 10:33 PM Subject: Config freebsd as getway Dear all: I have install freebsd 4.x,and have two netcards. I want it as getway. I have config gateway_enable=YES in rc.conf,and then reboot. [a pc]--------[freebsd]-------[b pc] After reboot , I try to use a pc to ping b pc ,it`s not work ,but a pc and b pc can ping freebsd successful,why? Please give me a hand. Thanks!! LILY _______________________________________________ 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 Aug 18 13:11:43 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0003316A4CE for ; Wed, 18 Aug 2004 13:11:42 +0000 (GMT) Received: from out009.verizon.net (out009pub.verizon.net [206.46.170.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F7CD43D53 for ; Wed, 18 Aug 2004 13:11:42 +0000 (GMT) (envelope-from leblanc@keyslapper.org) Received: from localhost ([141.154.19.31]) by out009.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040818131141.NIHZ23440.out009.verizon.net@localhost> for ; Wed, 18 Aug 2004 08:11:41 -0500 Received: from keyslapper.org (localhost [127.0.0.1]) by localhost (8.12.11/8.12.11) with ESMTP id i7IDBlw2076487 for ; Wed, 18 Aug 2004 09:11:47 -0400 (EDT) (envelope-from leblanc@keyslapper.org) Received: (from leblanc@localhost) by keyslapper.org (8.12.11/8.12.11/Submit) id i7IDBkFn076486 for questions@freebsd.org; Wed, 18 Aug 2004 09:11:46 -0400 (EDT) (envelope-from leblanc) Date: Wed, 18 Aug 2004 09:11:46 -0400 From: Louis LeBlanc To: FreeBSD - questions Message-ID: <20040818131146.GC76179@keyslapper.org> Mail-Followup-To: FreeBSD - questions References: <4122D175.8060707@att.net> <4122FEE1.8040000@att.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <4122FEE1.8040000@att.net> User-Agent: Mutt/1.5.6i X-Authentication-Info: Submitted using SMTP AUTH at out009.verizon.net from [141.154.19.31] at Wed, 18 Aug 2004 08:11:41 -0500 Subject: Re: scrollback history buffer setting (was keyboard) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 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, 18 Aug 2004 13:11:43 -0000 On 08/18/04 12:01 AM, Jay O'Brien sat at the `puter and typed: > Jay O'Brien wrote: > > > I can run kbdcontrol -h 500 or vidcontrol -h 500 to set the > > scroll back keyboard history buffer to 500 lines for the > > virtual terminal I'm using. How can I make that happen at > > boot, in the same manner as I run allscreens_flags in > > rc.conf to set other terminal parameters? I don't need > > this to set all of the virtual terminals; it would be > > nice if each terminal could be set separately. > > > > It doesn't work for me when placed in rc.conf, with either > > a direct command or attempting to use allscreens_flags. > > > > I'm using 4.10. > > > > Jay O'Brien > > Rio Linda, CA USA > > Follow-up: > > Re-reading the above could be interpreted that I want to be able > to review more keyboard lines; not so. I should not have used the > word "keyboard". I'm looking for redisplay of the screen lines. > Both kbdcontrol and vidcontrol perform that function. I've built > a workaround by adding this to root and user .cshrc: > alias bu vidcontrol -h (with a space following). > This allows me to type 'bu 500' to set the buffer to 500 lines. > > In addition, I would like to be able to set it during boot. Is > that possible? I might be misunderstanding you, but if you're talking about the number of lines you want to be able to scroll up in an xterm, I use the X resource in ~/.Xdefaults. Not sure what vidcontrol has to do with this, but the following in .Xdefaults does this for me: xterm*saveLines: 500 HTH Lou -- Louis LeBlanc FreeBSD@keyslapper.org Fully Funded Hobbyist, KeySlapper Extrordinaire :) http://www.keyslapper.org Ô¿Ô¬ Tact, n.: The unsaid part of what you're thinking. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 13:37:52 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3952616A4CE for ; Wed, 18 Aug 2004 13:37:52 +0000 (GMT) Received: from lakermmtao03.cox.net (lakermmtao03.cox.net [68.230.240.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id B268043D45 for ; Wed, 18 Aug 2004 13:37:51 +0000 (GMT) (envelope-from jacoulter@jacoulter.net) Received: from [68.105.58.150] by lakermmtao03.cox.net (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709) with SMTP id <20040818133749.GGYP12724.lakermmtao03.cox.net@[68.105.58.150]>; Wed, 18 Aug 2004 09:37:49 -0400 Received: by _HOSTNAME_ (sSMTP sendmail emulation); Wed, 18 Aug 2004 08:37:34 -0500 From: "James A. Coulter" Date: Wed, 18 Aug 2004 08:37:34 -0500 To: AETCH Message-ID: <20040818133734.GA6786@sara.mshome.net> Mail-Followup-To: AETCH , freebsd-questions@freebsd.org References: <200372004831873631906@ms12.url.com.tw> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200372004831873631906@ms12.url.com.tw> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: problem with getway X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 13:37:52 -0000 On Wed, Aug 18, 2004 at 03:36:31PM +0800, AETCH wrote: > I have install freebsd 4.x,and have two netcards. > I want it as getway. > I have config "gateway_enable=YES" in rc.conf,and then reboot. > [a pc]--------[freebsd]-------[b pc] > After reboot , I try to use a pc to ping b pc ,it`s not work ,but a pc and > b pc can ping freebsd successful,why? > Please give me a hand. > Thanks!! > > aetch Have you built a kernel with IPFW enabled and have you enabled natd in your rc.conf? Both IPFW (or perhaps IPFILTER) must be enabled to allow packet forwarding. Just setting gateway="yes" in rc.conf isn't enough (I know - I made the same mistake) You will have to enable natd and IPFW (or maybe IPFILTER) in rc.conf and build a custom kernel with IPFW enabled. Here's the lines I added to my kernel: # IP Aliasing and Firewall options options IPFIREWALL options IPFIREWALL_VERBOSE options IPFIREWALL_VERBOSE_LIMIT=10 options IPDIVERT and here's what I put in my rc.conf: gateway_enable="YES" natd_enable="YES" natd_interface="dc1" natd_flags="-dynamic" You will also need to enable the firewall in rc.conf - what follows is for an entirely OPEN firewall, i.e. it allows anything and everything through. (But you must have the firewall enabled to use the IP forwarding capabilities): firewall_enable="YES" #firewall_type="OPEN" #firewall_script="/etc/openfirewall.rules" and the contents of /etc/openfirewall.rules: /sbin/ipfw -f flush /sbin/ipfw add divert natd all from any to any via dc1 /sbin/ipfw add pass all from any to any Chapter 8 of the handbook (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html) and Chapter 14, Section 8 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/firewalls.html have most of the information you'll need. In future posts, paste the contents of your rc.conf and any other files involved- that will help the list answer your question more quickly. HTH Jim From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 13:41:32 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53E3C16A4CE for ; Wed, 18 Aug 2004 13:41:32 +0000 (GMT) Received: from redhat.vipersystems.biz (oh-69-68-43-130.sta.sprint-hsd.net [69.68.43.130]) by mx1.FreeBSD.org (Postfix) with SMTP id 58D6A43D31 for ; Wed, 18 Aug 2004 13:41:31 +0000 (GMT) (envelope-from jason@vipersystems.biz) Received: (qmail 27337 invoked by uid 85); 18 Aug 2004 13:41:30 -0000 Received: from jason@vipersystems.biz by redhat.vipersystems.biz by uid 82 with qmail-scanner-1.16 (clamscan: 0.65. spamassassin: 2.61. Clear:. Processed in 1.396242 secs); 18 Aug 2004 13:41:30 -0000 Received: from localhost (HELO vipersystems.biz) (127.0.0.1) by localhost with SMTP; 18 Aug 2004 13:41:28 -0000 Received: from 192.168.1.150 (SquirrelMail authenticated user jason@vipersystems.biz) by vipersystems.biz with HTTP; Wed, 18 Aug 2004 09:41:29 -0400 (EDT) Message-ID: <4152.192.168.1.150.1092836489.squirrel@vipersystems.biz> Date: Wed, 18 Aug 2004 09:41:29 -0400 (EDT) From: "Jason Lieurance" To: X-Priority: 3 Importance: Normal X-Mailer: SquirrelMail (version 1.2.12[cvs]) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: Nightly cron message question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 13:41:32 -0000 Hello, Late couple days on our Freebsd 4.7 email/web server I've got this message in the nightly cron jobs: Checking setuid files and devices: Checking for uids of 0: root 0 toor 0 I've searched and some said it had to do with an incomplete dmesg or something like that. There are some errors: > pid 82522 (libhttpd.ep), uid 65534: exited on signal 11 > pid 71857 (libhttpd.ep), uid 65534: exited on signal 11 > pid 71949 (libhttpd.ep), uid 65534: exited on signal 11 but I've had those before w/o the: Checking for uids of 0: root 0 toor 0 Any thoughts, thanks. -- Jason From owner-freebsd-questions@FreeBSD.ORG Wed Aug 18 13:48:36 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C408016A4CE for ; Wed, 18 Aug 2004 13:48:36 +0000 (GMT) Received: from ns2.wananchi.com (ns2.wananchi.com [62.8.64.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 963A643D48 for ; Wed, 18 Aug 2004 13:48:34 +0000 (GMT) (envelope-from wash@wananchi.com) Received: from wash by ns2.wananchi.com with local (Exim 4.41 #0 (FreeBSD 4.10-STABLE)) id 1BxQnq-000LVX-VZ by authid for ; Wed, 18 Aug 2004 16:48:34 +0300 Date: Wed, 18 Aug 2004 16:48:34 +0300 From: Odhiambo Washington To: freebsd-questions@freebsd.org Message-ID: <20040818134834.GD63092@ns2.wananchi.com> Mail-Followup-To: Odhiambo Washington , freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Disclaimer: Any views expressed in this message,where not explicitly attributed otherwise, are mine alone!. X-Mailer: Mutt 1.5.6i (2004-02-01) X-Designation: Systems Administrator, Wananchi Online Ltd. X-Location: Nairobi, KE, East Africa. User-Agent: Mutt/1.5.6i Subject: HP Netserver RAID Controller + FreeBSD 4.10 problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 13:48:36 -0000 Dear Ladies and Gentlemen, I'd appreciate some help/clues on how to solve the following problem. I have acquired some 3 old-ish HP Netserver LH4r. They come with built-in RAID adapters. I have installed FreeBSD (well, that is the only one I could anyway), but I am hitting a snag: When I boot up the box, it refuses to automount the root fs, then takes me to "Manual Root File System specification" option. When I specify ufs:/dev/amrd0s1a then the box boots. What I don't understand is why it is refusing to obey the same thing in fstab.. My /etc/fstab contains the correct entries - /dev/amrd0s1{a|e|f} and I have even compiled a kernel with support for "amr". I have three such boxes (God forbid if they all refuse to run FreeBSD). Here is a dmesg output of what I am going through: Copyright (c) 1992-2004 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.10-STABLE #1: Wed Aug 18 09:00:05 EAT 2004 root@ns.wananchi.com:/usr/obj/usr/src/sys/SRV4.x Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (500.03-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x672 Stepping = 2 Features=0x387fbff real memory = 1073676288 (1048512K bytes) avail memory = 1041215488 (1016812K bytes) Preloaded elf kernel "kernel" at 0xc03a5000. VESA: v2.0, 1024k memory, flags:0x0, mode table:0xc0337d42 (1000022) VESA: Cirrus Logic GD-5446 VGA netsmb_dev: loaded Pentium Pro MTRR support enabled Using $PIR table, 14 entries at 0xc00fdee0 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 2.0 on pci0 pci1: on pcib1 xl0: <3Com 3c905B-TX Fast Etherlink XL> port 0xa000-0xa07f mem 0xe8100000-0xe810007f irq 11 at device 3.0 on pci1 xl0: Ethernet address: 00:50:da:39:d8:2f miibus0: on xl0 ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto amr0: mem 0xf0000000-0xf7ffffff irq 10 at device 2.1 on pci0 amr0: Firmware D.02.05, BIOS B.01.04, 16MB RAM pcib2: at device 3.0 on pci0 pci2: on pcib2 xl1: <3Com 3c905-TX Fast Etherlink XL> port 0xb000-0xb03f irq 12 at device 2.0 on pci2 xl1: Ethernet address: 00:a0:24:e1:77:34 miibus1: on xl1 nsphy0: on miibus1 nsphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pci0: (vendor=0x103c, dev=0x10c1) at 6.0 pci0: at 8.0 isab0: at device 15.0 on pci0 isa0: on isab0 atapci0: port 0x9020-0x902f at device 15.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 15.2 chip0: port 0x1040-0x104f at device 15.3 on pci0 pcib3: at device 18.0 on pci0 orm0: