From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 00:01:30 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D72D637B401; Sun, 10 Aug 2003 00:01:30 -0700 (PDT) Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 557A043FA3; Sun, 10 Aug 2003 00:01:30 -0700 (PDT) (envelope-from qhwt@myrealbox.com) Received: from me qhwt@smtp-send.myrealbox.com [220.13.16.139] $ on Novell NetWare; Sun, 10 Aug 2003 01:01:33 -0600 Date: Sun, 10 Aug 2003 16:01:29 +0900 From: qhwt@myrealbox.com To: questions@FreeBSD.org Message-ID: <20030810070129.GA1045@myrealbox.com> References: <20030804023319.GA969@myrealbox.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030804023319.GA969@myrealbox.com> User-Agent: Mutt/1.5.4i cc: ports@FreeBSD.org cc: qhwt@myrealbox.com Subject: Who to report bugs in wide-dhcp? (was Re: wide-dhcps dumps core freeing modified pointer) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 07:01:31 -0000 Hello. On Mon, Aug 04, 2003 at 11:33:19AM +0900, qhwt@myrealbox.com wrote: > wide-dhcps dumps core upon boot if the bind file exists and non-empty > (actually I haven't tested if it dumps core even when the file exists > AND is empty, but who cares... :) > The bind file sometimes contains garbage (malloc error message) > after the core dump, but even if I delete the garbage and try to start dhcps > result in the same core dump. > The core dump occurs in function read_subnet() defined in server/database.c, > trying to free() a line buffer via a pointer already modified by prs_inaddr() > called from get_ip(). > The following patch seem to remedie the core dump. > > (I believe MIHIRA-san is the original author of this software, right?) > Regards. > > --- database.c.orig Fri Jan 1 22:35:33 1999 > +++ database.c Sun Aug 3 19:55:32 2003 > @@ -560,15 +560,15 @@ > char **cp; > struct in_addr *subnet; > { > - char *tmpstr; > + char *tmpstr, *line; > struct in_addr *tmpaddr; > > - if ((tmpstr = get_string(cp)) == NULL) { > + if ((line = get_string(cp)) == NULL) { > errno = 0; > syslog(LOG_WARNING, "Can't get strings"); > return(-1); > } > - > + tmpstr = line; > if ((tmpaddr = get_ip(&tmpstr)) == NULL) { > errno = 0; > syslog(LOG_WARNING, "get_ip() error in read_subnet()"); > @@ -576,7 +576,7 @@ > } > > *subnet = *tmpaddr; > - free(tmpstr); > + free(line); > free(tmpaddr); > > return(0); > > Does anyone know who to report bugs in wide-dhcp? I've found a bug in wide-dhcp ports the other day, and reported to ports@FreeBSD.org because the Makefile says it's the maintainer of the port. However, I've received no responses from anyone since then. Shortly after that, I realized that the bug itself is in the original code rather than FreeBSD patches, so I must have sent it to the original author, and that MIHIRA-san is not, because I had no responses from him, even though I Cc:'d on him. Then I found in one of installed documents that bug report should be sent to dhcp-dist@wide.ad.jp . I did, and the mail server at wide.ad.jp said there's no such account there. Or, should I send-pr even if I'm sure the bug is in the orignal code rather than in the FreeBSD ports? But I don't feel like using it because I don't know(and not interested in) how to configure it use my mailer instead of sendmail(1), Regards. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 00:10:04 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FF4237B401; Sun, 10 Aug 2003 00:10:04 -0700 (PDT) Received: from nezlok.unixathome.org (nezlok.unixathome.org [64.251.88.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E9F343FA3; Sun, 10 Aug 2003 00:10:03 -0700 (PDT) (envelope-from dan@nezlok.unixathome.org) Received: by nezlok.unixathome.org (Postfix, from userid 1000) id 76E77AE4DE; Sun, 10 Aug 2003 00:10:01 -0700 (PDT) From: Dan Langille To: freebsd-newbies@freebsd.org, freebsd-questions@freebsd.org Message-Id: <20030810071001.76E77AE4DE@nezlok.unixathome.org> Date: Sun, 10 Aug 2003 00:10:01 -0700 (PDT) Subject: The FreeBSD Diary: 2003-07-20 - 2003-08-09 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 07:10:04 -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 - DVL Software Limited The FreeBSD Diary - http://www.FreeBSDDiary.org/ - practical examples FreshPorts - http://www.FreshPorts.org/ - the place for ports FreshSource - http://www.FreshSource.org/ - the place for source From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 00:12:06 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25BCB37B401 for ; Sun, 10 Aug 2003 00:12:06 -0700 (PDT) Received: from zim.0x7e.net (zim.0x7e.net [203.38.184.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 185C443F85 for ; Sun, 10 Aug 2003 00:12:05 -0700 (PDT) (envelope-from listone@deathbeforedecaf.net) Received: from goo.0x7e.net ([203.38.184.164] helo=goo) by zim.0x7e.net with smtp (Exim 3.36 #1) id 19lkMx-00036r-00; Sun, 10 Aug 2003 16:41:59 +0930 Message-ID: <002101c35f0e$b09fcf30$a4b826cb@goo> From: "Rob" To: "Chris" , References: <200308090347.55304.racerx@makeworld.com> Date: Sun, 10 Aug 2003 16:41:58 +0930 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4927.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4927.1200 Subject: Re: Think outside of the box (Gawd, I hate that term) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 07:12:06 -0000 It's a wonderful idea. To have a chance, you would need * leader(s) with a convincing vision for 'the new thing' * long-term financial backing * hardware design expertise * partnerships with major hardware manufacturers You also need a target market that is * under-serviced by the current vendors * small enough not to be worth fighting over * large enough to keep you financial * prepared to disown all their existing applications If you get all this, and are incredibly lucky, you will become Apple. But you're much more likely to end up as Be Inc. ----- Original Message ----- From: "Chris" Subject: Think outside of the box (Gawd, I hate that term) > Guys (and gals) > > As great as the *BSD's are - why are we not thinking ahead of the curve? > Outside of the box? What do I mean? Well - why not develope our OS's to run > on an arch. that isn't out yet - MAKE that new arch. just like Gates did so > many years ago. He defined the x86 market - why can't we do the same? > > With all the thinkers out there (Jordan, Theo) wouln't that be thebetter way > to go? > > Just a thought - and willing to confess, I have zero clue how to get there. > But, we need to get there. > -- > > Best regards, > Chris > From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 00:58:50 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F1BB37B401 for ; Sun, 10 Aug 2003 00:58:50 -0700 (PDT) Received: from shell.spyder.web.za (shell.spyder.web.za [193.201.200.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EC8D44005 for ; Sun, 10 Aug 2003 00:58:49 -0700 (PDT) (envelope-from ljb@neverborn.org) Received: from 210-54-209-26.jetstart.xtra.co.nz ([210.54.209.26] helo=ash.axis.bitserf.org) by shell.spyder.web.za with smtp (Exim 3.36 #1) id 19ll6E-0008JU-00 for questions@freebsd.org; Sun, 10 Aug 2003 08:58:47 +0100 Received: (qmail 1065 invoked by uid 500); 10 Aug 2003 07:58:45 -0000 Resent-From: ljb@ash.axis.bitserf.org Resent-Date: Sun, 10 Aug 2003 19:58:45 +1200 Resent-Message-ID: <20030810075845.GA1047@ash.axis.bitserf.org> Resent-To: questions@freebsd.org Date: Sun, 10 Aug 2003 19:52:29 +1200 From: "leon j. breedt" To: questions@freebsd.org Message-ID: <20030810075229.GA817@ash.axis.bitserf.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i Subject: PQI 128MB USB flash drive mount problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 07:58:50 -0000 hi, i have a PQI Intelligent Stick 128MB USB flash drive that i'm trying to get working on -CURRENT. i added: device da device scbus device umass to my kernel configuration. when i attach the drive, it detects it correctly, and i get the following kernel messages on the console: umass0: Intelligent Stick Intelligent Stick, rev 1.10/1.00, addr 2 da0 at umass-sim0 bus 0 target 0 lun 0 da0: Removable Direct Access SCSI-0 device da0: 1.000MB/s transfers da0: 127MB (260448 512 byte sectors: 64H 32S/T 127C) umass0: Phase Error, residue = 0 (da0:umass-sim0:0:0:0): Synchronize cache failed, status == 0x4, scsi status == 0x0 after the above is printed, it prints: Opened disk da0 -> 5 Opened disk da0 -> 5 Opened disk da0 -> 5 Opened disk da0 -> 5 4 times, and then it appears to give up. any attempt to mount /dev/da0s1 fails after a timeout of about 15-20 seconds or so. ash# mount -t msdos /dev/da0s1 /mnt/istick msdosfs: /dev/da0s1: Input/output error any ideas where in /usr/src/sys the culprit is to be found? thanks! leon nb: please cc me on responses. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 00:59:22 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB69737B401 for ; Sun, 10 Aug 2003 00:59:22 -0700 (PDT) Received: from juice.thebigchoice.com (pc1-nott2-3-cust18.nott.cable.ntl.com [80.4.204.18]) by mx1.FreeBSD.org (Postfix) with SMTP id 1727A43F93 for ; Sun, 10 Aug 2003 00:59:21 -0700 (PDT) (envelope-from matt@thebigchoice.com) Received: (qmail 49712 invoked from network); 10 Aug 2003 07:59:24 -0000 Received: from localhost.proweb.net (HELO thebigchoice.com) (127.0.0.1) by juice.thebigchoice.com with SMTP; 10 Aug 2003 07:59:24 -0000 Message-ID: <3F35FB5C.8050205@thebigchoice.com> Date: Sun, 10 Aug 2003 08:59:24 +0100 From: Matt Heath User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030425 X-Accept-Language: en, en-us MIME-Version: 1.0 To: Chris References: <200308090347.55304.racerx@makeworld.com> In-Reply-To: <200308090347.55304.racerx@makeworld.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: netbsd-help@netbsd.org cc: misc@openbsd.org cc: freebsd-questions@FreeBSD.ORG Subject: Re: Think outside of the box (Gawd, I hate that term) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 07:59:23 -0000 don't worry, we're working on it http://plan9.bell-labs.com/plan9dist/ Theo occasionally pops by to comp.os.plan9 (last time to "discuss" licences) (he coverts the plan9 compilers) plan9 is an OS research platform some of it's tools have been kind of back-ported to the unix likes (wily, 9wm) I use plan9 as my development platform as it is a delight to use. Don't expect eye candy, it is an OS to get work done. m >Guys (and gals) > > As great as the *BSD's are - why are we not thinking ahead of the curve? >Outside of the box? What do I mean? Well - why not develope our OS's to run >on an arch. that isn't out yet - MAKE that new arch. just like Gates did so >many years ago. He defined the x86 market - why can't we do the same? > > With all the thinkers out there (Jordan, Theo) wouln't that be thebetter way >to go? > >Just a thought - and willing to confess, I have zero clue how to get there. >But, we need to get there. > > From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 01:57:45 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA6AF37B404 for ; Sun, 10 Aug 2003 01:57:45 -0700 (PDT) Received: from shitei.mindrot.org (shitei.mindrot.org [203.217.30.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F28343F85 for ; Sun, 10 Aug 2003 01:57:40 -0700 (PDT) (envelope-from djm@mindrot.org) Received: from mindrot.org (mothra.mindrot.org [203.217.30.82]) by shitei.mindrot.org (Postfix) with ESMTP id 6D85627C187; Sun, 10 Aug 2003 18:55:28 +1000 (EST) Message-ID: <3F3608A8.1000403@mindrot.org> Date: Sun, 10 Aug 2003 18:56:08 +1000 From: Damien Miller User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20030225 X-Accept-Language: en-au, en-gb, en, en-us, ja MIME-Version: 1.0 To: Matt Heath References: <200308090347.55304.racerx@makeworld.com> <3F35FB5C.8050205@thebigchoice.com> In-Reply-To: <3F35FB5C.8050205@thebigchoice.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: Chris cc: misc@openbsd.org cc: netbsd-help@netbsd.org cc: freebsd-questions@FreeBSD.ORG Subject: Re: Think outside of the box (Gawd, I hate that term) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 08:57:46 -0000 Matt Heath wrote: > don't worry, we're working on it > > http://plan9.bell-labs.com/plan9dist/ > > Theo occasionally pops by to comp.os.plan9 (last time to "discuss" licences) > (he coverts the plan9 compilers) > > plan9 is an OS research platform > > some of it's tools have been kind of back-ported to the unix likes > (wily, 9wm) > > I use plan9 as my development platform as it is a delight to use. > > Don't expect eye candy, it is an OS to get work done. Just don't try to use it in a commercial product unless you have a commercial license or a small army of laywers to help you through the license morass. Compare the Plan9 license[1] with the OpenBSD license policy[2] and recommended license[3] sometime. -d [1] http://www.cs.bell-labs.com/plan9dist/license.html [2] http://www.openbsd.org/policy.html [3] http://www.openbsd.org/cgi-bin/cvsweb/src/share/misc/license.template?rev=1.2 From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 03:05:50 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CD5837B401 for ; Sun, 10 Aug 2003 03:05:50 -0700 (PDT) Received: from jive.SoftHome.net (jive.SoftHome.net [66.54.152.27]) by mx1.FreeBSD.org (Postfix) with SMTP id C57C143F85 for ; Sun, 10 Aug 2003 03:05:48 -0700 (PDT) (envelope-from airam17@softhome.net) Received: (qmail 9227 invoked by uid 417); 10 Aug 2003 10:05:48 -0000 Received: from shunt-smtp-out-0 (HELO softhome.net) (172.16.3.12) by shunt-smtp-out-0 with SMTP; 10 Aug 2003 10:05:48 -0000 Received: from softhome.net ([195.167.65.109]) (AUTH: PLAIN airam17@softhome.net) by softhome.net with esmtp; Sun, 10 Aug 2003 04:05:44 -0600 Message-ID: <3F3618CB.20902@softhome.net> Date: Sun, 10 Aug 2003 13:04:59 +0300 From: airam User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en, el MIME-Version: 1.0 To: questions@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: nokia d211 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 10:05:50 -0000 i have freebsd 5.1 and nokia d211 wlan/gprs pcmcia card i dont now what chip is inside. nokia has a driver but only for linux kernel2.4+ will nokia work with freebsd?thanx!!! From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 03:20:41 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21CD737B401 for ; Sun, 10 Aug 2003 03:20:41 -0700 (PDT) Received: from juice.thebigchoice.com (pc1-nott2-3-cust18.nott.cable.ntl.com [80.4.204.18]) by mx1.FreeBSD.org (Postfix) with SMTP id BCD4B43F93 for ; Sun, 10 Aug 2003 03:20:39 -0700 (PDT) (envelope-from matt@thebigchoice.com) Received: (qmail 85440 invoked from network); 10 Aug 2003 10:20:43 -0000 Received: from localhost.proweb.net (HELO thebigchoice.com) (127.0.0.1) by juice.thebigchoice.com with SMTP; 10 Aug 2003 10:20:43 -0000 Message-ID: <3F361C7B.1020906@thebigchoice.com> Date: Sun, 10 Aug 2003 11:20:43 +0100 From: Matt Heath User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030425 X-Accept-Language: en, en-us MIME-Version: 1.0 To: Damien Miller References: <200308090347.55304.racerx@makeworld.com> <3F35FB5C.8050205@thebigchoice.com> <3F3608A8.1000403@mindrot.org> In-Reply-To: <3F3608A8.1000403@mindrot.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: netbsd-help@netbsd.org cc: misc@openbsd.org cc: freebsd-questions@FreeBSD.ORG Subject: Re: Think outside of the box (Gawd, I hate that term) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 10:20:41 -0000 > > >Just don't try to use it in a commercial product unless you have a >commercial license or a small army of laywers to help you through the >license morass. > >Compare the Plan9 license[1] with the OpenBSD license policy[2] and >recommended license[3] sometime. > >-d > >[1] http://www.cs.bell-labs.com/plan9dist/license.html > It looks pretty straight-forward to me, no lawyers required. the OSI seemed happy enough and that is good enough for me. >[2] http://www.openbsd.org/policy.html >[3] >http://www.openbsd.org/cgi-bin/cvsweb/src/share/misc/license.template?rev=1.2 > > From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 04:14:35 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D5CA37B409 for ; Sun, 10 Aug 2003 04:14:35 -0700 (PDT) Received: from cultdeadsheep.org (charon.cultdeadsheep.org [80.65.226.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2077443FA3 for ; Sun, 10 Aug 2003 04:14:29 -0700 (PDT) (envelope-from sheepkiller@cultdeadsheep.org) Received: (qmail 81611 invoked from network); 10 Aug 2003 11:14:25 -0000 Received: from unknown (HELO chuck.cultdeadsheep.org) (192.168.0.12) by goofy.cultdeadsheep.org with SMTP; 10 Aug 2003 11:14:25 -0000 Date: Sun, 10 Aug 2003 04:15:24 +0200 From: Clement Laforet To: Dan Nelson Message-Id: <20030810041524.4de00c9c.sheepkiller@cultdeadsheep.org> In-Reply-To: <20030810011104.GE43222@dan.emsphone.com> References: <000a01c35eab$141588c0$5500000a@skullbook> <20030809221438.360003ad.sheepkiller@cultdeadsheep.org> <000c01c35ec2$28ff1d20$5500000a@skullbook> <20030810002015.37cdfc24.sheepkiller@cultdeadsheep.org> <20030810011104.GE43222@dan.emsphone.com> Organization: tH3 cUlt 0f tH3 d3@d sH33p X-Mailer: Sylpheed version 0.9.4 (GTK+ 1.2.10; i386-portbld-freebsd5.1) X-Face: ._cVVRDn#-2((lnfi^P7CoD4htI$4+#G/G)!w|,}H5yK~%(3-C.JlEYbOjJGFwJkt*7N^%z jYeu[;}]}F"3}l5R'l"X0HbvT^D\Q&%deCo)MayY`);TO Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: mikael.karlsson@saunalahti.fi cc: freebsd-questions@freebsd.org Subject: Re: mysql-server-4.0.10 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, 10 Aug 2003 11:14:35 -0000 On Sat, 9 Aug 2003 20:11:05 -0500 Dan Nelson wrote: > > Luckily the client packages are small (under 1MB), so it's not a major > problem if both 3.23 and 4.0 get installed. These ports are conflicting. that's the problem :) > Doesn't the port build handle this right? mysql40-client is listed > before p5-DBD-mysql in RUN_DEPENDS, so ideally bsd.port.mk should be > able to build and install the 4.0 client, then just use that for the > p5-DBD-mysql build. The ports handles it right, the problem is only in dependencies list. [root@chuck|(909)| admin]# pkg_add -r ../All/mysql-server-4.0.14.tbz Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-current/Latest/../All/mysql-server-4.0.14.tbz... Done. Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-current/Latest/../All/p5-DBI-1.37.tbz... Done. Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-current/Latest/../All/mysql-client-4.0.14.tbz... Done. Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-current/Latest/../All/p5-DBD-mysql-2.1026_1.tbz... Done. all is ok. Because the port set 4.0 by default : .if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.10) LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client .else .if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.14) LIB_DEPENDS= mysqlclient.14:${PORTSDIR}/databases/mysql41-client .else LIB_DEPENDS= mysqlclient.12:${PORTSDIR}/databases/mysql40-client .endif .endif and now the big question is why index consider MySQL From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 05:02:40 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BFBD37B401 for ; Sun, 10 Aug 2003 05:02:40 -0700 (PDT) Received: from cultdeadsheep.org (charon.cultdeadsheep.org [80.65.226.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0231243F85 for ; Sun, 10 Aug 2003 05:02:34 -0700 (PDT) (envelope-from sheepkiller@cultdeadsheep.org) Received: (qmail 82668 invoked from network); 10 Aug 2003 12:02:26 -0000 Received: from unknown (HELO chuck.cultdeadsheep.org) (192.168.0.12) by goofy.cultdeadsheep.org with SMTP; 10 Aug 2003 12:02:26 -0000 Date: Sun, 10 Aug 2003 14:02:35 +0200 From: Clement Laforet To: Clement Laforet Message-Id: <20030810140235.7863088b.sheepkiller@cultdeadsheep.org> In-Reply-To: <20030810041524.4de00c9c.sheepkiller@cultdeadsheep.org> References: <000a01c35eab$141588c0$5500000a@skullbook> <20030809221438.360003ad.sheepkiller@cultdeadsheep.org> <000c01c35ec2$28ff1d20$5500000a@skullbook> <20030810002015.37cdfc24.sheepkiller@cultdeadsheep.org> <20030810011104.GE43222@dan.emsphone.com> <20030810041524.4de00c9c.sheepkiller@cultdeadsheep.org> Organization: tH3 cUlt 0f tH3 d3@d sH33p X-Mailer: Sylpheed version 0.9.4 (GTK+ 1.2.10; i386-portbld-freebsd5.1) X-Face: ._cVVRDn#-2((lnfi^P7CoD4htI$4+#G/G)!w|,}H5yK~%(3-C.JlEYbOjJGFwJkt*7N^%z jYeu[;}]}F"3}l5R'l"X0HbvT^D\Q&%deCo)MayY`);TO Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: mikael.karlsson@saunalahti.fi cc: dnelson@allantgroup.com cc: freebsd-questions@freebsd.org Subject: Re: mysql-server-4.0.10 packag X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 12:02:40 -0000 On Sun, 10 Aug 2003 04:15:24 +0200 Clement Laforet wrote: > and now the big question is why index consider MySQL With the end it will be easier to understand :) and now the big question is why INDEX considers MySQL 3.23 as dependency required by p5-DBD-mysql... From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 06:03:58 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F362837B401 for ; Sun, 10 Aug 2003 06:03:57 -0700 (PDT) Received: from daimi.au.dk (daimi.au.dk [130.225.16.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE3C943F85 for ; Sun, 10 Aug 2003 06:03:56 -0700 (PDT) (envelope-from djn@daimi.au.dk) Received: from zits (localhost [127.0.0.1]) by daimi.au.dk (8.11.7/8.11.7) with ESMTP id h7AD3r927270 for ; Sun, 10 Aug 2003 15:03:54 +0200 From: Daniel Nielsen To: freebsd-questions@freebsd.org Date: Sun, 10 Aug 2003 15:04:27 +0200 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: <200308101504.27854.djn@daimi.au.dk> X-Virus-Scanned: by amavisd-milter (http://www.amavis.org/) Subject: tcp keepalive? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 13:03:58 -0000 Hi. I'm behind a NAT (over which I have no control), And it seems to kill idle tcp connections quite fast. Is there anyway to make freeBSD 5.1 send tcp keepalives with smaller intervals? It was possible in linux with sysctl net/ipv4/tcp_keepalive_time=300... In freeBSD I have not been able to locate the equivalent option. Any help is appreciated. /Daniel -- There are no great men, only great challenges that ordinary men are forced by circumstances to meet. -- Admiral William Halsey From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 06:13:17 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2765C37B401 for ; Sun, 10 Aug 2003 06:13:17 -0700 (PDT) Received: from perimeter.co.za (obelix.perimeter.co.za [209.212.102.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44F5F43F75 for ; Sun, 10 Aug 2003 06:13:12 -0700 (PDT) (envelope-from bsd@perimeter.co.za) Received: from ndf-dial-196-30-125-251.mweb.co.za (ndf-dial-196-30-125-251.mweb.co.za [196.30.125.251]) (AUTH: LOGIN patrick@perimeter.co.za) by perimeter.co.za with esmtp; Sun, 10 Aug 2003 15:13:07 +0200 From: Patrick O'Reilly Organization: Perimeter Networks CC To: Kent Stewart , Dan Nelson Date: Sun, 10 Aug 2003 15:12:58 +0200 User-Agent: KMail/1.5.3 References: <200308092048.23949.bsd@perimeter.co.za> <200308092200.59391.bsd@perimeter.co.za> <200308091305.18490.kstewart@owt.com> In-Reply-To: <200308091305.18490.kstewart@owt.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308101512.59194.bsd@perimeter.co.za> cc: freebsd-questions@freebsd.org Subject: Re: Error building XFree86-Clients (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, 10 Aug 2003 13:13:17 -0000 Hi folks! A Word of thanks to Kent and Dan who took the time to help me figure out my problem. In the end I rebiult XFree86-libraries using portupgrade -f, and thereafter I was able to use portupgrade to upgrade all the Xfree86-font* ports from 4.2 to 4.3 without any further problems. Apparently there was a specific issue somewhere between 4.2 and 4.3 where the installation of the Xfree86-server at version 4.3 would remove a component of XFree86-libraries which is required by the Xfree86-font* ports. So, the sequence to follow is this: 1) upgrade -server to 4.3 2) upgrade -libraries to 4.3 3) upgrade -font* to 4.3 I had unwittingly done (2) before (1). Thanks again to the more knowledgable folks who take the time to answer questions on this list! -- Regards, Patrick O'Reilly. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 06:15:39 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D29437B40A for ; Sun, 10 Aug 2003 06:15:39 -0700 (PDT) Received: from enterprise.thenetnow.com (enterprise.thenetnow.com [65.39.193.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79A1B43F93 for ; Sun, 10 Aug 2003 06:15:38 -0700 (PDT) (envelope-from grant@thenetnow.com) Received: from grant (dsla96.ody.ca [216.240.4.96]) by enterprise.thenetnow.com (8.11.6/8.11.6) with SMTP id h7AD6T185653 for ; Sun, 10 Aug 2003 09:06:30 -0400 (EDT) (envelope-from grant@thenetnow.com) Message-ID: <006b01c35f41$7d202f00$6501a8c0@grant> From: "Grant Peel" To: Date: Sun, 10 Aug 2003 09:15:36 -0400 Organization: The Net Now MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Subject: Jails X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Grant Peel List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 13:15:39 -0000 Hello all, I have read all the docs on the FreeBSD site regarding jails and have one working jail setup on my devbox. Are there any experts who would like to discuss on or off list, as I still have a number of questions. -Grant Grant W. Peel Server Admin grant@thenetnow.com http://thenetnow.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 06:17:54 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A04037B401 for ; Sun, 10 Aug 2003 06:17:54 -0700 (PDT) Received: from void.xpert.com (mailhost.xpert.com [199.203.132.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C68743F3F for ; Sun, 10 Aug 2003 06:17:48 -0700 (PDT) (envelope-from Yonatan@xpert.com) Received: from void.xpert.com (localhost [127.0.0.1]) by void.xpert.com (8.12.8/8.12.8) with ESMTP id h7ADWufQ016896 for ; Sun, 10 Aug 2003 16:32:56 +0300 Received: from EXCHANGE.xpert.com (exchange.xpert.com [199.203.132.135]) by void.xpert.com (8.12.8/8.12.8) with ESMTP id h7ADWun9016891 for ; Sun, 10 Aug 2003 16:32:56 +0300 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.6375.0 Date: Sun, 10 Aug 2003 16:16:57 +0300 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: tcp keepalive? Thread-Index: AcNfP9IFRg9+dbssS/+MoUzZDBg+3AAAlyfw From: "Yonatan Bokovza" To: Subject: RE: tcp keepalive? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 13:17:54 -0000 > -----Original Message----- > From: Daniel Nielsen [mailto:djn@daimi.au.dk] > Sent: Sunday, August 10, 2003 16:04 > To: freebsd-questions@freebsd.org > Subject: tcp keepalive? >=20 >=20 > Hi. >=20 > I'm behind a NAT (over which I have no control), And it seems=20 > to kill idle tcp=20 > connections quite fast. Is there anyway to make freeBSD 5.1 send tcp=20 > keepalives with smaller intervals? >=20 > It was possible in linux with sysctl=20 > net/ipv4/tcp_keepalive_time=3D300... > In freeBSD I have not been able to locate the equivalent=20 > option. Any help is=20 > appreciated. net.inet.tcp.keepintvl more info at src/sys/netinet/tcp_timer.c=20 From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 06:23:37 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD41637B401 for ; Sun, 10 Aug 2003 06:23:37 -0700 (PDT) Received: from daimi.au.dk (daimi.au.dk [130.225.16.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8899043F3F for ; Sun, 10 Aug 2003 06:23:36 -0700 (PDT) (envelope-from djn@daimi.au.dk) Received: from zits (localhost [127.0.0.1]) by daimi.au.dk (8.11.7/8.11.7) with ESMTP id h7ADNX932305 for ; Sun, 10 Aug 2003 15:23:33 +0200 From: Daniel Nielsen To: freebsd-questions@freebsd.org Date: Sun, 10 Aug 2003 15:24:08 +0200 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: <200308101524.08201.djn@daimi.au.dk> X-Virus-Scanned: by amavisd-milter (http://www.amavis.org/) Subject: USB printer? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 13:23:38 -0000 Hi (again) I recently bought a brother 5050 laser (postscript level 3). Connected it via usb, configured cups to use it. And it worked like a charm. However, now I discover that It doesnt work unless the printer is powered on (not in standby) when the computer boots. If I power it on afterwards, the printer is detected: zits root # dmesg | grep ulpt ulpt0: Brother HL-5050, rev 2.00/1.00, addr 3, iclass 7/1 ulpt0: using bi-directional mode zits root # And when I turn off the printer also: zits root # dmesg | grep ulpt ulpt0: at uhub0 port 2 (addr 3) disconnected ulpt0: detached zits root # But when I try to print, the job shows up on the cups webpage as processing. And nothing happens! I get a process: zits root # ps aux | grep usb root 1033 0.0 0.2 2616 1168 ?? S 3:22PM 0:00.00 usb:/dev/ulpt0 24 Test Page 1 (usb) zits root # But it never finishes. What could I do to make it work proberly? If the printer enters standby after boot, then it also doesn't print, with the same symptoms. /Daniel -- There are no great men, only great challenges that ordinary men are forced by circumstances to meet. -- Admiral William Halsey From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 06:26:48 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91CB437B401 for ; Sun, 10 Aug 2003 06:26:48 -0700 (PDT) Received: from cultdeadsheep.org (charon.cultdeadsheep.org [80.65.226.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEDF843F3F for ; Sun, 10 Aug 2003 06:26:46 -0700 (PDT) (envelope-from sheepkiller@cultdeadsheep.org) Received: (qmail 91892 invoked from network); 10 Aug 2003 13:26:44 -0000 Received: from unknown (HELO chuck.cultdeadsheep.org) (192.168.0.12) by goofy.cultdeadsheep.org with SMTP; 10 Aug 2003 13:26:44 -0000 Date: Sun, 10 Aug 2003 15:26:55 +0200 From: Clement Laforet To: Grant Peel Message-Id: <20030810152655.2cb0eb0c.sheepkiller@cultdeadsheep.org> In-Reply-To: <006b01c35f41$7d202f00$6501a8c0@grant> References: <006b01c35f41$7d202f00$6501a8c0@grant> Organization: tH3 cUlt 0f tH3 d3@d sH33p X-Mailer: Sylpheed version 0.9.4 (GTK+ 1.2.10; i386-portbld-freebsd5.1) X-Face: ._cVVRDn#-2((lnfi^P7CoD4htI$4+#G/G)!w|,}H5yK~%(3-C.JlEYbOjJGFwJkt*7N^%z jYeu[;}]}F"3}l5R'l"X0HbvT^D\Q&%deCo)MayY`);TO Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@FreeBSD.ORG Subject: Re: Jails X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 13:26:48 -0000 On Sun, 10 Aug 2003 09:15:36 -0400 "Grant Peel" wrote: > Hello all, > > I have read all the docs on the FreeBSD site regarding jails and have one > working jail setup on my devbox. > > Are there any experts who would like to discuss on or off list, as I still > have a number of questions. > > -Grant What do you want to know ? just ask on questions@ :) From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 06:51:56 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B2DF37B401 for ; Sun, 10 Aug 2003 06:51:56 -0700 (PDT) Received: from daimi.au.dk (daimi.au.dk [130.225.16.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3D7743F3F for ; Sun, 10 Aug 2003 06:51:54 -0700 (PDT) (envelope-from djn@daimi.au.dk) Received: from zits (localhost [127.0.0.1]) by daimi.au.dk (8.11.7/8.11.7) with ESMTP id h7ADpq907121 for ; Sun, 10 Aug 2003 15:51:52 +0200 From: Daniel Nielsen To: freebsd-questions@freebsd.org Date: Sun, 10 Aug 2003 15:52:26 +0200 User-Agent: KMail/1.5.3 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308101552.26600.djn@daimi.au.dk> X-Virus-Scanned: by amavisd-milter (http://www.amavis.org/) Subject: Re: tcp keepalive? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 13:51:56 -0000 On Sunday 10 August 2003 15:16, Yonatan Bokovza wrote: > > -----Original Message----- > > From: Daniel Nielsen [mailto:djn@daimi.au.dk] > > Sent: Sunday, August 10, 2003 16:04 > > To: freebsd-questions@freebsd.org > > Subject: tcp keepalive? > > > > > > Hi. > > > > I'm behind a NAT (over which I have no control), And it seems > > to kill idle tcp > > connections quite fast. Is there anyway to make freeBSD 5.1 send tcp > > keepalives with smaller intervals? > > > > It was possible in linux with sysctl > > net/ipv4/tcp_keepalive_time=300... > > In freeBSD I have not been able to locate the equivalent > > option. Any help is > > appreciated. > > net.inet.tcp.keepintvl > > more info at src/sys/netinet/tcp_timer.c That did the job. Thanks /Daniel -- There are no great men, only great challenges that ordinary men are forced by circumstances to meet. -- Admiral William Halsey From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 07:15:20 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4D1237B401; Sun, 10 Aug 2003 07:15:20 -0700 (PDT) Received: from ns0.binep.ac.ru (serv2.binep.ac.ru [193.233.44.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id E07FD43F93; Sun, 10 Aug 2003 07:15:18 -0700 (PDT) (envelope-from goshik@binep.ac.ru) Received: from byfi (byfi.binep.ac.ru [193.233.44.234]) by ns0.binep.ac.ru (8.11.6/8.11.6) with SMTP id h7AEL3i29700; Sun, 10 Aug 2003 18:21:03 +0400 (MSD) (envelope-from goshik@binep.ac.ru) Message-ID: <055101c35f49$d2ecee20$ea2ce9c1@binep.ac.ru> From: "Igor B. Bykhalo" To: "FreeBSD Questions" Date: Sun, 10 Aug 2003 18:15:15 +0400 Organization: BINEPCP RAS MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 cc: freebsd-current@FreeBSD.ORG Subject: A-DATA flash drive: some oddities and how to add USB quirks X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 14:15:21 -0000 [i don't see -usb list, so CC'ed to -current hoping someone will be interested] Recently i bought the A-DATA USB 2.0 SpeedDrive (256 MB flash drive). I tried it on my system, which is now: FreeBSD goshik.binep.ac.ru 4.8-STABLE FreeBSD 4.8-STABLE #29: Sun Aug 10 16:50:19 MSD 2003 goshik@goshik.binep.ac.ru:/usr/obj/usr/src/sys/GO i386 Device appeared in dmesg as hub+storage combo: > uhci0: port 0xd800-0xd81f irq 12 at device 17.2 on pci0 > usb0: on uhci0 > usb0: USB revision 1.0 > uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 > uhub0: 2 ports with 2 removable, self powered > uhub1: A-DATA Technology Inc. USB Embedded Hub, class 9/0, rev 2.00/0.01, addr 2 > uhub1: 1 port with 0 removable, self powered > umass0: A-DATA Technology Inc. USB Mass Storage Device, rev 2.00/0.01, addr 3 ^^^ There is no class identifier here > umass0:0:0:-1: Attached to scbus0 as device 0 > uhci1: port 0xdc00-0xdc1f irq 12 at device 17.3 on pci0 > using shared irq12. > usb1: on uhci1 > usb1: 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 But refused to work properly: > Aug 10 17:02:05 goshik /kernel: Creating DISK da0 > Aug 10 17:02:05 goshik /kernel: pass0 at umass-sim0 bus 0 target 0 lun 0 > Aug 10 17:02:05 goshik /kernel: pass0: Removable Direct Access SCSI-0 device > Aug 10 17:02:05 goshik /kernel: pass0: Serial Number . > Aug 10 17:02:05 goshik /kernel: pass0: 650KB/s transfers > Aug 10 17:02:05 goshik /kernel: ad0s1: type 0xa5, start 63, end = 78156224, size 78156162 : OK > Aug 10 17:02:05 goshik /kernel: Mounting root from ufs:/dev/ad0s1a > Aug 10 17:02:05 goshik /kernel: ad0s1: type 0xa5, start 63, end = 78156224, size 78156162 : OK > Aug 10 17:02:05 goshik /kernel: start_init: trying /sbin/init > Aug 10 17:02:05 goshik /kernel: (da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 > Aug 10 17:02:05 goshik /kernel: (da0:umass-sim0:0:0:0): NOT READY asc:3a,0 > Aug 10 17:02:05 goshik /kernel: (da0:umass-sim0:0:0:0): Medium not present > Aug 10 17:02:05 goshik /kernel: da0 at umass-sim0 bus 0 target 0 lun 0 > Aug 10 17:02:05 goshik /kernel: da0: Removable Direct Access SCSI-0 device > Aug 10 17:02:05 goshik /kernel: da0: Serial Number . > Aug 10 17:02:05 goshik /kernel: da0: 650KB/s transfers > Aug 10 17:02:05 goshik /kernel: da0: Attempt to query device size failed: NOT READY, Medium not present I tried to add quirks to sys/cam/scsi_da.c with no success. As was advised by Nate Lawson in recent threads on DA and USB quirks, i was going to try some USB quirks, but then i noticed a couple of strange things. First, marked above lack of class identifier for mass storage part. Then, from the output of the usbd -v: > goshik# usbd -v > usbd: opened /dev/usb0 > usbd: reading configuration file /etc/usbd.conf > usbd: opened /dev/usb > usbd: device-attach event at 0.012095000, UHCI root hub, VIA: > vndr=0x0000 prdct=0x0000 rlse=0x0100 clss=0x0009 subclss=0x0000 prtcl=0x0000 > device names: uhub0 > usbd: Found action 'USB device' for UHCI root hub, VIA at uhub0 > usbd: device-attach event at 0.016337000, USB Embedded Hub, A-DATA Technology Inc.: > vndr=0x067b prdct=0x2515 rlse=0x0001 clss=0x0009 subclss=0x0000 prtcl=0x0000 > device names: uhub1 > usbd: Found action 'USB device' for USB Embedded Hub, A-DATA Technology Inc. at uhub1 > usbd: device-attach event at 0.019387000, USB Mass Storage Device, A-DATA Technology Inc.: > vndr=0x067b prdct=0x2517 rlse=0x0001 clss=0x0000 subclss=0x0000 prtcl=0x0000 > device names: umass0 > usbd: Found action 'USB device' for USB Mass Storage Device, A-DATA Technology Inc. at umass0 > usbd: device-attach event at 0.025632000, UHCI root hub, VIA: > vndr=0x0000 prdct=0x0000 rlse=0x0100 clss=0x0009 subclss=0x0000 prtcl=0x0000 > device names: uhub2 > usbd: Found action 'USB device' for UHCI root hub, VIA at uhub2 Here we have: 1) vendor ID 0x067b - according to sys/dev/usb/usbdevs this is Prolific Technology... hmmm Am i right that to make proper quirk, i need to put product IDs into sys/dev/usb/usbdevs? If yes, how it can be done in this situation? System always shows A-DATA Technology Inc. as vendor, but it is unknown in the usbdevs. 2) product 0x2515 (not in usbdevs) class 0x0009 (hub) - well, it is identified as hub (UICLASS_HUB in usb.h) product 0x2517 (not in usbdevs) class 0x0000 - shouldn't this be 0x0008 (UICLASS_MASS in usb.h)? So: usbd reports vndr=0x067b but prints A-DATA - is this harmless? usbd reports clss=0x0000 for mass-storage part - i think this is bad? products identifiers are not in usbdevs - ? What can i do to make the thing work? TIA, Igor From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 07:22:25 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71CA037B401 for ; Sun, 10 Aug 2003 07:22:25 -0700 (PDT) Received: from kira.skynet.be (kira.skynet.be [195.238.2.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CCC443F3F for ; Sun, 10 Aug 2003 07:22:24 -0700 (PDT) (envelope-from pascal.pype@skynet.be) Received: from skynet.be (32.26-201-80.adsl.skynet.be [80.201.26.32]) id h7AEMGSP020421 for ; Sun, 10 Aug 2003 16:22:16 +0200 (envelope-from ) Message-ID: <3F36570F.9080300@skynet.be> Date: Sun, 10 Aug 2003 16:30:39 +0200 From: Pascal Pype User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.2) Gecko/20030323 X-Accept-Language: en-us, en MIME-Version: 1.0 To: questions@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: DES encryption. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 14:22:25 -0000 Hello all, There seems to be a problem when one wants to use the DES encryption algorithm within the freeBSD platform. When one compiles this : */ #define _C_PLUS_PLUS // General headers. #include #include #define _XOPEN_SOURCE #include #ifdef _LINUX #include #endif // Software package specific headers. #include "type.h" #include "desEncDec.h" #include "desEncDecP.h" const U8 TDesEncryptorDecryptor::mNR_NIBBLES_PER_WORD = 4; // Class constructor. TDesEncryptorDecryptor::TDesEncryptorDecryptor() : mNR_BITS_PER_NIBBLE(4), mNR_BYTES_PER_DES_BLOCK(NR_BITS_PER_DES_BLOCK / 8), mNR_DWORDS_PER_DES_BLOCK(mNR_BYTES_PER_DES_BLOCK / 4), mNR_BITS_PER_DWORD(32), mBase16ToBase2Mask(0x8000), mByteToBase2Mask(0x80000000), mSpace(0x20) { // TDesEncryptorDecryptor::TDesEncryptorDecrypt } // TDesEncryptorDecryptor::TDesEncryptorDecrypt // Class method helpers. VOID TDesEncryptorDecryptor::Base16ToBase2(U32 Word, U8 NrNibbles, PC8 pBase2) { // TDesEncryptorDecryptor::Base16ToBase2 if (NrNibbles < mNR_NIBBLES_PER_WORD) mBase16ToBase2Mask = mBase16ToBase2Mask >> (NrNibbles * mNR_BITS_PER_NIBBLE); U8 j; for (j = 0;j < NrNibbles * mNR_BITS_PER_NIBBLE;j++) { if (Word & mBase16ToBase2Mask) pBase2[mBase2Pos++] = '\1'; else pBase2[mBase2Pos++] = '\0'; Word = Word << 1; } } // TDesEncryptorDecryptor::Base16ToBase2 VOID TDesEncryptorDecryptor::base16KeytoBase2Key(PC8 pKeyWord, U8 NrNibbles) { // TDesEncryptorDecryptor::base16KeytoBase2Key C8 pWord[mNR_NIBBLES_PER_WORD + 1]; strncpy(pWord,pKeyWord,NrNibbles); pWord[NrNibbles] = 0x0; U32 Word = strtol(pWord,0,16); Base16ToBase2(Word,NrNibbles,m_pBase2Key); } // TDesEncryptorDecryptor::base16KeytoBase2Key VOID TDesEncryptorDecryptor::Base16KeyToBase2Key(PC8 pKey) { // TDesEncryptorDecryptor::Base16KeyToBase2Key U8 NrNibblesPerKey = strlen(pKey); U8 NrWordsPerKey = NrNibblesPerKey / mNR_NIBBLES_PER_WORD; U8 NrResNibblesInKey = NrNibblesPerKey % mNR_NIBBLES_PER_WORD; mBase2Pos = 0; U8 i; for (i = 0;i < NrWordsPerKey;i++) { base16KeytoBase2Key(pKey,mNR_NIBBLES_PER_WORD); pKey += mNR_NIBBLES_PER_WORD; } if (NrResNibblesInKey) base16KeytoBase2Key(pKey,NrResNibblesInKey); U8 NrBitsPerKey = NrNibblesPerKey * mNR_BITS_PER_NIBBLE; U8 NrResBitsPerKey = NR_BITS_PER_DES_KEY - NrBitsPerKey; memmove(m_pBase2Key + NrResBitsPerKey - 1,m_pBase2Key,NrBitsPerKey); memset(m_pBase2Key,0,NrResBitsPerKey); } // TDesEncryptorDecryptor::Base16KeyToBase2Key // Class method. VOID TDesEncryptorDecryptor::SetKey(PC8 pKey) { // TDesEncryptorDecryptor::SetKey Base16KeyToBase2Key(pKey); setkey(m_pBase2Key); } // TDesEncryptorDecryptor::SetKey // Class method helpers. VOID TDesEncryptorDecryptor::RecalibrateBuffer(PDesAlgorithmBuffer pDesAlgoBuf, U8 & RecalibrateDelta) { // TDesEncryptorDecryptor::RecalibrateBuffer U32 BufLen = pDesAlgoBuf->Length; U8 LengthResidu = BufLen % mNR_BYTES_PER_DES_BLOCK; if (LengthResidu) { RecalibrateDelta = mNR_BYTES_PER_DES_BLOCK - LengthResidu; U32 RecalibratedBufLen = BufLen + RecalibrateDelta; pDesAlgoBuf->pBuffer = (PU8) realloc(pDesAlgoBuf->pBuffer,RecalibratedBufLen); memset(pDesAlgoBuf->pBuffer + BufLen,mSpace,RecalibrateDelta); pDesAlgoBuf->Length = RecalibratedBufLen; } else RecalibrateDelta = 0; } // TDesEncryptorDecryptor::RecalibrateBuffer VOID TDesEncryptorDecryptor::StripHeaderFromBuffer(PDesAlgorithmBuffer pDesAlgoBuf, U8 & RecalibrateDelta) { // TDesEncryptorDecryptor::StripHeaderFromBuffer RecalibrateDelta = * pDesAlgoBuf->pBuffer; pDesAlgoBuf->Length -= sizeof(U8); pDesAlgoBuf->pBuffer += sizeof(U8); } // TDesEncryptorDecryptor::StripHeaderFromBuffer VOID TDesEncryptorDecryptor::ReorganizeBytes(U32 & dWord) { // TDesEncryptorDecryptor::ReorganizeBytes U8 p_dWord[mNR_BITS_PER_DWORD / 8]; PU8 pByteInDWord = (PU8) (& dWord); U8 NrBytesPerDWord = mNR_BITS_PER_DWORD / 8; U8 i; for (i = 0;i < NrBytesPerDWord;i++) p_dWord[NrBytesPerDWord - 1 - i] = *pByteInDWord++; dWord = * ((PU32) p_dWord); } // TDesEncryptorDecryptor::ReorganizeBytes VOID TDesEncryptorDecryptor::ByteBlockToBase2Block(PU8 pBuffer) { // TDesEncryptorDecryptor::ByteBlockToBase2Block mBase2Pos = 0; U8 i; for (i = 0;i < mNR_DWORDS_PER_DES_BLOCK;i++) { U32 dWord = *((PU32) pBuffer); ReorganizeBytes(dWord); U8 j; for (j = 0;j < mNR_BITS_PER_DWORD;j++) { if (dWord & mByteToBase2Mask) m_pBase2Block[mBase2Pos++] = '\1'; else m_pBase2Block[mBase2Pos++] = '\0'; dWord = dWord << 1; } pBuffer += sizeof(U32); } } // TDesEncryptorDecryptor::ByteBlockToBase2Block VOID TDesEncryptorDecryptor::ReorganizeBits() { // TDesEncryptorDecryptor::ReorganizeBits C8 Tmp; U8 i; U8 NrBitsPerWord = mNR_BITS_PER_DWORD / 2; for (i = 0;i < NrBitsPerWord;i++) { Tmp = m_pBase2Block[i]; m_pBase2Block[i] = m_pBase2Block[mNR_BITS_PER_DWORD - i - 1]; m_pBase2Block[mNR_BITS_PER_DWORD - i - 1] = Tmp; Tmp = m_pBase2Block[i + mNR_BITS_PER_DWORD]; m_pBase2Block[i + mNR_BITS_PER_DWORD] = m_pBase2Block[2 * mNR_BITS_PER_DWORD - i - 1]; m_pBase2Block[2 * mNR_BITS_PER_DWORD - i - 1] = Tmp; } } // TDesEncryptorDecryptor::ReorganizeBits VOID TDesEncryptorDecryptor::Base2BlockToByteBlock(PU8 pBuffer) { // TDesEncryptorDecryptor::Base2BlockToByteBlock mBase2Pos = 0; ReorganizeBits(); U8 i; for (i = 0;i < mNR_DWORDS_PER_DES_BLOCK;i++) { U32 dWord = 0; U32 Weight = 1; U8 j; for (j = 0;j < mNR_BITS_PER_DWORD;j++) { if (m_pBase2Block[mBase2Pos++] == '\1') dWord += Weight; Weight *= 2; } ReorganizeBytes(dWord); memcpy(pBuffer,& dWord,sizeof(U32)); pBuffer += sizeof(U32); } } // TDesEncryptorDecryptor::Base2BlockToByteBlock VOID TDesEncryptorDecryptor::AddHeaderToBuffer(PDesAlgorithmBuffer pDesAlgoBuf, U8 RecalibrateDelta) { // TDesEncryptorDecryptor::AddHeaderToBuffer pDesAlgoBuf->pBuffer = (PU8) realloc(pDesAlgoBuf->pBuffer,pDesAlgoBuf->Length + sizeof(U32) + sizeof(U8)); memmove(pDesAlgoBuf->pBuffer + sizeof(U32) + sizeof(U8),pDesAlgoBuf->pBuffer,pDesAlgoBuf->Length); pDesAlgoBuf->Length += sizeof(U8); memcpy(pDesAlgoBuf->pBuffer,& pDesAlgoBuf->Length,sizeof(U32)); memcpy(pDesAlgoBuf->pBuffer + sizeof(U32),& RecalibrateDelta,sizeof(U8)); pDesAlgoBuf->Length += sizeof(U32); } // TDesEncryptorDecryptor::AddHeaderToBuffer VOID TDesEncryptorDecryptor::IterateOverBuffer(PDesAlgorithmBuffer pDesAlgoBuf) { // TDesEncryptorDecryptor::IterateOverBuffer U8 RecalibrateDelta; if (m_fDecr) StripHeaderFromBuffer(pDesAlgoBuf,RecalibrateDelta); else RecalibrateBuffer(pDesAlgoBuf,RecalibrateDelta); U32 i; U32 NrDesBlocks = pDesAlgoBuf->Length / mNR_BYTES_PER_DES_BLOCK; PU8 pBuf = pDesAlgoBuf->pBuffer; for (i = 0;i < NrDesBlocks;i++) { ByteBlockToBase2Block(pBuf); encrypt(m_pBase2Block,m_fDecr); Base2BlockToByteBlock(pBuf); pBuf += mNR_BYTES_PER_DES_BLOCK; } if (m_fDecr) pDesAlgoBuf->Length -= RecalibrateDelta; else AddHeaderToBuffer(pDesAlgoBuf,RecalibrateDelta); } // TDesEncryptorDecryptor::IterateOverBuffer VOID TDesEncryptorDecryptor::FreeDesAlgorithmBuffer(PDesAlgorithmBuffer pDesAlgoBuf) { // TDesEncryptorDecryptor::FreeDesAlgorithmBuffer if (m_fDecr) free(pDesAlgoBuf->pBuffer - sizeof(U8)); else free (pDesAlgoBuf->pBuffer); } // TDesEncryptorDecryptor::FreeDesAlgorithmBuffer // Class methods. VOID TDesEncryptorDecryptor::Encrypt(PDesAlgorithmBuffer pDesAlgoBuf) { // TDesEncryptorDecryptor::Encrypt m_fDecr = 0; IterateOverBuffer(pDesAlgoBuf); } // TDesEncryptorDecryptor::Encrypt VOID TDesEncryptorDecryptor::Decrypt(PDesAlgorithmBuffer pDesAlgoBuf) { // TDesEncryptorDecryptor::Decrypt m_fDecr = 1; IterateOverBuffer(pDesAlgoBuf); } // TDesEncryptorDecryptor::Decrypt // Interface commands. HDesEncryptorDecryptor OpenDesEncryptorDecryptor() { // OpenDesEncryptorDecryptor PDesEncryptorDecryptor pDesEncDec = new TDesEncryptorDecryptor(); return (HDesEncryptorDecryptor) pDesEncDec; } // OpenDesEncryptorDecryptor VOID CloseDesEncryptorDecryptor(HDesEncryptorDecryptor hDesEncDec) { // CloseDesEncryptorDecryptor PDesEncryptorDecryptor pDesEncDec = (PDesEncryptorDecryptor) hDesEncDec; delete pDesEncDec; } // CloseDesEncryptorDecrptor VOID SetKey(HDesEncryptorDecryptor hDesEncDec, PC8 pKey) { // SetKey PDesEncryptorDecryptor pDesEncDec = (PDesEncryptorDecryptor) hDesEncDec; pDesEncDec->SetKey(pKey); } // SetKey VOID Encrypt(HDesEncryptorDecryptor hDesEncDec, PDesAlgorithmBuffer pDesAlgoBuf) { // Encrypt PDesEncryptorDecryptor pDesEncDec = (PDesEncryptorDecryptor) hDesEncDec; pDesEncDec->Encrypt(pDesAlgoBuf); } // Encrypt VOID Decrypt(HDesEncryptorDecryptor hDesEncDec, PDesAlgorithmBuffer pDesAlgoBuf) { // Decrypt PDesEncryptorDecryptor pDesEncDec = (PDesEncryptorDecryptor) hDesEncDec; pDesEncDec->Decrypt(pDesAlgoBuf); } // Decrypt VOID FreeDesAlgorithmBuffer(HDesEncryptorDecryptor hDesEncDec, PDesAlgorithmBuffer pDesAlgoBuf) { // FreeDesAlgorithmBuffer PDesEncryptorDecryptor pDesEncDec = (PDesEncryptorDecryptor) hDesEncDec; pDesEncDec->FreeDesAlgorithmBuffer(pDesAlgoBuf); } // FreeDesAlgorithmBuffer one gets the following warning message at runtime: "WARNING! encrypt(3) not present in the system". I use freeBSD release 4.8. My kind regards , Pype Pascal. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 07:40:35 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3981A37B401 for ; Sun, 10 Aug 2003 07:40:35 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82A1243F93 for ; Sun, 10 Aug 2003 07:40:34 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from topaz-out (owt-207-41-94-233.owt.com [207.41.94.233]) by rutger.owt.com (8.11.6p2/8.9.3) with ESMTP id h7AEeGv01713; Sun, 10 Aug 2003 07:40:19 -0700 From: Kent Stewart To: "Patrick O'Reilly" , Dan Nelson Date: Sun, 10 Aug 2003 07:40:15 -0700 User-Agent: KMail/1.5.3 References: <200308092048.23949.bsd@perimeter.co.za> <200308091305.18490.kstewart@owt.com> <200308101512.59194.bsd@perimeter.co.za> In-Reply-To: <200308101512.59194.bsd@perimeter.co.za> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308100740.15537.kstewart@owt.com> cc: freebsd-questions@freebsd.org Subject: Re: Error building XFree86-Clients (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, 10 Aug 2003 14:40:35 -0000 On Sunday 10 August 2003 06:12 am, Patrick O'Reilly wrote: > Hi folks! > > A Word of thanks to Kent and Dan who took the time to help me figure > out my problem. > > In the end I rebiult XFree86-libraries using portupgrade -f, and > thereafter I was able to use portupgrade to upgrade all the > Xfree86-font* ports from 4.2 to 4.3 without any further problems. > > Apparently there was a specific issue somewhere between 4.2 and 4.3 > where the installation of the Xfree86-server at version 4.3 would > remove a component of XFree86-libraries which is required by the > Xfree86-font* ports. So, the sequence to follow is this: > > 1) upgrade -server to 4.3 > 2) upgrade -libraries to 4.3 > 3) upgrade -font* to 4.3 > > I had unwittingly done (2) before (1). This is still not right because -libraries is a dependancy for -server. You have to build -libraries before you build -server. What you needed to do is delete -server before you built -libraries. Then, when you build -server, it won't delete Xfonts. Kent > > Thanks again to the more knowledgable folks who take the time to > answer questions on this list! -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 07:47:56 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3772137B401 for ; Sun, 10 Aug 2003 07:47:56 -0700 (PDT) Received: from smtp4.adl2.internode.on.net (smtp4.adl2.internode.on.net [203.16.214.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F95C43FAF for ; Sun, 10 Aug 2003 07:47:55 -0700 (PDT) (envelope-from ephix@internode.on.net) Received: from felix (ppp183-43.lns1.bne1.internode.on.net [150.101.183.43]) h7AElrZE043291 for ; Mon, 11 Aug 2003 00:17:53 +0930 (CST) From: "ephix" To: Date: Mon, 11 Aug 2003 00:47:52 +1000 Message-ID: <000001c35f4e$6093e9a0$0100a8c0@felix> 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.2600.0000 X-Streamed-Recipients: X-Proc-As: freebsd-questions X-Scanned-By: MIMEDefang 2.33 (www . roaringpenguin . com / mimedefang) Subject: hardware monitoring / healthd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 14:47:56 -0000 Hey, I have a Dell PowerEdge server, and have been trying to get healthd / chm working for the past few days. I think it uses the LM81 chipset (as ive managed to find with google), while healthd only supports LM78, LM79, and some others. The server is leaving for the datacenter in the next day or so, and currently I have no way of checking the system/CPU temperature. Anyone know if there are any updates to healthd/freebsd/ any monitoring app that I could try? SMB mode returns the following: Failed to open /dev/smb0. ISA bus mode just gives blank results. Thanks, Lewi From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 07:54:03 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D47EB37B401; Sun, 10 Aug 2003 07:54:03 -0700 (PDT) Received: from flamingo.mail.pas.earthlink.net (flamingo.mail.pas.earthlink.net [207.217.120.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51C1543F3F; Sun, 10 Aug 2003 07:54:03 -0700 (PDT) (envelope-from rperry4@earthlink.net) Received: from dialup-171.75.71.33.dial1.weehawken.level3.net ([171.75.71.33] helo=earthlink.net) by flamingo.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 19lra3-00021C-00; Sun, 10 Aug 2003 07:53:59 -0700 Message-ID: <3F365CFD.9000708@earthlink.net> Date: Sun, 10 Aug 2003 10:55:57 -0400 From: Bob Perry User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030704 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Khairil Yusof References: <3F35002F.1060108@earthlink.net> <1060497995.17037.85.camel@daemon.home.net> In-Reply-To: <1060497995.17037.85.camel@daemon.home.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD-Questions cc: knu@FreeBSD.org Subject: Re: Portupgrade 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: Sun, 10 Aug 2003 14:54:04 -0000 Khairil Yusof wrote: >On Sat, 2003-08-09 at 22:07, Bob Perry wrote: > > >>I run FreeBSD 4.7 RELEASE. Just ran the portversion command for the >>first time since last Saturday and the ouptut indicated that my >>installed packages were up-to-date. Thought it odd so I ran pkg_version >>command and picked up 9 packages in need up upgrade and several >>"orphaned" packages listed. Is there a known problem with the >>portupgrade system or was there some warning I missed previously? >> >> > >If I'm not wrong, portversion/pkg_version relies on ports index (man 8 >portupgrade) which needs to be up to date in order for portversion to be >accurate. This is not done on a daily basis for the ports tree (as it >takes some time). > >What you should try to do is check that your pkgdb is ok and fix any >problems: > >#pkgdb -F > >then update the ports index (which takes a while) > >#portsdb -Uu > >Then run your portversion/pkg_version which should give more accurate >results. > >Hope this helps. > > First, thanks for taking the time to respond. Yesterday, I brought all of my packages up-to-date, ran pkgdb -F, followed by portsdb -Uu and rhe output from both portversion and pkg_version matched. I slept well. This morning, portversion indicated that all packages were current but pkg_version showed p5-Date-Manip-5.40 needed to be upgraded to 5.42. I ran portupgrade expecting to receive a message indicating that the package was current, but instead, it fetched, built, installed, p5-Date-Manip-5.42 and I thought, removed p5-Date-Manip-5.40. I ran portversion again and it indicates that "p5-Date-Manip-5.42 > succeeds port (port has 5.40)". Pkg_version shows p5-Date-Manip-5.42 is up-to-date with port. Looks as though the portversion program may not be reading the port tree accurately (?). I'll have to do more investigation. Maybe I broke something. Thanks again. Bob From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 08:35:18 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 928FA37B401 for ; Sun, 10 Aug 2003 08:35:18 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id C378F43F93 for ; Sun, 10 Aug 2003 08:35:17 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from topaz-out (owt-207-41-94-233.owt.com [207.41.94.233]) by rutger.owt.com (8.11.6p2/8.9.3) with ESMTP id h7AFZCv12260; Sun, 10 Aug 2003 08:35:12 -0700 From: Kent Stewart To: Bob Perry , Khairil Yusof Date: Sun, 10 Aug 2003 08:35:11 -0700 User-Agent: KMail/1.5.3 References: <3F35002F.1060108@earthlink.net> <1060497995.17037.85.camel@daemon.home.net> <3F365CFD.9000708@earthlink.net> In-Reply-To: <3F365CFD.9000708@earthlink.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308100835.11959.kstewart@owt.com> cc: FreeBSD-Questions Subject: Re: Portupgrade 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: Sun, 10 Aug 2003 15:35:18 -0000 On Sunday 10 August 2003 07:55 am, Bob Perry wrote: > Khairil Yusof wrote: > >On Sat, 2003-08-09 at 22:07, Bob Perry wrote: > >>I run FreeBSD 4.7 RELEASE. Just ran the portversion command for > >> the first time since last Saturday and the ouptut indicated that > >> my installed packages were up-to-date. Thought it odd so I ran > >> pkg_version command and picked up 9 packages in need up upgrade > >> and several "orphaned" packages listed. Is there a known problem > >> with the portupgrade system or was there some warning I missed > >> previously? > > > >If I'm not wrong, portversion/pkg_version relies on ports index (man > > 8 portupgrade) which needs to be up to date in order for > > portversion to be accurate. This is not done on a daily basis for > > the ports tree (as it takes some time). > > > >What you should try to do is check that your pkgdb is ok and fix any > >problems: > > > >#pkgdb -F > > > >then update the ports index (which takes a while) > > > >#portsdb -Uu > > > >Then run your portversion/pkg_version which should give more > > accurate results. > > > >Hope this helps. > > First, thanks for taking the time to respond. > > Yesterday, I brought all of my packages up-to-date, ran pkgdb -F, > followed by portsdb -Uu > and rhe output from both portversion and pkg_version matched. I > slept well. > > This morning, portversion indicated that all packages were current > but pkg_version showed > p5-Date-Manip-5.40 needed to be upgraded to 5.42. I ran portupgrade > expecting to receive a > message indicating that the package was current, but instead, it > fetched, built, installed, > p5-Date-Manip-5.42 and I thought, removed p5-Date-Manip-5.40. > > I ran portversion again and it indicates that "p5-Date-Manip-5.42 > > succeeds port (port has 5.40)". > Pkg_version shows p5-Date-Manip-5.42 is up-to-date with port. > > Looks as though the portversion program may not be reading the port > tree accurately (?). > It doesn't read the tree. It uses INDEX.db, which you are supposed to build after each cvsup of ports-all. To build INDEX.db, you need a current version of INDEX. I get too many messages from "portsdb -U" and use the sequence "make index" and then "portsdb -u". I run these everytime I cvsup ports-all. The only time you can save is adding "ports/INDEX" to your refuse file. There isn't any point in downloading INDEX and rebuilding it immediately after cvsup finishes. If you have more ports in your refuse file, running portsdb -U is probably your only choice. Make is known to stop when it hits a port that is missing in your /usr/port fs. Kent > I'll have to do more investigation. Maybe I broke something. Thanks > again. > > Bob > > > _______________________________________________ > 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" -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 08:40:00 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 243B637B401 for ; Sun, 10 Aug 2003 08:40:00 -0700 (PDT) Received: from out5.mx.nwbl.wi.voyager.net (out5.mx.nwbl.wi.voyager.net [169.207.3.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85D0243F93 for ; Sun, 10 Aug 2003 08:39:59 -0700 (PDT) (envelope-from dragoncrest@voyager.net) Received: from mail5.mx.voyager.net (mail5.mx.voyager.net [216.93.66.204]) by out5.mx.nwbl.wi.voyager.net (Postfix) with ESMTP id 7A6B0C672D for ; Sun, 10 Aug 2003 10:39:58 -0500 (CDT) Received: from localhost.localdomain (nm1.mx.lnng.mi.voyager.net [216.93.38.227]) by mail5.mx.voyager.net (8.12.9/8.10.2) with ESMTP id h7AFdv4x043080 for ; Sun, 10 Aug 2003 11:39:58 -0400 (EDT) Message-Id: <200308101539.h7AFdv4x043080@mail5.mx.voyager.net> From: "Dragoncrest" To: questions@freebsd.org X-Mailer: CoreCommMail X-IPAddress: 209.153.128.248 Date: Sun, 10 Aug 2003 10:59:43 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Subject: java and flash in Mozilla?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 15:40:00 -0000 I've been trying at this for a while but with little success. For some stupid reason I can't get java to work in Mozilla. Not even as root, even though it says that Java support is installed and I went through all the hoops that it requires to make it happen. Also, is there a way to install flash support in Mozilla on freebsd? From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 08:44:07 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E032137B401 for ; Sun, 10 Aug 2003 08:44:07 -0700 (PDT) Received: from enterprise.thenetnow.com (enterprise.thenetnow.com [65.39.193.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id EACE843F75 for ; Sun, 10 Aug 2003 08:44:06 -0700 (PDT) (envelope-from grant@thenetnow.com) Received: from grant (dsla96.ody.ca [216.240.4.96]) by enterprise.thenetnow.com (8.11.6/8.11.6) with SMTP id h7AFYr190701; Sun, 10 Aug 2003 11:34:54 -0400 (EDT) (envelope-from grant@thenetnow.com) Message-ID: <005901c35f56$38c77dd0$6501a8c0@grant> From: "Grant Peel" To: "Clement Laforet" References: <006b01c35f41$7d202f00$6501a8c0@grant> <20030810152655.2cb0eb0c.sheepkiller@cultdeadsheep.org> Date: Sun, 10 Aug 2003 11:44:01 -0400 Organization: The Net Now 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.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 cc: freebsd-questions@FreeBSD.ORG Subject: Re: Jails X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Grant Peel List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 15:44:08 -0000 Hi all, My questions are realating to a recent dev install I did with FreeBSD 5.1 The jail was setup on a fresh install, with no other ports or mods installed. Q1, If I do another completely fresh installation of 5.1 and then install a bunch of ports, (Apache, Exim, named etc etc) when its time to build the jail, will ALL of the things that were installed on the parent server be automaticaly built for the jail? Q2, When one installs new things to the main server, how do you add them to the jail(s)?. Q3, Are there any available patches that should be installed before any jails are built? Q4, If complete servers are built in a jail, and a jailed user is given shell access VIA ssh, how secure is the jail? Can the jailed user 'break out' to the main server? TIA, -Grant Grant W. Peel Server Admin grant@thenetnow.com http://thenetnow.com ----- Original Message ----- From: "Clement Laforet" To: "Grant Peel" Cc: Sent: Sunday, August 10, 2003 9:26 AM Subject: Re: Jails > On Sun, 10 Aug 2003 09:15:36 -0400 > "Grant Peel" wrote: > > > Hello all, > > > > I have read all the docs on the FreeBSD site regarding jails and have one > > working jail setup on my devbox. > > > > Are there any experts who would like to discuss on or off list, as I still > > have a number of questions. > > > > -Grant > > What do you want to know ? > just ask on questions@ :) > From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 08:50:39 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E26237B401 for ; Sun, 10 Aug 2003 08:50:39 -0700 (PDT) Received: from out3.mx.nwbl.wi.voyager.net (out3.mx.nwbl.wi.voyager.net [169.207.3.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB47743F3F for ; Sun, 10 Aug 2003 08:50:38 -0700 (PDT) (envelope-from dragoncrest@voyager.net) Received: from mail5.mx.voyager.net (mail5.mx.voyager.net [216.93.66.204]) by out3.mx.nwbl.wi.voyager.net (Postfix) with ESMTP id 4D09D7745D for ; Sun, 10 Aug 2003 10:50:38 -0500 (CDT) Received: from localhost.localdomain (nm1.mx.lnng.mi.voyager.net [216.93.38.227]) by mail5.mx.voyager.net (8.12.9/8.10.2) with ESMTP id h7AFoc4x050406 for ; Sun, 10 Aug 2003 11:50:38 -0400 (EDT) Message-Id: <200308101550.h7AFoc4x050406@mail5.mx.voyager.net> From: "Dragoncrest" To: freebsd-questions@freebsd.org X-Mailer: CoreCommMail X-IPAddress: 209.153.128.248 Date: Sun, 10 Aug 2003 11:10:24 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Subject: Is this a bad idea? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 15:50:39 -0000 Not sure if this is a bad idea or it may cause issues, but I was looking at running the command "cvsup supfile" every morning at 4am then follow it up with the command "pkg_version -L=" at 5am. Would this be a bad thing or a potential security risk? Or would this be ok to do? From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 08:59:56 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 587EF37B401 for ; Sun, 10 Aug 2003 08:59:56 -0700 (PDT) Received: from typhoon.enabled.com (typhoon.enabled.com [216.218.220.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D919843F3F for ; Sun, 10 Aug 2003 08:59:55 -0700 (PDT) (envelope-from admin2@enabled.com) Received: from enabled.com (localhost.enabled.com [127.0.0.1]) by typhoon.enabled.com (8.12.9/8.12.9) with ESMTP id h7AFxtoD090963 for ; Sun, 10 Aug 2003 08:59:55 -0700 (PDT) (envelope-from admin2@enabled.com) From: "admin" To: freebsd-questions@freebsd.org Date: Sun, 10 Aug 2003 07:59:55 -0800 Message-Id: <20030810155739.M51692@enabled.com> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 131.161.240.206 (admin2) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Subject: /usr/local/etc/rc.d files not running on reboot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 15:59:56 -0000 FreeBSD 4.8-STABLE My machine crashed last night and upon reboot not all the services that are executable in the /usr/local/etc/rc.d ran. Any clues how I can find out why this happened? Here is what I have there: total 66 -rwxr-x--- 1 root wheel 181 Jul 8 11:54 000.mysql-client.sh -r-xr-xr-x 1 root wheel 248 Apr 7 17:36 000.pkgtools.sh -r-xr-xr-- 1 root pgsql 1046 Jul 7 08:24 010.pgsql.sh -r-xr-xr-x 1 root wheel 310 Jan 10 2003 apache.sh -r-xr-xr-x 1 root wheel 359 May 30 17:13 cucipop.sh -rwxr-x--x 1 root wheel 3613 Jan 13 2003 cupsd.sh.sample -r-xr-xr-x 1 root wheel 266 Jan 10 2003 emacs.sh -rw------- 1 root wheel 316 Jan 11 2003 idled.sh -rw------- 1 root wheel 289 Feb 10 00:35 innd.sh -r-xr-xr-x 1 root wheel 526 May 21 09:43 ipa.sh.sample -r-xr-xr-x 1 root wheel 301 Apr 6 18:05 ircd.sh -r-xr-xr-x 1 root wheel 392 Mar 13 19:58 ircservices.sh.sample -rwxr-xr-x 1 root wheel 1736 Mar 26 06:46 mailman.sh -rwxr-x--- 1 root wheel 550 Jul 10 17:21 mysql-server.sh -rwxr-x--- 1 root wheel 554 Jul 10 17:16 mysql-server.sh~ -rwxrwxr-- 1 root wheel 3576 May 22 17:47 nagios.sh -r--r--r-- 1 root wheel 1480 May 22 15:23 ntop.sh -r-xr-xr-x 1 root wheel 372 May 30 17:16 portsentry.sh -r-xr-xr-x 1 root wheel 534 Jun 5 12:41 pure-ftpd.sh -rw------- 1 root wheel 328 Jan 11 2003 quakeserver.sh -rwxr-x--x 1 root wheel 360 Jan 11 2003 rplayd.sh.sample -r-xr-xr-x 1 root wheel 350 Apr 4 08:40 rsyncd.sh -r-xr-xr-x 1 root wheel 602 Jan 13 2003 samba.sh.sample -rwxr-xr-x 1 root wheel 1586 Jun 4 21:30 saslauthd.sh -rw------- 1 root wheel 1363 Jun 4 19:00 sendmail.sh -r-xr-xr-x 1 root wheel 838 Jul 10 14:52 slapd.sh.sample -r-xr-xr-x 1 root wheel 475 Jul 10 14:52 slurpd.sh.sample -rw------- 1 root wheel 640 Jun 4 18:59 sm-client.sh -rwxr-x--x 1 root wheel 710 Jul 12 11:20 snmpd.sh -r-xr-xr-x 1 root wheel 680 May 30 11:36 stunnel.sh -rwxr-x--- 1 root wheel 382 Apr 6 18:14 zope.sh From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 09:05:16 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E816037B401 for ; Sun, 10 Aug 2003 09:05:16 -0700 (PDT) Received: from typhoon.enabled.com (typhoon.enabled.com [216.218.220.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87AA643F75 for ; Sun, 10 Aug 2003 09:05:16 -0700 (PDT) (envelope-from admin2@enabled.com) Received: from enabled.com (localhost.enabled.com [127.0.0.1]) by typhoon.enabled.com (8.12.9/8.12.9) with ESMTP id h7AG5FoD091042 for ; Sun, 10 Aug 2003 09:05:15 -0700 (PDT) (envelope-from admin2@enabled.com) From: "admin" To: freebsd-questions@freebsd.org Date: Sun, 10 Aug 2003 08:05:15 -0800 Message-Id: <20030810160059.M73230@enabled.com> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 131.161.240.206 (admin2) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Subject: [newbie] All mbuf clusters exhausted - more information X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 16:05:17 -0000 Hi, Are there any good links that discuss tuning of All mbuf clusters exhausted. Is it possible my box was getting attacked? What can I do to protect myself from this in the future? there are recent log entries before my machine crashed: Aug 8 04:00:00 typhoon newsyslog[25053]: logfile turned over due to size>100K Aug 8 04:19:03 typhoon /kernel: pmap_collect: collecting pv entries -- suggest increasing PMAP_SHPGPERPROC Aug 8 04:29:31 typhoon /kernel: All mbuf clusters exhausted, please see tuning( 7). Aug 8 04:30:02 typhoon last message repeated 30 times Aug 8 04:30:43 typhoon last message repeated 37 times Aug 8 04:42:09 typhoon last message repeated 99 times Aug 8 04:52:09 typhoon last message repeated 193 times Aug 8 05:01:09 typhoon last message repeated 88 times Aug 8 05:10:51 typhoon last message repeated 156 times Aug 8 05:30:05 typhoon /kernel: All mbuf clusters exhausted, please see tuning( 7). Aug 8 05:37:45 typhoon last message repeated 206 times Aug 8 05:37:45 typhoon /kernel: Limiting open port RST response from 336 to 200 packets per second - Noah From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 09:06:12 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 903DA37B401 for ; Sun, 10 Aug 2003 09:06:12 -0700 (PDT) Received: from mail.bsdforen.de (BSDForen.de [62.116.137.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60E6643FA3 for ; Sun, 10 Aug 2003 09:06:11 -0700 (PDT) (envelope-from grunix@bsdforen.de) Received: from huibuh.encephalon.de (reverse-213-146-112-85.dialin.kamp-dsl.de [213.146.112.85]) by mail.bsdforen.de (Postfix) with ESMTP id B469A484; Sun, 10 Aug 2003 18:05:38 +0200 (CEST) Date: Sun, 10 Aug 2003 18:08:44 +0200 From: "Axel S. Gruner" To: Grant Peel Message-Id: <20030810180844.7bd37cc2.grunix@bsdforen.de> In-Reply-To: <005901c35f56$38c77dd0$6501a8c0@grant> References: <006b01c35f41$7d202f00$6501a8c0@grant> <20030810152655.2cb0eb0c.sheepkiller@cultdeadsheep.org> <005901c35f56$38c77dd0$6501a8c0@grant> X-Mailer: Sylpheed version 0.9.3 (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@FreeBSD.ORG Subject: Re: Jails X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 16:06:13 -0000 Hi. On Sun, 10 Aug 2003 11:44:01 -0400 "Grant Peel" wrote something special: > Q1, If I do another completely fresh installation of 5.1 and then > install a bunch of ports, (Apache, Exim, named etc etc) when its time > to build the jail, will ALL of the things that were installed on the > parent server be automaticaly built for the jail? No. If you build a jail, only the base system, without the third party software you built and installed on the host system will be the jail. You have to build you these application in the jail. > Q2, When one installs new things to the main server, how do you add > them to the jail(s)?. What do you mean with "new things". A jail is a "virtual" system and has nothing to do with the host system the jail is running on. If you want to install new software for/in a jail, you have to login to that one, and start to build that particular software you want to run. > Q3, Are there any available patches that should be installed before > any jails are built? No i dont think so. > Q4, If complete servers are built in a jail, and a jailed user is > given shell access VIA ssh, how secure is the jail? Can the jailed > user 'break out' to the main server? Normally no. Or, i dont heard that in past happend (but it maybe can happen in the future). A jail is secure, but you as the Administrator has to watch out to secure the jail as any other system you administrate. Please, read the very very good manpage of jail --> man jail. All your questions will find an answer there. -- asg Die Antwort auf alle Fragen ist 42. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 09:32:25 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92E1237B401 for ; Sun, 10 Aug 2003 09:32:25 -0700 (PDT) Received: from datasphereweb.com (12-212-67-226.client.attbi.com [12.212.67.226]) by mx1.FreeBSD.org (Postfix) with SMTP id D8A9B43F85 for ; Sun, 10 Aug 2003 09:32:24 -0700 (PDT) (envelope-from ryallsd@datasphereweb.com) Received: (qmail 78526 invoked from network); 10 Aug 2003 16:32:23 -0000 Received: from evrtwa1-ar17-4-47-114-001.evrtwa1.dsl-verizon.net (HELO bartxp) (4.47.114.1) by datasphereweb.com with SMTP; 10 Aug 2003 16:32:23 -0000 From: "Derrick Ryalls" To: "'Daniel Nielsen'" , Date: Sun, 10 Aug 2003 09:32:17 -0700 Message-ID: <001b01c35f5c$f6f90250$0200a8c0@bartxp> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 In-Reply-To: <200308101524.08201.djn@daimi.au.dk> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal Subject: RE: USB printer? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 16:32:25 -0000 > Hi (again) > > I recently bought a brother 5050 laser (postscript level 3). > Connected it via > usb, configured cups to use it. And it worked like a charm. > However, now I > discover that It doesnt work unless the printer is powered on (not in > standby) when the computer boots. If I power it on > afterwards, the printer is > detected: > > zits root # dmesg | grep ulpt > ulpt0: Brother HL-5050, rev 2.00/1.00, addr 3, iclass 7/1 > ulpt0: using bi-directional mode > zits root # > > And when I turn off the printer also: > zits root # dmesg | grep ulpt > > ulpt0: at uhub0 port 2 (addr 3) disconnected > ulpt0: detached > zits root # > > But when I try to print, the job shows up on the cups webpage > as processing. > And nothing happens! > I get a process: > zits root # ps aux | grep usb > > root 1033 0.0 0.2 2616 1168 ?? S 3:22PM 0:00.00 > usb:/dev/ulpt0 24 > Test Page 1 (usb) > zits root # > > But it never finishes. What could I do to make it work > proberly? If the printer enters standby after boot, then it > also doesn't print, with the > same symptoms. > Have you tried restarting cups after the printer is detected? From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 09:32:50 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F1FA37B401 for ; Sun, 10 Aug 2003 09:32:50 -0700 (PDT) Received: from mail2.ba.psg.sk (mail2.ba.psg.sk [195.80.171.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3B4543F3F for ; Sun, 10 Aug 2003 09:32:48 -0700 (PDT) (envelope-from support@bluetooth-shop.sk) Received: [from peter (proxy.pro.sk [212.55.244.46]) by mail2.ba.psg.sk with SMTP id h7AGWl0i030641 for ; Sun, 10 Aug 2003 18:32:48 +0200] Message-ID: <000b01c35f5c$f3325d60$3501a8c0@pro.sk> From: "SUPPORT" To: "FreeBSD Questions" Date: Sun, 10 Aug 2003 18:32:06 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit X-Priority: 1 X-MSMail-Priority: High X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Subject: 4.8 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: Sun, 10 Aug 2003 16:32:50 -0000 Hello everybody, I just tried to install new 4.8 FreeBSD from ISO images. But it still ends with following: acd0: READ_TOC command timeout-resetting acd0: resetting devices...done acd0: read data overrun 12/0 I have Compaq Pentium PRO, 200 MHz with 64 MB RAM, with Symbios Logic 53C875 SCSI adapter and Compaq ST32171W HDD (2 GB), with Compaq Neteligent 10/100 TX PCI UTP and 3Com590 NICs, Matrox MGA Millenium. My installation still end during probing all devices... There is no ATA HDD, CD was connected first as Cable Select, after install failure as Primary Master, after install failure replaced with another CD-ROM unit with same results. PC normally boots from this CD, but then install fails. What is the problem and how can I solve it ? PLEASE HELP.............. Peter Rosa From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 09:36:16 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84A2E37B401 for ; Sun, 10 Aug 2003 09:36:16 -0700 (PDT) Received: from shrike.submonkey.net (pc1-cdif2-5-cust38.cdif.cable.ntl.com [81.101.150.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id C766F43F75 for ; Sun, 10 Aug 2003 09:36:15 -0700 (PDT) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.20) id 19ltB0-000CKh-LS; Sun, 10 Aug 2003 17:36:14 +0100 Date: Sun, 10 Aug 2003 17:36:14 +0100 From: Ceri Davies To: admin Message-ID: <20030810163614.GH76053@submonkey.net> Mail-Followup-To: Ceri Davies , admin , freebsd-questions@freebsd.org References: <20030810155739.M51692@enabled.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QWIFStbFpmlD00Pf" Content-Disposition: inline In-Reply-To: <20030810155739.M51692@enabled.com> User-Agent: Mutt/1.5.4i Sender: Ceri Davies cc: freebsd-questions@freebsd.org Subject: Re: /usr/local/etc/rc.d files not running on reboot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 16:36:16 -0000 --QWIFStbFpmlD00Pf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 10, 2003 at 07:59:55AM -0800, admin wrote: > FreeBSD 4.8-STABLE >=20 > My machine crashed last night and upon reboot not all the services that a= re > executable in the /usr/local/etc/rc.d ran. Any clues how I can find out = why > this happened? A number of the files listed are not executable, and therefore won't get ru= n. When this happens, the rc system usually prints a message "skipping foo.sh, not executable". Ceri > Here is what I have there: >=20 > total 66 > -rwxr-x--- 1 root wheel 181 Jul 8 11:54 000.mysql-client.sh > -r-xr-xr-x 1 root wheel 248 Apr 7 17:36 000.pkgtools.sh > -r-xr-xr-- 1 root pgsql 1046 Jul 7 08:24 010.pgsql.sh > -r-xr-xr-x 1 root wheel 310 Jan 10 2003 apache.sh > -r-xr-xr-x 1 root wheel 359 May 30 17:13 cucipop.sh > -rwxr-x--x 1 root wheel 3613 Jan 13 2003 cupsd.sh.sample > -r-xr-xr-x 1 root wheel 266 Jan 10 2003 emacs.sh > -rw------- 1 root wheel 316 Jan 11 2003 idled.sh > -rw------- 1 root wheel 289 Feb 10 00:35 innd.sh --=20 User: DO YOU ACCEPT JESUS CHRIST AS YOUR PERSONAL LORD AND SAVIOR? Iniaes: Sure, I can accept all forms of payment. -- www.chatterboxchallenge.com --QWIFStbFpmlD00Pf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/NnR+ocfcwTS3JF8RAtA1AKClZnwlPMfGexgPKo0iGJs661CoPQCfaZeu dBUbMObTUS22aZCdxYwcQ5o= =0KIr -----END PGP SIGNATURE----- --QWIFStbFpmlD00Pf-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 09:45:22 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE6F537B401 for ; Sun, 10 Aug 2003 09:45:22 -0700 (PDT) Received: from typhoon.enabled.com (typhoon.enabled.com [216.218.220.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4231943F75 for ; Sun, 10 Aug 2003 09:45:22 -0700 (PDT) (envelope-from admin2@enabled.com) Received: from enabled.com (localhost.enabled.com [127.0.0.1]) by typhoon.enabled.com (8.12.9/8.12.9) with ESMTP id h7AGjLbT091521 for ; Sun, 10 Aug 2003 09:45:21 -0700 (PDT) (envelope-from admin2@enabled.com) From: "admin" To: freebsd-questions@freebsd.org Date: Sun, 10 Aug 2003 08:45:21 -0800 Message-Id: <20030810164131.M87380@enabled.com> In-Reply-To: <20030810163614.GH76053@submonkey.net> References: <20030810155739.M51692@enabled.com> <20030810163614.GH76053@submonkey.net> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 131.161.240.206 (admin2) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Subject: Re: /usr/local/etc/rc.d files not running on reboot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 16:45:23 -0000 On Sun, 10 Aug 2003 17:36:14 +0100, Ceri Davies wrote > On Sun, Aug 10, 2003 at 07:59:55AM -0800, admin wrote: > > FreeBSD 4.8-STABLE > > > > My machine crashed last night and upon reboot not all the services that are > > executable in the /usr/local/etc/rc.d ran. Any clues how I can find out why > > this happened? > > A number of the files listed are not executable, and therefore won't > get run. When this happens, the rc system usually prints a message > "skipping foo.sh, not executable". Hi, okay cool - I understand that. but cucipop, for example never started but is executable. there is no message claiming the skipping of cucipop: shell% grep skipping /var/log/messages shell% what else could be happening here? - Noah > > Ceri > > > Here is what I have there: > > > > total 66 > > -rwxr-x--- 1 root wheel 181 Jul 8 11:54 000.mysql-client.sh > > -r-xr-xr-x 1 root wheel 248 Apr 7 17:36 000.pkgtools.sh > > -r-xr-xr-- 1 root pgsql 1046 Jul 7 08:24 010.pgsql.sh > > -r-xr-xr-x 1 root wheel 310 Jan 10 2003 apache.sh > > -r-xr-xr-x 1 root wheel 359 May 30 17:13 cucipop.sh > > -rwxr-x--x 1 root wheel 3613 Jan 13 2003 cupsd.sh.sample > > -r-xr-xr-x 1 root wheel 266 Jan 10 2003 emacs.sh > > -rw------- 1 root wheel 316 Jan 11 2003 idled.sh > > -rw------- 1 root wheel 289 Feb 10 00:35 innd.sh > > > > -- > User: DO YOU ACCEPT JESUS CHRIST AS YOUR PERSONAL LORD AND SAVIOR? > Iniaes: Sure, I can accept all forms of payment. > -- www.chatterboxchallenge.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 09:51:04 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B55337B482 for ; Sun, 10 Aug 2003 09:51:04 -0700 (PDT) Received: from typhoon.enabled.com (typhoon.enabled.com [216.218.220.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90DCB43F85 for ; Sun, 10 Aug 2003 09:51:03 -0700 (PDT) (envelope-from admin2@enabled.com) Received: from enabled.com (localhost.enabled.com [127.0.0.1]) by typhoon.enabled.com (8.12.9/8.12.9) with ESMTP id h7AGp2bT091623 for ; Sun, 10 Aug 2003 09:51:02 -0700 (PDT) (envelope-from admin2@enabled.com) From: "admin" To: freebsd-questions@freebsd.org Date: Sun, 10 Aug 2003 08:51:02 -0800 Message-Id: <20030810164735.M11999@enabled.com> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 131.161.240.206 (admin2) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Subject: mbuf allocation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 16:51:04 -0000 FreeBSD 4.8 Stable currently my default mbuf clusters allocation is 4560. I have 512Meg of memory in the box. can this box easily handle 32768 mbuf clusters? netstat -m 258/576/18240 mbufs in use (current/peak/max): 258 mbufs allocated to data 256/512/4560 mbuf clusters in use (current/peak/max) 1168 Kbytes allocated to network (8% of mb_map in use) 0 requests for memory denied 0 requests for memory delayed 0 calls to protocol drain routines - Noah From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 10:02:15 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9897E37B401 for ; Sun, 10 Aug 2003 10:02:15 -0700 (PDT) Received: from flamingo.mail.pas.earthlink.net (flamingo.mail.pas.earthlink.net [207.217.120.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A1BC43FAF for ; Sun, 10 Aug 2003 10:02:15 -0700 (PDT) (envelope-from rperry4@earthlink.net) Received: from dialup-171.75.71.33.dial1.weehawken.level3.net ([171.75.71.33] helo=earthlink.net) by flamingo.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 19lta8-0003f6-00; Sun, 10 Aug 2003 10:02:12 -0700 Message-ID: <3F367B0B.2090009@earthlink.net> Date: Sun, 10 Aug 2003 13:04:11 -0400 From: Bob Perry User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030704 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kent Stewart References: <3F35002F.1060108@earthlink.net> <1060497995.17037.85.camel@daemon.home.net> <3F365CFD.9000708@earthlink.net> <200308100835.11959.kstewart@owt.com> In-Reply-To: <200308100835.11959.kstewart@owt.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD-Questions Subject: Re: Portupgrade 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: Sun, 10 Aug 2003 17:02:15 -0000 It doesn't read the tree. It uses INDEX.db, which you are supposed to >build after each cvsup of ports-all. To build INDEX.db, you need a >current version of INDEX. I get too many messages from "portsdb -U" and >use the sequence "make index" and then "portsdb -u". I run these >everytime I cvsup ports-all. The only time you can save is adding >"ports/INDEX" to your refuse file. There isn't any point in downloading >INDEX and rebuilding it immediately after cvsup finishes. > >If you have more ports in your refuse file, running portsdb -U is >probably your only choice. Make is known to stop when it hits a port >that is missing in your /usr/port fs. > > > I think I have a better understanding now of this process. It's also clear that I have to spend more time with the available documentation. Thanks to you both for taking the time to help. Bob From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 10:06:57 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E91237B401 for ; Sun, 10 Aug 2003 10:06:57 -0700 (PDT) Received: from bara.naviservers.net (bara.naviservers.net [216.242.137.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42B1843FAF for ; Sun, 10 Aug 2003 10:06:56 -0700 (PDT) (envelope-from root@bara.naviservers.net) Received: from localhost (root@localhost) by bara.naviservers.net (8.11.7/8.9.3) with ESMTP id h7AH6WV37425 for ; Mon, 11 Aug 2003 02:06:32 +0900 (JST) (envelope-from root@bara.naviservers.net) Date: Mon, 11 Aug 2003 02:06:32 +0900 (JST) From: Roger Williams To: Message-ID: <20030811020609.E37423-100000@bara.naviservers.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Dell, 4.4 and Raid issues X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 17:06:57 -0000 I recently tried to install freebsd 4.4 on a new dell 1650 server with the perc3-di, 128mb on-board raid. Once the bios boots ( with no errors) the freebsd install complains there are no disks installed. Anyone have any ideas what is the issue? Thanks, Roger From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 10:37:12 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EBF337B401 for ; Sun, 10 Aug 2003 10:37:12 -0700 (PDT) Received: from kashmir.thend.org (kashmir.thend.org [63.162.108.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE55043F3F for ; Sun, 10 Aug 2003 10:37:09 -0700 (PDT) (envelope-from judge@Pavleck.Com) Received: from localhost (judge@localhost) by kashmir.thend.org (8.9.3/8.9.3) with ESMTP id LAA01193 for ; Sun, 10 Aug 2003 11:37:16 -0600 (MDT) (envelope-from judge@Pavleck.Com) Date: Sun, 10 Aug 2003 11:37:16 -0600 (MDT) From: "Jeremy D. Pavleck" X-Sender: judge@kashmir.thend.org To: freebsd-questions@FreeBSD.ORG Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Quick 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, 10 Aug 2003 17:37:12 -0000 Greetings All, I initially tried to install FreeBSD something like 4 years ago and failed miserably, and went to linux. (Hardware wasn't completely compatible with FreeBSD). Recently my Debian server motherboard died on me, prompting me to prepare a list of new parts for a new box. Because I still use FreeBSD everyday (diffrent server) and the whole SCO thing, I want to try again to setup a freebsd box. To make sure I don't have a compatibility problem, I'd appreciate it if someone would look at this "wish list" http://secure.newegg.com/app/WishR.asp?ID=385191 And tell me if, in your opinion, all of these parts would be compatible with FBSD 5.1. (Of course, I'm mainly concerned about the MB - it's an all in one solution, and the NIC) Thanks in advance, Jeremy ****************** Jeremy D. Pavleck jeremy@pavleck.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 11:12:17 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EA3E37B401 for ; Sun, 10 Aug 2003 11:12:17 -0700 (PDT) Received: from axp.microbsd.net (axp.microbsd.net [4.38.106.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id F401F43FA3 for ; Sun, 10 Aug 2003 11:12:16 -0700 (PDT) (envelope-from kerberus@microbsd.net) Received: from [192.168.0.10] (unknown [4.38.106.110]) by axp.microbsd.net (Postfix) with ESMTP id 9DF06424B; Sun, 10 Aug 2003 12:05:01 -0400 (EDT) From: Kerberus To: Grant Peel In-Reply-To: <005901c35f56$38c77dd0$6501a8c0@grant> References: <006b01c35f41$7d202f00$6501a8c0@grant> <20030810152655.2cb0eb0c.sheepkiller@cultdeadsheep.org> <005901c35f56$38c77dd0$6501a8c0@grant> Content-Type: text/plain Message-Id: <1060531546.683.2.camel@vaio.microbsd.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sun, 10 Aug 2003 11:05:47 -0500 Content-Transfer-Encoding: 7bit cc: Clement Laforet cc: freebsd-questions@FreeBSD.ORG Subject: Re: Jails X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 18:12:17 -0000 1: NO 2: you must install packages/ports manually in the jail also 3: NO 4: debateable On Sun, 2003-08-10 at 10:44, Grant Peel wrote: > Hi all, > > My questions are realating to a recent dev install I did with FreeBSD 5.1 > The jail was setup on a fresh install, with no other ports or mods > installed. > > Q1, If I do another completely fresh installation of 5.1 and then install a > bunch of ports, (Apache, Exim, named etc etc) when its time to build the > jail, will ALL of the things that were installed on the parent server be > automaticaly built for the jail? > > Q2, When one installs new things to the main server, how do you add them to > the jail(s)?. > > Q3, Are there any available patches that should be installed before any > jails are built? > > Q4, If complete servers are built in a jail, and a jailed user is given > shell access VIA ssh, how secure is the jail? Can the jailed user 'break > out' to the main server? > > TIA, > > -Grant > > Grant W. Peel > Server Admin > grant@thenetnow.com > http://thenetnow.com > ----- Original Message ----- > From: "Clement Laforet" > To: "Grant Peel" > Cc: > Sent: Sunday, August 10, 2003 9:26 AM > Subject: Re: Jails > > > > On Sun, 10 Aug 2003 09:15:36 -0400 > > "Grant Peel" wrote: > > > > > Hello all, > > > > > > I have read all the docs on the FreeBSD site regarding jails and have > one > > > working jail setup on my devbox. > > > > > > Are there any experts who would like to discuss on or off list, as I > still > > > have a number of questions. > > > > > > -Grant > > > > What do you want to know ? > > just ask on questions@ :) > > > > _______________________________________________ > 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 10 11:37:07 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D599337B401 for ; Sun, 10 Aug 2003 11:37:07 -0700 (PDT) Received: from darkpossum.medill.northwestern.edu (darkpossum.medill.northwestern.edu [129.105.51.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1652543F3F for ; Sun, 10 Aug 2003 11:37:07 -0700 (PDT) (envelope-from possum@darkpossum.medill.northwestern.edu) Received: from darkpossum.medill.northwestern.edu (localhost.medill.northwestern.edu [127.0.0.1])h7AISeLG087970 for ; Sun, 10 Aug 2003 13:28:40 -0500 (CDT) (envelope-from possum@darkpossum.medill.northwestern.edu) Received: (from possum@localhost)h7AISZ3u087969 for freebsd-questions@freebsd.org; Sun, 10 Aug 2003 13:28:35 -0500 (CDT) Date: Sun, 10 Aug 2003 13:28:35 -0500 From: Redmond Militante To: freebsd-questions@freebsd.org Message-ID: <20030810182834.GA87940@darkpossum> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8t9RHnE3ZwKMSgU+" Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Sender: redmond@darkpossum.medill.northwestern.edu X-URL: http://darkpossum.medill.northwestern.edu/modules.php?name=Content&pa=showpage&pid=1 X-DSA-and-ElGamal-Fingerprint: 2AA2 E78E A6FC 9144 3534 39A2 EE0F 8D26 5FDF 481D X-High-Score-Unreal-Tournament: 7639 Subject: newsyslog.conf syntax 5.1-RELEASE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Redmond Militante List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 18:37:08 -0000 --8t9RHnE3ZwKMSgU+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline hi all i'm getting the following message from the cron daemon on a 5.1-RELEASE box. newsyslog: malformed at: /var/log/firewall_logs 600 14 * $DO Z i've been trying to set up newsyslog so that it archives my firewall logs every night at midnight. can anyone tell me what's wrong with my syntax on this line? thanks redmond --8t9RHnE3ZwKMSgU+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/No7S7g+NJl/fSB0RAirMAKDPOAObVJznryHRkA/ew5nUr5F8PwCgqk5k 0QXRd5QZ79J+JtsJo+SY3Bk= =I+cV -----END PGP SIGNATURE----- --8t9RHnE3ZwKMSgU+-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 11:42:55 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EE8D37B401 for ; Sun, 10 Aug 2003 11:42:55 -0700 (PDT) Received: from shell.i-sphere.com (shell.i-sphere.com [207.126.121.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3516F43F85 for ; Sun, 10 Aug 2003 11:42:53 -0700 (PDT) (envelope-from fasty@i-sphere.com) Received: from fasty-tvrz8i7n8.i-sphere.com (02-067.015.popsite.net [66.248.18.67]) by shell.i-sphere.com (Postfix) with ESMTP id 2BCD48C9E48 for ; Sun, 10 Aug 2003 18:42:50 +0000 (GMT) Message-Id: <5.2.1.1.2.20030810113623.030b6ea8@mail.i-sphere.com> X-Sender: fasty@mail.i-sphere.com X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Sun, 10 Aug 2003 11:42:54 -0700 To: freebsd-questions@freebsd.org From: fasty Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: ntpdate not work inside the jail. Please 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: Sun, 10 Aug 2003 18:42:55 -0000 Hi there- I need your help. I tried get ntpdate work inside the Jail and it wont let me set the clock. The parent works correct time but inside the jail wont let me update correct time clock. How do I get correct clock set inside the jail. Let me know thanks! PS. Do i have to kill the Jail then restart Jail to get correct clock set and Does the sysctl command that enforce Jail obtain clock set from parent system? -- #: hostname shell.i-sphere.com #: ntpdate tick.ucla.edu 10 Aug 18:37:26 ntpdate[20057]: Can't adjust the time of day: Operation not permitted #: --end -trev http://www.monkeys.com/cgi-bin/wpoison/wpoison.cgi - (Death to Spam!) From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 11:53:49 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A570C37B401 for ; Sun, 10 Aug 2003 11:53:49 -0700 (PDT) Received: from daimi.au.dk (daimi.au.dk [130.225.16.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7834D43F3F for ; Sun, 10 Aug 2003 11:53:48 -0700 (PDT) (envelope-from djn@daimi.au.dk) Received: from zits (localhost [127.0.0.1]) by daimi.au.dk (8.11.7/8.11.7) with ESMTP id h7AIrj910410 for ; Sun, 10 Aug 2003 20:53:45 +0200 From: Daniel Nielsen To: freebsd-questions@freebsd.org Date: Sun, 10 Aug 2003 20:54:19 +0200 User-Agent: KMail/1.5.3 References: <001b01c35f5c$f6f90250$0200a8c0@bartxp> In-Reply-To: <001b01c35f5c$f6f90250$0200a8c0@bartxp> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308102054.19928.djn@daimi.au.dk> X-Virus-Scanned: by amavisd-milter (http://www.amavis.org/) Subject: Re: USB printer? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 18:53:49 -0000 On Sunday 10 August 2003 18:32, Derrick Ryalls wrote: > > Hi (again) > > > > I recently bought a brother 5050 laser (postscript level 3). > > Connected it via > > usb, configured cups to use it. And it worked like a charm. > > However, now I > > discover that It doesnt work unless the printer is powered on (not in > > standby) when the computer boots. If I power it on > > afterwards, the printer is > > detected: > > > > zits root # dmesg | grep ulpt > > ulpt0: Brother HL-5050, rev 2.00/1.00, addr 3, iclass 7/1 > > ulpt0: using bi-directional mode > > zits root # > > > > And when I turn off the printer also: > > zits root # dmesg | grep ulpt > > > > ulpt0: at uhub0 port 2 (addr 3) disconnected > > ulpt0: detached > > zits root # > > > > But when I try to print, the job shows up on the cups webpage > > as processing. > > And nothing happens! > > I get a process: > > zits root # ps aux | grep usb > > > > root 1033 0.0 0.2 2616 1168 ?? S 3:22PM 0:00.00 > > usb:/dev/ulpt0 24 > > Test Page 1 (usb) > > zits root # > > > > But it never finishes. What could I do to make it work > > proberly? If the printer enters standby after boot, then it > > also doesn't print, with the > > same symptoms. > > Have you tried restarting cups after the printer is detected? > Yes I have, to no avail. It seems to be a USB hotplugging issue of some kind. On a side note; It works perfectly in winXP... /Daniel -- There are no great men, only great challenges that ordinary men are forced by circumstances to meet. -- Admiral William Halsey From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 12:37:01 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50B1E37B401 for ; Sun, 10 Aug 2003 12:37:01 -0700 (PDT) Received: from shell.i-sphere.com (shell.i-sphere.com [207.126.121.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2BBE43F75 for ; Sun, 10 Aug 2003 12:37:00 -0700 (PDT) (envelope-from fasty@i-sphere.com) Received: from fasty-tvrz8i7n8.i-sphere.com (02-067.015.popsite.net [66.248.18.67]) by shell.i-sphere.com (Postfix) with ESMTP id 614BD8C9E3F for ; Sun, 10 Aug 2003 12:36:57 -0700 (PDT) Message-Id: <5.2.1.1.2.20030810123659.0309f880@mail.i-sphere.com> X-Sender: fasty@mail.i-sphere.com X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Sun, 10 Aug 2003 12:37:09 -0700 To: freebsd-questions@freebsd.org From: fasty In-Reply-To: <5.2.1.1.2.20030810113623.030b6ea8@mail.i-sphere.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Re: ntpdate not work inside the jail. Please 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: Sun, 10 Aug 2003 19:37:01 -0000 Never mind.. Please discard this. I successful correct the timezone inside the jail. thanks anyway! At 11:42 AM 8/10/2003 -0700, fasty wrote: >Hi there- > > I need your help. I tried get ntpdate work inside the Jail and it wont > let me set the clock. > >The parent works correct time but inside the jail wont let me update >correct time clock. How do I get correct clock set inside the jail. Let me >know thanks! > >PS. Do i have to kill the Jail then restart Jail to get correct clock set >and Does the sysctl command that enforce Jail obtain clock set from parent >system? >-- >#: hostname >shell.i-sphere.com >#: ntpdate tick.ucla.edu >10 Aug 18:37:26 ntpdate[20057]: Can't adjust the time of day: Operation >not permitted >#: >--end > > > >-trev >http://www.monkeys.com/cgi-bin/wpoison/wpoison.cgi - > >(Death to Spam!) > >_______________________________________________ >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" -trev http://www.monkeys.com/cgi-bin/wpoison/wpoison.cgi - (Death to Spam!) From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 12:43:30 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0DA737B401 for ; Sun, 10 Aug 2003 12:43:30 -0700 (PDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id A587443FA3 for ; Sun, 10 Aug 2003 12:43:29 -0700 (PDT) (envelope-from alexander.pohoyda@gmx.net) Received: (qmail 29602 invoked by uid 65534); 10 Aug 2003 19:43:28 -0000 Received: from p508BDADF.dip.t-dialin.net (EHLO oak.pohoyda.family) (80.139.218.223) by mail.gmx.net (mp001) with SMTP; 10 Aug 2003 21:43:28 +0200 Received: from oak.pohoyda.family (oak.pohoyda.family [127.0.0.1]) by oak.pohoyda.family (8.12.9/8.12.6) with ESMTP id h7AJhQGg003656; Sun, 10 Aug 2003 21:43:26 +0200 (CEST) (envelope-from alexander.pohoyda@gmx.net) Received: (from apog@localhost) by oak.pohoyda.family (8.12.9/8.12.9/Submit) id h7AJhNk8003653; Sun, 10 Aug 2003 21:43:23 +0200 (CEST) X-Authentication-Warning: oak.pohoyda.family: apog set sender to alexander.pohoyda@gmx.net using -f Sender: alexander.pohoyda@gmx.net To: Chris References: <200308091216.33379.racerx@makeworld.com> From: Alexander Pohoyda Date: 10 Aug 2003 21:43:23 +0200 In-Reply-To: <200308091216.33379.racerx@makeworld.com> Message-ID: <87smo9e1t0.fsf@oak.pohoyda.family> Lines: 11 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-questions@FreeBSD.ORG Subject: Re: KDM screen capture X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 19:43:31 -0000 Chris writes: > Is it possible to capture the screen while at the KDM login? > If so - what application to use? I would say that using a digital camera is the simplest solution. -- Alexander Pohoyda From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 13:06:59 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84C5C37B401 for ; Sun, 10 Aug 2003 13:06:59 -0700 (PDT) Received: from munk.nu (213-152-51-194.dsl.eclipse.net.uk [213.152.51.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6182643FAF for ; Sun, 10 Aug 2003 13:06:56 -0700 (PDT) (envelope-from munk@munk.nu) Received: from munk by munk.nu with local (Exim 4.20) id 19lwSs-0009nR-CS for freebsd-questions@freebsd.org; Sun, 10 Aug 2003 21:06:54 +0100 Date: Sun, 10 Aug 2003 21:06:54 +0100 From: Jez Hancock To: freebsd-questions@freebsd.org Message-ID: <20030810200654.GA37421@users.munk.nu> Mail-Followup-To: freebsd-questions@freebsd.org References: <20030810155739.M51692@enabled.com> <20030810163614.GH76053@submonkey.net> <20030810164131.M87380@enabled.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030810164131.M87380@enabled.com> User-Agent: Mutt/1.4.1i Sender: User Munk Subject: Re: /usr/local/etc/rc.d files not running on reboot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 20:06:59 -0000 On Sun, Aug 10, 2003 at 08:45:21AM -0800, admin wrote: > On Sun, 10 Aug 2003 17:36:14 +0100, Ceri Davies wrote > > On Sun, Aug 10, 2003 at 07:59:55AM -0800, admin wrote: > > > FreeBSD 4.8-STABLE > > > > > > My machine crashed last night and upon reboot not all the services that are > > > executable in the /usr/local/etc/rc.d ran. Any clues how I can find out why > > > this happened? > > > > A number of the files listed are not executable, and therefore won't > > get run. When this happens, the rc system usually prints a message > > "skipping foo.sh, not executable". > > > > Hi, > > okay cool - I understand that. > > but cucipop, for example never started but is executable. there is no message > claiming the skipping of cucipop: > > shell% grep skipping /var/log/messages > shell% I don't think you'll see the error messages from rc in the messages log - you'd have to watch the server console ttyv0 to view those error messages. > > > what else could be happening here? What happens when you run: /usr/local/etc/rc.d/cucipop.sh start ? -- Jez http://www.munk.nu/ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 13:28:00 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F7DD37B401 for ; Sun, 10 Aug 2003 13:28:00 -0700 (PDT) Received: from rwcrmhc13.comcast.net (rwcrmhc13.comcast.net [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C15043FAF for ; Sun, 10 Aug 2003 13:28:00 -0700 (PDT) (envelope-from paulbeard@mac.com) Received: from mac.com (12-231-115-57.client.attbi.com[12.231.115.57](untrusted sender)) by comcast.net (rwcrmhc13) with SMTP id <20030810202759015006j4m4e>; Sun, 10 Aug 2003 20:27:59 +0000 Message-ID: <3F36AACD.7040904@mac.com> Date: Sun, 10 Aug 2003 13:27:57 -0700 From: paul beard User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5a) Gecko/20030731 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Jeremy D. Pavleck" References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@FreeBSD.ORG Subject: Re: Quick 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, 10 Aug 2003 20:28:00 -0000 Jeremy D. Pavleck wrote: > Greetings All, > I initially tried to install FreeBSD something like 4 years ago and > failed miserably, and went to linux. (Hardware wasn't completely > compatible with FreeBSD). > Recently my Debian server motherboard died on me, prompting me to prepare > a list of new parts for a new box. Because I still use FreeBSD everyday > (diffrent server) and the whole SCO thing, I want to try again to setup a > freebsd box. > To make sure I don't have a compatibility problem, I'd appreciate it if > someone would look at this "wish list" > > http://secure.newegg.com/app/WishR.asp?ID=385191 > > And tell me if, in your opinion, all of these parts would be compatible > with FBSD 5.1. (Of course, I'm mainly concerned about the MB - it's an all > in one solution, and the NIC) > Why go with 5.1? Try 4.8 for now and get used to FreeBSD. 5.2 will be ready when you are. -- Paul Beard whois -h whois.networksolutions.com ha=pb202 Anybody who doesn't cut his speed at the sight of a police car is probably parked. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 14:15:19 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 912AA37B404 for ; Sun, 10 Aug 2003 14:15:19 -0700 (PDT) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A43A43F75 for ; Sun, 10 Aug 2003 14:15:17 -0700 (PDT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [127.0.0.1]) h7ALFAD0026204 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 10 Aug 2003 22:15:13 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)h7ALF9jv026203; Sun, 10 Aug 2003 22:15:10 +0100 (BST) (envelope-from matthew) Date: Sun, 10 Aug 2003 22:15:09 +0100 From: Matthew Seaman To: Redmond Militante Message-ID: <20030810211509.GD25948@happy-idiot-talk.infracaninophile.co.uk> Mail-Followup-To: Matthew Seaman , Redmond Militante , freebsd-questions@freebsd.org References: <20030810182834.GA87940@darkpossum> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="fOHHtNG4YXGJ0yqR" Content-Disposition: inline In-Reply-To: <20030810182834.GA87940@darkpossum> User-Agent: Mutt/1.5.4i X-Spam-Status: No, hits=-8.2 required=5.0 tests=AWL,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2,REFERENCES, REPLY_WITH_QUOTES,USER_AGENT_MUTT autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: freebsd-questions@freebsd.org Subject: Re: newsyslog.conf syntax 5.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: Sun, 10 Aug 2003 21:15:19 -0000 --fOHHtNG4YXGJ0yqR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 10, 2003 at 01:28:35PM -0500, Redmond Militante wrote: > hi all >=20 > i'm getting the following message from the cron daemon on a 5.1-RELEASE b= ox. >=20 > newsyslog: malformed at: > /var/log/firewall_logs 600 14 * $DO Z >=20 > i've been trying to set up newsyslog so that it archives my firewall logs= every night at midnight. can anyone tell me what's wrong with my syntax o= n this line? Looks fine to me. You could try @T00 instead of $D0 to specify midnight, but the manual page says those are equivalent anyhow. At a complete guess: no newline at end of file? Incorrect syntax on an earlier line? 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 --fOHHtNG4YXGJ0yqR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/NrXddtESqEQa7a0RAv90AJ9A4O+waOcMPplPfmMAhU6xRY9RhgCfbM9a LHbK4FywcAPH40snQ/26pRU= =mGFZ -----END PGP SIGNATURE----- --fOHHtNG4YXGJ0yqR-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 14:22:52 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8473F37B401 for ; Sun, 10 Aug 2003 14:22:43 -0700 (PDT) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 158D843F3F for ; Sun, 10 Aug 2003 14:22:42 -0700 (PDT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [127.0.0.1]) h7ALMaD0026341 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 10 Aug 2003 22:22:38 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)h7ALMap5026340; Sun, 10 Aug 2003 22:22:36 +0100 (BST) (envelope-from matthew) Date: Sun, 10 Aug 2003 22:22:36 +0100 From: Matthew Seaman To: Redmond Militante , freebsd-questions@freebsd.org Message-ID: <20030810212235.GF25948@happy-idiot-talk.infracaninophile.co.uk> Mail-Followup-To: Matthew Seaman , Redmond Militante , freebsd-questions@freebsd.org References: <20030810182834.GA87940@darkpossum> <20030810211509.GD25948@happy-idiot-talk.infracaninophile.co.uk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="SxgehGEc6vB0cZwN" Content-Disposition: inline In-Reply-To: <20030810211509.GD25948@happy-idiot-talk.infracaninophile.co.uk> User-Agent: Mutt/1.5.4i X-Spam-Status: No, hits=-8.4 required=5.0 tests=AWL,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_MUTT autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) Subject: Re: newsyslog.conf syntax 5.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: Sun, 10 Aug 2003 21:22:52 -0000 --SxgehGEc6vB0cZwN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 10, 2003 at 10:15:09PM +0100, Matthew Seaman wrote: > On Sun, Aug 10, 2003 at 01:28:35PM -0500, Redmond Militante wrote: > > i'm getting the following message from the cron daemon on a 5.1-RELEASE= box. > >=20 > > newsyslog: malformed at: > > /var/log/firewall_logs 600 14 * $DO Z > >=20 > > i've been trying to set up newsyslog so that it archives my firewall lo= gs every night at midnight. can anyone tell me what's wrong with my syntax= on this line? >=20 > Looks fine to me. You could try @T00 instead of $D0 to specify > midnight, but the manual page says those are equivalent anyhow. >=20 > At a complete guess: no newline at end of file? Incorrect syntax on > an earlier line? Actually, I see the problem now. You wrote: =20 $DO (letter O) =20 when you should have written =20 $D0 (digit 0) =20 Cheers, =20 Matthew =20 --=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 --SxgehGEc6vB0cZwN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/NrebdtESqEQa7a0RAk+JAJ0dkeL6+PJm3+cokt049FnpD3P/JQCdGD8Y Fme6RcyobX08l+6usOXBV8g= =ow+C -----END PGP SIGNATURE----- --SxgehGEc6vB0cZwN-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 14:26:42 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4417A37B401 for ; Sun, 10 Aug 2003 14:26:42 -0700 (PDT) Received: from maila.telia.com (maila.telia.com [194.22.194.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5E2543F85 for ; Sun, 10 Aug 2003 14:26:40 -0700 (PDT) (envelope-from webmaster@swedehost.com) Received: from thor.swedehost.com (h129n2fls33o804.telia.com [217.209.211.129]) by maila.telia.com (8.12.9/8.12.9) with ESMTP id h7ALQd0j027808; Sun, 10 Aug 2003 23:26:39 +0200 (CEST) X-Original-Recipient: questions@freebsd.org From: Hasse Hansson Organization: The Valhalla Project To: "Dragoncrest" , questions@freebsd.org Date: Sun, 10 Aug 2003 23:26:43 +0200 User-Agent: KMail/1.5.3 References: <200308101539.h7AFdv4x043080@mail5.mx.voyager.net> In-Reply-To: <200308101539.h7AFdv4x043080@mail5.mx.voyager.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308102326.43575.webmaster@swedehost.com> Subject: Re: java and flash in Mozilla?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 21:26:42 -0000 Hi. This webpage might help to clear out your questions. http://www.onlamp.com/pub/a/bsd/2002/09/05/FreeBSD_Basics.html / Hasse. On Sunday 10 August 2003 16.59, Dragoncrest wrote: > I've been trying at this for a while but with little success. For > some stupid reason I can't get java to work in Mozilla. Not even as > root, even though it says that Java support is installed and I went > through all the hoops that it requires to make it happen. > > Also, is there a way to install flash support in Mozilla on freebsd? > > _______________________________________________ > 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 10 14:28:34 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BEAE37B401 for ; Sun, 10 Aug 2003 14:28:34 -0700 (PDT) Received: from thor.65535.net (thor.65535.net [216.17.104.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DF0543F93 for ; Sun, 10 Aug 2003 14:28:33 -0700 (PDT) (envelope-from rghf@fsck.me.uk) Received: from localhost (localhost.jdshostimg.com [127.0.0.1]) by thor.65535.net (8.12.9/8.12.8) with ESMTP id h7ALS04J046705 for ; Sun, 10 Aug 2003 14:28:01 -0700 (PDT) (envelope-from rghf@fsck.me.uk) Date: Sun, 10 Aug 2003 14:28:00 -0700 (PDT) From: Rus Foster X-X-Sender: rghf@thor.65535.net To: questions@freebsd.org Message-ID: <20030810142709.K1213@thor.65535.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Which process are waiting for I/O? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 21:28:34 -0000 Hi All, I've got a box which is getting high loads as process are starting waiting for I/O but I can't track down the process as I think they stop/start quickly. Any ideas of how to track it down? Rus -- w: http://www.jvds.com | Linux + FreeBSD VDS's from $15/mo e: rghf@jvds.com | Totally Customizable Technology t: 07919 373537 | General FreeBSD Forums: msm: support@jvds.com | http://forums.jvds.com/viewforum.php?f=7 From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 14:39:09 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 135A537B401 for ; Sun, 10 Aug 2003 14:39:09 -0700 (PDT) Received: from mail.smartnet.se (mail.smartnet.se [193.12.242.21]) by mx1.FreeBSD.org (Postfix) with SMTP id A004043FAF for ; Sun, 10 Aug 2003 14:39:07 -0700 (PDT) (envelope-from johannes2@smartnet.se) Received: (qmail 4512 invoked from network); 10 Aug 2003 21:39:01 -0000 Received: from as14-5-4.mt.g.bonet.se (HELO ?192.168.0.3?) (217.215.46.103) by 192.168.0.21 with SMTP; 10 Aug 2003 21:39:01 -0000 Mime-Version: 1.0 X-Sender: johannes2@smartnet.se@mail.smartnet.se Message-Id: Date: Sun, 10 Aug 2003 23:38:57 +0200 To: freebsd-questions@freebsd.org From: Johannes Angeldorff Content-Type: text/plain; charset="us-ascii" ; format="flowed" Subject: ipfw / natd does not allow lan traffic to reach external numbers X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 21:39:09 -0000 Hi, I have a problem with our firewall/NAT, on a FreeBSD 4.7 box... Here a list with some details: *) The FreeBSD box uses natd and ipfw, and have two external IP:s, lets say aaa.bbb.ccc.20 and ddd.eee.fff.21. *) natd is used to redirect access to external IP addresses and ports to internal LAN IP:s, for example 192.168.0.20 and 192.168.0.21, where for example webservers are located. *) natd rules: natd_flags="-redirect_address 192.168.0.20 aaa.bbb.ccc.20 -redirect_port tcp 192.168.0.21:25-52 25-52 -redirect_port udp 192.168.0.21:25-52 25-52 -redirect_port tcp 192.168.0.30:80 80 -redirect_port udp 192.168.0.30:80 80 -redirect_port tcp 192.168.0.21:54-79 54-79 -redirect_port udp 192.168.0.21:54-79 54-79 -redirect_port tcp 192.168.0.21:81-722 81-722 -redirect_port udp 192.168.0.21:81-722 81-722 -redirect_port tcp 192.168.0.21:3306-4559 3306-4559 -redirect_port udp 192.168.0.21:3306-4559 3306-4559" *) ipfw lets things through: 00050 divert 8668 ip from any to any via fxp0 00100 allow ip from any to any via lo0 00200 deny ip from any to 127.0.0.0/8 00300 deny ip from 127.0.0.0/8 to any 65000 allow ip from any to any 65535 allow ip from any to any Problem: Most things works just fine, external access are redirected to correct ports, and the webservers work just fine. BUT the problem comes when a box on the LAN tries to reach a site residing on 192.168.0.20 using the _external_ IP aaa.bbb.ccc.20. Then I get error: "Unable to connect to remote host". Connecting from a LAN machine to the same site using the _internal_ IP works fine. Connecting to other external IPs also works fine. I want to be able to connect from LAN boxes to the external IP:s, for example aaa.bbb.ccc.20. Can anyone lead me on the way...? Very thankful for all comments on this matter. Regards, Smartnet Sverige AB Johannes Angeldorff From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 14:47:21 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06EA037B401 for ; Sun, 10 Aug 2003 14:47:20 -0700 (PDT) Received: from pop017.verizon.net (pop017pub.verizon.net [206.46.170.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07CEF43F3F for ; Sun, 10 Aug 2003 14:47:20 -0700 (PDT) (envelope-from alden.pierre@verizon.net) Received: from verizon.net ([141.153.185.62]) by pop017.verizon.net (InterMail vM.5.01.05.33 201-253-122-126-133-20030313) with ESMTP id <20030810214719.DLFW27671.pop017.verizon.net@verizon.net>; Sun, 10 Aug 2003 16:47:19 -0500 Message-ID: <3F36938E.2020604@verizon.net> Date: Sun, 10 Aug 2003 14:48:46 -0400 From: Alden Louis-Pierre User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030704 X-Accept-Language: en-us, en MIME-Version: 1.0 To: paul beard References: <3F36AACD.7040904@mac.com> In-Reply-To: <3F36AACD.7040904@mac.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at pop017.verizon.net from [141.153.185.62] at Sun, 10 Aug 2003 16:47:18 -0500 cc: freebsd-questions@FreeBSD.ORG cc: "Jeremy D. Pavleck" Subject: Re: Quick 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, 10 Aug 2003 21:47:21 -0000 First and foremost great job in using newegg for hardware. They provide excellent service. I shop there all the time for my hardware needs :-) . Next for a motherboard, I would recommend the Shuttle AK38N motherboard. Shuttle makes some very good motherboard. The performance is rock solid. You can check out the reviews on the particular motherboard I recommended at newegg. Not to mention with this motherboard you do not need to worry about purchasing a NIC card, because it's built in and FreeBSD will recognize the onboard NIC. I would recommend you get a better heatsink fan. Artic Silver 3 and Thermaltake Volcano 7 would be a good start. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 14:57:27 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 222CE37B401 for ; Sun, 10 Aug 2003 14:57:27 -0700 (PDT) Received: from heisenberg.zen.co.uk (heisenberg.zen.co.uk [212.23.8.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 298C843F93 for ; Sun, 10 Aug 2003 14:57:26 -0700 (PDT) (envelope-from stacey@vickiandstacey.com) Received: from 82-68-31-177.dsl.in-addr.zen.co.uk ([82.68.31.177] helo=[192.168.1.8]) by heisenberg.zen.co.uk with esmtp (Exim 4.20) id 19lyBp-0002pA-49; Sun, 10 Aug 2003 21:57:25 +0000 From: Stacey Roberts To: Johannes Angeldorff In-Reply-To: References: Content-Type: text/plain Message-Id: <1060552648.32578.65.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sun, 10 Aug 2003 22:57:29 +0100 Content-Transfer-Encoding: 7bit X-Originating-Heisenberg-IP: [82.68.31.177] cc: FreeBSD Questions Subject: Re: ipfw / natd does not allow lan traffic to reach external numbers X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: stacey@vickiandstacey.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 21:57:27 -0000 Hello, On Sun, 2003-08-10 at 22:38, Johannes Angeldorff wrote: > Hi, > > I have a problem with our firewall/NAT, on a FreeBSD 4.7 box... Here > a list with some details: > > *) The FreeBSD box uses natd and ipfw, and have two external IP:s, > lets say aaa.bbb.ccc.20 and ddd.eee.fff.21. > > *) natd is used to redirect access to external IP addresses and ports > to internal LAN IP:s, for example 192.168.0.20 and 192.168.0.21, > where for example webservers are located. > > *) natd rules: > > natd_flags="-redirect_address 192.168.0.20 aaa.bbb.ccc.20 > -redirect_port tcp 192.168.0.21:25-52 25-52 > -redirect_port udp 192.168.0.21:25-52 25-52 > -redirect_port tcp 192.168.0.30:80 80 > -redirect_port udp 192.168.0.30:80 80 > -redirect_port tcp 192.168.0.21:54-79 54-79 > -redirect_port udp 192.168.0.21:54-79 54-79 > -redirect_port tcp 192.168.0.21:81-722 81-722 > -redirect_port udp 192.168.0.21:81-722 81-722 > -redirect_port tcp 192.168.0.21:3306-4559 3306-4559 > -redirect_port udp 192.168.0.21:3306-4559 3306-4559" > > *) ipfw lets things through: > > 00050 divert 8668 ip from any to any via fxp0 > 00100 allow ip from any to any via lo0 > 00200 deny ip from any to 127.0.0.0/8 > 00300 deny ip from 127.0.0.0/8 to any > 65000 allow ip from any to any > 65535 allow ip from any to any > > Problem: > Most things works just fine, external access are redirected to > correct ports, and the webservers work just fine. BUT the problem > comes when a box on the LAN tries to reach a site residing on > 192.168.0.20 using the _external_ IP aaa.bbb.ccc.20. Then I get > error: "Unable to connect to remote host". Connecting from a LAN > machine to the same site using the _internal_ IP works fine. > Connecting to other external IPs also works fine. > > I want to be able to connect from LAN boxes to the external IP:s, for > example aaa.bbb.ccc.20. Can anyone lead me on the way...? Very > thankful for all comments on this matter. > This is not possible. You have to use another host external to your local network in order to access / view services via their respective public IP's, or continue to access them via their defined RFC1918 addresses. One another note, if access via public IP isn't a strict requirement, there is the "views" functionality in Bind9 that (once set up properly) would allow you to access, say hosted websites, via their WWW addresses from internal hosts .., Regards, Stacey > Regards, > Smartnet Sverige AB > > Johannes Angeldorff > > > > _______________________________________________ > 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" -- Stacey Roberts B.Sc (HONS) Computer Science Web: www.vickiandstacey.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 14:59:46 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83C2437B401 for ; Sun, 10 Aug 2003 14:59:46 -0700 (PDT) Received: from klima.physik.uni-mainz.de (klima.Physik.Uni-Mainz.DE [134.93.180.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DD9943FA3 for ; Sun, 10 Aug 2003 14:59:45 -0700 (PDT) (envelope-from ohartman@klima.physik.uni-mainz.de) Received: from klima.physik.uni-mainz.de (klima.physik.uni-mainz.de [134.93.180.162])h7ALxiCl024294 for ; Sun, 10 Aug 2003 23:59:44 +0200 (CEST) (envelope-from ohartman@klima.physik.uni-mainz.de) Date: Sun, 10 Aug 2003 23:59:44 +0200 (CEST) From: "Hartmann, O." To: freebsd-questions@freebsd.org Message-ID: <20030810235501.Q24292@klima.physik.uni-mainz.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: /usr/bin/groff: can't find `DESC' file X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 21:59:46 -0000 Hello. I ran into trouble when a make world of FreeBSD 5.1-CURRENT on a machine died. A make world died after a install process with the groff:fatal error: can't find file. A simple 'man' showed up the same error. I downgraded to 5.1-RELEASE due to big problems with our SMP server, but I still have no manpages! I ggogled for this sepcific error and I found one solution, setting GROFF_TMAC_PATH and GROFF_FONT_PATH by hand. But what wicked up the system? How to repair? Can anyone help? Thanks a lot. Oliver -- MfG O. Hartmann ohartman@mail.physik.uni-mainz.de ------------------------------------------------------------------ Systemadministration des Institutes fuer Physik der Atmosphaere (IPA) ------------------------------------------------------------------ Johannes Gutenberg Universitaet Mainz Becherweg 21 55099 Mainz Tel: +496131/3924662 (Maschinenraum) Tel: +496131/3924144 (Buero) FAX: +496131/3923532 From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 15:05:51 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 737B437B405 for ; Sun, 10 Aug 2003 15:05:51 -0700 (PDT) Received: from munk.nu (213-152-51-194.dsl.eclipse.net.uk [213.152.51.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 823E443FAF for ; Sun, 10 Aug 2003 15:05:50 -0700 (PDT) (envelope-from munk@munk.nu) Received: from munk by munk.nu with local (Exim 4.20) id 19lyJx-000Ccm-Ti for questions@freebsd.org; Sun, 10 Aug 2003 23:05:49 +0100 Date: Sun, 10 Aug 2003 23:05:49 +0100 From: Jez Hancock To: questions@freebsd.org Message-ID: <20030810220549.GA47637@users.munk.nu> Mail-Followup-To: questions@freebsd.org References: <20030810142709.K1213@thor.65535.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030810142709.K1213@thor.65535.net> User-Agent: Mutt/1.4.1i Sender: User Munk Subject: Re: Which process are waiting for I/O? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 22:05:51 -0000 On Sun, Aug 10, 2003 at 02:28:00PM -0700, Rus Foster wrote: > Hi All, > I've got a box which is getting high loads as process are starting waiting > for I/O but I can't track down the process as I think they stop/start > quickly. Any ideas of how to track it down? Use lsof. Read through the manpage for more info and check out the sample lsof scripts in the lsof tarball. lsof is in the ports tree under /usr/ports/sysutils/lsof. -- Jez http://www.munk.nu/ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 15:10:50 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF7BF37B401 for ; Sun, 10 Aug 2003 15:10:50 -0700 (PDT) Received: from charon.rdc.ab.ca (mail.rdc.ab.ca [204.209.17.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12DB343FA3 for ; Sun, 10 Aug 2003 15:10:50 -0700 (PDT) (envelope-from Brent.Macnaughton@rdc.ab.ca) Received: from CONVERSION-DAEMON.acdm.rdc.ab.ca by acdm.rdc.ab.ca (PMDF V6.1 #30658) id <0HJF00A01CA173@acdm.rdc.ab.ca> for freebsd-questions@FreeBSD.ORG; Sun, 10 Aug 2003 16:10:49 -0600 (MDT) Received: from mercury.admin.rdc.ab.ca (mercury.rdc.ab.ca [172.252.9.10]) by acdm.rdc.ab.ca (PMDF V6.1 #30658) with ESMTP id <0HJF0096BCA0UI@acdm.rdc.ab.ca> for freebsd-questions@FreeBSD.ORG; Sun, 10 Aug 2003 16:10:48 -0600 (MDT) Received: by MERCURY with Internet Mail Service (5.5.2656.59) id ; Sun, 10 Aug 2003 16:10:36 -0600 Content-return: allowed Date: Sun, 10 Aug 2003 16:10:34 -0600 From: Brent Macnaughton To: "'freebsd-questions@FreeBSD.ORG'" Message-id: MIME-version: 1.0 X-Mailer: Internet Mail Service (5.5.2656.59) Content-type: text/plain Subject: upgrade to 4.8 STABLE - Root mount failed: 6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 22:10:51 -0000 I am trying to upgrade my system from 4.7RELEASE to 4.8STABLE. I have followed the instructions from the manual: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html Right now, I am on step 21.4.8 Reboot into Single User Mode. I have compiled my new kernel, and I was trying to reboot into single user mode to test the new kernel. When I do this, I get the following error message: Mounting root from ufs:/dev/da0s1a no such device 'da' setrootbyname failed ffs_mountroot: can't find rootvp Root mount failed: 6 I don't understand what is going on here. THe device /dev/da0s1a exists. I compiled the new kernel using the same kernel config file I used to compile my 4.7RELEASE kernel. My old kernel boots the system just fine. Can anyone help? Thanks Brent. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 15:13:11 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 745E237B401 for ; Sun, 10 Aug 2003 15:13:11 -0700 (PDT) Received: from hotmail.com (law14-oe36.law14.hotmail.com [64.4.20.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id F23AA43F93 for ; Sun, 10 Aug 2003 15:13:10 -0700 (PDT) (envelope-from stefanic_rok@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 10 Aug 2003 15:13:10 -0700 Received: from 217.72.93.197 by law14-oe36.law14.hotmail.com with DAV; Sun, 10 Aug 2003 22:13:10 +0000 X-Originating-IP: [217.72.93.197] X-Originating-Email: [stefanic_rok@hotmail.com] From: "Rok" To: Date: Mon, 11 Aug 2003 00:10:24 +0200 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Message-ID: X-OriginalArrivalTime: 10 Aug 2003 22:13:10.0832 (UTC) FILETIME=[95B65300:01C35F8C] Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Add routing for serial line connection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 22:13:12 -0000 Hello, First i'd like to ask you if you have found the solution to your problem = with routing the packets to the PicWeb server, because I have built too, = and I'm wondering how would be possible to redirect my internet = connection to serial line where pic server lives ?!? Thank you very much, Rok From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 15:14:59 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E99337B401 for ; Sun, 10 Aug 2003 15:14:59 -0700 (PDT) Received: from gaddis.org (gaddis.org [12.166.17.72]) by mx1.FreeBSD.org (Postfix) with SMTP id 8685B43F3F for ; Sun, 10 Aug 2003 15:14:58 -0700 (PDT) (envelope-from jeremy@gaddis.org) Received: (qmail 56642 invoked from network); 10 Aug 2003 22:14:56 -0000 Received: from unknown (HELO ?192.168.0.4?) (192.168.0.4) by pluto.main.gaddis.org with SMTP; 10 Aug 2003 22:14:56 -0000 From: Jeremy Gaddis To: freebsd-questions@freebsd.org In-Reply-To: <09B07E5FCE15BB44B9CDAF92E483935E96692C@prowler.clarotech.co.za> References: <09B07E5FCE15BB44B9CDAF92E483935E96692C@prowler.clarotech.co.za> Content-Type: text/plain Organization: gaddis.org Message-Id: <1060553692.18128.1.camel@jupiter.gaddis.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sun, 10 Aug 2003 22:14:52 +0000 Content-Transfer-Encoding: 7bit Subject: Re: Extra Webmin Modules X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Aug 2003 22:14:59 -0000 On Fri, 2003-08-08 at 12:22, Tony Russell wrote: > I use an additional module in webmin (IMAP) and every so often when I > upgrade webmin (with portupgrade) the module disappears. This is easily > corrected by reinstalling it from within webmin. > > Is there a way, in somewhere like /etc/make.conf, to specify the > additional module so that it is automagically installed when the webmin > port is built? If you're using portupgrade, you can add options that should be passed to `make` in /usr/local/etc/pkgtools.conf. If you're not using portupgrade, you should be. :) cd /usr/ports/sysutils/portupgrade && make install j. -- Jeremy L. Gaddis From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:15:11 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7265137B418 for ; Sun, 10 Aug 2003 21:15:11 -0700 (PDT) Received: from mail-da-1.dns-solutions.net (unknown [69.12.117.4]) by mx1.FreeBSD.org (Postfix) with SMTP id 5130F441CC for ; Sun, 10 Aug 2003 16:24:45 -0700 (PDT) (envelope-from matthew@starbreaker.net) Received: (qmail 33919 invoked from network); 10 Aug 2003 23:24:43 -0000 Received: from unknown (HELO ?209.113.232.127?) (matthew@starbreaker.net@209.113.232.127) by mail-da-1.dns-solutions.net - 209.113.232.127 with SMTP; 10 Aug 2003 23:24:43 -0000 From: Matthew Graybosch To: FreeBSD Questions Content-Type: text/plain Organization: starbreaker.net Message-Id: <1060557973.19053.12.camel@christabel.starbreaker.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.3 Date: 10 Aug 2003 19:26:13 -0400 Content-Transfer-Encoding: 7bit Subject: CUPS w/ gimp-print prints garbage on Epson Stylus C82 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: matthew@starbreaker.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 04:15:12 -0000 I installed cups and gimp-print from /usr/ports/print, followed the instructions at freebsddiary.org/cups.php, removed the lp* binaries from /usr/bin, and modified /etc/make.conf to include a NO_LPR=yes line. Using the web admin tool, I configured my Stylus C82 to use one of the many gimp-print drivers for my model, and tried to print a test page. All I get is garbage. I tried reading the CUPS manual, but I couldn't find anything relevant to my problem. Is there something I might have missed? -- Matthew Graybosch http://www.starbreaker.net "If you take a stand on a dead empty hand, never let 'em see your cards." --Savatage From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:15:51 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82EBF37B478 for ; Sun, 10 Aug 2003 21:15:25 -0700 (PDT) Received: from hsph.harvard.edu (hsph.harvard.edu [128.103.75.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92037442AD for ; Sun, 10 Aug 2003 16:15:32 -0700 (PDT) (envelope-from pzhang@hsph.harvard.edu) Received: from localhost (pzhang@localhost) by hsph.harvard.edu (8.11.7+Sun/8.11.7) with ESMTP id h7ANFTK29579 for ; Sun, 10 Aug 2003 19:15:30 -0400 (EDT) Date: Sun, 10 Aug 2003 19:15:29 -0400 (EDT) From: Peng Zhang To: freebsd-questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: gdm crash! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 04:15:54 -0000 Hi Does somebody meet the similar thing? I have always met this error: Aug 10 18:49:41 pzhang /kernel: pid 45272 (XFree86), uid 0: exited on sig nal 6 (core dumped) Aug 10 18:49:41 pzhang gdm[45271]: gdm_slave_xioerror_handler: Fatal X error - R estarting :0 I just ran an evolution under gnome. The X will automatically restart a couple of hours. Is it a known bug? Peng From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:17:24 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 696ED37B4F6 for ; Sun, 10 Aug 2003 21:15:28 -0700 (PDT) Received: from vsmtp1.tin.it (vsmtp1.tin.it [212.216.176.221]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93BFA443CD for ; Sun, 10 Aug 2003 16:41:43 -0700 (PDT) (envelope-from david1172@tin.it) Received: from asuscavallini.tin.it (80.116.164.108) by vsmtp1.tin.it (7.0.019) (authenticated as david1172@tin.it) id 3F17CBF900753D9F for freebsd-questions@FreeBSD.ORG; Mon, 11 Aug 2003 01:41:42 +0200 Message-Id: <5.1.1.6.0.20030811012831.00ad90a0@mbox1.timenet.it> X-Sender: david1172@tin.it@ box.tin.it (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.1.1 Date: Mon, 11 Aug 2003 01:45:39 +0200 To: freebsd-questions@FreeBSD.ORG From: Cavallini David Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed 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, 11 Aug 2003 04:17:24 -0000 Recently I've installed the version 5.1 of the FreeBSD. I added a new user with login 'davcav' in the 'wheel' group and also I added this user in the 'operator' group. In the new user login the commands 'shutdown -p now' and 'su' works but when I try to mount the floppy disk with the command 'mount_msdosfs /dev/fd0 /floppy' return the following message mount_msdosfs: /dev/fd0: Operation not permitted Somebody in the web suggest to use the 'su' command for mounting the device and read the data in the '/floppy' directory. Similar instruction are used for unmounting the device. Does exist a way for mounting directly the data from floppy (or CD) from a non-root user (in my case 'davcav' user) ? /Cavallini David From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:18:54 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A6D037B5F8 for ; Sun, 10 Aug 2003 21:15:46 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-97.dsl.lsan03.pacbell.net [64.169.107.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0775544237 for ; Sun, 10 Aug 2003 16:00:30 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id BAE4966DE2; Sun, 10 Aug 2003 16:00:29 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 99CD578F; Sun, 10 Aug 2003 16:00:29 -0700 (PDT) Date: Sun, 10 Aug 2003 16:00:29 -0700 From: Kris Kennaway To: Brent Macnaughton Message-ID: <20030810230029.GB38332@rot13.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="H1spWtNR+x+ondvy" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i cc: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: upgrade to 4.8 STABLE - Root mount failed: 6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 04:18:55 -0000 --H1spWtNR+x+ondvy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Aug 10, 2003 at 04:10:34PM -0600, Brent Macnaughton wrote: > I am trying to upgrade my system from 4.7RELEASE to 4.8STABLE. If you're going to run -STABLE, you should track the freebsd-stable mailing list. There have been other reports of instability in the past 24 hours. Kris --H1spWtNR+x+ondvy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/Ns6MWry0BWjoQKURAgfHAJ9ymJ5gHGfkHAd3Y51zw8vr1R8Y/QCeLv4y vc1y89OXnFbRpVvEroWvZdQ= =E0FE -----END PGP SIGNATURE----- --H1spWtNR+x+ondvy-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:19:25 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23EBD37B6CD for ; Sun, 10 Aug 2003 21:16:18 -0700 (PDT) Received: from typhoon.enabled.com (typhoon.enabled.com [216.218.220.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 363D644232 for ; Sun, 10 Aug 2003 16:00:07 -0700 (PDT) (envelope-from admin2@enabled.com) Received: from enabled.com (localhost.enabled.com [127.0.0.1]) by typhoon.enabled.com (8.12.9/8.12.9) with ESMTP id h7AN07bX000715 for ; Sun, 10 Aug 2003 16:00:07 -0700 (PDT) (envelope-from admin2@enabled.com) From: "admin" To: freebsd-questions@freebsd.org Date: Sun, 10 Aug 2003 15:00:07 -0800 Message-Id: <20030810230007.M17542@enabled.com> In-Reply-To: <20030810200654.GA37421@users.munk.nu> References: <20030810155739.M51692@enabled.com> <20030810163614.GH76053@submonkey.net> <20030810164131.M87380@enabled.com> <20030810200654.GA37421@users.munk.nu> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 64.71.128.130 (admin2) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Subject: Re: /usr/local/etc/rc.d files not running on reboot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 04:19:26 -0000 > > > > > > what else could be happening here? > What happens when you run: > > /usr/local/etc/rc.d/cucipop.sh start Hi Jez, well there is no output but: shell# /usr/local/etc/rc.d/cucipop.sh start shell# cucipop is starting up fine even after a reboot. I am wondering if the cucipop startup script had an issue because the machine crashed and maybe a pid file remained or something. any thoughts here? - Noah > > ? > -- > Jez > > http://www.munk.nu/ > _______________________________________________ > 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 10 21:19:44 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DA1437B5E0 for ; Sun, 10 Aug 2003 21:16:18 -0700 (PDT) Received: from imf19aec.mail.bellsouth.net (imf19aec.mail.bellsouth.net [205.152.59.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ADAD44938 for ; Sun, 10 Aug 2003 19:33:38 -0700 (PDT) (envelope-from bcbennett@bellsouth.net) Received: from bennett1 ([68.18.7.72]) by imf19aec.mail.bellsouth.net (InterMail vM.5.01.05.27 201-253-122-126-127-20021220) with SMTP id <20030811023338.SQAM22300.imf19aec.mail.bellsouth.net@bennett1> for ; Sun, 10 Aug 2003 22:33:38 -0400 Message-ID: <003e01c35fb0$f96f2740$0300a8c0@bennett1> From: "Bruce Bennett" To: Date: Sun, 10 Aug 2003 22:33:39 -0400 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Newbie: Sound Card X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 04:19:44 -0000 I'm trying to get FreeBSD 4.8 to recognize my sound card a Creative = Sound Blaster 32 ISA. I've run: kldload -v snd_pcm snd_sbc, with the following output: loaded snd_pcm, id=3D3 sbc0: at port 0x220-0x22f, 0x330-0x331, 0x388-0x38b = irq 5 drq 1,5 on ISA 0 loaded snd_sbc=3D4 When I reboot I do not get any reference to pcm0 in dmesg.boot I've tried adding: snd_sbc_load=3D"YES", to the /boot/loader.conf, but = this didn't make any difference. Any suggestions would be appreciated. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:20:18 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD0B537B7C2 for ; Sun, 10 Aug 2003 21:16:40 -0700 (PDT) Received: from scaup.mail.pas.earthlink.net (scaup.mail.pas.earthlink.net [207.217.120.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAD3B43FBD for ; Sun, 10 Aug 2003 15:45:55 -0700 (PDT) (envelope-from hbkeultjes@earthlink.net) Received: from user87.net641.oh.sprint-hsd.net ([65.41.62.87] helo=earthlink.net) by scaup.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 19lywl-0003bp-00 for freebsd-questions@FreeBSD.ORG; Sun, 10 Aug 2003 15:45:55 -0700 Message-ID: <3F36CB03.3020409@earthlink.net> Date: Sun, 10 Aug 2003 18:45:23 -0400 From: Henry Keultjes Organization: Henry Keultjes Home User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.4) Gecko/20030624 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: Darwin X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 04:20:19 -0000 Supposedly FreeBSD is the basis for Darwin. Any idea why since FreeBSD does not have a PowerPC port? Henry Keultjes Microdyne Company Mansfield Ohio USA From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:20:41 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 197FC37B596 for ; Sun, 10 Aug 2003 21:17:03 -0700 (PDT) Received: from redhotmomma.ssr.com (ns.ssr.com [199.4.235.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 217224446A for ; Sun, 10 Aug 2003 19:45:18 -0700 (PDT) (envelope-from sdb@ssr.com) Received: (qmail 27459 invoked from network); 11 Aug 2003 02:31:11 -0000 Received: from kimchee.ssr.com (199.4.235.5) by ns.ssr.com with QMQP; 11 Aug 2003 02:31:11 -0000 Date: 11 Aug 2003 02:31:10 -0000 Message-ID: <20030811023110.31657.qmail@kimchee.ssr.com> From: Scott Ballantyne To: freebsd-questions@freebsd.org Subject: Upgrade from 4.7 -> 4.8 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: Mon, 11 Aug 2003 04:20:42 -0000 Hello, I upgraded from 4.7 -> 4.8 today, and sysinstall claimed that the installation failed, saying it couldn't even install the bin distribution set... However, it boots with the 4.8 kernel, and all the modification times I have checked in the system directories say Apr 3 of this year, the same as the new kernel file... I ran the install twice, and tried to watch the messages using ALT-F2, but they scrolled by very quickly and I can't seem to find a log file of the install anywhere. So I'm really not sure what is going on. I'd like to know if there is a way to tell if the system was completely upgraded. Alternatively, I'd like to know how much trouble I am in :-) Thanks, Scott -- sdb@ssr.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:20:59 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A25C37B880 for ; Sun, 10 Aug 2003 21:17:17 -0700 (PDT) Received: from ms-smtp-03.southeast.rr.com (ms-smtp-03.southeast.rr.com [24.93.67.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EE60449A3 for ; Sun, 10 Aug 2003 19:07:13 -0700 (PDT) (envelope-from gonesurfing@nc.rr.com) Received: from Nicoya (rdu26-237-214.nc.rr.com [66.26.237.214]) h7B25AaQ025738; Sun, 10 Aug 2003 22:05:11 -0400 (EDT) Message-ID: <004201c35fad$44c6dc50$0300a8c0@Nicoya> From: "thornton" To: "SUPPORT" , "FreeBSD Questions" References: <000b01c35f5c$f3325d60$3501a8c0@pro.sk> Date: Sun, 10 Aug 2003 22:07:07 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Subject: Re: 4.8 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, 11 Aug 2003 04:21:00 -0000 I have had a similar problem that resulted from a bad 'burn' of the install CD. I reburned the image at a slower speed so that my junk CDROM would read correctly. ----- Original Message ----- From: "SUPPORT" To: "FreeBSD Questions" Sent: Sunday, August 10, 2003 12:32 PM Subject: 4.8 Install Failure > Hello everybody, > > I just tried to install new 4.8 FreeBSD from ISO images. But it still ends > with following: > > acd0: READ_TOC command timeout-resetting > acd0: resetting devices...done > acd0: read data overrun 12/0 > > I have Compaq Pentium PRO, 200 MHz with 64 MB RAM, with Symbios Logic 53C875 > SCSI adapter and Compaq ST32171W HDD (2 GB), with Compaq Neteligent 10/100 > TX PCI UTP and 3Com590 NICs, Matrox MGA Millenium. > My installation still end during probing all devices... > > There is no ATA HDD, CD was connected first as Cable Select, after install > failure as Primary Master, after install failure replaced with another > CD-ROM unit with same results. > > PC normally boots from this CD, but then install fails. > > What is the problem and how can I solve it ? > > PLEASE HELP.............. > > > Peter Rosa > > > _______________________________________________ > 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 10 21:21:11 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF51E37B51F for ; Sun, 10 Aug 2003 21:18:02 -0700 (PDT) Received: from typhoon.enabled.com (typhoon.enabled.com [216.218.220.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD64D44206 for ; Sun, 10 Aug 2003 15:57:31 -0700 (PDT) (envelope-from admin2@enabled.com) Received: from enabled.com (localhost.enabled.com [127.0.0.1]) by typhoon.enabled.com (8.12.9/8.12.9) with ESMTP id h7AMvVbX000640 for ; Sun, 10 Aug 2003 15:57:31 -0700 (PDT) (envelope-from admin2@enabled.com) From: "admin" To: freebsd-questions@freebsd.org Date: Sun, 10 Aug 2003 14:57:31 -0800 Message-Id: <20030810225615.M24528@enabled.com> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 64.71.128.130 (admin2) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Subject: fastcgi config file? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 04:21:11 -0000 I am seeing the following in my apache log files: [Sun Aug 10 15:48:28 2003] [error] (2)No such file or directory: FastCGI: can't create dynamic directory "/usr/local/logs/fastcgi/dynamic": doesn't exist and can't be created: No such file or directory Anybody know where I can find the configuration file for fastgci so I can change its log file directory. - Noah From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:21:26 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1706037B924 for ; Sun, 10 Aug 2003 21:18:05 -0700 (PDT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id B146B442A8 for ; Sun, 10 Aug 2003 19:58:31 -0700 (PDT) (envelope-from sbachmann2@comcast.net) Received: from win2k1 (pcp03618356pcs.hershy01.pa.comcast.net[68.60.226.161](untrusted sender)) by comcast.net (sccrmhc13) with SMTP id <2003081102583001600gs3cke>; Mon, 11 Aug 2003 02:58:30 +0000 From: "Stephen" To: Date: Sun, 10 Aug 2003 22:58:26 -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.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Importance: Normal Subject: FW: Quick 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, 11 Aug 2003 04:21:27 -0000 mmmm. Hardware. My opinions concerning the quality of the hardware...If I were you I would drop the Enermax power supply for a Sparkle. I dunno about the Samsung hard drive, personally I would go Seagate or Maxtor. Trade the Sapphire motherboard up for a Shuttle or Asus. Sorry, just had to toss that in there. -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Jeremy D. Pavleck Sent: Sunday, August 10, 2003 1:37 PM To: freebsd-questions@FreeBSD.ORG Subject: Quick Question Greetings All, I initially tried to install FreeBSD something like 4 years ago and failed miserably, and went to linux. (Hardware wasn't completely compatible with FreeBSD). Recently my Debian server motherboard died on me, prompting me to prepare a list of new parts for a new box. Because I still use FreeBSD everyday (diffrent server) and the whole SCO thing, I want to try again to setup a freebsd box. To make sure I don't have a compatibility problem, I'd appreciate it if someone would look at this "wish list" http://secure.newegg.com/app/WishR.asp?ID=385191 And tell me if, in your opinion, all of these parts would be compatible with FBSD 5.1. (Of course, I'm mainly concerned about the MB - it's an all in one solution, and the NIC) Thanks in advance, Jeremy ****************** Jeremy D. Pavleck jeremy@pavleck.com _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:22:29 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9FB837B642 for ; Sun, 10 Aug 2003 21:15:50 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-97.dsl.lsan03.pacbell.net [64.169.107.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47A8B4422A for ; Sun, 10 Aug 2003 15:59:14 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 0AA1566D74; Sun, 10 Aug 2003 15:59:14 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id CFB0F78D; Sun, 10 Aug 2003 15:59:13 -0700 (PDT) Date: Sun, 10 Aug 2003 15:59:13 -0700 From: Kris Kennaway To: Pascal Pype Message-ID: <20030810225913.GA38332@rot13.obsecurity.org> References: <3F36570F.9080300@skynet.be> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="y0ulUmNC+osPPQO6" Content-Disposition: inline In-Reply-To: <3F36570F.9080300@skynet.be> User-Agent: Mutt/1.4.1i cc: questions@freebsd.org Subject: Re: DES encryption. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 04:22:30 -0000 --y0ulUmNC+osPPQO6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 10, 2003 at 04:30:39PM +0200, Pascal Pype wrote: > Hello all, >=20 > There seems to be a problem when one wants to use > the DES encryption algorithm within the freeBSD > platform. >=20 > When one compiles this : > "WARNING! encrypt(3) not present in the system". As documented in the manpage, encrypt() is in libcipher. Are you sure you are linking to that library? Kris --y0ulUmNC+osPPQO6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/Ns5BWry0BWjoQKURAoYRAKC1sqchdjyqus14KdUABMjy4jeZzQCg+cpd 1M/8MX2jPCn4D9hhLrWc0W8= =vvLt -----END PGP SIGNATURE----- --y0ulUmNC+osPPQO6-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:23:59 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 703BE37B80F for ; Sun, 10 Aug 2003 21:17:07 -0700 (PDT) Received: from dragoncrest.jasnetworks.net (dragoncrest.jasnetworks.net [65.194.254.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25884442C8 for ; Sun, 10 Aug 2003 16:16:33 -0700 (PDT) (envelope-from dragoncrest@voyager.net) Received: from works.voyager.net (works.jasnetworks.net [192.168.0.2]) h7AHJmJX061876; Sun, 10 Aug 2003 17:19:49 GMT (envelope-from dragoncrest@voyager.net) Message-Id: <5.2.0.9.2.20030810182415.00a9d480@pop.voyager.net> X-Sender: dragoncrest@pop.voyager.net X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Sun, 10 Aug 2003 18:24:24 -0400 To: Hasse Hansson , questions@freebsd.org From: Dragoncrest In-Reply-To: <200308102326.43575.webmaster@swedehost.com> References: <200308101539.h7AFdv4x043080@mail5.mx.voyager.net> <200308101539.h7AFdv4x043080@mail5.mx.voyager.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: Re: java and flash in Mozilla?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 04:24:01 -0000 Many thanks. I'll check it out. :D At 11:26 PM 8/10/03 +0200, Hasse Hansson wrote: >Hi. >This webpage might help to clear out your questions. >http://www.onlamp.com/pub/a/bsd/2002/09/05/FreeBSD_Basics.html > >/ Hasse. > >On Sunday 10 August 2003 16.59, Dragoncrest wrote: > > I've been trying at this for a while but with little success. For > > some stupid reason I can't get java to work in Mozilla. Not even as > > root, even though it says that Java support is installed and I went > > through all the hoops that it requires to make it happen. > > > > Also, is there a way to install flash support in Mozilla on freebsd? > > > > _______________________________________________ > > 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 10 21:24:47 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9792237B78F for ; Sun, 10 Aug 2003 21:16:36 -0700 (PDT) Received: from web80707.mail.yahoo.com (web80707.mail.yahoo.com [66.163.170.64]) by mx1.FreeBSD.org (Postfix) with SMTP id E68D544272 for ; Sun, 10 Aug 2003 16:06:10 -0700 (PDT) (envelope-from james_litz@yahoo.com) Message-ID: <20030810230610.27771.qmail@web80707.mail.yahoo.com> Received: from [68.164.109.187] by web80707.mail.yahoo.com via HTTP; Sun, 10 Aug 2003 16:06:10 PDT Date: Sun, 10 Aug 2003 16:06:10 -0700 (PDT) From: James Litz To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: boot floppies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 04:24:49 -0000 So I finally got up the courage to try FreeBSD... I got some CDs from osdisc.com, but my computer cant boot of off CDs (its just too old).. anyone know where i can find the boot floppies? __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:37:37 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA03337B401 for ; Sun, 10 Aug 2003 21:37:37 -0700 (PDT) Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50E7343F85 for ; Sun, 10 Aug 2003 21:37:37 -0700 (PDT) (envelope-from david@usermode.org) Received: from h-69-3-247-220.snvacaid.covad.net ([69.3.247.220] helo=brandybuck.home) by smtp6.mindspring.com with esmtp (Exim 3.33 #1) id 19m4R5-0005MB-00; Mon, 11 Aug 2003 00:37:35 -0400 From: David Johnson Organization: Usermode To: matthew@starbreaker.net, FreeBSD Questions Date: Sun, 10 Aug 2003 21:43:59 -0700 User-Agent: KMail/1.5.3 References: <1060557973.19053.12.camel@christabel.starbreaker.net> In-Reply-To: <1060557973.19053.12.camel@christabel.starbreaker.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308102143.59401.david@usermode.org> Subject: Re: CUPS w/ gimp-print prints garbage on Epson Stylus C82 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 04:37:38 -0000 On Sunday 10 August 2003 04:26 pm, Matthew Graybosch wrote: > I installed cups and gimp-print from /usr/ports/print, followed the > instructions at freebsddiary.org/cups.php, removed the lp* binaries > from /usr/bin, and modified /etc/make.conf to include a NO_LPR=yes > line. Did you delete the lp* binaries before or after you installed cups? If after, then reinstall cups. -- David Johnson ___________________ http://www.usermode.org From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 21:39:58 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B937E37B405 for ; Sun, 10 Aug 2003 21:39:55 -0700 (PDT) Received: from chaos.fxp.org (chaos.fxp.org [209.251.159.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id E642A43FBD for ; Sun, 10 Aug 2003 21:39:54 -0700 (PDT) (envelope-from bob@fxp.org) Received: by chaos.fxp.org (Postfix, from userid 1103) id 9011947D; Mon, 11 Aug 2003 00:39:53 -0400 (EDT) Date: Mon, 11 Aug 2003 00:39:53 -0400 From: Bob Bomar To: questions@freebsd.org Message-ID: <20030811043953.GA71932@chaos.fxp.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="V0207lvV8h4k8FAm" Content-Disposition: inline User-Agent: Mutt/1.4.1i cc: xfree86@xfree86.org Subject: X Reboot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Bob Bomar List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 04:39:59 -0000 --V0207lvV8h4k8FAm Content-Type: multipart/mixed; boundary="fUYQa+Pmc3FrFX/N" Content-Disposition: inline --fUYQa+Pmc3FrFX/N Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I have a Radoen 7500 on a FreeBSD 4.8 machine running dual head with Xinerama support just fine, but when I remove the Xinerama option and take off the second screen, then go to startx, the machine=20 just reboots. I can not find anything in the logs about anything that went wrong, it just reboots. My X conf is attached. --=20 Bob Bomar bob@bomar.us ----------------------------- FreeBSD: The Power to Serve http://www.freebsd.org --fUYQa+Pmc3FrFX/N Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=XF86Config Content-Transfer-Encoding: quoted-printable Section "ServerLayout" Identifier "XFree86 Configured" Screen 0 "Screen0" InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" Option "Xinerama" "on" EndSection Section "Files" RgbPath "/usr/X11R6/lib/X11/rgb" ModulePath "/usr/X11R6/lib/modules" FontPath "/usr/X11R6/lib/X11/fonts/misc/" FontPath "/usr/X11R6/lib/X11/fonts/Speedo/" FontPath "/usr/X11R6/lib/X11/fonts/Type1/" FontPath "/usr/X11R6/lib/X11/fonts/75dpi/" FontPath "/usr/X11R6/lib/X11/fonts/100dpi/" EndSection Section "Module" Load "dbe" Load "dri" Load "extmod" Load "glx" Load "record" Load "xtrap" Load "speedo" Load "type1" Load "freetype" EndSection Section "DRI" Mode 0666 EndSection Section "InputDevice" Identifier "Keyboard0" Driver "keyboard" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5" EndSection Section "Monitor" Identifier "Monitor0" VendorName "VSC" ModelName "A70f-2" HorizSync 30.0 - 70.0 VertRefresh 50.0 - 160.0 Option "DPMS" EndSection Section "Device" Identifier "Card0" Driver "ati" # Driver "radeon" VendorName "ATI" BoardName "Radeon 7500 QW" BusID "PCI:1:0:0" Screen 0 EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Depth 16=20 # Modes "1024x768" Modes "1152x864" EndSubSection SubSection "Display" Depth 24 # Modes "1024x768" Modes "1152x864" EndSubSection EndSection --fUYQa+Pmc3FrFX/N-- --V0207lvV8h4k8FAm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/Nx4Y9Jm/aTrtdKoRAtT8AJ43HMCq09C3iaS1ELNKhg+5RRQGfwCght5y MXu8RuozX862PT6SVNz0BEA= =OXl+ -----END PGP SIGNATURE----- --V0207lvV8h4k8FAm-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 22:05:23 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9989037B404 for ; Sun, 10 Aug 2003 22:05:23 -0700 (PDT) Received: from ms-smtp-02.southeast.rr.com (ms-smtp-02.southeast.rr.com [24.93.67.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0872043FB1 for ; Sun, 10 Aug 2003 22:05:22 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h7B51xZw001236; Mon, 11 Aug 2003 01:02:00 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h7B54COQ068665; Mon, 11 Aug 2003 01:04:12 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Peng Zhang In-Reply-To: References: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-VwIrtNsC79XV3C4tITq+" Organization: MarcusCom, Inc. Message-Id: <1060578309.13005.48.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Mon, 11 Aug 2003 01:05:09 -0400 X-Spam-Status: No, hits=-11.6 required=5.0 tests=BAYES_01,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_XIMIAN autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: FreeBSD User Questions List Subject: Re: gdm crash! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 05:05:24 -0000 --=-VwIrtNsC79XV3C4tITq+ Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2003-08-10 at 19:15, Peng Zhang wrote: > Hi >=20 > Does somebody meet the similar thing? I have always met this error: > Aug 10 18:49:41 pzhang /kernel: pid 45272 (XFree86), uid 0: exited on sig > nal 6 (core dumped) > Aug 10 18:49:41 pzhang gdm[45271]: gdm_slave_xioerror_handler: Fatal X > error - R > estarting :0 >=20 > I just ran an evolution under gnome. The X will automatically restart a > couple of hours. Is it a known bug? It looks like your X server may be having problems. I do not encounter such crashes on any of my -CURRENT or -STABLE machines. Have you tried rebuilding XFree86-servers? Joe >=20 > Peng >=20 > _______________________________________________ > 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 --=-VwIrtNsC79XV3C4tITq+ Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/NyQFb2iPiv4Uz4cRAlF8AJ4g/CZkgqQ5vPDGw/fcIKELx8xgPwCdFI2n c8VYPoP4e2fKXgeao80TVaw= =iAcg -----END PGP SIGNATURE----- --=-VwIrtNsC79XV3C4tITq+-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 22:09:27 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10CAC37B407 for ; Sun, 10 Aug 2003 22:09:27 -0700 (PDT) Received: from snipe.mail.pas.earthlink.net (snipe.mail.pas.earthlink.net [207.217.120.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 379A243F3F for ; Sun, 10 Aug 2003 22:09:25 -0700 (PDT) (envelope-from bc979@lafn.org) Received: from dialup-67.74.153.195.dial1.houston1.level3.net ([67.74.153.195] helo=lafn.org) by snipe.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 19m4vr-0004En-00; Sun, 10 Aug 2003 22:09:23 -0700 Date: Sun, 10 Aug 2003 22:09:22 -0700 Content-Type: text/plain; delsp=yes; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) To: Matthew Seaman From: Doug Hardie In-Reply-To: <20030809123004.GB25642@happy-idiot-talk.infracaninophile.co.uk> Message-Id: Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.552) cc: FreeBSD cc: FreeBSD-Questions Subject: Re: POP Before SMTP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 05:09:27 -0000 On Saturday, Aug 9, 2003, at 05:30 US/Pacific, Matthew Seaman wrote: > Hmmm... Don't know precisely about pop before sendmail, but setting up > sendmail so that it requires authentication before it will relay a > message from a "foreign" location is quite do-able, and can easily be > integrated with the standard system sendmail. > > Probably the easiest way to get going is to follow the instructions at > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/smtp- > auth.html The handbook seems to be missing some instructions. I tried what it says and sendmail does not accept authentication requests. There is an error in the maillog about /usr/local/etc/sasldb.db having group permissions. Changing that to 700 changes the error to one where it can't access the file. Changing the owner of that to root eliminates the error messages. Sendmail then acknowledges that it has auth capability. But it doesn't authenticate anything. A ktrace shows that it tries to access a pipe in /var/pwcheck/pwcheck. The directory exists, but it is completely empty. Something else is needed to get whatever its trying to communicate with up. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 22:12:07 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A544237B405 for ; Sun, 10 Aug 2003 22:12:07 -0700 (PDT) Received: from anholt.dyndns.org (12-224-152-126.client.attbi.com [12.224.152.126]) by mx1.FreeBSD.org (Postfix) with ESMTP id 108ED43FAF for ; Sun, 10 Aug 2003 22:12:06 -0700 (PDT) (envelope-from eta@lclark.edu) Received: from anholt.dyndns.org (localhost [127.0.0.1]) by anholt.dyndns.org (8.12.9/8.12.9) with ESMTP id h7B5Bsp8010250; Sun, 10 Aug 2003 22:11:55 -0700 (PDT) (envelope-from eta@lclark.edu) Received: (from anholt@localhost) by anholt.dyndns.org (8.12.9/8.12.9/Submit) id h7B5Bnki010249; Sun, 10 Aug 2003 22:11:49 -0700 (PDT) X-Authentication-Warning: anholt.dyndns.org: anholt set sender to eta@lclark.edu using -f From: Eric Anholt To: Bob Bomar In-Reply-To: <20030811043953.GA71932@chaos.fxp.org> References: <20030811043953.GA71932@chaos.fxp.org> Content-Type: text/plain Content-Transfer-Encoding: 7bit Message-Id: <1060578708.609.390.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sun, 10 Aug 2003 22:11:48 -0700 cc: questions@freebsd.org cc: xfree86@XFree86.Org Subject: Re: [XFree86] X Reboot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 05:12:08 -0000 On Sun, 2003-08-10 at 21:39, Bob Bomar wrote: > I have a Radoen 7500 on a FreeBSD 4.8 machine > running dual head with Xinerama support just fine, > but when I remove the Xinerama option and take off > the second screen, then go to startx, the machine > just reboots. I can not find anything in the logs > about anything that went wrong, it just reboots. > > My X conf is attached. Xinerama causes the DRI to be disabled, and I see you have Load "dri" in your XF86Config. Turning off Xinerama could allow the DRI to try to load. If you have an old version of drm-kmod or the DRM modules installed which hasn't been updated when you updated a kernel, it could easily cause a panic and reboot your machine. -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 22:16:07 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A60437B404 for ; Sun, 10 Aug 2003 22:16:07 -0700 (PDT) Received: from pursued-with.net (adsl-66-125-9-242.dsl.sndg02.pacbell.net [66.125.9.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4307A43FBF for ; Sun, 10 Aug 2003 22:16:06 -0700 (PDT) (envelope-from Kevin_Stevens@pursued-with.net) Received: from pursued-with.net ([192.168.168.101]) by pursued-with.net (8.12.8p1/8.12.8) with ESMTP id h7B5HpBQ000828; Sun, 10 Aug 2003 22:17:51 -0700 (PDT) (envelope-from Kevin_Stevens@pursued-with.net) Date: Sun, 10 Aug 2003 22:16:06 -0700 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) To: matthew@starbreaker.net From: Kevin Stevens In-Reply-To: <1060557973.19053.12.camel@christabel.starbreaker.net> Message-Id: Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.552) cc: FreeBSD Questions Subject: Re: CUPS w/ gimp-print prints garbage on Epson Stylus C82 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 05:16:07 -0000 On Sunday, Aug 10, 2003, at 16:26 US/Pacific, Matthew Graybosch wrote: > I installed cups and gimp-print from /usr/ports/print, followed the > instructions at freebsddiary.org/cups.php, removed the lp* binaries > from > /usr/bin, and modified /etc/make.conf to include a NO_LPR=yes line. Only related feedback I can provide is that using CUPS/gimp-print worked fine for my C82 under OS X when I installed it a couple of weeks ago. KeS From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 22:18:42 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78BC937B401 for ; Sun, 10 Aug 2003 22:18:42 -0700 (PDT) Received: from ce.sharif.ac.ir (ce.sharif.ac.ir [81.31.164.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1189C43FF7 for ; Sun, 10 Aug 2003 22:18:22 -0700 (PDT) (envelope-from falaki@ce.sharif.edu) Received: from ce.sharif.edu (ce.sharif.ac.ir [127.0.0.1]) by ce.sharif.ac.ir (8.11.6/8.11.6) with SMTP id h7B5Q3x09717 for ; Mon, 11 Aug 2003 09:56:04 +0430 From: Hossein Received: from 81.31.160.75 (SquirrelMail authenticated user falaki) by ce.sharif.edu with HTTP; Mon, 11 Aug 2003 09:56:04 +0430 (IRST) Message-ID: <1071.81.31.160.75.1060579564.squirrel@ce.sharif.edu> Date: Mon, 11 Aug 2003 09:56:04 +0430 (IRST) To: X-Priority: 3 Importance: Normal X-Mailer: SquirrelMail (version 1.2.11) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: FreeBSD loader and Linux X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 05:18:42 -0000 Hello; I have Installed FreeBSD 4.4 on my Presario 2800 Notebook. In the second partition of the 20GB Hard disc. It was alright and the loader worked well, until I decided to install Red Hat 9.0 Linux on the third partition. Since I wanted to experience FreeBSD loader and it seemed very intelligent to me I didn't install grub during Linux installation. Since my Notebook has a swap Floppy drive and I was installing Linux from CDRom I couldn't make any installation disk. After finishing Linux installation successfully I rebooted the system in order to test the boot loader. FreeBSD loader has detected the Linux partition well and lists it as the third option (F3). But pressing F3 leads to nothing but a beep from the system. I tried to search the web and read mans to find a solution but I couldn't find anything useful. Can any body help me please? Please mail me at: falaki@ce.sharif.edu Mohammad H. Falaki From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 22:24:45 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2315937B401 for ; Sun, 10 Aug 2003 22:24:45 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-97.dsl.lsan03.pacbell.net [64.169.107.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C66B43F3F for ; Sun, 10 Aug 2003 22:24:44 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 72F2A66B9B; Sun, 10 Aug 2003 22:24:43 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 4C23678E; Sun, 10 Aug 2003 22:24:43 -0700 (PDT) Date: Sun, 10 Aug 2003 22:24:43 -0700 From: Kris Kennaway To: Henry Keultjes Message-ID: <20030811052443.GA40429@rot13.obsecurity.org> References: <3F36CB03.3020409@earthlink.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DocE+STaALJfprDB" Content-Disposition: inline In-Reply-To: <3F36CB03.3020409@earthlink.net> User-Agent: Mutt/1.4.1i cc: freebsd-questions@FreeBSD.ORG Subject: Re: Darwin X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 05:24:45 -0000 --DocE+STaALJfprDB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 10, 2003 at 06:45:23PM -0400, Henry Keultjes wrote: > Supposedly FreeBSD is the basis for Darwin. Any idea why since FreeBSD= =20 > does not have a PowerPC port? Most userland and kernel code is machine-independent. Kris --DocE+STaALJfprDB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/NyibWry0BWjoQKURAh10AKDN1FCE/VZXnYbZ5rVHTIjJYudhWgCfQNsE f9WeZtxzUy1se8Od/yTMcI4= =VyCo -----END PGP SIGNATURE----- --DocE+STaALJfprDB-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 22:29:47 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C67E137B401 for ; Sun, 10 Aug 2003 22:29:47 -0700 (PDT) Received: from priv-edtnes03-hme0.telusplanet.net (outbound01.telus.net [199.185.220.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFD3B43F75 for ; Sun, 10 Aug 2003 22:29:46 -0700 (PDT) (envelope-from viktorlazlo@telus.net) Received: from njamn8or ([207.6.240.165]) by priv-edtnes03-hme0.telusplanet.netESMTP <20030811052946.GBRK16085.priv-edtnes03-hme0.telusplanet.net@njamn8or>; Sun, 10 Aug 2003 23:29:46 -0600 Date: Sun, 10 Aug 2003 22:29:41 -0700 (PDT) From: Viktor Lazlo X-X-Sender: viktorlazlo@njamn8or.no-ip.org To: Cavallini David In-Reply-To: <5.1.1.6.0.20030811012831.00ad90a0@mbox1.timenet.it> Message-ID: <20030810222650.T1513@njamn8or.no-ip.org> References: <5.1.1.6.0.20030811012831.00ad90a0@mbox1.timenet.it> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-questions@freebsd.org Subject: Re: your mail X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 05:29:48 -0000 On Mon, 11 Aug 2003, Cavallini David wrote: > Recently I've installed the version 5.1 of the FreeBSD. > I added a new user with login 'davcav' in the 'wheel' group and also I > added this user in the 'operator' group. > In the new user login the commands 'shutdown -p now' and 'su' works but > when I try to mount the floppy disk > with the command 'mount_msdosfs /dev/fd0 /floppy' return the following message > > mount_msdosfs: /dev/fd0: Operation not permitted > > Somebody in the web suggest to use the 'su' command for mounting the device > and read the data in the '/floppy' directory. Similar instruction are used > for unmounting the device. Does exist a way for mounting directly the data > from floppy (or CD) from a non-root user (in my case 'davcav' user) ? http://lantech.geekvenue.net/chucktips/jason/chuck/987270955/index_html Cheers, Viktor From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 22:34:45 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E92FB37B401 for ; Sun, 10 Aug 2003 22:34:45 -0700 (PDT) Received: from mail2.ba.psg.sk (mail2.ba.psg.sk [195.80.171.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46F6F43F3F for ; Sun, 10 Aug 2003 22:34:44 -0700 (PDT) (envelope-from support@bluetooth-shop.sk) Received: [from peter (proxy.pro.sk [212.55.244.46]) by mail2.ba.psg.sk with SMTP id h7B5Yg0i027825; Mon, 11 Aug 2003 07:34:42 +0200] Message-ID: <00ee01c35fca$2fbaa720$3501a8c0@pro.sk> From: "SUPPORT" To: "James Litz" , References: <20030810230610.27771.qmail@web80707.mail.yahoo.com> Date: Mon, 11 Aug 2003 07:34:02 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 1 X-MSMail-Priority: High X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Subject: Re: boot floppies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 05:34:46 -0000 Try http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-pre.html#I NSTALL-FLOPPIES Peter Rosa ----- Original Message ----- From: "James Litz" To: Sent: Monday, August 11, 2003 1:06 AM Subject: boot floppies > So I finally got up the courage to try FreeBSD... I > got some CDs from osdisc.com, but my computer cant > boot of off CDs (its just too old).. anyone know where > i can find the boot floppies? > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design software > http://sitebuilder.yahoo.com > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 22:37:05 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEF3F37B401 for ; Sun, 10 Aug 2003 22:37:05 -0700 (PDT) Received: from priv-edtnes09-hme0.telusplanet.net (outbound02.telus.net [199.185.220.221]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CCE643F3F for ; Sun, 10 Aug 2003 22:37:05 -0700 (PDT) (envelope-from viktorlazlo@telus.net) Received: from njamn8or ([207.6.240.165]) by priv-edtnes09-hme0.telusplanet.netESMTP <20030811053704.KHQD1600.priv-edtnes09-hme0.telusplanet.net@njamn8or>; Sun, 10 Aug 2003 23:37:04 -0600 Date: Sun, 10 Aug 2003 22:36:59 -0700 (PDT) From: Viktor Lazlo X-X-Sender: viktorlazlo@njamn8or.no-ip.org To: James Litz In-Reply-To: <20030810230610.27771.qmail@web80707.mail.yahoo.com> Message-ID: <20030810223257.C1513@njamn8or.no-ip.org> References: <20030810230610.27771.qmail@web80707.mail.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: questions@freebsd.org Subject: Re: boot floppies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 05:37:06 -0000 On Sun, 10 Aug 2003, James Litz wrote: > So I finally got up the courage to try FreeBSD... I > got some CDs from osdisc.com, but my computer cant > boot of off CDs (its just too old).. anyone know where > i can find the boot floppies? The boot floppies are on the 1st CD. Refer to section 2.2.7 Prepare the Boot Media from the handbook on http://www.freebsd.org Cheers, Viktor From owner-freebsd-questions@FreeBSD.ORG Sun Aug 10 22:40:08 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 965D237B401 for ; Sun, 10 Aug 2003 22:40:08 -0700 (PDT) Received: from services.homebass.ca (216.126.94.86 [216.126.94.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A68943F93 for ; Sun, 10 Aug 2003 22:40:07 -0700 (PDT) (envelope-from liquid@homebass.ca) Received: (qmail 69389 invoked by uid 0); 11 Aug 2003 05:44:59 -0000 Received: from unknown (HELO windows) (liquid@homebass.ca@192.168.0.100) by services.homebass.ca with SMTP; 11 Aug 2003 05:44:59 -0000 From: "liquid" To: , "'Mike Maltese'" Date: Mon, 11 Aug 2003 01:40:18 -0400 Message-ID: <001101c35fcb$0c1246b0$6400a8c0@windows> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.3416 In-Reply-To: <004901c35ddc$209379b0$0701a8c0@darryl> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Importance: Normal cc: freebsd-questions@freebsd.org Subject: RE: ipfilter - port forward 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, 11 Aug 2003 05:40:08 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd- > questions@freebsd.org] On Behalf Of Darryl Hoar > Sent: August 8, 2003 2:38 PM > To: 'Mike Maltese' > Cc: freebsd-questions@freebsd.org > Subject: RE: ipfilter - port forward question >=20 > Well, > it does in fact use udp. Here is what I have done. >=20 > Added to /etc/ipfilter.rules >=20 > pass in quick on ep0 proto tcp from any to any port =3D 31240 keep = state you *did* infact mean to say "pass in quick on ep0 proto udp from (etc) >=20 > Added to /etc/ipnat.rules >=20 > rdr ep0 0/0 port 31240 -> 192.168.1.35 port 31240 udp This appears to be OK. > =20 >=20 > first question. > I can reload the ipfilter rules with the > ipf -Fa -f /etc/ipfilter.rules you certainly can >=20 > how do I reload the ipnat rules ? >=20 > I tried ipnat -F then > ipnat -f /etc/ipnat.rules. Try ipnat -Cf -f /etc/ipnat.rules >=20 > But when I did a ipnat -l it showed that it > just added the new rdr (so I had two listed). >=20 > I rebooted. >=20 > External users still couldn't connect. So, I create a new > ipfilter.rules file with: > pass in quick on ep0 all keep state > pass out quick on ep0 all keep state. >=20 > reloaded the filewall rules. Users tried to connect but couldn't. > I looked at the nat table I saw: >=20 > map 192.168.1.35 1256 <- -> 24.225.33.88 1256 [24.225.17.163 5101] > rdr 192.168.1.35 31240 <- -> 24.225.33.88 31240 [24.225.17.163 1131] > >=20 >=20 > I feel I'm close. What am I missing/screwing up ? >=20 > thanks, > Darryl > Freebsd 4.7S OK, you must be close. I'm not entirely sure why that wouldn't be working using the firewall rules you mentioned after rebooting. I've never forwarded anything other than tcp though for basic stuff like www, smtp etc... so I'm unsure if ipnat is picky about udp traffic. I know that on my ipnat.rules I have this line, unclear though if this would make a difference: map dc0 192.168.0.0/24 -> xx.xx.xx.xx/32 portmap tcp/udp 30000:50000 I strongly suggest you look at this site... I like to think I'm quite good with ipf/ipnat, and it's solely because of the knowledge of it I got out of the whitepaper located there. www.obfuscation.org/ipf HTH, Sandro From owner-freebsd-questions@FreeBSD.ORG Mon Aug 11 00:25:56 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8ABE37B401 for ; Mon, 11 Aug 2003 00:25:56 -0700 (PDT) Received: from mail.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EA4643F93 for ; Mon, 11 Aug 2003 00:25:54 -0700 (PDT) (envelope-from freebsdQ0@richardshea.fastmail.fm) Received: from smtp.us2.messagingengine.com (localhost [127.0.0.1]) by localhost.localdomain (Postfix) with ESMTP id 5CD7795095 for ; Mon, 11 Aug 2003 03:25:53 -0400 (EDT) Received: from 10.202.2.133 ([10.202.2.133] helo=smtp.us2.messagingengine.com) by messagingengine.com with SMTP; Mon, 11 Aug 2003 03:25:53 -0400 Received: by smtp.us2.messagingengine.com (Postfix, from userid 99) id 41BD076193; Mon, 11 Aug 2003 03:25:53 -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.2 (F2.71; T1.001; A1.51; B2.12; Q2.03) From: "Richard Shea" To: "FreeBSD Questions" Date: Mon, 11 Aug 2003 19:25:53 +1200 X-Epoch: 1060586753 X-Sasl-enc: soGpETdwsFqu6fD52V4Lnw Message-Id: <20030811072553.41BD076193@smtp.us2.messagingengine.com> Subject: sendmail_enable="NO" /"YES"/"MAYBE" ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 07:25:57 -0000 Hi - I currently have sendmail_enable="NO" in my rc.conf file. This allows emails to be sent from the FBSD machine however I would like one other machine on the LAN to use the FBSD machine as a SMTP machine. I think sendmail_enable="YES" would do this but would then allow every other machine on the LAN to use sendmail ? Is there some way I could limit sendmail users by IP address ? thanks richard. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 11 00:26:45 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B1E037B401 for ; Mon, 11 Aug 2003 00:26:45 -0700 (PDT) Received: from alpsgiken.alpsgiken.gr.jp (www.alpsgiken.gr.jp [210.166.150.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B57E43F93 for ; Mon, 11 Aug 2003 00:26:44 -0700 (PDT) (envelope-from joel@alpsgiken.alpsgiken.gr.jp) Received: from zz_radiant2 (203-179-81-25.cust.bit-drive.ne.jp [203.179.81.25]) by alpsgiken.alpsgiken.gr.jp (8.9.1a/3.7W) with ESMTP id QAA24768 for ; Mon, 11 Aug 2003 16:26:41 +0900 Date: Mon, 11 Aug 2003 16:29:58 +0900 From: Joel Rees To: freebsd-questions@FreeBSD.ORG In-Reply-To: <3F36CB03.3020409@earthlink.net> References: <3F36CB03.3020409@earthlink.net> Message-Id: <20030811145943.6A4B.JOEL@alpsgiken.gr.jp> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.00.11 Subject: Re: Darwin 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, 11 Aug 2003 07:26:46 -0000 > Supposedly FreeBSD is the basis for Darwin. Just one of those urban legends. ;-) Lessee, if I wander over to http://www.freebsd.org/ and look in the FAQ at http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/index.html and browse through the introduction at http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/introduction.html I find that there is a topic about the differences between the bsds: http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/introduction.html#DIFFERENCES-TO-OTHER-BSDS and in that paragraph I find that there is a reference to a page that talks about the bsd family tree, http://www.daemonnews.org/200104/bsd_family.html and if I read that page I discover that there is a little discussion of Mac OS X and Darwin. Apparently, Darwin is derived from the Mach kernel and from all the bsds in various proportions. > Any idea why Good question. Who started that rumor? :-P > since FreeBSD > does not have a PowerPC port? Sure it does. Just not anywhere near as stable as freeBSD for Sparc or alpha or i386. Back at http://www.freebsd.org/ I see that there are some hardware notes: http://www.freebsd.org/releases/5.1R/hardware.html and in there I see there is a link below the list of platforms that have released code, to platforms currently under development: http://www.freebsd.org/platforms/index.html And in the list on that page: http://www.freebsd.org/platforms/ppc.html Hmm. Says it's on the verge on booting to single-user mode. But following the links around some more to the mailing list archives shows this message from Peter Grehan: ... The system has been able to run multi-user on a limited number of NewWorld models for a while, although installation is not pretty. HTH -- Joel Rees, programmer, Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp From owner-freebsd-questions@FreeBSD.ORG Mon Aug 11 00:40:25 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0DA637B404 for ; Mon, 11 Aug 2003 00:40:24 -0700 (PDT) Received: from gwdu60.gwdg.de (gwdu60.gwdg.de [134.76.8.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98B7A43FA3 for ; Mon, 11 Aug 2003 00:40:23 -0700 (PDT) (envelope-from kheuer2@gwdg.de) Received: from gwdu60.gwdg.de (localhost [127.0.0.1]) by gwdu60.gwdg.de (8.12.8p1/8.12.8) with ESMTP id h7B7eMdA046921; Mon, 11 Aug 2003 09:40:22 +0200 (CEST) (envelope-from kheuer2@gwdg.de) Received: from localhost (kheuer2@localhost)h7B7eL7B046918; Mon, 11 Aug 2003 09:40:21 +0200 (CEST) X-Authentication-Warning: gwdu60.gwdg.de: kheuer2 owned process doing -bs Date: Mon, 11 Aug 2003 09:40:21 +0200 (CEST) From: Konrad Heuer To: Richard Shea In-Reply-To: <20030811072553.41BD076193@smtp.us2.messagingengine.com> Message-ID: <20030811093337.M742-100000@gwdu60.gwdg.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: FreeBSD Questions Subject: Re: sendmail_enable="NO" /"YES"/"MAYBE" ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 07:40:25 -0000 On Mon, 11 Aug 2003, Richard Shea wrote: > Hi - I currently have sendmail_enable="NO" in my rc.conf file. This > allows emails to be sent from the FBSD machine however I would like one > other machine on the LAN to use the FBSD machine as a SMTP machine. > > I think sendmail_enable="YES" would do this but would then allow every > other machine on the LAN to use sendmail ? Is there some way I could > limit sendmail users by IP address ? Yes, sendmail_enable="YES" will do the job. FreeBSD sendmail respects the TCP wrapper config file /etc/hosts.allow; you can limit access to sendmail there (look at "man 5 hosts_options"). Regards Konrad Konrad Heuer (kheuer2@gwdg.de) ____ ___ _______ GWDG / __/______ ___ / _ )/ __/ _ \ Am Fassberg / _// __/ -_) -_) _ |\ \/ // / 37077 Goettingen /_/ /_/ \__/\__/____/___/____/ Germany From owner-freebsd-questions@FreeBSD.ORG Mon Aug 11 00:43:18 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCCEC37B401 for ; Mon, 11 Aug 2003 00:43:18 -0700 (PDT) Received: from hotmail.com (law9-f73.law9.hotmail.com [64.4.9.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83CC243F85 for ; Mon, 11 Aug 2003 00:43:18 -0700 (PDT) (envelope-from quadroon_1986@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 11 Aug 2003 00:43:18 -0700 Received: from 66.183.118.74 by lw9fd.law9.hotmail.msn.com with HTTP; Mon, 11 Aug 2003 07:43:18 GMT X-Originating-IP: [66.183.118.74] X-Originating-Email: [quadroon_1986@hotmail.com] From: "Mike Dem" To: questions@FreeBSD.org Date: Mon, 11 Aug 2003 07:43:18 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 11 Aug 2003 07:43:18.0345 (UTC) FILETIME=[3AFA9390:01C35FDC] 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, 11 Aug 2003 07:43:19 -0000 Hey I Decided To Get your Unix Based OS Because I need More of a Challeng I Do Have Two Questions, First Can I install FreeBSD without using Partition magic Second My Floppy A 3 and 1/2 Does Not work can I right the Floppy Image On to an CD rom _________________________________________________________________ MSN 8 with e-mail virus protection service: 2 months FREE* http://join.msn.com/?page=features/virus From owner-freebsd-questions@FreeBSD.ORG Mon Aug 11 00:59:24 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D67DA37B401 for ; Mon, 11 Aug 2003 00:59:24 -0700 (PDT) Received: from orngca-mls02.socal.rr.com (orngca-mls02.socal.rr.com [66.75.160.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D91E43FDD for ; Mon, 11 Aug 2003 00:59:24 -0700 (PDT) (envelope-from amin@rackstores.com) Received: from localhost (rrcs-west-24-199-11-209.biz.rr.com [24.199.11.209]) h7B7tPR02317 for ; Mon, 11 Aug 2003 00:55:25 -0700 (PDT) Message-ID: <001c01c35fde$79fc4460$0100007f@localhost> From: "amin" To: Date: Mon, 11 Aug 2003 00:59:22 -0700 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2727.1300 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Help me on my freebsd machine X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 07:59:25 -0000 HI I don't know is that true that they are saying that freebsd is a perfect = machine for your network and acce ok I don't know how to start but I have been reading freebsd books for = about 8 weeks but I have about tons of problems that I seems it was not = a problem for any body else or maybe I am new I'm not able to see these things... I want to set up a gateway, with FTP access and mail and I have my own = Static IP and domain so I want to set up a really complete server at my = home. but it seems that if I go like this it will take for ever and I still in = my first place...=20 please help me what should I do where should I go What should I read From owner-freebsd-questions@FreeBSD.ORG Mon Aug 11 01:17:21 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A8B837B401 for ; Mon, 11 Aug 2003 01:17:21 -0700 (PDT) Received: from pursued-with.net (adsl-66-125-9-242.dsl.sndg02.pacbell.net [66.125.9.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id D515C43F75 for ; Mon, 11 Aug 2003 01:17:20 -0700 (PDT) (envelope-from Kevin_Stevens@pursued-with.net) Received: from pursued-with.net ([192.168.168.101]) by pursued-with.net (8.12.8p1/8.12.8) with ESMTP id h7B8J5BQ001144 for ; Mon, 11 Aug 2003 01:19:05 -0700 (PDT) (envelope-from Kevin_Stevens@pursued-with.net) Date: Mon, 11 Aug 2003 01:17:19 -0700 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) From: Kevin Stevens To: questions@freebsd.org Content-Transfer-Encoding: 7bit In-Reply-To: Message-Id: <3A05DB50-CBD4-11D7-AD63-000A959CEE6A@pursued-with.net> X-Mailer: Apple Mail (2.552) Subject: Re: X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 08:17:21 -0000 On Monday, Aug 11, 2003, at 00:43 US/Pacific, Mike Dem wrote: > Hey I Decided To Get your Unix Based OS Because I need More of a > Challeng > I Do Have Two Questions, First Can I install FreeBSD without using > Partition magic > Second My Floppy A 3 and 1/2 Does Not work can I right the Floppy > Image On to an CD rom I'm very sure that you're already sufficiently challenged, Mike. KeS From owner-freebsd-questions@FreeBSD.ORG Mon Aug 11 01:20:01 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F75E37B401 for ; Mon, 11 Aug 2003 01:20:01 -0700 (PDT) Received: from anubis.xtigmasolutions.com (qetesh.xtigmasolutions.com [203.208.241.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id F187243F75 for ; Mon, 11 Aug 2003 01:19:59 -0700 (PDT) (envelope-from email@edylie.net) Received: (qmail 94024 invoked by uid 89); 11 Aug 2003 08:19:57 -0000 Received: from unknown (HELO ?192.168.0.3?) (email@edylie.net@202.166.15.65) by 10.10.10.10 with SMTP; 11 Aug 2003 08:19:57 -0000 From: Edy Lie To: questions@freebsd.org Content-Type: text/plain Message-Id: <1060589969.11786.2.camel@ps2.consoledojo.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Mon, 11 Aug 2003 16:19:29 +0800 Content-Transfer-Encoding: 7bit Subject: wine / winex freebsd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: email@edylie.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 08:20:01 -0000 Anyone has any luck to get Diablo 2/war Craft 3/Conterstriker with Wine on FreeBSD ? Thanks! -- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 11 01:20:44 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 746AC37B401 for ; Mon, 11 Aug 2003 01:20:41 -0700 (PDT) Received: from gallantin.skynet.be (gallantin.skynet.be [195.238.2.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0211E43FCB for ; Mon, 11 Aug 2003 01:20:39 -0700 (PDT) (envelope-from pascal.pype@skynet.be) Received: from skynet.be (222.28-201-80.adsl.skynet.be [80.201.28.222]) ESMTP id h7B8KToE017756; Mon, 11 Aug 2003 10:20:29 +0200 (envelope-from ) Message-ID: <3F3753C0.3040306@skynet.be> Date: Mon, 11 Aug 2003 10:28:48 +0200 From: Pascal Pype User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.2) Gecko/20030323 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kris Kennaway References: <3F36570F.9080300@skynet.be> <20030810225913.GA38332@rot13.obsecurity.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: questions@freebsd.org Subject: Re: DES encryption. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 08:20:44 -0000 Kris Kennaway wrote: > On Sun, Aug 10, 2003 at 04:30:39PM +0200, Pascal Pype wrote: > >>Hello all, >> >>There seems to be a problem when one wants to use >>the DES encryption algorithm within the freeBSD >>platform. >> >>When one compiles this : > > >>"WARNING! encrypt(3) not present in the system". > > > As documented in the manpage, encrypt() is in libcipher. Are you sure > you are linking to that library? > > Kris > Yes Kris , I have done so. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 11 01:27:27 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D291A37B401 for ; Mon, 11 Aug 2003 01:27:27 -0700 (PDT) Received: from mail.libertysurf.net (mail.libertysurf.net [213.36.80.91]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4477743F3F for ; Mon, 11 Aug 2003 01:27:27 -0700 (PDT) (envelope-from messmate@tiscali.fr) Received: from eric.placeverte.home (213.36.124.151) by mail.libertysurf.net (6.5.026) id 3F25207C00290A68 for freebsd-questions@freebsd.org; Mon, 11 Aug 2003 10:27:25 +0200 Date: Mon, 11 Aug 2003 08:28:23 +0200 From: mess-mate To: freebsd-questions@freebsd.org Message-Id: <20030811082823.082b5975.messmate@tiscali.fr> In-Reply-To: <001b01c35e97$a7399fb0$e400a8c0@ape> References: <20030809152803.0a4aedfc.messmate@tiscali.fr> <001b01c35e97$a7399fb0$e400a8c0@ape> X-Mailer: Sylpheed version 0.9.0 (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: install rel. 4.8 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 08:27:28 -0000 On Sat, 9 Aug 2003 17:58:57 +0100 "Markie" wrote: |If you made the partitions UFS2 then you're going to have to do a clean |install. I'm not sure what the default is in 5.1,in the 5.0 install it was |still UFS1. If they're UFS1 then it's probably possible (someone else will |have to point out how to do it) but I think it's be much cleaner to do a |clean install. | |Are you having specific or big problems with 5.1? | |----- Original Message ----- |From: "mess-mate" |To: "freebsd-questions-en" |Sent: Saturday, August 09, 2003 2:28 PM |Subject: install rel. 4.8 | | |> Hi, |> I've installed rel.5.1. as a newbie I'm. |> But I encounter to many problems with it . |> So, is there a way to install (downdate :)) to the rel. 4.8 ?? |> Thanks |> mess-mate Well, - the mouse can't be disabled in console and maintain it in X. Tryed several other mouse config combinations without resolve the pb. If the mouse isn't disabled in console the computer blocks or crash. - X can't start: error: Xlib: extension "GLX" missing on display ":0.0". The card is setup correctly. An S3Virge. - Sound won't work. I recompiled the kernel fot that without succes, a CM8738 = cmpci, on the mobo. My mobo is a ASUS P4T533R, P4 2.53G cpu, 513Mb rambus 1066Mhz. mess-mate From owner-freebsd-questions@FreeBSD.ORG Mon Aug 11 02:20:46 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93BBA37B401 for ; Mon, 11 Aug 2003 02:20:46 -0700 (PDT) Received: from klima.physik.uni-mainz.de (klima.Physik.Uni-Mainz.DE [134.93.180.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37C0E43F3F for ; Mon, 11 Aug 2003 02:20:45 -0700 (PDT) (envelope-from ohartman@klima.physik.uni-mainz.de) Received: from klima.physik.uni-mainz.de (klima.physik.uni-mainz.de [134.93.180.162])h7B9KiCl033574 for ; Mon, 11 Aug 2003 11:20:44 +0200 (CEST) (envelope-from ohartman@klima.physik.uni-mainz.de) Date: Mon, 11 Aug 2003 11:20:44 +0200 (CEST) From: "Hartmann, O." To: freebsd-questions@freebsd.org Message-ID: <20030811110733.E33387@klima.physik.uni-mainz.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: FBSD 5.1-RELEASE-p2 crashes/SMP wont work X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Aug 2003 09:20:46 -0000 Hello. Since we upgraded our SMP server (TYAN Thunder 2500 based system) from FreeBSD 4.8 to FreeBSD 5.1-RELEASE the machine crashed sporadicaly while in heavy load or wont start after recognition of the AMI Enterprise 1600 RAID controller! Kernel of FBSD 5.1-RELEASE start in single user mode, 5.1-RELEASE-p2 doesn't! At this moment, the only working kernel is a 5.1-CURRENT kernel from two weeks ago (see dmesg output below). FreeBSD 5.1-RELEASE worked for a while, but when samba started and under heavy load the system crashes (I got no error message, sorry). FreeBSD 5.1-RELEASE-p2 doesn't want to start anymore! The last line I see while kernel is booting is this: amrd0: on amr0 amrd0: 245014MB (501788672 sectors) RAID 5 (optimal) and it freezes forever. Sometimes I see this message below the last line: amr0: bad slot 2 completed or amr0: bad slot 15 completed What does it mean? Is this something like a problem in IRQ routing? normaly, after the RAID controler has been recognized, a message about the launched second CPU shows up. Using the most recent freeBSD 5.1-CURRENT stuff is impossible on our machine, it freezes completely after a while or does a spontanous reboot (earlier versions did not!). Is any help available? Another couriosity is that kernels build with SCHED_ULE freeze much faster than those build with SCHED_4BSD, but SCHED_ULE kernels seem to boot, while SCHED_4BSD kernels sometimes do not. Tnaks a lot for your help. This is dmesg of the running and obviously working kernel: Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.1-CURRENT #2: Fri Jul 25 11:45:43 GMT 2003 root@atmos.physik.uni-mainz.de:/usr/obj/usr/src/sys/ATMOS Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 868644587 Hz CPU: Intel Pentium III (868.64-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x387fbff real memory = 2147483648 (2048 MB) avail memory = 2086006784 (1989 MB) Programming 16 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 Programming 16 pins in IOAPIC #1 FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): apic id: 1, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x000f0011, at 0xfec00000 io1 (APIC): apic id: 3, version: 0x000f0011, at 0xfec01000 netsmb_dev: loaded Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcibios: BIOS version 2.10 Using $PIR table, 12 entries at 0xc00fdf00 pcib0: at pcibus 0 on motherboard pci0: on pcib0 IOAPIC #1 intpin 13 -> irq 2 IOAPIC #1 intpin 12 -> irq 16 pcib1: at device 0.1 on pci0 pci1: on pcib1 IOAPIC #1 intpin 1 -> irq 17 pci1: at device 0.0 (no driver attached) sym0: <896> port 0xf800-0xf8ff mem 0xfeafe000-0xfeafffff,0xfeafac00-0xfeafafff irq 2 at device 1.0 on pci0 sym0: Symbios NVRAM, ID 7, Fast-40, SE, parity checking sym0: open drain IRQ line driver, using on-chip SRAM sym0: using LOAD/STORE-based firmware. sym0: handling phase mismatch from SCRIPTS. sym1: <896> port 0xf400-0xf4ff mem 0xfeafc000-0xfeafdfff,0xfeafa800-0xfeafabff irq 16 at device 1.1 on pci0 sym1: Symbios NVRAM, ID 7, Fast-40, LVD, parity checking sym1: open drain IRQ line driver, using on-chip SRAM sym1: using LOAD/STORE-based firmware. sym1: handling phase mismatch from SCRIPTS. isab0: port 0x500-0x50f at device 15.0 on pci0 isa0: on isab0 pci0: at device 15.1 (no driver attached) pcib2: at pcibus 2 on motherboard pci2: on pcib2 IOAPIC #1 intpin 8 -> irq 18 em0: port 0xf0c0-0xf0ff mem 0xf7ee0000-0xf7efffff irq 18 at device 1.0 on pci2 em0: Speed:N/A Duplex:N/A pcib3: at device 2.0 on pci2 pci3: on pcib3 IOAPIC #1 intpin 11 -> irq 19 pcib4: at device 0.0 on pci3 pci4: on pcib4 IOAPIC #1 intpin 10 -> irq 20 amr0: mem 0xf0000000-0xf3ffffff irq 20 at device 0.0 on pci4 amr0: Firmware G170, BIOS F316, 64MB RAM pci3: at device 1.0 (no driver attached) pci3: at device 2.0 (no driver attached) orm0: