From owner-freebsd-questions Sun Jan 20 0: 2:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id E31DD37B405 for ; Sun, 20 Jan 2002 00:02:46 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16SCw9-00055T-00 for questions@FreeBSD.org; Sun, 20 Jan 2002 08:02:45 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id A4385117F; Sun, 20 Jan 2002 09:02:43 +0100 (CET) Date: Sun, 20 Jan 2002 09:02:43 +0100 From: Cliff Sarginson To: questions@FreeBSD.ORG Subject: Re: what is a good language for system administration? Message-ID: <20020120080243.GB1341@raggedclown.net> References: <20020119205810.B17795@xs4all.nl> <20020119162001.O5440-100000@fremont.bolingbroke.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020119162001.O5440-100000@fremont.bolingbroke.com> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 19, 2002 at 04:33:59PM -0800, Ken Bolingbroke wrote: > > > On Sat, 19 Jan 2002 rene@xs4all.nl wrote: > > > So I've learned how to do basic scripting in /bin/sh. But boy-oh-boy is that > > language arcane. ;-) > > > > What other language do you guys advise for system administration tasks such > > as > > > Perl is _THE_ sysadmin language, really. It runs on just about > everything, and in fact, most common versions of UNIX come with it already > installed. - Shell, well you mastered that :) - Unix tools to complement the shell, awk, sed, grep(s), ed (yes, I said ed :), using "ed" in scripts with "here" documents is a much underused facility these days), find (OT can someone explain to me why find on FreeBSD is *so* slow), etc etc. - Perl ..*sigh*.. Perl is devil spawn, but is as inevitable as the weather. It is a syntactic, semantic witches cauldron. Unfortunately some familiarity with it generally advisable. It does run everywhere, but don't be fooled into thinking that it survives change well, new versions do break old scripts sometimes. The book "Programming Perl" is not the book to learn it from, it is as eccentrically written as the language itself. Perl is the ultimate contradiction of the Unix tool philosophy.. but let's not get into that :) - I see some recommendations for Python, I have heard many good things about it as well, it sits high on my list of things to look at. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 0: 7: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id D215937B404 for ; Sun, 20 Jan 2002 00:07:04 -0800 (PST) Received: (qmail 78532 invoked by uid 100); 20 Jan 2002 08:07:03 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15434.31399.395825.846309@guru.mired.org> Date: Sun, 20 Jan 2002 02:07:03 -0600 To: Alfatrion Cc: questions@freebsd.org, rene@xs4all.nl Subject: Re: what is a good language for system administration? In-Reply-To: <122550064@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfatrion types: > rxn> What other language do you guys advise for system administration tasks such > rxn> as > rxn> * checking if a remote host is up > rxn> * pumping files & RAM data through external tools > rxn> * calling scripts written in the same language on a remote machine, to > rxn> 'pickup' data that was pumped to that machine by a local script. > > rxn> My wishlist for the language, prioritized with most important first: > rxn> * portability! to other UNIXes, and even Windoze. > rxn> * low system demands - it needs to run on lowend boxes aswell > rxn> * clear organization of any 'plugins' (which need to be replicated on other > rxn> machines aswell) > rxn> * a nice errorhandling & logging system > > rxn> I could really use some clues here. PHP comes into mind, but maybe there are > rxn> other better options? > > Two good choices are: Python and Java. The later is good for portabily > to other type of systems. Actually, I've found Python to be more portable than Java. Java's portability is limited by the availability of the Java VM, which isn't as portable as the Python VM. I've written Python GUI apps on Unix, and they run unmodified on Windows and the Mac. Both Java and Python support CORBA for remote work. Python is a bit uglier than Perl when it comes to munging strings and external commands, but is generally more readable. That it has a REPL and Perl doesn't is also nice. The really cool tool is JPython, a Python implementation in Java. You get the Python REPL running in an environment with your Java objects loaded, so you can test them interactively, or use Python to build debugging trusswork. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 1:22: 5 2002 Delivered-To: freebsd-questions@freebsd.org Received: from reimari.net (mail.phpoint.net [212.63.10.62]) by hub.freebsd.org (Postfix) with ESMTP id D280F37B417 for ; Sun, 20 Jan 2002 01:22:00 -0800 (PST) Received: from 212-246-4-106.catv.tpo.fi (212-246-4-106.catv.tpo.fi [212.246.4.106]) by reimari.net (8.9.0/8.9.0) with SMTP id KAA24377 for ; Sun, 20 Jan 2002 10:38:26 +0200 (EET) Received: by 212-246-4-106.catv.tpo.fi with Microsoft Mail id <01C1A19E.D41A90A0@212-246-4-106.catv.tpo.fi>; Sun, 20 Jan 2002 10:40:07 +-200 Message-ID: <01C1A19E.D41A90A0@212-246-4-106.catv.tpo.fi> From: Pekka Samuli Laine To: "'freebsd-questions@FreeBSD.ORG'" Subject: Installation freezes -- please help Date: Sun, 20 Jan 2002 10:39:53 +-200 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If I try to run ide_conf.exe from the FreeBSD 4.4 CD-ROM, I get a following error: Non-compatible or missing Hard Disk Controller! Also when I try to install FreeBSD 4.4 (from CD-ROM) the first device probing goes allright but everything freezes after this line: Mounting root from ufs:/dev/md0c At this point a small sound comes from the hard disk as though it tried to read something from there. My motherboard specs are here: http://www.ecsusa.com/ecsusa/www.ecs.com.tw/products/p6bapap.htm I have one large IDE hard-disk which has 7560 Mbytes of space. It uses LBA mode in BIOS. Drive C is primary DOS (1890 Mbytes) which has Windows95 installed in it. Drive D is extended DOS (1875 Mbytes) which is reserved for Windows95 programs. The rest of the disk is unused and I had hoped that I could install FreeBSD on that space. Could this mean that I have incompatible hard disk controller? How do I know which hard disk controller I have? Is there anything I can do? PSL BTW: I once had WindowsNT installed on the same disk with Windows95 but then I removed NT completely. I still have the NT OS loader, though. Could the NT OS loader mess with the FreeBSD installer? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 1:27:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx5.port.ru (mx5.mail.ru [194.67.57.15]) by hub.freebsd.org (Postfix) with ESMTP id 31B9D37B416 for ; Sun, 20 Jan 2002 01:27:33 -0800 (PST) Received: from f2.int ([10.0.0.49] helo=f2.mail.ru) by mx5.port.ru with esmtp (Exim 3.14 #1) id 16SEG6-000JLk-00 for freebsd-questions@freebsd.org; Sun, 20 Jan 2002 12:27:26 +0300 Received: from mail by f2.mail.ru with local (Exim 3.14 #1) id 16SEG6-000Dw2-00 for freebsd-questions@freebsd.org; Sun, 20 Jan 2002 12:27:26 +0300 Received: from [213.154.195.90] by win.mail.ru with HTTP; Sun, 20 Jan 2002 12:27:26 +0300 From: "Duke" To: freebsd-questions@freebsd.org Cc: Subject: MRTG for interface gif0 Mime-Version: 1.0 X-Mailer: mPOP Web-Mail 2.19 X-Originating-IP: [213.154.195.90] Date: Sun, 20 Jan 2002 12:27:26 +0300 Reply-To: "Duke" Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Message-Id: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG MRTG return 0. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 2:27:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns.spnet.net (ns.spnet.net [212.50.0.10]) by hub.freebsd.org (Postfix) with ESMTP id CB0C137B400 for ; Sun, 20 Jan 2002 02:27:48 -0800 (PST) Received: from dialup66.sofia.spnet.net ([213.169.32.66] helo=Home) by ns.spnet.net with smtp (Exim 3.22 #1 (Debian)) id 16SFCS-0001Vc-00 for ; Sun, 20 Jan 2002 12:27:45 +0200 Message-ID: <000801c1a1a5$29fd0c90$4220a9d5@Home> From: "Atanas Stankov" To: Subject: Date: Sun, 20 Jan 2002 12:25:26 +0100 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C1A1AD.8A979A90" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 X-Scanner: exiscan *16SFCS-0001Vc-00*Z1oT7HrOxJs* http://duncanthrax.net/exiscan/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C1A1AD.8A979A90 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have a DVD-ROM Panasonic and when i start installation of FreeBSD 3.4 = it stops with message "No CDROM found with FreeBSD".How can I solve this = problem?Thanx ------=_NextPart_000_0005_01C1A1AD.8A979A90 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I have a DVD-ROM Panasonic and when i = start=20 installation of FreeBSD 3.4 it stops with message "No CDROM found with=20 FreeBSD".How can I solve this problem?Thanx
------=_NextPart_000_0005_01C1A1AD.8A979A90-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 2:31:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns.spnet.net (ns.spnet.net [212.50.0.10]) by hub.freebsd.org (Postfix) with ESMTP id 04D8137B405 for ; Sun, 20 Jan 2002 02:31:28 -0800 (PST) Received: from dialup66.sofia.spnet.net ([213.169.32.66] helo=Home) by ns.spnet.net with smtp (Exim 3.22 #1 (Debian)) id 16SFG0-0001a0-00 for ; Sun, 20 Jan 2002 12:31:25 +0200 Message-ID: <001501c1a1a5$ad441300$4220a9d5@Home> From: "Atanas Stankov" To: Subject: I can' install FreeBSD from DVD Date: Sun, 20 Jan 2002 12:29:07 +0100 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0012_01C1A1AE.0E2C72E0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 X-Scanner: exiscan *16SFG0-0001a0-00*bCuZEQ6vXDQ* http://duncanthrax.net/exiscan/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0012_01C1A1AE.0E2C72E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have a DVD-ROM Panasonic and when i start installation of FreeBSD 3.4 = it stops with message "No CDROM found with FreeBSD".How can I solve this = problem?Thanx ------=_NextPart_000_0012_01C1A1AE.0E2C72E0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
I have a DVD-ROM Panasonic and when i = start=20 installation of FreeBSD 3.4 it stops with message "No CDROM found with=20 FreeBSD".How can I solve this problem?Thanx
------=_NextPart_000_0012_01C1A1AE.0E2C72E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 3:45: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from protactinium.btinternet.com (protactinium.btinternet.com [194.73.73.176]) by hub.freebsd.org (Postfix) with ESMTP id CB9CD37B416 for ; Sun, 20 Jan 2002 03:45:02 -0800 (PST) Received: from host217-35-43-83.in-addr.btopenworld.com ([217.35.43.83] helo=marvin.penguinpowered.org.uk) by protactinium.btinternet.com with esmtp (Exim 3.22 #8) id 16SGOx-00055M-00; Sun, 20 Jan 2002 11:44:44 +0000 Received: from [192.168.10.12] (helo=set.home.penguinpowered.org.uk) by marvin.penguinpowered.org.uk with esmtp (Exim 3.33 #1) id 16SGU7-0000BA-00; Sun, 20 Jan 2002 11:50:03 +0000 Received: from waynep by set.home.penguinpowered.org.uk with local (Exim 3.34 #3) id 16SGPF-00009D-00; Sun, 20 Jan 2002 11:45:01 +0000 From: Wayne Pascoe To: Cc: freebsd-questions@FreeBSD.ORG Subject: Re: what is a good language for system administration? References: Date: 20 Jan 2002 11:45:00 +0000 In-Reply-To: Message-ID: Lines: 28 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.5 (bamboo) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG writes: > > rene@xs4all.nl writes: > > > > > * checking if a remote host is up > > > * pumping files & RAM data through external tools > > > * calling scripts written in the same language on a remote machine, to > > > 'pickup' data that was pumped to that machine by a local script. > > > > Perl was written with sysadmin work in mind. That was the original > > Perl is a hideously ugly language that should be taken out and shot. Since > your soliciting opinions :-) Python is a much easier, cleaner, and nicer > language for sys admin tasksfor me then perl. Correct me if I'm wrong, but isn't Python completely object orientated ? And doesn't it force you to write your code in an OO structure ? to me that just seems like overkill for the average day to day sysadmin task. Perl code can be ugly and wrong, but if written properly, it is easily readable and easy to work with. -- - Wayne Pascoe | Be nice to your daemons. usenet@penguinpowered.org.uk | http://www.penguinpowered.org.uk | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 3:46:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tungsten.btinternet.com (tungsten.btinternet.com [194.73.73.81]) by hub.freebsd.org (Postfix) with ESMTP id 92AF937B402 for ; Sun, 20 Jan 2002 03:46:44 -0800 (PST) Received: from host217-35-43-83.in-addr.btopenworld.com ([217.35.43.83] helo=marvin.penguinpowered.org.uk) by tungsten.btinternet.com with esmtp (Exim 3.22 #8) id 16SGQn-00064r-00; Sun, 20 Jan 2002 11:46:37 +0000 Received: from [192.168.10.12] (helo=set.home.penguinpowered.org.uk) by marvin.penguinpowered.org.uk with esmtp (Exim 3.33 #1) id 16SGVx-0000BC-00; Sun, 20 Jan 2002 11:51:57 +0000 Received: from waynep by set.home.penguinpowered.org.uk with local (Exim 3.34 #3) id 16SGR4-00009O-00; Sun, 20 Jan 2002 11:46:54 +0000 From: Wayne Pascoe To: David Loszewski Cc: freebsd-questions@freebsd.org Subject: Re: n00b question References: <3C49F30B.4070207@mediaone.net> Date: 20 Jan 2002 11:46:54 +0000 In-Reply-To: <3C49F30B.4070207@mediaone.net> Message-ID: Lines: 14 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.5 (bamboo) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG David Loszewski writes: > correct me if I'm wrong but FreeBSD systems can not get the code red > right and other trojans, just Microsoft OS's? There have been some trojans that were able to affect Linux systems through vulnerable versions of named (lion). I'm not sure if this was able to affect FreeBSD or not. Anyone care to comment ? -- - Wayne Pascoe | You know, it's simply not true that wayne@penguinpowered.org.uk | wars never settle anything - James Burnham http://www.penguinpowered.org.uk | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 3:58:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from protactinium.btinternet.com (protactinium.btinternet.com [194.73.73.176]) by hub.freebsd.org (Postfix) with ESMTP id 0679137B402 for ; Sun, 20 Jan 2002 03:58:40 -0800 (PST) Received: from host217-35-43-83.in-addr.btopenworld.com ([217.35.43.83] helo=marvin.penguinpowered.org.uk) by protactinium.btinternet.com with esmtp (Exim 3.22 #8) id 16SGcQ-0006Kz-00; Sun, 20 Jan 2002 11:58:38 +0000 Received: from [192.168.10.12] (helo=set.home.penguinpowered.org.uk) by marvin.penguinpowered.org.uk with esmtp (Exim 3.33 #1) id 16SGha-0000BT-00; Sun, 20 Jan 2002 12:03:58 +0000 Received: from waynep by set.home.penguinpowered.org.uk with local (Exim 3.34 #3) id 16SGci-00009l-00; Sun, 20 Jan 2002 11:58:56 +0000 From: Wayne Pascoe To: Trevin Chow Cc: questions@freebsd.org Subject: Re: using mod_rewrite to redirect ports? References: <20020119234506.K50936-100000@benny.geektank.org> Date: 20 Jan 2002 11:58:55 +0000 In-Reply-To: <20020119234506.K50936-100000@benny.geektank.org> Message-ID: Lines: 34 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.5 (bamboo) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Trevin Chow writes: > I'm trying to figure out how to properly setup mod_rewrite on Apache > 1.3.22 to redirect > requests for any sub-domain requests to the same subdomain but on a > different port. > > In other words: > > http://.foo.com ---> > http://.foo.com:8080/ I would guess something like RewriteRule /(.*).foo.com http://$1.foo.com:8080/ \ [redirect=temporary,last] Try that as a start. Also, set RewriteLogLevel to something like 3 and watch what happens at the request stage. TURN THIS OFF BEFORE GOING PRODUCTION! THE LOGS WILL EAT DISK SPACE _FAST_. Sorry, just had to lob that in there :) Lastly, be careful with directing web requests to ports other than 80 or 8080 if you want the world to be able to reach the site. A lot of corporate firewalls these days only allow outgoing requests to certain known ports. HTH -- - Wayne Pascoe | Things fall apart; the centre cannot hold; freebsd@molemanarmy.com | Mere anarchy is loosed upon the world. http://www.molemanarmy.com | - Yeats | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 4: 2:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gadolinium.btinternet.com (gadolinium.btinternet.com [194.73.73.111]) by hub.freebsd.org (Postfix) with ESMTP id 1963837B402 for ; Sun, 20 Jan 2002 04:02:35 -0800 (PST) Received: from host217-35-43-83.in-addr.btopenworld.com ([217.35.43.83] helo=marvin.penguinpowered.org.uk) by rhenium with esmtp (Exim 3.22 #8) id 16SGYR-0006Bd-00; Sun, 20 Jan 2002 11:54:31 +0000 Received: from [192.168.10.12] (helo=set.home.penguinpowered.org.uk) by marvin.penguinpowered.org.uk with esmtp (Exim 3.33 #1) id 16SGdb-0000BH-00; Sun, 20 Jan 2002 11:59:51 +0000 Received: from waynep by set.home.penguinpowered.org.uk with local (Exim 3.34 #3) id 16SGYj-00009X-00; Sun, 20 Jan 2002 11:54:49 +0000 From: Wayne Pascoe To: Alfatrion Cc: freebsd-questions@freebsd.org Subject: Re: what is a good language for system administration? References: <20020119205810.B17795@xs4all.nl> <5854596665.20020120030352@cybertron.tmfweb.nl> Date: 20 Jan 2002 11:54:48 +0000 In-Reply-To: <5854596665.20020120030352@cybertron.tmfweb.nl> Message-ID: Lines: 29 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.5 (bamboo) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfatrion writes: > Two good choices are: Pyton and Java. The later is good for portabily > to other type of systems. > I woud stay away from Perl (stay off it for awail and you forget how > to use it) or C(++) (You are asking for thouble, if your not a > programmer) I have to question the validity of Java for system administration. Firstly the java sandbox concept often makes trivial things like shelling out, running a command, and collecting the input difficult. Secondly, most sysadmin tasks are quick things that are performed often. The amount of system resources that you use for a Java application, no matter how small (the JRE or JVM) seems excessive for small scripts that will be run often. Lastly, the fact that Java is not as portable as Sun would have us believe (try move some servlet code from Tomcat to BEA WebLogic if you're very bored) means that you're always going to be slightly reworking your code for every environment that you want to run it. -- - Wayne Pascoe | Everything to excess. To enjoy the freebsd@molemanarmy.com | flavor of life, take big bites. Moderation http://www.molemanarmy.com | is for monks. - Robert Heinlein | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 4:22:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp03.retemail.es (smtp03.iddeo.es [62.81.186.13]) by hub.freebsd.org (Postfix) with ESMTP id 3BAC937B416 for ; Sun, 20 Jan 2002 04:21:57 -0800 (PST) Received: from conway.localdomain ([62.174.66.124]) by smtp03.retemail.es (InterMail vM.5.01.03.02 201-253-122-118-102-20010403) with SMTP id <20020120122243.MTAS1013.smtp03.retemail.es@conway.localdomain> for ; Sun, 20 Jan 2002 13:22:43 +0100 Date: Sun, 20 Jan 2002 13:23:41 +0100 From: F.Xavier Noria To: freebsd-questions@FreeBSD.ORG Subject: Re: what is a good language for system administration? Message-Id: <20020120132341.29b5cc8d.fxn@isoco.com> In-Reply-To: References: X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 20 Jan 2002 11:45:00 +0000 Wayne Pascoe wrote: : Perl code can be ugly and wrong, but if written properly, it is easily : readable and easy to work with. I agree, IMHO bad code is not readable independently of the language in which is written. Once you have mastered Perl, well-written Perl is crystal clear, and often remarkably brief, concise. I second the recommendations on studying portable sh and friends, and Perl. -- fxn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 4:28:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from acutiator.nacamar.de (mxa.tiscali.de [194.162.162.215]) by hub.freebsd.org (Postfix) with ESMTP id 971A137B419 for ; Sun, 20 Jan 2002 04:28:42 -0800 (PST) Received: from coelis.nacamar.de (coelis.nacamar.de [195.63.228.175]) by acutiator.nacamar.de (Postfix) with ESMTP id 39AF55D01; Sun, 20 Jan 2002 13:28:39 +0100 (CET) Received: (from kjwolf@localhost) by coelis.nacamar.de (8.11.6/8.11.2) id g0KCTaF42925; Sun, 20 Jan 2002 13:29:36 +0100 (CET) (envelope-from klaus-juergen.wolf@de.tiscali.com) Date: Sun, 20 Jan 2002 13:29:36 +0100 From: "Klaus-J. Wolf" To: freebsd-questions@freebsd.org Cc: zzhang@cs.binghamton.edu Subject: Re: Bad file descriptor Message-ID: <20020120132936.A42921@coelis.nacamar.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Organization: Tiscali Business GmbH Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Do you mean that you can not open those files even after you have run > fsck > successfully? If so, then fsck can not correct all corruptions. Hi, yes, in fact I did. fsck didn't complain about the concerned files. Only that you couldn't open or delete them. Regards, k.j. > On Sat, 12 Jan 2002, Klaus-J. Wolf wrote: > > > Hi, > > > it has happened to me several times: a machine crashes and > somewhere in > > the file system you'll find some trash afterwards which seems to be > > resistant against fsck: a file which you cannot open because the > system > > tells you: "bad file descriptor". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 5: 8:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from pc1-dale5-0-cust136.not.cable.ntl.com (pc1-dale5-0-cust136.not.cable.ntl.com [80.1.76.136]) by hub.freebsd.org (Postfix) with SMTP id 4301B37B402 for ; Sun, 20 Jan 2002 05:08:32 -0800 (PST) Received: (qmail 79951 invoked from network); 20 Jan 2002 13:08:23 -0000 Received: from localhost (HELO matt.thebigchoice.com) (127.0.0.1) by localhost with SMTP; 20 Jan 2002 13:08:23 -0000 Date: Sun, 20 Jan 2002 13:08:23 +0000 From: Matt H To: freebsd-questions@FreeBSD.ORG Subject: Re: what is a good language for system administration? Message-Id: <20020120130823.5a7f4d0a.freebsd-questions@cuntbubble.com> In-Reply-To: References: X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Correct me if I'm wrong, but isn't Python completely object orientated you're wrong > doesn't it force you to write your code in an OO structure ? no >[oo] just seems like overkill for the average day to day sysadmin task. also wrong :) > Perl code can be ugly and wrong, but if written properly, it is easily > readable and easy to work with. but that's correct there is nothing wrong with perl Perl & python try to combine the best of procedural, object orientated and functional programming perl has a more freeflow style and the famous MTOWTDI (more than one way to do it) It's regarded as evil by many because code produced by experienced perl coders ends up looking obfuscated. Perl is modelled on natural language and has a set of pronouns ($_ for instance). This way you can end up with some very terse code. This is great if you program in perl all the time because you remember which actions affect which pronouns. If you are an occasional perl programmer then this is when it starts to get confusing. Myself, I prefer my variable names to be explicit. The code _should_ be the documentation. In the end my advice stays the same, go and read the tutorials for each of the mentioned languages and decide from there. You'll end up reading them one day anyway! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 5:33: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.hccnet.nl (smtp.hccnet.nl [62.251.0.13]) by hub.freebsd.org (Postfix) with ESMTP id 5BD2C37B416 for ; Sun, 20 Jan 2002 05:32:57 -0800 (PST) Received: from there by smtp.hccnet.nl via fia168-94.dsl.hccnet.nl [62.251.94.168] with SMTP for id OAA28441 (8.8.8/1.13); Sun, 20 Jan 2002 14:32:52 +0100 (MET) Message-Id: <200201201332.OAA28441@smtp.hccnet.nl> Content-Type: text/plain; charset="iso-8859-15" From: Simon Siemonsma To: freebsd-questions@freebsd.org Subject: Fwd: Re: what is a good language for system administration? Date: Sun, 20 Jan 2002 14:38:08 +0000 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At http://www.ndh.net/home/sschwarzer/python/perlpy_vortrag.html#empfehlungen you find a comparison between Perl and Python in German. I will give the concluding remarks in German and the translation: Abschließende Bemerkungen Concluding remarks Faustregel: Wenn es nicht besondere Gründe gibt, Perl zu verwenden, sollte man ein Projekt mit Python in Angriff nehmen. Rule of the thump: When there are no special reasons to use Perl, you should use Python. Für beide (genauer: alle) Sprachen gilt: Erst denken, dann schreiben :-) For both (more precise: all) Languages you should thing before you write :) Auch in Python kann man unverständliche Programme schreiben, wenn man nicht aufpasst. Also in Python it is possible to write uncompihendable programs if you are not carefull. Simon Siemonsma Die Zeit, die man in Python bei der "Implementation im Kleinen" spart (Fehlersuche!), kann man zum Herausfinden von besserem Programmdesign und besseren Algorithmen verwenden. On Sunday 20 January 2002 11:45, you wrote: > writes: > > > rene@xs4all.nl writes: > > > > * checking if a remote host is up > > > > * pumping files & RAM data through external tools > > > > * calling scripts written in the same language on a remote machine, > > > > to 'pickup' data that was pumped to that machine by a local script. > > > > > > Perl was written with sysadmin work in mind. That was the original > > > > Perl is a hideously ugly language that should be taken out and shot. > > Since your soliciting opinions :-) Python is a much easier, cleaner, and > > nicer language for sys admin tasksfor me then perl. > > Correct me if I'm wrong, but isn't Python completely object orientated > ? And doesn't it force you to write your code in an OO structure ? to > me that just seems like overkill for the average day to day sysadmin > task. > > Perl code can be ugly and wrong, but if written properly, it is easily > readable and easy to work with. ------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 6: 6: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web21203.mail.yahoo.com (web21203.mail.yahoo.com [216.136.130.22]) by hub.freebsd.org (Postfix) with SMTP id 95C4537B419 for ; Sun, 20 Jan 2002 06:05:52 -0800 (PST) Message-ID: <20020120140552.83290.qmail@web21203.mail.yahoo.com> Received: from [24.101.148.182] by web21203.mail.yahoo.com via HTTP; Sun, 20 Jan 2002 22:05:52 CST Date: Sun, 20 Jan 2002 22:05:52 +0800 (CST) From: =?iso-8859-1?q?adrian=20kok?= Subject: solaris To: freebsd-questions@FreeBSD.ORG Cc: mwm-dated-1011760229.941611@mired.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all I have problem to install the solaris 8.0? Could you tell us how to do? Display card TNT M64 32M. But Solaris doesn't have this driver! 1/ Can I use another display driver to replace it? if yes. which one can I use? 2/ Can I use freebsd display driver to install to Solaris? If yes. what steps? 3/ If 1) and 2) don't work, I don't want to run solaris in x-window. But the solaris boots in X? how can I stop it and make it boot in console mode? I know it is not suitable to post it in this group. but could you let me know the solaris newsgroups? Thank you very much for your help _______________________________________________________________________ Do You Yahoo!? Get your free @yahoo.com.hk address at http://mail.english.yahoo.com.hk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 6:15:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id ACBC737B402 for ; Sun, 20 Jan 2002 06:15:13 -0800 (PST) Received: from gateway ([63.70.155.27]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Sun, 20 Jan 2002 09:18:21 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: you have mail msg at root login Date: Sun, 20 Jan 2002 09:15:09 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have sendmail disabled in rc.conf and today when I booted up I get this message 'You have new mail'. How could I have mail? How do I look at it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 6:18:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rambo.simx.org (rambo.simx.org [194.17.208.54]) by hub.freebsd.org (Postfix) with ESMTP id 9519137B417 for ; Sun, 20 Jan 2002 06:18:29 -0800 (PST) Received: from rambo.simx.org (johndoe@rocky [192.168.0.2]) by rambo.simx.org (8.11.6/8.11.6) with ESMTP id g0KEIJX12825; Sun, 20 Jan 2002 15:18:22 +0100 (CET) (envelope-from listsub@rambo.simx.org) Message-ID: <3C4AD1AB.3030204@rambo.simx.org> Date: Sun, 20 Jan 2002 15:18:19 +0100 From: "Roger 'Rocky' Vetterberg" Reply-To: listsub@rambo.simx.org User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Joe & Fhe Barbish Cc: FBSD Questions Subject: Re: you have mail msg at root login References: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The local maildelivery still works, that is, daily reporting and daemons will still mail the root account. Type 'mail' or 'man mail' for more info. -- R Joe & Fhe Barbish wrote: > I have sendmail disabled in rc.conf and today when I > booted up I get this message 'You have new mail'. > How could I have mail? > How do I look at it? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 6:38:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta07-svc.ntlworld.com (mta07-svc.ntlworld.com [62.253.162.47]) by hub.freebsd.org (Postfix) with ESMTP id 1103C37B416 for ; Sun, 20 Jan 2002 06:38:28 -0800 (PST) Received: from lungfish.ntlworld.com ([62.253.146.163]) by mta07-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020120143826.VWJO6966.mta07-svc.ntlworld.com@lungfish.ntlworld.com>; Sun, 20 Jan 2002 14:38:26 +0000 Received: from tuatara.goatsucker.org (tuatara.goatsucker.org [192.168.1.6]) by lungfish.ntlworld.com (8.11.3/8.11.3) with ESMTP id g0KEcPn13859; Sun, 20 Jan 2002 14:38:25 GMT (envelope-from scott@tuatara.goatsucker.org) Received: (from scott@localhost) by tuatara.goatsucker.org (8.11.6/8.11.6) id g0KEbcg03324; Sun, 20 Jan 2002 14:37:38 GMT (envelope-from scott) Date: Sun, 20 Jan 2002 14:37:38 +0000 From: Scott Mitchell To: "Roger 'Rocky' Vetterberg" Cc: Joe & Fhe Barbish , FBSD Questions Subject: Re: you have mail msg at root login Message-ID: <20020120143738.A306@localhost> References: <3C4AD1AB.3030204@rambo.simx.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C4AD1AB.3030204@rambo.simx.org>; from listsub@rambo.simx.org on Sun, Jan 20, 2002 at 03:18:19PM +0100 X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 03:18:19PM +0100, Roger 'Rocky' Vetterberg wrote: > The local maildelivery still works, that is, daily reporting > and daemons will still mail the root account. > Type 'mail' or 'man mail' for more info. Also, edit /etc/aliases to divert root's email to your normal user account. For example, I have the line: root: scott in mine. That way I get all the regular system emails without needing to become root, and I can read them with my normal mail reading setup. I also have procmail set up to file all such mails in a separate mailbox automatically. Don't forget to run /usr/bin/newaliases after editing the aliases file, to rebuild the alias database. HTH, Scott -- =========================================================================== Scott Mitchell | PGP Key ID | "Eagles may soar, but weasels Cambridge, England | 0x54B171B9 | don't get sucked into jet engines" scott.mitchell@mail.com | 0xAA775B8B | -- Anon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 6:52: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.ijs.com (mail.ijs.com [209.249.22.20]) by hub.freebsd.org (Postfix) with ESMTP id B413637B400 for ; Sun, 20 Jan 2002 06:52:00 -0800 (PST) Received: from [139.92.144.164] (account ) by mail.ijs.com (CommuniGate Pro WebUser 3.4.8) with HTTP id 9980124 for ; Sun, 20 Jan 2002 06:45:57 -0800 From: "Mihail Stoyanov" Subject: Troubles with installation of glibc 2.2.4 To: freebsd-questions@freebsd.org X-Mailer: CommuniGate Pro Web Mailer v.3.4.8 Date: Sun, 20 Jan 2002 06:45:57 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, My name is Mihail Stoyanov and I'm using FreeBSD as a desktop OS. I like to keep my system up-to-date but I encountered some difficulties while installing glibc 2.2.4. My FreeBSD is version 4.4-RELEASE. When I tried to configure glibc 2.2.4 I got the following message: "freemind# ./configure loading cache ./config.cache checking host system type... i386-unknown-freebsd4.4 *** The GNU C library is currently not available for this platform. *** So far nobody cared to port it and if there is no volunteer it *** might never happen. So, if you have interest to see glibc on *** this platform visit *** http://www.gnu.org/software/libc/porting.html *** and join the group of porters" I would be very glad if you can help me install glibc (my default version is 2.1.2). Thank you for your time and consideration. Respectfully: M. Stoyanov _______________________________________________________ Free e-mail by Bulgaria.com at http://mail.bulgaria.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 7: 6:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp07.wxs.nl (smtp07.wxs.nl [195.121.6.39]) by hub.freebsd.org (Postfix) with ESMTP id 7DEB337B404 for ; Sun, 20 Jan 2002 07:06:53 -0800 (PST) Received: from cybertron.kruijff ([213.10.151.186]) by smtp07.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id GQ8SNE01.I3U; Sun, 20 Jan 2002 16:06:50 +0100 Date: Sun, 20 Jan 2002 16:06:50 +0100 From: Alfatrion X-Mailer: The Bat! (v1.53d) UNREG / CD5BF9353B3B7091 Reply-To: Alfatrion X-Priority: 3 (Normal) Message-ID: <374787884.20020120160650@cybertron.tmfweb.nl> To: "Mike Meyer" Cc: questions@freebsd.org, rene@xs4all.nl Subject: Re[2]: what is a good language for system administration? In-Reply-To: <15434.31399.395825.846309@guru.mired.org> References: <15434.31399.395825.846309@guru.mired.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Mike, Sunday, January 20, 2002, 9:07:03 AM, you wrote: MM> Alfatrion types: >> rxn> What other language do you guys advise for system administration tasks such >> rxn> as >> rxn> * checking if a remote host is up >> rxn> * pumping files & RAM data through external tools >> rxn> * calling scripts written in the same language on a remote machine, to >> rxn> 'pickup' data that was pumped to that machine by a local script. >> >> rxn> My wishlist for the language, prioritized with most important first: >> rxn> * portability! to other UNIXes, and even Windoze. >> rxn> * low system demands - it needs to run on lowend boxes aswell >> rxn> * clear organization of any 'plugins' (which need to be replicated on other >> rxn> machines aswell) >> rxn> * a nice errorhandling & logging system >> >> rxn> I could really use some clues here. PHP comes into mind, but maybe there are >> rxn> other better options? >> >> Two good choices are: Python and Java. The later is good for portabily >> to other type of systems. MM> Actually, I've found Python to be more portable than Java. Java's MM> portability is limited by the availability of the Java VM, which isn't MM> as portable as the Python VM. I've written Python GUI apps on Unix, MM> and they run unmodified on Windows and the Mac. Im not that in to Python, so can't say to much about it. Its on my list to try, but that may take a wail. I didn't see a platform that didn't have a Java VM availble. Than again i didn't see that many. What you say bout the Python GUI apps is also true with the Java GUI apps. MM> Both Java and Python support CORBA for remote work. Python is a bit MM> uglier than Perl when it comes to munging strings and external MM> commands, but is generally more readable. That it has a REPL and Perl MM> doesn't is also nice. CORBA is good for (remote) compatibility with other langauges. If you wan't remote work from Java to Java you can use RMI or Activation (server side based on RMI). Since RMI doesn't have to work with other languages it doesn't have the same limits as CORBA. MM> The really cool tool is JPython, a Python implementation in Java. You MM> get the Python REPL running in an environment with your Java objects MM> loaded, so you can test them interactively, or use Python to build MM> debugging trusswork. Best regards, Alfatrion To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 7:44:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.radzinschi.com (pcp284510pcs.owngsm01.md.comcast.net [68.54.240.17]) by hub.freebsd.org (Postfix) with ESMTP id C77D837B405 for ; Sun, 20 Jan 2002 07:44:29 -0800 (PST) Received: from localhost (marco@localhost.radzinschi.com [127.0.0.1]) by mail.radzinschi.com (8.11.6/8.11.6) with ESMTP id g0KFi7X01895; Sun, 20 Jan 2002 10:44:11 -0500 (EST) (envelope-from marco@radzinschi.com) Date: Sun, 20 Jan 2002 10:44:07 -0500 (EST) From: Marco Radzinschi To: Cliff Sarginson Cc: Subject: Re: How to change a FreeBSD clock time In-Reply-To: <20020120071937.GA1341@raggedclown.net> Message-ID: <20020120103537.M1868-100000@mail.radzinschi.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 20 Jan 2002, Cliff Sarginson wrote: > On Sat, Jan 19, 2002 at 08:53:57PM -0800, Gary W. Swearingen wrote: > > Greg Lehey writes: > > > > > date(1). Why would you ever want to change the processor time and not > > > the CMOS time? The CMOS clock is only a backup for the processor > > > clock. > > > > Maybe because the OS I use 90% of the time maintains an offset between > > the CMOS clock and the OS clock using a sophisticated clock speed > > estimation algorithm which is not sophisticated enough to handle big > > step changes in the CMOS clock done by other OSes between boots without > > being told about it? > > > > That's not my current situation as I dropped Linux cold Turkey and the > > clock speed program isn't supported for FreeBSD. I'm OK with the "date" > > method, but I"m not happy that the "date" man page doesn't say what > > the command does better than it does. (It says "date will set the date > > and time" and doesn't mention CMOS/MB or OS clocks.) I've added it to > > my list of PRs to be written. > > > I run both Linux and FreeBSD. > As a consequence of this thread I just re-read the Linux manual page > on "hwclock". If ever a PR needs raising on something it is to provide > a manual page in Linux to explain the manual page on "hwclock" :). > > FreeBSD "date" is the Unix date command, as with so many things tracing > it's inheritance back to the beginnings of Unix itself. > > Linux uses GNU's date program, and buried somewhere in the "info" > page on Gnu date you will just about be able to work out that you > can set the system date/time with it as well as the kernel's. > > I think it is interesting that someone says a PR should be raised > against something in FreeBSD, that is the same in all Unix systems > but is different in Linux. What is probably the problem here is that > coming from Linux to FreeBSD carries with it the assumption, perhaps > understandably, that somehow everything on both systems is sort of the > same. What is called for is probably not a PR for the date page, but > someone to create some kind of brief list of surprises for Linux users > coming to FreeBSD. It would have never have occurred to me that a Linux > user would not know about the "date" command, but that is because I > have worked on Unix systems for a long time. When I first started > looking at Linux this hwclock stuff suprised me ! > > I think one of the writers was referring also to Windows, and yes it > is a real pain running Windows/FreeBSD/Linux on the same computer. Not > only for this reason but more because Windows does not understand the concept > of a hardware clock set to UTC (at least if it does I have never seen how to > make it do so and get the local time right). > > Btw "apropos time" does throw up the "date" command. > > -- > Regards > Cliff I actually considered hwclock to be strange as well, but it isn't only strange coming from Unix, it strange coming from DOS as well! :-) I was under the impression that Windows NT stored all date/time flags in the system in UTC, and then converts to the current time zone of the system when the information needs to be displayed. It seems rather ridiculous to not store the CMOS time in UTC, since it would then need to convert to UTC to store file access times, and then convert back to the system's time zone when the user issues a command such as "dir." - Marco Radzinschi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 7:46:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.hccnet.nl (smtp.hccnet.nl [62.251.0.13]) by hub.freebsd.org (Postfix) with ESMTP id D5F5C37B405 for ; Sun, 20 Jan 2002 07:46:49 -0800 (PST) Received: from there by smtp.hccnet.nl via fia168-94.dsl.hccnet.nl [62.251.94.168] with SMTP for id QAA02075 (8.8.8/1.13); Sun, 20 Jan 2002 16:46:43 +0100 (MET) Message-Id: <200201201546.QAA02075@smtp.hccnet.nl> Content-Type: text/plain; charset="iso-8859-15" From: Simon Siemonsma To: freebsd-questions@freebsd.org Subject: Building postfix from ports Date: Sun, 20 Jan 2002 16:52:04 +0000 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG When I type make in /usr/ports/postfix I get asked if want to install stuff like: Perl Compatible Regular Expressions Curus SASL Berkeley DB3 MySQL map lookups OpenLDAP map lookups SMTP/LMTP test server and generator Secure Sockets Layer and Transport Layer Security IPv6 support What the hell is this? I just want to build postfix. Simon Siemonsma To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 8: 7:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id 247D637B402 for ; Sun, 20 Jan 2002 08:07:33 -0800 (PST) Received: (qmail 82046 invoked by uid 100); 20 Jan 2002 16:07:25 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15434.60221.196994.279757@guru.mired.org> Date: Sun, 20 Jan 2002 10:07:25 -0600 To: Alfatrion Cc: questions@freebsd.org, rene@xs4all.nl Subject: Re: Re[2]: what is a good language for system administration? In-Reply-To: <374787884.20020120160650@cybertron.tmfweb.nl> References: <15434.31399.395825.846309@guru.mired.org> <374787884.20020120160650@cybertron.tmfweb.nl> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfatrion types: > Hello Mike, > Sunday, January 20, 2002, 9:07:03 AM, you wrote: > MM> Alfatrion types: > MM> Actually, I've found Python to be more portable than Java. Java's > MM> portability is limited by the availability of the Java VM, which isn't > MM> as portable as the Python VM. I've written Python GUI apps on Unix, > MM> and they run unmodified on Windows and the Mac. > Im not that in to Python, so can't say to much about it. Its on my > list to try, but that may take a wail. I didn't see a platform that didn't have a > Java VM availble. Than again i didn't see that many. What you say bout > the Python GUI apps is also true with the Java GUI apps. I'm aware of that. The problems I've had with Java were all on Unix platforms. Things like having to install three different VM's to get Java programs from four different vendors to run. A few clients have said "we develop for *this* JVM; we don't care if it works on any of the others." While Java VM's exist for more platforms than Python runs on, no one Java VM runs on all the platforms that Python runs on. It may be that things are better now, so that most Java programs aren't tied to a single JVM. It might also be that for the task at hand - system administration - the difference between JVM's won't matter. > MM> Both Java and Python support CORBA for remote work. Python is a bit > MM> uglier than Perl when it comes to munging strings and external > MM> commands, but is generally more readable. That it has a REPL and Perl > MM> doesn't is also nice. > CORBA is good for (remote) compatibility with other langauges. If you > wan't remote work from Java to Java you can use RMI or Activation > (server side based on RMI). Since RMI doesn't have to work with other > languages it doesn't have the same limits as CORBA. True. There's a couple of Python-specific remote method invocation implementations floating around, but I haven't investigated them. I like the ability to choose the language appropriate for each object that comes with using CORBA. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 8:45: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.mgfairfax.rr.com (fe7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id 79BFF37B417 for ; Sun, 20 Jan 2002 08:45:01 -0800 (PST) Received: from there ([24.163.115.240]) by mail7.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Sun, 20 Jan 2002 11:44:55 -0500 Content-Type: text/plain; charset="iso-8859-1" From: Ray Kohler To: "Mihail Stoyanov" , freebsd-questions@FreeBSD.ORG Subject: Re: Troubles with installation of glibc 2.2.4 Date: Sun, 20 Jan 2002 11:48:04 -0500 X-Mailer: KMail [version 1.3.2] References: In-Reply-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: <0b43a5544161412FE7@mail7.mgfairfax.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sunday 20 January 2002 09:45 am, Mihail Stoyanov wrote: > Hello, > > My name is Mihail Stoyanov and I'm using FreeBSD as a > desktop OS. I like to keep my system up-to-date but I > encountered some difficulties while installing glibc 2.2.4. > My FreeBSD is version 4.4-RELEASE. When I tried to configure > glibc 2.2.4 I got the following message: > "freemind# ./configure > loading cache ./config.cache > checking host system type... i386-unknown-freebsd4.4 > *** The GNU C library is currently not available for this > platform. > *** So far nobody cared to port it and if there is no > volunteer it > *** might never happen. So, if you have interest to see > glibc on > *** this platform visit > *** http://www.gnu.org/software/libc/porting.html > *** and join the group of porters" > > I would be very glad if you can help me install glibc (my > default version is 2.1.2). Thank you for your time and > consideration. FreeBSD doesn't use glibc at all. We have our own libc. The way to keep your system up to date is to use cvsup and make world; read http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cutting-edge.html to find out what I'm talking about. -- Ray Kohler A psychiatrist is a person who will give you expensive answers that your wife will give you for free. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 9: 0:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gfs-zh.ch (zrhlimdsp512.agrinet.ch [212.28.139.12]) by hub.freebsd.org (Postfix) with SMTP id 7BACE37B419 for ; Sun, 20 Jan 2002 09:00:43 -0800 (PST) Received: (qmail 10869 invoked from network); 20 Jan 2002 17:20:25 -0000 Received: from unknown (HELO tur) (192.168.100.120) by 192.168.100.1 with SMTP; 20 Jan 2002 17:20:25 -0000 From: "Tomislav Turner" To: freebsd-questions@FreeBSD.ORG Date: Sun, 20 Jan 2002 18:04:05 +0100 MIME-Version: 1.0 Subject: Multiple keyboards Message-ID: <3C4B0695.29928.4382549C@localhost> X-mailer: Pegasus Mail for Windows (v4.01) Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: Quoted-printable Content-description: Mail message body Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm not sure if my question arrived on the list So here I go again I'm searching for documentation on multi keyboard/graphiccard in freebsd c= an someone give me a link or an answer if it's even possible ?? Thanks Tomi Tomislav Turner GFS - Forschungsinstitut Riedtlistr. 9 8006 Z=FCrich Tel. 01 / 361 51 62 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 9: 1:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mxzilla4.xs4all.nl (mxzilla4.xs4all.nl [194.109.6.48]) by hub.freebsd.org (Postfix) with ESMTP id E2B3837B419 for ; Sun, 20 Jan 2002 09:01:37 -0800 (PST) Received: from xs4.xs4all.nl (rene@xs4.xs4all.nl [194.109.6.45]) by mxzilla4.xs4all.nl (8.12.0/8.12.0) with ESMTP id g0KH1Zsj068979; Sun, 20 Jan 2002 18:01:35 +0100 (CET) Received: (from rene@localhost) by xs4.xs4all.nl (8.9.0/8.9.0) id SAA06272; Sun, 20 Jan 2002 18:01:34 +0100 (CET) Date: Sun, 20 Jan 2002 18:01:34 +0100 From: rene@xs4all.nl To: Mark Woodson Cc: questions@freebsd.org Subject: Re: what is a good language for system administration? Message-ID: <20020120180134.H17795@xs4all.nl> References: <5.1.0.14.0.20020119151248.033629b8@127.0.0.1> <20020119205810.B17795@xs4all.nl> <5.1.0.14.0.20020119151248.033629b8@127.0.0.1> <20020119213601.C17795@xs4all.nl> <5.1.0.14.0.20020120104211.00b0a5d8@127.0.0.1> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <5.1.0.14.0.20020120104211.00b0a5d8@127.0.0.1>; from mwoodson@bacxs.com on Sun, Jan 20, 2002 at 10:46:46AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 10:46:46AM -0500, Mark Woodson wrote: > At 09:36 PM 1/19/2002 +0100, you wrote: > >On Sat, Jan 19, 2002 at 03:13:21PM -0500, Mark Woodson wrote: > > > At 08:58 PM 1/19/2002 +0100, you wrote: > > > >I could really use some clues here. PHP comes into mind, but maybe there > > > >are other better options? > > > > > > Other options certainly. Perl for starters. Have you looked at it? > > > >yea, I saw some really scary stuff in some perlmongers' email sigs ;-)) > > Yeah, well... Python, you could always hack away in the ultimate language, C. well, to add my own 2cts after I give you my background which is being a windowze coder for about 7 years in Delphi, VB and some C++. I have now switched to the unixes some time ago, to see if the open source grass really IS greener than the black-box grass of windoze.. My philosophy is that I'd rather use a less-complicated language like pascal or (if must be and the business logic isn't that complicated) Visual Basic than a complicated language such as C++ or Perl. See, the thing is that in C++ or Perl, you often end up figuring out the style of programming used by 'the guy who tinkered with it before you' instead of fixing or extending the code at hand. If several types of coders have had their hands at such code, things often turn too messy to maintain :( Perl / C++ people; I don't aim to put you down, or expect flames in return. This is just an opinion, and I fully admit that I don't know Perl at all and C++ only very very shallowly. I saw, didn't like, so turned my back on those languages... Maybe I was wrong. Convince me, nicely ;-) BTW; thanx for the discussion so far. It's been quite an interesting read! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 9:28:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 5167A37B405 for ; Sun, 20 Jan 2002 09:28:26 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16SLlY-0000OX-00 for questions@freebsd.org; Sun, 20 Jan 2002 17:28:24 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 4FAC6117F; Sun, 20 Jan 2002 18:28:23 +0100 (CET) Date: Sun, 20 Jan 2002 18:28:23 +0100 From: Cliff Sarginson To: questions@freebsd.org Subject: Re: Re[2]: what is a good language for system administration? Message-ID: <20020120172823.GA1952@raggedclown.net> References: <15434.31399.395825.846309@guru.mired.org> <374787884.20020120160650@cybertron.tmfweb.nl> <15434.60221.196994.279757@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <15434.60221.196994.279757@guru.mired.org> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 10:07:25AM -0600, Mike Meyer wrote: > Alfatrion types: > > True. There's a couple of Python-specific remote method invocation > implementations floating around, but I haven't investigated them. I > like the ability to choose the language appropriate for each object > that comes with using CORBA. > Mmm, considering this and other answers (including my own), they are all trying to answer the question (what is "good" for system administration). The question may have have been what, in a practical sense is the best to learn in terms of portability, skills, and what may shine best on your CV as a "Unix Systems Admin" The answer to these two questions is not the same. For the wider world I think the answer is still: - Know the shell backwards and all the needed tools for use with the shell. - (Painful as I find this to say) learn Perl. There is such a huge amount of canned modules for Perl available, and it is increasingly used where people used to write "C" for something too slow to be done in the shell, that I don;t think there are any other players seriously in the game yet. Java (the language) and Java (the script) .. which do not have any relationship to each other whatsoever btw .. are not really used, or are ever likely to be, for Systems Administration at it's usual level. Most of the other suggestions are still really "niche" markets. Mmm. There was as usual, the comment that it is possible to write cryptic code in any language. Due to the totally eccentric nature of Perl, it's completely undisciplined growth, it's lack of syntactic integrity, it's arbitrary semantics etc etc .. it makes it much easier to do this than in most other languages :). But it's here to stay. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 9:38:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 69AF037B404 for ; Sun, 20 Jan 2002 09:38:07 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16SLuw-0000qW-00 for questions@freebsd.org; Sun, 20 Jan 2002 17:38:06 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id D8120117F; Sun, 20 Jan 2002 18:38:04 +0100 (CET) Date: Sun, 20 Jan 2002 18:38:04 +0100 From: Cliff Sarginson To: questions@freebsd.org Subject: Re: what is a good language for system administration? Message-ID: <20020120173804.GB1952@raggedclown.net> References: <5.1.0.14.0.20020119151248.033629b8@127.0.0.1> <20020119205810.B17795@xs4all.nl> <5.1.0.14.0.20020119151248.033629b8@127.0.0.1> <20020119213601.C17795@xs4all.nl> <5.1.0.14.0.20020120104211.00b0a5d8@127.0.0.1> <20020120180134.H17795@xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020120180134.H17795@xs4all.nl> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 06:01:34PM +0100, rene@xs4all.nl wrote: > On Sun, Jan 20, 2002 at 10:46:46AM -0500, Mark Woodson wrote: > > At 09:36 PM 1/19/2002 +0100, you wrote: > > >On Sat, Jan 19, 2002 at 03:13:21PM -0500, Mark Woodson wrote: > > > > At 08:58 PM 1/19/2002 +0100, you wrote: > > > > >I could really use some clues here. PHP comes into mind, but maybe there > > > > >are other better options? > > > > > > > > Other options certainly. Perl for starters. Have you looked at it? > > > > > >yea, I saw some really scary stuff in some perlmongers' email sigs ;-)) > > > > Yeah, well... Python, you could always hack away in the ultimate language, C. > > well, to add my own 2cts after I give you my background which is being a > windowze coder for about 7 years in Delphi, VB and some C++. > I have now switched to the unixes some time ago, to see if the open source > grass really IS greener than the black-box grass of windoze.. > > My philosophy is that I'd rather use a less-complicated language like > pascal or (if must be and the business logic isn't that complicated) Visual > Basic than a complicated language such as C++ or Perl. > > See, the thing is that in C++ or Perl, you often end up figuring out the style > of programming used by 'the guy who tinkered with it before you' instead of > fixing or extending the code at hand. > If several types of coders have had their hands at such code, things often > turn too messy to maintain :( > > Perl / C++ people; I don't aim to put you down, or expect flames in return. > This is just an opinion, and I fully admit that I don't know Perl at all > and C++ only very very shallowly. I saw, didn't like, so turned my back on > those languages... Maybe I was wrong. Convince me, nicely ;-) > Well, the question is about languages for System Administration, which really is not the same thing as languages for System's Programming. Using a compiled language like "C" etc. is really quite inappropriate for systems administration actvivities, not least of which it would be incredibly complex programming in some cases where a one line shell pipe-line would do it. Using an interpreted (using that word loosely) language for these tasks, which is easy to change and test, and is generally not time critical, is the only sensible option. I hope you were not serious about Pascal btw. Possibly the *most* unportable language on the planet. Almost nothing useful can be done in it outside of mathematical computation, without it's extensions, and it's extensions are all different in every incarnation of the language to be found. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 9:43:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id C549037B404 for ; Sun, 20 Jan 2002 09:43:53 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16SM0W-00011g-00 for freebsd-questions@freebsd.org; Sun, 20 Jan 2002 17:43:52 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id E3F99117F; Sun, 20 Jan 2002 18:43:51 +0100 (CET) Date: Sun, 20 Jan 2002 18:43:51 +0100 From: Cliff Sarginson To: freebsd-questions@freebsd.org Subject: Re: Building postfix from ports Message-ID: <20020120174351.GC1952@raggedclown.net> References: <200201201546.QAA02075@smtp.hccnet.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200201201546.QAA02075@smtp.hccnet.nl> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 04:52:04PM +0000, Simon Siemonsma wrote: > When I type make in /usr/ports/postfix I get asked if want to install stuff > like: > Perl Compatible Regular Expressions > Curus SASL > Berkeley DB3 > MySQL map lookups > OpenLDAP map lookups > SMTP/LMTP test server and generator > Secure Sockets Layer and Transport Layer Security > IPv6 support > > What the hell is this? I just want to build postfix. > Postfix can support all of the above directly, should you so wish. For example you may use LDAP for your hosts database, etc. If you don't know what they are all for, then you probably don't need them :). I would select the Perl regex support though and ignore the others. But it is hard to say without knowing your local situation (you may work in an environment where SSL/TLS matters for example). -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 10: 3:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailout07.sul.t-online.com (mailout07.sul.t-online.com [194.25.134.83]) by hub.freebsd.org (Postfix) with ESMTP id 2F98D37B400 for ; Sun, 20 Jan 2002 10:03:11 -0800 (PST) Received: from fwd07.sul.t-online.de by mailout07.sul.t-online.com with smtp id 16SMJC-0003i6-03; Sun, 20 Jan 2002 19:03:10 +0100 Received: from T-Online.de (320054407018-0001@[217.2.42.226]) by fwd07.sul.t-online.com with esmtp id 16SMIs-2DCItsC; Sun, 20 Jan 2002 19:02:50 +0100 Message-ID: <3C4B05E9.DB6DDBA5@T-Online.de> Date: Sun, 20 Jan 2002 19:01:13 +0100 From: Juergen.Dankoweit@t-online.de (=?iso-8859-1?Q?J=FCrgen?= Dankoweit) Reply-To: Juergen.Dankoweit@T-Online.de X-Mailer: Mozilla 4.76 [en] (X11; U; SunOS 5.8 i86pc) X-Accept-Language: de, en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Installation Problems on FreeBSD4.4 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Sender: 320054407018-0001@t-dialin.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello to all. Again I have the problem, that the installation of the GNome-Package needs a very long time (now there are six hours gone, and nothing is complete, sometimes a package is installed then there is a pause of 20-30 minutes). A reader of the FreeBSD-newsgroup told me to install first the base operating-system with X-Support ("X-User"), after reboot configure the X-Server and then install the GNome-Package. I have done this, but the installation-time is about hours(!!!). I have FreeBSD 4.4 stable (on 6 CDs). My Notebook is a Toshiba 200CDS with CDROM. Please help Jürgen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 10: 5: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ralf.artlogix.com (sense-mcglk-240.oz.net [216.39.168.240]) by hub.freebsd.org (Postfix) with ESMTP id 28A7037B41A for ; Sun, 20 Jan 2002 10:05:01 -0800 (PST) Received: by ralf.artlogix.com (Postfix, from userid 1000) id 838981B9D3B; Sun, 20 Jan 2002 10:05:00 -0800 (PST) To: Simon Siemonsma Cc: freebsd-questions@freebsd.org Subject: Re: Building postfix from ports References: <200201201546.QAA02075@smtp.hccnet.nl> From: Ken McGlothlen Date: 20 Jan 2002 10:05:00 -0800 In-Reply-To: <200201201546.QAA02075@smtp.hccnet.nl> Message-ID: <87hepg6gqb.fsf@ralf.artlogix.com> Lines: 68 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Simon Siemonsma writes: | When I type make in /usr/ports/postfix I get asked if want to install stuff | like: | Perl Compatible Regular Expressions | Curus SASL | Berkeley DB3 | MySQL map lookups | OpenLDAP map lookups | SMTP/LMTP test server and generator | Secure Sockets Layer and Transport Layer Security | IPv6 support | | What the hell is this? I just want to build postfix. That's a little like telling the car salesman that you just want a car, and don't care whether it's an automatic or manual transmission. In order: * Perl Compatible Regular Expressions If you're a Perl user, this can be very useful, as you can use all the Perl regex syntax you're familiar with. If you're not, you'll find this confusing. So use this if you're a Perl user. * Cyrus SASL If you use Cyrus as your IMAP server, set this; if not, don't. * Berkeley DB3 If you've installed db3 on your system, you may want to use this. db3 is a fast, if minimalist, database system that Postfix can use to speed up lookups. If you don't use db3 on your system, or have a fairly small mail installation, don't use this. * MySQL map lookups If you have MySQL on your system, you have the option of telling Postfix that you want to use it for map lookups. If you don't, or if you have a small mail installation, don't use it. * OpenLDAP map lookups If you're using OpenLDAP, you can use it for map lookups instead. If you don't, or you have a small mail installation, don't use it. * SMTP/LMTP test server and generator Almost certainly unnecessary for your installation. * Secure Sockets Layer and Transport Layer Security If you want to use SSL or TLS for mail transfer, use this. If not, don't. * IPv6 support If you're using IPv6 addresses, you'll want to use this. If not, don't. The postfix port tries to make this really, really easy for you, but perhaps it would be better if it provided a little more explanation for the options. In any case, it's not trying to be confusing. If you don't like this, then you definitely don't want to install ghostscript. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 10:19:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from operamail.com (operamail.infinite.com [199.29.68.126]) by hub.freebsd.org (Postfix) with ESMTP id D425637B481 for ; Sun, 20 Jan 2002 10:19:17 -0800 (PST) X-WM-Posted-At: operamail.com; Sun, 20 Jan 02 13:19:12 -0500 X-WebMail-UserID: leegold Date: Sun, 20 Jan 2002 13:19:12 -0500 From: leegold To: Ray Kohler Cc: freebsd-questions@freebsd.org X-EXP32-SerialNo: 00000000 Subject: RE: emacs will not start Message-ID: <3C5AA2C6@operamail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit X-Mailer: InterChange (Hydra) SMTP v3.62 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I didn't install, nor do I want at this X-windows on my pc. why is emacs asking for an x library? I'm new to emacs I assumed it was text based like vi is(?) >===== Original Message From Ray Kohler ===== >On Saturday 19 January 2002 11:18 pm, leegold wrote: >> I installed emacs from the packages. >> I then typed # emacs and got the following error message: >> >> /usr/libexec/ld-elf.so.1: shared object "libXaw.so.6" not found >> >> and emacs does not open. Can anyone help me fix this? >> I may not have the errmessage exactly but the above is the >> gist of it. FreeBSD 4.4 > >Well, libXaw is part of XFree86, but now it's at 7, not 6. So >either: >1) your X is newer than the package (in which case you ought to >uninstall the emacs package and build it from the port instead) or >2) your X installation is goofed up (in which case you ought to >reinstall X from ports). > >What does "ls -l /usr/X11R6/lib/libXaw*" show? If you get some >files (not counting the ones with "3d" in their names), then you >should do option 1 above, if not, do option 2. > >-- >Ray Kohler >"It's not just a computer -- it's your hiney." > -- Cal Keegan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 10:31:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from db.nexgen.com (db.nexgen.com [66.92.98.149]) by hub.freebsd.org (Postfix) with SMTP id 587CF37B41A for ; Sun, 20 Jan 2002 10:31:45 -0800 (PST) Received: (qmail 60688 invoked from network); 20 Jan 2002 18:31:08 -0000 Received: from localhost.nexgen.com (HELO noc) (root@127.0.0.1) by localhost.nexgen.com with SMTP; 20 Jan 2002 18:31:08 -0000 Message-ID: <000901c1a1e0$a3287b50$faa0b542@noc> From: "alexus" To: Subject: not enough space Date: Sun, 20 Jan 2002 13:31:12 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG allworld# pwd / allworld# df -h Filesystem Size Used Avail Capacity Mounted on /dev/da0s1a 32G 29G 1.2G 96% / procfs 4.0K 4.0K 0B 100% /proc allworld# ls .cshrc COPYRIGHT boot compat dist home kernel.GENERIC modules root stand tmp var .profile bin cdrom dev etc kernel mnt proc sbin sys usr allworld# du -hs bin boot cdrom compat dev dist etc home mnt modules root sbin stand sys tmp usr var 3.8M bin 545K boot 1.0K cdrom 0B compat 61K dev 1.0K dist 833K etc 0B home 1.0K mnt 4.6M modules 16K root 11M sbin 1.9M stand 0B sys 1.0K tmp 1.4G usr 108M var allworld# how can it show that 29G is used if barly 2G is used in total, what am i missing? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 10:44:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20101.mail.yahoo.com (web20101.mail.yahoo.com [216.136.226.38]) by hub.freebsd.org (Postfix) with SMTP id E7F0F37B416 for ; Sun, 20 Jan 2002 10:44:06 -0800 (PST) Message-ID: <20020120184406.3476.qmail@web20101.mail.yahoo.com> Received: from [67.216.46.98] by web20101.mail.yahoo.com via HTTP; Sun, 20 Jan 2002 10:44:06 PST Date: Sun, 20 Jan 2002 10:44:06 -0800 (PST) From: Ben P Subject: Re: Confirmation for subscribe freebsd-questions To: Majordomo@FreeBSD.ORG Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <20020120184027.83C3F37B405@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG auth 370121f6 subscribe freebsd-questions bsdben@yahoo.com __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 10:49:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from johnson.mail.mindspring.net (johnson.mail.mindspring.net [207.69.200.177]) by hub.freebsd.org (Postfix) with ESMTP id E904637B404; Sun, 20 Jan 2002 10:49:33 -0800 (PST) Received: from 1cust172.tnt4.des-moines.ia.da.uu.net ([63.11.140.172] helo=vaio) by johnson.mail.mindspring.net with smtp (Exim 3.33 #1) id 16Rqhe-000835-00; Sat, 19 Jan 2002 03:18:20 -0500 From: msluyter@yahoo.com To: Subject: All New Date: Fri, 18 Jan 2002 21:31:30 -0600 X-Priority: 1 X-MSMail-Priority: High Message-Id: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG TIRED OF ENDLESSLY POSTING YOUR ONLINE CLASSIFIED AD AND GETTING NO RESULTS? There are over 7000 such sites scattered about the web; and quite frankly, none of them generate enough traffic to be worth your while. Even when someone finds or visits one of these sites, your ad is hopelessly lost in a myriad of similar offerings. Another frustration is search engines. If you are not in the Top 10, forget about high-traffic on your web site. Not everyone can be in the Top 10 and stay there; when there are estimates of four million web pages! How do we know? We know because that's exactly what we used to do. The greatest way of marketing this century is undoubtedly direct e-mail. It's similar to the postman delivering a letter to your mailbox. There is NO stumbling on to it! The ability to promote your product, service, website, or MLM/network marketing opportunity to millions instantly is what advertisers have been dreaming of for over 100 years. We will e-mail your one page promotion to a list of our general addresses. The greatest part is, it's completely affordable. ----------------------------------------------------------------------- NOTICE: Absolutely no pornography, chain letters, get rich quick, pyramid schemes, or any threatening or questionable materials. ----------------------------------------------------------------------- STANDARD PRICING AND PROCEDURES ----------------------------------------------------------------------- EXTRACTING: Our list of general Internet addreses are actually extracted from the most popular web sites on the Internet. The addresses are verified and run through our purification process. The process includes addresses run against our custom remove filter of 2,492 keywords, as well as through our 192MB remove /flamer list. The EDU, ORG, GOV, MIL, and US domains are removed, as well as other domains that asked not to receive e-mail. ----------------------------------------------------------------------- SET-UP FEE: $150.00 This will cover the costs of uploading files, Internet Access (ISP), and software set-up. ----------------------------------------------------------------------- EVALUATION: $350.00 (optional) One of our marketing specialists will evaluate your sales letter, and offer his/her expertise on how to make it the most successful. ----------------------------------------------------------------------- STANDARD PRICING: (Emails Delivered) 1 Million- $800.00 per 2 Million- $700.00 per 3 Million & up- $600.00 per ----------------------------------------------------------------------- SPECIAL OFFER! This introductory offer of $475.00 includes: 1. Set-Up Fee 2. Evaluation of Sales Letter 3. 250,000 e-mails delivered ----------------------------------------------------------------------- PAYMENT POLICY All services must be paid in full prior to delivery of advertisement. Under NO CIRCUMSTANCES will any sales or marketing strategies be discussed until payment is received. ----------------------------------------------------------------------- If you are serious about Direct Email Marketing--Fax the following form to (602) 392-8288 ---------------------------------------------------------------------- PLEASE FILL THIS FORM OUT COMPLETELY! Contact Name: _____________________________________________ Business Name: ______________________________________ Business Type: ______________________________________ # Years in Business: _________________________ Address: _________________________________________________ City: ____________________ State: ______ Zip: ______________ Country: _______________ Email Address: _______________________________________________ Phone: __________________________Fax: ____________________________ ----------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 10:52:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from albatross.prod.itd.earthlink.net (albatross.mail.pas.earthlink.net [207.217.120.120]) by hub.freebsd.org (Postfix) with ESMTP id A6FD337B400; Sun, 20 Jan 2002 10:52:17 -0800 (PST) Received: from 1cust98.tnt7.athens.ga.da.uu.net ([67.216.46.98] helo=earthlink.net) by albatross.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16SN4i-0005qo-00; Sun, 20 Jan 2002 10:52:17 -0800 Message-ID: <3C4B1178.1DDC44DA@earthlink.net> Date: Sun, 20 Jan 2002 13:50:32 -0500 From: benprewitt Reply-To: benprewitt@earthlink.net X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.4.3-20mdk i686) X-Accept-Language: en MIME-Version: 1.0 To: Majordomo@FreeBSD.ORG Subject: auth 370121f6 subscribe freebsd-questions bsdben@yahoo.com Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG auth 370121f6 subscribe freebsd-questions bsdben@yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 10:56:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.x9media.com (gwd.kluth.de [62.138.175.130]) by hub.freebsd.org (Postfix) with SMTP id 8D7F337B404 for ; Sun, 20 Jan 2002 10:56:23 -0800 (PST) Received: from tm1 (217.82.30.132) by mail.x9media.com with MERCUR-SMTP/POP3/IMAP4-Server (v3.30.09 XN-0098304) for ; Sun, 20 Jan 2002 19:59:26 +0100 Message-ID: <002301c1a1e4$29296a40$0100a8c0@tm1> From: "tm" To: Subject: php4 + java/ext on freebsd4.4 Date: Sun, 20 Jan 2002 19:56:25 +0100 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0020_01C1A1EC.8A8A7C90" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0020_01C1A1EC.8A8A7C90 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, i installed the following ports on freebsd4.4: mysql323-server, apache13-modssl, mod_php4 port, jdk(1.1.8) and want to have php java/ext support. I added the following lines in = the configure.php script of the mod_php4 port. -------------------------------------------------------------------------= ----------------- JAVA "Java Support" ON \ \"JAVA\") echo "CONFIGURE_ARGS+=3D--with-java=3D/usr/local/jdk1.1.8" ;; -------------------------------------------------------------------------= ----------------- my php.ini script: extension=3Dlibphp_java.so [Java] java.class.path =3D /usr/local/lib/php/php_java.jar java.home =3D /usr/local/jdk1.1.8 java.library =3D /usr/local/lib/php/20010901/libphp_java.so java.library.path =3D /usr/local/lib/php -------------------------------------------------------------------------= ----------------- my javatest.php programm: getProperty("java.version")." =
\n"; print "Java vendor=3D".$system->getProperty("java.vendor")."

\n\n"; print "OS=3D".$system->getProperty("os.name")." ". $system->getProperty("os.version")." on ". $system->getProperty("os.arch")."
\n"; $formatter =3D new Java("java.text.SimpleDateFormat","EEEE, MMMM dd, yyyy 'at' h:mm:ss a zzzz"); print $formatter->format(new Java("java.util.Date"))."\n"; ?> -------------------------------------------------------------------------= ----------------- I got the following error in the browser window: Fatal error: Cannot instantiate non-existent class: java in = /usr/local/www/data.default/javatest.php on line 3 Any idea ? regards thomas ------=_NextPart_000_0020_01C1A1EC.8A8A7C90 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

Hi,
 
i installed the following ports on=20 freebsd4.4:
mysql323-server, apache13-modssl, mod_php4 = port,=20 jdk(1.1.8)
 
and want to have php java/ext support. = I added the=20 following lines in the configure.php
script of the mod_php4 = port.
----------------------------------------------------------------= --------------------------
JAVA          =  =20 "Java Support" ON \
\"JAVA\")
echo=20 "CONFIGURE_ARGS+=3D--with-java=3D/usr/local/jdk1.1.8"
;;
----------= -------------------------------------------------------------------------= -------
my php.ini script:
 
extension=3Dlibphp_java.so
[Java]
java.class.path =3D=20 /usr/local/lib/php/php_java.jar
java.home =3D=20 /usr/local/jdk1.1.8
java.library =3D=20 /usr/local/lib/php/20010901/libphp_java.so
java.library.path =3D=20 /usr/local/lib/php
---------------------------------------------------= ---------------------------------------
my javatest.php programm:
 
<?php
 
  $system =3D new=20 Java("java.lang.System");
  print "Java=20 version=3D".$system->getProperty("java.version")." = <br>\n";
 =20 print "Java vendor=3D".$system->getProperty("java.vendor")."=20 <p>\n\n";
  print = "OS=3D".$system->getProperty("os.name")."=20 ".
           &= nbsp; =20 $system->getProperty("os.version")." on=20 ".
           &= nbsp; =20 $system->getProperty("os.arch")." <br>\n";
 
  $formatter =3D new=20 Java("java.text.SimpleDateFormat","EEEE,
     = ;  =20 MMMM dd, yyyy 'at' h:mm:ss a zzzz");
  print = $formatter->format(new=20 Java("java.util.Date"))."\n";
 
?>
-------------------------------------------------------= -----------------------------------
 
I got the following error in the = browser=20 window:
 
Fatal error: Cannot = instantiate=20 non-existent class: java in = /usr/local/www/data.default/javatest.php on=20 line 3
 
Any idea ?
regards thomas
 
------=_NextPart_000_0020_01C1A1EC.8A8A7C90-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 10:58:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cody.jharris.com (cody.jharris.com [205.238.128.83]) by hub.freebsd.org (Postfix) with ESMTP id 6D7CF37B402 for ; Sun, 20 Jan 2002 10:58:20 -0800 (PST) Received: from localhost (nick@localhost) by cody.jharris.com (8.11.1/8.9.3) with ESMTP id g0KIxsM53889; Sun, 20 Jan 2002 12:59:54 -0600 (CST) (envelope-from nick@rogness.net) Date: Sun, 20 Jan 2002 12:59:54 -0600 (CST) From: Nick Rogness X-Sender: nick@cody.jharris.com To: Allen Landsidel Cc: freebsd-questions@FreeBSD.ORG Subject: Re: multihomed routing woes.. In-Reply-To: <5.1.0.14.0.20020120013959.00aaaff8@rfnj.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 20 Jan 2002, Allen Landsidel wrote: > [please reply off-list.. not subscribed.] > > Ok.. for several hours I've been banging my head against the > proverbial brick wall, trying to resolve an issue that's been a > nuisance for some time. > > To start from the begining.. my network looks like this : > > [LAN] <--> [firewall] <--> [router] <--> [internet] > > The lan side has a public /28 block. Why does the lan have a public block? > The firewall has one address from that block on the interior > interface, and an address in the 10/8 block on the exterior. The > router has an address on the 10/8 block on the interior, the ISP > assigned address on the WAN interface, and a static route to the > firewall 10/8 for my IP block. > > The problem is simple : All outgoing traffic that *originates* on the > firewall attempts to use the 10/8 address. I'm looking for some easy > way to force it to use it's internal address for traffic destined to > go out the exterior interface, but so far to no avail. > The real problem here is that you are running publics on your inside. Why are you doing this and not using static nat for this? If you have a good reason, then maybe running nat on the router or getting another /30 for your BSD<-->Router would help out. You could also trip out nat but it would be a mess. > My brain can't seem to think of a way to do this via route, and natd + > my current stateful IPFW appears to be a no-go.. searching the lists > and usenet have turned up others with the same problems, but no real > solutions using these tools. Apparently my only options are: > 1) ditch the stateful ipfw configuration in favor of a simple > 'established' rule (ick) That might help while you are debugging. > 2) (maybe?) switch to ipf/ipnat. This will gain you nothing...probably make things worse. > 3) Set up a proxy on one of the internal machines and have the firewall > go through that to get out (ick) No. > 4) Probably other silly hacks like 1,3 that are no more elegant. > Nick Rogness - Don't mind me...I'm just sniffing your packets To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 11: 3:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.hccnet.nl (smtp.hccnet.nl [62.251.0.13]) by hub.freebsd.org (Postfix) with ESMTP id 8F89137B42B for ; Sun, 20 Jan 2002 11:02:52 -0800 (PST) Received: from there by smtp.hccnet.nl via fia168-94.dsl.hccnet.nl [62.251.94.168] with SMTP for id UAA18588 (8.8.8/1.13); Sun, 20 Jan 2002 20:02:50 +0100 (MET) Message-Id: <200201201902.UAA18588@smtp.hccnet.nl> Content-Type: text/plain; charset="iso-8859-15" From: Simon Siemonsma To: freebsd-questions@freebsd.org Subject: Fwd: Re: Building postfix from ports Date: Sun, 20 Jan 2002 20:08:10 +0000 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sunday 20 January 2002 18:05, you wrote: > Simon Siemonsma writes: > | When I type make in /usr/ports/postfix I get asked if want to install > | stuff like: > | Perl Compatible Regular Expressions > | Curus SASL > | Berkeley DB3 > | MySQL map lookups > | OpenLDAP map lookups > | SMTP/LMTP test server and generator > | Secure Sockets Layer and Transport Layer Security > | IPv6 support > | > | What the hell is this? I just want to build postfix. > > That's a little like telling the car salesman that you just want a car, and > don't care whether it's an automatic or manual transmission. > > In order: > > * Perl Compatible Regular Expressions > > If you're a Perl user, this can be very useful, as you can use all > the Perl regex syntax you're familiar with. If you're not, you'll find > this confusing. So use this if you're a Perl user. > > * Cyrus SASL > > If you use Cyrus as your IMAP server, set this; if not, don't. > > * Berkeley DB3 > > If you've installed db3 on your system, you may want to use this. > db3 is a fast, if minimalist, database system that Postfix can use to speed > up lookups. If you don't use db3 on your system, or have a fairly small > mail installation, don't use this. > > * MySQL map lookups > > If you have MySQL on your system, you have the option of telling > Postfix that you want to use it for map lookups. If you don't, or > if you have a small mail installation, don't use it. > > * OpenLDAP map lookups > > If you're using OpenLDAP, you can use it for map lookups instead. > If you don't, or you have a small mail installation, don't use it. > > * SMTP/LMTP test server and generator > > Almost certainly unnecessary for your installation. > > * Secure Sockets Layer and Transport Layer Security > > If you want to use SSL or TLS for mail transfer, use this. If not, > don't. This can be used to transfer mail to my ISP? > * IPv6 support > > If you're using IPv6 addresses, you'll want to use this. If not, > don't. > > The postfix port tries to make this really, really easy for you, but > perhaps it would be better if it provided a little more explanation for the > options. In any case, it's not trying to be confusing. > > If you don't like this, then you definitely don't want to install > ghostscript. With ghostscript at least it did give some emplanation. I just switched everything of which indicated it was a printer name, and left everything on which inidcated it was related to a file format or a way to display things. > :) > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 11:45: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailout01.sul.t-online.com (mailout01.sul.t-online.com [194.25.134.80]) by hub.freebsd.org (Postfix) with ESMTP id 11DE137B402 for ; Sun, 20 Jan 2002 11:45:00 -0800 (PST) Received: from fwd03.sul.t-online.de by mailout01.sul.t-online.com with smtp id 16SNom-0002cC-01; Sun, 20 Jan 2002 20:39:52 +0100 Received: from peedub.jennejohn.org (520017439985-0001@[217.228.211.211]) by fmrl03.sul.t-online.com with esmtp id 16SNok-0WlqNMC; Sun, 20 Jan 2002 20:39:50 +0100 Received: from peedub.jennejohn.org (localhost [127.0.0.1]) by peedub.jennejohn.org (8.11.6/8.11.6) with ESMTP id g0KJe0X34121; Sun, 20 Jan 2002 20:40:01 +0100 (CET) (envelope-from garyj@peedub.jennejohn.org) Message-Id: <200201201940.g0KJe0X34121@peedub.jennejohn.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 X-Exmh-Isig-CompType: repl X-Exmh-Isig-Folder: questions To: leegold Cc: Ray Kohler , freebsd-questions@freebsd.org Subject: Re: emacs will not start Reply-To: Gary Jennejohn In-reply-to: Your message of "Sun, 20 Jan 2002 13:19:12 EST." <3C5AA2C6@operamail.com> Mime-Version: 1.0 Content-Type: text/plain Date: Sun, 20 Jan 2002 20:40:00 +0100 From: Gary Jennejohn X-Sender: 520017439985-0001@t-dialin.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG leegold writes: > I didn't install, nor do I want at this X-windows > on my pc. why is emacs asking for an x library? > > I'm new to emacs I assumed it was text based > like vi is(?) > Make it like this ``WITHOUT_X11=1 make install'' and it won't include the X11 stuff. Or try starting it with the -nw (no windowing) flag. I'm assuming emacs21 here. --- Gary Jennejohn / garyj@jennejohn.org gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 11:49:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.isg.siue.edu (mail.isg.siue.edu [146.163.5.4]) by hub.freebsd.org (Postfix) with ESMTP id 8388337B405 for ; Sun, 20 Jan 2002 11:49:17 -0800 (PST) Received: from WEBSHIELD2.isg.siue.edu (webshield2.isg.siue.edu [146.163.5.150]) by mail.isg.siue.edu (8.9.1/8.9.1) with SMTP id NAA14280 for ; Sun, 20 Jan 2002 13:49:11 -0600 (CST) Received: FROM mail.isg.siue.edu BY WEBSHIELD2.isg.siue.edu ; Sun Jan 20 13:49:11 2002 -0600 Received: from client156-52.ll.siue.edu (client156-52.ll.siue.edu [146.163.156.52]) by mail.isg.siue.edu (8.9.1/8.9.1) with ESMTP id NAA14250; Sun, 20 Jan 2002 13:49:05 -0600 (CST) Received: (from vcardon@localhost) by client156-52.ll.siue.edu (8.11.2/8.11.2/SuSE Linux 8.11.1-0.5) id g0KJg7J12381; Sun, 20 Jan 2002 13:42:07 -0600 Date: Sun, 20 Jan 2002 13:42:07 -0600 From: "Victor R. Cardona" To: Wayne Pascoe Cc: scanner@jurai.net, freebsd-questions@FreeBSD.ORG Subject: Re: what is a good language for system administration? Message-ID: <20020120134207.A12357@client156-52.ll.siue.edu> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="UugvWAfsgieZRqgk" Content-Disposition: inline User-Agent: Mutt/1.3.12i In-Reply-To: ; from usenet@penguinpowered.org.uk on Sun, Jan 20, 2002 at 11:45:00AM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --UugvWAfsgieZRqgk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 20, 2002 at 11:45:00AM +0000, Wayne Pascoe wrote: > Correct me if I'm wrong, but isn't Python completely object orientated > ? And doesn't it force you to write your code in an OO structure ? to > me that just seems like overkill for the average day to day sysadmin > task.=20 Python is object oriented, but it does not force you to program everything in an OO manner. It is like C++ in that respect. -v --=20 Victor R. Cardona Powered by SuSE Linux 7.1 (i386) Professional GPG key ID E81B3A1C Key fingerprint =3D 0147 A234 99C3 F4C5 BC64 F501 654F DB49 E81B 3A1C --UugvWAfsgieZRqgk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE8Sx2PZU/bSegbOhwRAncNAKCk21h2cC0jfHm38nGxX8fJ1btNZgCglVp5 LQ1LNOZ2ecwjzHpwWjf0jx8= =g7Yn -----END PGP SIGNATURE----- --UugvWAfsgieZRqgk-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 12:17:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp03.wxs.nl (smtp03.wxs.nl [195.121.6.37]) by hub.freebsd.org (Postfix) with ESMTP id 8991937B41B for ; Sun, 20 Jan 2002 12:17:23 -0800 (PST) Received: from cybertron.kruijff ([213.10.151.186]) by smtp03.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id GQ970U02.25B; Sun, 20 Jan 2002 21:17:18 +0100 Date: Sun, 20 Jan 2002 21:17:17 +0100 From: Alex X-Mailer: The Bat! (v1.53d) UNREG / CD5BF9353B3B7091 Reply-To: Alex X-Priority: 3 (Normal) Message-ID: <17323417983.20020120211717@cybertron.tmfweb.nl> To: "tm" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: php4 + java/ext on freebsd4.4 In-Reply-To: <002301c1a1e4$29296a40$0100a8c0@tm1> References: <002301c1a1e4$29296a40$0100a8c0@tm1> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello tm, Sunday, January 20, 2002, 7:56:25 PM, you wrote: t> Hi, t> i installed the following ports on freebsd4.4: t> mysql323-server, apache13-modssl, mod_php4 port, jdk(1.1.8) t> and want to have php java/ext support. I added the following lines in the configure.php t> script of the mod_php4 port. I don't know about php and java, but i do have an altenitive for you. JSP (Java Server Pages). You can find a tutorial about JSP, tomcat (webserver, can be combined with apache - i be happy to help you connect if you have trouble) ,mysql and more, here: http://www.kjkoster.org/java/content/packages.jsp Best regards, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 12:30: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web10106.mail.yahoo.com (web10106.mail.yahoo.com [216.136.130.56]) by hub.freebsd.org (Postfix) with SMTP id 3CB7837B400 for ; Sun, 20 Jan 2002 12:29:59 -0800 (PST) Message-ID: <20020120202959.21334.qmail@web10106.mail.yahoo.com> Received: from [24.177.27.182] by web10106.mail.yahoo.com via HTTP; Sun, 20 Jan 2002 12:29:59 PST Date: Sun, 20 Jan 2002 12:29:59 -0800 (PST) From: twig les Subject: How do i know if SMP is working? To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hey all, I just cut a kernel to include SMP and I would like to check the status of the CPUs (2 P3s). I know the new kernel booted fine because dmesg and motd (plus the clean boot...) but I'd like to get that warm fuzzy feeling from manually seeing that both CPUs are in action. Thanx ===== ------------------------------------------------------- It is easier to denature Plutonium than to denature the evil spirit of man ------------------------------------------------------- Albert Einstein __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 12:33: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tntpro.com (159-63.suscom-maine.net [207.5.159.63]) by hub.freebsd.org (Postfix) with ESMTP id 88FE537B400 for ; Sun, 20 Jan 2002 12:32:57 -0800 (PST) Received: from celery (celery.tntpro.com [192.168.0.13]) by tntpro.com (8.11.6/8.11.6) with SMTP id g0KKWj727269; Sun, 20 Jan 2002 15:32:45 -0500 (EST) (envelope-from tony@tntpro.com) From: "tony" To: "twig les" , Subject: RE: How do i know if SMP is working? Date: Sun, 20 Jan 2002 15:33:10 -0500 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) In-Reply-To: <20020120202959.21334.qmail@web10106.mail.yahoo.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Simply looking at top should show you :) -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of twig les Sent: Sunday, January 20, 2002 3:30 PM To: freebsd-questions@FreeBSD.ORG Subject: How do i know if SMP is working? Hey all, I just cut a kernel to include SMP and I would like to check the status of the CPUs (2 P3s). I know the new kernel booted fine because dmesg and motd (plus the clean boot...) but I'd like to get that warm fuzzy feeling from manually seeing that both CPUs are in action. Thanx ===== ------------------------------------------------------- It is easier to denature Plutonium than to denature the evil spirit of man ------------------------------------------------------- Albert Einstein __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 12:35:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tntpro.com (159-63.suscom-maine.net [207.5.159.63]) by hub.freebsd.org (Postfix) with ESMTP id 7623F37B41B for ; Sun, 20 Jan 2002 12:35:36 -0800 (PST) Received: from celery (celery.tntpro.com [192.168.0.13]) by tntpro.com (8.11.6/8.11.6) with SMTP id g0KKZN727288; Sun, 20 Jan 2002 15:35:23 -0500 (EST) (envelope-from tony@tntpro.com) From: "tony" To: "alexus" , Subject: RE: not enough space Date: Sun, 20 Jan 2002 15:35:49 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <000901c1a1e0$a3287b50$faa0b542@noc> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG is your home directory truly totally empty? -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of alexus Sent: Sunday, January 20, 2002 1:31 PM To: freebsd-questions@FreeBSD.ORG Subject: not enough space allworld# pwd / allworld# df -h Filesystem Size Used Avail Capacity Mounted on /dev/da0s1a 32G 29G 1.2G 96% / procfs 4.0K 4.0K 0B 100% /proc allworld# ls .cshrc COPYRIGHT boot compat dist home kernel.GENERIC modules root stand tmp var .profile bin cdrom dev etc kernel mnt proc sbin sys usr allworld# du -hs bin boot cdrom compat dev dist etc home mnt modules root sbin stand sys tmp usr var 3.8M bin 545K boot 1.0K cdrom 0B compat 61K dev 1.0K dist 833K etc 0B home 1.0K mnt 4.6M modules 16K root 11M sbin 1.9M stand 0B sys 1.0K tmp 1.4G usr 108M var allworld# how can it show that 29G is used if barly 2G is used in total, what am i missing? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 13: 8:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from clmboh1-smtp4.columbus.rr.com (clmboh1-smtp4.columbus.rr.com [65.24.0.114]) by hub.freebsd.org (Postfix) with ESMTP id 8A08737B405 for ; Sun, 20 Jan 2002 13:08:30 -0800 (PST) Received: from there (cvg-65-27-178-104.cinci.rr.com [65.27.178.104]) by clmboh1-smtp4.columbus.rr.com (8.11.2/8.11.2) with SMTP id g0KL8jf24837 for ; Sun, 20 Jan 2002 16:08:45 -0500 (EST) Message-Id: <200201202108.g0KL8jf24837@clmboh1-smtp4.columbus.rr.com> Content-Type: text/plain; charset="iso-8859-1" From: Mike To: "freebsd-questions@freebsd.org" Subject: Port Question - qtella-0.2.1 Date: Sun, 20 Jan 2002 16:10:52 -0500 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Has anybody managed to get this port to install. I've installed all of the dependencies manually and deleted and reinstalled the port several times. Here is the error I get when I try to install it. please bear with the broken lines /usr/X11R6/include/qt2/qtextstream.h:291: class QTextStream & operator <<(QTextStream &, QTextStream & (*)(QTextStream &)) /usr/X11R6/include/qt2/qtextstream.h:294: class QTextStream & operator <<(QTextStream &, QTSManip) gmake[1]: *** [QtellaSub.o] Error 1 gmake[1]: Leaving directory `/usr/ports/net/qtella/work/qtella-0.2.1/src' gmake: *** [all-recursive] Error 1 *** Error code 2 Stop in /usr/ports/net/qtella. *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 14: 2: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from db.nexgen.com (db.nexgen.com [66.92.98.149]) by hub.freebsd.org (Postfix) with SMTP id 77C2137B427 for ; Sun, 20 Jan 2002 14:01:05 -0800 (PST) Received: (qmail 61428 invoked from network); 20 Jan 2002 22:00:29 -0000 Received: from localhost.nexgen.com (HELO noc) (root@127.0.0.1) by localhost.nexgen.com with SMTP; 20 Jan 2002 22:00:29 -0000 Message-ID: <000d01c1a1fd$e1125f40$faa0b542@noc> From: "alexus" To: "tony" , References: Subject: Re: not enough space Date: Sun, 20 Jan 2002 17:00:31 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yeh ----- Original Message ----- From: "tony" To: "alexus" ; Sent: Sunday, January 20, 2002 3:35 PM Subject: RE: not enough space > is your home directory truly totally empty? > > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of alexus > Sent: Sunday, January 20, 2002 1:31 PM > To: freebsd-questions@FreeBSD.ORG > Subject: not enough space > > > allworld# pwd > / > allworld# df -h > Filesystem Size Used Avail Capacity Mounted on > /dev/da0s1a 32G 29G 1.2G 96% / > procfs 4.0K 4.0K 0B 100% /proc > allworld# ls > .cshrc COPYRIGHT boot compat dist > home kernel.GENERIC modules root stand > tmp var > .profile bin cdrom dev etc > kernel mnt proc sbin sys > usr > allworld# du -hs bin boot cdrom compat dev dist etc home mnt modules root > sbin stand sys tmp usr var > 3.8M bin > 545K boot > 1.0K cdrom > 0B compat > 61K dev > 1.0K dist > 833K etc > 0B home > 1.0K mnt > 4.6M modules > 16K root > 11M sbin > 1.9M stand > 0B sys > 1.0K tmp > 1.4G usr > 108M var > allworld# > > how can it show that 29G is used if barly 2G is used in total, what am i > missing? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 14: 8:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f116.law15.hotmail.com [64.4.23.116]) by hub.freebsd.org (Postfix) with ESMTP id 35AD437B405 for ; Sun, 20 Jan 2002 14:08:27 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 20 Jan 2002 14:08:26 -0800 Received: from 24.188.40.114 by lw15fd.law15.hotmail.msn.com with HTTP; Sun, 20 Jan 2002 22:08:26 GMT X-Originating-IP: [24.188.40.114] From: "Dulcis28 ---- DanNY" To: freebsd-questions@FreeBSD.ORG Subject: FreeBSD 2.05.3075 Date: Sun, 20 Jan 2002 17:08:26 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 20 Jan 2002 22:08:26.0867 (UTC) FILETIME=[FC3C7430:01C1A1FE] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Where can I get (download) FreeBSD version 2.05? Thanks. _________________________________________________________________ Chat with friends online, try MSN Messenger: http://messenger.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 14:39: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from nala.dohd.org (a29150.upc-a.chello.nl [62.163.29.150]) by hub.freebsd.org (Postfix) with ESMTP id 0B37D37B400 for ; Sun, 20 Jan 2002 14:38:58 -0800 (PST) Received: by nala.dohd.org (Postfix, from userid 1008) id 99EDCDB02; Sun, 20 Jan 2002 23:38:51 +0100 (MET) Date: Sun, 20 Jan 2002 23:38:51 +0100 From: Mark Huizer To: freebsd-questions@freebsd.org Subject: Re: not enough space Message-ID: <20020120223851.GA57621@eeyore.local.dohd.org> References: <000d01c1a1fd$e1125f40$faa0b542@noc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000d01c1a1fd$e1125f40$faa0b542@noc> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 05:00:31PM -0500, alexus wrote: > >> > allworld# pwd >> > / >> > allworld# df -h >> > Filesystem Size Used Avail Capacity Mounted on >> > /dev/da0s1a 32G 29G 1.2G 96% / >> > procfs 4.0K 4.0K 0B 100% /proc >> > usr >> > allworld# du -hs bin boot cdrom compat dev dist etc home mnt modules root >> > sbin stand sys tmp usr var [..snip..] >> > >> > how can it show that 29G is used if barly 2G is used in total, what am i >> > missing? >> > is your home directory truly totally empty? > yeh Hmm... ok, after some rewriting this is getting somewhere near readable. OK, now for some answering. Do you have file descriptors open to files you have deleted? Check with ps if you have vi's, tail's, less's open for old files, or files rotated long ago. Check with fstat if that happens. Files that are open when unlinked are not removed from the filesystem until the last handle is closed, even though they don't show up in df and du. Check for daemons that use huge tempfiles (unnamed files) If all else fails, try a reboot, that will make sure all files are closed. See if you still miss 20Gb Mark -- Nice testing in little China... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 14:40:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailbox1.cc.stevens-tech.edu (mailbox1.cc.stevens-tech.edu [155.246.1.26]) by hub.freebsd.org (Postfix) with ESMTP id 7F82337B400 for ; Sun, 20 Jan 2002 14:40:29 -0800 (PST) Received: by mailbox1.cc.stevens-tech.edu (Postfix, from userid 99) id 26A0646091; Sun, 20 Jan 2002 17:40:24 -0500 (EST) To: freebsd-questions@FreeBSD.ORG Subject: Future releases of FreeBSD and X Window system Message-ID: <1011566424.3c4b475821857@mailbox1.cc.stevens-tech.edu> Date: Sun, 20 Jan 2002 17:40:24 -0500 (EST) From: rarmente@stevens-tech.edu MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP IMAP webmail program 2.2.8-cvs Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In 10 years from today, do you see FreeBSD using the old X Window Systen or will a new way of handling the GUI appear. This question arised after realizing how heavy and redundant the X Window system is. Thanks for your attention Roberto To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 15: 7:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from nebula.anchoragerescue.org (cable-115-7-237-24.anchorageak.net [24.237.7.115]) by hub.freebsd.org (Postfix) with ESMTP id 6E88737B400 for ; Sun, 20 Jan 2002 15:07:18 -0800 (PST) Received: from there (galaxy.anchoragerescue.org [24.237.7.95]) by nebula.anchoragerescue.org (Postfix) with SMTP id EA609114; Sun, 20 Jan 2002 14:07:16 -0900 (AKST) Content-Type: text/plain; charset="iso-8859-1" From: Beech Rintoul To: rarmente@stevens-tech.edu, freebsd-questions@FreeBSD.ORG Subject: Re: Future releases of FreeBSD and X Window system Date: Sun, 20 Jan 2002 14:07:16 -0900 X-Mailer: KMail [version 1.3] References: <1011566424.3c4b475821857@mailbox1.cc.stevens-tech.edu> In-Reply-To: <1011566424.3c4b475821857@mailbox1.cc.stevens-tech.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020120230716.EA609114@nebula.anchoragerescue.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sunday 20 January 2002 01:40 pm, rarmente@stevens-tech.edu wrote: > In 10 years from today, do you see FreeBSD using the old X Window Systen or > will a new way of handling the GUI appear. > This question arised after realizing how heavy and redundant the X Window > system is. > Thanks for your attention > Roberto > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message I don't know about 10 years from now (next century). But I do see a lot of room for improvement in how XF86 is configured. This seems to be a major stumbling block for newbies. Just my .02 Beech -- ------------------------------------------------------------------- Beech Rintoul - IT Manager - Instructor - akbeech@anchoragerescue.org /"\ ASCII Ribbon Campaign | Anchorage Gospel Rescue Mission \ / - NO HTML/RTF in e-mail | P.O. Box 230510 X - NO Word docs in e-mail | Anchorage, AK 99523-0510 / \ ----------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 15:15:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.itworks.com.au (mail.itworks.com.au [203.32.61.7]) by hub.freebsd.org (Postfix) with SMTP id 94FE537B47E for ; Sun, 20 Jan 2002 15:15:36 -0800 (PST) Received: (qmail 22498 invoked from network); 20 Jan 2002 23:15:33 -0000 Received: from mail.itworks.com.au (HELO mercury.itworks.com.au) (203.32.61.7) by mail.itworks.com.au with SMTP; 20 Jan 2002 23:15:33 -0000 Received: (qmail 22493 invoked by uid 100); 20 Jan 2002 23:15:33 -0000 Date: Mon, 21 Jan 2002 10:15:33 +1100 From: Gavin Cameron To: Dulcis28 ---- DanNY Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD 2.05.3075 Message-ID: <20020120231533.GA22239@mercury.itworks.com.au> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.23.2i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Have a look here http://www.freebsdmirrors.org/FBSDsites.php3?release=2.0.5-RELEASE Gavin On Sun, Jan 20, 2002 at 05:08:26PM -0500, Dulcis28 ---- DanNY wrote: > Where can I get (download) FreeBSD version 2.05? > > Thanks. > > > > _________________________________________________________________ > Chat with friends online, try MSN Messenger: http://messenger.msn.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 15:21:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 9B8D637B41A for ; Sun, 20 Jan 2002 15:21:28 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16SRHD-0007ln-00 for freebsd-questions@freebsd.org; Sun, 20 Jan 2002 23:21:27 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 0C2131185; Mon, 21 Jan 2002 00:21:25 +0100 (CET) Date: Mon, 21 Jan 2002 00:21:25 +0100 From: Cliff Sarginson To: freebsd-questions@FreeBSD.ORG Subject: Re: Future releases of FreeBSD and X Window system Message-ID: <20020120232125.GA1302@raggedclown.net> References: <1011566424.3c4b475821857@mailbox1.cc.stevens-tech.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1011566424.3c4b475821857@mailbox1.cc.stevens-tech.edu> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 05:40:24PM -0500, rarmente@stevens-tech.edu wrote: > In 10 years from today, do you see FreeBSD using the old X Window Systen or > will a new way of handling the GUI appear. > This question arised after realizing how heavy and redundant the X Window ^^^^^^^^^^^^^^^^^^^ > system is. Meaning ? How would you like to see the GUI "handled" ? Having spent the whole evening fighting X again (I will get direct rendering to work on my card if it kills me, I know it can do it...) it certainly could do with some work on it's configurational interface. But I don't know if that is what you are talking about. And yes I do see the X Window System surviving several incarnations to come. But in 10 years we will all be using Plan9 anyway... -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 15:48:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns.museum.rain.com (gw-ipinc.museum.rain.com [206.29.169.27]) by hub.freebsd.org (Postfix) with ESMTP id 0F0F837B41A for ; Sun, 20 Jan 2002 15:48:41 -0800 (PST) Received: (from list@localhost) by ns.museum.rain.com (8.11.6/8.11.6) id g0KNmQ031417; Sun, 20 Jan 2002 15:48:26 -0800 (PST) (envelope-from list) Date: Sun, 20 Jan 2002 15:48:26 -0800 From: James Long To: Scott Mitchell Cc: "Roger 'Rocky' Vetterberg" , Joe & Fhe Barbish , FBSD Questions Subject: Re: you have mail msg at root login Message-ID: <20020120154826.A31358@ns.museum.rain.com> References: <3C4AD1AB.3030204@rambo.simx.org> <20020120143738.A306@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020120143738.A306@localhost>; from scott.mitchell@mail.com on Sun, Jan 20, 2002 at 02:37:38PM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Also, edit /etc/aliases to divert root's email to your normal user > account. Are there technical reasons to do it this way rather than say, using the ~root/.forward file? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 16: 0:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from dc-mx01.cluster1.charter.net (dc-mx01.cluster0.hsacorp.net [209.225.8.11]) by hub.freebsd.org (Postfix) with ESMTP id 7387537B405 for ; Sun, 20 Jan 2002 16:00:09 -0800 (PST) Received: from [66.169.160.12] (HELO there) by dc-mx01.cluster1.charter.net (CommuniGate Pro SMTP 3.4.6) with SMTP id 1026854 for questions@freebsd.org; Sun, 20 Jan 2002 19:08:03 -0500 Content-Type: text/plain; charset="iso-8859-15" From: Bob Bomar To: questions@freebsd.org Subject: Sendmail error: 450 Date: Sun, 20 Jan 2002 17:59:45 -0600 X-Mailer: KMail [version 1.3.1] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have sendmail running and listening. But when I tried to send any mail to questions@freebsd.org, I get an error message in my /var/log/maillog saying that message could not be delivered here is part of the message: ... stat=Deferred: 450 Client host rejected: cannot find your hostname, [IP address] I have a cable modem with a dynamic IP, so I am useing www.dyndns.org to supply dynamic DNS. Apache doesnt have a problem with it, and all the other address that I have sent mail to havent had a problem. I dont have my hostname in my sendmail.cf file. Any help is appreciated. I am sending this e-mail off another e-maill address. I recive mail just fine. Thanks Bob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 16: 4:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by hub.freebsd.org (Postfix) with ESMTP id 2387437B405 for ; Sun, 20 Jan 2002 16:04:33 -0800 (PST) Received: from lungfish.ntlworld.com ([62.253.152.35]) by mta03-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020121000431.PHNI8780.mta03-svc.ntlworld.com@lungfish.ntlworld.com>; Mon, 21 Jan 2002 00:04:31 +0000 Received: from tuatara.goatsucker.org (tuatara.goatsucker.org [192.168.1.6]) by lungfish.ntlworld.com (8.11.3/8.11.3) with ESMTP id g0L04Tn15352; Mon, 21 Jan 2002 00:04:30 GMT (envelope-from scott@tuatara.goatsucker.org) Received: (from scott@localhost) by tuatara.goatsucker.org (8.11.6/8.11.6) id g0L042f00574; Mon, 21 Jan 2002 00:04:02 GMT (envelope-from scott) Date: Mon, 21 Jan 2002 00:04:02 +0000 From: Scott Mitchell To: James Long Cc: "Roger 'Rocky' Vetterberg" , Joe & Fhe Barbish , FBSD Questions Subject: Re: you have mail msg at root login Message-ID: <20020121000402.B294@localhost> References: <3C4AD1AB.3030204@rambo.simx.org> <20020120143738.A306@localhost> <20020120154826.A31358@ns.museum.rain.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020120154826.A31358@ns.museum.rain.com>; from list@ns.museum.rain.com on Sun, Jan 20, 2002 at 03:48:26PM -0800 X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 03:48:26PM -0800, James Long wrote: > > Also, edit /etc/aliases to divert root's email to your normal user > > account. > > Are there technical reasons to do it this way rather than say, > using the ~root/.forward file? None that I can think of... I prefer the aliases file method, because it keeps that bit of configuration in /etc with everything else, rather than in a separate file in another directory. No reason not to do it the other way if you prefer that, though. Scott -- =========================================================================== Scott Mitchell | PGP Key ID | "Eagles may soar, but weasels Cambridge, England | 0x54B171B9 | don't get sucked into jet engines" scott.mitchell@mail.com | 0xAA775B8B | -- Anon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 16:22: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id 2294337B47C; Sun, 20 Jan 2002 16:21:51 -0800 (PST) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 55F2A16B16; Mon, 21 Jan 2002 01:21:49 +0100 (CET) Received: from LenConrad.Go2France.com [193.117.38.15] by mail.Go2France.com with ESMTP (SMTPD32-6.06) id A33349803D8; Mon, 21 Jan 2002 01:39:15 +0100 Message-Id: <5.1.0.14.2.20020121002104.02b61ec0@mail.Go2France.com> X-Sender: LConrad@Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Mon, 21 Jan 2002 00:21:45 +0000 To: freebsd-questions@freebsd.org, freebsd-hardware@FreeBSD.ORG From: Len Conrad Subject: 64-bit PCI mobos Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG What are the recommendations for FreeBSD? Looking to use 64-bit SCSI and 64-bit ATA RAID controllers. thanks Len http://MenAndMice.com/DNS-training http://BIND8NT.MEIway.com : ISC BIND 8.2.4 for NT4 & W2K http://IMGate.MEIway.com : Build free, hi-perf, anti-abuse mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 16:27: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id 7211E37B416 for ; Sun, 20 Jan 2002 16:27:02 -0800 (PST) Received: from dhcppc2.attbi.comDEST ([12.254.23.4]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20020121002702.TIGA26243.rwcrmhc51.attbi.com@dhcppc2.attbi.comDEST> for ; Mon, 21 Jan 2002 00:27:02 +0000 Date: Sun, 20 Jan 2002 17:26:00 -0700 From: Collins Richey To: bsd Subject: lpstat connection refused Message-Id: <20020120172600.20898d27.erichey2@attbi.com> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I managed to setup my printer (laserjet) using the samples in the handbook, and it is working for both plain text and .ps files. Whenever I execute 'lpstat' or 'lpstat -p', I get lpstat: Unable to connect to server: Connection refused How can I fix this? -- Collins Richey - Denver Area WWTLRD? - FreeBSD 4.4 + xfce + sylpheed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 16:37:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id E217037B417; Sun, 20 Jan 2002 16:37:21 -0800 (PST) Received: (from ken@localhost) by panzer.kdm.org (8.11.6/8.9.1) id g0L0ZcR54060; Sun, 20 Jan 2002 17:35:38 -0700 (MST) (envelope-from ken) Date: Sun, 20 Jan 2002 17:35:38 -0700 From: "Kenneth D. Merry" To: Len Conrad Cc: freebsd-questions@FreeBSD.ORG, freebsd-hardware@FreeBSD.ORG Subject: Re: 64-bit PCI mobos Message-ID: <20020120173538.A54035@panzer.kdm.org> References: <5.1.0.14.2.20020121002104.02b61ec0@mail.Go2France.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <5.1.0.14.2.20020121002104.02b61ec0@mail.Go2France.com>; from LConrad@Go2France.com on Mon, Jan 21, 2002 at 12:21:45AM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 00:21:45 +0000, Len Conrad wrote: > What are the recommendations for FreeBSD? > > Looking to use 64-bit SCSI and 64-bit ATA RAID controllers. I've had good luck with the Supermicro 370DE6 and P3TDE6 boards. They have 4 64/33 PCI slots and 2 64/66 slots, as well as an onboard Adaptec 7899. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 17: 4:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fedex.is.co.za (fedex.is.co.za [196.4.160.243]) by hub.freebsd.org (Postfix) with ESMTP id EF3D037B419 for ; Sun, 20 Jan 2002 17:04:09 -0800 (PST) Received: from aragon (sava.da.flava.nis.za [196.39.126.102]) by fedex.is.co.za (8.9.3/8.9.3) with SMTP id DAA06527 for ; Mon, 21 Jan 2002 03:04:05 +0200 (SAST) Message-ID: <001e01c1a217$dc367af0$01000001@aragon> From: "Aragon Gouveia" To: Subject: sysinstall - adding partitions Date: Mon, 21 Jan 2002 03:06:27 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi there, I've noticed something that's bugging me when adding/removing partitions to/from a slice with sysinstall. Everytime you perform this operation, any swap space that's configured on the device you edit gets readded. Doing a swapinfo lists the swap device twice. Could there be any repercussions from this? And if so, is there any way around it (apart from rebooting)? Thanks, Aragon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 17: 5:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from swan.prod.itd.earthlink.net (swan.mail.pas.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id DCCF637B402 for ; Sun, 20 Jan 2002 17:05:49 -0800 (PST) Received: from dialup-209.247.139.76.dial1.sanjose1.level3.net ([209.247.139.76] helo=blossom.cjclark.org) by swan.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16SSu7-0000er-00; Sun, 20 Jan 2002 17:05:45 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g0L152n68088; Sun, 20 Jan 2002 17:05:02 -0800 (PST) (envelope-from cjc) Date: Sun, 20 Jan 2002 17:04:56 -0800 From: "Crist J . Clark" To: Ray Kohler Cc: Dan Trainor , freebsd-questions@FreeBSD.ORG Subject: Re: question about rc.conf Message-ID: <20020120170456.C66815@blossom.cjclark.org> References: <009c01c1a16d$1c1a7e10$0100a8c0@broken> <090b83912051412FE7@mail7.mgfairfax.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <090b83912051412FE7@mail7.mgfairfax.rr.com>; from rkohler1@cox.rr.com on Sun, Jan 20, 2002 at 12:15:48AM -0500 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 12:15:48AM -0500, Ray Kohler wrote: > On Saturday 19 January 2002 11:44 pm, Dan Trainor wrote: [snip] > > or do I just > > add those little startup scripts directly to /etc/rc.conf? > > Never heard of doing that. Sounds like a big pain to keep up with. Do _NOT_ put commands in /etc/rc.conf. Three good reasons: (1) There is no guarantee when in the rc(8) startup /etc/rc.conf is first called. (2) There is no guarantee that /etc/rc.conf will only be run once during startup. (3) There is no guarantee that /etc/rc.conf will not run by the system at times other than startup. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 17:16:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from albatross.prod.itd.earthlink.net (albatross.mail.pas.earthlink.net [207.217.120.120]) by hub.freebsd.org (Postfix) with ESMTP id 698DD37B425 for ; Sun, 20 Jan 2002 17:16:29 -0800 (PST) Received: from dialup-209.247.139.76.dial1.sanjose1.level3.net ([209.247.139.76] helo=blossom.cjclark.org) by albatross.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16ST4J-0007Dl-00; Sun, 20 Jan 2002 17:16:20 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g0L1G2B68229; Sun, 20 Jan 2002 17:16:02 -0800 (PST) (envelope-from cjc) Date: Sun, 20 Jan 2002 17:16:02 -0800 From: "Crist J . Clark" To: Collins Richey Cc: bsd Subject: Re: lpstat connection refused Message-ID: <20020120171602.D66815@blossom.cjclark.org> References: <20020120172600.20898d27.erichey2@attbi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020120172600.20898d27.erichey2@attbi.com>; from erichey2@attbi.com on Sun, Jan 20, 2002 at 05:26:00PM -0700 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 05:26:00PM -0700, Collins Richey wrote: > I managed to setup my printer (laserjet) using the samples in the > handbook, and it is working for both plain text and .ps files. > > Whenever I execute 'lpstat' or 'lpstat -p', I get > > lpstat: Unable to connect to server: Connection refused > > How can I fix this? Not sure. What packages/ports are you using to print? lpstat is not part of FreeBSD. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 17:21:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from bdg.centrin.net.id (DialupBdg246-248.centrin.net.id [202.146.246.248]) by hub.freebsd.org (Postfix) with ESMTP id 23C4237B417 for ; Sun, 20 Jan 2002 17:21:07 -0800 (PST) Received: from budsz by bdg.centrin.net.id with local (Exim 3.12 #1 (Debian)) id 16STSG-00056I-00; Mon, 21 Jan 2002 08:41:00 +0700 Date: Mon, 21 Jan 2002 08:41:00 +0700 From: budsz To: Mark Huizer Cc: freebsd-questions Subject: Re: not enough space Message-ID: <20020121014100.GA19524@bdg.centrin.net.id> Reply-To: budsz Mail-Followup-To: budsz , Mark Huizer , freebsd-questions References: <000d01c1a1fd$e1125f40$faa0b542@noc> <20020120223851.GA57621@eeyore.local.dohd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8t9RHnE3ZwKMSgU+" Content-Disposition: inline In-Reply-To: <20020120223851.GA57621@eeyore.local.dohd.org> User-Agent: Mutt/1.3.26i X-Operation-System: Linux debian 2.2.17-budsz.cayang.caroline i586 X-Geekcode: "GMU d- s++:+ a- C++ UL++ P+ L++ E- W++ N o+ K- w+ O+ M V++ PS PE Y+ PGP++ t 5 X+++ R+ tv b++ DI- D+ G++ e++ h+ r+ y+" X-Pubkey-Linux: "http://bdg.centrin.net.id/~budsan02/pubkey_Linux.txt" X-Pubkey-FreeBSD: "http://bdg.centrin.net.id/~budsan02/pubkey_FreeBSD.txt" X-Company: "PD Sari Rasa" X-Service: "Provides Various Kind of Snacks, Cookies and Crispies" X-Location: "Jl 11 April No 87 Sumedang - West Java - Indonesia" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --8t9RHnE3ZwKMSgU+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 20, 2002 at 11:38:51PM +0100, Mark Huizer wrote: >Hmm... ok, after some rewriting this is getting somewhere near readable. >OK, now for some answering. >Do you have file descriptors open to files you have deleted? Check with >ps if you have vi's, tail's, less's open for old files, or files rotated >long ago. >Check with fstat if that happens. >Files that are open when unlinked are not removed from the filesystem >until the last handle is closed, even though they don't show up in df >and du. > >Check for daemons that use huge tempfiles (unnamed files) > >If all else fails, try a reboot, that will make sure all files are >closed. See if you still miss 20Gb Sorry OOT, I've trouble in the same case, if I want to increase capacity of partitions let's say I've for ex: / -> 100M /usr -> 1.8G /var -> 600M /home -> 500M And I would like to changed without reinstall system: / -> 100M /usr -> 2.3G /var -> 300M /home -> 300M I use FreeBSD 4.4 STABLE, I got this problem when I've plan to install altq. it's possible for me to change partition of table?, in window I can using partition magic for example. TIA before --=20 budsz --8t9RHnE3ZwKMSgU+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v0.9.8a (GNU/Linux) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjxLcawACgkQuaC+RZYp1fha9wCfcP3ubUqPgNh5di3QUkBweShE vxUAnA4/ZfY1sMfCFudfF+fm5kvkUOGZ =mh8s -----END PGP SIGNATURE----- --8t9RHnE3ZwKMSgU+-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 17:45: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from b1n.org (200-171-41-43.dsl.telesp.net.br [200.171.41.43]) by hub.freebsd.org (Postfix) with ESMTP id 3EEBA37B400 for ; Sun, 20 Jan 2002 17:45:00 -0800 (PST) Received: by b1n.org (Postfix, from userid 1000) id 7836D8112; Sun, 20 Jan 2002 23:46:30 -0200 (BRST) Date: Sun, 20 Jan 2002 23:46:30 -0200 From: BinarySoul To: leegold Cc: freebsd-questions@freebsd.org Subject: Re: screensaver question Message-ID: <20020120234630.A16577@b1n.org> References: <3C5227AA@operamail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C5227AA@operamail.com>; from leegold@operamail.com on Sat, Jan 19, 2002 at 11:26:26PM -0500 X-Operating-System: OpenBSD 3.0 (i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If you are talking about the matrix_save.ko (which is a module to be loaded as a console screen saver), you need to have a modular kernel and use the kldload command. you can set the time (to the screen saver to being active) with vidcontrol -t time_in_seconds man kldload man vidcontrol leegold (leegold@operamail.com) wrote: > from the pakages i installed a screensaver > called matrix. I don't have a man pg for it but it is > installed. How do I activate it? > > thanks > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 17:57:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hawk.prod.itd.earthlink.net (hawk.mail.pas.earthlink.net [207.217.120.22]) by hub.freebsd.org (Postfix) with ESMTP id 84F8D37B402 for ; Sun, 20 Jan 2002 17:57:12 -0800 (PST) Received: from user-38lc2t6.dialup.mindspring.com ([209.86.11.166] helo=there) by hawk.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16SThv-0007Tq-00 for freebsd-questions@FreeBSD.ORG; Sun, 20 Jan 2002 17:57:11 -0800 Content-Type: text/plain; charset="iso-8859-1" From: "Michael C. Beeler" Reply-To: info@netarmor.net Organization: NetArmor, Inc. To: freebsd-questions@FreeBSD.ORG Subject: sendmail panic Date: Sun, 20 Jan 2002 18:00:08 -0800 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Freebsd 4.4 This is the output to stdout from sendmail every 15 minutes. Jan 20 17:48:48 hostname sendmail[405]: g0L1mlI00405: Losing ./qfg0L1mlI00405: savemail panic Jan 20 17:48:48 ajax sendmail[405]: g0L1mlI00405: Losing ./qfg0L1mlI00405: savemail panic Jan 20 17:48:48 ajax sendmail[405]: g0L1mlI00405: SYSERR(root): savemail: cannot save rejected email anywhere Jan 20 17:48:48 ajax sendmail[405]: g0L1mlI00405: SYSERR(root): savemail: cannot save rejected email anywhere Jan 20 17:48:48 ajax sendmail[405]: g0L1mlI00405: SYSERR(root): savemail: cannot save rejected email anywhere I've deleted all of the files in /var/spool/mqueue but the queue keeps building up again. Does any one know what the problem is. This seems to have begun after /var file system filled up. Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 18: 1:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp05.wxs.nl (smtp05.wxs.nl [195.121.6.57]) by hub.freebsd.org (Postfix) with ESMTP id E08E337B417 for ; Sun, 20 Jan 2002 18:01:08 -0800 (PST) Received: from cybertron.kruijff ([213.10.151.186]) by smtp05.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id GQ9MXU01.2VX; Mon, 21 Jan 2002 03:01:06 +0100 Date: Mon, 21 Jan 2002 03:01:06 +0100 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: Alex X-Priority: 3 (Normal) Message-ID: <14944049339.20020121030106@cybertron.tmfweb.nl> To: "alexus" Cc: freebsd-questions@freebsd.org Subject: Re: not enough space In-Reply-To: <000901c1a1e0$a3287b50$faa0b542@noc> References: <000901c1a1e0$a3287b50$faa0b542@noc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello alexus, Sunday, January 20, 2002, 7:31:12 PM, you wrote: a> Filesystem Size Used Avail Capacity Mounted on a> /dev/da0s1a 32G 29G 1.2G 96% / a> procfs 4.0K 4.0K 0B 100% /proc a> 3.8M bin a> 545K boot a> 1.0K cdrom a> 0B compat a> 61K dev a> 1.0K dist a> 833K etc a> 0B home a> 1.0K mnt a> 4.6M modules a> 16K root a> 11M sbin a> 1.9M stand a> 0B sys a> 1.0K tmp a> 1.4G usr a> 108M var a> allworld# a> how can it show that 29G is used if barly 2G is used in total, what am i a> missing? Can be some error on the file system. Check out man fsck. This could be a good reason to create partions. -- Best regards, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 18: 8:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 7B0E037B400 for ; Sun, 20 Jan 2002 18:08:50 -0800 (PST) Received: from mike ([12.230.142.148]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20020121020850.OOYD10199.rwcrmhc53.attbi.com@mike> for ; Mon, 21 Jan 2002 02:08:50 +0000 Message-ID: <000701c1a220$a8cf5de0$948ee60c@mike.attbi.com> From: "carl florez" To: Subject: dual boot question Date: Sun, 20 Jan 2002 18:09:28 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0004_01C1A1DD.9A044520" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0004_01C1A1DD.9A044520 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I installed freebsd on the second hard drive (slave) ...i run win 98 on = the first....how can i set up a dual boot..right now i boot to the win = 98 drive and can't get to my second (freebsd) drive....or is there some = piece of software i can get that will let me reboot to the free bsd = drive after I have booted in win 98 ...help...please = cflorez3@attbi.com ------=_NextPart_000_0004_01C1A1DD.9A044520 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I installed freebsd on the second hard drive (slave) = ...i run=20 win 98 on the first....how can i set up a dual boot..right now i boot to = the win=20 98 drive and can't get to my second (freebsd) drive....or is there some = piece of=20 software i can get that will let me reboot to the free bsd drive after I = have=20 booted in win 98  ...help...please  cflorez3@attbi.com
------=_NextPart_000_0004_01C1A1DD.9A044520-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 18:16:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rfnj.org (rfnj.org [216.239.237.194]) by hub.freebsd.org (Postfix) with ESMTP id A50C637B41A for ; Sun, 20 Jan 2002 18:16:15 -0800 (PST) Received: from megalomaniac.biosys.net (megalomaniac.rfnj.org [216.239.237.200]) by rfnj.org (Postfix) with ESMTP id 3FD9B137C1; Sun, 20 Jan 2002 21:16:19 -0500 (EST) Message-Id: <5.1.0.14.0.20020120205959.00a99618@rfnj.org> X-Sender: asym@rfnj.org X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sun, 20 Jan 2002 21:15:30 -0500 To: Nick Rogness From: Allen Landsidel Subject: Re: multihomed routing woes.. Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: References: <5.1.0.14.0.20020120013959.00aaaff8@rfnj.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 12:59 01/20/2002 -0600, Nick Rogness wrote: >On Sun, 20 Jan 2002, Allen Landsidel wrote: > > > [please reply off-list.. not subscribed.] > > > > Ok.. for several hours I've been banging my head against the > > proverbial brick wall, trying to resolve an issue that's been a > > nuisance for some time. > > > > To start from the begining.. my network looks like this : > > > > [LAN] <--> [firewall] <--> [router] <--> [internet] > > > > The lan side has a public /28 block. > > Why does the lan have a public block? I have a static IP block from my ISP.. I would also like to have a firewall other than the piece of junk in lucent dslpipe "router." Thus, all the actual boxes get real IPs (for the most part) and I need a solution that allows me to put the firewall between the router and the lan. > > The firewall has one address from that block on the interior > > interface, and an address in the 10/8 block on the exterior. The > > router has an address on the 10/8 block on the interior, the ISP > > assigned address on the WAN interface, and a static route to the > > firewall 10/8 for my IP block. > > > > The problem is simple : All outgoing traffic that *originates* on the > > firewall attempts to use the 10/8 address. I'm looking for some easy > > way to force it to use it's internal address for traffic destined to > > go out the exterior interface, but so far to no avail. > > > > The real problem here is that you are running publics on your > inside. Why are you doing this and not using static nat for this? Why should I use nat if I'm paying for an IP block? The lan is not an intranet, it's a bunch of "real" servers out on the internet. > If you have a good reason, then maybe running nat on the router or > getting another /30 for your BSD<-->Router would help out. You > could also trip out nat but it would be a mess. The reason is simply that I'd rather not go through the hassle of assigning a bunch of private IPs to my boxes just because they're inside the firewall. What would really be great is an unnumbered interface between the firewall and the router, but I don't think either FreeBSD or the cheapy lucent dsl router support this option. Getting the /30 would do, but it seems to me there should be a way to handle this "as-is" that isn't a massive hack. > > My brain can't seem to think of a way to do this via route, and natd + > > my current stateful IPFW appears to be a no-go.. searching the lists > > and usenet have turned up others with the same problems, but no real > > solutions using these tools. Apparently my only options are: > > > 1) ditch the stateful ipfw configuration in favor of a simple > > 'established' rule (ick) > > That might help while you are debugging. If I do this, it will work.. period. I had it this way in the past, but thought that I'd rather switch to stateful routing so forged packets couldn't blow past the firewall and to the machines within. > > 2) (maybe?) switch to ipf/ipnat. > > This will gain you nothing...probably make things worse. I've heard that ipf/ipnat can do exactly what I need.. perhaps I am mistaken. > > 3) Set up a proxy on one of the internal machines and have the firewall > > go through that to get out (ick) > > No. Heh.. but it would work.. I think I didn't explain the problem too clearly.. I'll try and explain more clearly here. The "lan" consists of every machine I have other than the firewall. Web, dns, ftp, cvsup, etc etc servers, all of them in a rack and on a switch. The internal interface for the firewall is also on this segment, and has the first IP address in the /28 block. The external interface of the firewall is the only device plugged into the integrated (and slow) hub built into the router. This serves many purposes but the most important two are : 1) Every packet must pass through the firewall before any others see it, via sniffing or any other method. 2) Any machine surreptitiously plugged into the routers hub will not be able to access the internet; I consider this important. Everything works great *except* for internet access on the firewall itself. Because the default route on the firewall is 10.0.0.1, it always attempts to use it's interface on that subnet for internet access. The result, obviously, is that I cannot install ports, packages, or anything else directly from the firewall; I have to download the packages/tarballs on another machine and transfer them to the firewall, and then do the install. I'm only concerned with nating one address, the external firewall interface. natd, however, has about zero capability for this when used on a stateful firewall. I'm coming up with other ideas.. but this seems like it should be easy to do, even if it's not. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 18:31:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cchs.usyd.edu.au (casino2.cchs.usyd.edu.au [129.78.28.161]) by hub.freebsd.org (Postfix) with ESMTP id 77F5037B400 for ; Sun, 20 Jan 2002 18:31:20 -0800 (PST) Received: from [129.78.28.165] (HELO MARGAY) by cchs.usyd.edu.au (CommuniGate Pro SMTP 3.3.2) with ESMTP id 1997282 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 13:29:02 +1100 Date: Mon, 21 Jan 2002 13:43:20 +1100 From: Janusz Tydda X-Mailer: The Bat! (v1.51) UNREG / CD5BF9353B3B7091 Reply-To: Janusz Tydda Organization: University of Sydney, Faculty of Health Sciences X-Priority: 3 (Normal) Message-ID: <18522211127.20020121134320@fhs.usyd.edu.au> To: freebsd-questions@FreeBSD.ORG Subject: Sybase MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear freebsd-questions, Is it possible to run Linux version of Sybase on FreeBsd? Best regards, Janusz Tydda Acting IT Services Manager ________________________________________________________________________________ mailto:J.Tydda@fhs.usyd.edu.au University of Sydney, Cumberland Campus Faculty of Health Sciences Tel: 02 93519402 Fax: 02 93519605 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 18:31:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.austclear.com.au (ns1.austclear.com.au [192.43.185.68]) by hub.freebsd.org (Postfix) with ESMTP id 5333E37B400 for ; Sun, 20 Jan 2002 18:31:36 -0800 (PST) Received: from tungsten.austclear.com.au (tungsten.austclear.com.au [192.168.166.65]) by ns1.austclear.com.au (8.11.2/8.11.3) with ESMTP id g0L2VZ072636; Mon, 21 Jan 2002 13:31:35 +1100 (EST) (envelope-from ahl@austclear.com.au) Received: from tungsten (tungsten [192.168.166.65]) by tungsten.austclear.com.au (8.9.3/8.9.3) with ESMTP id NAA18618; Mon, 21 Jan 2002 13:31:34 +1100 (EST) Message-Id: <200201210231.NAA18618@tungsten.austclear.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: info@netarmor.net Cc: freebsd-questions@FreeBSD.ORG Subject: Re: sendmail panic In-Reply-To: Message from "Michael C. Beeler" of "Sun, 20 Jan 2002 18:00:08 -0800." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 21 Jan 2002 13:31:34 +1100 From: Tony Landells Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG info@netarmor.net said: > I've deleted all of the files in /var/spool/mqueue but the queue keeps > building up again. Does any one know what the problem is. This > seems to have begun after /var file system filled up. I expect that you've only given half the story (which I'm not saying is intentional). Sendmail doesn't pull things out of thin air, so if the queue keeps building up then either you have a LOT of e-mail going through, or something is seriously broken. In either case, it's all in syslog. The messages you have included are both saying the same thing: /var is full. Sendmail doesn't like /var filling up at all, since pretty much everything it needs to do is on /var: /var/spool/mqueue sendmail working/queue directory /var/log logging (via syslog) /var/mail user mail drops /var/tmp usual "drop of last resort" /var/run sendmail "pid" file So what do you do? 1. Stop sendmail. 2. Clear up as much space as you can on /var. 3. Run mailq to see what's actually there. 4. Try running "sendmail -qI" (refer to the man page) a few times to try to get rid of a few messages at a time. 5. Look at the mail queue each time to check what happened. If things are going back into the queue, you probably have something else to fix. 6. Once everything is cleaned up, start sendmail again. You may then like to look at where all your disk space is allocated, and maybe reconfigure sendmail to use different locations where there is "room to move". Tony -- Tony Landells Senior Network Engineer Ph: +61 3 9677 9319 Australian Clearing Services Pty Ltd Fax: +61 3 9677 9355 Level 4, Rialto North Tower 525 Collins Street Melbourne VIC 3000 Australia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 18:58: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from warren.masspostroad.net (h002078d665ae.ne.mediaone.net [24.60.126.98]) by hub.freebsd.org (Postfix) with ESMTP id 4FB0D37B41C for ; Sun, 20 Jan 2002 18:57:57 -0800 (PST) Received: from mediaone.net (hamton [192.168.1.210]) by warren.masspostroad.net (8.11.3/8.11.3) with ESMTP id g0L2onS05795; Sun, 20 Jan 2002 21:50:50 -0500 (EST) (envelope-from postroad@mediaone.net) Message-ID: <3C4B83A4.FA87DB7E@mediaone.net> Date: Sun, 20 Jan 2002 21:57:42 -0500 From: Sir Reply-To: postroad@mediaone.net Organization: MassPostroad.net X-Mailer: Mozilla 4.7C-CCK-MCD {C-UDP; EBM-APPLE} (Macintosh; I; PPC) X-Accept-Language: en,pdf MIME-Version: 1.0 To: mwm@mired.org Cc: questions@freebsd.org Subject: The tower of Hanoi Content-Type: text/plain; charset=us-ascii; x-mac-type="54455854"; x-mac-creator="4D4F5353" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I was following a thread in the freebsd mailing list that you replied on. Seems like you have some experience with "dump". A read of the man pages has a realy baffling bit about the tower of hanoi algorithm. It says incrementals should be taken on a daily basis 3 2 5 4 7 6 9 8 9 9.... It then goes on to say that a weekly should be taken with level 1. Well, there's more than 7 levels there so I'm not sure how it all fits together. It reads like they should be done all in the same day?? I was under the impression you shouldn't "dump" a disk unles it's umount'd. And, for us real newbies, how do you un-dump?? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 18:59:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 4AA8D37B400 for ; Sun, 20 Jan 2002 18:59:23 -0800 (PST) Received: from hades.hell.gr (patr530-a027.otenet.gr [212.205.215.27]) by mailsrv.otenet.gr (8.11.5/8.11.5) with ESMTP id g0L2xEi16797; Mon, 21 Jan 2002 04:59:15 +0200 (EET) Received: by hades.hell.gr (Postfix, from userid 1001) id 2A5BD31; Mon, 21 Jan 2002 04:59:11 +0200 (EET) Date: Mon, 21 Jan 2002 04:59:10 +0200 From: Giorgos Keramidas To: Joe & Fhe Barbish Cc: questions@FreeBSD.org Subject: Re: Using mouse on syscon? Message-ID: <20020121025910.GA5719@hades.hell.gr> References: <20020118212043.H647-100000@catalyst.sasknow.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 2002-01-19 09:26:35, Joe & Fhe Barbish wrote: > Is there some way to enable this copy & past mouse > function so it works when I use telnet? The copy/paste function of moused is a builtin feature of the FreeBSD console. You don't need to do anything special (apart from running moused) to enable this on a FreeBSD console. If you are sitting on a FreeBSD console, then copy/paste works, regardless of where the output will eventually go. I can copy from one of my virtual consoles, and paste in another virtual console where I have telnet'ed to a remote machine. It just works. If you mean that you are sitting on a machine X that runs an operating system Y (where Y is *not* FreeBSD), and you want to use copy/paste then you'd have to consult the documentation for the programs that you run in Y. An alternative could be to telnet or ssh to a FreeBSD machine and run screen(1) in that telnet session. Then you could use screen's C-a [ and C-a ] keys to copy/paste text. -- Giorgos Keramidas . . . . . . . . . keramida@{ceid.upatras.gr,freebsd.org} FreeBSD Documentation Project . . . http://www.freebsd.org/docproj/ FreeBSD: The power to serve . . . . http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 19: 8:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from warren.masspostroad.net (h002078d665ae.ne.mediaone.net [24.60.126.98]) by hub.freebsd.org (Postfix) with ESMTP id 3DECF37B405 for ; Sun, 20 Jan 2002 19:08:08 -0800 (PST) Received: from mediaone.net (hamton [192.168.1.210]) by warren.masspostroad.net (8.11.3/8.11.3) with ESMTP id g0L30vS05821; Sun, 20 Jan 2002 22:00:57 -0500 (EST) (envelope-from postroad@mediaone.net) Message-ID: <3C4B8603.2991E316@mediaone.net> Date: Sun, 20 Jan 2002 22:07:50 -0500 From: Sir Reply-To: postroad@mediaone.net Organization: MassPostroad.net X-Mailer: Mozilla 4.7C-CCK-MCD {C-UDP; EBM-APPLE} (Macintosh; I; PPC) X-Accept-Language: en,pdf MIME-Version: 1.0 To: mwm@mired.org, questions@freebsd.org Subject: Re: The tower of Hanoi References: <3C4B83A4.FA87DB7E@mediaone.net> Content-Type: text/plain; charset=us-ascii; x-mac-type="54455854"; x-mac-creator="4D4F5353" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sir wrote: > I was following a thread in the freebsd mailing list that you replied > on. Seems like you have some experience with "dump". A read of the man > pages has a realy baffling bit about the tower of hanoi algorithm. It > says incrementals should be taken on a daily basis 3 2 5 4 7 6 9 8 9 > 9.... It then goes on to say that a weekly should be taken with level > 1. Well, there's more than 7 levels there so I'm not sure how it all > fits together. It reads like they should be done all in the same day?? I > was under the impression you shouldn't "dump" a disk unles it's > umount'd. And, for us real newbies, how do you un-dump?? Just as an after-thought, ever seen a "bad sblock magic number" before?? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 19:15:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by hub.freebsd.org (Postfix) with ESMTP id 089BB37B400 for ; Sun, 20 Jan 2002 19:15:19 -0800 (PST) Received: from 202 x-sb@smtp-send.myrealbox.com [61.144.182.32] by smtp-send.myrealbox.com with Novell NIMS $Revision: 2.88 $ on Novell NetWare; Sun, 20 Jan 2002 20:15:17 -0700 MIME-Version: 1.0 Message-Id: <3C4B87B1.000003.34599@202.96.128.68> Date: Mon, 21 Jan 2002 11:14:57 +0800 (Öйú±ê׼ʱ¼ä) Content-Type: Multipart/related; type="multipart/alternative"; boundary="------------Boundary-00=_XCQ9G6G0000000000000" X-Mailer: IncrediMail 2001 (1600560) From: "EverBlue" X-FID: FLAVOR00-NONE-0000-0000-000000000000 X-FVER: 2.0 X-CNT: ; X-Priority: 3 To: Subject: help Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --------------Boundary-00=_XCQ9G6G0000000000000 Content-Type: Multipart/Alternative; boundary="------------Boundary-00=_XCQ9BHK0000000000000" --------------Boundary-00=_XCQ9BHK0000000000000 Content-Type: Text/Plain; charset="gb2312" Content-Transfer-Encoding: quoted-printable --------------Boundary-00=_XCQ9BHK0000000000000 Content-Type: Text/HTML; charset="gb2312" Content-Transfer-Encoding: quoted-printable =0D =0A
 
 
=09 =09 =09 =09 =09 =09 =09
____________________________________________________
  IncrediMail - Email has finally evolved -=20
Click=20 Here
--------------Boundary-00=_XCQ9BHK0000000000000-- --------------Boundary-00=_XCQ9G6G0000000000000 Content-Type: image/gif Content-Transfer-Encoding: base64 Content-ID: R0lGODlhFAAPALMIAP9gAM9gAM8vAM9gL/+QL5AvAGAvAP9gL////wAAAAAAAAAAAAAAAAAAAAAA AAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJFAAIACwAAAAAFAAPAAAEVRDJSaudJuudrxlEKI6B URlCUYyjKpgYAKSgOBSCDEuGDKgrAtC3Q/R+hkPJEDgYCjpKr5A8WK9OaPFZwHoPqm3366VKyeRt E30tVVRscMHDqV/u+AgAIfkEBWQACAAsAAAAABQADwAABBIQyUmrvTjrzbv/YCiOZGmeaAQAIfkE CRQACAAsAgABABAADQAABEoQIUOrpXIOwrsPxiQUheeRAgUA49YNhbCqK1kS9grQhXGAhsDBUJgZ AL2Dcqkk7ogFpvRAokSn0p4PO6UIuUsQggSmFjKXdAgRAQAh+QQFCgAIACwAAAAAFAAPAAAEEhDJ Sau9OOvNu/9gKI5kaZ5oBAAh+QQJFAAIACwCAAEAEAANAAAEShAhQ6ulcg7Cuw/GJBSF55ECBQDj 1g2FsKorWRL2CtCFcYCGwMFQmBkAvYNyqSTuiAWm9ECiRKfSng87pQi5SxCCBKYWMpd0CBEBACH5 BAVkAAgALAAAAAAUAA8AAAQSEMlJq7046827/2AojmRpnmgEADs= --------------Boundary-00=_XCQ9G6G0000000000000-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 19:17: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from beck.quonix.net (beck.quonix.net [64.239.136.146]) by hub.freebsd.org (Postfix) with ESMTP id 04E3B37B402; Sun, 20 Jan 2002 19:16:57 -0800 (PST) Received: from [192.168.1.100] (pa-steclge-u1-c6b-190.stcgpa.adelphia.net [24.54.120.190]) by beck.quonix.net (8.11.6/8.11.6) with ESMTP id g0L3Dwg03426; Sun, 20 Jan 2002 19:13:58 -0800 (PST) (envelope-from john@essenz.com) User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Sun, 20 Jan 2002 22:13:18 -0500 Subject: Re: 64-bit PCI mobos From: John Von Essen To: Len Conrad , , Message-ID: In-Reply-To: <5.1.0.14.2.20020121002104.02b61ec0@mail.Go2France.com> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I would recommend the TYAN 2518 with ServerWorks chipset. Supports two 64-bit PCI slots, dual Pentium III, 4 Gb RAM, optional Ultra160 SCSI onboard. This board works very well with FreeBSD. JVE on 1/20/02 7:21 PM, LConrad@Go2France.com wrote: > What are the recommendations for FreeBSD? > > Looking to use 64-bit SCSI and 64-bit ATA RAID controllers. > > thanks > Len > > > http://MenAndMice.com/DNS-training > http://BIND8NT.MEIway.com : ISC BIND 8.2.4 for NT4 & W2K > http://IMGate.MEIway.com : Build free, hi-perf, anti-abuse mail gateways > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hardware" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 19:38:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Hopper.spilman.org (sd-152-251.l3.cari.net [216.98.152.251]) by hub.freebsd.org (Postfix) with ESMTP id F2C3337B400 for ; Sun, 20 Jan 2002 19:38:54 -0800 (PST) Subject: RE: VMWare guest (Win2000) network trouble MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Date: Sun, 20 Jan 2002 19:38:17 -0800 Message-ID: X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 X-MS-Has-Attach: Content-Class: urn:content-classes:message X-MS-TNEF-Correlator: Thread-Topic: VMWare guest (Win2000) network trouble Thread-Index: AcGd0/5Rc42BUy4hSUW2HfGe405OqAEV8mfw From: "Aaron Spilman" To: , Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You said that you used the "same settings in Windows 2000". Did you give both machines the same ip address? Even though your vm system shares the same nic as the host they should each have their own address. --Aaron -----Original Message----- From: Alexander S.Volchenkov [mailto:volax@uh.ru] Sent: Tuesday, January 15, 2002 3:56 AM To: freebsd-questions@freebsd.org Subject: VMWare guest (Win2000) network trouble Hi all! I've just installed VMWare 2.04 into FreeBSD 4.4 RELEASE box and setup Windows 2000 Server as guest operation system for VMWare. I've also setup networking support for my guest OS and gives an IP address to it. in /etc/vmware/config: vmnet1.HostOnlyAddress =3D "192.168.0.10" vmnet1.HostOnlyNetMask =3D "255.255.255.0" and same settings in Windows 2000 networking settings. Default gateway for my office network is 192.168.0.1, this is the machine with VMWare installed. Guest Windows works fine (all networking) until first reboot. After first reboot my poor Windows see only local network and can't ping outside it (like other machines do). Firewall is not enabled at all. Here is my ifconfig output: rl0: flags=3D8943 mtu = 1500 inet 192.168.0.1 netmask 0xffffff00 broadcast 192.168.0.255 ether 00:c0:26:2c:87:78 media: Ethernet autoselect (100baseTX) status: active lo0: flags=3D8049 mtu 16384 inet 127.0.0.1 netmask 0xff000000 ppp0: flags=3D8051 mtu 1514 inet 217.XX.XXX.XX --> 10.3.45.2 netmask 0xffffff00 vmnet1: flags=3D8843 mtu 1500 inet 192.168.0.10 netmask 0xffffff00 broadcast 192.168.0.255 ether 00:bd:ff:03:00:01 What may I doing wrong? Please help! Thanks, -- Alexander S. Volchenkov mailto:volax@uh.ru http://www.uh.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 19:45:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rfnj.org (rfnj.org [216.239.237.194]) by hub.freebsd.org (Postfix) with ESMTP id 7C07737B416 for ; Sun, 20 Jan 2002 19:45:41 -0800 (PST) Received: from megalomaniac.biosys.net (megalomaniac.rfnj.org [216.239.237.200]) by rfnj.org (Postfix) with ESMTP id 6E9C3137C1 for ; Sun, 20 Jan 2002 22:45:50 -0500 (EST) Message-Id: <5.1.0.14.0.20020120224200.00a94900@rfnj.org> X-Sender: asym@rfnj.org X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sun, 20 Jan 2002 22:45:02 -0500 To: freebsd-questions@freebsd.org From: Allen Landsidel Subject: (solved) multihomed routing woes.. Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG [please reply off-list.. not subscribed.] ----- original message quote ---- Ok.. for several hours I've been banging my head against the proverbial brick wall, trying to resolve an issue that's been a nuisance for some time. To start from the begining.. my network looks like this : [LAN] <--> [firewall] <--> [router] <--> [internet] ----- original message quote end ---- I've solved this problem by bypassing the ipfw stateful rules for the nat'ed address. I've written a rather long-winded explaination of the problem, and a simple solution, and stuck them up on my website. Hopefully if anyone else still has this sort of problem (there were tons in the list archives) then this will help get them rolling. The url is : http://rfnj.org/misc/ipfw_stateful_natd.html -Allen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 20: 2:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fl-mta01.durocom.com (fl-mta01.durocom.com [216.53.195.242]) by hub.freebsd.org (Postfix) with ESMTP id AF2A337B402; Sun, 20 Jan 2002 20:02:02 -0800 (PST) Received: from [198.69.78.93] by fl-mta01.durocom.com with SMTP id <20020121040349.BCXW984.fl-mta01@[198.69.78.93]>; Sun, 20 Jan 2002 23:03:49 -0500 From: liltator@slingshot.com To: Subject: Hi Friend Date: Sun, 20 Jan 2002 21:53:39 -0600 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_1B37_00002A92.00001000" X-Priority: 3 X-MSMail-Priority: Normal Message-Id: <20020121040349.BCXW984.fl-mta01@[198.69.78.93]> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ------=_NextPart_000_1B37_00002A92.00001000 Content-Type: text/html; ViaPro

To be removed from future mailings CLICK HERE

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 20: 6:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from services.webwarrior.net (overlord-host99.dsl.visi.com [209.98.86.99]) by hub.freebsd.org (Postfix) with ESMTP id 4BAF437B417 for ; Sun, 20 Jan 2002 20:06:31 -0800 (PST) Received: from twincat.vladsempire.net (unknown [209.105.45.136]) by services.webwarrior.net (Postfix) with ESMTP id AF1F652F for ; Sun, 20 Jan 2002 22:08:10 -0600 (CST) Received: by twincat.vladsempire.net (Postfix, from userid 1001) id C014A3882; Sun, 20 Jan 2002 22:06:56 +0000 (GMT) Date: Sun, 20 Jan 2002 22:06:56 +0000 From: Josh Paetzel To: tony Cc: twig les , freebsd-questions@FreeBSD.ORG Subject: Re: How do i know if SMP is working? Message-ID: <20020120220656.C279@twincat.vladsempire.net> Mail-Followup-To: tony , twig les , freebsd-questions@FreeBSD.ORG References: <20020120202959.21334.qmail@web10106.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from tony@tntpro.com on Sun, Jan 20, 2002 at 03:33:10PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 03:33:10PM -0500, tony wrote: > Simply looking at top should show you :) sysctl -a hw.ncpu sysctl -a machdep.smp_cpus Have you ever looked at top on a SMP FreeBSD machine? Or did that just fit in well with your top posting? Josh > > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of twig les > Sent: Sunday, January 20, 2002 3:30 PM > To: freebsd-questions@FreeBSD.ORG > Subject: How do i know if SMP is working? > > > Hey all, > > I just cut a kernel to include SMP and I would like to > check the status of the CPUs (2 P3s). I know the new > kernel booted fine because dmesg and motd (plus the > clean boot...) but I'd like to get that warm fuzzy > feeling from manually seeing that both CPUs are in > action. > > Thanx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 20:19:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 6A79C37B404 for ; Sun, 20 Jan 2002 20:19:49 -0800 (PST) Received: from gateway ([63.70.155.47]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Sun, 20 Jan 2002 23:22:58 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: Time Zone command Date: Sun, 20 Jan 2002 23:19:46 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I there some setting in rc.conf to set the Time Zone? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 20:25: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id 3944D37B428 for ; Sun, 20 Jan 2002 20:24:49 -0800 (PST) Received: (from dan@localhost) by dan.emsphone.com (8.11.6/8.11.6) id g0L4Oi910936; Sun, 20 Jan 2002 22:24:44 -0600 (CST) (envelope-from dan) Date: Sun, 20 Jan 2002 22:24:44 -0600 From: Dan Nelson To: Joe & Fhe Barbish Cc: FBSD Questions Subject: Re: Time Zone command Message-ID: <20020121042444.GN81627@dan.emsphone.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.25i X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In the last episode (Jan 20), Joe & Fhe Barbish said: > I there some setting in rc.conf to set the Time Zone? Run 'tzsetup'; it'll create an /etc/localtime file with the appropriate timezone info. -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 20:44:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from chen.org.nz (tnt1-119.quicksilver.net.nz [202.89.142.119]) by hub.freebsd.org (Postfix) with ESMTP id 27C3B37B402 for ; Sun, 20 Jan 2002 20:44:46 -0800 (PST) Received: (from jonc@localhost) by chen.org.nz (8.11.6/8.11.6) id g0L4lII02273; Mon, 21 Jan 2002 17:47:18 +1300 (NZDT) (envelope-from jonc) Date: Mon, 21 Jan 2002 17:46:55 +1300 From: Jonathan Chen To: Joe & Fhe Barbish Cc: FBSD Questions Subject: Re: Time Zone command Message-ID: <20020121174655.A2224@grimoire.chen.org.nz> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from barbish@a1poweruser.com on Sun, Jan 20, 2002 at 11:19:46PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 11:19:46PM -0500, Joe & Fhe Barbish wrote: > I there some setting in rc.conf to set the Time Zone? Run tzsetup(8) or copy one of the files in /usr/share/zoneinfo to /etc/localtime. -- Jonathan Chen ---------------------------------------------------------------------- Experience is a hard teacher because she gives the test first, the lesson afterwards To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 20:45:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from TheWorld.com (pcls2.std.com [199.172.62.104]) by hub.freebsd.org (Postfix) with ESMTP id E592037B400 for ; Sun, 20 Jan 2002 20:45:46 -0800 (PST) Received: from shell.TheWorld.com (root@shell01.TheWorld.com [199.172.62.241]) by TheWorld.com (8.9.3/8.9.3) with ESMTP id XAA06809; Sun, 20 Jan 2002 23:45:44 -0500 Received: (from kwc@localhost) by shell.TheWorld.com (8.9.3/8.9.3) id XAA9379861; Sun, 20 Jan 2002 23:45:43 -0500 (EST) Date: Sun, 20 Jan 2002 23:45:43 -0500 (EST) From: Kenneth W Cochran Message-Id: <200201210445.XAA9379861@shell.TheWorld.com> To: freebsd-questions@freebsd.org Subject: Mozilla plugins; Windows Media, QuickTime, Java2 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Is there any Mozilla (0.9.7) plugin support for Windows Media and/or QuickTime in FreeBSD? Also, roughly how far are we from having Mozilla plugin support for Java2? Where could I find relevant information? (aka "FM" to "RT" :) Thanks, -kc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 20:50:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web11706.mail.yahoo.com (web11706.mail.yahoo.com [216.136.172.72]) by hub.freebsd.org (Postfix) with SMTP id 6A27E37B416 for ; Sun, 20 Jan 2002 20:50:22 -0800 (PST) Message-ID: <20020121045022.18835.qmail@web11706.mail.yahoo.com> Received: from [66.92.186.35] by web11706.mail.yahoo.com via HTTP; Sun, 20 Jan 2002 20:50:22 PST Date: Sun, 20 Jan 2002 20:50:22 -0800 (PST) From: Tim Erlin Subject: Technical/BSD publications To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is more of an opinion question. What are your favorite technical or BSD publications? Just curious what other FreeBSD users are reading... --Tim __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 21: 6:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web11005.mail.yahoo.com (web11005.mail.yahoo.com [216.136.131.55]) by hub.freebsd.org (Postfix) with SMTP id 94D6137B404 for ; Sun, 20 Jan 2002 21:06:22 -0800 (PST) Message-ID: <20020121050622.15838.qmail@web11005.mail.yahoo.com> Received: from [216.236.220.10] by web11005.mail.yahoo.com via HTTP; Sun, 20 Jan 2002 21:06:22 PST Date: Sun, 20 Jan 2002 21:06:22 -0800 (PST) From: faisal gillani Subject: unix password limit To: FreeBSD MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Well 6 month ago i started learning Unix/linux among which i learned Solaris,Redhat Linux,Mandrake Linux,Slackware Linux & freeBSD Unix FreeBSD is by far the Best & my fav UNIX i like it so much that i purchase internet here in pakistan to download it,s ISO image "to bad there is no freebsd resaller here in pakistan also ordering from internet is very costly for us ". now i think my newbie days are over & i am moving towards my intermediate level . there are a few quetions in my head still from which i will ask one today .. Unix has a limit on username which is 8 chareaters right ? but i have seen unix systems taking a lot more then that .. how do we make it do that can someone tell me please ? thanks Faisal __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 21:18:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f85.law11.hotmail.com [64.4.17.85]) by hub.freebsd.org (Postfix) with ESMTP id A3AD537B405 for ; Sun, 20 Jan 2002 21:18:42 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 20 Jan 2002 21:18:42 -0800 Received: from 66.74.91.117 by lw11fd.law11.hotmail.msn.com with HTTP; Mon, 21 Jan 2002 05:18:42 GMT X-Originating-IP: [66.74.91.117] From: "Charles Burns" To: friar_josh@webwarrior.net, questions@freebsd.org Subject: Re: How do i know if SMP is working? Date: Sun, 20 Jan 2002 22:18:42 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 21 Jan 2002 05:18:42.0462 (UTC) FILETIME=[1787A3E0:01C1A23B] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Simply looking at top should show you :) > >sysctl -a hw.ncpu >sysctl -a machdep.smp_cpus > >Have you ever looked at top on a SMP FreeBSD machine? >Or did that just fit in well with your top posting? I must agree that top's display is confusing (SMP or not--WTF is 'wired' memory?) but when multiple apps are using different CPUs, it does show "CPU1", "CPU2", etc for those processes. Sometimes. _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 21:35: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from digger1.defence.gov.au (digger1.defence.gov.au [203.5.217.4]) by hub.freebsd.org (Postfix) with ESMTP id BE41637B400 for ; Sun, 20 Jan 2002 21:34:57 -0800 (PST) Received: from dsto-ms2.dsto.defence.gov.au (dsto-ms2.dsto.defence.gov.au [131.185.2.150]) by digger1.defence.gov.au (8.10.1/8.10.1) with ESMTP id g0L5XqF21805 for ; Mon, 21 Jan 2002 16:03:52 +1030 (CST) Received: from muttley.dsto.defence.gov.au (unverified) by dsto-ms2.dsto.defence.gov.au (Content Technologies SMTPRS 4.1.5) with ESMTP id for ; Mon, 21 Jan 2002 16:04:40 +1030 Received: from salex001.dsto.defence.gov.au (salex001.dsto.defence.gov.au [131.185.2.9]) by muttley.dsto.defence.gov.au (8.9.3/8.9.3/8.9.3.LMD.990513) with ESMTP id PAA21135 for ; Mon, 21 Jan 2002 15:59:41 +1030 (CST) Received: from pluto2.dsto.defence.gov.au (squirm.dsto.defence.gov.au [131.185.75.211]) by salex001.dsto.defence.gov.au with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id DLRRZYZT; Mon, 21 Jan 2002 15:59:40 +1030 Date: Mon, 21 Jan 2002 15:54:41 +1030 (CST) From: "Wilkinson,Alex" X-X-Sender: Reply-To: To: Subject: upgrading Fbsd port ? Message-ID: <20020121155426.A527-100000@squirm.dsto.defence.gov.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Howdy All, I have a situation where I need to update GTK from: gtk-1.2.10_2 to gtk+-1.3.12. However, I can't do a pkg_delete gtk-1.2.10_2 because I have tonnes of programs that require it. eg. "pkg_delete: package 'gtk-1.2.10_2' is required by these other packages" mlib-1.9.11 gnomelibs-1.4.1.1 fnlib-0.5 ... etc So it seems as if I have only one option ie to build the gtk+-1.3.12 port as well as keep the gtk-1.2.10_2 port. I really would prefer to delete gtk-1.2.10_2 first and then install the new port or somehow upgrade gtk-1.2.10_2 to gtk+-1.3.12 instead of installing both. Is this possible ? Can anyone recommend a more cleaner solution to my problem ? - Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 21:48:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from clmboh1-smtp4.columbus.rr.com (clmboh1-smtp4.columbus.rr.com [65.24.0.114]) by hub.freebsd.org (Postfix) with ESMTP id A75E037B402 for ; Sun, 20 Jan 2002 21:48:48 -0800 (PST) Received: from there (cvg-65-27-178-104.cinci.rr.com [65.27.178.104]) by clmboh1-smtp4.columbus.rr.com (8.11.2/8.11.2) with SMTP id g0L5mxf27068; Mon, 21 Jan 2002 00:48:59 -0500 (EST) Message-Id: <200201210548.g0L5mxf27068@clmboh1-smtp4.columbus.rr.com> Content-Type: text/plain; charset="iso-8859-1" From: Mike To: , Subject: Re: upgrading Fbsd port ? Date: Mon, 21 Jan 2002 00:51:04 -0500 X-Mailer: KMail [version 1.3.2] References: <20020121155426.A527-100000@squirm.dsto.defence.gov.au> In-Reply-To: <20020121155426.A527-100000@squirm.dsto.defence.gov.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG this is how I did it, #pkg_deinstall -f gtk this requires that you have portupgrade, or maybe it's installed as a dependency, so if it doesn't work install /usr/ports/sysutils/portupgrade. portupgrade is a nice tool to have anyway. On Monday 21 January 2002 12:24 am, Wilkinson,Alex wrote: > Howdy All, > > I have a situation where I need to update GTK from: gtk-1.2.10_2 to > gtk+-1.3.12. > > However, I can't do a pkg_delete gtk-1.2.10_2 because I have tonnes of > programs that require it. eg. > > "pkg_delete: package 'gtk-1.2.10_2' is required by these other packages" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 21:55:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from clmboh1-smtp4.columbus.rr.com (clmboh1-smtp4.columbus.rr.com [65.24.0.114]) by hub.freebsd.org (Postfix) with ESMTP id 86FB037B419 for ; Sun, 20 Jan 2002 21:55:40 -0800 (PST) Received: from there (cvg-65-27-178-104.cinci.rr.com [65.27.178.104]) by clmboh1-smtp4.columbus.rr.com (8.11.2/8.11.2) with SMTP id g0L5trf29055; Mon, 21 Jan 2002 00:55:53 -0500 (EST) Message-Id: <200201210555.g0L5trf29055@clmboh1-smtp4.columbus.rr.com> Content-Type: text/plain; charset="iso-8859-1" From: Mike To: , Subject: Re: upgrading Fbsd port ? Date: Mon, 21 Jan 2002 00:57:57 -0500 X-Mailer: KMail [version 1.3.2] References: <20020121155426.A527-100000@squirm.dsto.defence.gov.au> In-Reply-To: <20020121155426.A527-100000@squirm.dsto.defence.gov.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG !!!!!!!caution, this could break some ports and cause others not to install at all!!!!!!!!! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 22:38:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from speechpro.com (crt-gw.infopro.spb.su [195.201.254.5]) by hub.freebsd.org (Postfix) with ESMTP id 32A3537B402 for ; Sun, 20 Jan 2002 22:38:56 -0800 (PST) Received: from igorr by sysadm.stc with local (Exim 3.33 #1) id 16SY8c-00056v-00 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 09:41:02 +0300 Date: Mon, 21 Jan 2002 09:41:02 +0300 From: Igor Roboul To: freebsd-questions@FreeBSD.ORG Subject: Re: Sybase Message-ID: <20020121064102.GB19370@sysadm.stc> Reply-To: igorr@speechpro.com Mail-Followup-To: Igor Roboul , freebsd-questions@FreeBSD.ORG References: <18522211127.20020121134320@fhs.usyd.edu.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <18522211127.20020121134320@fhs.usyd.edu.au> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 01:43:20PM +1100, Janusz Tydda wrote: > Dear freebsd-questions, > > Is it possible to run Linux version of Sybase on FreeBsd? Yes, there are even FreeBSD-enabled version of ASE for Linux on Sybase's site. At least it was. Also I have made custom .tgz for Sybase customised for FreeBSD (with russian locale). I did this around year ago, when I had tried Sybase ASE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 22:47:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta03ps.bigpond.com (mta03ps.bigpond.com [144.135.25.135]) by hub.freebsd.org (Postfix) with ESMTP id 72DB537B405 for ; Sun, 20 Jan 2002 22:47:35 -0800 (PST) Received: from win2000 ([144.135.25.87]) by mta03ps.bigpond.com (Netscape Messaging Server 4.15) with SMTP id GQA0J300.83W; Mon, 21 Jan 2002 16:54:39 +1000 Received: from CPE-203-45-117-202.nsw.bigpond.net.au ([203.45.117.202]) by psmam07.mailsvc.email.bigpond.com(MailRouter V3.0h 119/158410); 21 Jan 2002 16:47:32 Message-ID: <001601c1a248$55d63050$c601a8c0@win2000> From: "Danny" To: "Edwin Groothuis" Cc: References: <000a01c1a17b$ff0d36f0$c601a8c0@win2000> <20020120183311.D823@k7.mavetju.org> Subject: Re: isc-dhcp 3 query Date: Mon, 21 Jan 2002 17:53:30 +1100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, After the Copy right message to displays the following on the screen: backup# dhcpd ed0 Internet Software Consortium DHCP Server V3.0.1rc4 Copyright 1995-2001 Internet Software Consortium. All rights reserved. For info, please visit http://www.isc.org/products/DHCP ** You must add a ddns-update-style statement to /usr/local/etc/dhcpd.conf. To get the same behaviour as in 3.0b2pl11 and previous versions, add a line that says "ddns-update-style ad-hoc;" Please read the dhcpd.conf manual page for more information. ** If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you did get this software from ftp.isc.org and have not yet read the README, please read it before requesting help. If you intend to request help from the dhcp-server@isc.org mailing list, please read the section on the README about submitting bug reports and requests for help. Please do not under any circumstances send requests for help directly to the authors of this software - please send them to the appropriate mailing list as described in the README file. exiting. backup# ----- Original Message ----- From: "Edwin Groothuis" To: "Danny" Cc: Sent: Sunday, January 20, 2002 6:33 PM Subject: Re: isc-dhcp 3 query > On Sun, Jan 20, 2002 at 05:30:47PM +1100, Danny wrote: > > - Then I got the following output on the screen: > > What is the text after the copyright message? > > Internet Software Consortium DHCP Server V3.0.1rc4 > Copyright 1995-2001 Internet Software Consortium. > All rights reserved. > For info, please visit http://www.isc.org/products/DHCP > .......................... > > That's the text what is telling you what's wrong. > > Edwin > > -- > Edwin Groothuis | Personal website: http://www.MavEtJu.org > edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: > ------------------+ http://www.FatalDimensions.org/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 22:52:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id 767B837B404 for ; Sun, 20 Jan 2002 22:52:05 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 76E7A2B825; Mon, 21 Jan 2002 07:51:59 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 182DD815; Mon, 21 Jan 2002 17:51:55 +1100 (EST) Date: Mon, 21 Jan 2002 17:51:55 +1100 From: Edwin Groothuis To: Danny Cc: questions@freebsd.org Subject: Re: isc-dhcp 3 query Message-ID: <20020121175155.E823@k7.mavetju.org> References: <000a01c1a17b$ff0d36f0$c601a8c0@win2000> <20020120183311.D823@k7.mavetju.org> <001601c1a248$55d63050$c601a8c0@win2000> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <001601c1a248$55d63050$c601a8c0@win2000>; from dannyho@bigpond.net.au on Mon, Jan 21, 2002 at 05:53:30PM +1100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 05:53:30PM +1100, Danny wrote: > Hi, > > After the Copy right message to displays the following on the screen: > > backup# dhcpd ed0 > Internet Software Consortium DHCP Server V3.0.1rc4 > Copyright 1995-2001 Internet Software Consortium. > All rights reserved. > For info, please visit http://www.isc.org/products/DHCP > > ** You must add a ddns-update-style statement to /usr/local/etc/dhcpd.conf. > To get the same behaviour as in 3.0b2pl11 and previous > versions, add a line that says "ddns-update-style ad-hoc;" > Please read the dhcpd.conf manual page for more information. ** I think this error-message is self explaining enough... Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 23:16: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from speechpro.com (crt-gw.infopro.spb.su [195.201.254.5]) by hub.freebsd.org (Postfix) with ESMTP id C262F37B416 for ; Sun, 20 Jan 2002 23:15:58 -0800 (PST) Received: from igorr by sysadm.stc with local (Exim 3.33 #1) id 16SYiV-0005AZ-00 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 10:18:07 +0300 Date: Mon, 21 Jan 2002 10:18:07 +0300 From: Igor Roboul To: FreeBSD Questions Subject: Re: I'm looking for a program, that reads out written text Message-ID: <20020121071807.GC19370@sysadm.stc> Reply-To: igorr@speechpro.com Mail-Followup-To: Igor Roboul , FreeBSD Questions References: <20020120005736.GA23374@he0.easygolucky.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020120005736.GA23374@he0.easygolucky.de> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 01:57:36AM +0100, Manuel Hendel wrote: > I've already tried to find such a prgram but without success. I've > heard of programs that can read out e.g. a marked text area on a > Webpage for you. Does anyone know if there is one for unix? %cat /usr/ports/audio/rsynth/pkg-descr This is a text to speech system produced by integrating various pieces of code and tables of data, which are all (I believe) in the public domain. But you will need some additional tweaking to read marked text. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 23:22:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hostname.org (hostname.org [128.121.221.87]) by hub.freebsd.org (Postfix) with ESMTP id 9BB9337B400 for ; Sun, 20 Jan 2002 23:22:08 -0800 (PST) Received: from hostname.org (dl-adsl-C8D44CB9.sao.terra.com.br [200.212.76.185]) by hostname.org (8.11.6) id g0L7M5H49904 for ; Mon, 21 Jan 2002 00:22:06 -0700 (MST) Message-ID: <3C4BC194.5000906@hostname.org> Date: Mon, 21 Jan 2002 05:21:56 -0200 From: Fabio Yasusi Yamamoto User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.7) Gecko/20011222 X-Accept-Language: en-us MIME-Version: 1.0 To: questions@FreeBSD.ORG Subject: Xfree86 4.2.0 Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms070805020302030007060706" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a cryptographically signed message in MIME format. --------------ms070805020302030007060706 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Xfree86 4.2.0 will be on freebsd 4.5? --------------ms070805020302030007060706 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIINWjCC A2IwggLLoAMCAQICEAvaCxfBP4mOqwl0erTOLjMwDQYJKoZIhvcNAQECBQAwXzELMAkGA1UE BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAxIFB1Ymxp YyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk4MDUxMjAwMDAwMFoXDTA4 MDUxMjIzNTk1OVowgcwxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJp U2lnbiBUcnVzdCBOZXR3b3JrMUYwRAYDVQQLEz13d3cudmVyaXNpZ24uY29tL3JlcG9zaXRv cnkvUlBBIEluY29ycC4gQnkgUmVmLixMSUFCLkxURChjKTk4MUgwRgYDVQQDEz9WZXJpU2ln biBDbGFzcyAxIENBIEluZGl2aWR1YWwgU3Vic2NyaWJlci1QZXJzb25hIE5vdCBWYWxpZGF0 ZWQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALtaRIoEFrtV/QN6ii2UTxV4NrgNSrJv nFS/vOh3Kp258Gi7ldkxQXB6gUu5SBNWLccI4YRCq8CikqtEXKpC8IIOAukv+8I7u77JJwpd trA2QjO1blSIT4dKvxna+RXoD4e2HOPMxpqOf2okkuP84GW6p7F+78nbN2rISsgJBuSZAgMB AAGjgbAwga0wDwYDVR0TBAgwBgEB/wIBADBHBgNVHSAEQDA+MDwGC2CGSAGG+EUBBwEBMC0w KwYIKwYBBQUHAgEWH3d3dy52ZXJpc2lnbi5jb20vcmVwb3NpdG9yeS9SUEEwMQYDVR0fBCow KDAmoCSgIoYgaHR0cDovL2NybC52ZXJpc2lnbi5jb20vcGNhMS5jcmwwCwYDVR0PBAQDAgEG MBEGCWCGSAGG+EIBAQQEAwIBBjANBgkqhkiG9w0BAQIFAAOBgQACfZ5vRUs4oLje6VNkIbzk TCuPHv6SQKzYCjlqoTIhLAebq1n+0mIafVU4sDdz3PQHZmNiveFTcFKH56jYUulbLarh3s+s MVTUixnI2COo7wQrMn0sGBzIfImoLnfyRNFlCk10te7TG5JzdC6JOzUTcudAMZrTssSr51a+ i+P7FTCCBPYwggRfoAMCAQICEAEsxw+HiM6lqd8s7g1YjFUwDQYJKoZIhvcNAQEEBQAwgcwx FzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3 b3JrMUYwRAYDVQQLEz13d3cudmVyaXNpZ24uY29tL3JlcG9zaXRvcnkvUlBBIEluY29ycC4g QnkgUmVmLixMSUFCLkxURChjKTk4MUgwRgYDVQQDEz9WZXJpU2lnbiBDbGFzcyAxIENBIElu ZGl2aWR1YWwgU3Vic2NyaWJlci1QZXJzb25hIE5vdCBWYWxpZGF0ZWQwHhcNMDExMjI4MDAw MDAwWhcNMDIxMjI4MjM1OTU5WjCCARYxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYD VQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMUYwRAYDVQQLEz13d3cudmVyaXNpZ24uY29t L3JlcG9zaXRvcnkvUlBBIEluY29ycC4gYnkgUmVmLixMSUFCLkxURChjKTk4MR4wHAYDVQQL ExVQZXJzb25hIE5vdCBWYWxpZGF0ZWQxMzAxBgNVBAsTKkRpZ2l0YWwgSUQgQ2xhc3MgMSAt IE5ldHNjYXBlIEZ1bGwgU2VydmljZTEaMBgGA1UEAxQRRmFiaW8gWS4gWWFtYW1vdG8xITAf BgkqhkiG9w0BCQEWEmZhYmlvQGhvc3RuYW1lLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEP ADCCAQoCggEBAMwsLgk+MHHDV5bXaVndGQH0lLS4HUNDd/eMsym7elQBdPOwTZTzWtckuihB ET6chdUennzEtIFixWkfxCVg/IVaOcC1863qGDg6uojqSnJapLW3kb9dTYh7/0Tn5v4WtehR q3rRmIbT2qajkW3lGHqOzroMBF0oEUTSXSHWu/fdoq339VLQvDEctszx+Og7y0jZg5ZSDhvF BoCAzMGH5HoTZwgNUi90TZoKlJaqPNRtBAmCn2gaMifdQUZwXa1aWt2clScAHO6wW2mzeOoG tA3yOKfJYJBrNYkFB5NTidjIdDhXtmMs4mC27Lzb4S0ymBhziiMrANpqUR7MR8zzHM8CAwEA AaOCAQYwggECMAkGA1UdEwQCMAAwgawGA1UdIASBpDCBoTCBngYLYIZIAYb4RQEHAQEwgY4w KAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LnZlcmlzaWduLmNvbS9DUFMwYgYIKwYBBQUHAgIw VjAVFg5WZXJpU2lnbiwgSW5jLjADAgEBGj1WZXJpU2lnbidzIENQUyBpbmNvcnAuIGJ5IHJl ZmVyZW5jZSBsaWFiLiBsdGQuIChjKTk3IFZlcmlTaWduMBEGCWCGSAGG+EIBAQQEAwIHgDAz BgNVHR8ELDAqMCigJqAkhiJodHRwOi8vY3JsLnZlcmlzaWduLmNvbS9jbGFzczEuY3JsMA0G CSqGSIb3DQEBBAUAA4GBAJ8hDC82jjH5GOzhWMWzB2zd+AB/Jz82VKGDNeTcvFKDljew4vWr iTV1Z9q2YdEPHC1p7/vNJwZ/QOytrjqrzkNyL+9FqhcRR7KzFDfVfB3NFTeu8iVE9S2uqQJ4 Y5PnVJZ/vkPTgk52HK6N3dKo7NK9tUf7M0X1bR5PA8Dq5ev0MIIE9jCCBF+gAwIBAgIQASzH D4eIzqWp3yzuDViMVTANBgkqhkiG9w0BAQQFADCBzDEXMBUGA1UEChMOVmVyaVNpZ24sIElu Yy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxRjBEBgNVBAsTPXd3dy52ZXJp c2lnbi5jb20vcmVwb3NpdG9yeS9SUEEgSW5jb3JwLiBCeSBSZWYuLExJQUIuTFREKGMpOTgx SDBGBgNVBAMTP1ZlcmlTaWduIENsYXNzIDEgQ0EgSW5kaXZpZHVhbCBTdWJzY3JpYmVyLVBl cnNvbmEgTm90IFZhbGlkYXRlZDAeFw0wMTEyMjgwMDAwMDBaFw0wMjEyMjgyMzU5NTlaMIIB FjEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5l dHdvcmsxRjBEBgNVBAsTPXd3dy52ZXJpc2lnbi5jb20vcmVwb3NpdG9yeS9SUEEgSW5jb3Jw LiBieSBSZWYuLExJQUIuTFREKGMpOTgxHjAcBgNVBAsTFVBlcnNvbmEgTm90IFZhbGlkYXRl ZDEzMDEGA1UECxMqRGlnaXRhbCBJRCBDbGFzcyAxIC0gTmV0c2NhcGUgRnVsbCBTZXJ2aWNl MRowGAYDVQQDFBFGYWJpbyBZLiBZYW1hbW90bzEhMB8GCSqGSIb3DQEJARYSZmFiaW9AaG9z dG5hbWUub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzCwuCT4wccNXltdp Wd0ZAfSUtLgdQ0N394yzKbt6VAF087BNlPNa1yS6KEERPpyF1R6efMS0gWLFaR/EJWD8hVo5 wLXzreoYODq6iOpKclqktbeRv11NiHv/ROfm/ha16FGretGYhtPapqORbeUYeo7OugwEXSgR RNJdIda7992irff1UtC8MRy2zPH46DvLSNmDllIOG8UGgIDMwYfkehNnCA1SL3RNmgqUlqo8 1G0ECYKfaBoyJ91BRnBdrVpa3ZyVJwAc7rBbabN46ga0DfI4p8lgkGs1iQUHk1OJ2Mh0OFe2 YyziYLbsvNvhLTKYGHOKIysA2mpRHsxHzPMczwIDAQABo4IBBjCCAQIwCQYDVR0TBAIwADCB rAYDVR0gBIGkMIGhMIGeBgtghkgBhvhFAQcBATCBjjAoBggrBgEFBQcCARYcaHR0cHM6Ly93 d3cudmVyaXNpZ24uY29tL0NQUzBiBggrBgEFBQcCAjBWMBUWDlZlcmlTaWduLCBJbmMuMAMC AQEaPVZlcmlTaWduJ3MgQ1BTIGluY29ycC4gYnkgcmVmZXJlbmNlIGxpYWIuIGx0ZC4gKGMp OTcgVmVyaVNpZ24wEQYJYIZIAYb4QgEBBAQDAgeAMDMGA1UdHwQsMCowKKAmoCSGImh0dHA6 Ly9jcmwudmVyaXNpZ24uY29tL2NsYXNzMS5jcmwwDQYJKoZIhvcNAQEEBQADgYEAnyEMLzaO MfkY7OFYxbMHbN34AH8nPzZUoYM15Ny8UoOWN7Di9auJNXVn2rZh0Q8cLWnv+80nBn9A7K2u OqvOQ3Iv70WqFxFHsrMUN9V8Hc0VN67yJUT1La6pAnhjk+dUln++Q9OCTnYcro3d0qjs0r21 R/szRfVtHk8DwOrl6/QxggO1MIIDsQIBATCB4TCBzDEXMBUGA1UEChMOVmVyaVNpZ24sIElu Yy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxRjBEBgNVBAsTPXd3dy52ZXJp c2lnbi5jb20vcmVwb3NpdG9yeS9SUEEgSW5jb3JwLiBCeSBSZWYuLExJQUIuTFREKGMpOTgx SDBGBgNVBAMTP1ZlcmlTaWduIENsYXNzIDEgQ0EgSW5kaXZpZHVhbCBTdWJzY3JpYmVyLVBl cnNvbmEgTm90IFZhbGlkYXRlZAIQASzHD4eIzqWp3yzuDViMVTAJBgUrDgMCGgUAoIIBqDAY BgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wMjAxMjEwNzIyMDNa MCMGCSqGSIb3DQEJBDEWBBRGHgh9QeIhieCRSTVJo3xf46mqtzBSBgkqhkiG9w0BCQ8xRTBD MAoGCCqGSIb3DQMHMA4GCCqGSIb3DQMCAgIAgDANBggqhkiG9w0DAgIBQDAHBgUrDgMCBzAN BggqhkiG9w0DAgIBKDCB9AYLKoZIhvcNAQkQAgsxgeSggeEwgcwxFzAVBgNVBAoTDlZlcmlT aWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMUYwRAYDVQQLEz13 d3cudmVyaXNpZ24uY29tL3JlcG9zaXRvcnkvUlBBIEluY29ycC4gQnkgUmVmLixMSUFCLkxU RChjKTk4MUgwRgYDVQQDEz9WZXJpU2lnbiBDbGFzcyAxIENBIEluZGl2aWR1YWwgU3Vic2Ny aWJlci1QZXJzb25hIE5vdCBWYWxpZGF0ZWQCEAEsxw+HiM6lqd8s7g1YjFUwDQYJKoZIhvcN AQEBBQAEggEAQsmzwwy0I8Bc7SEgDPeSOUl50TP2RT6pnu3o9GdPmCPigaIsno3bLboj17Jz DmEh9izfUS882WFrj1H7RGTJzBz2Tyv+tYYzBeYeH4EVXOtfD/222WGrSJuOP4SrEE7jFIvJ CIUiVyvTwzyLMRF8RQUDl18EFgbEYuqFYpRwyalW6Bo/XHdmPdJS4W24EwIXqJOc6tjXhYLS IkyBKvlGYLMILWSULmRGo0BWWdPImyDDWwDpjICpUdwlUSkUlMMwEsn/cUx3F9tq/l0f0LXY Vu9yJZx0TaO5Uyaj4O1XBx2DP9LLF2qWDFAiG3q5OJRoDZW0rafZXPxMQb0B/uITtwAAAAAA AA== --------------ms070805020302030007060706-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 23:26:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from zapper.org (gso26-96-004.triad.rr.com [66.26.96.4]) by hub.freebsd.org (Postfix) with ESMTP id DE30B37B404 for ; Sun, 20 Jan 2002 23:26:43 -0800 (PST) Received: (from Zapper@localhost) by zapper.org (8.11.6/8.9.3) id g0L7PLn00649 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 02:25:21 -0500 (EST) (envelope-from Zapper) Message-Id: <200201210725.g0L7PLn00649@zapper.org> Content-Type: text/plain; charset="iso-8859-1" From: "NetAdmin FoxChat.Net" Organization: FoxChat.Net To: freebsd-questions@FreeBSD.ORG Subject: Future of FreeBSD ... Date: Mon, 21 Jan 2002 02:25:14 -0500 X-Mailer: KMail [version 1.3] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just read this article in http://dailynews.yahoo.com/h/cn/20020114/tc/freebsd_to_change_hands_1.html How will this affect the "Joe Users" such as myself? Respectfully, Mark Barthelemy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Jan 20 23:47:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 6F34337B404 for ; Sun, 20 Jan 2002 23:47:54 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16SZBA-00064r-00 for questions@FreeBSD.ORG; Mon, 21 Jan 2002 07:47:44 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 90153118C; Mon, 21 Jan 2002 08:47:40 +0100 (CET) Date: Mon, 21 Jan 2002 08:47:40 +0100 From: Cliff Sarginson To: FBSD Questions Subject: Re: you have mail msg at root login Message-ID: <20020121074740.GA1336@raggedclown.net> References: <3C4AD1AB.3030204@rambo.simx.org> <20020120143738.A306@localhost> <20020120154826.A31358@ns.museum.rain.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020120154826.A31358@ns.museum.rain.com> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 03:48:26PM -0800, James Long wrote: > > Also, edit /etc/aliases to divert root's email to your normal user > > account. > > Are there technical reasons to do it this way rather than say, > using the ~root/.forward file? > Does convention count as a technical reason :) It will be a few millisecondseconds faster I guess, the alias checking comes first. Also of course, all the mail that is destined for root may actually have been addressed to one of the many other pseudo-users in the system (postmaster, abuse, etc). You may actually want mail for these users to go to some other admin account. In aliases it is simpler to set this up than diddling around with procmail or whatever in the .forward file. The last reason sounds more convincing than the first two :). -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 0: 8:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.internet.co.nz (mail.internet.co.nz [210.48.22.150]) by hub.freebsd.org (Postfix) with SMTP id 66FF337B416 for ; Mon, 21 Jan 2002 00:08:40 -0800 (PST) Received: (qmail 27469 invoked by uid 505); 21 Jan 2002 08:08:11 -0000 Received: from g.todd@internet.co.nz by mail.iconz with qmail-scanner-1.03 (. Clean. Processed in 0.228277 secs); 21 Jan 2002 08:08:11 -0000 Received: from ip-210-48-25-129.asiaonline.net.nz (HELO Hawk) (210.48.25.129) by 0 with SMTP; 21 Jan 2002 08:08:10 -0000 Date: Mon, 21 Jan 2002 21:11:04 +1300 From: Glenn Todd To: freebsd-questions@FreeBSD.ORG Subject: Cannot start Mozilla Message-ID: <20020121211104.A2787@Hawk.internet.co.nz> Reply-To: g.todd@internet.co.nz Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.3.0 Lines: 24 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have recently updated my ports (portinstall -rR ) and have everything in my system as current, but now cannot get Mozilla to run. I can start the initial set up if I remove the .mozilla from my home directory however, but cannot get pass the create user as the indow will not allow me to set or find a directory path for the .mozilla directory. (it is blank). As I needed a browser so I resorted to installing galeon. It runs but its dialogue windows open with out any text. My guess that I have an old or incompatible library somewhere, has anyone experienced a similar situation and any ideas on the fix. Key installs: FreeBSD Hawk 4.4-STABLE FreeBSD 4.4-STABLE #0 mozilla-0.9.7_2,1 gnome-1.4.1b2_1 Glenn Wellington, New Zealand To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 0:23:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.au.itouchnet.net (e0-apn-fw1.au.itouchnet.net [203.42.71.10]) by hub.freebsd.org (Postfix) with ESMTP id D68B637B417 for ; Mon, 21 Jan 2002 00:23:48 -0800 (PST) Received: from nobody by mx1.au.itouchnet.net with scanned_ok (Exim 3.33 #18) id 16SZmP-000PuO-00 for freebsd-questions@freebsd.org; Mon, 21 Jan 2002 19:26:13 +1100 Received: from athomson.prv.au.itouchnet.net ([192.168.13.55]) by mx1.au.itouchnet.net with esmtp (Exim 3.33 #18) id 16SZmP-000PuF-00 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 19:26:13 +1100 Subject: Re: Cannot start Mozilla From: ajt To: freebsd-questions@FreeBSD.ORG In-Reply-To: <20020121211104.A2787@Hawk.internet.co.nz> References: <20020121211104.A2787@Hawk.internet.co.nz> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/1.0.1 Date: 21 Jan 2002 20:29:32 +1200 Message-Id: <1011601772.36007.42.camel@athomson.prv.au.itouchnet.net> Mime-Version: 1.0 X-Checked: This message has been scanned for any virusses and unauthorized attachments. X-iScan: Version $Id: iScan,v 1.31 2001/01/18 09:25:45 rip Exp $ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I had a similar problem but mozilla would always start... Galeon would start up, but would just display a grey screen. However I was able to right click on this window and enable menus and location bars and everything quasi worked! I had quite a bit of help to resolve this issue however was unable to pin point the cause of the problem... In the end I ended up reinstalling.. but then again.. my system probably needed it at that point too.. ;) I'll be interested to see if anyone else has any other solutions!! Sorry for no help only sympathy!! ;) A On Mon, 2002-01-21 at 20:11, Glenn Todd wrote: > I have recently updated my ports (portinstall -rR ) and > have everything in my system as current, but now cannot get Mozilla to run. > > I can start the initial set up if I remove the .mozilla from my home > directory however, but cannot get pass the create user as the indow will > not allow me to set or find a directory path for the .mozilla directory. > (it is blank). > > As I needed a browser so I resorted to installing galeon. It runs but its > dialogue windows open with out any text. My guess that I have an old or > incompatible library somewhere, has anyone experienced a similar situation > and any ideas on the fix. > > Key installs: > > FreeBSD Hawk 4.4-STABLE FreeBSD 4.4-STABLE #0 > mozilla-0.9.7_2,1 > gnome-1.4.1b2_1 > > Glenn > > Wellington, > New Zealand > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 0:26: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 034CC37B417 for ; Mon, 21 Jan 2002 00:26:01 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id B0990BCEA; Mon, 21 Jan 2002 00:26:00 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id AAA02976; Mon, 21 Jan 2002 00:26:00 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g0L8TNl00702; Mon, 21 Jan 2002 00:29:23 -0800 (PST) (envelope-from swear@blarg.net) To: Cliff Sarginson Cc: freebsd-questions@FreeBSD.ORG Subject: Re: How to change a FreeBSD clock time References: <002501c1a0d2$6682a9a0$0301a8c0@wintellect.com> <20020119102526.GA5105@raggedclown.net> <20020120110618.U60575@wantadilla.lemis.com> <20020120071937.GA1341@raggedclown.net> From: swear@blarg.net (Gary W. Swearingen) Date: 21 Jan 2002 00:29:23 -0800 In-Reply-To: <20020120071937.GA1341@raggedclown.net> Message-ID: Lines: 39 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Cliff Sarginson writes: > I think it is interesting that someone says a PR should be raised > against something in FreeBSD, that is the same in all Unix systems > but is different in Linux. What is probably the problem here is that > coming from Linux to FreeBSD carries with it the assumption, perhaps > understandably, that somehow everything on both systems is sort of the > same. That surely is a common problem, but it's not the only problem. Some FreeBSD newbies have never used any unixy OS. Some, like me have used many, but never had the authority to set the time and never learned how. I try to look at man pages and other documentation from the viewpoint of someone who needs it, not as someone who can often guess how it works from their long experience. There are at least two clocks on these systems. The "date" command only reports the value of one of them and it's not a bad assumption that it only sets the one that it reports. I just don't understand why people so often object to a man page being made less unambiguous or more helpful. > What is called for is probably not a PR for the date page, but > someone to create some kind of brief list of surprises for Linux users > coming to FreeBSD. It would have never have occurred to me that a Linux > user would not know about the "date" command, but that is because I > have worked on Unix systems for a long time. When I first started > looking at Linux this hwclock stuff suprised me ! I think I've seen a list or two like that, but they're 're only as good as your ability and interest in memorizing them and should only be a suppliment to decent documentation that explains what FreeBSD does without the need for guessing and experimentation that is so commonly needed in unix. (I had access to a bookcase full of good DEC VAX documenation for several years, and remember it perhaps too fondly.) > Btw "apropos time" does throw up the "date" command. Sorry, I DID look for it, but missed it in that long, messy scroll. A lot of newbies wouldn't have the patience to examine it, I'll bet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 0:35:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by hub.freebsd.org (Postfix) with ESMTP id 18C4B37B402 for ; Mon, 21 Jan 2002 00:35:22 -0800 (PST) Received: (qmail 27833 invoked from network); 21 Jan 2002 08:35:21 -0000 Received: from unknown (HELO helios.dub.net) ([216.27.176.75]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 21 Jan 2002 08:35:21 -0000 Received: by helios.dub.net (Postfix, from userid 1000) id 13450312A; Mon, 21 Jan 2002 00:35:20 -0800 (PST) Date: Mon, 21 Jan 2002 00:35:20 -0800 From: Jim Mock To: "NetAdmin FoxChat.Net" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Future of FreeBSD ... Message-ID: <20020121083520.GA39725@helios.dub.net> Reply-To: mij@soupnazi.org References: <200201210725.g0L7PLn00649@zapper.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200201210725.g0L7PLn00649@zapper.org> User-Agent: Mutt/1.3.26i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002 at 02:25:14 -0500, NetAdmin FoxChat.Net wrote: > Just read this article in > http://dailynews.yahoo.com/h/cn/20020114/tc/freebsd_to_change_hands_1.html > How will this affect the "Joe Users" such as myself? It won't, just like it didn't when the Walnut Creek CDROM+BSDI merger happened or when Wind River bought BSDi. Well, ok, so there will be more FreeBSD stuff for you to buy (t-shirts, etc.), so that's a good thing :-) - jim -- jim mock http://soupnazi.org/ | jim@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 0:42: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 7963C37B405 for ; Mon, 21 Jan 2002 00:42:07 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 33C23BD2E for ; Mon, 21 Jan 2002 00:42:07 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id AAA04985 for ; Mon, 21 Jan 2002 00:42:06 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g0L8jUC00705; Mon, 21 Jan 2002 00:45:30 -0800 (PST) (envelope-from swear@blarg.net) To: freebsd-questions@FreeBSD.ORG Subject: Re: what is a good language for system administration? References: <20020120132341.29b5cc8d.fxn@isoco.com> From: swear@blarg.net (Gary W. Swearingen) Date: 21 Jan 2002 00:45:30 -0800 In-Reply-To: <20020120132341.29b5cc8d.fxn@isoco.com> Message-ID: Lines: 15 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > I agree, IMHO bad code is not readable independently of the language in > which is written. Once you have mastered Perl, well-written Perl is > crystal clear, and often remarkably brief, concise. I second the > recommendations on studying portable sh and friends, and Perl. Unfortunately, the people who get to pick a systems SA language and who often write the initial round of it, are often very much smarter and more well trained in coding (esp. the langs. they pick) than the bulk of the poor schlums that have to deal with the stuff later or even write new stuff. SA type code is especially often prototypish and hacked up; it's even more important for it to be easy to read and understand than compiled codes for which there is usually more time to be careful. I think this argues strongly for Python (or almost anything) over Perl, as fun and clever as that language may be in the hands of an expert. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 0:42:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from slacknet.slacknet.com (slacknet.slacknet.com [204.228.135.180]) by hub.freebsd.org (Postfix) with ESMTP id EFF2037B402 for ; Mon, 21 Jan 2002 00:42:41 -0800 (PST) Received: from rj45 (helo=localhost) by slacknet.slacknet.com with local-esmtp (Exim 3.12 #1 (Debian)) id 16Sa2L-0004YN-00 for ; Mon, 21 Jan 2002 01:42:41 -0700 Date: Mon, 21 Jan 2002 01:42:41 -0700 (MST) From: RJ45 To: freebsd-questions@freebsd.org Subject: X11 issue Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG How can I force the X11 server to have the VSYNC signal at 100Hz ?? is ther a way to do so?? It has for default a 85Hz VSYNC which is not suitable for my monitor which is trembling. thanks Rick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 0:45:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from speechpro.com (crt-gw.infopro.spb.su [195.201.254.5]) by hub.freebsd.org (Postfix) with ESMTP id 0ED3237B404 for ; Mon, 21 Jan 2002 00:45:10 -0800 (PST) Received: from igorr by sysadm.stc with local (Exim 3.33 #1) id 16Sa6o-0005JP-00 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 11:47:18 +0300 Date: Mon, 21 Jan 2002 11:47:18 +0300 From: Igor Roboul To: freebsd-questions@FreeBSD.ORG Subject: Re: processor compatability Message-ID: <20020121084718.GD19370@sysadm.stc> Reply-To: igorr@speechpro.com Mail-Followup-To: Igor Roboul , freebsd-questions@FreeBSD.ORG References: <002a01c19fac$26606f50$22142518@cn992270a> <20020118090301.GC448@irrelevant.org> <20020118014144.B30632@xor.obsecurity.org> <20020118101046.GA4126@irrelevant.org> <3C487011.3DC527E9@citystamp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3C487011.3DC527E9@citystamp.com> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 18, 2002 at 01:57:21PM -0500, Matthew P. Marino wrote: > run a workstation with some basic web server type apps on PPC hardware, just > stick with OSX. If your goal is to run a server with a wider range of GPL'd apps GPL'd? > and you WANT to learn how it all works, stick with one of the BSD's on Intel. If you wish GPL'd then stick with Linux on Intel. But don't forget that NetBSD works on PPC, and OpenBSD works too. Running servers on PPC give you some additional security, because even if some program has hole alowing executing shell code, but most crackers use shellcode for Intel comatible platforms, so your server-program will just SIGILLed instead of giving access to your server. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 0:56:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay3-gui.server.ntli.net (relay3-gui.server.ntli.net [194.168.4.200]) by hub.freebsd.org (Postfix) with ESMTP id D15B937B402 for ; Mon, 21 Jan 2002 00:56:32 -0800 (PST) Received: from pc3-card4-0-cust122.cdf.cable.ntl.com ([62.254.251.122] helo=rhadamanth.private.submonkey.net ident=exim) by relay3-gui.server.ntli.net with esmtp (Exim 3.03 #2) id 16SaFi-0006Hl-00; Mon, 21 Jan 2002 08:56:30 +0000 Received: from setantae by rhadamanth.private.submonkey.net with local (Exim 3.34 #1) id 16SaFe-0000t1-00; Mon, 21 Jan 2002 08:56:26 +0000 Date: Mon, 21 Jan 2002 08:56:26 +0000 From: Ceri To: Bob Bomar Cc: questions@freebsd.org Subject: Re: Sendmail error: 450 Message-ID: <20020121085626.GC3147@rhadamanth> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.26i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 05:59:45PM -0600, Bob Bomar wrote: > I have sendmail running and listening. But when I tried to send any mail to > questions@freebsd.org, I get an error message in my /var/log/maillog saying > that message could not be delivered here is part of the message: > > ... > stat=Deferred: 450 Client host rejected: cannot find your hostname, [IP > address] > > I have a cable modem with a dynamic IP, so I am useing www.dyndns.org to > supply dynamic DNS. That's not the problem. Your IP address does not have a reverse DNS entry. Bug your ISP. Ceri -- keep a mild groove on To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 1: 1:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from albatross.prod.itd.earthlink.net (albatross.mail.pas.earthlink.net [207.217.120.120]) by hub.freebsd.org (Postfix) with ESMTP id 8E8CC37B41C for ; Mon, 21 Jan 2002 01:01:13 -0800 (PST) Received: from dialup-209.247.139.76.dial1.sanjose1.level3.net ([209.247.139.76] helo=blossom.cjclark.org) by albatross.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16SaK3-0002Oj-00; Mon, 21 Jan 2002 01:01:03 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g0L8xJ969362; Mon, 21 Jan 2002 00:59:19 -0800 (PST) (envelope-from cjc) Date: Mon, 21 Jan 2002 00:59:10 -0800 From: "Crist J . Clark" To: Sir Cc: mwm@mired.org, questions@FreeBSD.ORG Subject: Re: The tower of Hanoi Message-ID: <20020121005910.J66815@blossom.cjclark.org> References: <3C4B83A4.FA87DB7E@mediaone.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C4B83A4.FA87DB7E@mediaone.net>; from postroad@mediaone.net on Sun, Jan 20, 2002 at 09:57:42PM -0500 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 09:57:42PM -0500, Sir wrote: > I was following a thread in the freebsd mailing list that you replied > on. Seems like you have some experience with "dump". A read of the man > pages has a realy baffling bit about the tower of hanoi algorithm. It > says incrementals should be taken on a daily basis 3 2 5 4 7 6 9 8 9 > 9.... It then goes on to say that a weekly should be taken with level > 1. Well, there's more than 7 levels there so I'm not sure how it all > fits together. It's all just a suggestion. If you were to do the once-a-week thing, it would work something like, S S M T W T F 1 3 2 5 4 6 9 Rinse, repeat... The motivation for using that type of algorithm is that you tend to balance the amount of data dumped each day (amount of dump media consumed) versus how many steps one would need to take to restore a filesystem. > It reads like they should be done all in the same day?? No, in the example, we are doing one dump per day. > I > was under the impression you shouldn't "dump" a disk unles it's > umount'd. Ideally, you would like a static filesystem, but this simply is not realistic for most sites. dump(8) has no problem dumping a live file system, but don't fool youself into believing a dump is a "snapshot" of the filesystem. > And, for us real newbies, how do you un-dump?? restore(8). -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 1:25: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from freebie.atkielski.com (ASt-Lambert-101-2-1-14.abo.wanadoo.fr [193.251.59.14]) by hub.freebsd.org (Postfix) with ESMTP id 2E65137B41C for ; Mon, 21 Jan 2002 01:25:04 -0800 (PST) Received: from contactdish ([10.0.0.10]) by freebie.atkielski.com (8.11.3/8.11.3) with SMTP id g0L9OvO03042; Mon, 21 Jan 2002 10:24:57 +0100 (CET) (envelope-from anthony@freebie.atkielski.com) Message-ID: <016e01c1a25d$7f4c0030$0a00000a@atkielski.com> From: "Anthony Atkielski" To: "faisal gillani" , "FreeBSD" References: <20020121050622.15838.qmail@web11005.mail.yahoo.com> Subject: Re: unix password limit Date: Mon, 21 Jan 2002 10:24:58 +0100 Organization: Anthony's Home Page (development site) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Faisal writes: > Unix has a limit on username which is 8 > chareaters right ? All UNIX systems will accept _at least_ eight characters, but some will accept more. The FreeBSD handbook says that user names on FreeBSD should be limited to eight characters. > ... but i have seen unix systems taking a > lot more then that .. how do we make it do > that can someone tell me please ? Even if you have a UNIX system that will accept more than eight characters in a user name, it isn't always a good idea to exceed that length, because many programs may break if they encounter user names longer than eight characters. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 1:48:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id F05DE37B400; Mon, 21 Jan 2002 01:48:44 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g0L9lkw27138; Mon, 21 Jan 2002 11:47:46 +0200 (EET) (envelope-from ru) Date: Mon, 21 Jan 2002 11:47:46 +0200 From: Ruslan Ermilov To: Kenneth Dunlap Cc: "Crist J . Clark" , Kenneth Dunlap , questions@FreeBSD.ORG Subject: Re: kernel build fails after updating source Message-ID: <20020121114746.G16527@sunbay.com> References: <20020119145138.A14394@arrgh.net> <20020119163347.C63556@blossom.cjclark.org> <20020120012051.GA24956@panix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020120012051.GA24956@panix.com> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 19, 2002 at 08:20:51PM -0500, Kenneth Dunlap wrote: > > Quoth Crist J . Clark (cjc@FreeBSD.ORG): > > On Sat, Jan 19, 2002 at 02:51:38PM -0500, Kenneth Dunlap wrote: > > > Updated full stable source on 1/19/2002. Make buildword ran sucessfully. When > > > building a new kernel, it fails in the one of the linux compat modules. > > > I used the version of config in the new build tree. > > > The first set of errors (of many) before make quits is: > > > > > > In file included from linux_sysent.c:14: > > > linux_proto.h:57: syntax error before `linux_time_t' > > > linux_proto.h:57: `linux_time_t' undeclared here (not in a function) > > > linux_proto.h:57: syntax error before `)' > > > linux_proto.h:57: `linux_time_t' undeclared here (not in a function) > > > linux_proto.h:57: syntax error before `)' > > > > > > I followed the instructions in /usr/src/UPDATE, and ran make modules-clean > > > (and make clean) before compiling. > > > > > > Any help would be appreciated. > > > > You said you are using the buildkernel target? Do, > > > > # rm -rf /usr/obj/usr/src/sys/$KERNCONF > > > > And see what happens. > > The problem did not happen with the buildkernel GENERIC target, but does happen > if I do, for instance, make -j4 depend && make -j4 on a 'traditional' > kernel build. As it turns out, the problem does not occur if I leave out > the '-j4; argument. Strange, but I did get the kernel compiled. > I don't believe we support parallel (-j) buildkernel at the moment. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 2: 1:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 3C32B37B419; Mon, 21 Jan 2002 02:01:04 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g0LA0FM28992; Mon, 21 Jan 2002 12:00:15 +0200 (EET) (envelope-from ru) Date: Mon, 21 Jan 2002 12:00:15 +0200 From: Ruslan Ermilov To: Dan Langille Cc: freebsd-newbies@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: The FreeBSD Diary: 2001-12-30 - 2002-01-19 Message-ID: <20020121120015.H16527@sunbay.com> References: <20020120051006.5D8ED7A8B@m20.unixathome.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020120051006.5D8ED7A8B@m20.unixathome.org> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 12:10:06AM -0500, Dan Langille wrote: > 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 . > > These are the articles posted during this period: > > 16-Jan : Your Makefile has been rebuilt. > One very annoying failure of make buildworld... > http://freebsddiary.org/badtime.php?2 > I can add to this. Even if the date is set correctly, one still can experience the behaviour like this if some source files have modification dates pointing to a future time. A simple tool to eliminate these inconsistencies is ``find . -mtime -0'' followed by ``xargs touch''. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 2:44:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx2.port.ru (mx2.mail.ru [194.67.57.12]) by hub.freebsd.org (Postfix) with ESMTP id 21A9137B400 for ; Mon, 21 Jan 2002 02:44:29 -0800 (PST) Received: from f3.int ([10.0.0.50] helo=f3.mail.ru) by mx2.port.ru with esmtp (Exim 3.14 #1) id 16SbwB-00006N-00 for questions@freebsd.org; Mon, 21 Jan 2002 13:44:27 +0300 Received: from mail by f3.mail.ru with local (Exim 3.14 #1) id 16SbwB-000Ony-00 for questions@freebsd.org; Mon, 21 Jan 2002 13:44:27 +0300 Received: from [213.154.195.90] by win.mail.ru with HTTP; Mon, 21 Jan 2002 13:44:27 +0300 From: "Duke" To: questions@freebsd.org Cc: Subject: Ip-sec interface for MRTG (or SNMPd). Mime-Version: 1.0 X-Mailer: mPOP Web-Mail 2.19 X-Originating-IP: [213.154.195.90] Date: Mon, 21 Jan 2002 13:44:27 +0300 Reply-To: "Duke" Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Message-Id: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG MRTG doesn't work on gif0(ip-sec) interface. Thenk's. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 2:50:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from garfield.bmk.com.au (bmkind.lnk.telstra.net [139.130.51.118]) by hub.freebsd.org (Postfix) with ESMTP id 0D72D37B404 for ; Mon, 21 Jan 2002 02:50:46 -0800 (PST) Received: from localhost (brendan@localhost) by garfield.bmk.com.au (8.9.3/8.9.3) with SMTP id VAA00488 for ; Mon, 21 Jan 2002 21:50:33 +1100 (EST) (envelope-from brendan@bmk.com.au) Date: Mon, 21 Jan 2002 21:50:32 +1100 (EST) From: Brendan Kosowski To: FreeBSD Questions Subject: X-Windows/KDE setup question Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have installed FreeBSD 4.3 ( X-User option ) and have also configured the X-Server and installed KDE sucessfully. When I startx, KDE comes up in a 640 x 480 pixel mode with very poor color depth. This was one of the modes supported by my card/x-server. However there were lots of other better modes available ( according to xf86config ). How do I tell the box that I want KDE to come up in 800 x 600 pixels with a depth of 64k colors ??? Thanks & Regards, Brendan... ---------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 2:55: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailout.fastq.com (mailout.fastq.com [204.62.193.66]) by hub.freebsd.org (Postfix) with ESMTP id 05C8837B419 for ; Mon, 21 Jan 2002 02:55:05 -0800 (PST) Received: from broken (d147-osel.phx.fastq.com [216.190.249.179]) by mailout.fastq.com (8.11.3/8.11.3.FastQ-MailOut) with ESMTP id g0LAt2T45133 for ; Mon, 21 Jan 2002 03:55:03 -0700 (MST) (envelope-from dan@ript.org) From: "Dan Trainor" To: Subject: RE: X-Windows/KDE setup question Date: Mon, 21 Jan 2002 04:07:55 -0700 Message-ID: <00e701c1a26b$e4a1e4a0$0100a8c0@broken> 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 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 In-Reply-To: Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Check out (in linux it was /etc/X11/XF86Config) /usr/local/etc/X11/XF86Config (double-check that location), and see if there are several modes listed. I believe that the first mode listed is the default. To switch modes, to see if different modes are actually available, hold down CTRL + ALT + - (minus) or CTRL + ALT + + (plus). That's like changing the resolution through Windows' Display setting. I think that's the proper combination.. it's been a while since I've used X. -dt -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG] On Behalf Of Brendan Kosowski Sent: Monday, January 21, 2002 3:51 AM To: FreeBSD Questions Subject: X-Windows/KDE setup question I have installed FreeBSD 4.3 ( X-User option ) and have also configured the X-Server and installed KDE sucessfully. When I startx, KDE comes up in a 640 x 480 pixel mode with very poor color depth. This was one of the modes supported by my card/x-server. However there were lots of other better modes available ( according to xf86config ). How do I tell the box that I want KDE to come up in 800 x 600 pixels with a depth of 64k colors ??? Thanks & Regards, Brendan... ---------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 3:14:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from swan.prod.itd.earthlink.net (swan.mail.pas.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id 664BC37B402 for ; Mon, 21 Jan 2002 03:14:50 -0800 (PST) Received: from sdn-ar-003dcwashp104.dialsprint.net ([206.133.21.64] helo=moo.holy.cow) by swan.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16ScPV-00078p-00 for freebsd-questions@freebsd.org; Mon, 21 Jan 2002 03:14:46 -0800 Received: by moo.holy.cow (Postfix, from userid 1001) id 0D89150B8C; Mon, 21 Jan 2002 06:16:45 -0500 (EST) Date: Mon, 21 Jan 2002 06:16:45 -0500 From: parv To: f-q Subject: how to set resource limits Message-ID: <20020121111645.GA381@moo.holy.cow> Mail-Followup-To: f-q Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG last time i set the limits in /etc/login.conf, i couldn't start the X server (not enough memory allocation). i don't want to repeat my previous mistake as to start X again it involved 2-3 reboots. a few minutes ago, netscape 4.79 swelled to about >500M in both SIZE and RES as indicated by top(1) (everything slowed, had to kill it). i had read the man pages for limits, my shell (bash), and login.conf. in login.conf, everything is unlimited; current limits are... cputime infinity secs filesize infinity kb datasize 524288 kb stacksize 65536 kb coredumpsize infinity kb memoryuse infinity kb memorylocked infinity kb maxprocesses 1861 openfiles 3722 sbsize infinity bytes will (top(1)) "RES" be affected by changing (login.conf(5)) "memoryuse" and "memorylocked" eventually, and "SIZE" by "datasize", "filesize", and "stacksize"? how should i start setting/testing resource limits again? - parv -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 3:31:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id C879D37B405 for ; Mon, 21 Jan 2002 03:31:42 -0800 (PST) Received: from sdn-ar-003dcwashp104.dialsprint.net ([206.133.21.64] helo=moo.holy.cow) by gull.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16Scft-0007lV-00; Mon, 21 Jan 2002 03:31:42 -0800 Received: by moo.holy.cow (Postfix, from userid 1001) id CCC5350B8C; Mon, 21 Jan 2002 06:33:41 -0500 (EST) Date: Mon, 21 Jan 2002 06:33:41 -0500 From: parv To: Kenneth Dunlap Cc: questions@FreeBSD.ORG Subject: Re: kernel build fails after updating source Message-ID: <20020121113341.GA645@moo.holy.cow> Mail-Followup-To: Kenneth Dunlap , questions@FreeBSD.ORG References: <20020119145138.A14394@arrgh.net> <20020119163347.C63556@blossom.cjclark.org> <20020120012051.GA24956@panix.com> <20020121114746.G16527@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020121114746.G16527@sunbay.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 19, 2002 at 02:51:38PM -0500, Kenneth Dunlap wrote: > Updated full stable source on 1/19/2002. Make buildword ran sucessfully. When > building a new kernel, it fails in the one of the linux compat modules. > I used the version of config in the new build tree. > The first set of errors (of many) before make quits is: > > In file included from linux_sysent.c:14: > linux_proto.h:57: syntax error before `linux_time_t' > linux_proto.h:57: `linux_time_t' undeclared here (not in a function) > linux_proto.h:57: syntax error before `)' > linux_proto.h:57: `linux_time_t' undeclared here (not in a function) > linux_proto.h:57: syntax error before `)' if nothing else works, see the "building kernel problem w/ linux_proto.h" thread on -stable mailing list, message-id: <20020106152858.GA12180@moo.holy.cow>, started in jan 6 2002. -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 4:16:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from dire.bris.ac.uk (dire.bris.ac.uk [137.222.10.60]) by hub.freebsd.org (Postfix) with ESMTP id 8A83E37B405 for ; Mon, 21 Jan 2002 04:16:44 -0800 (PST) Received: from mail.ilrt.bris.ac.uk by dire.bris.ac.uk with SMTP-PRIV with ESMTP; Mon, 21 Jan 2002 12:16:25 +0000 Received: from cmjg (helo=localhost) by mail.ilrt.bris.ac.uk with local-esmtp (Exim 3.16 #1) id 16SdMV-0007ZZ-00; Mon, 21 Jan 2002 12:15:43 +0000 Date: Mon, 21 Jan 2002 12:15:43 +0000 (GMT) From: Jan Grant X-X-Sender: cmjg@mail.ilrt.bris.ac.uk To: Bernie Cc: freebsd-questions@FreeBSD.ORG Subject: Re: magic number on fs? In-Reply-To: <20020118212448.C2070-100000@BLAST> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 18 Jan 2002, Bernie wrote: > > hello, > > can anyone tell me if it's not too much trouble, > what's the so called 'magic number' on filesystems? > > thanks a lot and sorry for slightly irrelevant > question... Have a look at the jargon file, definition #3: Special data located at the beginning of a binary data file to indicate its type to a utility. there's a bit more there about these. -- jan grant, ILRT, University of Bristol. http://www.ilrt.bris.ac.uk/ Tel +44(0)117 9287088 Fax +44 (0)117 9287112 RFC822 jan.grant@bris.ac.uk ioctl(2): probably the coolest Unix system call in the world To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 4:45:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from jocke.transit.net (jocke.globalwire.se [213.136.48.103]) by hub.freebsd.org (Postfix) with ESMTP id AD0BD37B41C for ; Mon, 21 Jan 2002 04:45:07 -0800 (PST) Received: from tjatte.globalwire.se (tjatte.globalwire.se [213.136.48.100]) by jocke.transit.net (Postfix) with ESMTP id 7E004B834 for ; Mon, 21 Jan 2002 13:44:58 +0100 (CET) Date: Mon, 21 Jan 2002 13:45:21 +0100 (CET) From: Stefan Cars To: questions@freebsd.org Subject: cvsup to 4.5 ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I want to cvsup to the 4.5-RC2 or prerelease, what tag should I use in my cvsup file ? RELENG_4_5? /Stefan ----------------- Stefan Cars CTO Globalwire Communications Phone: +46 18 10 79 50 Mobile(UK): +44 788 061 36 69 Mobile(SE): +46 708 44 36 00 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 4:49:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by hub.freebsd.org (Postfix) with ESMTP id 0D59537B404 for ; Mon, 21 Jan 2002 04:49:27 -0800 (PST) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id EAA05965; Mon, 21 Jan 2002 04:49:20 -0800 Message-ID: <3C4C0E50.4010009@owt.com> Date: Mon, 21 Jan 2002 04:49:20 -0800 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Stefan Cars Cc: questions@FreeBSD.ORG Subject: Re: cvsup to 4.5 ? References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Stefan Cars wrote: > I want to cvsup to the 4.5-RC2 or prerelease, what tag should I use in my > cvsup file ? RELENG_4_5? RELENG_4 is the only thing that exists right now. That covers the 4.5-rc. Kent -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://users.owt.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 4:50:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tntpro.com (159-63.suscom-maine.net [207.5.159.63]) by hub.freebsd.org (Postfix) with ESMTP id 674D137B402 for ; Mon, 21 Jan 2002 04:50:34 -0800 (PST) Received: from celery (celery.tntpro.com [192.168.0.13]) by tntpro.com (8.11.6/8.11.6) with SMTP id g0LCoD100809; Mon, 21 Jan 2002 07:50:14 -0500 (EST) (envelope-from tony@tntpro.com) From: "tony" To: "Stefan Cars" , Subject: RE: cvsup to 4.5 ? Date: Mon, 21 Jan 2002 07:50:05 -0500 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 V6.00.2600.0000 In-Reply-To: Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG *default release=cvs tag=RELENG_4 that will get you the 4.x tree as it progresses from rc to rc2 to release to stable no matter if its 4.3 or 4.4 or 4.5 ciao, tony -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Stefan Cars Sent: Monday, January 21, 2002 7:45 AM To: questions@FreeBSD.ORG Subject: cvsup to 4.5 ? I want to cvsup to the 4.5-RC2 or prerelease, what tag should I use in my cvsup file ? RELENG_4_5? /Stefan ----------------- Stefan Cars CTO Globalwire Communications Phone: +46 18 10 79 50 Mobile(UK): +44 788 061 36 69 Mobile(SE): +46 708 44 36 00 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 4:51:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 49E9C37B400 for ; Mon, 21 Jan 2002 04:51:46 -0800 (PST) Received: from trittico.fiddi.com ([12.228.145.237]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020121125145.YMLU10199.rwcrmhc53.attbi.com@trittico.fiddi.com> for ; Mon, 21 Jan 2002 12:51:45 +0000 Date: Mon, 21 Jan 2002 04:51:45 -0800 (PST) From: Dave Runkle X-X-Sender: dave@trittico.fiddi.com To: FBSD Questions Subject: RE: Windows internet explorer FTP to FBSD In-Reply-To: Message-ID: <20020121044510.I25007-100000@trittico.fiddi.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 18 Jan 2002, Joe & Fhe Barbish wrote: > [snip] > Can not find where to tell internet explorer to enable passive. What version of IE are you using? I have a box nearby that has IE6 (from XP Pro), and to set passive you do: - Tools - Options - Advanced - Browsing - Use passive FTP (for firewall and DSL modem compatibility) (Passive FTP radio button is just under "Use inline autocomplete" and just above "use smooth scrolling", also nearby is the selection for "underline links") Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 4:55:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from linuxmail.touchtunes.com (operator.touchtunes.com [216.94.139.201]) by hub.freebsd.org (Postfix) with ESMTP id 14E1A37B405 for ; Mon, 21 Jan 2002 04:55:11 -0800 (PST) Received: from sunder.touchtunes.com (sunder.touchtunes.com [192.168.0.26]) by linuxmail.touchtunes.com (8.9.3/8.8.7) with ESMTP id HAA03485 for ; Mon, 21 Jan 2002 07:55:10 -0500 Received: (from dinjo@localhost) by sunder.touchtunes.com (8.11.6/8.11.6) id g0LCtAB00395 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 07:55:10 -0500 (EST) (envelope-from dinjo) Date: Mon, 21 Jan 2002 07:55:10 -0500 From: Joel Dinel To: freebsd-questions@FreeBSD.ORG Subject: Freshports and the master ports tree Message-ID: <20020121075510.A372@sunder.touchtunes.com> Mail-Followup-To: Joel Dinel , freebsd-questions@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-Useless-Header: Look ma, it's a # sign! X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG What's the usual ammount of time between a port update on FreshPorts.org amd a port update on the master FreeBSD ports tree? I've been waiting for a patch for TSL support in Postfix (not -current). The port's been updated on freshport.org as of Jan.17, but it's still nowhere to be found in the ports tree (updated daily). Freshports Postfix version : 20010228.8 Ports Postfix version : 20010228.8_1 Thanks, -- Joel Dinel System Administrator TouchTunes Digital Jukebox, Inc. GnuPG key : http://darkhost.mine.nu:81/~joel/misc/mykey.asc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 4:59:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from razor.arnes.si (razor.arnes.si [193.2.1.80]) by hub.freebsd.org (Postfix) with ESMTP id 2164137B402 for ; Mon, 21 Jan 2002 04:59:12 -0800 (PST) Received: from slovenia (cmb3-70.dial-up.arnes.si [194.249.40.70]) by razor.arnes.si (Postfix) with ESMTP id EACD9EEFF for ; Mon, 21 Jan 2002 11:38:24 +0100 (MET) From: "Andrej" To: Subject: Problem with time Date: Mon, 21 Jan 2002 11:38:47 +0100 Organization: Keson Network Message-ID: <000d01c1a267$cfdbe330$4628f9c2@slovenia> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000E_01C1A270.31A04B30" 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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000E_01C1A270.31A04B30 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hello, i'm writing you with the following problem... recently syslogd started to log the wrong time, it and hourd behing the system time and i don't know why this suddenly happened Jan 21 10:34:39 keson /kernel: Connection attempt to UDP 127.0.0.1:4544 from 127.0.0.1:53 su-2.05# date Mon Jan 21 11:35:49 CET 2002 syslog is an hour behind, but i set the time zone and everything so i really don't know the problem, could you maybe help me ? i have the latest freebsd 4.4-stable installed. Sincerely, Andrej --- o --- Keson Network evilset@keson.net abuse@keson.net --- o --- ------=_NextPart_000_000E_01C1A270.31A04B30 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Message
 
Hello,
i'm writing you with the following problem... = recently=20 syslogd started to log the wrong time, it and hourd behing the system = time and i=20 don't know why this suddenly happened
 
Jan 21=20 10:34:39 keson /kernel: Connection attempt to UDP 127.0.0.1:4544 from=20 127.0.0.1:53
su-2.05#=20 date
Mon Jan 21 11:35:49 CET 2002
 
syslog = is an hour=20 behind, but i set the time zone and everything so i really don't know = the=20 problem, could you maybe help me ? i have the latest freebsd 4.4-stable=20 installed.
 
Sincerely,
 
Andrej

--- o ---
Keson Network
evilset@keson.net
abuse@keson.net
--- o=20 ---
 
------=_NextPart_000_000E_01C1A270.31A04B30-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 5: 4:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from urdvg136.cms.usa.net (urdvg136.cms.usa.net [204.68.25.136]) by hub.freebsd.org (Postfix) with SMTP id A150637B404 for ; Mon, 21 Jan 2002 05:04:34 -0800 (PST) Received: (qmail 24845 invoked from network); 21 Jan 2002 13:06:25 -0000 Received: from cpdvg100.netaddress.usa.net (165.212.8.100) by outbound.postoffice.net with SMTP; 21 Jan 2002 13:06:25 -0000 Received: (qmail 17614 invoked by uid 60001); 21 Jan 2002 13:04:42 -0000 Message-ID: <20020121130442.17613.qmail@cpdvg100.netaddress.usa.net> Received: from 146.101.148.228 [146.101.148.228] by cpdvg100.netaddress.usa.net (USANET web-mailer 34FM.0700.28.01B); Mon, 21 Jan 2002 13:04:42 +0000 Date: 22 Jan 2002 00:04:42 EST From: Scott Aitken To: freebsd-questions@FreeBSD.ORG Subject: /usr/libexec/ld-elf.so.1: Shared object "libXaw.so.6" not found X-Mailer: USANET web-mailer (34FM.0700.28.01B) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, this just started happening, in that cron has successfully run the follow= ing command once a month without a problem: /usr/local/bin/cvsup -g -L 2 -P m /root/ports-supfile However, the last time cron attempted it, the following error appeared in= the logs. It also appears when I run the above command at the su# prompt. /usr/libexec/ld-elf.so.1: Shared object "libXaw.so.6" not found According to pkg_version, CVSup is up to date. I'm not running X. TIA Scott ____________________________________________________________________ Get free e-mail and a permanent address at http://www.amexmail.com/?A=3D1= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 5:11:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id D863A37B43F for ; Mon, 21 Jan 2002 05:11:26 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.11.6/8.11.6) id g0LDBPH53081; Mon, 21 Jan 2002 08:11:25 -0500 (EST) (envelope-from mwlucas) Date: Mon, 21 Jan 2002 08:11:25 -0500 From: Michael Lucas To: Kenneth W Cochran Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Mozilla plugins; Windows Media, QuickTime, Java2 Message-ID: <20020121081125.A52896@blackhelicopters.org> References: <200201210445.XAA9379861@shell.TheWorld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200201210445.XAA9379861@shell.TheWorld.com>; from kwc@TheWorld.com on Sun, Jan 20, 2002 at 11:45:43PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 11:45:43PM -0500, Kenneth W Cochran wrote: > Also, roughly how far are we from having Mozilla plugin > support for Java2? > > Where could I find relevant information? (aka "FM" to "RT" :) The FM in this case is the freebsd-java mailing list archives. If Java/Mozilla is working, you can expect to find someone dancing for joy, angelic trumpets, and 1000 elephants parading down the list. -- Michael Lucas mwlucas@FreeBSD.org, mwlucas@BlackHelicopters.org my FreeBSD column: http://www.oreillynet.com/pub/q/Big_Scary_Daemons http://www.blackhelicopters.org/~mwlucas/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 5:12: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 0E50737B425 for ; Mon, 21 Jan 2002 05:11:56 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.11.6/8.11.6) id g0LDBsM53098; Mon, 21 Jan 2002 08:11:54 -0500 (EST) (envelope-from mwlucas) Date: Mon, 21 Jan 2002 08:11:54 -0500 From: Michael Lucas To: Fabio Yasusi Yamamoto Cc: questions@FreeBSD.ORG Subject: Re: Xfree86 4.2.0 Message-ID: <20020121081154.B52896@blackhelicopters.org> References: <3C4BC194.5000906@hostname.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C4BC194.5000906@hostname.org>; from fabio@hostname.org on Mon, Jan 21, 2002 at 05:21:56AM -0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 05:21:56AM -0200, Fabio Yasusi Yamamoto wrote: > Xfree86 4.2.0 will be on freebsd 4.5? Nope. It will probably be on 4.6, though. -- Michael Lucas mwlucas@FreeBSD.org, mwlucas@BlackHelicopters.org my FreeBSD column: http://www.oreillynet.com/pub/q/Big_Scary_Daemons http://www.blackhelicopters.org/~mwlucas/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 5:12:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from monster.datasoft.nl (monster.wellance.com [195.193.128.24]) by hub.freebsd.org (Postfix) with ESMTP id CCF3E37B41A for ; Mon, 21 Jan 2002 05:12:01 -0800 (PST) Received: by monster.wellance.com with Internet Mail Service (5.5.2653.19) id ; Mon, 21 Jan 2002 14:22:34 +0100 Message-ID: <0107A170FEECD211ABE500104BD665BBFF027D@monster.wellance.com> From: Stefan de Zeeuw To: "Questions@Freebsd. Org (E-mail)" Subject: RE: telnet/ftp security Date: Mon, 21 Jan 2002 14:22:33 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C1A27E.AF66E660" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C1A27E.AF66E660 Content-Type: text/plain; charset="iso-8859-1" joe, if you're searching for good ssh/sftp clients for windows you can best look at one of the mirrors of ssh.com. you can download one there. -stef -----Original Message----- From: jacks@sage-american.com [mailto:jacks@sage-american.com] Sent: Saturday, January 19, 2002 9:04 PM To: Joe & Fhe Barbish; Alfatrion Cc: FBSD Questions Subject: RE: telnet/ftp security Joe: SSH and sftp are FBSD. SSH should be already setup and running on your FBSD machine and can be accessed from a Win client capable of ssh1/ssh2. It accesses thru port 22. You will need to install sftp on the FBSD server and setup the Win FTP client to use ssh if you have one that can do so.... At 02:48 PM 1.19.2002 -0500, Joe & Fhe Barbish wrote: >I only access the FBSD/gateway/ipfw box from ms/windows >machines. You implied the SSH(v2) and sftp are the >equivalent encrypted versions of telnet & ftp. >Are these windows clients, and if so where do I get >them from? > >I read the man skey and it's assocated other commands >man pages. As usual these man pages lacks any how to >setup and use info. >Is there any how-to-use infor you can point me to? > >Thanks >Joe > >-----Original Message----- >From: Alfatrion [mailto:alfatrion@cybertron.tmfweb.nl] >Sent: Saturday, January 19, 2002 11:32 AM >To: Joe & Fhe Barbish >Cc: FBSD Questions >Subject: Re: telnet/ftp security > >Hello Joe, > >Saturday, January 19, 2002, 5:08:57 PM, you wrote: > >JFB> I have telnet & FTP ID/PW access to my FBSD gateway/ipfw >JFB> box from the internet. Are there any security holes in >JFB> these two applications that would allow breaking into my system? > >The biggest security holes in those application is the lack of >security. Both application send the usernames, passwords and the data >unencrypted. All one has to do is sniff the username and passwords to >gain access to the system. SSH(v2) and sftp are the equivalent >encrypted versions. (a lot of other procolls are unsave to, like pop3, >smtp, ect.) > >I have my machine set up so that it can not be reached from the >internet with telnet, but did leave other procols untouched. To >compromis for this i installed the use of one-time-use password, for >certain users. You can check 'man skey' for this. > >-- >Best regards, > Alfatrion mailto:alfatrion@cybertron.tmfweb.nl > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message ------_=_NextPart_001_01C1A27E.AF66E660 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: telnet/ftp security

 joe, if you're searching for good ssh/sftp = clients for windows you can best look at one of the mirrors of ssh.com. = you can download one there.

-stef

-----Original Message-----
From: jacks@sage-american.com [mailto:jacks@sage-american.com]
Sent: Saturday, January 19, 2002 9:04 PM
To: Joe & Fhe Barbish; Alfatrion
Cc: FBSD Questions
Subject: RE: telnet/ftp security


Joe: SSH and sftp are FBSD. SSH should be already = setup and running on your
FBSD machine and can be accessed from a Win client = capable of ssh1/ssh2. It
accesses thru port 22.

You will need to install sftp on the FBSD server and = setup the Win FTP
client to use ssh if you have one that can do = so....

At 02:48 PM 1.19.2002 -0500, Joe & Fhe Barbish = wrote:
>I only access the FBSD/gateway/ipfw box from = ms/windows
>machines. You implied the SSH(v2) and sftp are = the
>equivalent encrypted versions of telnet & = ftp.
>Are these windows clients, and if so where do I = get
>them from?
>
>I read the man skey and it's assocated other = commands
>man pages. As usual these man pages lacks any = how to
>setup and use info.
>Is there any how-to-use infor you can point me = to?
>
>Thanks
>Joe 
>
>-----Original Message-----
>From: Alfatrion [
mailto:alfatrion@cybertron= .tmfweb.nl]
>Sent: Saturday, January 19, 2002 11:32 AM
>To: Joe & Fhe Barbish
>Cc: FBSD Questions
>Subject: Re: telnet/ftp security
>
>Hello Joe,
>
>Saturday, January 19, 2002, 5:08:57 PM, you = wrote:
>
>JFB> I have telnet & FTP ID/PW access to = my FBSD gateway/ipfw
>JFB> box from the internet. Are there any = security holes in
>JFB> these two applications that would allow = breaking into my system?
>
>The biggest security holes in those application = is the lack of
>security. Both application send the usernames, = passwords and the data
>unencrypted. All one has to do is sniff the = username and passwords to
>gain access to the system. SSH(v2) and sftp are = the equivalent
>encrypted versions. (a lot of other procolls are = unsave to, like pop3,
>smtp, ect.)
>
>I have my machine set up so that it can not be = reached from the
>internet with telnet, but did leave other = procols untouched. To
>compromis for this i installed the use of = one-time-use password, for
>certain users. You can check 'man skey' for = this.
>
>--
>Best regards,
> = Alfatrion          &nb= sp;           &nb= sp;     mailto:alfatrion@cybertron= .tmfweb.nl
>
>
>To Unsubscribe: send mail to = majordomo@FreeBSD.org
>with "unsubscribe freebsd-questions" = in the body of the message
>
>

Best regards,
Jack L. Stone,
Server Admin

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D
Sage-American
http://www.sage-american.com
jacks@sage-american.com

"My center is giving way, my right is in = retreat;
....situation excellent! ....I shall = attack!"
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D

To Unsubscribe: send mail to = majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in = the body of the message

------_=_NextPart_001_01C1A27E.AF66E660-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 5:13:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id AEC7F37B433 for ; Mon, 21 Jan 2002 05:13:11 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.11.6/8.11.6) id g0LDD6353128; Mon, 21 Jan 2002 08:13:06 -0500 (EST) (envelope-from mwlucas) Date: Mon, 21 Jan 2002 08:13:06 -0500 From: Michael Lucas To: Jim Mock Cc: "NetAdmin FoxChat.Net" , freebsd-questions@FreeBSD.ORG Subject: Re: Future of FreeBSD ... Message-ID: <20020121081306.C52896@blackhelicopters.org> References: <200201210725.g0L7PLn00649@zapper.org> <20020121083520.GA39725@helios.dub.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121083520.GA39725@helios.dub.net>; from mij@soupnazi.org on Mon, Jan 21, 2002 at 12:35:20AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 12:35:20AM -0800, Jim Mock wrote: > On Mon, 21 Jan 2002 at 02:25:14 -0500, NetAdmin FoxChat.Net wrote: > > Just read this article in > > http://dailynews.yahoo.com/h/cn/20020114/tc/freebsd_to_change_hands_1.html > > How will this affect the "Joe Users" such as myself? > > It won't, just like it didn't when the Walnut Creek CDROM+BSDI merger > happened or when Wind River bought BSDi. > > Well, ok, so there will be more FreeBSD stuff for you to buy (t-shirts, > etc.), so that's a good thing :-) We will also have a company who has a solid interest in FreeBSD, instead of FreeBSD being just one of many products. ==ml -- Michael Lucas mwlucas@FreeBSD.org, mwlucas@BlackHelicopters.org my FreeBSD column: http://www.oreillynet.com/pub/q/Big_Scary_Daemons http://www.blackhelicopters.org/~mwlucas/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 5:18: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from th11.opsion.fr (th11.opsion.fr [195.219.20.21]) by hub.freebsd.org (Postfix) with SMTP id E2B6337B416 for ; Mon, 21 Jan 2002 05:17:59 -0800 (PST) Received: from 194.7.176.228 [194.7.176.228] by th11.opsion.fr; Mon, 21 Jan 2002 13:17:52 GMT Reply-To: From: "Olivier Windels" To: "Freebsd-Questions" Subject: Hardware support in FreeBSD 4.4 for IBM ServerRaid Controller Date: Mon, 21 Jan 2002 14:15:52 +0100 Message-ID: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_001D_01C1A286.21EC5BA0" 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.50.4522.1200 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_001D_01C1A286.21EC5BA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Hi, Just a little question ... Can anybody tell me if IBM´s ServerRAID 4 Lx Ultra 160 SCSI Controller is supported under FreeBSD 4.4 stable ? I know that IBM has released drivers for several Linux distros but nothing for FreeBSD, any clue ? Thanks anyway. ------=_NextPart_000_001D_01C1A286.21EC5BA0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi,
 
Just a = little=20 question ...
 
Can = anybody tell me=20 if IBM=B4s ServerRAID 4 Lx Ultra 160 SCSI Controller is supported under = FreeBSD=20 4.4 stable ?
I know = that IBM has=20 released drivers for several Linux distros but nothing for FreeBSD, any = clue=20 ?
 
Thanks = anyway.
 
------=_NextPart_000_001D_01C1A286.21EC5BA0-- ______________________________________________________________________________ ifrance.com, l'email gratuit le plus complet de l'Internet ! vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP... http://www.ifrance.com/_reloc/email.emailif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 5:21: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from genesis.powertrip.net (genesis.powertrip.net [204.216.129.4]) by hub.freebsd.org (Postfix) with ESMTP id 084CF37B404 for ; Mon, 21 Jan 2002 05:20:55 -0800 (PST) Received: from localhost (epiphani@localhost) by genesis.powertrip.net (8.11.1/8.9.3) with ESMTP id g0LDKtl15569 for ; Mon, 21 Jan 2002 05:20:55 -0800 Date: Mon, 21 Jan 2002 05:20:55 -0800 (PST) From: Aaron To: freebsd-questions@freebsd.org Subject: Odd webserver problem.. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Greetings, I'm cross-posting this with the freebsd support people and an apache support list, as I'm downright confused as to what is causing my problem. I administrate a number of machines, one of which doing primarily virtual web hosting on a FreeBSD 4.4-REL machine using apache 1.3.22. The throughput is often peeks slightly over 15 Mbits, all of that being http traffic. However, at seemingly random times, the machine goes completely unreachable, or becomes extremely slow in all ip socket operations. Sometimes this can happen for as little as 30 minutes, other times can last for in excess of 6 hours (if it goes only slow, where icmp and tcp traffic still get through, but any content retrieval fails - which is why i dont get paged.) I've spend the past few weeks attempting to find some way of finding the cause of this, but I'm stumped. When the machine goes completely unreachable, it comes back by itself, without having rebooted. When I find the server laggy, after waiting 5 minutes to log in, i restart apache, and it kicks back up. The load averages during this go through the roof, but process number, cpu usage, ram usege all seem normal. So heres my problem. If it is an apache problem, why does the entire machine respond as if im getting hit with 40 megs of UDP. (which im not, already checked that.) If its a socket handling problem, why does an apache restart fix it. Here are some machine specs: Dual Xeon 600 w/ 512ram && 1 gig swap dual 18 gig scsi && 30 gig ide FreeBSD 4.4-REL pseudo-device bpf #Berkeley packet filter options ICMP_BANDLIM #Rate limit bad replies options KTRACE #ktrace(1) support kern.maxfiles: 16424 kern.maxvnodes: 40211 kern.maxproc: 8212 kern.maxfilesperproc: 16424 kern.maxprocperuid: 8211 kern.ipc.nmbclusters: 32768 Some Apache info: ServerType standalone Timeout 300 KeepAlive On MaxKeepAliveRequests 100 KeepAliveTimeout 15 MinSpareServers 100 MaxSpareServers 200 StartServers 600 MaxClients 4096 MaxRequestsPerChild 30 (Other than the paths and fd table, its a default build for freebsd, with all the modules.) Any help anyone can give would be very much appreciated. I'm not a member of either of these lists, so please remember to include my address in responces. Thanks, Aaron Wiebe Quik-Host.net Systems Admin DALnet Senior Coder To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 5:26: 5 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mcqueen.wolfsburg.de (pns.wobline.de [212.68.68.5]) by hub.freebsd.org (Postfix) with ESMTP id 88D8D37B416 for ; Mon, 21 Jan 2002 05:25:51 -0800 (PST) Received: from colt.ncptiddische.net (ppp-166.wobline.de [212.68.69.174]) by mcqueen.wolfsburg.de (8.11.3/8.11.3/tw-20010821) with ESMTP id g0LDPOa04124; Mon, 21 Jan 2002 14:25:24 +0100 Received: from tisys.org (jodie.ncptiddische.net [192.168.0.2]) by colt.ncptiddische.net (8.11.6/8.11.6) with ESMTP id g0LDRFX94629; Mon, 21 Jan 2002 14:27:15 +0100 (CET) (envelope-from nils@tisys.org) Received: (from nils@localhost) by tisys.org (8.11.6/8.11.6) id g0LDQ2f01863; Mon, 21 Jan 2002 14:26:02 +0100 (CET) (envelope-from nils) Date: Mon, 21 Jan 2002 14:26:02 +0100 From: Nils Holland To: Michael Lucas Cc: Fabio Yasusi Yamamoto , questions@FreeBSD.ORG Subject: Re: Xfree86 4.2.0 Message-ID: <20020121142602.A1798@tisys.org> References: <3C4BC194.5000906@hostname.org> <20020121081154.B52896@blackhelicopters.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020121081154.B52896@blackhelicopters.org>; from mwlucas@blackhelicopters.org on Mon, Jan 21, 2002 at 08:11:54AM -0500 X-Operating-System: FreeBSD jodie.ncptiddische.net 4.5-RC FreeBSD 4.5-RC X-Machine-Uptime: 2:24PM up 4:15, 1 user, load averages: 0.00, 0.00, 0.00 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 08:11:54AM -0500, Michael Lucas stood up and spoke: > On Mon, Jan 21, 2002 at 05:21:56AM -0200, Fabio Yasusi Yamamoto wrote: > > Xfree86 4.2.0 will be on freebsd 4.5? > > Nope. It will probably be on 4.6, though. But of course, it will be available for 4.5 and earlier systems from ports ;-) Greetings Nils -- Nils Holland Ti Systems - FreeBSD in Tiddische, Germany http://www.tisys.org * nils@tisys.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 5:28: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from [208.237.133.234] (mail.ade.com [208.237.133.234]) by hub.freebsd.org (Postfix) with SMTP id 16FA437B402 for ; Mon, 21 Jan 2002 05:28:04 -0800 (PST) Received: from no.name.available by [208.237.133.234] via smtpd (for hub.FreeBSD.org [216.136.204.18]) with SMTP; 21 Jan 2002 13:28:04 UT Received: (private information removed) Message-ID: From: Chris Corayer To: "'freebsd-questions@freebsd.org'" Subject: Best options for backup? Date: Mon, 21 Jan 2002 08:28:31 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I will be attempting a new printserver as the current NT 4.0 one has gotten entirely too flaky. I wish to use FreeBSD for it. I will run SAMBA and will try to get the permissions from the NT controllers which SAMBA supposedly supports. The main backup server uses DLT tapes and runs NT on an Alpha platform ( it's an old 4100 if that matters ). The print server will have 4 file systems on it. /, /tmp, /usr, /var and the swap partition. My question is what would the best backup options be for this printserver? As far as I can tell, I have the following options. A) I could try installing a second hard disk and try to mirror the main disk periodically. This should allow me to have a full backup and allow a very fast restore. I just need to figure out how to do the mirroring thing though. I'm also not entirely sure how a restore would work - perhaps there's a way to boot the machine off the older "good" disk and then mirror the drives again? B) I could try to get the backup server to backup through SAMBA somehow. I'm not entirely sure how a restore would work if I needed one here either. Ideally I'd like to try doing both so that I have an off site tape backup with the second disk immediately available if I should need it. So, are there some other options I'm missing? I don't have a spare CD writer to throw in this box, so I'm out of luck there. If anyone has any other ideas, or good sources/procedures for the two ideas I already have, please post the links or respond in private rather than clutter the list. Thank You. -Christopher Corayer Information Services ADE Technologies 77 Rowe Street Newton, MA 02466 p.617.831.8043 f.617.243.4443 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 5:30:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id C2E7B37B402 for ; Mon, 21 Jan 2002 05:30:12 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.11.6/8.11.6) id g0LDU9G53233; Mon, 21 Jan 2002 08:30:09 -0500 (EST) (envelope-from mwlucas) Date: Mon, 21 Jan 2002 08:30:09 -0500 From: Michael Lucas To: Nils Holland Cc: Fabio Yasusi Yamamoto , questions@FreeBSD.ORG Subject: Re: Xfree86 4.2.0 Message-ID: <20020121083009.A53217@blackhelicopters.org> References: <3C4BC194.5000906@hostname.org> <20020121081154.B52896@blackhelicopters.org> <20020121142602.A1798@tisys.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121142602.A1798@tisys.org>; from nils@tisys.org on Mon, Jan 21, 2002 at 02:26:02PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 02:26:02PM +0100, Nils Holland wrote: > On Mon, Jan 21, 2002 at 08:11:54AM -0500, Michael Lucas stood up and spoke: > > On Mon, Jan 21, 2002 at 05:21:56AM -0200, Fabio Yasusi Yamamoto wrote: > > > Xfree86 4.2.0 will be on freebsd 4.5? > > > > Nope. It will probably be on 4.6, though. > > But of course, it will be available for 4.5 and earlier systems from ports > ;-) Ah, yes, of course. It will not be shipped *by default* on 4.5. The default X on 4.5 will still be 3.3.latest. The Big X3-X4 Switch is scheduled to happen shortly after 4.5R. ==ml -- Michael Lucas mwlucas@FreeBSD.org, mwlucas@BlackHelicopters.org my FreeBSD column: http://www.oreillynet.com/pub/q/Big_Scary_Daemons http://www.blackhelicopters.org/~mwlucas/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 6: 4: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.broadpark.no (217-13-4-9.dd.nextgentel.com [217.13.4.9]) by hub.freebsd.org (Postfix) with ESMTP id C8BAA37B402 for ; Mon, 21 Jan 2002 06:03:56 -0800 (PST) Received: from ninja.amphex.com (ninja.amphex.com [217.13.29.51]) by mail.broadpark.no (Postfix) with SMTP id DB36E8013; Mon, 21 Jan 2002 15:02:00 +0100 (MET) Date: Mon, 21 Jan 2002 15:01:57 +0100 From: J.S. To: freebsd-questions@freebsd.org Cc: kundeservice@nextgentel.com Subject: Cisco 677i-DIR's "show nat" Message-Id: <20020121150158.2ca049cc.johann@broadpark.no> X-Mailer: Sylpheed version 0.6.5 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi. I'm connected on an ADSL connection through a Cisco 677i-Dir ADSL-modem (router) which then heads straight to my ISP (nextgentel.no). Every time a daemon or an application needs to go through a port, I have to manually add a redirection entry on the router (10.0.0.1) through telnet. I just added these entries: ---------------------------------------------------------- >> identd: set nat entry add 10.0.0.2 113 0.0.0.0 113 tcp ftpd/sshd: set nat entry add 10.0.0.2 20-22 0.0.0.0 20-22 tcp apache: set nat entry add 10.0.0.2 80 0.0.0.0 80 tcp bind: set nat entry add 10.0.0.2 53 0.0.0.0 53 tcp dcc: set nat entry add 10.0.0.2 1024-5000 0.0.0.0 1024-5000 tcp ---------------------------------------------------------- >> The command 'show nat' prints the current NAT activity: ---------------------------------------------------------- >> cbos>show nat NAT is currently enabled Port Network Global eth0 Inside wan0-0 Outside 217.13.**.** vip0 Outside vip1 Outside vip2 Outside Local IP : Port Global IP : Port Timer Flags Proto Interface 10.0.0.2:6666 *****:6666 0 0x10041 tcp eth0 -6700 -6700 10.0.0.2:6666 *****:6666 0 0x00041 tcp eth0 10.0.0.2:6667 *****:6667 0 0x10041 tcp eth0 -6700 -6700 10.0.0.2:1024 *****:1024 0 0x10041 tcp eth0 -5000 -5000 10.0.0.2:1024 *****:1024 0 0x10041 tcp eth0 -4999 -4999 10.0.0.2:53 *****:53 0 0x00041 tcp eth0 10.0.0.2:80 *****:80 0 0x00041 tcp eth0 10.0.0.2:20 *****:20 0 0x10041 tcp eth0 -22 -22 10.0.0.2:49152 *****:49152 0 0x10041 tcp eth0 -65535 -65535 10.0.0.2:113 *****:113 0 0x00041 tcp eth0 10.0.0.2:1030 *****:1030 0 0x10041 tcp eth0 -1040 -1040 10.0.0.2:2001 *****:2001 0 0x00041 tcp eth0 10.0.0.2:21 *****:21 0 0x00041 tcp eth0 10.0.0.2:1 *****:1 0 0x10041 icmp eth0 -65000 -65000 10.0.0.2:1 *****:1 0 0x10041 udp eth0 -65000 -65000 10.0.0.2:1 *****:1 0 0x10041 tcp eth0 -65000 -65000 10.0.0.2:2412 217.13.**.**:2412 1140 0x04046 tcp eth0 wan0-0 10.0.0.2:2416 217.13.**.**:2416 1200 0x04046 tcp eth0 wan0-0 10.0.0.2:2441 217.13.**.**:2441 1200 0x04046 tcp eth0 wan0-0 10.0.0.2:2465 217.13.**.**:2465 1140 0x04046 tcp eth0 wan0-0 10.0.0.2:1157 217.13.**.**:1157 120 0x04046 udp eth0 wan0-0 10.0.0.2:1158 217.13.**.**:1158 120 0x04046 udp eth0 wan0-0 10.0.0.2:1159 217.13.**.**:1159 270 0x04046 udp eth0 wan0-0 10.0.0.2:2984 217.13.**.**:2984 900 0x04046 tcp eth0 wan0-0 10.0.0.2:2985 217.13.**.**:2985 900 0x04046 tcp eth0 wan0-0 10.0.0.2:2986 217.13.**.**:2986 900 0x04046 tcp eth0 wan0-0 10.0.0.2:2987 217.13.**.**:2987 900 0x04046 tcp eth0 wan0-0 10.0.0.2:1160 217.13.**.**:1160 270 0x04046 udp eth0 wan0-0 10.0.0.2:1161 217.13.**.**:1161 300 0x04046 udp eth0 wan0-0 10.0.0.2:2990 217.13.**.**:2990 900 0x04046 tcp eth0 wan0-0 10.0.0.2:1162 217.13.**.**:1162 300 0x04046 udp eth0 wan0-0 10.0.0.2:3008 217.13.**.**:3008 1200 0x04046 tcp eth0 wan0-0 10.0.0.2:1163 217.13.**.**:1163 600 0x04046 udp eth0 wan0-0 10.0.0.2:3010 217.13.**.**:3010 60 0x04046 tcp eth0 wan0-0 ---------------------------------------------------------- >> Now, this is what wonders me: 1. How come the portranges 1024-4999, 49152-65535, 1030-1040, 2001 and 1-65000 are open? All of these are portranges I've opened in the past (in unsuccessful attempts to get my DCC working), which ought to have been deleted by the 'set nat entry del all' which I just performed. I tried deleting them one by one as well, though that didn't seem to have much effect: cbos#set nat entry delete 10.0.0.2 49152-65535 0.0.0.0 49152-65535 tcp Error: You entered an invalid port number 2. I just discovered that using the setting /set DCC_USE_OWN_IP in my IRC client will allow my DCC to function properly. Is this something that could have been done without opening the portrange 1024-5000? I mean, does the low portrange FreeBSD uses really have to be added? If so, what about the high portrange, 49152-65535? Well, this is it. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 6: 8: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.rol.it (mail2.rol.it [193.41.7.204]) by hub.freebsd.org (Postfix) with SMTP id D46E337B419 for ; Mon, 21 Jan 2002 06:07:44 -0800 (PST) From: verbavolant@logos.net To: questions@freebsd.org Subject: Verba Volant Message-Id: <20020121140744.D46E337B419@hub.freebsd.org> Date: Mon, 21 Jan 2002 06:07:44 -0800 (PST) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG We have been requested to insert the following email address, "questions@freebsd.org", in the Verba Volant Newsletter database. Through this daily service you will receive a quotation, selected from amongst the most celebrated philosophers, writers and poets of all time and translated into many languages and dialects by volunteers worldwide. If you would like to confirm your subscription to Verba Volant, please click on the following link: http://www.logos.net/owa-l/press.subscribe?lang=en&email=questions@freebsd.org If you do not wish to click on the link, your subscription will be cancelled. Thank you for your time. Verba Volant Il nous a été demandé d'ajouter l'adresse électronique "questions@freebsd.org" dans la liste des destinataires de Verba Volant, un service qui tous les jours vous adressera une citation sélectionnée parmi les œuvres des meilleurs philosophes, écrivains, poètes de tous les temps et traduite en de très nombreuses langues grâce à des volontaires du monde entier. Pour confirmer l'inscription à Verba Volant, veuillez vous connecter au lien suivant: http://www.logos.net/owa-l/press.subscribe?lang=fr&email=questions@freebsd.org Si vous préférez ne pas cliquer sur le lien, vous ne recevrez rien. Merci dans tous les cas de nous avoir accordé quelques secondes. Verba Volant Se nos ha solicitado insertar la dirección de correo electrónico "questions@freebsd.org" en el listado de envíos de Verba Volant, un servicio que diariamente le enviará citas elegidas entre los mejores filosofos, escritores, poetas, etc., traducidas a varios idiomas y dialectos. Dichas citas están traducidas por voluntarios que se conectan a nuestra web desde todo el mundo. Si quiere confirmar la suscripción a Verba Volant, le rogamos entre en: http://www.logos.net/owa-l/press.subscribe?lang=es&email=questions@freebsd.org Si no entra en la dirección señalada no recibirá las citas. Muchas gracias por el tiempo que nos ha dedicado. Verba Volant Ci è stato chiesto di inserire l'indirizzo di posta elettronica "questions@freebsd.org" nell’elenco dei destinatari di Verba Volant, un servizio che ogni giorno ti invierà una citazione scelta tra quelle dei migliori filosofi, scrittori, poeti di tutti i tempi e tradotta in moltissime lingue e dialetti grazie alla collaborazione di volontari da tutto il mondo. Se desideri confermare l'iscrizione, ti preghiamo di collegarti al seguente link: http://www.logos.net/owa-l/press.subscribe?lang=it&email=questions@freebsd.org Nel caso preferissi non cliccare sul link, non riceverai nulla. Grazie comunque per i secondi che ci hai dedicato. Cordiali saluti. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 6:23:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com [62.253.162.42]) by hub.freebsd.org (Postfix) with ESMTP id D2DF337B404 for ; Mon, 21 Jan 2002 06:23:25 -0800 (PST) Received: from localhost ([62.252.182.0]) by mta02-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020121142324.OCVQ8848.mta02-svc.ntlworld.com@localhost> for ; Mon, 21 Jan 2002 14:23:24 +0000 Received: from ac by localhost with local (Exim 3.33 #1 (Debian)) id 16SfLM-0000kO-00 for ; Mon, 21 Jan 2002 14:22:40 +0000 Date: Mon, 21 Jan 2002 14:22:40 +0000 From: Anthony Campbell To: freebsd-questions@FreeBSD.ORG Subject: Still kernel problem/bug: do these messages matter? Message-ID: <20020121142240.GB2858@debian.local> Mail-Followup-To: freebsd-questions@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've reported in several places that I have to include pseudo-device ether in the kernel, otherwise usb won't compile. However, the resultant kernel produces messages about di sio1, sn0 etc not being found; do these matter? There does seem to be a bug in the kernel regarding this. Anthony -- Anthony Campbell - running Linux GNU/Debian (Windows-free zone) For an electronic book (The Assassins of Alamut), skeptical essays, and over 150 book reviews, go to: http://www.acampbell.org.uk/ Our planet is a lonely speck in the great enveloping cosmic dark. In our obscurity, in all this vastness, there is no hint that help will come from elsewhere to save us from ourselves. [Carl Sagan] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 6:46:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from srv4.dc1.textron.com (srv4.dc1.textron.com [216.148.246.120]) by hub.freebsd.org (Postfix) with ESMTP id 4CE4337B417 for ; Mon, 21 Jan 2002 06:46:11 -0800 (PST) Received: from mrbbdc103.textron.com (mrbbdc103.textron.com [10.231.4.88]) by srv4.dc1.textron.com (8.11.6/8.9.3) with SMTP id g0LIDjH69268 for ; Mon, 21 Jan 2002 13:13:45 -0500 Received: by grnexchg.greenlee.textron.com with Internet Mail Service (5.5.2653.19) id ; Mon, 21 Jan 2002 08:51:10 -0600 Message-ID: From: "Franzen, Jon" To: "'freebsd-questions@freebsd.org'" Subject: Printer problem - Canon BJC-1000 - FreeBSD 4.4 Date: Mon, 21 Jan 2002 08:51:09 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm a new user, I can't get "lptest > /dev/lpt0" or any of the other functionality to work with my BJC-1000 printer. Absolutely nothing happens. I think I've followed all the instructions found in many sources. Is any one else having this problem. Help! thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 7:15:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 478D137B400 for ; Mon, 21 Jan 2002 07:15:25 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16SgAO-000027-00 for questions@freebsd.org; Mon, 21 Jan 2002 15:15:24 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id E1B33118C; Mon, 21 Jan 2002 15:10:44 +0100 (CET) Date: Mon, 21 Jan 2002 15:10:44 +0100 From: Cliff Sarginson To: questions@FreeBSD.ORG Subject: Re: cvsup to 4.5 ? Message-ID: <20020121141044.GA2880@raggedclown.net> References: <3C4C0E50.4010009@owt.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3C4C0E50.4010009@owt.com> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 04:49:20AM -0800, Kent Stewart wrote: > > > Stefan Cars wrote: > > >I want to cvsup to the 4.5-RC2 or prerelease, what tag should I use in my > >cvsup file ? RELENG_4_5? > Exceedingly unamusing things will happen if you do change it to that. > > RELENG_4 is the only thing that exists right now. That covers the 4.5-rc. > I can confirm the correctness of this statement.. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 7:20:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from [208.237.133.234] (mail.ade.com [208.237.133.234]) by hub.freebsd.org (Postfix) with SMTP id 5795337B402 for ; Mon, 21 Jan 2002 07:20:48 -0800 (PST) Received: from no.name.available by [208.237.133.234] via smtpd (for hub.FreeBSD.org [216.136.204.18]) with SMTP; 21 Jan 2002 15:20:48 UT Received: (private information removed) Message-ID: From: Chris Corayer To: "'questions@FreeBSD.ORG'" Subject: RE: ssh & putty Date: Mon, 21 Jan 2002 10:21:14 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Date: Sat, 19 Jan 2002 21:35:10 -0500 From: "Joe & Fhe Barbish" Subject: ssh & putty Have sshd enabled in rc.conf. Downloaded putty programs to Winbox and unzipped. Putty starts and I enter IP address of my FBSD box. Every time I tell it to open connection I get a error message [unable to open connection to IP address, network error]. From the same Winbox I can telnet to FBSD box using same IP address as used with putty, so I know it's not network error. Any ideas ------------------------------" Check your hosts.allow file. I know that when I have removed/commented out the lines regarding ssh it no longer works. As an aside, it's always seemed odd to me that it does that considering that it is commented with something to the effect of "wrapping ssh is not usually a good idea but here's how you do it." Not sure if that's the problem or not. If you run the command sockstat, does it show sshd as listening on port 22? -Christopher Corayer Information Services ADE Technologies 77 Rowe Street Newton, MA 02466 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 7:26:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 6E75737B41B for ; Mon, 21 Jan 2002 07:26:06 -0800 (PST) Received: from gateway ([63.70.155.45]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Mon, 21 Jan 2002 10:29:17 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: How to adduser from script? Date: Mon, 21 Jan 2002 10:26:03 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am building a disaster recovery script. I need to add 2 users, backup tape user, and remote admin user. Is there a command line command that I can do this with? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 7:30:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id 6D1F137B402 for ; Mon, 21 Jan 2002 07:30:23 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0LFUK549591; Mon, 21 Jan 2002 09:30:20 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0LFUK021528; Mon, 21 Jan 2002 09:30:21 -0600 (CST) Date: Mon, 21 Jan 2002 09:30:20 -0600 From: Doug Poland To: Michael Lucas Cc: Kenneth W Cochran , freebsd-questions@FreeBSD.ORG Subject: Re: Mozilla plugins; Windows Media, QuickTime, Java2 Message-ID: <20020121093020.A19962@polands.org> References: <200201210445.XAA9379861@shell.TheWorld.com> <20020121081125.A52896@blackhelicopters.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121081125.A52896@blackhelicopters.org>; from mwlucas@blackhelicopters.org on Mon, Jan 21, 2002 at 08:11:25AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 08:11:25AM -0500, Michael Lucas wrote: > On Sun, Jan 20, 2002 at 11:45:43PM -0500, Kenneth W Cochran wrote: > > Also, roughly how far are we from having Mozilla plugin > > support for Java2? > > > > Where could I find relevant information? (aka "FM" to "RT" :) > > The FM in this case is the freebsd-java mailing list archives. > > If Java/Mozilla is working, you can expect to find someone dancing for > joy, angelic trumpets, and 1000 elephants parading down the list. > You can do java2 applets with linux mozilla binary and linux-jdk-1.3.1 port. Other plugins I've got working are shockwave, futuresplash, and realplayer. -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 7:36:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from marlo.eagle.ca (marlo.eagle.ca [209.167.16.10]) by hub.freebsd.org (Postfix) with ESMTP id 1A73537B402 for ; Mon, 21 Jan 2002 07:36:36 -0800 (PST) Received: from Bob (staff.eagle.ca [209.167.16.15]) by marlo.eagle.ca (8.11.3/8.11.3) with ESMTP id g0LFXtp31555; Mon, 21 Jan 2002 10:34:00 -0500 (EST) (envelope-from freymann@eagle.ca) From: "ScaryG" To: "Joe & Fhe Barbish" , "FBSD Questions" Date: Mon, 21 Jan 2002 10:37:28 -0500 MIME-Version: 1.0 Subject: Re: How to adduser from script? Message-ID: <3C4BEF68.32535.78858E@localhost> In-reply-to: X-mailer: Pegasus Mail for Windows (v4.01) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 21 Jan 2002 at 10:26, Joe & Fhe Barbish wrote: > I am building a disaster recovery script. > I need to add 2 users, backup tape user, > and remote admin user. > Is there a command line command that I can do this with? I just recently did some tinkering with this, and the following works fine in a perl script: #/usr/bin/perl $password = "abc123"; $shell = "/sbin/nologin"; $username = "lusername"; `echo $password |/usr/sbin/pw adduser -s $shell -m -n $username -d /home/$username -h 0`; Have fun. gf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 7:45:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web11703.mail.yahoo.com (web11703.mail.yahoo.com [216.136.172.69]) by hub.freebsd.org (Postfix) with SMTP id CC31337B417 for ; Mon, 21 Jan 2002 07:45:10 -0800 (PST) Message-ID: <20020121154510.98464.qmail@web11703.mail.yahoo.com> Received: from [209.140.253.2] by web11703.mail.yahoo.com via HTTP; Mon, 21 Jan 2002 07:45:10 PST Date: Mon, 21 Jan 2002 07:45:10 -0800 (PST) From: Tim Erlin Subject: Re: Problem with time To: Andrej , questions@FreeBSD.org In-Reply-To: <000d01c1a267$cfdbe330$4628f9c2@slovenia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Don't know why it changed, but you can use ntpdate to keep it in line. check out man ntpdate for the details. --Tim --- Andrej wrote: > > Hello, > i'm writing you with the following problem... > recently syslogd started > to log the wrong time, it and hourd behing the > system time and i don't > know why this suddenly happened > > Jan 21 10:34:39 keson /kernel: Connection attempt to > UDP 127.0.0.1:4544 > from 127.0.0.1:53 > su-2.05# date > Mon Jan 21 11:35:49 CET 2002 > > syslog is an hour behind, but i set the time zone > and everything so i > really don't know the problem, could you maybe help > me ? i have the > latest freebsd 4.4-stable installed. > > Sincerely, > > Andrej > > --- o --- > Keson Network > evilset@keson.net > abuse@keson.net > --- o --- > > __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 7:51:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.panix.com (mail2.panix.com [166.84.0.213]) by hub.freebsd.org (Postfix) with ESMTP id CE9E837B402 for ; Mon, 21 Jan 2002 07:51:27 -0800 (PST) Received: from panix2.panix.com (panix2.panix.com [166.84.1.2]) by mail2.panix.com (Postfix) with ESMTP id B82329010 for ; Mon, 21 Jan 2002 10:50:56 -0500 (EST) Received: (from stanb@localhost) by panix2.panix.com (8.11.3nb1/8.8.8/PanixN1.0) id g0LFouX28903 for freebsd-questions@freebsd.org; Mon, 21 Jan 2002 10:50:56 -0500 (EST) Message-Id: <200201211550.g0LFouX28903@panix2.panix.com> Subject: moving currnet sources from a recently cvsup'd machine to another? To: freebsd-questions@freebsd.org (Free BSD Questions list) Date: Mon, 21 Jan 2002 10:50:56 -0500 (EST) From: "Stan Brown" X-Mailer: ELM [version 2.5 PL6] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'v got a laptop that I cvsup almost every weekend. I've alos got abunch of machines at work behind a firewall, that's to brain dead to allow me to cvsup them. It has dawned on me thta I should be able to tar up the soures on the laptop, and untar them on the machines behind the firewall, to update them. This should work, right? What directoriy(s) would I need to tar over, or is there a better way to do this? -- "They that would give up essential liberty for temporary safety deserve neither liberty nor safety." -- Benjamin Franklin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 7:51:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 13E5A37B416 for ; Mon, 21 Jan 2002 07:51:15 -0800 (PST) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) with ESMTP id g0LFpOv56430; Mon, 21 Jan 2002 10:51:25 -0500 (EST) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 21 Jan 2002 10:51:24 -0500 (EST) From: Joe Clarke To: Glenn Todd Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Cannot start Mozilla In-Reply-To: <20020121211104.A2787@Hawk.internet.co.nz> Message-ID: <20020121105101.N56403-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002, Glenn Todd wrote: > I have recently updated my ports (portinstall -rR ) and > have everything in my system as current, but now cannot get Mozilla to run. > > I can start the initial set up if I remove the .mozilla from my home > directory however, but cannot get pass the create user as the indow will > not allow me to set or find a directory path for the .mozilla directory. > (it is blank). This could be a problem with your locale setting. What do you have for LANG or LC_CTYPE? Joe > > As I needed a browser so I resorted to installing galeon. It runs but its > dialogue windows open with out any text. My guess that I have an old or > incompatible library somewhere, has anyone experienced a similar situation > and any ideas on the fix. > > Key installs: > > FreeBSD Hawk 4.4-STABLE FreeBSD 4.4-STABLE #0 > mozilla-0.9.7_2,1 > gnome-1.4.1b2_1 > > Glenn > > Wellington, > New Zealand > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 7:58:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cswgraphics.com (host-64-65-195-100.choiceone.net [64.65.195.100]) by hub.freebsd.org (Postfix) with ESMTP id 2CB8B37B400 for ; Mon, 21 Jan 2002 07:58:04 -0800 (PST) Received: from citystamp.com (wanid.cswgraphics.com [64.65.195.58]) by cswgraphics.com (8.9.1b+Sun/8.9.1) with ESMTP id KAA27847; Mon, 21 Jan 2002 10:55:36 -0500 (EST) Message-ID: <3C4C3A6B.BAE20ECD@citystamp.com> Date: Mon, 21 Jan 2002 10:57:31 -0500 From: "Matthew P. Marino" Reply-To: bind9@citystamp.com Organization: City Stamp Works Inc. X-Mailer: Mozilla 4.75C-CCK-MCD {C-UDP; EBM-APPLE} (Macintosh; U; PPC) X-Accept-Language: en,pdf MIME-Version: 1.0 To: twig les Cc: freebsd-questions@FreeBSD.org Subject: Re: Freebsd-specific mysql info References: <20020118205232.30753.qmail@web10106.mail.yahoo.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Oddly enough, some of the best documentation for MySQL comes from apps that use it. PHP4 is a great resource. You can also get something called phpMyAdmin that will give you a web interface to the tables that really takes a lot of the pain out of it. If your concerned about security (as you should be), set up the server with 2 NICs (or an alias) and have the phpMyAdmin app. run from an Apache virtual server that only listens on a private network(192.168.x.x) and use an 404 authentication via .htaccess. It's theoreticaly impossible too get packets for those addresses routed accross the net, so you mostly need to worry about inside jobs. twig les wrote: > > Hey all, I'm looking for some good docs on how to > install and administer Mysql on freebsd. I've scoured > the Mysql docs but I'm a database newbie so when > something doesn't work right I'm lost. Normally this > wouldn't bother me much but I'm kinda under the gun > here at work. > > I'm running freebsd 4.4 stable-minimum install, with > mysql-3.23.42. I've already got the sucker installed > and I can fumble around until it's running, but I'm > looking for additional docs. > > THanks. > > ===== > ------------------------------------------------------- > It is easier to denature Plutonium than to denature the evil spirit of man > ------------------------------------------------------- > Albert Einstein > > __________________________________________________ > Do You Yahoo!? > Send FREE video emails in Yahoo! Mail! > http://promo.yahoo.com/videomail/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 8: 2: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from speechpro.com (crt-gw.infopro.spb.su [195.201.254.5]) by hub.freebsd.org (Postfix) with ESMTP id 9C53C37B405 for ; Mon, 21 Jan 2002 08:01:56 -0800 (PST) Received: from igorr by sysadm.stc with local (Exim 3.33 #1) id 16SgvZ-000DSd-00 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 19:04:09 +0300 Date: Mon, 21 Jan 2002 19:04:09 +0300 From: Igor Roboul To: Free BSD Questions list Subject: Re: moving currnet sources from a recently cvsup'd machine to another? Message-ID: <20020121160409.GA51685@sysadm.stc> Reply-To: igorr@speechpro.com Mail-Followup-To: Igor Roboul , Free BSD Questions list References: <200201211550.g0LFouX28903@panix2.panix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200201211550.g0LFouX28903@panix2.panix.com> User-Agent: Mutt/1.3.26i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 10:50:56AM -0500, Stan Brown wrote: > This should work, right? What directoriy(s) would I need to tar over, or is > there a better way to do this? /usr/src and if you wish /usr/ports without dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 8: 3:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cswgraphics.com (host-64-65-195-100.choiceone.net [64.65.195.100]) by hub.freebsd.org (Postfix) with ESMTP id 1268137B416 for ; Mon, 21 Jan 2002 08:03:38 -0800 (PST) Received: from citystamp.com (wanid.cswgraphics.com [64.65.195.58]) by cswgraphics.com (8.9.1b+Sun/8.9.1) with ESMTP id LAA27856; Mon, 21 Jan 2002 11:01:07 -0500 (EST) Message-ID: <3C4C3BB6.9753D759@citystamp.com> Date: Mon, 21 Jan 2002 11:03:02 -0500 From: "Matthew P. Marino" Reply-To: bind9@citystamp.com Organization: City Stamp Works Inc. X-Mailer: Mozilla 4.75C-CCK-MCD {C-UDP; EBM-APPLE} (Macintosh; U; PPC) X-Accept-Language: en,pdf MIME-Version: 1.0 To: Jay Austad Cc: "'Bernie'" , freebsd-questions@FreeBSD.ORG Subject: Re: magic number on fs? References: <54180709DD3FE145917BB165AFE7EFA002E0D364@mspexch2.office.mktw.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is that to suggest that a finite probability is an infinite improbability. Jay Austad wrote: > > > can anyone tell me if it's not too much trouble, > > what's the so called 'magic number' on filesystems? > > 42 :) > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 8: 7:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from dire.bris.ac.uk (dire.bris.ac.uk [137.222.10.60]) by hub.freebsd.org (Postfix) with ESMTP id 51B1A37B402 for ; Mon, 21 Jan 2002 08:07:40 -0800 (PST) Received: from mail.ilrt.bris.ac.uk by dire.bris.ac.uk with SMTP-PRIV with ESMTP; Mon, 21 Jan 2002 16:07:27 +0000 Received: from cmjg (helo=localhost) by mail.ilrt.bris.ac.uk with local-esmtp (Exim 3.16 #1) id 16Sgw2-0002rq-00; Mon, 21 Jan 2002 16:04:38 +0000 Date: Mon, 21 Jan 2002 16:04:38 +0000 (GMT) From: Jan Grant X-X-Sender: cmjg@mail.ilrt.bris.ac.uk To: Joe & Fhe Barbish Cc: FBSD Questions Subject: Re: How to adduser from script? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002, Joe & Fhe Barbish wrote: > I am building a disaster recovery script. > I need to add 2 users, backup tape user, > and remote admin user. > > Is there a command line command that I can do this with? pw(8) -- jan grant, ILRT, University of Bristol. http://www.ilrt.bris.ac.uk/ Tel +44(0)117 9287088 Fax +44 (0)117 9287112 RFC822 jan.grant@bris.ac.uk Bolstered by my success with vi, I proceeded to learn C with 'learn c'. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 8:22:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay1.ntu-kpi.kiev.ua (www.ntu-kpi.kiev.ua [212.111.192.161]) by hub.freebsd.org (Postfix) with ESMTP id BDD6637B402 for ; Mon, 21 Jan 2002 08:22:26 -0800 (PST) Received: from comsys.ntu-kpi.kiev.ua (eth0.comsys.ntu-kpi.kiev.ua [10.0.1.184]) by relay1.ntu-kpi.kiev.ua (Postfix) with ESMTP id 5F96D2EEFD; Mon, 21 Jan 2002 18:22:21 +0200 (EET) Received: from pm5149 (pm514-9.comsys.ntu-kpi.kiev.ua [10.18.54.109]) by comsys.ntu-kpi.kiev.ua (8.11.6/8.11.6) with SMTP id g0LGOin35413; Mon, 21 Jan 2002 18:24:44 +0200 (EET) Message-ID: <012a01c1a28e$94239460$6d36120a@comsys.ntukpi.kiev.ua> From: "Andrey Simonenko" To: "Andrej" Cc: References: <000d01c1a267$cfdbe330$4628f9c2@slovenia.lucky.freebsd.questions> Subject: Re: Problem with time Date: Mon, 21 Jan 2002 18:16:19 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: Andrej Newsgroups: lucky.freebsd.questions Sent: Monday, January 21, 2002 3:59 PM Subject: Problem with time > Hello, > i'm writing you with the following problem... recently syslogd started > to log the wrong time, it and hourd behing the system time and i don't > know why this suddenly happened > > Jan 21 10:34:39 keson /kernel: Connection attempt to UDP 127.0.0.1:4544 > from 127.0.0.1:53 > su-2.05# date > Mon Jan 21 11:35:49 CET 2002 > > syslog is an hour behind, but i set the time zone and everything so i > really don't know the problem, could you maybe help me ? i have the > latest freebsd 4.4-stable installed. > There is one problem with the time zone (TZ) and applications which are already running. If TZ is changed and there are some applications which work with the previous TZ, then these applications don't see any changes in TZ. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 8:23:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cswgraphics.com (host-64-65-195-100.choiceone.net [64.65.195.100]) by hub.freebsd.org (Postfix) with ESMTP id 9782437B405 for ; Mon, 21 Jan 2002 08:23:40 -0800 (PST) Received: from citystamp.com (wanid.cswgraphics.com [64.65.195.58]) by cswgraphics.com (8.9.1b+Sun/8.9.1) with ESMTP id LAA27898; Mon, 21 Jan 2002 11:21:12 -0500 (EST) Message-ID: <3C4C406B.D1EFB54F@citystamp.com> Date: Mon, 21 Jan 2002 11:23:07 -0500 From: "Matthew P. Marino" Reply-To: bind9@citystamp.com Organization: City Stamp Works Inc. X-Mailer: Mozilla 4.75C-CCK-MCD {C-UDP; EBM-APPLE} (Macintosh; U; PPC) X-Accept-Language: en,pdf MIME-Version: 1.0 To: Joe Rodrigues Cc: freebsd questions Subject: Re: Find command References: <000d01c1a137$30948ec0$f449fea9@tmlp.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Joe Rodrigues wrote: > > Hello, > > I am having problems (to say the least) with this command. My frustration > level has been raised to new heights. > > Can anybody tell me what is wrong with the syntax bellow. > > 1. find -name xinitrc > > 2. find -f /usr/X11R6 -name xinitrc > > The first command it does not recognize the -name primary > > The second command does not find the file, even though it is there. > > Thanks > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message try this; find /usr/X11R6 -name /*xinitrc/* -PRINT The backslash tells find to interpret the special character that follows as the wildcard. More likely to get what you want that way. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 8:25:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cswgraphics.com (host-64-65-195-100.choiceone.net [64.65.195.100]) by hub.freebsd.org (Postfix) with ESMTP id 0312937B404 for ; Mon, 21 Jan 2002 08:25:13 -0800 (PST) Received: from citystamp.com (wanid.cswgraphics.com [64.65.195.58]) by cswgraphics.com (8.9.1b+Sun/8.9.1) with ESMTP id LAA27915; Mon, 21 Jan 2002 11:22:41 -0500 (EST) Message-ID: <3C4C40C3.7C714ACE@citystamp.com> Date: Mon, 21 Jan 2002 11:24:36 -0500 From: "Matthew P. Marino" Reply-To: bind9@citystamp.com Organization: City Stamp Works Inc. X-Mailer: Mozilla 4.75C-CCK-MCD {C-UDP; EBM-APPLE} (Macintosh; U; PPC) X-Accept-Language: en,pdf MIME-Version: 1.0 To: Kent Stewart Cc: David Loszewski , freebsd-questions@FreeBSD.ORG Subject: Re: n00b question References: <3C49F30B.4070207@mediaone.net> <3C49F4CE.1030804@owt.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Be careful about the "other trojans" statement. Yes, there are trojans that will affect BSD. Kent Stewart wrote: > > David Loszewski wrote: > > > correct me if I'm wrong but FreeBSD systems can not get the code red > > right and other trojans, just Microsoft OS's? > > Code Red affects MS OSes. It irritates Apache by inflating the > httpd-logs. It started out affecting only poorly maintained NT based > servers running IIS, which is their server. If the sysadmins updated > their servers with critical updates available back in July 2001, IIS > was immune to Code Red and many of the other worms and etc. Now they > have to install Windows 2000 and add the patch before they connect to > the internet. If they don't, they can be infected by Code Red before > they can download the patches from Microsoft. > > Kent > > -- > Kent Stewart > Richland, WA > > mailto:kbstew99@hotmail.com > http://users.owt.com/kstewart/index.html > FreeBSD News http://daily.daemonnews.org/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 8:37:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out0.mx.nwbl.wi.voyager.net (out0.mx.nwbl.wi.voyager.net [169.207.1.78]) by hub.freebsd.org (Postfix) with ESMTP id CC06637B400 for ; Mon, 21 Jan 2002 08:37:12 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out0.mx.nwbl.wi.voyager.net (8.11.4/8.11.4/1.7) with ESMTP id g0LGbUg32994; Mon, 21 Jan 2002 10:37:30 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0LGbBk27543; Mon, 21 Jan 2002 10:37:11 -0600 (CST) Date: Mon, 21 Jan 2002 10:37:11 -0600 From: Doug Poland To: SteveWingate@polands.org Cc: questions@FreeBSD.ORG Subject: Re: Java plugin for mozilla? Message-ID: <20020121103711.A27457@polands.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 10, 2002 at 01:20:14PM -0800, Steve Wingate wrote: > > > >From the mozilla website: > > > * Users of installer builds on Win32 and x86 Linux can install the Java > > > Run Time Environment (JRE) v1.3 Plug-in to add Java support to Mozilla. On > > > Macintosh, Mozilla uses the JRE already installed on your system. > > > > > > I am using the Linux-mozilla binary on FreeBSD w/Java, RealPlayer, > > > Shockwave and Flash support. > > > > > Steve, > > > > Could you describe the steps you took to get java working? > > > Nothing to it; I just installed the Linux-mozilla binary build and > JRE plug-in from the mozilla website. No additional configuration > that I recall. > For the benefit of the archives, the JRE plugin would not install on my 4.4-STABLE box so this is what I had to do... Install the following ports: linux-jdk-1.3.1 linux-gtk-1.2_1 Go to mozilla's web site and get the latest linux binary installer. Extract the tarball and install linux mozilla. su and cd to /usr/local/mozilla/plugins (default location) symlink the jdk to the plugins directory ln -s /usr/local/linux-jdk1.3.1/ java2 symlink the plugin to the currect directory ln -s /usr/local/linux-jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so . Voila! java in mozilla. Two observations, 1) it feels like linux mozilla is faster than native FreeBSD mozilla although I haven't timed it and cannot explain why. 2) Fonts are messed up in one of my favorite applets (http://spaceflight.nasa.gov/realdata/sightings/SSapplications/Post/JavaSSOP/JavaSSOP.html) -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 8:39:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id 9BBD437B419 for ; Mon, 21 Jan 2002 08:39:41 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0LGdf574658; Mon, 21 Jan 2002 10:39:41 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0LGdej27742; Mon, 21 Jan 2002 10:39:40 -0600 (CST) Date: Mon, 21 Jan 2002 10:39:40 -0600 From: Doug Poland To: Stan Brown Cc: questions@freebsd.org Subject: Re: Mozilla plugins; Windows Media, QuickTime, Java2 Message-ID: <20020121103940.A27559@polands.org> References: <20020121093020.A19962@polands.org> <200101211545.JAA21989@vm01.mx.execpc.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200101211545.JAA21989@vm01.mx.execpc.com>; from stanb@awod.com on Mon, Jan 21, 2002 at 10:46:40AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 10:46:40AM -0500, Stan Brown wrote: > On Mon Jan 21 10:30:20 2002 Doug Poland wrote... > > > >On Mon, Jan 21, 2002 at 08:11:25AM -0500, Michael Lucas wrote: > >> On Sun, Jan 20, 2002 at 11:45:43PM -0500, Kenneth W Cochran wrote: > >> > Also, roughly how far are we from having Mozilla plugin > >> > support for Java2? > >> > > >> > Where could I find relevant information? (aka "FM" to "RT" :) > >> > >> The FM in this case is the freebsd-java mailing list archives. > >> > >> If Java/Mozilla is working, you can expect to find someone dancing for > >> joy, angelic trumpets, and 1000 elephants parading down the list. > >> > >You can do java2 applets with linux mozilla binary and linux-jdk-1.3.1 > >port. Other plugins I've got working are shockwave, futuresplash, and > >realplayer. > > > > Could you point me to a HOWTO, on getting those working? > I thought I posted a summary for this topic on Jan 11, 2002 but I fat-fingered the Cc: to freebsd-questions. So I just re-sent it. Subject: Java plugin for mozilla? -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 8:42:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by hub.freebsd.org (Postfix) with ESMTP id 8BEE537B404 for ; Mon, 21 Jan 2002 08:42:23 -0800 (PST) Received: from localhost ([62.252.177.3]) by mta03-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020121164216.ELVG8780.mta03-svc.ntlworld.com@localhost> for ; Mon, 21 Jan 2002 16:42:16 +0000 Received: from ac by localhost with local (Exim 3.33 #1 (Debian)) id 16ShVR-0000yV-00 for ; Mon, 21 Jan 2002 16:41:13 +0000 Date: Mon, 21 Jan 2002 16:41:13 +0000 From: Anthony Campbell To: freebsd-questions@FreeBSD.ORG Subject: user-ppp Message-ID: <20020121164113.GA3727@debian.local> Mail-Followup-To: freebsd-questions@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've been working for a long time with the ppp manual without success. I have an internal card modem which seems to be recognized on boot-up and works perfectly with linux. I'm using the release version of FreeBSD (4.4). When I run ppp, I can get as far as the "term" command, but after this I can only access help (via ~?); I can't use at or any other modem command. I attach my ppp.log file in case it means anything to anyone: Jan 21 16:19:28 ppp[224]: tun0: Command: /dev/tty: quit Jan 21 16:19:28 ppp[224]: tun0: Phase: PPP Terminated (normal). Jan 21 16:19:31 ppp[225]: Phase: Using interface: tun0 Jan 21 16:19:31 ppp[225]: Phase: deflink: Created in closed state Jan 21 16:19:31 ppp[225]: tun0: Command: default: ident user-ppp VERSION (built COMPILATIONDATE) Jan 21 16:19:31 ppp[225]: tun0: Command: default: set device /dev/cuaa1 Jan 21 16:19:31 ppp[225]: tun0: Command: default: set speed 115200 Jan 21 16:19:31 ppp[225]: tun0: Command: default: set dial ABORT BUSY ABORT NO\sCARRIER TIMEOUT 5 "" AT OK-AT-OK ATE1Q0 OK \dATDT\T TIMEOUT 40 CONNECT Jan 21 16:19:31 ppp[225]: tun0: Command: default: set timeout 180 Jan 21 16:19:31 ppp[225]: tun0: Command: default: enable dns Jan 21 16:19:31 ppp[225]: tun0: Phase: PPP Started (interactive mode). Jan 21 16:19:34 ppp[225]: tun0: Command: /dev/tty: term Jan 21 16:19:34 ppp[225]: tun0: Phase: bundle: Establish Jan 21 16:19:34 ppp[225]: tun0: Phase: deflink: closed -> opening Jan 21 16:19:34 ppp[225]: tun0: Warning: deflink: /dev/cuaa1: Bad file descriptor Jan 21 16:19:34 ppp[225]: tun0: Chat: Failed to open device (attempt 1 of 1) Jan 21 16:19:34 ppp[225]: tun0: Phase: deflink: opening -> closed Jan 21 16:19:34 ppp[225]: tun0: Phase: bundle: Dead Jan 21 16:19:53 ppp[225]: tun0: Command: /dev/tty: set /dev/cuaa0 Jan 21 16:20:03 ppp[225]: tun0: Command: /dev/tty: term Jan 21 16:20:03 ppp[225]: tun0: Phase: bundle: Establish Jan 21 16:20:03 ppp[225]: tun0: Phase: deflink: closed -> opening Jan 21 16:20:04 ppp[225]: tun0: Chat: deflink: Redial timer expired. Jan 21 16:20:04 ppp[225]: tun0: Warning: deflink: /dev/cuaa1: Bad file descriptor Jan 21 16:20:04 ppp[225]: tun0: Chat: Failed to open device (attempt 1 of 1) Jan 21 16:20:04 ppp[225]: tun0: Phase: deflink: opening -> closed Jan 21 16:20:04 ppp[225]: tun0: Phase: bundle: Dead Jan 21 16:20:07 ppp[225]: tun0: Command: /dev/tty: quit Jan 21 16:20:07 ppp[225]: tun0: Phase: PPP Terminated (normal). Jan 21 16:20:12 ppp[229]: Phase: Using interface: tun0 Jan 21 16:20:12 ppp[229]: Phase: deflink: Created in closed state Jan 21 16:20:12 ppp[229]: tun0: Command: default: ident user-ppp VERSION (built COMPILATIONDATE) Jan 21 16:20:12 ppp[229]: tun0: Command: default: set device /dev/cuaa1 Jan 21 16:20:12 ppp[229]: tun0: Command: default: set speed 115200 Jan 21 16:20:12 ppp[229]: tun0: Command: default: set dial ABORT BUSY ABORT NO\sCARRIER TIMEOUT 5 "" AT OK-AT-OK ATE1Q0 OK \dATDT\T TIMEOUT 40 CONNECT Jan 21 16:20:12 ppp[229]: tun0: Command: default: set timeout 180 Jan 21 16:20:12 ppp[229]: tun0: Command: default: enable dns Jan 21 16:20:12 ppp[229]: tun0: Phase: PPP Started (interactive mode). Jan 21 16:20:24 ppp[229]: tun0: Command: /dev/tty: set device /dev/cuaa0 Jan 21 16:20:27 ppp[229]: tun0: Command: /dev/tty: term Jan 21 16:20:27 ppp[229]: tun0: Phase: bundle: Establish Jan 21 16:20:27 ppp[229]: tun0: Phase: deflink: closed -> opening Jan 21 16:20:27 ppp[229]: tun0: Phase: deflink: Connected! Jan 21 16:20:27 ppp[229]: tun0: Phase: deflink: opening -> carrier Jan 21 16:20:28 ppp[229]: tun0: Phase: deflink: /dev/cuaa0 doesn't support CD Jan 21 16:20:28 ppp[229]: tun0: Phase: deflink: carrier -> ready Jan 21 16:21:24 ppp[229]: tun0: Command: /dev/tty: quit Jan 21 16:21:24 ppp[229]: tun0: Phase: deflink: Disconnected! Jan 21 16:21:24 ppp[229]: tun0: Phase: deflink: Connect time: 57 secs: 0 octets in, 0 octets out Jan 21 16:21:24 ppp[229]: tun0: Phase: deflink: : 0 packets in, 0 packets out Jan 21 16:21:24 ppp[229]: tun0: Phase: total 0 bytes/sec, peak 0 bytes/sec on Mon Jan 21 16:21:24 2002 Jan 21 16:21:24 ppp[229]: tun0: Phase: deflink: ready -> closed Jan 21 16:21:24 ppp[229]: tun0: Phase: bundle: Dead Jan 21 16:21:24 ppp[229]: tun0: Phase: PPP Terminated (normal). -- Anthony Campbell - running Linux GNU/Debian (Windows-free zone) For an electronic book (The Assassins of Alamut), skeptical essays, and over 150 book reviews, go to: http://www.acampbell.org.uk/ Our planet is a lonely speck in the great enveloping cosmic dark. In our obscurity, in all this vastness, there is no hint that help will come from elsewhere to save us from ourselves. [Carl Sagan] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 9: 0:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from encephalon.de (pD901129D.dip0.t-ipconnect.de [217.1.18.157]) by hub.freebsd.org (Postfix) with ESMTP id A42D437B400 for ; Mon, 21 Jan 2002 09:00:34 -0800 (PST) Received: (from bsd@localhost) by encephalon.de (8.11.6/8.11.6) id g0LGvZ002618; Mon, 21 Jan 2002 17:57:35 +0100 (CET) (envelope-from bsd) Date: Mon, 21 Jan 2002 17:57:35 +0100 From: Roger Kaputtnik To: Anthony Campbell Cc: freebsd-questions@FreeBSD.ORG Subject: Re: user-ppp Message-ID: <20020121175735.A2594@encephalon.de> References: <20020121164113.GA3727@debian.local> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121164113.GA3727@debian.local>; from ac@acampbell.org.uk on Mon, Jan 21, 2002 at 04:41:13PM +0000 X-Operating-System: FreeBSD encephalon.de 4.5-RC FreeBSD 4.5-RC Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi How is your ppp.conf looking like ? Check where your modem is running (cuaa0 or cuaa1 ?) Do you have these in /dev ? Axel -- encephalon.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 9:26:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f244.law10.hotmail.com [64.4.15.244]) by hub.freebsd.org (Postfix) with ESMTP id 507E137B402 for ; Mon, 21 Jan 2002 09:26:16 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 21 Jan 2002 09:26:15 -0800 Received: from 192.35.17.21 by lw10fd.law10.hotmail.msn.com with HTTP; Mon, 21 Jan 2002 17:26:15 GMT X-Originating-IP: [192.35.17.21] From: "Vlado Korcek" To: freebsd-questions@FreeBSD.ORG Subject: DNS query repeated Date: Mon, 21 Jan 2002 17:26:15 +0000 Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_628_7df1_3d7a" Message-ID: X-OriginalArrivalTime: 21 Jan 2002 17:26:15.0798 (UTC) FILETIME=[BAF21960:01C1A2A0] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_628_7df1_3d7a Content-Type: text/plain; format=flowed Hi folks, Does anybody have any idea why DNS resolver still repeat his query to DNS server. I tried for some test purposes ping6 with the name: # ping6 Nr-5_v6.my.domain I saw in Ethereal that the query from DNS client was sent and response from DNS server (for PTR type) as well. I am using the global addresses. The problem is, the queries and responses are still repeating after I have got first response, which seems to be OK. I have attached the output from Ethereal. Thx. Vladimir _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. ------=_NextPart_000_628_7df1_3d7a Content-Type: application/octet-stream; name="Ping6" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="Ping6" 1MOyoQIABAAAAAAAAAAAAP//AAABAAAAOmlMPLCfBgBhAAAAYQAAAAAEdhEs bAAwBQ94fIbdYARSZgArEUAgAQAAAAAAAAAAAAAAAAEjIAEAAAAAAAAAAAAA AAAABQkMADUAK9SD6uQBAAABAAAAAAAAB05yLTFfdjYCbXkGZG9tYWluAAAc AAE6aUw8oaYGALwAAAC8AAAAADAFD3h8AAR2ESxsht1gAAAAAIYRQCABAAAA AAAAAAAAAAAAAAUgAQAAAAAAAAAAAAAAAAEjADUJDACGK6nq5IWAAAEAAQAB AAIHTnItMV92NgJteQZkb21haW4AABwAAcAMABwAAQABUYAAECABAAAAAAAA AAAAAAAAAAXAFAACAAEAAVGAAAcETnItMcAUwEsAAQABAAFRgAAEwKgAKMBL ABwAAQABUYAAEP6AAAAAAAAAAgR2//4RLGw7aUw8MUoBAJcAAACXAAAAAAR2 ESxsADAFD3h8ht1gBFJoAGERQCABAAAAAAAAAAAAAAAAASMgAQAAAAAAAAAA AAAAAAAFCQ0ANQBhD0+L6wEAAAEAAAAAAAABNQEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAExATABMAEy A2lwNgNpbnQAAAwAATtpTDxhUgEA9QAAAPUAAAAAMAUPeHwABHYRLGyG3WAA AAAAvxFAIAEAAAAAAAAAAAAAAAAABSABAAAAAAAAAAAAAAAAASMANQkNAL/e jYvrhYAAAQABAAEAAgE1ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2ludAAADAAB wAwADAABAAFRgAATB05yLTVfdjYCbXkGZG9tYWluAMBEAAIAAQABUYAABwRO ci0xwG3AhAABAAEAAVGAAATAqAAowIQAHAABAAFRgAAQ/oAAAAAAAAACBHb/ /hEsbDtpTDzEpQEAlwAAAJcAAAAABHYRLGwAMAUPeHyG3WAEUmoAYRFAIAEA AAAAAAAAAAAAAAABIyABAAAAAAAAAAAAAAAAAAUJDgA1AGEPTYvsAQAAAQAA AAAAAAE1ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2ludAAADAABO2lMPLatAQD1 AAAA9QAAAAAwBQ94fAAEdhEsbIbdYAAAAAC/EUAgAQAAAAAAAAAAAAAAAAAF IAEAAAAAAAAAAAAAAAABIwA1CQ4Av96Li+yFgAABAAEAAQACATUBMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMQEwATABMgNpcDYDaW50AAAMAAHADAAMAAEAAVGAABMHTnItNV92NgJt eQZkb21haW4AwEQAAgABAAFRgAAHBE5yLTHAbcCEAAEAAQABUYAABMCoACjA hAAcAAEAAVGAABD+gAAAAAAAAAIEdv/+ESxsO2lMPEbEAQCXAAAAlwAAAAAE dhEsbAAwBQ94fIbdYARSbABhEUAgAQAAAAAAAAAAAAAAAAEjIAEAAAAAAAAA AAAAAAAABQkPADUAYQ9Li+0BAAABAAAAAAAAATUBMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMQEwATAB MgNpcDYDaW50AAAMAAE7aUw8H8wBAPUAAAD1AAAAADAFD3h8AAR2ESxsht1g AAAAAL8RQCABAAAAAAAAAAAAAAAAAAUgAQAAAAAAAAAAAAAAAAEjADUJDwC/ 3omL7YWAAAEAAQABAAIBNQEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNpbnQAAAwA AcAMAAwAAQABUYAAEwdOci01X3Y2Am15BmRvbWFpbgDARAACAAEAAVGAAAcE TnItMcBtwIQAAQABAAFRgAAEwKgAKMCEABwAAQABUYAAEP6AAAAAAAAAAgR2 //4RLGw8aUw80kkBAJcAAACXAAAAAAR2ESxsADAFD3h8ht1gBFJuAGERQCAB AAAAAAAAAAAAAAAAASMgAQAAAAAAAAAAAAAAAAAFCRAANQBhD0mL7gEAAAEA AAAAAAABNQEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNpbnQAAAwAATxpTDz9UQEA 9QAAAPUAAAAAMAUPeHwABHYRLGyG3WAAAAAAvxFAIAEAAAAAAAAAAAAAAAAA BSABAAAAAAAAAAAAAAAAASMANQkQAL/eh4vuhYAAAQABAAEAAgE1ATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATEBMAEwATIDaXA2A2ludAAADAABwAwADAABAAFRgAATB05yLTVfdjYC bXkGZG9tYWluAMBEAAIAAQABUYAABwROci0xwG3AhAABAAEAAVGAAATAqAAo wIQAHAABAAFRgAAQ/oAAAAAAAAACBHb//hEsbDxpTDxrVAEAlwAAAJcAAAAA BHYRLGwAMAUPeHyG3WAEUnAAYRFAIAEAAAAAAAAAAAAAAAABIyABAAAAAAAA AAAAAAAAAAUJEQA1AGEPR4vvAQAAAQAAAAAAAAE1ATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATEBMAEw ATIDaXA2A2ludAAADAABPGlMPCpcAQD1AAAA9QAAAAAwBQ94fAAEdhEsbIbd YAAAAAC/EUAgAQAAAAAAAAAAAAAAAAAFIAEAAAAAAAAAAAAAAAABIwA1CREA v96Fi++FgAABAAEAAQACATUBMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMQEwATABMgNpcDYDaW50AAAM AAHADAAMAAEAAVGAABMHTnItNV92NgJteQZkb21haW4AwEQAAgABAAFRgAAH BE5yLTHAbcCEAAEAAQABUYAABMCoACjAhAAcAAEAAVGAABD+gAAAAAAAAAIE dv/+ESxsPGlMPNddAQCXAAAAlwAAAAAEdhEsbAAwBQ94fIbdYARScgBhEUAg AQAAAAAAAAAAAAAAAAEjIAEAAAAAAAAAAAAAAAAABQkSADUAYQ9Fi/ABAAAB AAAAAAAAATUBMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMQEwATABMgNpcDYDaW50AAAMAAE8aUw8m2UB APUAAAD1AAAAADAFD3h8AAR2ESxsht1gAAAAAL8RQCABAAAAAAAAAAAAAAAA AAUgAQAAAAAAAAAAAAAAAAEjADUJEgC/3oOL8IWAAAEAAQABAAIBNQEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAExATABMAEyA2lwNgNpbnQAAAwAAcAMAAwAAQABUYAAEwdOci01X3Y2 Am15BmRvbWFpbgDARAACAAEAAVGAAAcETnItMcBtwIQAAQABAAFRgAAEwKgA KMCEABwAAQABUYAAEP6AAAAAAAAAAgR2//4RLGw8aUw88mYBAJcAAACXAAAA AAR2ESxsADAFD3h8ht1gBFJ0AGERQCABAAAAAAAAAAAAAAAAASMgAQAAAAAA AAAAAAAAAAAFCRMANQBhD0OL8QEAAAEAAAAAAAABNQEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAExATAB MAEyA2lwNgNpbnQAAAwAATxpTDxQbwEA9QAAAPUAAAAAMAUPeHwABHYRLGyG 3WAAAAAAvxFAIAEAAAAAAAAAAAAAAAAABSABAAAAAAAAAAAAAAAAASMANQkT AL/egYvxhYAAAQABAAEAAgE1ATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2ludAAA DAABwAwADAABAAFRgAATB05yLTVfdjYCbXkGZG9tYWluAMBEAAIAAQABUYAA BwROci0xwG3AhAABAAEAAVGAAATAqAAowIQAHAABAAFRgAAQ/oAAAAAAAAAC BHb//hEsbDxpTDzqcAEAlwAAAJcAAAAABHYRLGwAMAUPeHyG3WAEUnYAYRFA IAEAAAAAAAAAAAAAAAABIyABAAAAAAAAAAAAAAAAAAUJFAA1AGEPQYvyAQAA AQAAAAAAAAE1ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2ludAAADAABPGlMPKx4 AQD1AAAA9QAAAAAwBQ94fAAEdhEsbIbdYAAAAAC/EUAgAQAAAAAAAAAAAAAA AAAFIAEAAAAAAAAAAAAAAAABIwA1CRQAv95/i/KFgAABAAEAAQACATUBMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMQEwATABMgNpcDYDaW50AAAMAAHADAAMAAEAAVGAABMHTnItNV92 NgJteQZkb21haW4AwEQAAgABAAFRgAAHBE5yLTHAbcCEAAEAAQABUYAABMCo ACjAhAAcAAEAAVGAABD+gAAAAAAAAAIEdv/+ESxsPGlMPPh5AQCXAAAAlwAA AAAEdhEsbAAwBQ94fIbdYARSeABhEUAgAQAAAAAAAAAAAAAAAAEjIAEAAAAA AAAAAAAAAAAABQkVADUAYQ8/i/MBAAABAAAAAAAAATUBMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMQEw ATABMgNpcDYDaW50AAAMAAE8aUw8tIEBAPUAAAD1AAAAADAFD3h8AAR2ESxs ht1gAAAAAL8RQCABAAAAAAAAAAAAAAAAAAUgAQAAAAAAAAAAAAAAAAEjADUJ FQC/3n2L84WAAAEAAQABAAIBNQEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNpbnQA AAwAAcAMAAwAAQABUYAAEwdOci01X3Y2Am15BmRvbWFpbgDARAACAAEAAVGA AAcETnItMcBtwIQAAQABAAFRgAAEwKgAKMCEABwAAQABUYAAEP6AAAAAAAAA AgR2//4RLGw9aUw8AEoBAJcAAACXAAAAAAR2ESxsADAFD3h8ht1gBFJ6AGER QCABAAAAAAAAAAAAAAAAASMgAQAAAAAAAAAAAAAAAAAFCRYANQBhDz2L9AEA AAEAAAAAAAABNQEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNpbnQAAAwAAT1pTDwJ UgEA9QAAAPUAAAAAMAUPeHwABHYRLGyG3WAAAAAAvxFAIAEAAAAAAAAAAAAA AAAABSABAAAAAAAAAAAAAAAAASMANQkWAL/ee4v0hYAAAQABAAEAAgE1ATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATEBMAEwATIDaXA2A2ludAAADAABwAwADAABAAFRgAATB05yLTVf djYCbXkGZG9tYWluAMBEAAIAAQABUYAABwROci0xwG3AhAABAAEAAVGAAATA qAAowIQAHAABAAFRgAAQ/oAAAAAAAAACBHb//hEsbD1pTDxtVAEAlwAAAJcA AAAABHYRLGwAMAUPeHyG3WAEUnwAYRFAIAEAAAAAAAAAAAAAAAABIyABAAAA AAAAAAAAAAAAAAUJFwA1AGEPO4v1AQAAAQAAAAAAAAE1ATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATEB MAEwATIDaXA2A2ludAAADAABPWlMPDVcAQD1AAAA9QAAAAAwBQ94fAAEdhEs bIbdYAAAAAC/EUAgAQAAAAAAAAAAAAAAAAAFIAEAAAAAAAAAAAAAAAABIwA1 CRcAv955i/WFgAABAAEAAQACATUBMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMQEwATABMgNpcDYDaW50 AAAMAAHADAAMAAEAAVGAABMHTnItNV92NgJteQZkb21haW4AwEQAAgABAAFR gAAHBE5yLTHAbcCEAAEAAQABUYAABMCoACjAhAAcAAEAAVGAABD+gAAAAAAA AAIEdv/+ESxsPWlMPNddAQCXAAAAlwAAAAAEdhEsbAAwBQ94fIbdYARSfgBh EUAgAQAAAAAAAAAAAAAAAAEjIAEAAAAAAAAAAAAAAAAABQkYADUAYQ85i/YB AAABAAAAAAAAATUBMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMQEwATABMgNpcDYDaW50AAAMAAE9aUw8 kmUBAPUAAAD1AAAAADAFD3h8AAR2ESxsht1gAAAAAL8RQCABAAAAAAAAAAAA AAAAAAUgAQAAAAAAAAAAAAAAAAEjADUJGAC/3neL9oWAAAEAAQABAAIBNQEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAExATABMAEyA2lwNgNpbnQAAAwAAcAMAAwAAQABUYAAEwdOci01 X3Y2Am15BmRvbWFpbgDARAACAAEAAVGAAAcETnItMcBtwIQAAQABAAFRgAAE wKgAKMCEABwAAQABUYAAEP6AAAAAAAAAAgR2//4RLGw9aUw832YBAJcAAACX AAAAAAR2ESxsADAFD3h8ht1gBFKAAGERQCABAAAAAAAAAAAAAAAAASMgAQAA AAAAAAAAAAAAAAAFCRkANQBhDzeL9wEAAAEAAAAAAAABNQEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEx ATABMAEyA2lwNgNpbnQAAAwAAT1pTDxGbwEA9QAAAPUAAAAAMAUPeHwABHYR LGyG3WAAAAAAvxFAIAEAAAAAAAAAAAAAAAAABSABAAAAAAAAAAAAAAAAASMA NQkZAL/edYv3hYAAAQABAAEAAgE1ATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2lu dAAADAABwAwADAABAAFRgAATB05yLTVfdjYCbXkGZG9tYWluAMBEAAIAAQAB UYAABwROci0xwG3AhAABAAEAAVGAAATAqAAowIQAHAABAAFRgAAQ/oAAAAAA AAACBHb//hEsbD1pTDzccAEAlwAAAJcAAAAABHYRLGwAMAUPeHyG3WAEUoIA YRFAIAEAAAAAAAAAAAAAAAABIyABAAAAAAAAAAAAAAAAAAUJGgA1AGEPNYv4 AQAAAQAAAAAAAAE1ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2ludAAADAABPWlM PKN4AQD1AAAA9QAAAAAwBQ94fAAEdhEsbIbdYAAAAAC/EUAgAQAAAAAAAAAA AAAAAAAFIAEAAAAAAAAAAAAAAAABIwA1CRoAv95zi/iFgAABAAEAAQACATUB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMQEwATABMgNpcDYDaW50AAAMAAHADAAMAAEAAVGAABMHTnIt NV92NgJteQZkb21haW4AwEQAAgABAAFRgAAHBE5yLTHAbcCEAAEAAQABUYAA BMCoACjAhAAcAAEAAVGAABD+gAAAAAAAAAIEdv/+ESxsPWlMPO55AQCXAAAA lwAAAAAEdhEsbAAwBQ94fIbdYARShABhEUAgAQAAAAAAAAAAAAAAAAEjIAEA AAAAAAAAAAAAAAAABQkbADUAYQ8zi/kBAAABAAAAAAAAATUBMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MQEwATABMgNpcDYDaW50AAAMAAE9aUw8qoEBAPUAAAD1AAAAADAFD3h8AAR2 ESxsht1gAAAAAL8RQCABAAAAAAAAAAAAAAAAAAUgAQAAAAAAAAAAAAAAAAEj ADUJGwC/3nGL+YWAAAEAAQABAAIBNQEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNp bnQAAAwAAcAMAAwAAQABUYAAEwdOci01X3Y2Am15BmRvbWFpbgDARAACAAEA AVGAAAcETnItMcBtwIQAAQABAAFRgAAEwKgAKMCEABwAAQABUYAAEP6AAAAA AAAAAgR2//4RLGw9aUw8N4MBAJcAAACXAAAAAAR2ESxsADAFD3h8ht1gBFKG AGERQCABAAAAAAAAAAAAAAAAASMgAQAAAAAAAAAAAAAAAAAFCRwANQBhDzGL +gEAAAEAAAAAAAABNQEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNpbnQAAAwAAT1p TDzxigEA9QAAAPUAAAAAMAUPeHwABHYRLGyG3WAAAAAAvxFAIAEAAAAAAAAA AAAAAAAABSABAAAAAAAAAAAAAAAAASMANQkcAL/eb4v6hYAAAQABAAEAAgE1 ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATEBMAEwATIDaXA2A2ludAAADAABwAwADAABAAFRgAATB05y LTVfdjYCbXkGZG9tYWluAMBEAAIAAQABUYAABwROci0xwG3AhAABAAEAAVGA AATAqAAowIQAHAABAAFRgAAQ/oAAAAAAAAACBHb//hEsbD1pTDw8jAEAlwAA AJcAAAAABHYRLGwAMAUPeHyG3WAEUogAYRFAIAEAAAAAAAAAAAAAAAABIyAB AAAAAAAAAAAAAAAAAAUJHQA1AGEPL4v7AQAAAQAAAAAAAAE1ATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATEBMAEwATIDaXA2A2ludAAADAABPWlMPPqTAQD1AAAA9QAAAAAwBQ94fAAE dhEsbIbdYAAAAAC/EUAgAQAAAAAAAAAAAAAAAAAFIAEAAAAAAAAAAAAAAAAB IwA1CR0Av95ti/uFgAABAAEAAQACATUBMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMQEwATABMgNpcDYD aW50AAAMAAHADAAMAAEAAVGAABMHTnItNV92NgJteQZkb21haW4AwEQAAgAB AAFRgAAHBE5yLTHAbcCEAAEAAQABUYAABMCoACjAhAAcAAEAAVGAABD+gAAA AAAAAAIEdv/+ESxsPWlMPAqWAQCXAAAAlwAAAAAEdhEsbAAwBQ94fIbdYARS igBhEUAgAQAAAAAAAAAAAAAAAAEjIAEAAAAAAAAAAAAAAAAABQkeADUAYQ8t i/wBAAABAAAAAAAAATUBMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMQEwATABMgNpcDYDaW50AAAMAAE9 aUw83J0BAPUAAAD1AAAAADAFD3h8AAR2ESxsht1gAAAAAL8RQCABAAAAAAAA AAAAAAAAAAUgAQAAAAAAAAAAAAAAAAEjADUJHgC/3muL/IWAAAEAAQABAAIB NQEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAExATABMAEyA2lwNgNpbnQAAAwAAcAMAAwAAQABUYAAEwdO ci01X3Y2Am15BmRvbWFpbgDARAACAAEAAVGAAAcETnItMcBtwIQAAQABAAFR gAAEwKgAKMCEABwAAQABUYAAEP6AAAAAAAAAAgR2//4RLGw9aUw8W58BAJcA AACXAAAAAAR2ESxsADAFD3h8ht1gBFKMAGERQCABAAAAAAAAAAAAAAAAASMg AQAAAAAAAAAAAAAAAAAFCR8ANQBhDyuL/QEAAAEAAAAAAAABNQEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAExATABMAEyA2lwNgNpbnQAAAwAAT1pTDwkpwEA9QAAAPUAAAAAMAUPeHwA BHYRLGyG3WAAAAAAvxFAIAEAAAAAAAAAAAAAAAAABSABAAAAAAAAAAAAAAAA ASMANQkfAL/eaYv9hYAAAQABAAEAAgE1ATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2 A2ludAAADAABwAwADAABAAFRgAATB05yLTVfdjYCbXkGZG9tYWluAMBEAAIA AQABUYAABwROci0xwG3AhAABAAEAAVGAAATAqAAowIQAHAABAAFRgAAQ/oAA AAAAAAACBHb//hEsbD1pTDy2qAEAlwAAAJcAAAAABHYRLGwAMAUPeHyG3WAE Uo4AYRFAIAEAAAAAAAAAAAAAAAABIyABAAAAAAAAAAAAAAAAAAUJIAA1AGEP KYv+AQAAAQAAAAAAAAE1ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2ludAAADAAB PWlMPIGwAQD1AAAA9QAAAAAwBQ94fAAEdhEsbIbdYAAAAAC/EUAgAQAAAAAA AAAAAAAAAAAFIAEAAAAAAAAAAAAAAAABIwA1CSAAv95ni/6FgAABAAEAAQAC ATUBMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMQEwATABMgNpcDYDaW50AAAMAAHADAAMAAEAAVGAABMH TnItNV92NgJteQZkb21haW4AwEQAAgABAAFRgAAHBE5yLTHAbcCEAAEAAQAB UYAABMCoACjAhAAcAAEAAVGAABD+gAAAAAAAAAIEdv/+ESxsPWlMPNSxAQCX AAAAlwAAAAAEdhEsbAAwBQ94fIbdYARSkABhEUAgAQAAAAAAAAAAAAAAAAEj IAEAAAAAAAAAAAAAAAAABQkhADUAYQ8ni/8BAAABAAAAAAAAATUBMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMQEwATABMgNpcDYDaW50AAAMAAE9aUw8n7kBAPUAAAD1AAAAADAFD3h8 AAR2ESxsht1gAAAAAL8RQCABAAAAAAAAAAAAAAAAAAUgAQAAAAAAAAAAAAAA AAEjADUJIQC/3mWL/4WAAAEAAQABAAIBNQEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAExATABMAEyA2lw NgNpbnQAAAwAAcAMAAwAAQABUYAAEwdOci01X3Y2Am15BmRvbWFpbgDARAAC AAEAAVGAAAcETnItMcBtwIQAAQABAAFRgAAEwKgAKMCEABwAAQABUYAAEP6A AAAAAAAAAgR2//4RLGw+aUw8YkoBAJcAAACXAAAAAAR2ESxsADAFD3h8ht1g BFKSAGERQCABAAAAAAAAAAAAAAAAASMgAQAAAAAAAAAAAAAAAAAFCSIANQBh DyWMAAEAAAEAAAAAAAABNQEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNpbnQAAAwA AQ== ------=_NextPart_000_628_7df1_3d7a-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 9:32:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 09C4737B404 for ; Mon, 21 Jan 2002 09:32:55 -0800 (PST) Received: from trittico.fiddi.com ([12.228.145.237]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020121173254.EFQR10199.rwcrmhc53.attbi.com@trittico.fiddi.com> for ; Mon, 21 Jan 2002 17:32:54 +0000 Date: Mon, 21 Jan 2002 09:32:54 -0800 (PST) From: Dave Runkle X-X-Sender: dave@trittico.fiddi.com To: questions@FreeBSD.ORG Subject: Re: Xfree86 4.2.0 In-Reply-To: <20020121083009.A53217@blackhelicopters.org> Message-ID: <20020121090945.S25007-100000@trittico.fiddi.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002, Michael Lucas wrote: > The default X on 4.5 will still be 3.3.latest. The Big X3-X4 > Switch is scheduled to happen shortly after 4.5R. Michael, where do you get this 'inside' info? How can I keep up-to-date on info such as this? I've been all through the FreeBSD website, especially through announcements, I subscribe to announce@, I've looked all over. A mailing list I've missed, perhaps? I do subscribe to questions, stable, and current, as well as announce. Thanks! Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 9:42:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id CDA0637B400 for ; Mon, 21 Jan 2002 09:42:42 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0LHgf595647 for ; Mon, 21 Jan 2002 11:42:41 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0LHgfu02246 for questions@freebsd.org; Mon, 21 Jan 2002 11:42:41 -0600 (CST) Date: Mon, 21 Jan 2002 11:42:40 -0600 From: Doug Poland To: questions@freebsd.org Subject: crontab -e problem with vim-6.0.93 Message-ID: <20020121114240.A338@polands.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, crontab reports: "crontab.FoI3sEvvbS" 1L, 92C written crontab: temp file must be edited in place when I have vim-6.0.93 as my default editor tcsh% echo $EDITOR tcsh% vim If I change my EDITOR to vi, then crontab -e works fine. Running: FreeBSD 4.4-STABLE #4: Fri Nov 9 10:52:23 CST 2001 with custom kernel on i386 -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 9:53:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 4C4CB37B419 for ; Mon, 21 Jan 2002 09:53:40 -0800 (PST) Received: from gateway ([63.70.155.45]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Mon, 21 Jan 2002 12:56:50 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: sio1 interrupt-level buffer overflow Date: Mon, 21 Jan 2002 12:53:37 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a Zoom model 2920 pci modem on sio1 and connect to my ISP with user ppp. I keep getting this message on the FBSD console '30 more sio1 interrupt-level buffer overflows' when LAN window98 users browse the internet using internet explorer. I also get this message when I use 'tip or cu' command to issue ATI11 to the modem to display the last connection values. Any ideas of what is causing this? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 9:56:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web14912.mail.yahoo.com (web14912.mail.yahoo.com [216.136.225.248]) by hub.freebsd.org (Postfix) with SMTP id 8A5D637B404 for ; Mon, 21 Jan 2002 09:56:40 -0800 (PST) Message-ID: <20020121175640.91285.qmail@web14912.mail.yahoo.com> Received: from [200.208.29.92] by web14912.mail.yahoo.com via HTTP; Mon, 21 Jan 2002 09:56:40 PST Date: Mon, 21 Jan 2002 09:56:40 -0800 (PST) From: nirv one nine nine Subject: matrix console screensaver To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I installed 4.3, and also installed the matrix_saver.ko. sysinstall does not list the matrix screensaver as an option. How do I enable it? I searched the freebsd archives with no success. TIA nirv __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 9:57:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by hub.freebsd.org (Postfix) with ESMTP id 36F3837B41B for ; Mon, 21 Jan 2002 09:56:51 -0800 (PST) Received: from localhost ([62.252.176.191]) by mta03-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020121175649.GGVY8780.mta03-svc.ntlworld.com@localhost>; Mon, 21 Jan 2002 17:56:49 +0000 Received: from ac by localhost with local (Exim 3.33 #1 (Debian)) id 16SiSK-00013x-00; Mon, 21 Jan 2002 17:42:04 +0000 Date: Mon, 21 Jan 2002 17:42:04 +0000 From: Anthony Campbell To: Roger Kaputtnik Cc: freebsd-questions@FreeBSD.ORG Subject: Re: user-ppp Message-ID: <20020121174204.GA4073@debian.local> Mail-Followup-To: Roger Kaputtnik , freebsd-questions@FreeBSD.ORG References: <20020121164113.GA3727@debian.local> <20020121175735.A2594@encephalon.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020121175735.A2594@encephalon.de> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 21 Jan 2002, Roger Kaputtnik wrote: > Hi > > How is your ppp.conf looking like ? > Check where your modem is running (cuaa0 or cuaa1 ?) > Do you have these in /dev ? > > Axel > I'm on /dev/cuaa0, and yes, it is there. ppp.conf attached: ################################################################# # PPP Sample Configuration File # Originally written by Toshiharu OHNO # Simplified 5/14/1999 by wself@cdrom.com # # See /usr/share/examples/ppp/ for some examples # # $FreeBSD: src/etc/ppp/ppp.conf,v 1.2.2.5 2001/07/13 10:55:23 brian Exp $ ################################################################# default: set log Phase Chat LCP IPCP CCP tun command ident user-ppp VERSION (built COMPILATIONDATE) # Ensure that "device" references the correct serial port # for your modem. (cuaa0 = COM1, cuaa1 = COM2) # set device /dev/cuaa0 set speed 115200 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \ \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT" set timeout 180 # 3 minute idle timer (the default) # enable dns # request DNS info (for resolv.conf) papchap: # # edit the next three lines and replace the items in caps with # the values which have been assigned by your ISP. # set phone 126308005190100 set authname anthony.campbell1 set authkey *********** set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 add default HISADDR # Add a (sticky) default route # -- Anthony Campbell - running Linux GNU/Debian (Windows-free zone) For an electronic book (The Assassins of Alamut), skeptical essays, and over 150 book reviews, go to: http://www.acampbell.org.uk/ Our planet is a lonely speck in the great enveloping cosmic dark. In our obscurity, in all this vastness, there is no hint that help will come from elsewhere to save us from ourselves. [Carl Sagan] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 10: 4: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from linuxmail.touchtunes.com (operator.touchtunes.com [216.94.139.201]) by hub.freebsd.org (Postfix) with ESMTP id 1AD2837B618 for ; Mon, 21 Jan 2002 10:03:39 -0800 (PST) Received: from sunder.touchtunes.com (sunder.touchtunes.com [192.168.0.26]) by linuxmail.touchtunes.com (8.9.3/8.8.7) with ESMTP id NAA11740; Mon, 21 Jan 2002 13:03:38 -0500 Received: (from dinjo@localhost) by sunder.touchtunes.com (8.11.6/8.11.6) id g0LI3aU21262; Mon, 21 Jan 2002 13:03:36 -0500 (EST) (envelope-from dinjo) Date: Mon, 21 Jan 2002 13:03:36 -0500 From: Joel Dinel To: nirv one nine nine Cc: freebsd-questions@FreeBSD.ORG Subject: Re: matrix console screensaver Message-ID: <20020121130336.A87335@sunder.touchtunes.com> Mail-Followup-To: Joel Dinel , nirv one nine nine , freebsd-questions@FreeBSD.ORG References: <20020121175640.91285.qmail@web14912.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020121175640.91285.qmail@web14912.mail.yahoo.com>; from nirv199@yahoo.com on Mon, Jan 21, 2002 at 09:56:40AM -0800 X-Useless-Header: Look ma, it's a # sign! X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG As root, do the following : cd /modules ln -s /usr/local/lib/matrix/modules/matrix_saver.ko matrix_saver.ko then, edit /etc/rc.conf (still as root), and change/add the line : saver="matrix" Reboot. On Mon, Jan 21, 2002 at 09:56:40AM -0800, nirv one nine nine wrote: > Date: Mon, 21 Jan 2002 09:56:40 -0800 (PST) > From: nirv one nine nine > Subject: matrix console screensaver > To: freebsd-questions@FreeBSD.ORG > > Hi, > > I installed 4.3, and also installed the matrix_saver.ko. sysinstall > does not list the matrix screensaver as an option. How do I enable it? > I searched the freebsd archives with no success. > > TIA > > nirv > > __________________________________________________ > Do You Yahoo!? > Send FREE video emails in Yahoo! Mail! > http://promo.yahoo.com/videomail/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ---end quoted text--- -- Joel Dinel System Administrator TouchTunes Digital Jukebox, Inc. GnuPG key : http://darkhost.mine.nu:81/~joel/misc/mykey.asc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 10: 4:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from teak.adhesivemedia.com (teak.adhesivemedia.com [207.202.159.79]) by hub.freebsd.org (Postfix) with ESMTP id 01DC637B4FB for ; Mon, 21 Jan 2002 10:03:56 -0800 (PST) Received: from localhost (philip@localhost) by teak.adhesivemedia.com (8.11.6/8.11.6) with ESMTP id g0LI3gX58449; Mon, 21 Jan 2002 10:03:42 -0800 (PST) (envelope-from philip@adhesivemedia.com) Date: Mon, 21 Jan 2002 10:03:42 -0800 (PST) From: Philip Hallstrom To: Doug Poland Cc: questions@FreeBSD.ORG Subject: Re: crontab -e problem with vim-6.0.93 In-Reply-To: <20020121114240.A338@polands.org> Message-ID: <20020121100310.T58090-100000@teak.adhesivemedia.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You might try adding this to your .vimrc: set nobackup set nowritebackup Up until just a couple days ago I was using 6.0.93 and didn't have any problems... -philip On Mon, 21 Jan 2002, Doug Poland wrote: > Hi, > > crontab reports: > > "crontab.FoI3sEvvbS" 1L, 92C written > crontab: temp file must be edited in place > > when I have vim-6.0.93 as my default editor > > tcsh% echo $EDITOR > tcsh% vim > > If I change my EDITOR to vi, then crontab -e > works fine. > > Running: FreeBSD 4.4-STABLE #4: Fri Nov 9 10:52:23 CST 2001 > with custom kernel on i386 > > > -- > Regards, > Doug > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 10: 8:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from marble.dublin.wbtsystems.com (marble.dublin.wbtsystems.com [193.120.231.8]) by hub.freebsd.org (Postfix) with ESMTP id 93E7537B402 for ; Mon, 21 Jan 2002 10:08:19 -0800 (PST) Received: from spiral (spiral.dublin.wbtsystems.com [193.120.231.190]) (authenticated) by marble.dublin.wbtsystems.com (8.11.6/8.11.6) with ESMTP id g0LI8FW66304; Mon, 21 Jan 2002 18:08:15 GMT From: "Barry Byrne" To: "nirv one nine nine" , Subject: RE: matrix console screensaver Date: Mon, 21 Jan 2002 18:08:14 -0000 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 V6.00.2600.0000 In-Reply-To: <20020121175640.91285.qmail@web14912.mail.yahoo.com> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi: You need to load the module using kldload. Probably something like: kldload -v /usr/local/lib/matrix/modules/matrix_saver.ko To modify blanktime, you can use vidcontrol. Cheers, Barry -- Barry Byrne, IT Manager, WBT Systems, Block 2, Harcourt Centre Harcourt Street, Dublin 2, Ireland > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of nirv one nine > nine > Sent: 21 January 2002 17:57 > To: freebsd-questions@FreeBSD.ORG > Subject: matrix console screensaver > > > Hi, > > I installed 4.3, and also installed the matrix_saver.ko. sysinstall > does not list the matrix screensaver as an option. How do I enable it? > I searched the freebsd archives with no success. > > TIA > > nirv > > __________________________________________________ > Do You Yahoo!? > Send FREE video emails in Yahoo! Mail! > http://promo.yahoo.com/videomail/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 10:12:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fedde.littleton.co.us (cfedde.dsl.frii.net [216.17.139.141]) by hub.freebsd.org (Postfix) with ESMTP id 946BF37B402 for ; Mon, 21 Jan 2002 10:12:37 -0800 (PST) Received: from fedde.littleton.co.us (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.6/8.11.4) with ESMTP id g0LICW817689; Mon, 21 Jan 2002 11:12:32 -0700 (MST) Message-Id: <200201211812.g0LICW817689@fedde.littleton.co.us> To: "Stan Brown" Cc: freebsd-questions@FreeBSD.ORG (Free BSD Questions list) Subject: Re: moving currnet sources from a recently cvsup'd machine to another? In-Reply-To: <200201211550.g0LFouX28903@panix2.panix.com> From: Chris Fedde Date: Mon, 21 Jan 2002 11:12:32 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002 10:50:56 -0500 (EST) "Stan Brown" wrote: +------------------ | This should work, right? What directoriy(s) would I need to tar over, or is | there a better way to do this? +------------------ I have done this frequently with NFS. Export /usr/src/, /usr/obj and maybe /usr/ports on the laptop. Then when it is at work mount those directories on each desktop that you want to upgrade. If make buildworld has been done on the laptop then make installworld is all that needs to be done on each station. -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 10:28:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id 17D8237B400 for ; Mon, 21 Jan 2002 10:28:32 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0LISB511144; Mon, 21 Jan 2002 12:28:11 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0LIQxn06258; Mon, 21 Jan 2002 12:26:59 -0600 (CST) Date: Mon, 21 Jan 2002 12:26:59 -0600 From: Doug Poland To: Philip Hallstrom Cc: questions@FreeBSD.ORG Subject: Re: crontab -e problem with vim-6.0.93 Message-ID: <20020121122659.A5820@polands.org> References: <20020121114240.A338@polands.org> <20020121100310.T58090-100000@teak.adhesivemedia.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121100310.T58090-100000@teak.adhesivemedia.com>; from philip@adhesivemedia.com on Mon, Jan 21, 2002 at 10:03:42AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 10:03:42AM -0800, Philip Hallstrom wrote: > You might try adding this to your .vimrc: > > set nobackup > set nowritebackup > > Up until just a couple days ago I was using 6.0.93 and didn't have any > problems... > > -philip > That worked for me, thanks for the help Philip. -- Regards, Doug > On Mon, 21 Jan 2002, Doug Poland wrote: > > > Hi, > > > > crontab reports: > > > > "crontab.FoI3sEvvbS" 1L, 92C written > > crontab: temp file must be edited in place > > > > when I have vim-6.0.93 as my default editor > > > > tcsh% echo $EDITOR > > tcsh% vim > > > > If I change my EDITOR to vi, then crontab -e > > works fine. > > > > Running: FreeBSD 4.4-STABLE #4: Fri Nov 9 10:52:23 CST 2001 > > with custom kernel on i386 > > > > -- > > Regards, > > Doug > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 10:33:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from encephalon.de (p3EE35CC5.dip0.t-ipconnect.de [62.227.92.197]) by hub.freebsd.org (Postfix) with ESMTP id 2156537B404 for ; Mon, 21 Jan 2002 10:33:35 -0800 (PST) Received: (from bsd@localhost) by encephalon.de (8.11.6/8.11.6) id g0LIUSU02854; Mon, 21 Jan 2002 19:30:28 +0100 (CET) (envelope-from bsd) Date: Mon, 21 Jan 2002 19:30:27 +0100 From: Roger Kaputtnik To: Anthony Campbell Cc: freebsd-questions@FreeBSD.ORG Subject: Re: user-ppp Message-ID: <20020121193027.A2784@encephalon.de> References: <20020121164113.GA3727@debian.local> <20020121175735.A2594@encephalon.de> <20020121174204.GA4073@debian.local> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121174204.GA4073@debian.local>; from ac@acampbell.org.uk on Mon, Jan 21, 2002 at 05:42:04PM +0000 X-Operating-System: FreeBSD encephalon.de 4.5-RC FreeBSD 4.5-RC Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi again. > ppp.conf attached: Good. I erased mine this moment...I need some sleep.... :-( > default: > set log Phase Chat LCP IPCP CCP tun command > ident user-ppp VERSION (built COMPILATIONDATE) > set device /dev/cuaa0 > set speed 115200 > set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \ > \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT" > set timeout 180 # 3 minute idle timer (the default) > # enable dns # request DNS info (for resolv.conf) Why is "enable dns" disabled ? Uncomment this on out, and fill in resolv.conf yout nameserver of your provider... > papchap: > set phone 126308005190100 > set authname anthony.campbell1 > set authkey *********** > set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 > add default HISADDR # Add a (sticky) default route Ok. Hmm. So you do it like that (?): #ppp ppp ON yourmachine>dial papchap Then the ppp must go ppP pPP PPP Thats it. But you need a nameserver to know. hth. Axel -- encephalon.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 10:54:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mohegan.mohawk.net (mohegan.mohawk.net [63.66.68.21]) by hub.freebsd.org (Postfix) with ESMTP id C017237B400 for ; Mon, 21 Jan 2002 10:54:53 -0800 (PST) Received: (from nobody@localhost) by mohegan.mohawk.net (8.11.4/8.11.3) id g0LIsrn63824 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 13:54:53 -0500 (EST) X-Authentication-Warning: mohegan.mohawk.net: nobody set sender to fbsd@mohawk.net using -f To: freebsd-questions Subject: remote backups Message-ID: <1011639293.3c4c63fd410b0@mail.mohawk.net> Date: Mon, 21 Jan 2002 13:54:53 -0500 (EST) From: Ralph Huntington MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP IMAP webmail program 2.2.4 X-Originating-IP: 66.66.232.51 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a client who wants us to do a backup scheme on a remote server to a dedicated (for the particular host) drive such that the backup drive could be installed in the backed-up host and booted as the original drive in the event of catastrophic failure of the original. Is there a way to do that? I've looked at various backup schemes and devices and I don't see anything like that. There doesn't seem to be very much even for backing up to a drive rather than to a tape device. Someone suggested 'mirroring' the drive, but I'm not sure what they really meant or how that might be done. -=ralph=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 10:57:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.dreamnet.waw.pl (pl60.warszawa.sdi.tpnet.pl [213.76.250.60]) by hub.freebsd.org (Postfix) with ESMTP id DC7DC37B402 for ; Mon, 21 Jan 2002 10:57:25 -0800 (PST) Received: from 127.0.0.1 (localhost [127.0.0.1]) by dreamnet.waw.pl (Postfix) with SMTP id 2692A3706 for ; Mon, 21 Jan 2002 19:57:23 +0100 (CET) Received: by mail.dreamnet.waw.pl (Postfix, from userid 501) id E30D73597; Mon, 21 Jan 2002 19:57:21 +0100 (CET) Date: Mon, 21 Jan 2002 19:57:21 +0100 From: Dariusz Kowalski To: freebsd-questions@freebsd.org Subject: dump Message-ID: <20020121195721.A92243@dreamnet.waw.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I want to ask you some questions about dump program. Is it possible to write on one tape more then one filesystem? I have Tandberg SL7 streamer drive which size is 20/40GB. I want to backup all my disks. Sizes of partitions are between 150MB and 20GB. I dont't know, if I can archive all disks on one cassette. I will be gratefull, if you tell me where I can find some information about backuping? -- Best Regards, ------------------------------------- Dariusz Kowalski mailto:d.kowalski@dreamnet.waw.pl http://www.dreamnet.waw.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 10:57:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from raiden.jasnetworks.net (raiden.jasnetworks.net [65.194.248.251]) by hub.freebsd.org (Postfix) with ESMTP id EDE5F37B404 for ; Mon, 21 Jan 2002 10:57:29 -0800 (PST) Received: from works ([192.168.0.2]) by raiden.jasnetworks.net (8.11.6/8.11.6) with ESMTP id g0LIvOo00115 for ; Mon, 21 Jan 2002 13:57:24 -0500 (EST) (envelope-from raiden23@netzero.net) Message-Id: <4.2.0.58.20020121135021.00986420@pop.netzero.net> X-Sender: raiden23@pop.netzero.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Mon, 21 Jan 2002 13:50:24 -0500 To: freebsd-questions@FreeBSD.ORG From: Lord Raiden Subject: Qmail/Samba tutorial Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hey, does anyone know of any good tutorials for setting up Samba and Qmail? The Qmail is for me so I can change us over from Popmail which we're currently using and the Samba tutorials are for one of my techs in the field. The simpler and more straight forward the tutorials the better. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 11: 8:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id E1D6837B400 for ; Mon, 21 Jan 2002 11:08:35 -0800 (PST) Received: from gateway ([63.70.155.45]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Mon, 21 Jan 2002 14:11:46 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: Script ? Date: Mon, 21 Jan 2002 14:08:33 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In a script I buried some mkdir commands. Is there some way to have these commands display on console as the script runs them? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 11: 9:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from teak.adhesivemedia.com (teak.adhesivemedia.com [207.202.159.79]) by hub.freebsd.org (Postfix) with ESMTP id F407637B402 for ; Mon, 21 Jan 2002 11:09:45 -0800 (PST) Received: from localhost (philip@localhost) by teak.adhesivemedia.com (8.11.6/8.11.6) with ESMTP id g0LJ9gA60567; Mon, 21 Jan 2002 11:09:43 -0800 (PST) (envelope-from philip@adhesivemedia.com) Date: Mon, 21 Jan 2002 11:09:42 -0800 (PST) From: Philip Hallstrom To: Lord Raiden Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Qmail/Samba tutorial In-Reply-To: <4.2.0.58.20020121135021.00986420@pop.netzero.net> Message-ID: <20020121110802.O58970-100000@teak.adhesivemedia.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I don't use qmail, but for samba, the o'reilly book is online... http://www.oreilly.com/catalog/samba/chapter/book/index.html On Mon, 21 Jan 2002, Lord Raiden wrote: > Hey, does anyone know of any good tutorials for setting up Samba and > Qmail? The Qmail is for me so I can change us over from Popmail which > we're currently using and the Samba tutorials are for one of my techs in > the field. > > The simpler and more straight forward the tutorials the better. Thanks. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 11:11: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.away.net (away.net [208.194.163.2]) by hub.freebsd.org (Postfix) with ESMTP id D874637B402 for ; Mon, 21 Jan 2002 11:10:58 -0800 (PST) Received: (from driz@localhost) by mail.away.net (8.11.6/8.11.6) id g0LJAqg41113 for questions@FreeBSD.ORG; Mon, 21 Jan 2002 14:10:52 -0500 (EST) (envelope-from driz) Date: Mon, 21 Jan 2002 14:10:51 -0500 From: David Friedman To: questions@FreeBSD.ORG Subject: Re: Script ? Message-ID: <20020121141051.A40971@mail> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.2.5i In-Reply-To: ; from barbish@a1poweruser.com on Mon, Jan 21, 2002 at 02:08:33PM -0500 X-Info: http://www.away.net/ X-Uptime: 2:09PM up 5 days, 19 hrs, 2 users, load averages: 0.04, 0.09, 0.08 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Joe & Fhe Barbish (barbish@a1poweruser.com) wrote: > In a script I buried some mkdir commands.=20 > Is there some way to have these commands display=20 > on console as the script runs them? >=20 =46rom the mkdir man page: -v Be verbose when creating directories, listing them as they are created. --=20 David Friedman - http://www.away.net/ Windows: "Where do you want to go today?"=20 Linux: "Where do you want to go tomorrow?" BSD: "Are you guys coming or what?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 11:12: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from carbon.btinternet.com (carbon.btinternet.com [194.73.73.92]) by hub.freebsd.org (Postfix) with ESMTP id 3ACEE37B417 for ; Mon, 21 Jan 2002 11:12:03 -0800 (PST) Received: from host217-35-43-83.in-addr.btopenworld.com ([217.35.43.83] helo=marvin.penguinpowered.org.uk) by carbon.btinternet.com with esmtp (Exim 3.22 #8) id 16SjrK-0006YA-00 for freebsd-questions@freebsd.org; Mon, 21 Jan 2002 19:11:58 +0000 Received: from [192.168.10.12] (helo=set.home.penguinpowered.org.uk) by marvin.penguinpowered.org.uk with esmtp (Exim 3.33 #1) id 16SjwO-0000gr-00 for freebsd-questions@freebsd.org; Mon, 21 Jan 2002 19:17:12 +0000 Received: from waynep by set.home.penguinpowered.org.uk with local (Exim 3.34 #3) id 16Sjra-00006t-00 for freebsd-questions@freebsd.org; Mon, 21 Jan 2002 19:12:14 +0000 From: Wayne Pascoe To: freebsd-questions@freebsd.org Subject: VPN with dynamic IP's Date: 21 Jan 2002 19:12:13 +0000 Message-ID: Lines: 21 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.5 (bamboo) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, Quick question about building a VPN. We have the following situation. Our office machine (and firewall) have fixed IP addresses. We also have several staff who have ADSL connections at home with dynamic IP's. Our current corporate firewall (Raptor) is apparantly unable to provide VPN services with dynamic IP addresses. This is what our ops people tell me. Can IPSEC provide this kind of solution ? Shouldn't this be doable using the private keys to authenticate ? Thanks in advance, -- - Wayne Pascoe | There are no stupid questions, freebsd@molemanarmy.com | only stupid people. http://www.molemanarmy.com | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 11:31:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web10105.mail.yahoo.com (web10105.mail.yahoo.com [216.136.130.55]) by hub.freebsd.org (Postfix) with SMTP id A6E4F37B400 for ; Mon, 21 Jan 2002 11:31:49 -0800 (PST) Message-ID: <20020121193149.89458.qmail@web10105.mail.yahoo.com> Received: from [24.177.27.182] by web10105.mail.yahoo.com via HTTP; Mon, 21 Jan 2002 11:31:49 PST Date: Mon, 21 Jan 2002 11:31:49 -0800 (PST) From: twig les Subject: Snort doesn't start on boot To: freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've got a FreeBSD 4.4 stable box running a Snort/Mysql. Since I installed mysql from a package the start script is already in /usr/local/etc/rc.d and it works fine. However I have written a script for Snort that works when I do a sh snort.sh start (or stop), yet doesn't start Snort on boot. This is confusing to say the least. My system is 4.4 stable with a minimum install. Here is my script. I suspect the script since that's what I trult stink at. :) Any help would be great. ------------------------------------------------------- trons01# cd /usr/local/etc/rc.d trons01# ls 00mysql-client.sh mysql-server.sh snort.sh trons01# cat snort.sh #!/bin/sh case "$1" in start) if [ -x /usr/local/bin/snort ]; then /usr/local/bin/snort -c /usr/snort/snort.conf -D > /dev/null & && echo -n ' snort' fi ;; stop) /usr/bin/killall snort > /dev/null 2>&1 && echo -n ' snort' ;; *) echo "" echo "Usage: `basename $0` { start | stop }" echo "" exit 64 ;; esac ===== ------------------------------------------------------- It is easier to denature Plutonium than to denature the evil spirit of man ------------------------------------------------------- Albert Einstein __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 11:34:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fac13.ds.psu.edu (fac13.ds.psu.edu [146.186.61.98]) by hub.freebsd.org (Postfix) with ESMTP id 48B8337B404 for ; Mon, 21 Jan 2002 11:34:45 -0800 (PST) Received: from fac13.ds.psu.edu (localhost.ds.psu.edu [127.0.0.1]) by fac13.ds.psu.edu (8.11.6/8.11.3) with ESMTP id g0LJYUV99852 for ; Mon, 21 Jan 2002 14:34:33 -0500 (EST) (envelope-from hawk@fac13.ds.psu.edu) Message-Id: <200201211934.g0LJYUV99852@fac13.ds.psu.edu> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: freebsd-questions@FreeBSD.ORG Subject: spreading system across four fast scsi disks From: "Richard E. Hawkins" Date: Mon, 21 Jan 2002 14:34:30 -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It seems that, at long last my system is coming! The requisition now sits in the business office awaiting a purchase order (or however such things happen :). Anyway, the highlights are dual AMD 1900 MP 2G DDR sony 21" buckling spring keyboard with control key where God meant it to Be 4x 9g cheetah 1500rpm U160 scsi drive 2x18g cheetah 1500rpm U160 scsi drive no smoke pellets :( Anyway, the FreeBSD installation will run across the 4 small drives, with the two large drives for catching data as models run. But how to divide the four drives? I'm assuming that /, /usr, swap, and /home all go on different drives (and that swap really gets its own drive, or at least stuff that wouldn't get hit on in high performance operations). What about /var, though? The purpose of the split is so that the heads can be in places likely to be used simultaneously. Would anything in / oustside of /usr get touched much while a fortran program was running? Would /var get touched more than every few minutes? Does it matter anyway? :) I assume the program will be on /home (which I figure to give all but a little of its drive) and relying on libraries (fortran, imsl, etc.) in /usr. hawk, drooling in anticipation . . . -- What part of "non-negotiable" didn't you understand? /"\ ASCII ribbon campaign dochawk@psu.edu Smeal 178 (814) 375-4700 \ / against HTML mail These opinions will not be those of X and postings. Penn State until it pays my retainer. / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 11:37:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailout.fastq.com (mailout.fastq.com [204.62.193.66]) by hub.freebsd.org (Postfix) with ESMTP id 0E6F237B402 for ; Mon, 21 Jan 2002 11:37:08 -0800 (PST) Received: from broken (d147-osel.phx.fastq.com [216.190.249.179]) by mailout.fastq.com (8.11.3/8.11.3.FastQ-MailOut) with ESMTP id g0LJb6T54905 for ; Mon, 21 Jan 2002 12:37:06 -0700 (MST) (envelope-from dan@ript.org) From: "Dan Trainor" To: Subject: RE: Script ? Date: Mon, 21 Jan 2002 12:49:57 -0700 Message-ID: <00fc01c1a2b4$d1c0efe0$0100a8c0@broken> 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 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 In-Reply-To: <20020121141051.A40971@mail> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've recently read an excellent book, called Unix Shell Scripting, by Elle M. Quigley (I *think* that's the right name). It's a good book, and explains many ins-and-outs of shell programming. -dt -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG] On Behalf Of David Friedman Sent: Monday, January 21, 2002 12:11 PM To: questions@FreeBSD.ORG Subject: Re: Script ? * Joe & Fhe Barbish (barbish@a1poweruser.com) wrote: > In a script I buried some mkdir commands. > Is there some way to have these commands display > on console as the script runs them? > >From the mkdir man page: -v Be verbose when creating directories, listing them as they are created. -- David Friedman - http://www.away.net/ Windows: "Where do you want to go today?" Linux: "Where do you want to go tomorrow?" BSD: "Are you guys coming or what?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 11:40:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 3938837B402 for ; Mon, 21 Jan 2002 11:40:04 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id C2256BD04; Mon, 21 Jan 2002 11:40:03 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id LAA17892; Mon, 21 Jan 2002 11:40:03 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g0LJhNu01358; Mon, 21 Jan 2002 11:43:23 -0800 (PST) (envelope-from swear@blarg.net) To: "Franzen, Jon" Cc: "'freebsd-questions@freebsd.org'" Subject: Re: Printer problem - Canon BJC-1000 - FreeBSD 4.4 References: From: swear@blarg.net (Gary W. Swearingen) Date: 21 Jan 2002 11:43:23 -0800 In-Reply-To: Message-ID: Lines: 41 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Franzen, Jon" writes: > I'm a new user, I can't get "lptest > /dev/lpt0" or any of the other > functionality to work with my BJC-1000 printer. Absolutely nothing happens. > I think I've followed all the instructions found in many sources. > > Is any one else having this problem. I'd generally suggest installing a port of apsfilter or pdq or cups (which should require ghostscript, etc.), but you're problem seems deeper. I don't know BJC-1000, but my BJC-4300 and probably every other printer should respond with at least one line of text given the above command. Have you deleted too much from your kernel config file before rebuilding it? Does something in /boot/kernel.conf disable the driver? Do your bootup messages show anything like this? ppc0: at port 0x378-0x37f on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/15 bytes threshold lpt0: on ppbus0 lpt0: Polled port ppi0: on ppbus0 ppc1: at port 0x278-0x27f on isa0 ppc1: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppbus1: IEEE1284 device found /PS2/ECP/EPP Probing for PnP devices on ppbus1: ppbus1: lpt1: on ppbus1 lpt1: Polled port ppi1: on ppbus1 My kernel config has (there are other schemes, I think): device ppc0 at isa? port IO_LPT1 device ppc1 at isa? port IO_LPT2 device ppbus # Parallel port bus (required) device ppi # Parallel port interface device device lpt # Printers (I have two, lpt0 & lpt1) # [probably should wire down] And finally, check the cables and power. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 11:42:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id F1D3437B405 for ; Mon, 21 Jan 2002 11:42:11 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0LJgB533569; Mon, 21 Jan 2002 13:42:11 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0LJgAq12426; Mon, 21 Jan 2002 13:42:10 -0600 (CST) Date: Mon, 21 Jan 2002 13:42:10 -0600 From: Doug Poland To: Ralph Huntington Cc: freebsd-questions Subject: Re: remote backups Message-ID: <20020121134210.A12061@polands.org> References: <1011639293.3c4c63fd410b0@mail.mohawk.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <1011639293.3c4c63fd410b0@mail.mohawk.net>; from fbsd@mohawk.net on Mon, Jan 21, 2002 at 01:54:53PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 01:54:53PM -0500, Ralph Huntington wrote: > I have a client who wants us to do a backup scheme on a remote server > to a dedicated (for the particular host) drive such that the backup > drive could be installed in the backed-up host and booted as the > original drive in the event of catastrophic failure of the original. > > Is there a way to do that? I've looked at various backup schemes and > devices and I don't see anything like that. There doesn't seem to be > very much even for backing up to a drive rather than to a tape device. > > Someone suggested 'mirroring' the drive, but I'm not sure what they > really meant or how that might be done. > See http://www.freebsd.org/doc/en_US.ISO8859-1/articles/vinum/ for details on how to mirror the two drives to achieve your goal. -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12: 1: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from db.nexgen.com (db.nexgen.com [66.92.98.149]) by hub.freebsd.org (Postfix) with SMTP id 5E29337B487 for ; Mon, 21 Jan 2002 12:00:38 -0800 (PST) Received: (qmail 67631 invoked from network); 21 Jan 2002 20:00:06 -0000 Received: from oxyetb.com (HELO alexus) (66.92.98.145) by secure.nexgen.com with SMTP; 21 Jan 2002 20:00:06 -0000 Message-ID: <000f01c1a2b6$47bab310$0d00a8c0@alexus> From: "alexus" To: Subject: jail/ftp/PASV Date: Mon, 21 Jan 2002 15:00:05 -0500 Organization: NexGen MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi i'm using jail and i found the problem with ftp.. when users uses PASV mode, the only way they can get on my ftp if they use PORT mode, however people who's behind firewall they can't get in if they using PORT mode, due to it uses local ips (non routing) that's why smarter people invest PASV. any suggestions on that? how other people user jail and ftp (PASV) mode? thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12: 1:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from linuxmail.touchtunes.com (operator.touchtunes.com [216.94.139.201]) by hub.freebsd.org (Postfix) with ESMTP id 17ECC37B400 for ; Mon, 21 Jan 2002 12:01:36 -0800 (PST) Received: from sunder.touchtunes.com (sunder.touchtunes.com [192.168.0.26]) by linuxmail.touchtunes.com (8.9.3/8.8.7) with ESMTP id PAA15131 for ; Mon, 21 Jan 2002 15:01:35 -0500 Received: (from dinjo@localhost) by sunder.touchtunes.com (8.11.6/8.11.6) id g0LK1XW45802 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 15:01:33 -0500 (EST) (envelope-from dinjo) Date: Mon, 21 Jan 2002 15:01:33 -0500 From: Joel Dinel To: freebsd-questions@FreeBSD.ORG Subject: Latest linux-opera has a bug? Message-ID: <20020121150133.A45773@sunder.touchtunes.com> Mail-Followup-To: Joel Dinel , freebsd-questions@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-Useless-Header: Look ma, it's a # sign! X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I seem to be experiencing a weird problem with the latest linux-opera build (linux-opera-6.0.20020110.1). Basically, the images take forever to load. I run Netscape 4.79 & Mozilla 0.9.7 simultaneously, and they both load up any page in record time. Anybody else has seen this happen? Thanks, -- Joel Dinel System Administrator TouchTunes Digital Jukebox, Inc. GnuPG key : http://darkhost.mine.nu:81/~joel/misc/mykey.asc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12: 6:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 366F937B420 for ; Mon, 21 Jan 2002 12:06:19 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id 53C585D0A; Mon, 21 Jan 2002 12:06:19 -0800 (PST) To: Fabio Yasusi Yamamoto Cc: questions@FreeBSD.ORG Subject: Re: Xfree86 4.2.0 In-reply-to: Your message of "Mon, 21 Jan 2002 05:21:56 -0200." <3C4BC194.5000906@hostname.org> Date: Mon, 21 Jan 2002 12:06:19 -0800 From: "Kevin Oberman" Message-Id: <20020121200619.53C585D0A@ptavv.es.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Mon, 21 Jan 2002 05:21:56 -0200 > From: Fabio Yasusi Yamamoto > Sender: owner-freebsd-questions@FreeBSD.ORG > > Xfree86 4.2.0 will be on freebsd 4.5? This gets down to semantics. Technically, XFree86 is not a part of the base system. It's always a package or port. But the installation procedure does provide the option of installing X and people tend to think that makes X part of the base system. My recommendation has long been to NOT install any X from sysinstall but to install XFree86-4 from either package or port right after the installation to avoid any confusion, especially if you are using any video card less than two years old. For the foreseeable future the installation procedure will install 3.3.x even though most newer graphics cards need 4.x. The concern is that many older cards are not supported in 4.x. This is discussed from time to time on freebsd-stable and probably other lists. So, 4.5 will install 3.3.x and will include the 4.x package. The remaining question is whether the 4.2 package and port will ship with the 4.5 ISO and CD and I'd bet against it, but that's a matter for the release engineer to decide. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12: 9:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta06-svc.ntlworld.com (mta06-svc.ntlworld.com [62.253.162.46]) by hub.freebsd.org (Postfix) with ESMTP id 5D20437B404 for ; Mon, 21 Jan 2002 12:09:12 -0800 (PST) Received: from there ([213.105.81.134]) by mta06-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20020121200911.MGGH7000.mta06-svc.ntlworld.com@there>; Mon, 21 Jan 2002 20:09:11 +0000 Content-Type: text/plain; charset="iso-8859-1" From: Jonathan Belson To: Doug White Subject: Re: Questions about upcoming FreeBSD 4.5... Date: Mon, 21 Jan 2002 20:13:09 +0000 X-Mailer: KMail [version 1.3.2] Cc: Jordan Breeding , freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020121200911.MGGH7000.mta06-svc.ntlworld.com@there> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Doug White wrote: (-stable removed from headers) >>I have a few questions about FreeBSD, I have been using Linux and Unix >>now for quite some time but am considering switching my home system to >>FreeBSD. One question I have is this, in linux even though there is a >>text console by default (using vga) you can use a frame buffer console >>for just about any video card out right now so that I am able to use my >>brand new ATI Radeon 7500 to have a console which is at 1280x1024 at >>8bit depth with a refresh of 85 Hz, is this possible in FreeBSD or are >>only certain cards able to be used in frame buffer mode for virtual >>consoles? >> > Depends on what you mean. FreeBSD doesn't have a kernel-based framebuffer > a la Linux's fb code. On the plus side, the latest XFree86 should support I was thinking recently about how nice it would be to have a 'hires' console like eg. Solaris. I currently run VGA_90x60 but it's a bit ugly IMHO. Would you actually need framebuffer support or could you just set a VESA mode via set_video_mode()? --Jon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:17:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from trafficwow.net (smtp.ugetmore4less.net [64.55.184.155]) by hub.freebsd.org (Postfix) with ESMTP id 5D1A337B405 for ; Mon, 21 Jan 2002 12:17:04 -0800 (PST) Received: from 64.55.184.155 [64.55.184.157] by trafficwow.net (SMTPD32-7.05 EVAL) id A6E9447900E0; Mon, 21 Jan 2002 15:15:37 -0500 From: "Best Source of Internet Traffic" To: freebsd-questions@FreeBSD.org Subject: Does your website need more traffic? Get the best source of traffic anywhere... Date: Mon, 21 Jan 2002 15:15:38 -0500 X-Mailer: Mach5 Mailer-2.50 PID{6eaffa5e-7932-4682-9044-b0fc00316c94} RC{R01122870742} Reply-To: sales@trafficwow.net MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----000000000000000000000" Message-Id: <200201211515468.SM02020@64.55.184.155> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ------000000000000000000000 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Disclaimer: ----------- This email is NEVER sent unsolicited. THIS IS NOT SPAM. You are receiving this because you have either answered classified ad, posted to our FFA pages, are on the same opt- in list or have sent me something in the past. Please DO NOT reply to this email as it is an automated email address. If you'd like to be removed, see instructions at the bottom of this message. =========================== IN THIS ISSUE =========================== 1. Traffic for your website. 2. Bulk E-mail. 3. FFA Submission. ====================================================================== ======= The New Way To Make Your Website Buzz for Less Than 1-Cent Per Targeted User. =================================================== ========================== TrafficWOW will deliver 1000's of users to your site within 3 days!!! Or Your Money Back "Guaranteed". "How do we do it?" You ask -------------------------- With our vast marketing network set within search engine pages, newsletters and content positioning, YOUR website will get the traffic it deserves. NO SPAM! Just good quality traffic. http://www.trafficwow.net What areas can we target? -------------------------- Adult, Arts, Business, Computers, Casino, Entertainment, Financial, Games, Webmasters, Marketing, Shopping, Sports, Automotive, Career, Education, Family, Food, Health, Real Estate, Software, Travel. More categories will be introduced. http://www.trafficwow.net Why are we different? --------------------- Trafficwow will give you a full refund if we do not deliver every single user you have paid for. All you need to do, is to ensure your site is ready for the world of e-commerce. Don't buy traffic if your website is poor. (Be Honest with yourself!) For further info on the above traffic package or any of the others incredible packages we offer, take a good look: http://www. trafficwow.net PS - All new customers in January will receive a FREE website health check http://www.trafficwow.net ====================================================== BULK E-MAIL WORKS!!! ====================================================== TrafficWOW can send your message to 1 Million people for only $999. Interested? We are! Contact me directly at sales@trafficwow.net ====================================================== LIGHT UP YOUR SITE WITH THIS POWERFUL SYSTEM. FREE!!!! ============================= ========================= Everyone on the web will tell you how he or she makes money but how many really do? You can register your heart out. But with out people linking to your site you are in for a long wait. Click below and find out how it's really done! FREE! http://pages.ffanet.com/links/trafficwow.htm ======================================================= Our traffic secrets revealed to show you how we do it ============================ =========================== Trafficwow want to send you the best traffic available. Our product ensures that your web site gets the best opportunity to succeed. There are several different ways that you can make your website better. Click here to find out how? We recommend this strongly as a bad web site will never succeed! http://www.trafficwow.net/faq_wow.htm . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - P O P Q U I Z Bob Bly, author of "Complete Idiots Guide to Direct Marketing" calls it: "The hands-down best way to get traffic to your site ever created. Period." What is it? Click here to find out: http://www.exitblaze.com/cgi-bin/intro_track.pl?b=28051&c=xbad1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - . ======================================================== Further Transmission to you by the sender of this e-mail may be stopped at no cost to you by clicking here http://www.trafficwow.net/ removeusers.asp?Emails=freebsd-questions@FreeBSD.org. If your click fails, then copy and paste the link (http://www.trafficwow.net/ removeusers.asp?Emails=freebsd-questions@FreeBSD.org) and paste it into your browser. Do not reply to this email for the removal process. The only way to be removed from our mailing lists is to click on the removal link above, else your remove request will fail. ======================================================== ------000000000000000000000 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: 7bit
 

TrafficWoW Daily Newsletter January 21, 2002

Disclaimer: ----------- This email is NEVER sent unsolicited. THIS IS NOT SPAM. You are receiving this because you have either answered classified ad, posted to our FFA pages, are on the same opt-in list or have sent me something in the past. If you'd like to be removed, see instructions at the bottom of this message.

=========================== IN THIS ISSUE ===========================

1. Traffic for your website

2. Bulk E-mail

3. FFA Submission

4. Our traffic secrets revealed to show you how we do it

5. Popquiz

======================================================================
The New Way To Make Your Website Buzz for Less Than 1-Cent Per Targeted User. ======================================================================

TrafficWOW will deliver 1000's of users to your site within 3 days!!! Or Your Money Back "Guaranteed".

How do we do it?

With our vast marketing network set within search engine pages, newsletters and content positioning, YOUR website will get the traffic it deserves. NO SPAM! Just good quality traffic. Read some more at http://www.trafficwow.net\faq_wow.htm

What areas can we target?

Adult, Arts, Business, Computers, Casino, Entertainment, Financial, Games, Webmasters, Marketing, Shopping, Sports, Automotive, Career, Education, Family, Food, Health, Real Estate, Software, Travel. More categories will be introduced.

Why are we different?

Trafficwow will give you a full refund if we do not deliver every single user you have paid for. All you need to do, is to ensure your site is ready for the world of e-commerce. Don't buy traffic if your website is poor. (Be Honest with yourself!)

For further info on the above traffic package or any of the others incredible packages we offer, take a good look: http://www.trafficwow.net PS - All new customers in January will receive a FREE website health check at http://www.trafficwow.net

How good are our prices?

We have traffic packages starting at $99 per 10,000 unique users or just about the very best price for "real" traffic for your website. Over and above it, many other traffic solutions are available and will be tailormade at your request.

Please note TrafficWoW offers a 100% money back guarantee. If we do not deliver all of the traffic you purchased, a full rebate will be given.

Visit our website today and let us know how good  our prices really are. Try us, we will pleasantly surprise you.

======================================================================
BULK E-MAIL WORKS !!!
======================================================================

TrafficWOW can send your message to 1 Million people for only $999. Interested? We are!

Contact me directly at sales@trafficwow.net

======================================================================
LIGHT UP YOUR SITE WITH THIS POWERFUL SYSTEM. FREE !!!! ======================================================================

Everyone on the web will tell you how he or she makes money but how many really do? You can register your heart out. But with out people linking to your site you are in for a long wait.

Click below and find out how it's really done! FREE! http://pages.ffanet.com/links/trafficwow.htm

======================================================================
Our traffic secrets revealed to show you how we do it ======================================================================

TrafficWoW want to send you the best traffic available. Our product ensures that your web site gets the best opportunity to succeed. There are several different ways that you can make your website better.

Click here to find out how? We recommend this strongly as a bad web site will never succeed! http://www.trafficwow.net/faq_wow.htm

 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
P O P Q U I Z

Bob Bly, author of "Complete Idiots Guide to Direct Marketing" calls it: "The hands-down best way to get traffic to your site ever created. Period."

What is it? Click here to find out: http://www.exitblaze.com/cgi-bin/intro_track.pl?b=28051&c=xbad1

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .

======================================================================

Further Transmission to you by the sender of this e-mail may be stopped at no cost to you by clicking here http://www.trafficwow.net/removeusers.asp?Emails=freebsd-questions@FreeBSD.org

If your click fails, then copy and paste the link below:
http://www.trafficwow.net/removeusers.asp?Emails=freebsd-questions@FreeBSD.org
and paste it into your browser.

Do not reply to this email for the removal process. The only way to be removed from our mailing lists is to click on the removal link above, else your remove request will fail. DO NOT reply to this email as it is an automated email address.

======================================================================


Part of the v3exchange.com network!

© 2001 TrafficWoW.net

------000000000000000000000-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:26:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp06.wxs.nl (smtp06.wxs.nl [195.121.6.58]) by hub.freebsd.org (Postfix) with ESMTP id AC89237B400 for ; Mon, 21 Jan 2002 12:26:06 -0800 (PST) Received: from yokozuna.bsd ([213.10.35.60]) by smtp06.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id GQB23G01.IG6; Mon, 21 Jan 2002 21:26:04 +0100 Date: Mon, 21 Jan 2002 21:24:46 +0100 (CET) From: Marco Beishuizen Reply-To: Marco Beishuizen To: Joel Dinel Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Latest linux-opera has a bug? In-Reply-To: <20020121150133.A45773@sunder.touchtunes.com> Message-ID: FreeBSD: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002, the wise Joel Dinel spoke, and said: > I seem to be experiencing a weird problem with the latest linux-opera > build (linux-opera-6.0.20020110.1). Basically, the images take forever > to load. I run Netscape 4.79 & Mozilla 0.9.7 simultaneously, and they > both load up any page in record time. > > Anybody else has seen this happen? > > Thanks, > > Yes, I had exactly the same problem. I tried to run it on FreeBSD-4.4-RELEASE. It seemed to work fine exept for all types of pictures. It annoyed me to much so I uninstalled it immediately. Now I run version 5.0 again, which is the latest stable version. That works fine and now I'm waiting for the stable version 6.0. Marco -- Since we're all here, we must not be all there. -- Bob "Mountain" Beck To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:34:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 24EB537B400 for ; Mon, 21 Jan 2002 12:34:29 -0800 (PST) Received: from gateway ([63.70.155.45]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Mon, 21 Jan 2002 15:36:34 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: pw command ? Date: Mon, 21 Jan 2002 15:33:20 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have tried pw adduser tom -g network -G wheel Using pw command how do I get a password entered with the account id and create and load the home directory with the necessary startup files? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:39: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tntpro.com (159-63.suscom-maine.net [207.5.159.63]) by hub.freebsd.org (Postfix) with ESMTP id 5D46337B400 for ; Mon, 21 Jan 2002 12:39:00 -0800 (PST) Received: from celery (celery.tntpro.com [192.168.0.13]) by tntpro.com (8.11.6/8.11.6) with SMTP id g0LKckp04363 for ; Mon, 21 Jan 2002 15:38:46 -0500 (EST) (envelope-from tony@tntpro.com) From: "tony" To: "FBSD Questions" Subject: RE: pw command ? Date: Mon, 21 Jan 2002 15:38:41 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I think you want useradd according to the manpage for pw -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Joe & Fhe Barbish Sent: Monday, January 21, 2002 3:33 PM To: FBSD Questions Subject: pw command ? I have tried pw adduser tom -g network -G wheel Using pw command how do I get a password entered with the account id and create and load the home directory with the necessary startup files? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:43:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id AE47B37B404 for ; Mon, 21 Jan 2002 12:43:27 -0800 (PST) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) with ESMTP id g0LKhcZ71187; Mon, 21 Jan 2002 15:43:38 -0500 (EST) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 21 Jan 2002 15:43:38 -0500 (EST) From: Joe Clarke To: Joe & Fhe Barbish Cc: FBSD Questions Subject: Re: pw command ? In-Reply-To: Message-ID: <20020121154054.K56403-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002, Joe & Fhe Barbish wrote: > I have tried pw adduser tom -g network -G wheel > Using pw command how do I get a password entered with > the account id and create and load the home directory > with the necessary startup files? You can use the -h option to read the password from a file descriptor if you're planning on scripting pw (e.g. -h 0 to read from stdin). You can also specify the -k
option to tell pw what skeleton directory you want from which startup files will be copied. Then, by specifying the -m option, you tell pw to create the user's home directory. This will also populate the new home directory with the skeleton files in the directory specified by -k. This is all in the man page on pw. Joe > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:46: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 5DDCC37B405 for ; Mon, 21 Jan 2002 12:46:00 -0800 (PST) Received: from gateway ([63.70.155.45]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com; Mon, 21 Jan 2002 15:49:11 -0500 From: "Joe & Fhe Barbish" To: "tony" Cc: "FBSD Questions" Subject: RE: pw command ? Date: Mon, 21 Jan 2002 15:45:57 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Read the man page again. It says useradd or adduser works. That is not the question. How do I get password assigned using pw command -----Original Message----- From: tony [mailto:tony@tntpro.com] Sent: Monday, January 21, 2002 3:38 PM To: Joe & Fhe Barbish Subject: RE: pw command ? I think you want useradd according to the manpage -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Joe & Fhe Barbish Sent: Monday, January 21, 2002 3:33 PM To: FBSD Questions Subject: pw command ? I have tried pw adduser tom -g network -G wheel Using pw command how do I get a password entered with the account id and create and load the home directory with the necessary startup files? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:46: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fepD.post.tele.dk (fepD.post.tele.dk [195.41.46.149]) by hub.freebsd.org (Postfix) with ESMTP id 28C8237B400 for ; Mon, 21 Jan 2002 12:45:47 -0800 (PST) Received: from there ([62.243.77.18]) by fepD.post.tele.dk (InterMail vM.4.01.03.23 201-229-121-123-20010418) with SMTP id <20020121204545.MAMV16766.fepD.post.tele.dk@there>; Mon, 21 Jan 2002 21:45:45 +0100 Content-Type: text/plain; charset="iso-8859-1" From: Bjarne Wichmann Petersen To: Doug Poland , Michael Lucas Subject: Re: Mozilla plugins; Windows Media, QuickTime, Java2 Date: Mon, 21 Jan 2002 21:47:05 +0100 X-Mailer: KMail [version 1.3.2] Cc: Kenneth W Cochran , freebsd-questions@FreeBSD.ORG References: <200201210445.XAA9379861@shell.TheWorld.com> <20020121081125.A52896@blackhelicopters.org> <20020121093020.A19962@polands.org> In-Reply-To: <20020121093020.A19962@polands.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020121204545.MAMV16766.fepD.post.tele.dk@there> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday 21 January 2002 16:30, Doug Poland wrote: > On Mon, Jan 21, 2002 at 08:11:25AM -0500, Michael Lucas wrote: > > On Sun, Jan 20, 2002 at 11:45:43PM -0500, Kenneth W Cochran wrote: > > > Also, roughly how far are we from having Mozilla plugin > > > support for Java2? > > > > > > Where could I find relevant information? (aka "FM" to "RT" :) > > > > The FM in this case is the freebsd-java mailing list archives. > > > > If Java/Mozilla is working, you can expect to find someone dancing for > > joy, angelic trumpets, and 1000 elephants parading down the list. > > You can do java2 applets with linux mozilla binary and linux-jdk-1.3.1 > port. Other plugins I've got working are shockwave, futuresplash, and > realplayer. How do you get java running? Do I need to fiddle with "Edit"->"Preference"->"Navigator"->"Helper Applications"? And what would I need to insert? Bjarne -- Homepage: http://www.mekanix.dk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:47:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20103.mail.yahoo.com (web20103.mail.yahoo.com [216.136.226.40]) by hub.freebsd.org (Postfix) with SMTP id A31B537B446 for ; Mon, 21 Jan 2002 12:47:23 -0800 (PST) Message-ID: <20020121204723.40222.qmail@web20103.mail.yahoo.com> Received: from [24.100.124.207] by web20103.mail.yahoo.com via HTTP; Mon, 21 Jan 2002 12:47:23 PST Date: Mon, 21 Jan 2002 12:47:23 -0800 (PST) From: ann kok Subject: Re: crontab to backup mail in date format To: Giorgos Keramidas Cc: questions@FreeBSD.ORG In-Reply-To: <20020117015810.GB20298@hades.hell.gr> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear Giorgos Re: Sed for keep 3 days backup I would like to know the meaning of sed -e 1,3d and discoverd that the script doesn't work for the following What's wrong myself? please help again TIA AFTER SED [root@mail /backup]# ls -1 *backmail.tar.gz | sort -r | sed -e 1,3d 221428 2002-01-17backmail.tar.gz 220500 2002-01-13backmail.tar.gz 217924 2001-12-31backmail.tar.gz 215380 2002-01-15backmail.tar.gz 214400 2002-01-16backmail.tar.gz 187880 2002-01-07backmail.tar.gz 0 2002-01-20backmail.tar.gz ORIGINAL DATA [root@mail /backup]# ls -1 *backmail.tar.gz 99468 2001-11-22backmail.tar.gz 217924 2001-12-31backmail.tar.gz 187880 2002-01-07backmail.tar.gz 220500 2002-01-13backmail.tar.gz 215380 2002-01-15backmail.tar.gz 214400 2002-01-16backmail.tar.gz 221428 2002-01-17backmail.tar.gz 228268 2002-01-18backmail.tar.gz 226544 2002-01-19backmail.tar.gz 0 2002-01-20backmail.tar.gz After ls -1 *backmail.tar.gz | sort -r | sed -e 1,3d | xargs rm -f, it only keeps 3 days of the following: 99468 2001-11-22backmail.tar.gz 226544 2002-01-19backmail.tar.gz 228268 2002-01-18backmail.tar.gz NOT 2002-01-18backupmail.tar.gz 2002-01-19backupmail.tar.gz 2002-01-20backupmail.tar.gz --- Giorgos Keramidas wrote: > On 2002-01-16 07:53:28, ann kok wrote: > > > > Dear Giorgos > > > > Thank you > > > > But I tried your command. but got the following > > problem > > > > Pls help again > > > > [root@mail /tmp]# touch mail.2001.01.12.tar.gz > > [root@mail /tmp]# touch mail.2001.01.13.tar.gz > > [root@mail /tmp]# touch mail.2001.01.14.tar.gz > > [root@mail /tmp]# touch mail.2001.01.15.tar.gz > > [root@mail /tmp]# touch mail.2001.01.16.tar.gz > > [root@mail /tmp]# ls -l mail* > > -rw-r--r-- 1 root root 0 Jan 16 > > 11:45 mail.2001.01.12.tar.gz > > -rw-r--r-- 1 root root 0 Jan 16 > > 11:45 mail.2001.01.13.tar.gz > > -rw-r--r-- 1 root root 0 Jan 16 > > 11:45 mail.2001.01.14.tar.gz > > -rw-r--r-- 1 root root 0 Jan 16 > > 11:45 mail.2001.01.15.tar.gz > > -rw-r--r-- 1 root root 0 Jan 16 > > 11:45 mail.2001.01.16.tar.gz > > [root@mail /tmp]# ls -1 mail.*.tar.gz | sort -3 | > sed > > -e '1,3d' > > sort: when using the old-style +POS and -POS key > > specifiers, > > the +POS specifier must come first > > Try `sort --help' for more information. > > See my followup to the list :))) > > Try "sort -r" .. I was sleepy and made a typo there. > The correct command should be: > > $ ls -1 mail.* | sort -r | sed -e 1,3d > > -- > Giorgos Keramidas . . . . . . . . . > keramida@{ceid.upatras.gr,freebsd.org} > FreeBSD Documentation Project . . . > http://www.freebsd.org/docproj/ > FreeBSD: The power to serve . . . . http://www.freebsd.org/ __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:48:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from resnet.uoregon.edu (resnet.uoregon.edu [128.223.122.47]) by hub.freebsd.org (Postfix) with ESMTP id 6E78E37B404 for ; Mon, 21 Jan 2002 12:48:33 -0800 (PST) Received: from localhost (dwhite@localhost) by resnet.uoregon.edu (8.11.3/8.10.1) with ESMTP id g0LKmqC54478; Mon, 21 Jan 2002 12:48:52 -0800 (PST) Date: Mon, 21 Jan 2002 12:48:51 -0800 (PST) From: Doug White To: Jonathan Belson Cc: Jordan Breeding , Subject: Re: Questions about upcoming FreeBSD 4.5... In-Reply-To: <20020121200911.MGGH7000.mta06-svc.ntlworld.com@there> Message-ID: <20020121124730.R53531-100000@resnet.uoregon.edu> X-All-Your-Base: are belong to us MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002, Jonathan Belson wrote: > I was thinking recently about how nice it would be to have a 'hires' > console like eg. Solaris. Hopefully not as slow. Guh! > I currently run VGA_90x60 but it's a bit ugly IMHO. Would you actually > need framebuffer support or could you just set a VESA mode via > set_video_mode()? I use XFree86 everywhere so I don't care :-) you would need to set the mode and then load a font that's readable in that mode. Syscons already has VESA support for some modes; you could experiment and see what you can trick it into loading, or hack vidcontrol and add modes to it. Doug White | FreeBSD: The Power to Serve dwhite@resnet.uoregon.edu | www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:49:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tntpro.com (159-63.suscom-maine.net [207.5.159.63]) by hub.freebsd.org (Postfix) with ESMTP id C469337B404 for ; Mon, 21 Jan 2002 12:49:06 -0800 (PST) Received: from celery (celery.tntpro.com [192.168.0.13]) by tntpro.com (8.11.6/8.11.6) with SMTP id g0LKmkp04475; Mon, 21 Jan 2002 15:48:47 -0500 (EST) (envelope-from tony@tntpro.com) From: "tony" To: "Joe & Fhe Barbish" Cc: "FBSD Questions" Subject: RE: pw command ? Date: Mon, 21 Jan 2002 15:48:42 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ahhh I see, I apologize, and your rude, try to be more polite when asking for help -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Joe & Fhe Barbish Sent: Monday, January 21, 2002 3:46 PM To: tony Cc: FBSD Questions Subject: RE: pw command ? Read the man page again. It says useradd or adduser works. That is not the question. How do I get password assigned using pw command -----Original Message----- From: tony [mailto:tony@tntpro.com] Sent: Monday, January 21, 2002 3:38 PM To: Joe & Fhe Barbish Subject: RE: pw command ? I think you want useradd according to the manpage -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Joe & Fhe Barbish Sent: Monday, January 21, 2002 3:33 PM To: FBSD Questions Subject: pw command ? I have tried pw adduser tom -g network -G wheel Using pw command how do I get a password entered with the account id and create and load the home directory with the necessary startup files? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:50:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id 000E337B41B for ; Mon, 21 Jan 2002 12:50:12 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0LKoB556238 for ; Mon, 21 Jan 2002 14:50:11 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0LKoBr18397 for questions@freebsd.org; Mon, 21 Jan 2002 14:50:11 -0600 (CST) Date: Mon, 21 Jan 2002 14:50:11 -0600 From: Doug Poland To: questions@freebsd.org Subject: faulty vinum plex, need help please Message-ID: <20020121145011.A16617@polands.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I'm attempting to create a mirrored and striped vinum volume (raid10) using 4 identical SCSI disks. Here's my /etc/vinum.conf: drive a device /dev/da0s2e drive b device /dev/da1s2e drive c device /dev/da2s2e drive d device /dev/da3s2e volume dataraid plex org striped 512k sd length 4314m drive a sd length 4314m drive b sd length 4314m drive c sd length 4314m drive d plex org striped 512k sd length 4314m drive c sd length 4314m drive d sd length 4314m drive a sd length 4314m drive b When I do a # vinum list, it reports: 4 drives: D a State: up Device /dev/da0s2e Avail: 0/8628 MB (0%) D b State: up Device /dev/da1s2e Avail: 0/8628 MB (0%) D c State: up Device /dev/da2s2e Avail: 0/8628 MB (0%) D d State: up Device /dev/da3s2e Avail: 0/8628 MB (0%) 1 volumes: V dataraid State: up Plexes: 2 Size: 16 GB 2 plexes: P dataraid.p0 S State: up Subdisks: 4 Size: 16 GB P dataraid.p1 S State: faulty Subdisks: 4 Size: 16 GB 8 subdisks: S dataraid.p0.s0 State: up PO: 0 B Size: 4314 MB S dataraid.p0.s1 State: up PO: 512 kB Size: 4314 MB S dataraid.p0.s2 State: up PO: 1024 kB Size: 4314 MB S dataraid.p0.s3 State: up PO: 1536 kB Size: 4314 MB S dataraid.p1.s0 State: empty PO: 0 B Size: 4314 MB S dataraid.p1.s1 State: empty PO: 512 kB Size: 4314 MB S dataraid.p1.s2 State: empty PO: 1024 kB Size: 4314 MB S dataraid.p1.s3 State: empty PO: 1536 kB Size: 4314 MB So dataraid plex 1 appears to be faulty. Is this a mis-configuration on my part? Is it hardware failure? The read/write performance of the vinum volume does not appear to have degraded, have I just lost the mirroring property? I'll be thankful for any advice on how to diagnose and fix this situation. -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:52:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-1.visp.telinco.net (smtp-1.visp.telinco.net [212.1.130.1]) by hub.freebsd.org (Postfix) with ESMTP id 2FF7C37B439 for ; Mon, 21 Jan 2002 12:51:29 -0800 (PST) Received: from [212.1.153.104] (helo=me01) by smtp-1.visp.telinco.net with smtp (Exim 3.32 #1) id 16SlIP-0002gq-00 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 20:44:01 +0000 Message-ID: <001601c1a2bd$f80b66e0$689901d4@wintellect.com> From: "Philip Pereira" To: Subject: Boot Loader? Date: Mon, 21 Jan 2002 20:54:34 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear all-knowledgable ones... I have 2 questions to do with the FreeBSD Boot Loader. Currently my system uses the standard MBR to point to the hard disk for booting, but I want to go a step further.... (A) How can I install the 'FreeBSD Boot Loader' at this late stage without damaging my current installation? (B) When I attach my second hard disk (with Linux on it) to my FreeBSD box, how can I configure the newly installed Boot Loader (from point A) to give the option of booting either OS on either disk? Many thanks, and I look forward to your replies Phil. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:52:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id E345D37B402 for ; Mon, 21 Jan 2002 12:52:26 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16SlQX-0006l9-00 for questions@FreeBSD.ORG; Mon, 21 Jan 2002 20:52:25 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 432DA118C; Mon, 21 Jan 2002 21:52:25 +0100 (CET) Date: Mon, 21 Jan 2002 21:52:25 +0100 From: Cliff Sarginson To: questions@FreeBSD.ORG Subject: Re: Xfree86 4.2.0 Message-ID: <20020121205225.GB1093@raggedclown.net> References: <3C4BC194.5000906@hostname.org> <20020121200619.53C585D0A@ptavv.es.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020121200619.53C585D0A@ptavv.es.net> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 12:06:19PM -0800, Kevin Oberman wrote: > > Date: Mon, 21 Jan 2002 05:21:56 -0200 > > From: Fabio Yasusi Yamamoto > > Sender: owner-freebsd-questions@FreeBSD.ORG > > > > Xfree86 4.2.0 will be on freebsd 4.5? > > This gets down to semantics. Technically, XFree86 is not a part of the > base system. It's always a package or port. But the installation > procedure does provide the option of installing X and people tend to > think that makes X part of the base system. > > My recommendation has long been to NOT install any X from sysinstall > but to install XFree86-4 from either package or port right after the > installation to avoid any confusion, especially if you are using any > video card less than two years old. > > For the foreseeable future the installation procedure will install > 3.3.x even though most newer graphics cards need 4.x. The concern is > that many older cards are not supported in 4.x. This is discussed from > time to time on freebsd-stable and probably other lists. > > So, 4.5 will install 3.3.x and will include the 4.x package. The > remaining question is whether the 4.2 package and port will ship with > the 4.5 ISO and CD and I'd bet against it, but that's a matter for the > release engineer to decide. > I downloaded the XF86 4.2 Port last night. Compiled it, installed it, ran it. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:55:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 6C4C537B404 for ; Mon, 21 Jan 2002 12:55:07 -0800 (PST) Received: from gateway ([63.70.155.45]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com; Mon, 21 Jan 2002 15:58:18 -0500 From: "Joe & Fhe Barbish" To: "tony" Cc: "FBSD Questions" Subject: RE: pw command ? Date: Mon, 21 Jan 2002 15:55:04 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sorry rudeness not intended. Just getting to the point. Will try to read what I write before sending so as not to offend. I apologize. -----Original Message----- From: tony [mailto:tony@tntpro.com] Sent: Monday, January 21, 2002 3:49 PM To: Joe & Fhe Barbish Cc: FBSD Questions Subject: RE: pw command ? ahhh I see, I apologize, and your rude, try to be more polite when asking for help -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Joe & Fhe Barbish Sent: Monday, January 21, 2002 3:46 PM To: tony Cc: FBSD Questions Subject: RE: pw command ? Read the man page again. It says useradd or adduser works. That is not the question. How do I get password assigned using pw command -----Original Message----- From: tony [mailto:tony@tntpro.com] Sent: Monday, January 21, 2002 3:38 PM To: Joe & Fhe Barbish Subject: RE: pw command ? I think you want useradd according to the manpage -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Joe & Fhe Barbish Sent: Monday, January 21, 2002 3:33 PM To: FBSD Questions Subject: pw command ? I have tried pw adduser tom -g network -G wheel Using pw command how do I get a password entered with the account id and create and load the home directory with the necessary startup files? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 12:58:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.tninet.se (lennier.tninet.se [195.100.94.105]) by hub.freebsd.org (Postfix) with ESMTP id EE59D37B405 for ; Mon, 21 Jan 2002 12:58:09 -0800 (PST) Received: from there (bb-62-5-36-29.bb.tninet.se [62.5.36.29]) by lennier.tninet.se (BMR ErlangTM/OTP 3.0) with ESMTP id 56408.646669.1011.0s1991581lennier ; Mon, 21 Jan 2002 21:57:49 +0100 Content-Type: text/plain; charset="iso-8859-1" From: Mark Rowlands To: Dariusz Kowalski , freebsd-questions@FreeBSD.ORG Subject: Re: dump Date: Mon, 21 Jan 2002 21:57:49 +0100 X-Mailer: KMail [version 1.3.2] References: <20020121195721.A92243@dreamnet.waw.pl> In-Reply-To: <20020121195721.A92243@dreamnet.waw.pl> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020121205809.EE59D37B405@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday 21 January 2002 7:57 pm, Dariusz Kowalski wrote: > Hello, > > I want to ask you some questions about dump program. Is it possible to > write on one tape more then one filesystem? I have Tandberg SL7 streamer > drive which size is 20/40GB. I want to backup all my disks. Sizes of > partitions are between 150MB and 20GB. I dont't know, if I can archive all > disks on one cassette. > I will be gratefull, if you tell me where I can find some information about > backuping? yep you might want to look at http://www.backupcentral.com -- You will be awarded some great honor. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13: 1:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id 1B19237B416 for ; Mon, 21 Jan 2002 13:01:28 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0LL1Q560148; Mon, 21 Jan 2002 15:01:26 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0LL1Lm19234; Mon, 21 Jan 2002 15:01:21 -0600 (CST) Date: Mon, 21 Jan 2002 15:01:21 -0600 From: Doug Poland To: Bjarne Wichmann Petersen Cc: Michael Lucas , Kenneth W Cochran , freebsd-questions@FreeBSD.ORG Subject: Re: Mozilla plugins; Windows Media, QuickTime, Java2 Message-ID: <20020121150121.A18961@polands.org> References: <200201210445.XAA9379861@shell.TheWorld.com> <20020121081125.A52896@blackhelicopters.org> <20020121093020.A19962@polands.org> <20020121204545.MAMV16766.fepD.post.tele.dk@there> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121204545.MAMV16766.fepD.post.tele.dk@there>; from freebsd.nospam@mekanix.dk on Mon, Jan 21, 2002 at 09:47:05PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 09:47:05PM +0100, Bjarne Wichmann Petersen wrote: > On Monday 21 January 2002 16:30, Doug Poland wrote: > > On Mon, Jan 21, 2002 at 08:11:25AM -0500, Michael Lucas wrote: > > > On Sun, Jan 20, 2002 at 11:45:43PM -0500, Kenneth W Cochran wrote: > > > > Also, roughly how far are we from having Mozilla plugin > > > > support for Java2? > > > > > > > > Where could I find relevant information? (aka "FM" to "RT" :) > > > > > > The FM in this case is the freebsd-java mailing list archives. > > > > > > If Java/Mozilla is working, you can expect to find someone dancing for > > > joy, angelic trumpets, and 1000 elephants parading down the list. > > > > You can do java2 applets with linux mozilla binary and linux-jdk-1.3.1 > > port. Other plugins I've got working are shockwave, futuresplash, and > > realplayer. > > How do you get java running? Do I need to fiddle with > "Edit"->"Preference"->"Navigator"->"Helper Applications"? And what would I > need to insert? > I posted a summary this morning under the title: Java plugin for mozilla? If it's not in the archives yet, here's a copy... Date: Fri, 11 Jan 2002 09:06:21 -0600 From: Doug Poland To: Steve Wingate Cc: Subject: Re: Java plugin for mozilla? Message-ID: <20020111090621.B15197@polands.org> References: <20020109231645.B42392@zigman.2y.net> <20020109143623.J99848-100000@jeeves.velosystems.net> <20020110150512.A28923@polands.org> <20020110132014.0476e8ca.steve@velosystems.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020110132014.0476e8ca.steve@velosystems.net>; from steve@velosystems.net on Thu, Jan 10, 2002 at 01:20:14PM -0800 X-Envelope-To: freebsd-questions.freebsd.org@polands.org X-UIDL: e8216eacc6a7d9b35db347c7ad2bafcd On Thu, Jan 10, 2002 at 01:20:14PM -0800, Steve Wingate wrote: > > > >From the mozilla website: > > > * Users of installer builds on Win32 and x86 Linux can install the Java > > > Run Time Environment (JRE) v1.3 Plug-in to add Java support to Mozilla. On > > > Macintosh, Mozilla uses the JRE already installed on your system. > > > > > > I am using the Linux-mozilla binary on FreeBSD w/Java, RealPlayer, > > > Shockwave and Flash support. > > > > > Steve, > > > > Could you describe the steps you took to get java working? > > > Nothing to it; I just installed the Linux-mozilla binary build and > JRE plug-in from the mozilla website. No additional configuration > that I recall. > For the benefit of the archives, the JRE plugin would not install on my 4.4-STABLE box so this is what I had to do... Install the following ports: linux-jdk-1.3.1 linux-gtk-1.2_1 Go to mozilla's web site and get the latest linux binary installer. Extract the tarball and install linux mozilla. su and cd to /usr/local/mozilla/plugins (default location) symlink the jdk to the plugins directory ln -s /usr/local/linux-jdk1.3.1/ java2 symlink the plugin to the currect directory ln -s /usr/local/linux-jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so . Voila! java in mozilla. Two observations, 1) it feels like linux mozilla is faster than native FreeBSD mozilla although I haven't timed it and cannot explain why. 2) Fonts are messed up in one of my favorite applets (http://spaceflight.nasa.gov/realdata/sightings/SSapplications/Post/JavaSSOP/JavaSSOP.html) -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13: 7:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tntpro.com (159-63.suscom-maine.net [207.5.159.63]) by hub.freebsd.org (Postfix) with ESMTP id 59EE437B416 for ; Mon, 21 Jan 2002 13:07:32 -0800 (PST) Received: from celery (celery.tntpro.com [192.168.0.13]) by tntpro.com (8.11.6/8.11.6) with SMTP id g0LL7Hp04587; Mon, 21 Jan 2002 16:07:17 -0500 (EST) (envelope-from tony@tntpro.com) From: "tony" To: "Doug Poland" , Subject: RE: faulty vinum plex, need help please Date: Mon, 21 Jan 2002 16:07:12 -0500 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 V6.00.2600.0000 In-Reply-To: <20020121145011.A16617@polands.org> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG have you checked the size of each drive in disklabel? did all 4 really fdisk and label to 4314? I just put a size of 0 to use all available space to eliminate this potential -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Doug Poland Sent: Monday, January 21, 2002 3:50 PM To: questions@FreeBSD.ORG Subject: faulty vinum plex, need help please Hi, I'm attempting to create a mirrored and striped vinum volume (raid10) using 4 identical SCSI disks. Here's my /etc/vinum.conf: drive a device /dev/da0s2e drive b device /dev/da1s2e drive c device /dev/da2s2e drive d device /dev/da3s2e volume dataraid plex org striped 512k sd length 4314m drive a sd length 4314m drive b sd length 4314m drive c sd length 4314m drive d plex org striped 512k sd length 4314m drive c sd length 4314m drive d sd length 4314m drive a sd length 4314m drive b When I do a # vinum list, it reports: 4 drives: D a State: up Device /dev/da0s2e Avail: 0/8628 MB (0%) D b State: up Device /dev/da1s2e Avail: 0/8628 MB (0%) D c State: up Device /dev/da2s2e Avail: 0/8628 MB (0%) D d State: up Device /dev/da3s2e Avail: 0/8628 MB (0%) 1 volumes: V dataraid State: up Plexes: 2 Size: 16 GB 2 plexes: P dataraid.p0 S State: up Subdisks: 4 Size: 16 GB P dataraid.p1 S State: faulty Subdisks: 4 Size: 16 GB 8 subdisks: S dataraid.p0.s0 State: up PO: 0 B Size: 4314 MB S dataraid.p0.s1 State: up PO: 512 kB Size: 4314 MB S dataraid.p0.s2 State: up PO: 1024 kB Size: 4314 MB S dataraid.p0.s3 State: up PO: 1536 kB Size: 4314 MB S dataraid.p1.s0 State: empty PO: 0 B Size: 4314 MB S dataraid.p1.s1 State: empty PO: 512 kB Size: 4314 MB S dataraid.p1.s2 State: empty PO: 1024 kB Size: 4314 MB S dataraid.p1.s3 State: empty PO: 1536 kB Size: 4314 MB So dataraid plex 1 appears to be faulty. Is this a mis-configuration on my part? Is it hardware failure? The read/write performance of the vinum volume does not appear to have degraded, have I just lost the mirroring property? I'll be thankful for any advice on how to diagnose and fix this situation. -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13: 8: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from s216.widexs.nl (s216.widexs.nl [212.204.254.42]) by hub.freebsd.org (Postfix) with ESMTP id CC25D37B402 for ; Mon, 21 Jan 2002 13:07:53 -0800 (PST) Received: by s216.widexs.nl (Postfix, from userid 99) id 750B63AEAF; Mon, 21 Jan 2002 22:05:36 +0100 (MET) To: freebsd-questions@FreeBSD.ORG Subject: Nuestro proyecto http://Aplicaciones.deeuropa.net From: stella@deeuropa.net Reply-To: stella@deeuropa.net Message-Id: <20020121210536.750B63AEAF@s216.widexs.nl> Date: Mon, 21 Jan 2002 22:05:36 +0100 (MET) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hola amigo! Soy Stella, webmaster de www.deeuropa.net, un sitio con paginas independientes sobre muchos temas con enlaces revisados, artículos, encuestas y mucho más. En nuestro proyecto participan 30 españoles, 10 argentinos, y muchos otros latinos. En este momento nos falta una página sobre Aplicaciones. Quiero preguntarle si usted tiene interés en participar en nuestro proyecto como guía de ésta página. Calidad de la información, es el primer objetivo de www.deeuropa.net. Enlaces que no funcionan son removidos automáticamente, artículos y encuestas son revisados por otros guías. Nosotros arreglamos las cosas técnicas como acceso rápido y el HTML. Si hay publicidades, 50% de las ganancias es para usted. Stella Espitia. stella@deeuropa.net Más información: http://info.deeuropa.net. Ejemplo de un tema: http://modelos.deeuropa.net. Participar: http://info.deeuropa.net/?art=5 ************************************** * http://www.deeuropa.net * * continentes de enlaces excelentes ************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:12:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 04A2D37B400 for ; Mon, 21 Jan 2002 13:12:32 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16Sljy-0000ai-00 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 21:12:30 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id C553B118C; Mon, 21 Jan 2002 22:12:29 +0100 (CET) Date: Mon, 21 Jan 2002 22:12:29 +0100 From: Cliff Sarginson To: freebsd-questions@FreeBSD.ORG Subject: Re: Questions about upcoming FreeBSD 4.5... Message-ID: <20020121211229.GA993@raggedclown.net> References: <20020121200911.MGGH7000.mta06-svc.ntlworld.com@there> <20020121124730.R53531-100000@resnet.uoregon.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020121124730.R53531-100000@resnet.uoregon.edu> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 12:48:51PM -0800, Doug White wrote: > On Mon, 21 Jan 2002, Jonathan Belson wrote: > > > I was thinking recently about how nice it would be to have a 'hires' > > console like eg. Solaris. > > Hopefully not as slow. Guh! > > > I currently run VGA_90x60 but it's a bit ugly IMHO. Would you actually > > need framebuffer support or could you just set a VESA mode via > > set_video_mode()? > > I use XFree86 everywhere so I don't care :-) you would need to set the > mode and then load a font that's readable in that mode. Syscons already > has VESA support for some modes; you could experiment and see what you can > trick it into loading, or hack vidcontrol and add modes to it. > I have vesa and sc_pixel_mode compiled in and get a very nice display (not quite as nice as the FB ones in Linux, but pretty nice) with: /usr/sbin/vidcontrol -g 100x37 VESA_800x600 It does slow the screen down a little though.. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:16: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp02.mrf.mail.rcn.net (smtp02.mrf.mail.rcn.net [207.172.4.61]) by hub.freebsd.org (Postfix) with ESMTP id AE2FE37B405 for ; Mon, 21 Jan 2002 13:16:04 -0800 (PST) Received: from 66-44-71-232.s486.tnt9.lnhva.md.dialup.rcn.com ([66.44.71.232] helo=sten.alder.net) by smtp02.mrf.mail.rcn.net with smtp (Exim 3.33 #10) id 16SlnP-00020X-00; Mon, 21 Jan 2002 16:16:04 -0500 Received: by sten.alder.net (sSMTP sendmail emulation); Mon, 21 Jan 2002 16:16:00 -0500 Date: Mon, 21 Jan 2002 16:16:00 -0500 From: "Bob Hall" To: FreeBSD , freebsd-questions@freebsd.org Subject: Re: The tower of Hanoi Message-ID: <20020121161600.B735@starpower.net> Mail-Followup-To: FreeBSD References: <3C4B83A4.FA87DB7E@mediaone.net> <3C4B8603.2991E316@mediaone.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C4B8603.2991E316@mediaone.net>; from postroad@mediaone.net on Sun, Jan 20, 2002 at 10:07:50PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 10:07:50PM -0500, Sir wrote: > Just as an after-thought, ever seen a "bad sblock magic number" before?? Yes. I was trying to mount an unformatted disk. Bob Hall -- Know thyself? Absurd direction! Bubbles bear no introspection. -Khushhal Khan Khatak To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:20:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (mail.pioneernet.net [207.115.64.224]) by hub.freebsd.org (Postfix) with ESMTP id CCC9037B400 for ; Mon, 21 Jan 2002 13:20:14 -0800 (PST) Received: from there [66.114.152.128] by pioneernet.net (SMTPD32-6.06) id A61340B0136; Mon, 21 Jan 2002 13:20:22 -0800 Content-Type: text/plain; charset="iso-8859-1" From: chip To: questions@freebsd.org Subject: Opinions wanted - dealing with file sharing in AOL IM Date: Mon, 21 Jan 2002 13:20:13 -0800 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200201211320107.SM00412@there> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG One of my sons asked me today, about opening a port on the firewall so he= and=20 some friends from school can share files. I'm a bit leary of opening a po= rt=20 on the firewall. I know my freebsd boxes will be safe from windoze viruse= s by=20 there are also 4 windoze boxes on my network. I was thinking maybe openin= g a=20 high number port, say over 50000 or whatever (at least then it would be=20 relatively safe from casual port scanners). Or is this 'stinkin thinkin'? I suggested setting up an ftp site and he could give his friends password= s,=20 but he would rather just use the IM sharing feature. I've never used, so = I'm=20 not familiar with it.=20 How have you guys dealt with this? --=20 Chip <+><+><+><+><+><+><+><+> Windows 95/NT - 32 bit extensions and a graphical shell for a 16 bit patc= h to an 8 bit operating system originally coded for a 4 bit microprocessor, written by a 2 bit company that can't stand 1 bit of competition. <+><+><+><+><+><+><+><+> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:21:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id D7CAE37B41B for ; Mon, 21 Jan 2002 13:21:09 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0LLL9566498; Mon, 21 Jan 2002 15:21:09 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0LLL8120716; Mon, 21 Jan 2002 15:21:08 -0600 (CST) Date: Mon, 21 Jan 2002 15:21:08 -0600 From: Doug Poland To: tony Cc: questions@FreeBSD.ORG Subject: Re: faulty vinum plex, need help please Message-ID: <20020121152108.B18961@polands.org> References: <20020121145011.A16617@polands.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from tony@tntpro.com on Mon, Jan 21, 2002 at 04:07:12PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 04:07:12PM -0500, tony wrote: > have you checked the size of each drive in disklabel? did all 4 really fdisk > and label to 4314? > I put a 54MB swap partition on each drive. That left me with 8628MB free. I divided by two to arrive at 4314 and used that number. > I just put a size of 0 to use all available space to eliminate this > potential > Did you put the 0 in the vinum.conf? -- Regards, Doug > > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Doug Poland > Sent: Monday, January 21, 2002 3:50 PM > To: questions@FreeBSD.ORG > Subject: faulty vinum plex, need help please > > > Hi, > > I'm attempting to create a mirrored and striped vinum volume (raid10) > using 4 identical SCSI disks. Here's my /etc/vinum.conf: > > drive a device /dev/da0s2e > drive b device /dev/da1s2e > drive c device /dev/da2s2e > drive d device /dev/da3s2e > > volume dataraid > plex org striped 512k > sd length 4314m drive a > sd length 4314m drive b > sd length 4314m drive c > sd length 4314m drive d > plex org striped 512k > sd length 4314m drive c > sd length 4314m drive d > sd length 4314m drive a > sd length 4314m drive b > > When I do a # vinum list, it reports: > 4 drives: > D a State: up Device /dev/da0s2e Avail: > 0/8628 MB (0%) > D b State: up Device /dev/da1s2e Avail: > 0/8628 MB (0%) > D c State: up Device /dev/da2s2e Avail: > 0/8628 MB (0%) > D d State: up Device /dev/da3s2e Avail: > 0/8628 MB (0%) > > 1 volumes: > V dataraid State: up Plexes: 2 Size: 16 GB > > 2 plexes: > P dataraid.p0 S State: up Subdisks: 4 Size: 16 GB > P dataraid.p1 S State: faulty Subdisks: 4 Size: 16 GB > > 8 subdisks: > S dataraid.p0.s0 State: up PO: 0 B Size: 4314 MB > S dataraid.p0.s1 State: up PO: 512 kB Size: 4314 MB > S dataraid.p0.s2 State: up PO: 1024 kB Size: 4314 MB > S dataraid.p0.s3 State: up PO: 1536 kB Size: 4314 MB > S dataraid.p1.s0 State: empty PO: 0 B Size: 4314 MB > S dataraid.p1.s1 State: empty PO: 512 kB Size: 4314 MB > S dataraid.p1.s2 State: empty PO: 1024 kB Size: 4314 MB > S dataraid.p1.s3 State: empty PO: 1536 kB Size: 4314 MB > > > So dataraid plex 1 appears to be faulty. Is this a mis-configuration > on my part? Is it hardware failure? The read/write performance of the > vinum volume does not appear to have degraded, have I just lost the > mirroring > property? > > I'll be thankful for any advice on how to diagnose and fix this situation. > > -- > Regards, > Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:22:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from deevil.homeunix.org (adsl-32-221-81.bct.bellsouth.net [67.32.221.81]) by hub.freebsd.org (Postfix) with SMTP id B4B5D37B400 for ; Mon, 21 Jan 2002 13:22:19 -0800 (PST) Received: (qmail 34948 invoked by uid 1001); 21 Jan 2002 21:21:59 -0000 Date: Mon, 21 Jan 2002 16:21:57 -0500 From: Ken Ebling To: freebsd-questions@freebsd.org Subject: Re: Qmail/Samba tutorials Message-ID: <20020121162157.A34668@deevil.homeunix.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG There's an online tutorial www.lifewithqmail.org maintained by David Sill the author of "The qmail Handbook." The tutorial is a great start, and the book is even better. Ken Ebling > Hey, does anyone know of any good tutorials for setting up Samba and > Qmail? The Qmail is for me so I can change us over from Popmail which > we're currently using and the Samba tutorials are for one of my techs in > the field. > > The simpler and more straight forward the tutorials the better. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:24: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id 676C037B400 for ; Mon, 21 Jan 2002 13:23:58 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 5DD832B69B; Mon, 21 Jan 2002 22:23:51 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 7FEDB37D; Tue, 22 Jan 2002 08:23:45 +1100 (EST) Date: Tue, 22 Jan 2002 08:23:45 +1100 From: Edwin Groothuis To: Vlado Korcek Cc: freebsd-questions@FreeBSD.ORG Subject: Re: DNS query repeated Message-ID: <20020122082345.F823@k7.mavetju.org> Mail-Followup-To: Edwin Groothuis , Vlado Korcek , freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from vladokorcek@hotmail.com on Mon, Jan 21, 2002 at 05:26:15PM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 05:26:15PM +0000, Vlado Korcek wrote: > Does anybody have any idea why DNS resolver still repeat his query to DNS > server. > I tried for some test purposes ping6 with the name: > # ping6 Nr-5_v6.my.domain > > I saw in Ethereal that the query from DNS client was sent and response from > DNS server (for PTR type) as well. I don't see this behaviour at all. [~] edwin@k7>ping ftp.netbsd.org PING ftp.netbsd.org (204.152.184.75): 56 data bytes 64 bytes from 204.152.184.75: icmp_seq=0 ttl=244 time=555.729 ms 64 bytes from 204.152.184.75: icmp_seq=1 ttl=244 time=550.002 ms 64 bytes from 204.152.184.75: icmp_seq=2 ttl=244 time=600.225 ms 64 bytes from 204.152.184.75: icmp_seq=3 ttl=244 time=540.254 ms 64 bytes from 204.152.184.75: icmp_seq=4 ttl=244 time=580.276 ms 64 bytes from 204.152.184.75: icmp_seq=5 ttl=244 time=570.234 ms [...] [~] edwin@k7>tcpdump -ni lo0 port 53 tcpdump: listening on lo0 08:21:35.764017 127.0.0.1.2223 > 127.0.0.1.53: 8096+ A? ftp.netbsd.org. (32) 08:21:36.457394 127.0.0.1.53 > 127.0.0.1.2223: 8096* 1/5/8 A 204.152.184.75 (299) [~] edwin@k7>tcpdump -ni tun0 port 53 tcpdump: listening on tun0 08:21:35.764436 203.173.130.76.4062 > 155.53.1.253.53: 28761 A? ftp.netbsd.org. (32) 08:21:36.456656 155.53.1.253.53 > 203.173.130.76.4062: 28761* 1/5/8 A 204.152.184.75 (299) It just stops at that point regarding dns-traffic. Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:25:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.lmtribune.com (mail.lmtribune.com [199.5.221.20]) by hub.freebsd.org (Postfix) with ESMTP id A45A037B416 for ; Mon, 21 Jan 2002 13:25:21 -0800 (PST) Received: from mailpc.lmtribune.com (mailpc.lmtribune.com [192.168.135.152]) by mail.lmtribune.com (8.11.1/8.11.1) with ESMTP id g0LLQwo87209 for ; Mon, 21 Jan 2002 13:26:59 -0800 (PST) (envelope-from jmciver@lmtribune.com) Received: from ADV/SpoolDir by mailpc.lmtribune.com (Mercury 1.48); 21 Jan 02 13:25:54 -0700 Received: from SpoolDir by ADV (Mercury 1.48); 21 Jan 02 13:25:34 -0700 From: "Jim McIver" Organization: Lewiston Morning Tribune To: freebsd-questions@freebsd.org Date: Mon, 21 Jan 2002 13:25:32 -7 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: port Message-ID: <3C4C16CF.18360.13CC36BA@localhost> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG How would tell what port a daemon is running on? I know that FTP is suppose to use port 21 and 20, but is there a way to see this? thx, - Jim McIver To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:29:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out0.mx.nwbl.wi.voyager.net (out0.mx.nwbl.wi.voyager.net [169.207.1.78]) by hub.freebsd.org (Postfix) with ESMTP id 0447237B402 for ; Mon, 21 Jan 2002 13:29:07 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out0.mx.nwbl.wi.voyager.net (8.11.4/8.11.4/1.7) with ESMTP id g0LLT3g24567; Mon, 21 Jan 2002 15:29:03 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0LLROf21210; Mon, 21 Jan 2002 15:27:24 -0600 (CST) Date: Mon, 21 Jan 2002 15:27:23 -0600 From: Doug Poland To: Jim McIver Cc: freebsd-questions@freebsd.org Subject: Re: port Message-ID: <20020121152723.C18961@polands.org> References: <3C4C16CF.18360.13CC36BA@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C4C16CF.18360.13CC36BA@localhost>; from jmciver@lmtribune.com on Mon, Jan 21, 2002 at 01:25:32PM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 01:25:32PM +0000, Jim McIver wrote: > How would tell what port a daemon is running on? > > I know that FTP is suppose to use port 21 and 20, but is there a way to > see this? > sockstat -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:31:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailf.telia.com (mailf.telia.com [194.22.194.25]) by hub.freebsd.org (Postfix) with ESMTP id 384E737B400 for ; Mon, 21 Jan 2002 13:31:38 -0800 (PST) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by mailf.telia.com (8.11.6/8.11.6) with ESMTP id g0LLVaE13138 for ; Mon, 21 Jan 2002 22:31:36 +0100 (CET) Received: from falcon.midgard.homeip.net (h185n2fls20o913.telia.com [212.181.163.185]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id WAA20731 for ; Mon, 21 Jan 2002 22:31:31 +0100 (CET) Received: (qmail 30015 invoked by uid 1001); 21 Jan 2002 21:31:29 -0000 Date: Mon, 21 Jan 2002 22:31:29 +0100 From: Erik Trulsson To: Jim McIver Cc: freebsd-questions@freebsd.org Subject: Re: port Message-ID: <20020121213128.GA29992@student.uu.se> Mail-Followup-To: Jim McIver , freebsd-questions@freebsd.org References: <3C4C16CF.18360.13CC36BA@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3C4C16CF.18360.13CC36BA@localhost> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 01:25:32PM +0000, Jim McIver wrote: > How would tell what port a daemon is running on? > > I know that FTP is suppose to use port 21 and 20, but is there a way to > see this? Use sockstat(1) and/or netstat(1) to see what ports are currently in use and by what programs. To see what various ports are normally used for you can look in /etc/services. You might also wish to look in /etc/inetd.conf to see what ports inetd is configured to listen on. -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:33: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id E61E937B417 for ; Mon, 21 Jan 2002 13:32:58 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id F0D762B69B; Mon, 21 Jan 2002 22:32:56 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 4DDD337D; Tue, 22 Jan 2002 08:32:51 +1100 (EST) Date: Tue, 22 Jan 2002 08:32:50 +1100 From: Edwin Groothuis To: Jim McIver Cc: freebsd-questions@freebsd.org Subject: Re: port Message-ID: <20020122083250.G823@k7.mavetju.org> Mail-Followup-To: Edwin Groothuis , Jim McIver , freebsd-questions@freebsd.org References: <3C4C16CF.18360.13CC36BA@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C4C16CF.18360.13CC36BA@localhost>; from jmciver@lmtribune.com on Mon, Jan 21, 2002 at 01:25:32PM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 01:25:32PM +0000, Jim McIver wrote: > How would tell what port a daemon is running on? > > I know that FTP is suppose to use port 21 and 20, but is there a way to > see this? You can... 1. Read the RFC about FTP, it explains which well-known ports are used for it. 2. Check /etc/services, which has an entry for ftp and ftp-data 3. Check /etc/inetd.conf, which has an entry for ftp in it, together with 2. 4. Run lsof or sockstat, which tells which processes are using which ports. Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:34:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from indigo.quadrant.net (indigo.quadrant.net [207.195.92.9]) by hub.freebsd.org (Postfix) with ESMTP id 34C6A37B405 for ; Mon, 21 Jan 2002 13:34:51 -0800 (PST) Received: from git2000 (56K79.quadrant.net [207.195.92.79]) by indigo.quadrant.net (8.9.1/8.9.1) with SMTP id PAA11086 for ; Mon, 21 Jan 2002 15:34:49 -0600 (CST) From: "Scott Gerhardt" To: "FreeBSD" Subject: Netscape Messaging Server, Calendar Server etc. Date: Mon, 21 Jan 2002 15:36:47 -0600 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Has anyone attempted running the Iplanet/Ntscape Messaging server (4.1x) et. al on FreeBSD? Various flavours of UNIX are supported HP-UX, Solaris Linux etc.. I'm curious if anyone has attempted an install on FreeBSD. Regards, _________________________________ Scott Gerhardt, P.Geo. Gerhardt Information Technologies _________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:39:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fepB.post.tele.dk (fepB.post.tele.dk [195.41.46.145]) by hub.freebsd.org (Postfix) with ESMTP id 09C6F37B417 for ; Mon, 21 Jan 2002 13:39:41 -0800 (PST) Received: from there ([62.243.77.18]) by fepB.post.tele.dk (InterMail vM.4.01.03.23 201-229-121-123-20010418) with SMTP id <20020121213937.XYTH22989.fepB.post.tele.dk@there>; Mon, 21 Jan 2002 22:39:37 +0100 Content-Type: text/plain; charset="iso-8859-1" From: Bjarne Wichmann Petersen To: Doug Poland , SteveWingate@polands.org Subject: Re: Java plugin for mozilla? Date: Mon, 21 Jan 2002 22:40:57 +0100 X-Mailer: KMail [version 1.3.2] Cc: questions@FreeBSD.ORG References: <20020121103711.A27457@polands.org> In-Reply-To: <20020121103711.A27457@polands.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020121213937.XYTH22989.fepB.post.tele.dk@there> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday 21 January 2002 17:37, Doug Poland wrote: > Voila! java in mozilla. ... and almost here too.... followed your step and linux-mozilla loads the applets etc.... but I can't interact with the applets neither by mouse nor keyboard. Bjarne -- Homepage: http://www.mekanix.dk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:45: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id 99E0C37B405 for ; Mon, 21 Jan 2002 13:45:03 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0LLj2573277; Mon, 21 Jan 2002 15:45:02 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0LLj2S22982; Mon, 21 Jan 2002 15:45:02 -0600 (CST) Date: Mon, 21 Jan 2002 15:45:02 -0600 From: Doug Poland To: Bjarne Wichmann Petersen Cc: questions@FreeBSD.ORG Subject: Re: Java plugin for mozilla? Message-ID: <20020121154501.D18961@polands.org> References: <20020121103711.A27457@polands.org> <20020121213937.XYTH22989.fepB.post.tele.dk@there> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121213937.XYTH22989.fepB.post.tele.dk@there>; from freebsd.nospam@mekanix.dk on Mon, Jan 21, 2002 at 10:40:57PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 10:40:57PM +0100, Bjarne Wichmann Petersen wrote: > On Monday 21 January 2002 17:37, Doug Poland wrote: > > > Voila! java in mozilla. > > ... and almost here too.... followed your step and linux-mozilla loads the > applets etc.... but I can't interact with the applets neither by mouse nor > keyboard. > Hmmm... try removing comment from /usr/local/mozilla/mozilla # set -x (I think) and see if any diagnostic output reveals anything. Do the applets work in other environments? -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 13:45:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cswgraphics.com (host-64-65-195-100.choiceone.net [64.65.195.100]) by hub.freebsd.org (Postfix) with ESMTP id 504BA37B402 for ; Mon, 21 Jan 2002 13:45:15 -0800 (PST) Received: from citystamp.com (wanid.cswgraphics.com [64.65.195.58]) by cswgraphics.com (8.9.1b+Sun/8.9.1) with ESMTP id QAA28228; Mon, 21 Jan 2002 16:42:47 -0500 (EST) Message-ID: <3C4C8BCA.BBA128A4@citystamp.com> Date: Mon, 21 Jan 2002 16:44:43 -0500 From: "Matthew P. Marino" Reply-To: bind9@citystamp.com Organization: City Stamp Works Inc. X-Mailer: Mozilla 4.75C-CCK-MCD {C-UDP; EBM-APPLE} (Macintosh; U; PPC) X-Accept-Language: en,pdf MIME-Version: 1.0 To: Bob Hall Cc: FreeBSD Subject: Re: The tower of Hanoi References: <3C4B83A4.FA87DB7E@mediaone.net> <3C4B8603.2991E316@mediaone.net> <20020121161600.B735@starpower.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Well, this was in the output of a "dump" command that was trying to dump to an active atapi hard disk. dump -f /web/backups/full-1-20-02 /usr/local Bob Hall wrote: > > On Sun, Jan 20, 2002 at 10:07:50PM -0500, Sir wrote: > > Just as an after-thought, ever seen a "bad sblock magic number" before?? > > Yes. I was trying to mount an unformatted disk. > > Bob Hall > -- > Know thyself? Absurd direction! > Bubbles bear no introspection. -Khushhal Khan Khatak > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14: 0:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cswgraphics.com (host-64-65-195-100.choiceone.net [64.65.195.100]) by hub.freebsd.org (Postfix) with ESMTP id 87C1C37B402 for ; Mon, 21 Jan 2002 14:00:14 -0800 (PST) Received: from citystamp.com (wanid.cswgraphics.com [64.65.195.58]) by cswgraphics.com (8.9.1b+Sun/8.9.1) with ESMTP id QAA28243; Mon, 21 Jan 2002 16:57:46 -0500 (EST) Message-ID: <3C4C8F4E.D62FCD63@citystamp.com> Date: Mon, 21 Jan 2002 16:59:42 -0500 From: "Matthew P. Marino" Reply-To: bind9@citystamp.com Organization: City Stamp Works Inc. X-Mailer: Mozilla 4.75C-CCK-MCD {C-UDP; EBM-APPLE} (Macintosh; U; PPC) X-Accept-Language: en,pdf MIME-Version: 1.0 To: chip Cc: questions@freebsd.org Subject: Re: Opinions wanted - dealing with file sharing in AOL IM References: <200201211320107.SM00412@there> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chip wrote: > > One of my sons asked me today, about opening a port on the firewall so he and > some friends from school can share files. I'm a bit leary of opening a port > on the firewall. I know my freebsd boxes will be safe from windoze viruses by > there are also 4 windoze boxes on my network. I was thinking maybe opening a > high number port, say over 50000 or whatever (at least then it would be > relatively safe from casual port scanners). Or is this 'stinkin thinkin'? > I suggested setting up an ftp site and he could give his friends passwords, > but he would rather just use the IM sharing feature. I've never used, so I'm > not familiar with it. > How have you guys dealt with this? > -- > Chip Say NO. If he complains, un-plug the computer for about a month. FTP will look pretty good. Let me guess, MP3's??? I wouldn't trust AOL IM features. If he's interested in coolness set him up with a domain name and an Apache virtual server with PHP4. He can have a very nice web presence and gain valuable job skills in the process. My son's only 6. So it's easy for me to talk. I haven't crossed these bridges yet. Right now he's cool with Nickjr.com and starrynight.com. I did kick him off the family computer for mucking with the folder names. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14: 2:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.mx.pitdc1.stargate.net (smtp1.mx.pitdc1.stargate.net [206.210.69.141]) by hub.freebsd.org (Postfix) with SMTP id A9C6E37B400 for ; Mon, 21 Jan 2002 14:02:07 -0800 (PST) Received: (qmail 4898 invoked from network); 21 Jan 2002 22:01:52 -0000 Received: from dap-209-166-133-115.nfas.greensburg-tnt-2.sns234.pa.stargate.net (HELO wastegate.net) (209.166.133.115) by smtp1.mx.pitdc1.stargate.net with SMTP; 21 Jan 2002 22:01:52 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id DFDF44844F; Mon, 21 Jan 2002 17:02:24 -0500 (EST) From: "Doug Reynolds" To: "FBSD Questions" , "Joe & Fhe Barbish" Date: Mon, 21 Jan 2002 17:04:14 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: telnet/ftp security Message-Id: <20020121220224.DFDF44844F@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 19 Jan 2002 11:08:57 -0500, Joe & Fhe Barbish wrote: >I have telnet & FTP ID/PW access to my FBSD gateway/ipfw >box from the internet. Are there any security holes in >these two applications that would allow breaking into my system? I dont think there is any "security hole" in the daemon themselves, at least, no one has discovered anything as of yet. however, both are unsecure, and transmit plain text passwords over the internet. any one snooping (although unlikely) can get your password / user id. I would kill telnet, and run ssh. there is also a secure ftp protocol available in the ports, but it looks like a major kludge instead of a good fix, at least to me --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14: 6:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id 1634D37B402 for ; Mon, 21 Jan 2002 14:06:12 -0800 (PST) Received: (qmail 8845 invoked by uid 0); 21 Jan 2002 22:06:10 -0000 Received: from tk212017108240.univie.teleweb.at (HELO Deadcell.ANT) (212.17.108.240) by mail.gmx.net (mp007-rz3) with SMTP; 21 Jan 2002 22:06:10 -0000 Received: (from ant@localhost) by Deadcell.ANT (8.11.6/8.11.6) id g0LM5u693572; Mon, 21 Jan 2002 23:05:56 +0100 (CET) (envelope-from ant) Date: Mon, 21 Jan 2002 23:05:56 +0100 From: Andreas Ntaflos To: Cliff Sarginson Cc: freebsd-questions@freebsd.org Subject: Re: Questions about upcoming FreeBSD 4.5... Message-ID: <20020121230556.B46630@Deadcell.ANT> Mail-Followup-To: Cliff Sarginson , freebsd-questions@freebsd.org References: <20020121200911.MGGH7000.mta06-svc.ntlworld.com@there> <20020121124730.R53531-100000@resnet.uoregon.edu> <20020121211229.GA993@raggedclown.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121211229.GA993@raggedclown.net>; from cliff@raggedclown.net on Mon, Jan 21, 2002 at 10:12:29PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 10:12:29PM +0100, Cliff Sarginson wrote: > > /usr/sbin/vidcontrol -g 100x37 VESA_800x600 > > It does slow the screen down a little though.. > And unfortunately it sets the vert. refresh rate to 60Hz which gives me a headache from time to time. Now I know there is a patch to set it to 100Hz somewhere around as someone pointed out, but I do not seem to be able to get it running. oh well regards -- Andreas "ant" Ntaflos ntaflos.andreas@gmx.net Vienna, AUSTRIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14:10: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from albatross.prod.itd.earthlink.net (albatross.mail.pas.earthlink.net [207.217.120.120]) by hub.freebsd.org (Postfix) with ESMTP id DBB4937B402 for ; Mon, 21 Jan 2002 14:10:03 -0800 (PST) Received: from dialup-209.244.64.73.dial1.chicago1.level3.net ([209.244.64.73] helo=pegasus) by albatross.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16Smde-00015Q-00; Mon, 21 Jan 2002 14:10:03 -0800 Message-ID: <004901c1a2c8$5f543e80$328dfea9@pegasus> From: "Bob Giesen" To: "freebsd-questions" Cc: "Bob Giesen (earthlink)" Subject: Linksys LNE10TX v4.1, FreeBSD v3.2 Date: Mon, 21 Jan 2002 16:10:00 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have an LNE100TX v4.1 card and FreeBSD v3.2 -- which I'm hoping to get to work together. I tried the pn kernel driver (in response to a tip in the kernel config file), to no avail. In search of an answer (via Google), I found a page (http://www.linksys.com/faqs/default.asp?fqid=27) which recommended trying the DEC (de) kernel driver or else the pn code (if_pn.c & if_pnreg.h) supplied via that page. I tried both (separately and together), to no avail. When I boot, it seems that the PCI probe isn't even finding the NIC; there's no line in the dmesg output that refers to pn0, de0... or anything else that even remotely looks like it might be the NIC. Just in case it was a case of a persnickety probe, I changed the positions of my NIC and the only other PCI card I have installed (Creative SB PCI 512 sound card), moving the NIC to the first slot (next to the AGP slot, where the sound card used to live), also to no avail. (FYI, the AGP slot houses the video card and my only ISA slot holds the modem.) I've done some searching in the archives, here, looking for an answer, but couldn't find one. Now, I wonder (1) if my card will work with FreeBSD v3.2 and, if so, (2) where can I find the driver code to make it possible? Any help that you can provide will be much appreciated -- since it might save me much, much time in upgrading my FreeBSD -- or the cost of another, supported card. Thanks in advance. - Bob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14:13:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.austclear.com.au (ns1.austclear.com.au [192.43.185.68]) by hub.freebsd.org (Postfix) with ESMTP id 5963D37B400 for ; Mon, 21 Jan 2002 14:13:17 -0800 (PST) Received: from tungsten.austclear.com.au (tungsten.austclear.com.au [192.168.166.65]) by ns1.austclear.com.au (8.11.2/8.11.3) with ESMTP id g0LMDF075548; Tue, 22 Jan 2002 09:13:15 +1100 (EST) (envelope-from ahl@austclear.com.au) Received: from tungsten (tungsten [192.168.166.65]) by tungsten.austclear.com.au (8.9.3/8.9.3) with ESMTP id JAA29808; Tue, 22 Jan 2002 09:13:16 +1100 (EST) Message-Id: <200201212213.JAA29808@tungsten.austclear.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Doug Poland Cc: tony , questions@FreeBSD.ORG Subject: Re: faulty vinum plex, need help please In-Reply-To: Message from Doug Poland of "Mon, 21 Jan 2002 15:21:08 MDT." <20020121152108.B18961@polands.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 22 Jan 2002 09:13:15 +1100 From: Tony Landells Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG doug@polands.org said: > Did you put the 0 in the vinum.conf? Yes, the 0 would go in vinum.conf as the subdisk length. However, you usually get some sort of error when you attach a plex to a mirror, which reflects that the data hasn't been copied (yet). Have you tried telling vinum to start the subdisks? vinum start dataraid.p1.s0 vinum start dataraid.p1.s1 vinum start dataraid.p1.s2 vinum start dataraid.p1.s3 If all the subdisks start successfully, the plex should come up as a result--at the moment it's faulty because its subdisks aren't up. Tony -- Tony Landells Senior Network Engineer Ph: +61 3 9677 9319 Australian Clearing Services Pty Ltd Fax: +61 3 9677 9355 Level 4, Rialto North Tower 525 Collins Street Melbourne VIC 3000 Australia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14:19:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fepC.post.tele.dk (fepC.post.tele.dk [195.41.46.147]) by hub.freebsd.org (Postfix) with ESMTP id 7949137B404 for ; Mon, 21 Jan 2002 14:19:47 -0800 (PST) Received: from there ([62.243.77.18]) by fepC.post.tele.dk (InterMail vM.4.01.03.23 201-229-121-123-20010418) with SMTP id <20020121221945.YIDN11568.fepC.post.tele.dk@there>; Mon, 21 Jan 2002 23:19:45 +0100 Content-Type: text/plain; charset="iso-8859-1" From: Bjarne Wichmann Petersen To: Doug Poland , Bjarne Wichmann Petersen Subject: Re: Java plugin for mozilla? Date: Mon, 21 Jan 2002 23:21:05 +0100 X-Mailer: KMail [version 1.3.2] Cc: questions@FreeBSD.ORG References: <20020121103711.A27457@polands.org> <20020121213937.XYTH22989.fepB.post.tele.dk@there> <20020121154501.D18961@polands.org> In-Reply-To: <20020121154501.D18961@polands.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020121221945.YIDN11568.fepC.post.tele.dk@there> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday 21 January 2002 22:45, Doug Poland wrote: > > ... and almost here too.... followed your step and linux-mozilla loads > > the applets etc.... but I can't interact with the applets neither by > > mouse nor keyboard. > Hmmm... try removing comment from /usr/local/mozilla/mozilla > # set -x (I think) and see if any diagnostic output reveals > anything. Hmm... can't spot anything out of the ordinary... This is all I get: $ linux-mozilla + dirname ./mozilla + dist_bin=. + script_args= + moreargs= + debugging=0 + MOZILLA_BIN=mozilla-bin + [ freebsd4.0 = beos ] + [ 0 -gt 0 ] + eval set -- + set -- + [ 0 = 1 ] + exec ./run-mozilla.sh ./mozilla-bin Gtk-WARNING **: Unable to locate loadable module in module_path: "libthinice.so", /home/mekanix/.gtkrc:13: error: scanner: unterminated comment - e.g. `style' Warning: Cannot convert string "Escape,_Key_Cancel" to type VirtualBinding Warning: Cannot convert string "Home,_Key_Begin" to type VirtualBinding Warning: Cannot convert string "F1,_Key_Help" to type VirtualBinding Warning: Cannot convert string "ShiftF10,_Key_Menu" to type VirtualBinding Warning: Cannot convert string "F10,Shift_Key_Menu" to type VirtualBinding Warning: Cannot convert string "KP_Enter,_Key_Execute" to type VirtualBinding Warning: Cannot convert string "AltReturn,Alt_Key_KP_Enter" to type VirtualBinding > Do the applets work in other environments? Yup. Bjarne -- Homepage: http://www.mekanix.dk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14:37:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id 46A3537B404 for ; Mon, 21 Jan 2002 14:37:14 -0800 (PST) Received: (qmail 594 invoked by uid 100); 21 Jan 2002 22:37:11 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15436.38934.992453.860566@guru.mired.org> Date: Mon, 21 Jan 2002 16:37:10 -0600 To: Sir Cc: questions@freebsd.org Subject: Re: The tower of Hanoi In-Reply-To: <98444095@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sir types: > Sir wrote: > > I was following a thread in the freebsd mailing list that you replied > > on. Seems like you have some experience with "dump". A read of the man > > pages has a realy baffling bit about the tower of hanoi algorithm. It > > says incrementals should be taken on a daily basis 3 2 5 4 7 6 9 8 9 > > 9.... It then goes on to say that a weekly should be taken with level > > 1. Well, there's more than 7 levels there so I'm not sure how it all > > fits together. It reads like they should be done all in the same day?? I > > was under the impression you shouldn't "dump" a disk unles it's > > umount'd. And, for us real newbies, how do you un-dump?? As Crist Clark explained, it's designed to balance the amount of data on the disk with the number of steps you need to restore. I've never seen anyone actually use this strategy. The only safe way to dump a file system is when it's static, meaning either unmounted or mounted read-only. Otherwise, you may wind up with a file that's not dumped, or dumped in an inconsistent state. The real danger here is if some daily process is done in sync with your backups, so that the data it produces is *never* properly written to a tape. To avoid that, run all your critical processes and the daily dump with the same invocation of periodic. > Just as an after-thought, ever seen a "bad sblock magic number" before?? Yes. It means your superblock has been written to by something that didn't know what it was doing. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14:39: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mx.pitdc1.stargate.net (smtp2.mx.pitdc1.stargate.net [206.210.69.142]) by hub.freebsd.org (Postfix) with SMTP id 7E7D337B400 for ; Mon, 21 Jan 2002 14:38:50 -0800 (PST) Received: (qmail 23916 invoked from network); 21 Jan 2002 22:38:48 -0000 Received: from dap-209-166-136-181.nfas.greensburg-tnt-1.sns234.pa.stargate.net (HELO wastegate.net) (209.166.136.181) by smtp2.mx.pitdc1.stargate.net with SMTP; 21 Jan 2002 22:38:48 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id 8AAE04844F; Mon, 21 Jan 2002 17:39:22 -0500 (EST) From: "Doug Reynolds" To: "Allen Landsidel" , "Nick Rogness" Cc: "freebsd-questions@FreeBSD.ORG" Date: Mon, 21 Jan 2002 17:41:11 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: <5.1.0.14.0.20020120205959.00a99618@rfnj.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: multihomed routing woes.. Message-Id: <20020121223922.8AAE04844F@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 20 Jan 2002 21:15:30 -0500, Allen Landsidel wrote: >> > interface, and an address in the 10/8 block on the exterior. The >> > router has an address on the 10/8 block on the interior, the ISP >> > assigned address on the WAN interface, and a static route to the >> > firewall 10/8 for my IP block. >> > >> > The problem is simple : All outgoing traffic that *originates* on the >> > firewall attempts to use the 10/8 address. I'm looking for some easy >> > way to force it to use it's internal address for traffic destined to >> > go out the exterior interface, but so far to no avail. >> > >> >> The real problem here is that you are running publics on your >> inside. Why are you doing this and not using static nat for this? > >Why should I use nat if I'm paying for an IP block? The lan is not an >intranet, it's a bunch of "real" servers out on the internet. someone will probably tell me that this is way out of line and maybe twisted, and you'd probably need a killer firewall machine but hear goes: 1) assign all your ip addresses (that you need) of your server bank LAN to the nic card in your main firewall machine 2) assign private addresses to everything 2) run NATD and put redirect_address statements in a configuration files for each one of your servers 3) firewall out all the ports you don't want going to which ever machine. i'd at least leave open a ssh port open on all the servers so you can change the configuration. the only problem i see is that this must take up to much resources, and defeat the purpose of having individual servers :) or, dump all the ips and NATD everything. that only plus on having the above config would be you'd have seperate ip address for each host, whereas you'd have to CNAME everything just to NATd everything --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14:42:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from 1nova.com (heorot.1nova.com [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 82CDB37B402 for ; Mon, 21 Jan 2002 14:42:27 -0800 (PST) Received: by 1nova.com (Postfix, from userid 1000) id 679EF18F3; Mon, 21 Jan 2002 15:41:56 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by 1nova.com (Postfix) with ESMTP id 5611218F2; Mon, 21 Jan 2002 15:41:56 -0800 (PST) Date: Mon, 21 Jan 2002 15:41:56 -0800 (PST) From: Rick Hamell To: "Matthew P. Marino" Cc: chip , questions@freebsd.org Subject: Re: Opinions wanted - dealing with file sharing in AOL IM In-Reply-To: <3C4C8F4E.D62FCD63@citystamp.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > One of my sons asked me today, about opening a port on the firewall so he and > > some friends from school can share files. I'm a bit leary of opening a port > > on the firewall. I know my freebsd boxes will be safe from windoze viruses by > > Say NO. If he complains, un-plug the computer for about a month. FTP will look > pretty good. Let me guess, MP3's??? I wouldn't trust AOL IM features. If he's Say Heck no... IM is the number two place Virus' come from these days... Rick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14:46:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id E2A3537B402 for ; Mon, 21 Jan 2002 14:46:48 -0800 (PST) Received: (qmail 481 invoked by uid 100); 21 Jan 2002 22:20:07 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15436.37910.635122.378864@guru.mired.org> Date: Mon, 21 Jan 2002 16:20:06 -0600 To: Cliff Sarginson , Wayne Pascoe Cc: questions@freebsd.org Subject: Re: Re[2]: what is a good language for system administration? In-Reply-To: <123382329@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Cliff Sarginson types: > On Sun, Jan 20, 2002 at 10:07:25AM -0600, Mike Meyer wrote: > > Alfatrion types: > > > True. There's a couple of Python-specific remote method invocation > > implementations floating around, but I haven't investigated them. I > > like the ability to choose the language appropriate for each object > > that comes with using CORBA. > Mmm, considering this and other answers (including my own), they are > all trying to answer the question (what is "good" for system > administration). The question may have have been what, in a practical > sense is the best to learn in terms of portability, skills, and > what may shine best on your CV as a "Unix Systems Admin" The last one tends to run counter to the first two. > For the wider world I think the answer is still: > - Know the shell backwards and all the needed tools for use with the > shell. Yup. > - (Painful as I find this to say) learn Perl. There is such a huge > amount of canned modules for Perl available, and it is increasingly > used where people used to write "C" for something too slow to be > done in the shell, that I don;t think there are any other players > seriously in the game yet. I think Perl is more useful on your resume than as a system administration language. On the other hand, you're almost certain to encounter it most places, so being able to read and debug it will be handy. Python - and Ruby, for that matter - both have a large collection of canned modules. More on that in a bit. Python and Java are both being used where people used to write C (or some other compiled language) because the shell was to slow, or lacked the facilities. In some cases, they come out faster because the stuff that really needs to be fast is now done in carefully tuned C in the VM instead of the stuff thrown together for the job at hand. Outside the sysadmin domain, Python is seeing a lot of use in scientific modeling. You wrap the model code in an object, then the users get to play with the model in the Python REPL loop, which beats the old method of writing a C program to invoke the model routines hands down. Wayne Pascoe types: > writes: > > > rene@xs4all.nl writes: > > > > * checking if a remote host is up > > > > * pumping files & RAM data through external tools > > > > * calling scripts written in the same language on a remote machine, to > > > > 'pickup' data that was pumped to that machine by a local script. > > > Perl was written with sysadmin work in mind. That was the original Which means it was designed to be comfortable to people who knew the shell and C. Which is why it's incredibly ugly. I mean - can anyone name two other languages that use non-alphabetic characters on the end of the name to denote the type of a variable, and you can have multiple variables with the same name but different types? > > Perl is a hideously ugly language that should be taken out and shot. Since > > your soliciting opinions :-) Python is a much easier, cleaner, and nicer > > language for sys admin tasksfor me then perl. My favorite story about Perl is when someone approached Larry Wall and Eric Allman at a Usenix and asked "What does $* mean?". They both had an answer. > Correct me if I'm wrong, but isn't Python completely object orientated > ? And doesn't it force you to write your code in an OO structure ? to > me that just seems like overkill for the average day to day sysadmin > task. As others have pointed out, this is wrong. The real difference between Perl and Python is that Python was designed with OO support, whereas it was tacked onto Perl later in life. As a result, some of Perl's builtin facilities are objects in Python which is to Perl's advantage. You can do pretty complicated things in Perl without having to know about loadable modules and objects. Even simple things in Python require you to deal with them. On the other hand, nearly all the Python modules are OO, which is to Python's advantage. It means that if an expansion module does *almost* what you want, you can import it and write a subclass that applies the appropriate changes. In Perl, you'd wind up copying the module and changing the new copy unless the module was done in an OO style. Real-world example of such: I needed to fetch a file from an FTP server. Both Perl and Python have modules to do that. However, this FTP server needed an ACCOUNT sent to it - check the RFC for FTP to see what that is - which neither could handle. In python, I just imported the ftplib module, subclassed it and provided a new login() method that accepted an optional account name(*). The Perl FTP module available then didn't allow that, and would have required either fixing the module, or copying it and fixing a new one. > Perl code can be ugly and wrong, but if written properly, it is easily > readable and easy to work with. "Proper Perl Style" reminds me of "Correctly Configured Emacs." http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14:48:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Mail4.mgfairfax.rr.com (fe4.southeast.rr.com [24.93.67.51]) by hub.freebsd.org (Postfix) with ESMTP id 5EB8A37B402 for ; Mon, 21 Jan 2002 14:48:49 -0800 (PST) Received: from there ([24.163.115.240]) by Mail4.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Mon, 21 Jan 2002 17:48:55 -0500 Content-Type: text/plain; charset="iso-8859-1" From: Ray Kohler To: "Philip Pereira" , Subject: Re: Boot Loader? Date: Mon, 21 Jan 2002 17:51:59 -0500 X-Mailer: KMail [version 1.3.2] References: <001601c1a2bd$f80b66e0$689901d4@wintellect.com> In-Reply-To: <001601c1a2bd$f80b66e0$689901d4@wintellect.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: <0a3135548221512FE4@Mail4.mgfairfax.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday 21 January 2002 03:54 pm, Philip Pereira wrote: > Dear all-knowledgable ones... > > I have 2 questions to do with the FreeBSD Boot Loader. > > Currently my system uses the standard MBR to point to the hard > disk for booting, but I want to go a step further.... > > (A) How can I install the 'FreeBSD Boot Loader' at this late > stage without damaging my current installation? Run "disklabel -B ad0" (substitute another disk for ad0 if appropriate.) You can do this now or after installing linux, it doesn't matter. > (B) When I attach my second hard disk (with Linux on it) to my > FreeBSD box, how can I configure the newly installed Boot Loader > (from point A) to give the option of booting either OS on either > disk? When you install linux, tell LILO (or Grub, or whatever) to install in the MBR of the new linux disk (probably /dev/hdb, but of course I don't know what you've got set up here). DON'T put it in the MBR of the FreeBSD disk (unless you want to use LILO to boot FreeBSD instead). LILO doesn't need to know about FreeBSD, only linux. There's no configuration of boot0 (the FreeBSD boot loader you speak of) needed; it's smart enough to automatically give you the choice between 'FreeBSD' and 'other disk' (which will transfer control to LILO to boot linux). -- Ray Kohler Parsley is gharsley. -- Ogden Nash To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14:50:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id 4B75237B402 for ; Mon, 21 Jan 2002 14:50:13 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0LMoC595987; Mon, 21 Jan 2002 16:50:12 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0LMoAA28934; Mon, 21 Jan 2002 16:50:10 -0600 (CST) Date: Mon, 21 Jan 2002 16:50:10 -0600 From: Doug Poland To: Tony Landells Cc: tony , questions@FreeBSD.ORG Subject: Re: faulty vinum plex, need help please Message-ID: <20020121165010.B26558@polands.org> References: <200201212213.JAA29808@tungsten.austclear.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200201212213.JAA29808@tungsten.austclear.com.au>; from ahl@austclear.com.au on Tue, Jan 22, 2002 at 09:13:15AM +1100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 09:13:15AM +1100, Tony Landells wrote: > doug@polands.org said: > > Did you put the 0 in the vinum.conf? > > Yes, the 0 would go in vinum.conf as the subdisk length. > > However, you usually get some sort of error when you attach a plex > to a mirror, which reflects that the data hasn't been copied (yet). > > Have you tried telling vinum to start the subdisks? > > vinum start dataraid.p1.s0 > vinum start dataraid.p1.s1 > vinum start dataraid.p1.s2 > vinum start dataraid.p1.s3 > > If all the subdisks start successfully, the plex should come up as > a result--at the moment it's faulty because its subdisks aren't up. > I issue the commands as suggested. Each replied with: Reviving dataraid.p1.s0 in the background Reviving dataraid.p1.s1 in the background Reviving dataraid.p1.s2 in the background Reviving dataraid.p1.s3 in the background vinum list reports: # vinum list 4 drives: D a State: up Device /dev/da0s2e Avail: 0/8628 MB (0%) D b State: up Device /dev/da1s2e Avail: 0/8628 MB (0%) D c State: up Device /dev/da2s2e Avail: 0/8628 MB (0%) D d State: up Device /dev/da3s2e Avail: 0/8628 MB (0%) 1 volumes: V dataraid State: up Plexes: 2 Size: 16 GB 2 plexes: P dataraid.p0 S State: up Subdisks: 4 Size: 16 GB P dataraid.p1 S State: faulty Subdisks: 4 Size: 16 GB 8 subdisks: S dataraid.p0.s0 State: up PO: 0 B Size: 4314 MB S dataraid.p0.s1 State: up PO: 512 kB Size: 4314 MB S dataraid.p0.s2 State: up PO: 1024 kB Size: 4314 MB S dataraid.p0.s3 State: up PO: 1536 kB Size: 4314 MB S dataraid.p1.s0 State: R 4% PO: 0 B Size: 4314 MB S dataraid.p1.s1 State: R 3% PO: 512 kB Size: 4314 MB S dataraid.p1.s2 State: R 3% PO: 1024 kB Size: 4314 MB S dataraid.p1.s3 State: R 3% PO: 1536 kB Size: 4314 MB So when the subdisks are revived, then the plex will automatically come up, or must I start it? Could you speculate as to why this happened? I'd like to understand what went wrong and how to avoid/fix this in the future. Many thanks for your help so far, -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14:54:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.mgfairfax.rr.com (fe7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id EED8F37B402 for ; Mon, 21 Jan 2002 14:54:14 -0800 (PST) Received: from there ([24.163.115.240]) by mail7.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Mon, 21 Jan 2002 17:54:05 -0500 Content-Type: text/plain; charset="iso-8859-1" From: Ray Kohler To: bind9@citystamp.com, Joe Rodrigues Subject: Re: Find command Date: Mon, 21 Jan 2002 17:57:17 -0500 X-Mailer: KMail [version 1.3.2] Cc: freebsd questions References: <000d01c1a137$30948ec0$f449fea9@tmlp.com> <3C4C406B.D1EFB54F@citystamp.com> In-Reply-To: <3C4C406B.D1EFB54F@citystamp.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: <0f59c0554221512FE7@mail7.mgfairfax.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday 21 January 2002 11:23 am, Matthew P. Marino wrote: > try this; > > find /usr/X11R6 -name /*xinitrc/* -PRINT make that 'find /usr/X11R6 -name \*xinitrc\* -print' > The backslash tells find to interpret the special character > that follows as the wildcard. More likely to get what you want > that way. -- Ray Kohler Hardware, n.: The parts of a computer system that can be kicked. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14:55:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mx.pitdc1.stargate.net (smtp2.mx.pitdc1.stargate.net [206.210.69.142]) by hub.freebsd.org (Postfix) with SMTP id A8C9B37B405 for ; Mon, 21 Jan 2002 14:55:33 -0800 (PST) Received: (qmail 23490 invoked from network); 21 Jan 2002 22:55:32 -0000 Received: from dap-209-166-136-181.nfas.greensburg-tnt-1.sns234.pa.stargate.net (HELO wastegate.net) (209.166.136.181) by smtp2.mx.pitdc1.stargate.net with SMTP; 21 Jan 2002 22:55:32 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id 65B4E48449; Mon, 21 Jan 2002 17:55:59 -0500 (EST) From: "Doug Reynolds" To: "Bob Giesen" , "freebsd-questions" Cc: "Bob Giesen (earthlink)" Date: Mon, 21 Jan 2002 17:57:48 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: <004901c1a2c8$5f543e80$328dfea9@pegasus> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 Message-Id: <20020121225559.65B4E48449@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002 16:10:00 -0600, Bob Giesen wrote: > > I have an LNE100TX v4.1 card and FreeBSD v3.2 -- which I'm hoping to get >to work together. I tried the pn kernel driver (in response to a tip in the >kernel config file), to no avail. I installed one in a friends server, and i used dc0 --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 14:58:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 1530F37B404 for ; Mon, 21 Jan 2002 14:58:19 -0800 (PST) Received: from gateway ([63.70.155.45]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Mon, 21 Jan 2002 18:01:30 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: pw useradd -D command Date: Mon, 21 Jan 2002 17:58:16 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This sets up a default /etc/pw.conf file where the defaults can be edited. Man page says pw will create hone directory /usr/home/userid and copy over .files from /usr/share/skel. When I enter pw useradd tom followed by pw usershow tom it shows tom's home as /home/tom which is what I expected. But when I check out /usr/home/ there is no tom directory. When I login as tom I get message saying logged in at ./ which is wrong. Am I doing some thing wrong, or is this really a bug in pw that needs to be reported? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 15: 0:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.mgfairfax.rr.com (fe7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id 491A737B476 for ; Mon, 21 Jan 2002 15:00:49 -0800 (PST) Received: from there ([24.163.115.240]) by mail7.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Mon, 21 Jan 2002 18:00:47 -0500 Content-Type: text/plain; charset="iso-8859-1" From: Ray Kohler To: "Charles Burns" , friar_josh@webwarrior.net, questions@FreeBSD.ORG Subject: Re: How do i know if SMP is working? Date: Mon, 21 Jan 2002 18:03:58 -0500 X-Mailer: KMail [version 1.3.2] References: In-Reply-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: <0064c4700231512FE7@mail7.mgfairfax.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday 21 January 2002 12:18 am, Charles Burns wrote: > > I must agree that top's display is confusing (SMP or not--WTF is > 'wired' memory?) Wired memory are pages that are not allowed to be swapped out for whatever reason, such as some (all?) kernel code. -- Ray Kohler Serenity through viciousness. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 15: 2: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tntpro.com (159-63.suscom-maine.net [207.5.159.63]) by hub.freebsd.org (Postfix) with ESMTP id 2C6EE37B400 for ; Mon, 21 Jan 2002 15:01:54 -0800 (PST) Received: from celery (celery.tntpro.com [192.168.0.13]) by tntpro.com (8.11.6/8.11.6) with SMTP id g0LN1Dp05117; Mon, 21 Jan 2002 18:01:17 -0500 (EST) (envelope-from tony@tntpro.com) From: "tony" To: "Doug Poland" Cc: Subject: RE: faulty vinum plex, need help please Date: Mon, 21 Jan 2002 18:01:09 -0500 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 V6.00.2600.0000 In-Reply-To: <20020121152108.B18961@polands.org> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG my setup was different I just wanted speed :) here is my vinumconf file root:~# more vinumconfig drive d1 device /dev/ad1s1e drive d2 device /dev/ad2s1e drive d3 device /dev/ad3s1e volume raid plex org striped 512k sd length 0 drive d1 sd length 0 drive d2 sd length 0 drive d3 root:~# -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Doug Poland Sent: Monday, January 21, 2002 4:21 PM To: tony Cc: questions@FreeBSD.ORG Subject: Re: faulty vinum plex, need help please On Mon, Jan 21, 2002 at 04:07:12PM -0500, tony wrote: > have you checked the size of each drive in disklabel? did all 4 really fdisk > and label to 4314? > I put a 54MB swap partition on each drive. That left me with 8628MB free. I divided by two to arrive at 4314 and used that number. > I just put a size of 0 to use all available space to eliminate this > potential > Did you put the 0 in the vinum.conf? -- Regards, Doug > > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Doug Poland > Sent: Monday, January 21, 2002 3:50 PM > To: questions@FreeBSD.ORG > Subject: faulty vinum plex, need help please > > > Hi, > > I'm attempting to create a mirrored and striped vinum volume (raid10) > using 4 identical SCSI disks. Here's my /etc/vinum.conf: > > drive a device /dev/da0s2e > drive b device /dev/da1s2e > drive c device /dev/da2s2e > drive d device /dev/da3s2e > > volume dataraid > plex org striped 512k > sd length 4314m drive a > sd length 4314m drive b > sd length 4314m drive c > sd length 4314m drive d > plex org striped 512k > sd length 4314m drive c > sd length 4314m drive d > sd length 4314m drive a > sd length 4314m drive b > > When I do a # vinum list, it reports: > 4 drives: > D a State: up Device /dev/da0s2e Avail: > 0/8628 MB (0%) > D b State: up Device /dev/da1s2e Avail: > 0/8628 MB (0%) > D c State: up Device /dev/da2s2e Avail: > 0/8628 MB (0%) > D d State: up Device /dev/da3s2e Avail: > 0/8628 MB (0%) > > 1 volumes: > V dataraid State: up Plexes: 2 Size: 16 GB > > 2 plexes: > P dataraid.p0 S State: up Subdisks: 4 Size: 16 GB > P dataraid.p1 S State: faulty Subdisks: 4 Size: 16 GB > > 8 subdisks: > S dataraid.p0.s0 State: up PO: 0 B Size: 4314 MB > S dataraid.p0.s1 State: up PO: 512 kB Size: 4314 MB > S dataraid.p0.s2 State: up PO: 1024 kB Size: 4314 MB > S dataraid.p0.s3 State: up PO: 1536 kB Size: 4314 MB > S dataraid.p1.s0 State: empty PO: 0 B Size: 4314 MB > S dataraid.p1.s1 State: empty PO: 512 kB Size: 4314 MB > S dataraid.p1.s2 State: empty PO: 1024 kB Size: 4314 MB > S dataraid.p1.s3 State: empty PO: 1536 kB Size: 4314 MB > > > So dataraid plex 1 appears to be faulty. Is this a mis-configuration > on my part? Is it hardware failure? The read/write performance of the > vinum volume does not appear to have degraded, have I just lost the > mirroring > property? > > I'll be thankful for any advice on how to diagnose and fix this situation. > > -- > Regards, > Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 15: 5:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id 700D137B405 for ; Mon, 21 Jan 2002 15:05:31 -0800 (PST) Received: (qmail 864 invoked by uid 100); 21 Jan 2002 23:05:28 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15436.40632.383947.819624@guru.mired.org> Date: Mon, 21 Jan 2002 17:05:28 -0600 To: "Richard E. Hawkins" Cc: questions@freebsd.org Subject: Re: spreading system across four fast scsi disks In-Reply-To: <77914840@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Richard E. Hawkins types: > dual AMD 1900 MP > 2G DDR > sony 21" > buckling spring keyboard with control key where God meant it to Be > 4x 9g cheetah 1500rpm U160 scsi drive > 2x18g cheetah 1500rpm U160 scsi drive > no smoke pellets :( > > Anyway, the FreeBSD installation will run across the 4 small drives, > with the two large drives for catching data as models run. > > But how to divide the four drives? > > I'm assuming that /, /usr, swap, and /home all go on different drives > (and that swap really gets its own drive, or at least stuff that > wouldn't get hit on in high performance operations). Don't give swap it's own drive. If you're really thinking about giving it 9 gig, give it 2.x gig (x should be > 64K of memory so you can get dumps) on all four drives. If you can split the drives across two controllers, even better. > What about /var, though? The purpose of the split is so that the heads > can be in places likely to be used simultaneously. The second sentence is critical. For swap, the system is smart enough to interleave swap across multiple disks. Let it do it's thing. Vinum can do the same kind of thing with data partitions, though you can't boot off of them. > Would anything in / oustside of /usr get touched much while a fortran > program was running? Would /var get touched more than every few > minutes? > > Does it matter anyway? :) > > I assume the program will be on /home (which I figure to give all but a > little of its drive) and relying on libraries (fortran, imsl, etc.) in > /usr. /var gets touched every so often. /usr/ will be where most of your user commands are, and will get read to run them. With your commands on /home, they will be swapped in from there if needed. It's really hard to say what to do with the rest of it without knowing what you're going to be doing with it, though. No, that's wrong - you ought to give it to me :-). For example, the 4x9g cheetas might be 1Gig FS, 2Gig swap, 6Gig /home, with vinum used to strip /home across the four devices, possibly with a a mirror as well. The four fs's would be root, /usr, /usr/src and /usr/obj so that rebuilding the world would scream. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 15: 7: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail4.nc.rr.com (fe4.southeast.rr.com [24.93.67.51]) by hub.freebsd.org (Postfix) with ESMTP id 5A9BE37B405 for ; Mon, 21 Jan 2002 15:06:57 -0800 (PST) Received: from nc.rr.com ([24.25.11.14]) by mail4.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Mon, 21 Jan 2002 18:07:04 -0500 Message-ID: <3C4C9F10.FBD0B1F@nc.rr.com> Date: Mon, 21 Jan 2002 18:06:56 -0500 From: Michael E Mercer Reply-To: freebsd-questions@freebsd.org X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.5-RC i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: three questions regarding hard drives... Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all, I am thinking of buying an 80 G HD to replace the two 8 G HDs that I am using for Freebsd. First question: Is 80 too big for FreeBSD? Should I use a smaller HD? What is the maximum size for a HD that FreeBSD can use? OK OK, three questions in one, but anyone that has taken a physics test should be used to this. :P Second question: What is your recommendation for partitioning? I know this is entirely a personal opinion, however maybe things have changed since I last setup my current system. Third question: How do I migrate all the data from my two Hard Drives to the one? I am sure I could find this information on the web, but thought I would take a chance and ask anyway. Thanks Michael Mercer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 15:11:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.austclear.com.au (ns1.austclear.com.au [192.43.185.68]) by hub.freebsd.org (Postfix) with ESMTP id 715A437B400 for ; Mon, 21 Jan 2002 15:11:13 -0800 (PST) Received: from tungsten.austclear.com.au (tungsten.austclear.com.au [192.168.166.65]) by ns1.austclear.com.au (8.11.2/8.11.3) with ESMTP id g0LNBC075961; Tue, 22 Jan 2002 10:11:12 +1100 (EST) (envelope-from ahl@austclear.com.au) Received: from tungsten (tungsten [192.168.166.65]) by tungsten.austclear.com.au (8.9.3/8.9.3) with ESMTP id KAA01827; Tue, 22 Jan 2002 10:11:11 +1100 (EST) Message-Id: <200201212311.KAA01827@tungsten.austclear.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Doug Poland Cc: Tony Landells , tony , questions@FreeBSD.ORG Subject: Re: faulty vinum plex, need help please In-Reply-To: Message from Doug Poland of "Mon, 21 Jan 2002 16:50:10 MDT." <20020121165010.B26558@polands.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 22 Jan 2002 10:11:11 +1100 From: Tony Landells Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG doug@polands.org said: > So when the subdisks are revived, then the plex will automatically > come up, or must I start it? Could you speculate as to why this > happened? I'd like to understand what went wrong and how to avoid/fix > this in the future. The plex will automatically come up when all of its subdisks are up. This happened because it's supposed to happen. This is in the vinum documentation, placed very logically, several pages too late to help someone who is trying to wing it from the documentation (hark to the voice of experience!) ;-) In particular, look at the "Gotchas" and the "start" command. Read the documentation all the way through, and try to understand the examples, and it will all make much more sense. Tony -- Tony Landells Senior Network Engineer Ph: +61 3 9677 9319 Australian Clearing Services Pty Ltd Fax: +61 3 9677 9355 Level 4, Rialto North Tower 525 Collins Street Melbourne VIC 3000 Australia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 15:23:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from bunning.skiltech.com (bunning.skiltech.com [216.235.79.240]) by hub.freebsd.org (Postfix) with ESMTP id B10D537B416 for ; Mon, 21 Jan 2002 15:23:11 -0800 (PST) Received: (from root@localhost) by bunning.skiltech.com (8.11.6/8.11.6) id g0LNN5m33830 for questions@freebsd.org; Mon, 21 Jan 2002 18:23:05 -0500 (EST) (envelope-from minter) Received: (from minter@localhost) by bunning.skiltech.com (8.11.6/8.11.6) id g0LNN3m33822; Mon, 21 Jan 2002 18:23:03 -0500 (EST) (envelope-from minter) Date: Mon, 21 Jan 2002 18:23:02 -0500 (EST) From: "H. Wade Minter" X-X-Sender: minter@bunning.skiltech.com To: questions@freebsd.org Subject: KDE2 audiocd:/ protocol under FreeBSD? Message-ID: <20020121182133.P33747-100000@bunning.skiltech.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've compiled the KDE2 environment from ports, and it's working fine for the most part. However, I'm trying to access an audio cd via the audiocd:/ protocol in konqueror. It throws back an error message saying "protocol not supported". Google searches haven't given me much to work with, so I thought I'd ask here to see if anyone either has gotten it working, or knows that it CAN'T work. --Wade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 15:27:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from albatross.prod.itd.earthlink.net (albatross.mail.pas.earthlink.net [207.217.120.120]) by hub.freebsd.org (Postfix) with ESMTP id 7BDE537B416 for ; Mon, 21 Jan 2002 15:27:12 -0800 (PST) Received: from dialup-209.244.64.73.dial1.chicago1.level3.net ([209.244.64.73] helo=pegasus) by albatross.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16Snq3-0006rN-00; Mon, 21 Jan 2002 15:26:55 -0800 Message-ID: <006801c1a2d3$1cc73120$328dfea9@pegasus> From: "Bob Giesen" To: "Doug Reynolds" , "freebsd-questions" References: <20020121225559.65B4E48449@wastegate.net> Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 Date: Mon, 21 Jan 2002 17:26:53 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks for the quick reponse. I didn't see the dc option in my "Complete FreeBSD" book, so I didn't think to try that. Is that available in 3.2? I'll give it a try in a little while. Thanks, again, Bob ----- Original Message ----- From: "Doug Reynolds" To: "Bob Giesen" ; "freebsd-questions" Cc: "Bob Giesen (earthlink)" Sent: Monday, January 21, 2002 4:57 PM Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 > On Mon, 21 Jan 2002 16:10:00 -0600, Bob Giesen wrote: > > > > > I have an LNE100TX v4.1 card and FreeBSD v3.2 -- which I'm hoping to get > >to work together. I tried the pn kernel driver (in response to a tip in the > >kernel config file), to no avail. > > I installed one in a friends server, and i used dc0 > > --- > doug reynolds | the maverick | mav@wastegate.net > > PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 15:28:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 5B6EF37B417 for ; Mon, 21 Jan 2002 15:27:19 -0800 (PST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 1E24978306; Tue, 22 Jan 2002 09:57:17 +1030 (CST) Date: Tue, 22 Jan 2002 09:57:17 +1030 From: Greg Lehey To: Doug Poland Cc: questions@freebsd.org Subject: Re: faulty vinum plex, need help please Message-ID: <20020122095717.S4262@wantadilla.lemis.com> References: <20020121145011.A16617@polands.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020121145011.A16617@polands.org> User-Agent: Mutt/1.3.23i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday, 21 January 2002 at 14:50:11 -0600, Doug Poland wrote: > Hi, > > I'm attempting to create a mirrored and striped vinum volume (raid10) > using 4 identical SCSI disks. Here's my /etc/vinum.conf: > > drive a device /dev/da0s2e > drive b device /dev/da1s2e > drive c device /dev/da2s2e > drive d device /dev/da3s2e > > volume dataraid > plex org striped 512k > sd length 4314m drive a > sd length 4314m drive b > sd length 4314m drive c > sd length 4314m drive d > plex org striped 512k > sd length 4314m drive c > sd length 4314m drive d > sd length 4314m drive a > sd length 4314m drive b > > When I do a # vinum list, it reports: > 4 drives: > D a State: up Device /dev/da0s2e Avail: 0/8628 MB (0%) > D b State: up Device /dev/da1s2e Avail: 0/8628 MB (0%) > D c State: up Device /dev/da2s2e Avail: 0/8628 MB (0%) > D d State: up Device /dev/da3s2e Avail: 0/8628 MB (0%) > > 1 volumes: > V dataraid State: up Plexes: 2 Size: 16 GB > > 2 plexes: > P dataraid.p0 S State: up Subdisks: 4 Size: 16 GB > P dataraid.p1 S State: faulty Subdisks: 4 Size: 16 GB > > 8 subdisks: > S dataraid.p0.s0 State: up PO: 0 B Size: 4314 MB > S dataraid.p0.s1 State: up PO: 512 kB Size: 4314 MB > S dataraid.p0.s2 State: up PO: 1024 kB Size: 4314 MB > S dataraid.p0.s3 State: up PO: 1536 kB Size: 4314 MB > S dataraid.p1.s0 State: empty PO: 0 B Size: 4314 MB > S dataraid.p1.s1 State: empty PO: 512 kB Size: 4314 MB > S dataraid.p1.s2 State: empty PO: 1024 kB Size: 4314 MB > S dataraid.p1.s3 State: empty PO: 1536 kB Size: 4314 MB > > > So dataraid plex 1 appears to be faulty. Is this a mis-configuration > on my part? No. > Is it hardware failure? No. > The read/write performance of the vinum volume does not appear to > have degraded, have I just lost the mirroring property? I suspect it was never mirrored. > I'll be thankful for any advice on how to diagnose and fix this situation. The man page (vinum (8)) is your friend: volume name [options] Define a volume with name name. Options are: [snip] setupstate When creating a multi-plex volume, assume that the contents of all the plexes are consistent. This is normally not the case, and correctly you should use the init command to first bring them to a consistent state. In the case of striped and concatenated plexes, however, it does not normally cause problems to leave them inconsistent: when using a volume for a file system or a swap partition, the previous con- tents of the disks are not of interest, so they may be ignored. If you want to take this risk, use this keyword. It will only apply to the plexes defined immediately after the volume in the configuration file. If you add plexes to a volume at a later time, you must integrate them. I'm surprised nobody else came up with this. Since you have now newfs'd your volume, you did the right thing by using 'vinum start', though you could have simply done a 'vinum start dataraid.p1', which probably would also have been faster. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 15:48:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 304F137B402 for ; Mon, 21 Jan 2002 15:48:36 -0800 (PST) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 21 Jan 2002 23:48:35 +0000 (GMT) To: Ray Kohler Cc: Philip Pereira , freebsd-questions@FreeBSD.ORG Subject: Re: Boot Loader? In-Reply-To: Your message of "Mon, 21 Jan 2002 17:51:59 EST." <0a3135548221512FE4@Mail4.mgfairfax.rr.com> Date: Mon, 21 Jan 2002 23:48:35 +0000 From: Ian Dowse Message-ID: <200201212348.aa85001@salmon.maths.tcd.ie> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <0a3135548221512FE4@Mail4.mgfairfax.rr.com>, Ray Kohler writes: >> Currently my system uses the standard MBR to point to the hard >> disk for booting, but I want to go a step further.... >> >> (A) How can I install the 'FreeBSD Boot Loader' at this late >> stage without damaging my current installation? > >Run "disklabel -B ad0" (substitute another disk for ad0 if >appropriate.) You can do this now or after installing linux, it >doesn't matter. The disklabel program is normally used to replace the boot code within the FreeBSD slice, not the MBR (with "dangerously dedicated" disks it does touch the MBR). The utility that you want is "boot0cfg", which installs and configures the "F1 FreeBSD" style MBR boot manager. Just run boot0cfg -Bv ad0 and this will replace the standard MBR code with the boot0 boot manager. Type "man boot0cfg" for more information. Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16: 7:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from c193-150-228-75.cm-upc.chello.se (c193-150-229-75.cm-upc.chello.se [193.150.229.75]) by hub.freebsd.org (Postfix) with ESMTP id A4FA837B402 for ; Mon, 21 Jan 2002 16:07:34 -0800 (PST) Received: by magnolia (8.11.6/8.11.6) id g0LNwhl02080 for freebsd-questions@FreeBSD.ORG; Tue, 22 Jan 2002 00:58:43 +0100 (CET) (envelope-from root) Message-Id: <200201212358.g0LNwhl02080@magnolia> Content-Type: text/plain; charset="iso-8859-1" From: Per olof Ljungmark Organization: Intersonic AB To: freebsd-questions@FreeBSD.ORG Subject: SMP kernel and ES1373 sound card Date: Tue, 22 Jan 2002 00:58:38 +0100 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, I have a 4.4/5 workstation dual PIII/Microstar mbd. If I use it with the SMP kernel the machine hangs completely at fairly regular intervals (about once every half hour) for a minute, then works fine again. The kernel is GENERIC+SMP+pcm. If I use GENERIC with only pcm (no SMP) the problem goes away. Anybody knows about or seen this? Should I change the sound card? TIA dmesg | grep pcm pcm0: port 0xe000-0xe03f irq 10 at device 15.0 on pci0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16: 7:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from c193-150-228-75.cm-upc.chello.se (c193-150-229-75.cm-upc.chello.se [193.150.229.75]) by hub.freebsd.org (Postfix) with ESMTP id D228037B405 for ; Mon, 21 Jan 2002 16:07:36 -0800 (PST) Received: (from root@localhost) by magnolia.i.inter-sonic.com (8.11.6/8.11.6) id g0LJZXJ01767 for freebsd-questions@FreeBSD.ORG; Mon, 21 Jan 2002 20:35:33 +0100 (CET) (envelope-from root) Message-Id: <200201211935.g0LJZXJ01767@magnolia.i.inter-sonic.com> Content-Type: text/plain; charset="iso-8859-1" From: Per olof Ljungmark Organization: Intersonic AB To: freebsd-questions@FreeBSD.ORG Subject: SMP kernel and ES1373 sound card Date: Mon, 21 Jan 2002 20:35:33 +0100 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, I have a 4.4/5 workstation dual PIII/Microstar mbd. If I use it with the SMP kernel the machine hangs completely at fairly regular intervals (about once every half hour) for a minute, then works fine again. The kernel is GENERIC+SMP+pcm. If I use GENERIC with only pcm (no SMP) the problem goes away. Anybody knows about or seen this? Should I change the sound card? TIA dmesg | grep pcm pcm0: port 0xe000-0xe03f irq 10 at device 15.0 on pci0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16:12:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tntpro.com (159-63.suscom-maine.net [207.5.159.63]) by hub.freebsd.org (Postfix) with ESMTP id 07E6337B400 for ; Mon, 21 Jan 2002 16:12:09 -0800 (PST) Received: from celery (celery.tntpro.com [192.168.0.13]) by tntpro.com (8.11.6/8.11.6) with SMTP id g0M0BYp34693; Mon, 21 Jan 2002 19:11:38 -0500 (EST) (envelope-from tony@tntpro.com) From: "tony" To: "Per olof Ljungmark" , Subject: RE: SMP kernel and ES1373 sound card Date: Mon, 21 Jan 2002 19:11:31 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: <200201211935.g0LJZXJ01767@magnolia.i.inter-sonic.com> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG have you tried it with only SMP and no pcm? -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Per olof Ljungmark Sent: Monday, January 21, 2002 2:36 PM To: freebsd-questions@FreeBSD.ORG Subject: SMP kernel and ES1373 sound card Hi all, I have a 4.4/5 workstation dual PIII/Microstar mbd. If I use it with the SMP kernel the machine hangs completely at fairly regular intervals (about once every half hour) for a minute, then works fine again. The kernel is GENERIC+SMP+pcm. If I use GENERIC with only pcm (no SMP) the problem goes away. Anybody knows about or seen this? Should I change the sound card? TIA dmesg | grep pcm pcm0: port 0xe000-0xe03f irq 10 at device 15.0 on pci0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16:15:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id 2F92937B400; Mon, 21 Jan 2002 16:15:51 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0M0Fi528574; Mon, 21 Jan 2002 18:15:44 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0M0Fhh04617; Mon, 21 Jan 2002 18:15:43 -0600 (CST) Date: Mon, 21 Jan 2002 18:15:43 -0600 From: Doug Poland To: Tony Landells Cc: tony , questions@FreeBSD.ORG, grog@FreeBSD.ORG Subject: Re: faulty vinum plex, need help please Message-ID: <20020121181543.A3901@polands.org> References: <200201212311.KAA01827@tungsten.austclear.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200201212311.KAA01827@tungsten.austclear.com.au>; from ahl@austclear.com.au on Tue, Jan 22, 2002 at 10:11:11AM +1100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 10:11:11AM +1100, Tony Landells wrote: > doug@polands.org said: > > So when the subdisks are revived, then the plex will automatically > > come up, or must I start it? Could you speculate as to why this > > happened? I'd like to understand what went wrong and how to avoid/fix > > this in the future. > > The plex will automatically come up when all of its subdisks are up. > > This happened because it's supposed to happen. This is in the vinum > documentation, placed very logically, several pages too late to help > someone who is trying to wing it from the documentation (hark to the > voice of experience!) ;-) In particular, look at the "Gotchas" and > the "start" command. > > Read the documentation all the way through, and try to understand the > examples, and it will all make much more sense. > Should probably do that before a disk fails :p On Tue, Jan 22, 2002 at 09:57:17AM +1030, Greg Lehey wrote: > > > > So dataraid plex 1 appears to be faulty. Is this a mis-configuration > > on my part? > > No. > > > Is it hardware failure? > > No. > > > The read/write performance of the vinum volume does not appear to > > have degraded, have I just lost the mirroring property? > > I suspect it was never mirrored. > > > I'll be thankful for any advice on how to diagnose and fix this situation. > > The man page (vinum (8)) is your friend: > > I'm surprised nobody else came up with this. Since you have now > newfs'd your volume, you did the right thing by using 'vinum start', > though you could have simply done a 'vinum start dataraid.p1', which > probably would also have been faster. > Thanks to all for your help. Afer an hour of disk churning, the second plex came on line. I guess the moral of the story is sophisticated tools in the hands of novices is a dangerous thing :) -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16:26: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id 9DD5C37B405 for ; Mon, 21 Jan 2002 16:25:57 -0800 (PST) Received: from rac4.wam.umd.edu (IDENT:root@rac4.wam.umd.edu [128.8.10.144]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id TAA24826; Mon, 21 Jan 2002 19:25:53 -0500 (EST) Received: from rac4.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac4.wam.umd.edu (8.9.3/8.9.3) with SMTP id TAA19611; Mon, 21 Jan 2002 19:25:53 -0500 (EST) Received: from localhost (gollucci@localhost) by rac4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id TAA19607; Mon, 21 Jan 2002 19:25:52 -0500 (EST) X-Authentication-Warning: rac4.wam.umd.edu: gollucci owned process doing -bs Date: Mon, 21 Jan 2002 19:25:52 -0500 (EST) From: "Philip M. Gollucci" To: ScaryG Cc: Joe & Fhe Barbish , FBSD Questions Subject: Re: How to adduser from script? In-Reply-To: <3C4BEF68.32535.78858E@localhost> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I don't know if this is a good idea, but I have a web based login system. It creates the users in a MySQL database. This is all fine and good, but I want to also add them as system users in master.passwd . It is my understanding that I need to do some kind of setuid script like the one below. Anyone how or where to look. ***************************************************************************** Philip M. Gollucci (p6m7g8) Web-site : http://www.p6m7g8.com E-mail : gollucci@wam.umd.edu Philip@p6m7g8.com Phone : 301.249.6261 (Home) 301.314.3118 (College) Major : Computer Science Minor : Classical & Jazz Performance Current Job : Science, Discovery, & the Universe Webmaster URL: http://www.sdu.umd.edu Resume : http://www.wam.umd.edu/~gollucci/resume.html ***************************************************************************** On Mon, 21 Jan 2002, ScaryG wrote: > > On 21 Jan 2002 at 10:26, Joe & Fhe Barbish wrote: > > > I am building a disaster recovery script. > > I need to add 2 users, backup tape user, > > and remote admin user. > > Is there a command line command that I can do this with? > > I just recently did some tinkering with this, and the following works fine > in a perl script: > > #/usr/bin/perl > > $password = "abc123"; > $shell = "/sbin/nologin"; > $username = "lusername"; > > `echo $password |/usr/sbin/pw adduser -s $shell -m -n > $username -d /home/$username -h 0`; > > Have fun. > > gf > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16:41:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from services.webwarrior.net (overlord-host99.dsl.visi.com [209.98.86.99]) by hub.freebsd.org (Postfix) with ESMTP id 3530F37B400 for ; Mon, 21 Jan 2002 16:41:09 -0800 (PST) Received: from twincat.vladsempire.net (unknown [209.105.45.1]) by services.webwarrior.net (Postfix) with ESMTP id 357D9358 for ; Mon, 21 Jan 2002 18:42:52 -0600 (CST) Received: by twincat.vladsempire.net (Postfix, from userid 1001) id 6DD743882; Mon, 21 Jan 2002 18:41:27 +0000 (GMT) Date: Mon, 21 Jan 2002 18:41:27 +0000 From: Josh Paetzel To: Bob Giesen Cc: Doug Reynolds , freebsd-questions Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 Message-ID: <20020121184127.D279@twincat.vladsempire.net> Mail-Followup-To: Bob Giesen , Doug Reynolds , freebsd-questions References: <20020121225559.65B4E48449@wastegate.net> <006801c1a2d3$1cc73120$328dfea9@pegasus> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <006801c1a2d3$1cc73120$328dfea9@pegasus>; from BobGiesen@earthlink.net on Mon, Jan 21, 2002 at 05:26:53PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 05:26:53PM -0600, Bob Giesen wrote: > Thanks for the quick reponse. I didn't see the dc option in my "Complete > FreeBSD" book, so I didn't think to try that. Is that available in 3.2? > I'll give it a try in a little while. > Thanks, again, > Bob > > ----- Original Message ----- > From: "Doug Reynolds" > To: "Bob Giesen" ; "freebsd-questions" > > Cc: "Bob Giesen (earthlink)" > Sent: Monday, January 21, 2002 4:57 PM > Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 > > > > On Mon, 21 Jan 2002 16:10:00 -0600, Bob Giesen wrote: > > > > > > > > I have an LNE100TX v4.1 card and FreeBSD v3.2 -- which I'm hoping to > get > > >to work together. I tried the pn kernel driver (in response to a tip in > the > > >kernel config file), to no avail. > > > > I installed one in a friends server, and i used dc0 > > > > --- > > doug reynolds | the maverick | mav@wastegate.net > > > > PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB > > I am the unfortunate owner of several LNE100TX cards. They do in fact use the dc driver in 4.x I can't remember if that's the driver they used in 3.x Josh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16:42:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from albatross.prod.itd.earthlink.net (albatross.mail.pas.earthlink.net [207.217.120.120]) by hub.freebsd.org (Postfix) with ESMTP id 3B70A37B400 for ; Mon, 21 Jan 2002 16:42:14 -0800 (PST) Received: from dialup-209.244.64.73.dial1.chicago1.level3.net ([209.244.64.73] helo=pegasus) by albatross.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16Sp0q-0000pM-00; Mon, 21 Jan 2002 16:42:08 -0800 Message-ID: <008001c1a2dd$9ec57f60$328dfea9@pegasus> From: "Bob Giesen" To: "Ray Kohler" , , "Joe Rodrigues" Cc: "freebsd questions" References: <000d01c1a137$30948ec0$f449fea9@tmlp.com> <3C4C406B.D1EFB54F@citystamp.com> <0f59c0554221512FE7@mail7.mgfairfax.rr.com> Subject: Re: Find command Date: Mon, 21 Jan 2002 18:42:05 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Ray Kohler" To: ; "Joe Rodrigues" Cc: "freebsd questions" Sent: Monday, January 21, 2002 4:57 PM Subject: Re: Find command > ... > make that 'find /usr/X11R6 -name \*xinitrc\* -print' > Or, if one disdains the use of backslashes, for lack of knowledge about how they're handled by the executable (or a just, plain, bad memory as in my case), there's a less ambiguous method: find /usr/X11R6 -print | grep xinitrc > -- > Ray Kohler > Hardware, n.: > The parts of a computer system that can be kicked. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16:44:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail8.mgfairfax.rr.com (fe8.southeast.rr.com [24.93.67.55]) by hub.freebsd.org (Postfix) with ESMTP id 0B1D337B400 for ; Mon, 21 Jan 2002 16:44:14 -0800 (PST) Received: from there ([24.163.115.240]) by mail8.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Mon, 21 Jan 2002 17:40:54 -0500 Content-Type: text/plain; charset="iso-8859-1" From: Ray Kohler To: Scott Aitken , freebsd-questions@FreeBSD.ORG Subject: Re: /usr/libexec/ld-elf.so.1: Shared object "libXaw.so.6" not found Date: Mon, 21 Jan 2002 17:44:05 -0500 X-Mailer: KMail [version 1.3.2] References: <20020121130442.17613.qmail@cpdvg100.netaddress.usa.net> In-Reply-To: <20020121130442.17613.qmail@cpdvg100.netaddress.usa.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: <026265440221512FE8@mail8.mgfairfax.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday 22 January 2002 12:04 am, Scott Aitken wrote: > Hi all, > this just started happening, in that cron has successfully run > the following command once a month without a problem: > > /usr/local/bin/cvsup -g -L 2 -P m /root/ports-supfile > > However, the last time cron attempted it, the following error > appeared in the logs. It also appears when I run the above > command at the su# prompt. > > /usr/libexec/ld-elf.so.1: Shared object "libXaw.so.6" not found > > According to pkg_version, CVSup is up to date. > > I'm not running X. Well, that's an X library you're missing there, so if you mean that you don't have X installed, that's your problem. You'll want to rebuild cvsup with the WITHOUT_X11 variable set. or download a staticly-linked, no-X package. I believe John Polstra has them for download but I forget where (maybe somebody else will tell you). -- Ray Kohler Sattinger's Law: It works better if you plug it in. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16:47:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx0.ecxnetwork.net (mx0.ecxnetwork.net [208.144.33.2]) by hub.freebsd.org (Postfix) with ESMTP id BDFC137B400 for ; Mon, 21 Jan 2002 16:47:28 -0800 (PST) Received: from mailsvr.ecx.com ([208.144.33.135]) by mx0.ecxnetwork.net (8.11.3/8.11.3) with ESMTP id g0M0FYi49419 for ; Mon, 21 Jan 2002 16:15:34 -0800 (PST) (envelope-from JHilgeman@ecx.com) Received: by mailsvr.ecx.com with Internet Mail Service (5.5.2653.19) id ; Mon, 21 Jan 2002 16:47:09 -0800 Message-ID: <5D90F61EB6FDD411836500508B137F1A01408A08@mailsvr.ecx.com> From: Jonathan Hilgeman To: "'freebsd-questions@freebsd.org'" Subject: Just downloading tarballs Date: Mon, 21 Jan 2002 16:47:08 -0800 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is there any way I can simply download the TARs of all dependencies of a port without installing them? I have not tried this yet, but I'm thinking that if I was to go into the PHP port, for example, and type make, that it would download and install the dependencies for PHP, but it wouldn't install PHP itself. Am I correct in saying this? If so, is there any way to just download the dependencies. That way I can have them all ready to go when I need to do an install of a package that has a lot of downloads to perform... - Jonathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16:52:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from teak.adhesivemedia.com (teak.adhesivemedia.com [207.202.159.79]) by hub.freebsd.org (Postfix) with ESMTP id 83F7437B402 for ; Mon, 21 Jan 2002 16:52:21 -0800 (PST) Received: from localhost (philip@localhost) by teak.adhesivemedia.com (8.11.6/8.11.6) with ESMTP id g0M0qEK72620; Mon, 21 Jan 2002 16:52:14 -0800 (PST) (envelope-from philip@adhesivemedia.com) Date: Mon, 21 Jan 2002 16:52:14 -0800 (PST) From: Philip Hallstrom To: Jonathan Hilgeman Cc: "'freebsd-questions@freebsd.org'" Subject: Re: Just downloading tarballs In-Reply-To: <5D90F61EB6FDD411836500508B137F1A01408A08@mailsvr.ecx.com> Message-ID: <20020121165052.I69952-100000@teak.adhesivemedia.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I don't know if you can do this directly, but you could use the following with make and some shell scripting to do it: fetch Fetch all of the files needed to build this port from the site(s) listed in MASTER_SITES and PATCH_SITES. See FETCH_CMD and MASTER_SITE_OVERRIDE. fetch-list Show list of files needed to be fetched in order to build the port. pretty-print-run-depends-list pretty-print-build-depends-list Print a list of all the compile and run dependencies, and dependencies of those dependencies. good luck On Mon, 21 Jan 2002, Jonathan Hilgeman wrote: > Is there any way I can simply download the TARs of all dependencies of a > port without installing them? I have not tried this yet, but I'm thinking > that if I was to go into the PHP port, for example, and type make, that it > would download and install the dependencies for PHP, but it wouldn't install > PHP itself. Am I correct in saying this? If so, is there any way to just > download the dependencies. That way I can have them all ready to go when I > need to do an install of a package that has a lot of downloads to perform... > > - Jonathan > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16:54:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailf.telia.com (mailf.telia.com [194.22.194.25]) by hub.freebsd.org (Postfix) with ESMTP id 2084737B400 for ; Mon, 21 Jan 2002 16:54:52 -0800 (PST) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by mailf.telia.com (8.11.6/8.11.6) with ESMTP id g0M0snE29580 for ; Tue, 22 Jan 2002 01:54:49 +0100 (CET) Received: from falcon.midgard.homeip.net (h185n2fls20o913.telia.com [212.181.163.185]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id BAA08004 for ; Tue, 22 Jan 2002 01:54:49 +0100 (CET) Received: (qmail 34120 invoked by uid 1001); 22 Jan 2002 00:54:48 -0000 Date: Tue, 22 Jan 2002 01:54:48 +0100 From: Erik Trulsson To: Jonathan Hilgeman Cc: "'freebsd-questions@freebsd.org'" Subject: Re: Just downloading tarballs Message-ID: <20020122005448.GA34097@student.uu.se> Mail-Followup-To: Jonathan Hilgeman , "'freebsd-questions@freebsd.org'" References: <5D90F61EB6FDD411836500508B137F1A01408A08@mailsvr.ecx.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5D90F61EB6FDD411836500508B137F1A01408A08@mailsvr.ecx.com> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 04:47:08PM -0800, Jonathan Hilgeman wrote: > Is there any way I can simply download the TARs of all dependencies of a > port without installing them? I have not tried this yet, but I'm thinking > that if I was to go into the PHP port, for example, and type make, that it > would download and install the dependencies for PHP, but it wouldn't install > PHP itself. Am I correct in saying this? If so, is there any way to just > download the dependencies. That way I can have them all ready to go when I > need to do an install of a package that has a lot of downloads to perform... 'make fetch-recursive' will fetch all the distfiles for a port and its dependencies without building or installing any of them. -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16:56:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx0.ecxnetwork.net (mx0.ecxnetwork.net [208.144.33.2]) by hub.freebsd.org (Postfix) with ESMTP id 706E837B402 for ; Mon, 21 Jan 2002 16:56:49 -0800 (PST) Received: from mailsvr.ecx.com ([208.144.33.135]) by mx0.ecxnetwork.net (8.11.3/8.11.3) with ESMTP id g0M0Oqi49555; Mon, 21 Jan 2002 16:24:52 -0800 (PST) (envelope-from JHilgeman@ecx.com) Received: by mailsvr.ecx.com with Internet Mail Service (5.5.2653.19) id ; Mon, 21 Jan 2002 16:56:27 -0800 Message-ID: <5D90F61EB6FDD411836500508B137F1A01408A09@mailsvr.ecx.com> From: Jonathan Hilgeman To: "'Erik Trulsson'" Cc: "'freebsd-questions@freebsd.org'" Subject: RE: Just downloading tarballs Date: Mon, 21 Jan 2002 16:56:26 -0800 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Great! Thanks! - Jonathan -----Original Message----- From: Erik Trulsson [mailto:ertr1013@student.uu.se] Sent: Monday, January 21, 2002 4:55 PM To: Jonathan Hilgeman Cc: 'freebsd-questions@freebsd.org' Subject: Re: Just downloading tarballs On Mon, Jan 21, 2002 at 04:47:08PM -0800, Jonathan Hilgeman wrote: > Is there any way I can simply download the TARs of all dependencies of a > port without installing them? I have not tried this yet, but I'm thinking > that if I was to go into the PHP port, for example, and type make, that it > would download and install the dependencies for PHP, but it wouldn't install > PHP itself. Am I correct in saying this? If so, is there any way to just > download the dependencies. That way I can have them all ready to go when I > need to do an install of a package that has a lot of downloads to perform... 'make fetch-recursive' will fetch all the distfiles for a port and its dependencies without building or installing any of them. -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 16:57:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from h216-170-019-170.adsl.navix.net (h216-170-019-170.adsl.navix.net [216.170.19.170]) by hub.freebsd.org (Postfix) with ESMTP id 6F0F037B405 for ; Mon, 21 Jan 2002 16:57:51 -0800 (PST) Received: from there (localhost.adsl.navix.net [127.0.0.1]) by h216-170-019-170.adsl.navix.net (8.11.6/8.11.6) with SMTP id g0M0vnT12839 for ; Mon, 21 Jan 2002 18:57:50 -0600 (CST) (envelope-from phaedrus@alltel.net) Message-Id: <200201220057.g0M0vnT12839@h216-170-019-170.adsl.navix.net> Content-Type: text/plain; charset="iso-8859-1" From: Dave Cantrell Reply-To: phaedrus@alltel.net To: freebsd-questions@FreeBSD.ORG Subject: Re: Latest linux-opera has a bug? Date: Mon, 21 Jan 2002 18:57:48 -0600 X-Mailer: KMail [version 1.3.2] References: In-Reply-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon 21 Jan 02 14:24, Marco wrote: > On Mon, 21 Jan 2002, the wise Joel Dinel spoke, and said: > > > I seem to be experiencing a weird problem with the latest linux-opera > > build (linux-opera-6.0.20020110.1). Basically, the images take forever > > to load. I run Netscape 4.79 & Mozilla 0.9.7 simultaneously, and they > > both load up any page in record time. > > Yes, I had exactly the same problem. I tried to run it on > FreeBSD-4.4-RELEASE. It seemed to work fine exept for all types of > pictures. Ditto on 4.4-STABLE. Except I decided to look at KDE-Konq. We'll decide whether to go back when a stable version of Opera comes out drc -- Dave Cantrell | Contrary to popular belief, UNIX is User Friendly. phaedrus@alltel.net | It's just choosy with whom it makes friends. Lincoln, Nebraska, USA | And currently we have only a nodding acquaintance. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 17: 1:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Mail4.mgfairfax.rr.com (fe4.southeast.rr.com [24.93.67.51]) by hub.freebsd.org (Postfix) with ESMTP id 3471F37B402 for ; Mon, 21 Jan 2002 17:01:50 -0800 (PST) Received: from there ([24.163.115.240]) by Mail4.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Mon, 21 Jan 2002 20:01:56 -0500 Content-Type: text/plain; charset="iso-8859-1" From: Ray Kohler To: Ian Dowse Subject: Re: Boot Loader? Date: Mon, 21 Jan 2002 20:05:00 -0500 X-Mailer: KMail [version 1.3.2] Cc: Philip Pereira , freebsd-questions@FreeBSD.ORG References: <200201212348.aa85001@salmon.maths.tcd.ie> In-Reply-To: <200201212348.aa85001@salmon.maths.tcd.ie> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: <020ff5601011612FE4@Mail4.mgfairfax.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday 21 January 2002 06:48 pm, Ian Dowse wrote: > In message <0a3135548221512FE4@Mail4.mgfairfax.rr.com>, Ray Kohler writes: > >> Currently my system uses the standard MBR to point to the hard > >> disk for booting, but I want to go a step further.... > >> > >> (A) How can I install the 'FreeBSD Boot Loader' at this > >> late stage without damaging my current installation? > > > >Run "disklabel -B ad0" (substitute another disk for ad0 if > >appropriate.) You can do this now or after installing linux, it > >doesn't matter. > > The disklabel program is normally used to replace the boot code > within the FreeBSD slice, not the MBR (with "dangerously > dedicated" disks it does touch the MBR). The utility that you > want is "boot0cfg", which installs and configures the "F1 > FreeBSD" style MBR boot manager. Just run > > boot0cfg -Bv ad0 > > and this will replace the standard MBR code with the boot0 boot > manager. Type "man boot0cfg" for more information. My bad. I just hope the OP didn't go do it already. (Although I've run disklabel on non-dedicated disks before and had no problems from it. Huh.) -- Ray Kohler Every journalist has a novel in him, which is an excellent place for it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 17: 8:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from creme-brulee.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 4BE4537B400 for ; Mon, 21 Jan 2002 17:08:31 -0800 (PST) Received: from shumai.marcuscom.com (marcus@shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.11.6/8.11.6) with ESMTP id g0M17ZZ63707; Mon, 21 Jan 2002 20:07:35 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: pw useradd -D command From: Joe Clarke To: Joe & Fhe Barbish Cc: FBSD Questions In-Reply-To: References: Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/1.0.1 Date: 21 Jan 2002 20:08:45 -0500 Message-Id: <1011661726.85870.10.camel@shumai.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 2002-01-21 at 17:58, Joe & Fhe Barbish wrote: > This sets up a default /etc/pw.conf file where the > defaults can be edited. Man page says pw will create > hone directory /usr/home/userid and copy over .files > from /usr/share/skel. When I enter pw useradd tom > followed by pw usershow tom it shows tom's home as > /home/tom which is what I expected. But when I check > out /usr/home/ there is no tom directory. When I login > as tom I get message saying logged in at ./ which is wrong. > Am I doing some thing wrong, or is this really a bug in > pw that needs to be reported? Are you sure /home exists as a symlink to /usr/home? Perhaps, it's setting tom's home to /home/tom when /home doesn't really exist. Joe > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 17:14:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx0.ecxnetwork.net (mx0.ecxnetwork.net [208.144.33.2]) by hub.freebsd.org (Postfix) with ESMTP id BC23437B416 for ; Mon, 21 Jan 2002 17:14:10 -0800 (PST) Received: from mailsvr.ecx.com ([208.144.33.135]) by mx0.ecxnetwork.net (8.11.3/8.11.3) with ESMTP id g0M0gGi49794 for ; Mon, 21 Jan 2002 16:42:16 -0800 (PST) (envelope-from JHilgeman@ecx.com) Received: by mailsvr.ecx.com with Internet Mail Service (5.5.2653.19) id ; Mon, 21 Jan 2002 17:13:51 -0800 Message-ID: <5D90F61EB6FDD411836500508B137F1A01408A0A@mailsvr.ecx.com> From: Jonathan Hilgeman To: "'freebsd-questions@freebsd.org'" Subject: Uninstalling Programs From Source Date: Mon, 21 Jan 2002 17:13:50 -0800 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I don't think this is FreeBSD-specific, but I installed PHP from source a few months back, and now I'm a little lost on how to uninstall it. Installing it was simple enough, but I just don't know how to uninstall something done from source. From now on - nothing but ports. :) Thanks in advance! - Jonathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 17:33:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id 7A3B437B402 for ; Mon, 21 Jan 2002 17:33:55 -0800 (PST) Received: from dialup-65.56.133.100.dial1.chicago1.level3.net ([65.56.133.100] helo=pegasus) by gull.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16Spou-0005bB-00; Mon, 21 Jan 2002 17:33:53 -0800 Message-ID: <001501c1a2e4$d975be20$328dfea9@pegasus> From: "Bob Giesen" To: "Doug Reynolds" , "freebsd-questions" References: <20020121225559.65B4E48449@wastegate.net> Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 Date: Mon, 21 Jan 2002 19:33:17 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Well, I just tried it, and it didn't seem to do anything. (Nothing in dmesg or ifconfig -a...) I didn't see anything in /sys/pci that looked like it should be an option, either. (I'm guessing I'd find an if_dc.c file, or something like that, along w/ an associated header file.) I did another search on Google and found the dc(4) man page, which stated that that driver first appeared in FreeBSD in v4.0. Does anyone know if it will work in 3.2 -- and, if it can (or even might), where I can find the driver's source (other than in a full-blown 4.x download), so that I might give it a try? Thanks, again. - Bob ----- Original Message ----- From: "Doug Reynolds" To: "Bob Giesen" ; "freebsd-questions" Cc: "Bob Giesen (earthlink)" Sent: Monday, January 21, 2002 4:57 PM Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 > On Mon, 21 Jan 2002 16:10:00 -0600, Bob Giesen wrote: > > > > > I have an LNE100TX v4.1 card and FreeBSD v3.2 -- which I'm hoping to get > >to work together. I tried the pn kernel driver (in response to a tip in the > >kernel config file), to no avail. > > I installed one in a friends server, and i used dc0 > > --- > doug reynolds | the maverick | mav@wastegate.net > > PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 17:48:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 04F5F37B400 for ; Mon, 21 Jan 2002 17:48:41 -0800 (PST) Received: from gateway ([63.70.155.45]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com; Mon, 21 Jan 2002 20:51:51 -0500 From: "Joe & Fhe Barbish" To: "Joe Clarke" Cc: "FBSD Questions" Subject: RE: pw useradd -D command Date: Mon, 21 Jan 2002 20:48:37 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <1011661726.85870.10.camel@shumai.marcuscom.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have other user id's added with adduser that are in /usr/home/userid. When using pw it makes the entry in the passwd file ok with /home/userid but does not create /user/home/userid. I looked for it. This is easy to test for your self. Pw -D then pw adduser tom then pw showuser tom them cd /usr/home/ them ls and look for tom. You may want to edit /etc/pw.conf Give it a try and let me know. Thanks Joe -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Joe Clarke Sent: Monday, January 21, 2002 8:09 PM To: Joe & Fhe Barbish Cc: FBSD Questions Subject: Re: pw useradd -D command On Mon, 2002-01-21 at 17:58, Joe & Fhe Barbish wrote: > This sets up a default /etc/pw.conf file where the > defaults can be edited. Man page says pw will create > hone directory /usr/home/userid and copy over .files > from /usr/share/skel. When I enter pw useradd tom > followed by pw usershow tom it shows tom's home as > /home/tom which is what I expected. But when I check > out /usr/home/ there is no tom directory. When I login > as tom I get message saying logged in at ./ which is wrong. > Am I doing some thing wrong, or is this really a bug in > pw that needs to be reported? Are you sure /home exists as a symlink to /usr/home? Perhaps, it's setting tom's home to /home/tom when /home doesn't really exist. Joe > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 17:51:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from poontang.schulte.org (poontang.schulte.org [209.134.156.197]) by hub.freebsd.org (Postfix) with ESMTP id 5FF4837B402 for ; Mon, 21 Jan 2002 17:51:46 -0800 (PST) Received: from tarmap.nospam.schulte.org (tarmap.schulte.org [209.134.156.198]) by poontang.schulte.org (Postfix) with ESMTP id 0B64AD148C; Mon, 21 Jan 2002 19:51:45 -0600 (CST) Message-Id: <5.1.0.14.0.20020121194953.00be5fe8@pop3s.schulte.org> X-Sender: (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Mon, 21 Jan 2002 19:51:41 -0600 To: "Joe & Fhe Barbish" , "Joe Clarke" From: Christopher Schulte Subject: RE: pw useradd -D command Cc: "FBSD Questions" In-Reply-To: References: <1011661726.85870.10.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 08:48 PM 1/21/2002 -0500, Joe & Fhe Barbish wrote: >I have other user id's added with adduser that are >in /usr/home/userid. When using pw it makes the entry >in the passwd file ok with /home/userid but does not >create /user/home/userid. I looked for it. -m This option instructs pw to attempt to create the user's home directory. While primarily useful when adding a new account with useradd, this may also be of use when moving an existing user's home directory elsewhere on the filesys- tem. The new home directory is populated with the contents of the skeleton directory, which typically contains a set of shell configuration files that the user may personalize to taste. When -m is used on an account with usermod, existing configuration files in the user's home directory are not overwritten from the skeleton files. --chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 17:52:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gaia.host4u.net (gaia.host4u.net [209.150.128.48]) by hub.freebsd.org (Postfix) with ESMTP id 24BE637B405 for ; Mon, 21 Jan 2002 17:52:21 -0800 (PST) Received: from andre (bricks.fastdns.net [216.71.43.117]) by gaia.host4u.net (8.8.5/8.8.5) with SMTP id TAA22482 for ; Mon, 21 Jan 2002 19:15:49 -0600 Message-ID: <19df01c1a2e6$f30bd020$a50410ac@olmct.net> Reply-To: "Andre` Niel Cameron" From: "Andre` Niel Cameron" To: Subject: MySQL Trouble PLEASE help! Date: Mon, 21 Jan 2002 20:48:54 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2462.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2462.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, ok here is my problem. I created a DB added the user. Granted all privileges and when I try to use it I get this error: You have new mail in /var/spool/mail/root [root@hs4 thegamersoutlet]# mysql -uthegamersoutlet -psinbumi users < users.sql ERROR 1142 at line 11: create command denied to user: 'thegamersoutlet@localhost' for table 'nuke_authors' [root@hs4 thegamersoutlet]# Does anyone have any Ideas? Here is my mysql transcript: mysql> grant all privileges on users to thegamersoutlet@"%" identified by 'shibumi'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) I even restarted mysql as a last shot!! Please help any body? Regards, André C. Technical Support Ô¿Ô¬ ---------------------------------------------------------------------------- - Visit our support manual at http://supportmanual.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 18: 0:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from roc-66-66-72-6.rochester.rr.com (roc-66-66-72-6.rochester.rr.com [66.66.72.6]) by hub.freebsd.org (Postfix) with ESMTP id A5B8337B435 for ; Mon, 21 Jan 2002 18:00:10 -0800 (PST) Received: by roc-66-66-72-6.rochester.rr.com (Postfix, from userid 1000) id 22B57901A21; Mon, 21 Jan 2002 21:00:09 -0500 (EST) Date: Mon, 21 Jan 2002 21:00:09 -0500 From: mpd To: Jonathan Hilgeman Cc: questions@freebsd.org Subject: Re: Uninstalling Programs From Source Message-ID: <20020121210009.A82325@rochester.rr.com> References: <5D90F61EB6FDD411836500508B137F1A01408A0A@mailsvr.ecx.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5D90F61EB6FDD411836500508B137F1A01408A0A@mailsvr.ecx.com>; from JHilgeman@ecx.com on Mon, Jan 21, 2002 at 05:13:50PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 05:13:50PM -0800, Jonathan Hilgeman wrote: > I don't think this is FreeBSD-specific, but I installed PHP from source a > few months back, and now I'm a little lost on how to uninstall it. > Installing it was simple enough, but I just don't know how to uninstall > something done from source. From now on - nothing but ports. :) Thanks in > advance! If there isn't a script that uninstalls everything for you, then you get the fun (read: odious) task of finding the files and deleting them by hand. Just one more reason to stick to the ports. > > - Jonathan mike -- ___________________________________________________________ "SO YOU SEE, AMMONIA IS TRULY IS OWN BEST FRIEND!!!" - Little Girl from "THE FORBIDDEN CANDY" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 18: 4:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gaia.host4u.net (gaia.host4u.net [209.150.128.48]) by hub.freebsd.org (Postfix) with ESMTP id 96B0E37B400 for ; Mon, 21 Jan 2002 18:04:41 -0800 (PST) Received: from andre (bricks.fastdns.net [216.71.43.117]) by gaia.host4u.net (8.8.5/8.8.5) with SMTP id TAA23782; Mon, 21 Jan 2002 19:28:05 -0600 Message-ID: <1a0301c1a2e8$a9a54ea0$a50410ac@olmct.net> Reply-To: "Andre` Niel Cameron" From: "Andre` Niel Cameron" To: "Christian Weihs" Cc: References: <19df01c1a2e6$f30bd020$a50410ac@olmct.net> <3C4CC797.5020306@whitey.at> Subject: Re: MySQL Trouble PLEASE help! Date: Mon, 21 Jan 2002 21:01:10 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2462.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2462.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Hi, > I don't know MySQL much myself but don't you have to grant > users rights directly on tables? I granted all rights to the DB that should cover all tables. Andre. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 18:13:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.22.40]) by hub.freebsd.org (Postfix) with ESMTP id 374EC37B400 for ; Mon, 21 Jan 2002 18:13:08 -0800 (PST) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.11.3/8.11.3) with ESMTP id g0M2D1i78404; Mon, 21 Jan 2002 21:13:01 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20020119205810.B17795@xs4all.nl> References: <20020119205810.B17795@xs4all.nl> Date: Mon, 21 Jan 2002 21:13:00 -0500 To: rene@xs4all.nl, questions@FreeBSD.ORG From: Garance A Drosihn Subject: Re: what is a good language for system administration? Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: MIMEDefang 2.1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 8:58 PM +0100 1/19/02, rene@xs4all.nl wrote: >So I've learned how to do basic scripting in /bin/sh. But boy-oh-boy >is that language arcane. ;-) > >What other language do you guys advise for system administration >tasks... I am sure that you'll get different answers from different people! For simple stuff, 'sh' plus a few unix commands is good enough. Once you get a little more complicated, I would go with perl, ruby, or python. Before I learned perl, I did some fairly clever and elaborate things in awk, but I now consider that to have been the wrong choice. I would not use Java or PHP for the kinds of things which I consider "system admin" tasks. -- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 18:22:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id E950D37B402 for ; Mon, 21 Jan 2002 18:22:29 -0800 (PST) Received: from hades.hell.gr (patr530-b165.otenet.gr [212.205.244.173]) by mailsrv.otenet.gr (8.11.5/8.11.5) with ESMTP id g0M2MP415971; Tue, 22 Jan 2002 04:22:27 +0200 (EET) Received: by hades.hell.gr (Postfix, from userid 1001) id 41AC434; Tue, 22 Jan 2002 04:22:24 +0200 (EET) Date: Tue, 22 Jan 2002 04:22:23 +0200 From: Giorgos Keramidas To: ann kok Cc: questions@FreeBSD.org Subject: Re: crontab to backup mail in date format Message-ID: <20020122022223.GB3900@hades.hell.gr> References: <20020117015810.GB20298@hades.hell.gr> <20020121204723.40222.qmail@web20103.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020121204723.40222.qmail@web20103.mail.yahoo.com> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 2002-01-21 12:47:23, ann kok wrote: > > AFTER SED > [root@mail /backup]# ls -1 *backmail.tar.gz | sort -r | sed -e 1,3d > 221428 2002-01-17backmail.tar.gz > 220500 2002-01-13backmail.tar.gz > 217924 2001-12-31backmail.tar.gz > 215380 2002-01-15backmail.tar.gz > 214400 2002-01-16backmail.tar.gz > 187880 2002-01-07backmail.tar.gz > 0 2002-01-20backmail.tar.gz Your ls is aliased to something: hades!charon:[/tmp]% /bin/ls -1 0/ mutt-hades-3900-20 screens/ ssh-FkZb0108/ The -1 option of ls(1) will only print *one* column of data. Yours prints the size of the file too, which means you probably have `ls' aliased to `ls -s'. The size column in front of the filename makes sort behave in the strange way you have noticed. Since sort does not know you need to sort everything `after the first space'. Try using /bin/ls as the listing command, which will not be affected by any aliases you happen to have at the moment. -- Giorgos Keramidas . . . . . . . . . keramida@{ceid.upatras.gr,freebsd.org} FreeBSD Documentation Project . . . http://www.freebsd.org/docproj/ FreeBSD: The power to serve . . . . http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 18:29:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.22.40]) by hub.freebsd.org (Postfix) with ESMTP id 927BC37B402 for ; Mon, 21 Jan 2002 18:29:48 -0800 (PST) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.11.3/8.11.3) with ESMTP id g0M2TXi24306; Mon, 21 Jan 2002 21:29:33 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20020120172600.20898d27.erichey2@attbi.com> References: <20020120172600.20898d27.erichey2@attbi.com> Date: Mon, 21 Jan 2002 21:29:32 -0500 To: Collins Richey , bsd From: Garance A Drosihn Subject: Re: lpstat connection refused Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: MIMEDefang 2.1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 5:26 PM -0700 1/20/02, Collins Richey wrote: >I managed to setup my printer (laserjet) using the samples in the >handbook, and it is working for both plain text and .ps files. > >Whenever I execute 'lpstat' or 'lpstat -p', I get > > lpstat: Unable to connect to server: Connection refused > >How can I fix this? I am not sure why you're using 'lpstat', as that is not installed as part of the base freebsd OS. If you are using the base OS, then you would want to use 'lpq -Pqname', where 'qname' is the name of the print queue that you want to check. On the other hand, you obviously *have* some version of lpstat installed, so it might be that you are using one of the alternate print-systems available via ports. This would most likely be CUPS or lprNG. If you have installed one of those, then which one are you running? -- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 18:43:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta02ps.bigpond.com (mta02ps.bigpond.com [144.135.25.134]) by hub.freebsd.org (Postfix) with ESMTP id B28D737B400 for ; Mon, 21 Jan 2002 18:43:31 -0800 (PST) Received: from win2000 ([144.135.25.87]) by mta02ps.bigpond.com (Netscape Messaging Server 4.15) with SMTP id GQBJWC00.BIR; Tue, 22 Jan 2002 12:50:36 +1000 Received: from CPE-203-45-117-202.nsw.bigpond.net.au ([203.45.117.202]) by psmam07.mailsvc.email.bigpond.com(MailRouter V3.0h 119/1028405); 22 Jan 2002 12:43:29 Message-ID: <001301c1a2ef$69359fd0$c601a8c0@win2000> From: "Danny" To: "Franzen, Jon" Cc: References: Subject: Re: Printer problem - Canon BJC-1000 - FreeBSD 4.4 Date: Tue, 22 Jan 2002 13:49:28 +1100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, have you tried using apsfilter to help you configuring the printer. I used apsfilter to setup my cannon BJC 4200 and it works. Go to www.freebsd.org/ports and do a search on "apsfilter" ----- Original Message ----- From: "Franzen, Jon" To: Sent: Tuesday, January 22, 2002 1:51 AM Subject: Printer problem - Canon BJC-1000 - FreeBSD 4.4 > I'm a new user, I can't get "lptest > /dev/lpt0" or any of the other > functionality to work with my BJC-1000 printer. Absolutely nothing happens. > I think I've followed all the instructions found in many sources. > > Is any one else having this problem. > > Help! > > thanks. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 18:44:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id 17E8237B404 for ; Mon, 21 Jan 2002 18:44:11 -0800 (PST) Received: from plato ([62.253.84.23]) by mta01-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20020122024409.QZQX9422.mta01-svc.ntlworld.com@plato> for ; Tue, 22 Jan 2002 02:44:09 +0000 Message-Id: <3.0.5.32.20020122024753.0079e910@mail.virgin.net> X-Sender: ecliptica.ww@mail.virgin.net (Unverified) X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32) Date: Tue, 22 Jan 2002 02:47:53 +0000 To: freebsd-questions@FreeBSD.ORG From: Charlie Brewster Subject: FreeBSD 4.4 - ATAPI-CDROM won't mount Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG My FreeBSD box has a CDROM drive being recognised as /dev/acd0c "dmesg" shows: acd0: CDROM at ata0-slave using PIO4 "uname -a" gives: FreeBSD 4.4-RELEASE Sun Jan 20 23:06:54 GMT 2002 root@/usr/obj/usr/src/sys/GENERIC i386 The machine is a P300 with 128 Mbytes RAM. FreeBSD is the only operating system. With version 4.4 when I try to mount the CDROM as root immediately after booting I get the following: # mount /cdrom cd9660: /dev/acd0c: Device busy #umount /cdrom umount: /cdrom: not currently mounted I noticed this problem originally with FreeBSD 4.0, although it may only have started after I installed the Linux emulator. After upgrading by cvsup to 4.1 and I found the CDROM worked OK to start with, but failed as above after I installed the Linux emulator. With versions 4.2 and 4.3 the CDROM seemed to work OK although I didn't try invoking the Linux emulator in either case. With 4.4 it fails consistently and the Linux emulator has never been run since the upgraded OS was installed. I looked in the TODO files in the isofs source directory and tried "mount -t isofs -o -norrip /dev/acdoc /cdrom" which might or might not have done the trick had "Rockridge Extensions" been the problem, but that just gives: mount: exec mount_isofs not found in /sbin /usr/sbin No such file or directory. Is anyone aware of any recent changes which might have been incorporated into 4-STABLE or 4-CURRENT which might resolve this problem? Is there anything I can run to diagnose it further? Many thanks for any help. Charles To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 18:45:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id A0DD737B400 for ; Mon, 21 Jan 2002 18:45:11 -0800 (PST) Received: from dialup-63.208.68.253.dial1.chicago1.level3.net ([63.208.68.253] helo=pegasus) by gull.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16Sqvo-0005IS-00; Mon, 21 Jan 2002 18:45:04 -0800 Message-ID: <003a01c1a2ee$cb682200$328dfea9@pegasus> From: "Bob Giesen" To: "Jamaal Sanford" , "freebsd-questions" References: Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 Date: Mon, 21 Jan 2002 20:45:02 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks, Jamal! I retrieved the al code and will give it a try. Stay tuned... :-) - Bob ----- Original Message ----- From: "Jamaal Sanford" To: "Bob Giesen" Sent: Monday, January 21, 2002 8:11 PM Subject: RE: Linksys LNE10TX v4.1, FreeBSD v3.2 > I've been using the LNE100TX series since FreeBSD v4.3. The > drivers for FreeBSD were included on the driver disk that shipped with the > product. However, I used the "dc" driver and it works fine. The 3.x of > FreeBSD uses the ADMtek drivers I think. Here's something you may find > interesting from the readme file included on the disk. > > > A. Get source Code and produce a binary code > ============================================= > Step 1 : Get the source code(if_al.c and if_alreg.h) from the following site > > http://www.freebsd.org/~wpaul/ADMtek/3.0 > > Step 2 : Build compiler environment on your FreeBSD system. > > Step 3 : Compile source code to produce a binary code. > > > ** Note ** > It will work with either FreeBSD 3.2 or 3.3. If you have 3.3-RELEASE, > replace /sys/pci/if_al.c and /sys/pci/if_alreg.h with the new versions > from the web site, then just compile a new kernel. > > For FreeBSD-current, the driver is already there: you can install a > -current snapshot from: > > ftp://current.freebsd.org:/pub/FreeBSD/snapshots/i386/4.0-19991012-CURRENT > > Jamaal Sanford > > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Bob Giesen > Sent: Monday, January 21, 2002 5:10 PM > To: freebsd-questions > Cc: Bob Giesen (earthlink) > Subject: Linksys LNE10TX v4.1, FreeBSD v3.2 > > > > I have an LNE100TX v4.1 card and FreeBSD v3.2 -- which I'm hoping to get > to work together. I tried the pn kernel driver (in response to a tip in the > kernel config file), to no avail. > In search of an answer (via Google), I found a page > (http://www.linksys.com/faqs/default.asp?fqid=27) which recommended trying > the DEC (de) kernel driver or else the pn code (if_pn.c & if_pnreg.h) > supplied via that page. I tried both (separately and together), to no > avail. When I boot, it seems that the PCI probe isn't even finding the NIC; > there's no line in the dmesg output that refers to pn0, de0... or anything > else that even remotely looks like it might be the NIC. > Just in case it was a case of a persnickety probe, I changed the > positions of my NIC and the only other PCI card I have installed (Creative > SB PCI 512 sound card), moving the NIC to the first slot (next to the AGP > slot, where the sound card used to live), also to no avail. (FYI, the AGP > slot houses the video card and my only ISA slot holds the modem.) > I've done some searching in the archives, here, looking for an answer, > but couldn't find one. Now, I wonder (1) if my card will work with FreeBSD > v3.2 and, if so, (2) where can I find the driver code to make it possible? > Any help that you can provide will be much appreciated -- since it might > save me much, much time in upgrading my FreeBSD -- or the cost of another, > supported card. Thanks in advance. > - Bob > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 19:21: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id BCBDC37B400 for ; Mon, 21 Jan 2002 19:21:02 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0M3L0590239; Mon, 21 Jan 2002 21:21:00 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0M3L1e15858; Mon, 21 Jan 2002 21:21:01 -0600 (CST) Date: Mon, 21 Jan 2002 21:21:01 -0600 From: Doug Poland To: Danny Pansters Cc: questions@freebsd.org Subject: Re: Mozilla plugins; Windows Media, QuickTime, Java2 Message-ID: <20020121212100.A15392@polands.org> References: <200201210445.XAA9379861@shell.TheWorld.com> <20020121204545.MAMV16766.fepD.post.tele.dk@there> <20020121150121.A18961@polands.org> <20020122011548.7E1CB24DFB@mail.ricin.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020122011548.7E1CB24DFB@mail.ricin.net>; from danny@ricin.com on Tue, Jan 22, 2002 at 02:15:57AM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 02:15:57AM +0100, Danny Pansters wrote: > Doug said: > > 2) Fonts are messed up in one of my favorite applets > > (http://spaceflight.nasa.gov/realdata/sightings/SSapplications/Post/JavaSSOP/JavaSSOP.html) > > Just to let you know, konqueror 2.2 with "native" (= still compiled > with the help of the first compiled linux version) jdk1.3 (i think it > is... the one in par or behind linux ports anyay) also gives somewhat > chinese looking fonts there.... > must have to do with the linux jdk1.3, not mozilla. I bet the java@freebsd guys would know the answer to this. -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 19:28:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id 2812437B43E for ; Mon, 21 Jan 2002 19:28:26 -0800 (PST) Received: from SAGEONE (adsl-64-219-30-193.dsl.crchtx.swbell.net [64.219.30.193]) by sage-american.com (8.9.3/8.9.3) with SMTP id VAA20897 for ; Mon, 21 Jan 2002 21:28:25 -0600 (CST) Message-Id: <3.0.5.32.20020121212823.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Mon, 21 Jan 2002 21:28:23 -0600 To: freebsd-questions@freebsd.org From: jacks@sage-american.com Subject: Perl5 Script Debug Help Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a script that under BSDi does a neat summary of users. I wonder if anyone will take a look to see how this script may be adapted to run on FBSD 4.4-stable. It doesn't get very far & dies at line 4 for starters, which is: my($pwdfile) = (getpwuid($>))[7] . '/etc/passwd'; Not a very good start I know, so don't know how many more things need tweaking. **************************************************************************** **************** #!/usr/bin/perl5 my(@pwent,$ftppriv,$homedir,$quota); my($pwdfile) = (getpwuid($>))[7] . '/etc/passwd'; open (PWDFILE, $pwdfile) or die('Could not open password file'); print <<'HEAD'; UserName FullName FTP Home Directory Quota E-mail Quota ---------------- ------------------------- ------------------------------ ----- ------------ HEAD $~ = 'STDOUT'; while (@pwent = split(/:/,)) { chomp $pwent[6]; @junk = split(/\|/, $pwent[6]); #print "[", $pwent[6], "] ", "<", scalar(@junk), "> ", "{", $junk[0], "} {", $junk[1], "}\n"; ($ftppriv,$quota) = split(/,/,$junk[0]); if (!defined $junk[1]) { $email_quota = "none"; }elsif ($junk[1] =~ /mail,(\d+)/) { $email_quota = $1 . " megs"; } elsif ($junk[1] =~ /mail/) { $email_quota = "unlimited"; } if ($ftppriv ne 'ftp') { $homedir = '(No FTP Privileges)'; } else { $homedir = $pwent[5]; } if (!$quota =~ /^\d+$/) { $quota = 'none'; } write; } format STDOUT = @<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @<<<< @<<<<<<<<< $pwent[0] , $pwent[4] , $homedir , $quota, $email_quota . Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 19:40: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fedde.littleton.co.us (cfedde.dsl.frii.net [216.17.139.141]) by hub.freebsd.org (Postfix) with ESMTP id BABB837B404 for ; Mon, 21 Jan 2002 19:39:59 -0800 (PST) Received: from fedde.littleton.co.us (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.6/8.11.4) with ESMTP id g0M3du821086; Mon, 21 Jan 2002 20:39:56 -0700 (MST) Message-Id: <200201220339.g0M3du821086@fedde.littleton.co.us> To: jacks@sage-american.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Perl5 Script Debug Help In-Reply-To: <3.0.5.32.20020121212823.01831ca0@mail.sage-american.com> From: Chris Fedde Date: Mon, 21 Jan 2002 20:39:56 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002 21:28:23 -0600 jacks@sage-american.com wrote: +------------------ | I have a script that under BSDi does a neat summary of users. I wonder if | anyone will take a look to see how this script may be adapted to run on | FBSD 4.4-stable. It doesn't get very far & dies at line 4 for starters, | which is: | my($pwdfile) = (getpwuid($>))[7] . '/etc/passwd'; +------------------ After changing the line above to my($pwdfile) = '/etc/passwd'; the script wored fine for me. What error message is being generated? -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 19:42:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from uce55.uchaswv.edu (uce55.uchaswv.edu [12.4.161.9]) by hub.freebsd.org (Postfix) with ESMTP id 08D2C37B400 for ; Mon, 21 Jan 2002 19:42:18 -0800 (PST) Received: from there ([172.16.32.103]) by uce55.uchaswv.edu (8.9.3 (PHNE_22672)/8.9.3) with SMTP id WAA25771 for ; Mon, 21 Jan 2002 22:45:13 -0500 (EST) Message-Id: <200201220345.WAA25771@uce55.uchaswv.edu> Content-Type: text/plain; charset="iso-8859-1" From: Nathan Mace To: freebsd-questions@freebsd.org Subject: smbfs and freebsd Date: Mon, 21 Jan 2002 22:42:24 -0500 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG does freebsd have support for smbfs? i seem to remember reading somewhere that either it doesn't or that it does but it's of beta quality? can anyone point me in the right direction? thanks please cc the replies to me nathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 19:46: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id 22C2937B400 for ; Mon, 21 Jan 2002 19:46:01 -0800 (PST) Received: from SAGEONE (adsl-64-219-30-193.dsl.crchtx.swbell.net [64.219.30.193]) by sage-american.com (8.9.3/8.9.3) with SMTP id VAA23416; Mon, 21 Jan 2002 21:45:57 -0600 (CST) Message-Id: <3.0.5.32.20020121214555.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Mon, 21 Jan 2002 21:45:55 -0600 To: Chris Fedde From: jacks@sage-american.com Subject: Re: Perl5 Script Debug Help Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <200201220339.g0M3du821086@fedde.littleton.co.us> References: <3.0.5.32.20020121212823.01831ca0@mail.sage-american.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG WoW! That's ALL it TOOK! It works for me too now.... thanks, Chris! At 08:39 PM 1.21.2002 -0700, Chris Fedde wrote: >On Mon, 21 Jan 2002 21:28:23 -0600 jacks@sage-american.com wrote: > +------------------ > | I have a script that under BSDi does a neat summary of users. I wonder if > | anyone will take a look to see how this script may be adapted to run on > | FBSD 4.4-stable. It doesn't get very far & dies at line 4 for starters, > | which is: > | my($pwdfile) = (getpwuid($>))[7] . '/etc/passwd'; > +------------------ > >After changing the line above to > > my($pwdfile) = '/etc/passwd'; > >the script wored fine for me. >What error message is being generated? > >-- > Chris Fedde > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 19:49:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f58.law7.hotmail.com [216.33.237.58]) by hub.freebsd.org (Postfix) with ESMTP id 752A837B405 for ; Mon, 21 Jan 2002 19:49:48 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 21 Jan 2002 19:49:44 -0800 Received: from 63.170.174.187 by lw7fd.law7.hotmail.msn.com with HTTP; Tue, 22 Jan 2002 03:49:44 GMT X-Originating-IP: [63.170.174.187] From: "Jon Larssen" To: freebsd-questions@freebsd.org Subject: Long user names Date: Tue, 22 Jan 2002 03:49:44 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Jan 2002 03:49:44.0875 (UTC) FILETIME=[D47E3FB0:01C1A2F7] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I've been charged with the implementation here at my company of a company-wide single-sign-in (or login), much like MS Passport is. The problem is that the designers decided to use the "global" usernames of the form @. For instance, my network username would be: jon@noc.example.com The rationale is very simple: give the users a login name they can remember, make them "pretty" and human readable, and, above all, make them unique. You know, we actually have jon@example.com and jon@noc.example.com, so both of us need unique usernames. The designers wanted to have the email addresses for login names, not something like jlarssen21... Given the limit on FreeBSD 16 characters per username can anyone give me a counter proposal to those system designer guys? (I admit that the whole email-address-as-username looks good, but I think I'll have trouble integrating it into the network.) I'm very open to ideas at this point. Best regards, Jon. PS. How is this related to FreeBSD? Because in a couple of FreeBSD servers we'll have the company-wide user directory (replicated LDAP), email services (SMTP & IMAP) and a Squid cache/proxy. Oh, this is a 96% Windows based network. _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 19:52:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out0.mx.nwbl.wi.voyager.net (out0.mx.nwbl.wi.voyager.net [169.207.1.78]) by hub.freebsd.org (Postfix) with ESMTP id DBFAE37B405 for ; Mon, 21 Jan 2002 19:52:14 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out0.mx.nwbl.wi.voyager.net (8.11.4/8.11.4/1.7) with ESMTP id g0M3qWg43055; Mon, 21 Jan 2002 21:52:32 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0M3qDS17895; Mon, 21 Jan 2002 21:52:13 -0600 (CST) Date: Mon, 21 Jan 2002 21:52:13 -0600 From: Doug Poland To: Nathan Mace Cc: freebsd-questions@freebsd.org Subject: Re: smbfs and freebsd Message-ID: <20020121215213.A17592@polands.org> References: <200201220345.WAA25771@uce55.uchaswv.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200201220345.WAA25771@uce55.uchaswv.edu>; from nmace85@yahoo.com on Mon, Jan 21, 2002 at 10:42:24PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 10:42:24PM -0500, Nathan Mace wrote: > does freebsd have support for smbfs? i seem to remember reading somewhere > that either it doesn't or that it does but it's of beta quality? can anyone > point me in the right direction? thanks > I've been using it for several months with absolutely no problems. You'll need to configure a custom kernel then install the smbfs-1.4.1 port on 4.4-RELEASE or better. -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 19:56:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id EA6D137B404 for ; Mon, 21 Jan 2002 19:56:06 -0800 (PST) Received: from SAGEONE (adsl-64-219-30-193.dsl.crchtx.swbell.net [64.219.30.193]) by sage-american.com (8.9.3/8.9.3) with SMTP id VAA25052; Mon, 21 Jan 2002 21:56:03 -0600 (CST) Message-Id: <3.0.5.32.20020121215600.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Mon, 21 Jan 2002 21:56:00 -0600 To: "Jon Larssen" , freebsd-questions@FreeBSD.ORG From: jacks@sage-american.com Subject: Re: Long user names In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jon: One of my host accounts uses thousands of email usernames (as part of user/pwd login) that run up to 35 characters or so, but makes use of a mysql database to do it.... that's about all I can tell you as a hint.... At 03:49 AM 1.22.2002 +0000, Jon Larssen wrote: >Hello, > >I've been charged with the implementation here at my company of a >company-wide single-sign-in (or login), much like MS Passport is. The >problem is that the designers decided to use the "global" usernames of the >form @. For instance, my network username would be: > > jon@noc.example.com > >The rationale is very simple: give the users a login name they can remember, >make them "pretty" and human readable, and, above all, make them unique. You >know, we actually have jon@example.com and jon@noc.example.com, so both of >us need unique usernames. The designers wanted to have the email addresses >for login names, not something like jlarssen21... > >Given the limit on FreeBSD 16 characters per username can anyone give me a >counter proposal to those system designer guys? (I admit that the whole >email-address-as-username looks good, but I think I'll have trouble >integrating it into the network.) I'm very open to ideas at this point. > >Best regards, >Jon. > >PS. How is this related to FreeBSD? Because in a couple of FreeBSD servers >we'll have the company-wide user directory (replicated LDAP), email services >(SMTP & IMAP) and a Squid cache/proxy. Oh, this is a 96% Windows based >network. > >_________________________________________________________________ >Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 20:18:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id C8BA337B402 for ; Mon, 21 Jan 2002 20:18:46 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id 820045D0A for ; Mon, 21 Jan 2002 20:18:46 -0800 (PST) To: freebsd-questions@freebsd.org Subject: Re: three questions regarding hard drives... In-reply-to: Your message of "Mon, 21 Jan 2002 18:06:56 EST." <3C4C9F10.FBD0B1F@nc.rr.com> Date: Mon, 21 Jan 2002 20:18:46 -0800 From: "Kevin Oberman" Message-Id: <20020122041846.820045D0A@ptavv.es.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Mon, 21 Jan 2002 18:06:56 -0500 > From: Michael E Mercer > Sender: owner-freebsd-questions@FreeBSD.ORG > > Hello all, > > I am thinking of buying an 80 G HD to replace the two 8 G HDs that > I am using for Freebsd. > > First question: Is 80 too big for FreeBSD? Should I use a smaller HD? What is > the maximum > size for a HD that FreeBSD can use? OK OK, three questions in one, but anyone > that has taken > a physics test should be used to this. :P I'm not sure the max, but 80 GB is fine. It's more expensive to have a larger disk of equal performance, but if you think you can use a reasonable portion of 80 GB in the next couple of years, no reason not to go for it. Just be aware of performance differences between drives. Cache size, seek speed, and rotational speed all can have a significant impact. On servers SCSI can make a significant difference but ATA is fine for most workstation applications. > Second question: What is your recommendation for partitioning? I know this is > entirely > a personal opinion, however maybe things have changed since I last setup my > current system. No comment. Everyone has an opinion on this, but there is no right or wrong. If you have lots of space, make /var and root much larger. I tend to prefer fewer partitions (/, /var, and /usr), but good arguments can be made for other ways. > Third question: How do I migrate all the data from my two Hard > Drives to the one? I am sure I could find this information on the > web, but thought I would take a chance and ask anyway. dump 0 piped into restore. This is how I do it. Adjust the arguments to match how your disk is sliced and partitioned. You may want other arguments for the newfs or use sysinstall to do that. newfs /dev/ad2s1a mount /dev/ad2s1a /mnt cd /mnt dump -0auf - / | restore -rf - cd / umount /mnt R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 20:19:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tomts10-srv.bellnexxia.net (tomts10.bellnexxia.net [209.226.175.54]) by hub.freebsd.org (Postfix) with ESMTP id 477C937B400 for ; Mon, 21 Jan 2002 20:19:35 -0800 (PST) Received: from scaryg.shacknet.nu ([64.231.135.73]) by tomts10-srv.bellnexxia.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20020122041934.KQBS20760.tomts10-srv.bellnexxia.net@scaryg.shacknet.nu>; Mon, 21 Jan 2002 23:19:34 -0500 Received: from localhost ([::1] helo=scaryg.shacknet.nu) by scaryg.shacknet.nu with smtp (Exim 3.33 #1) id 16SsQ5-0007r4-00; Mon, 21 Jan 2002 23:20:25 -0500 Date: Mon, 21 Jan 2002 23:20:24 -0500 From: ScaryG To: "Philip M. Gollucci" Cc: freymann@eagle.ca, barbish@a1poweruser.com, questions@FreeBSD.ORG Subject: Re: How to adduser from script? Message-Id: <20020121232024.3534c900.freymann@scaryg.shacknet.nu> In-Reply-To: References: <3C4BEF68.32535.78858E@localhost> X-Mailer: Sylpheed version 0.6.6 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002 19:25:52 -0500 (EST) "Philip M. Gollucci" wrote: > I don't know if this is a good idea, but I have a web based login > system. It creates the users in a MySQL database. This is all fine and > good, but I want to also add them as system users in master.passwd . > It is my understanding that I need to do some kind of setuid script like > the one below. Anyone how or where to look. I write out the info to a file, safely tucked away some where, and schedule a cron job (as root) to run every so often and pick up the waiting data and create the user. How often the cron job runs is up to you. And security of the file should be handled carefully as well. gf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 20:24:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fedde.littleton.co.us (cfedde.dsl.frii.net [216.17.139.141]) by hub.freebsd.org (Postfix) with ESMTP id DEC2837B400 for ; Mon, 21 Jan 2002 20:24:39 -0800 (PST) Received: from fedde.littleton.co.us (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.6/8.11.4) with ESMTP id g0M4OZ821415; Mon, 21 Jan 2002 21:24:35 -0700 (MST) Message-Id: <200201220424.g0M4OZ821415@fedde.littleton.co.us> To: Jonathan Hilgeman Cc: "'freebsd-questions@freebsd.org'" Subject: Re: Uninstalling Programs From Source In-Reply-To: <5D90F61EB6FDD411836500508B137F1A01408A0A@mailsvr.ecx.com> From: Chris Fedde Date: Mon, 21 Jan 2002 21:24:35 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002 17:13:50 -0800 Jonathan Hilgeman wrote: +------------------ | I don't think this is FreeBSD-specific, but I installed PHP from source a | few months back, and now I'm a little lost on how to uninstall it. | Installing it was simple enough, but I just don't know how to uninstall | something done from source. From now on - nothing but ports. :) Thanks in | advance! +------------------ First cd to the PHP source directory. Then do the following. touch now make install find / -newer now > t Now you have a file called 't' that contains the names of all files that were created by the install among other things like log files and such. By and large this will work with most plain source distributions. BTW it's not too hard to make packages out of stuff that you install from source. Section 4.4.1. of the handbook talks about making a port yourself. Good Luck -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 20:30:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id B9BA837B404 for ; Mon, 21 Jan 2002 20:30:56 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16SsaF-000LRo-00 for freebsd-questions@freebsd.org; Tue, 22 Jan 2002 04:30:55 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 1F7D81181; Tue, 22 Jan 2002 05:30:55 +0100 (CET) Date: Tue, 22 Jan 2002 05:30:55 +0100 From: Cliff Sarginson To: FreeBSD List Subject: What do I do with changes to a kernel module ? Message-ID: <20020122043055.GA1091@raggedclown.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I have put some code into the USB Scanner modules source code to add support for Epson 640 USB Scanners. What do I do with it now to get it put in the distribution ? It's in 4.5 RC. Tough one that, all 6 lines of it :) -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 20:36:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from nycsmtp1out.rdc-nyc.rr.com (nycsmtp1out.rdc-nyc.rr.com [24.29.99.226]) by hub.freebsd.org (Postfix) with ESMTP id C76CE37B405 for ; Mon, 21 Jan 2002 20:36:22 -0800 (PST) Received: from scott1.nyc.rr.com (24-168-24-239.nyc.rr.com [24.168.24.239]) by nycsmtp1out.rdc-nyc.rr.com (8.12.1/Road Runner SMTP Server 1.0) with ESMTP id g0M4a0m4029924 for ; Mon, 21 Jan 2002 23:36:00 -0500 (EST) Message-Id: <5.1.0.14.0.20020121202919.00c1bec0@pop-server.nyc.rr.com> X-Sender: scottro@pop-server.nyc.rr.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Mon, 21 Jan 2002 20:33:30 -0500 To: freebsd-questions@freebsd.org From: Scott Subject: editing a makefile in ports Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I don't know enough about coding or even scripting, I fear, to know if this is an inane question or not. Recently reinstalled 4.4 on a box. Before installing X, I cvsup'ed, including ports, and then installed XFree86 4. Until a recently, this would have installed 4.1.x. Now, it's been upgraded to 4.2.0 Unfortunately, for whatever reason, while 4.1 worked perfectly on this particular box, 4.2 has various problems. If I simply edit the line in the Makefile that says PORTVERSION = 4.2.0 and change it to 4.1.0 will that solve my problem, or will there then be various other conflicts that I don't know enough to see. TIA Scott Robbins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 20:40:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from femail38.sdc1.sfba.home.com (femail38.sdc1.sfba.home.com [24.254.60.32]) by hub.freebsd.org (Postfix) with ESMTP id E490337B402 for ; Mon, 21 Jan 2002 20:40:08 -0800 (PST) Received: from www.technaholics.com ([65.6.242.64]) by femail38.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20020122044008.RJCP3734.femail38.sdc1.sfba.home.com@www.technaholics.com> for ; Mon, 21 Jan 2002 20:40:08 -0800 Received: from spgcalbert ([10.15.1.20]) by www.technaholics.com (8.11.3/8.11.3) with SMTP id g0M4e5c08643 for ; Mon, 21 Jan 2002 22:40:06 -0600 (CST) (envelope-from chadalbert@home.com) Message-ID: <00b701c1a2fe$ddaadd80$14010f0a@spgcalbert> From: "Chad Albert" To: Subject: syntax error in rc.conf Date: Mon, 21 Jan 2002 22:40:05 -0600 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_00B4_01C1A2CC.9226A9C0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_00B4_01C1A2CC.9226A9C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I added a line to my rc.conf and like the idiot I am, I missed a quote. = Now when I boot I get an error about an unterminated quoted string and = the filesystem mounts read-only. How can I get my file to an editable = state? ------=_NextPart_000_00B4_01C1A2CC.9226A9C0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I added a line to my rc.conf and like = the idiot I=20 am, I missed a quote.  Now when I boot I get an error about an = unterminated=20 quoted string and the filesystem mounts read-only.  How can I get = my file=20 to an editable state?
------=_NextPart_000_00B4_01C1A2CC.9226A9C0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 20:44:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns2.engstringen.com (ns2.engstringen.com [66.33.48.177]) by hub.freebsd.org (Postfix) with ESMTP id 46B4737B478 for ; Mon, 21 Jan 2002 20:44:33 -0800 (PST) Received: from brofredv (pop-mu-3-1-dialup-253.freesurf.ch [194.230.132.253]) by www.stopaids.ch (8.10.2/8.10.2) with SMTP id g0M4gjA25412 for ; Tue, 22 Jan 2002 05:42:45 +0100 From: Büro für EDV Message-ID: <003001c1a308$d2dab920$fd84e6c2@brofredv> To: Subject: Date: Tue, 22 Jan 2002 06:51:21 +0100 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_002D_01C1A311.334F6FA0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_002D_01C1A311.334F6FA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi=20 Why are Pages in the net, how have non Doctype in the first colum and = they say to me, hi can't read my Homepage ? Thanks for your answer. Armin=20 ------=_NextPart_000_002D_01C1A311.334F6FA0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi
 
Why are Pages in the net, how have non = Doctype in=20 the first colum and they say to me, hi can't read my Homepage = ?
 
Thanks for your answer.
 
 
Armin =
------=_NextPart_000_002D_01C1A311.334F6FA0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 20:52: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 03CFE37B417 for ; Mon, 21 Jan 2002 20:52:03 -0800 (PST) Received: from gateway ([63.70.155.45]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Mon, 21 Jan 2002 23:55:14 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: pw in script to create new user. Date: Mon, 21 Jan 2002 23:52:00 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have sh script with this in it Pw adduser tom -m -c bkup manager -o The /etc/pw.conf has all the defaults, one is to make the password the same as the userid. The -o option will take input from keyboard for the Password but this is a canned script so I need to Some how pass the password value to the pw command -0 option. How can I configure the script to hold the password value for that userid so when the pw adduser command is executed the correct password gets used in creating the user? A example of the script pw command would be great. Thanks Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 20:55:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by hub.freebsd.org (Postfix) with ESMTP id 2847137B402 for ; Mon, 21 Jan 2002 20:55:15 -0800 (PST) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id UAA27268; Mon, 21 Jan 2002 20:55:11 -0800 Message-ID: <3C4CF0AE.5040102@owt.com> Date: Mon, 21 Jan 2002 20:55:10 -0800 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Chad Albert Cc: freebsd-questions@FreeBSD.ORG Subject: Re: syntax error in rc.conf References: <00b701c1a2fe$ddaadd80$14010f0a@spgcalbert> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Chad Albert wrote: > I added a line to my rc.conf and like the idiot I am, I missed a quote. > Now when I boot I get an error about an unterminated quoted string and > the filesystem mounts read-only. How can I get my file to an editable > state? You can normally "mount -a", edit the file, and exit or reboot. Kent -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://users.owt.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 21: 2:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.mail.pas.earthlink.net [207.217.120.50]) by hub.freebsd.org (Postfix) with ESMTP id 747CE37B400 for ; Mon, 21 Jan 2002 21:02:11 -0800 (PST) Received: from dialup-166.90.70.185.dial1.chicago1.level3.net ([166.90.70.185] helo=pegasus) by avocet.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16St4I-00008v-00; Mon, 21 Jan 2002 21:01:59 -0800 Message-ID: <000d01c1a301$eb65d9e0$328dfea9@pegasus> From: "Bob Giesen" To: "Jamaal Sanford" , "freebsd-questions" References: Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 Date: Mon, 21 Jan 2002 23:01:56 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Yipeee..... oh, shoot. Well, there's definitely some progress: using the AMDtek driver code (if_al.c and if_alreg.h) got the kernel to recognize the card. I suspect there's a problem with it detecting the ethernet address, though -- unless I've got the one card with all the bits set (which probably runs counter to some standard, anyway :-) ). Here's my ifconfig -a output: al0: flags=8843 mtu 1500 inet 192.168.0.1 netmask 0xffffff00 broadcast 192.168.0.255 ether ff:ff:ff:ff:ff:ff media: 10baseT/UTP supported media: autoselect 100baseTX 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP 10baseT/UTP dmesg, of course, shows the same ethernet address. I am able to to ping the localhost, successfully. When I try to ping another machine (hostname "secretariat"), I can watch the activity LED on my hub flash, but all the packets get lost. Interestingly, this causes secretariat to show the following problem message on its console: [current date & time] secretariat /kernel: arp: ether address is broadcast for IP address 192.168.0.1! The actual date and time are shown (sans the brackets), as is the exclamation mark. For now, I'll search for references to this problem and/or an update to the al driver. If anyone has any more suggestions, I'll appreciate hearing them. Thanks, again, Bob ----- Original Message ----- From: "Jamaal Sanford" To: "Bob Giesen" Sent: Monday, January 21, 2002 8:11 PM Subject: RE: Linksys LNE10TX v4.1, FreeBSD v3.2 > I've been using the LNE100TX series since FreeBSD v4.3. The > drivers for FreeBSD were included on the driver disk that shipped with the > product. However, I used the "dc" driver and it works fine. The 3.x of > FreeBSD uses the ADMtek drivers I think. Here's something you may find > interesting from the readme file included on the disk. > > > A. Get source Code and produce a binary code > ============================================= > Step 1 : Get the source code(if_al.c and if_alreg.h) from the following site > > http://www.freebsd.org/~wpaul/ADMtek/3.0 > > Step 2 : Build compiler environment on your FreeBSD system. > > Step 3 : Compile source code to produce a binary code. > > > ** Note ** > It will work with either FreeBSD 3.2 or 3.3. If you have 3.3-RELEASE, > replace /sys/pci/if_al.c and /sys/pci/if_alreg.h with the new versions > from the web site, then just compile a new kernel. > > For FreeBSD-current, the driver is already there: you can install a > -current snapshot from: > > ftp://current.freebsd.org:/pub/FreeBSD/snapshots/i386/4.0-19991012-CURRENT > > Jamaal Sanford > > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Bob Giesen > Sent: Monday, January 21, 2002 5:10 PM > To: freebsd-questions > Cc: Bob Giesen (earthlink) > Subject: Linksys LNE10TX v4.1, FreeBSD v3.2 > > > > I have an LNE100TX v4.1 card and FreeBSD v3.2 -- which I'm hoping to get > to work together. I tried the pn kernel driver (in response to a tip in the > kernel config file), to no avail. > In search of an answer (via Google), I found a page > (http://www.linksys.com/faqs/default.asp?fqid=27) which recommended trying > the DEC (de) kernel driver or else the pn code (if_pn.c & if_pnreg.h) > supplied via that page. I tried both (separately and together), to no > avail. When I boot, it seems that the PCI probe isn't even finding the NIC; > there's no line in the dmesg output that refers to pn0, de0... or anything > else that even remotely looks like it might be the NIC. > Just in case it was a case of a persnickety probe, I changed the > positions of my NIC and the only other PCI card I have installed (Creative > SB PCI 512 sound card), moving the NIC to the first slot (next to the AGP > slot, where the sound card used to live), also to no avail. (FYI, the AGP > slot houses the video card and my only ISA slot holds the modem.) > I've done some searching in the archives, here, looking for an answer, > but couldn't find one. Now, I wonder (1) if my card will work with FreeBSD > v3.2 and, if so, (2) where can I find the driver code to make it possible? > Any help that you can provide will be much appreciated -- since it might > save me much, much time in upgrading my FreeBSD -- or the cost of another, > supported card. Thanks in advance. > - Bob > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 21: 4:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from transbay.net (www.transbay.net [209.133.53.217]) by hub.freebsd.org (Postfix) with ESMTP id 9766837B416 for ; Mon, 21 Jan 2002 21:04:40 -0800 (PST) Received: from transbay.net (rigel.transbay.net [209.133.53.177]) by transbay.net (8.11.2/8.11.2) with ESMTP id g0M54ch63808; Mon, 21 Jan 2002 21:04:38 -0800 (PST) Message-ID: <3C4CF496.43333D21@transbay.net> Date: Mon, 21 Jan 2002 21:11:50 -0800 From: UCTC Sysadmin Organization: UC Telecommunications Company X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: mmercer@nc.rr.com, freebsd-questions@freebsd.org Subject: Re: machine beeps periodically. References: <3C460679.5D3BCF7F@nc.rr.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Verify the BIOS thing to be safe. Something is asking for the beep. If your machine is online 24x7 and people know you, it could be someone trying to "talk" to you - the beep would correspond to one window where "Talk requested" message is displayed. Esp if it happens at completely random times, and the beep occurs a couple times before it gives up. I don't know if it's meaningful but you could try changing permissions for the speaker device to stop access and then look through logs for a process that complains that it can't access the speaker. Check (comsat/biff etc.) that a mail notification thing is not accidentally configured to run. It won't necessarily beep when you get mail, it may only beep if there is new mail after the polling period (every N minutes.) Assuming the beep is not in reply to your keystrokes ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 21:11:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from transbay.net (www.transbay.net [209.133.53.217]) by hub.freebsd.org (Postfix) with ESMTP id 45A4437B404 for ; Mon, 21 Jan 2002 21:11:45 -0800 (PST) Received: from transbay.net (rigel.transbay.net [209.133.53.177]) by transbay.net (8.11.2/8.11.2) with ESMTP id g0M5Bfh64096; Mon, 21 Jan 2002 21:11:41 -0800 (PST) Message-ID: <3C4CF63D.98510AF0@transbay.net> Date: Mon, 21 Jan 2002 21:18:53 -0800 From: UCTC Sysadmin Organization: UC Telecommunications Company X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Jon Larssen Cc: freebsd-questions@freebsd.org Subject: Re: Long user names References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The SQL DB thing is the only quick and easy way. Not too hard to do. Leave it to marketing types to equate userid = emailaddress. That has the sideeffect of confusing users, since ISPs will tell users that email addresses are NOT the same as userids. Sincerely, Fred disGUSting To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 21:15:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.mail.pas.earthlink.net [207.217.120.50]) by hub.freebsd.org (Postfix) with ESMTP id 5B49737B404 for ; Mon, 21 Jan 2002 21:15:36 -0800 (PST) Received: from dialup-166.90.70.185.dial1.chicago1.level3.net ([166.90.70.185] helo=pegasus) by avocet.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16StHS-0004xw-00; Mon, 21 Jan 2002 21:15:34 -0800 Message-ID: <004301c1a303$d1ea30e0$328dfea9@pegasus> From: "Bob Giesen" To: "Chad Albert" , References: <00b701c1a2fe$ddaadd80$14010f0a@spgcalbert> Subject: Re: syntax error in rc.conf Date: Mon, 21 Jan 2002 23:15:32 -0600 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0040_01C1A2D1.86558260" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0040_01C1A2D1.86558260 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable "mount -u /" (assuming your /etc is in the root slice) will change it to = read-write. ----- Original Message -----=20 From: Chad Albert=20 To: freebsd-questions@freebsd.org=20 Sent: Monday, January 21, 2002 10:40 PM Subject: syntax error in rc.conf I added a line to my rc.conf and like the idiot I am, I missed a = quote. Now when I boot I get an error about an unterminated quoted = string and the filesystem mounts read-only. How can I get my file to an = editable state? ------=_NextPart_000_0040_01C1A2D1.86558260 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
"mount -u /" (assuming your /etc is in = the root=20 slice) will change it to read-write.
 
----- Original Message -----
From:=20 Chad Albert=20
To: freebsd-questions@freebsd.org =
Sent: Monday, January 21, 2002 = 10:40=20 PM
Subject: syntax error in = rc.conf

I added a line to my rc.conf and like = the idiot I=20 am, I missed a quote.  Now when I boot I get an error about an=20 unterminated quoted string and the filesystem mounts read-only.  = How can=20 I get my file to an editable = state?
------=_NextPart_000_0040_01C1A2D1.86558260-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 21:17: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from femail10.sdc1.sfba.home.com (femail10.sdc1.sfba.home.com [24.0.95.106]) by hub.freebsd.org (Postfix) with ESMTP id A9D3137B402 for ; Mon, 21 Jan 2002 21:17:00 -0800 (PST) Received: from www.technaholics.com ([65.6.242.64]) by femail10.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20020122051700.VJGC80.femail10.sdc1.sfba.home.com@www.technaholics.com>; Mon, 21 Jan 2002 21:17:00 -0800 Received: from spgcalbert ([10.15.1.20]) by www.technaholics.com (8.11.3/8.11.3) with SMTP id g0M5Guc08686; Mon, 21 Jan 2002 23:16:57 -0600 (CST) (envelope-from chadalbert@home.com) Message-ID: <00d401c1a304$03ec9ec0$14010f0a@spgcalbert> From: "Chad Albert" To: "Kent Stewart" Cc: References: <00b701c1a2fe$ddaadd80$14010f0a@spgcalbert> <3C4CF0AE.5040102@owt.com> Subject: Re: syntax error in rc.conf Date: Mon, 21 Jan 2002 23:16:55 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thank you all! This worked for me. ----- Original Message ----- From: "Kent Stewart" To: "Chad Albert" Cc: Sent: Monday, January 21, 2002 10:55 PM Subject: Re: syntax error in rc.conf > > > Chad Albert wrote: > > > I added a line to my rc.conf and like the idiot I am, I missed a quote. > > Now when I boot I get an error about an unterminated quoted string and > > the filesystem mounts read-only. How can I get my file to an editable > > state? > > > You can normally "mount -a", edit the file, and exit or reboot. > > Kent > > -- > Kent Stewart > Richland, WA > > mailto:kbstew99@hotmail.com > http://users.owt.com/kstewart/index.html > FreeBSD News http://daily.daemonnews.org/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 21:30:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 603D437B402 for ; Mon, 21 Jan 2002 21:30:35 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16StVy-000Omv-00 for freebsd-questions@freebsd.org; Tue, 22 Jan 2002 05:30:34 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id BEB2A1181; Tue, 22 Jan 2002 06:30:33 +0100 (CET) Date: Tue, 22 Jan 2002 06:30:33 +0100 From: Cliff Sarginson To: bsd Subject: Re: lpstat connection refused Message-ID: <20020122053033.GA2140@raggedclown.net> References: <20020120172600.20898d27.erichey2@attbi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 09:29:32PM -0500, Garance A Drosihn wrote: > At 5:26 PM -0700 1/20/02, Collins Richey wrote: > >I managed to setup my printer (laserjet) using the samples in the > >handbook, and it is working for both plain text and .ps files. > > > >Whenever I execute 'lpstat' or 'lpstat -p', I get > > > > lpstat: Unable to connect to server: Connection refused > > > >How can I fix this? > > I am not sure why you're using 'lpstat', as that is not installed > as part of the base freebsd OS. If you are using the base OS, > then you would want to use 'lpq -Pqname', where 'qname' is the > name of the print queue that you want to check. > > On the other hand, you obviously *have* some version of lpstat > installed, so it might be that you are using one of the alternate > print-systems available via ports. This would most likely be CUPS > or lprNG. If you have installed one of those, then which one are > you running? > I have a suspicion, that KDE may sneak CUPs in while you are not looking. I installed a printer on a system this last evening with the latest KDE, and tried out the print manager thing in KDE. I have *not* conciously installed CUPS, but on the test page I printed from KDE stands in big letters at the bottom "Printed Using CUPS V1.1.x". And yes "lpstat" is there. However the print system I am using ex-KDE is the good old BSD one. Life is full of surprises. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 21:31:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id B4A6E37B405 for ; Mon, 21 Jan 2002 21:31:54 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16StXF-0000Zu-00 for freebsd-questions@freebsd.org; Tue, 22 Jan 2002 05:31:53 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 187F01181; Tue, 22 Jan 2002 06:31:53 +0100 (CET) Date: Tue, 22 Jan 2002 06:31:53 +0100 From: Cliff Sarginson To: FreeBSD List Subject: Re: What do I do with changes to a kernel module ? Message-ID: <20020122053153.GB2140@raggedclown.net> References: <20020122043055.GA1091@raggedclown.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020122043055.GA1091@raggedclown.net> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 05:30:55AM +0100, Cliff Sarginson wrote: > Hello, > > I have put some code into the USB Scanner modules source code to > add support for Epson 640 USB Scanners. > What do I do with it now to get it put in the distribution ? > > It's in 4.5 RC. > > Tough one that, all 6 lines of it :) > > -- > Regards > Cliff > P.S. Do I get to call myself a kernel hacker now :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 21:42:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.22.40]) by hub.freebsd.org (Postfix) with ESMTP id 7B29A37B400 for ; Mon, 21 Jan 2002 21:42:21 -0800 (PST) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.11.3/8.11.3) with ESMTP id g0M5gIi66682; Tue, 22 Jan 2002 00:42:18 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20020122053033.GA2140@raggedclown.net> References: <20020120172600.20898d27.erichey2@attbi.com> <20020122053033.GA2140@raggedclown.net> Date: Tue, 22 Jan 2002 00:42:17 -0500 To: Cliff Sarginson , bsd From: Garance A Drosihn Subject: Re: lpstat connection refused Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: MIMEDefang 2.1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 6:30 AM +0100 1/22/02, Cliff Sarginson wrote: >I have a suspicion, that KDE may sneak CUPs in while you are not >looking. I installed a printer on a system this last evening with >the latest KDE, and tried out the print manager thing in KDE. >I have *not* conciously installed CUPS, but on the test page I printed >from KDE stands in big letters at the bottom > >"Printed Using CUPS V1.1.x". > >And yes "lpstat" is there. >However the print system I am using ex-KDE is the good old BSD one. > >Life is full of surprises. If you have an up-to-date ports tree, the CUPS port was just split in two. KDE now uses the "safe" half, and now it shouldn't cause any confusion with the standard BSD lpr-setup. Before the split, installing KDE could confuse some printing issues. -- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 21:48:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id C5FE637B402 for ; Mon, 21 Jan 2002 21:48:53 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16Stng-000POE-00 for freebsd-questions@FreeBSD.ORG; Tue, 22 Jan 2002 05:48:53 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id A3F021181; Tue, 22 Jan 2002 06:48:51 +0100 (CET) Date: Tue, 22 Jan 2002 06:48:51 +0100 From: Cliff Sarginson To: bsd Subject: Re: lpstat connection refused Message-ID: <20020122054851.GC2140@raggedclown.net> References: <20020120172600.20898d27.erichey2@attbi.com> <20020122053033.GA2140@raggedclown.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 12:42:17AM -0500, Garance A Drosihn wrote: > At 6:30 AM +0100 1/22/02, Cliff Sarginson wrote: > >I have a suspicion, that KDE may sneak CUPs in while you are not > >looking. I installed a printer on a system this last evening with > >the latest KDE, and tried out the print manager thing in KDE. > >I have *not* conciously installed CUPS, but on the test page I printed > >from KDE stands in big letters at the bottom > > > >"Printed Using CUPS V1.1.x". > > > >And yes "lpstat" is there. > >However the print system I am using ex-KDE is the good old BSD one. > > > >Life is full of surprises. > > If you have an up-to-date ports tree, the CUPS port was just split > in two. KDE now uses the "safe" half, and now it shouldn't cause > any confusion with the standard BSD lpr-setup. Before the split, > installing KDE could confuse some printing issues. > I see, yes my ports tree is up to date as of about 24 hours ago. No problems, seemed to work just fine within and without KDE. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 21:52:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fedde.littleton.co.us (cfedde.dsl.frii.net [216.17.139.141]) by hub.freebsd.org (Postfix) with ESMTP id 7D66B37B404 for ; Mon, 21 Jan 2002 21:52:17 -0800 (PST) Received: from fedde.littleton.co.us (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.6/8.11.4) with ESMTP id g0M5qD824680; Mon, 21 Jan 2002 22:52:13 -0700 (MST) Message-Id: <200201220552.g0M5qD824680@fedde.littleton.co.us> To: "Jon Larssen" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Long user names In-Reply-To: From: Chris Fedde Date: Mon, 21 Jan 2002 22:52:13 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 22 Jan 2002 03:49:44 +0000 "Jon Larssen" wrote: +------------------ | Hello, | | I've been charged with the implementation here at my company of a | company-wide single-sign-in (or login), much like MS Passport is. The | problem is that the designers decided to use the "global" usernames of the | form @. For instance, my network username would be: | | jon@noc.example.com | | PS. How is this related to FreeBSD? Because in a couple of FreeBSD servers | we'll have the company-wide user directory (replicated LDAP), email services +------------------ A little bit of digging shows that pam_ldap is available for FreeBSD and that the configuration file supports some significant means of customizing both the search base and the uid= filter. It is tied to the standard posixAccount ldap schema. Also, keep in mind that most users will not need or want login accounts to the directory or email servers. Infact in most cases it would be a bad idea to permit your average user to have shell login to these nodes. In those cases special priveleges are required. -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 22: 9:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.mail.pas.earthlink.net [207.217.120.50]) by hub.freebsd.org (Postfix) with ESMTP id 36CC937B400 for ; Mon, 21 Jan 2002 22:09:41 -0800 (PST) Received: from dialup-166.90.70.185.dial1.chicago1.level3.net ([166.90.70.185] helo=pegasus) by avocet.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16Su7n-00011o-00; Mon, 21 Jan 2002 22:09:39 -0800 Message-ID: <004b01c1a30b$5fcb20c0$328dfea9@pegasus> From: "Bob Giesen" To: "Joe & Fhe Barbish" , "FBSD Questions" References: Subject: Re: pw in script to create new user. Date: Tue, 22 Jan 2002 00:09:37 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Joe & Fhe Barbish" To: "FBSD Questions" Sent: Monday, January 21, 2002 10:52 PM Subject: pw in script to create new user. > I have sh script with this in it > Pw adduser tom -m -c bkup manager -o > The /etc/pw.conf has all the defaults, one is to > make the password the same as the userid. > The -o option will take input from keyboard for the > Password but this is a canned script so I need to > Some how pass the password value to the pw command -0 option. > > How can I configure the script to hold the password value > for that userid so when the pw adduser command is executed > the correct password gets used in creating the user? Three thoughts: 1) Does pw offer no other way of providing the password, other than via stdin (keyboard)? 2) Putting unencrypted passwords into a text file (such as your script) does present something of a security risk. 3) If the answer to (1) is no and (2) doesn't faze you, you can redirect stdin within the script. I am not familiar with pw (perhaps because I'm running v3.2), so I'll expand on your example command for adding tom: Pw adduser tom -m -c bkup manager -o << EOF tomspassword EOF The first line's "<< EOF" tells sh to take the expected stdin input from the following lines, up to the first line that BEGINS with "EOF." So, just put tom's password on the following line and then EOF on the very next line. Two points worth mentioning: 1) My choice of "EOF" was arbitrary. You may use EOP, EOI, XYZ, SILLY, or whatever you like, so long as you use exactly the same string to signal the end of input redirection. 2) EOF (or EOP, SILLY, or whatever you use) MUST BEGIN the line to signal the end of redirection. Any space (or other character) before the ending EOF will mess up your script (which, since you're operating as root, has the potential to make things interesting, to say the least). (Exception: you may precede the finishing string (EOF, or whatever) with a tab IF YOU USE "<<-" instead of "<<" for the redirection on the first line. E.g.: Pw adduser tom -m -c bkup manager -o <<- EOF tomspassword EOF My mail client turned the tabs to spaces; there should be tabs before "tomspassword" and the final "EOF" here. Sometimes, the <<- & tab functionality helps to make a more readable script. Hope this helps... - Bob > A example of the script pw command would be great. > > Thanks > Joe > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 22:25:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id DB0FE37B417 for ; Mon, 21 Jan 2002 22:25:22 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 8B350BD08; Mon, 21 Jan 2002 22:25:22 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id WAA25967; Mon, 21 Jan 2002 22:25:22 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g0M6SdW01430; Mon, 21 Jan 2002 22:28:39 -0800 (PST) (envelope-from swear@blarg.net) To: Cliff Sarginson Cc: FreeBSD List Subject: Re: What do I do with changes to a kernel module ? References: <20020122043055.GA1091@raggedclown.net> <20020122053153.GB2140@raggedclown.net> From: swear@blarg.net (Gary W. Swearingen) Date: 21 Jan 2002 22:28:39 -0800 In-Reply-To: <20020122053153.GB2140@raggedclown.net> Message-ID: Lines: 9 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Cliff Sarginson writes: > > I have put some code into the USB Scanner modules source code to > > add support for Epson 640 USB Scanners. > > What do I do with it now to get it put in the distribution ? The nominal method is to create a patch (diff -u) from it and write a PR with it. If nobody did anything with it in a reasonable time, you then might try asking for someone to do so on -stable and maybe some other ML. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 22:28:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from creme-brulee.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 7DF7937B402 for ; Mon, 21 Jan 2002 22:28:29 -0800 (PST) Received: from shumai.marcuscom.com (marcus@shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.11.6/8.11.6) with ESMTP id g0M6RRZ65809; Tue, 22 Jan 2002 01:27:27 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: pw in script to create new user. From: Joe Clarke To: Joe & Fhe Barbish Cc: FBSD Questions In-Reply-To: References: Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/1.0.1 Date: 22 Jan 2002 01:28:40 -0500 Message-Id: <1011680920.27463.10.camel@shumai.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 2002-01-21 at 23:52, Joe & Fhe Barbish wrote: > I have sh script with this in it > Pw adduser tom -m -c bkup manager -o > The /etc/pw.conf has all the defaults, one is to > make the password the same as the userid. > The -o option will take input from keyboard for the > Password but this is a canned script so I need to > Some how pass the password value to the pw command -0 option. > > How can I configure the script to hold the password value > for that userid so when the pw adduser command is executed > the correct password gets used in creating the user? I sent you this email earlier today. I said to use the -h 0 option when scripting pw. > > A example of the script pw command would be great. This is what I use from Perl: # Now, update the password entry. unless(open(PW, "| /usr/sbin/pw usermod $user -h 0")) { carp "Unable to open a pipe to /usr/sbin/pw.\n"; exit 3; } print PW $newPass, "\n"; unless(close PW) { carp "/usr/sbin/pw exited on $?: $!\n"; exit 3; } This of course uses pw in the usermod function, but you can easily modify it to do what you need. This sets $user's password to $newPass. Joe > > Thanks > Joe > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 22:39:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from priv-edtnes03-hme0.telusplanet.net (fepout1.telus.net [199.185.220.236]) by hub.freebsd.org (Postfix) with ESMTP id CB4FE37B400 for ; Mon, 21 Jan 2002 22:39:23 -0800 (PST) Received: from FRED ([142.173.43.70]) by priv-edtnes03-hme0.telusplanet.net (InterMail vM.5.01.04.01 201-253-122-122-101-20011014) with ESMTP id <20020122063923.FJXT27120.priv-edtnes03-hme0.telusplanet.net@FRED>; Mon, 21 Jan 2002 23:39:23 -0700 Date: Mon, 21 Jan 2002 22:47:11 -0800 From: Sean Ellis X-Mailer: The Bat! (v1.51) Reply-To: Sean Ellis Organization: yes X-Priority: 3 (Normal) Message-ID: <1381391589634.20020121224711@telus.net> To: "Joe & Fhe Barbish" Cc: "FBSD Questions" Subject: Re: pw in script to create new user. In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Joe, Monday, January 21, 2002, 8:52:00 PM, you wrote: > I have sh script with this in it > Pw adduser tom -m -c bkup manager -o > The /etc/pw.conf has all the defaults, one is to > make the password the same as the userid. > The -o option will take input from keyboard for the > Password but this is a canned script so I need to > Some how pass the password value to the pw command -0 option. I wrote a few lines of perl to automate account creation working from a list of userid's. I've cut out the relevant part (hopefully from a good version :). You get the idea; of course it's not sh, but perl is all over. open(NAME, "< $file") || die "couldn't open $file: $!\n"; while () { chomp; `echo $_ | pw usermod -n $_ -h 0`; } close(NAME) || die "couldn't close names: $!\n"; original here: http://64.69.77.155/caveat_emptor/user_pass_create > How can I configure the script to hold the password value > for that userid so when the pw adduser command is executed > the correct password gets used in creating the user? > A example of the script pw command would be great. > Thanks > Joe -- Regards, Sean mailto:sellis@telus.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 22:59:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail4.cableone.net (mail4.cableone.net [24.116.0.62]) by hub.freebsd.org (Postfix) with ESMTP id 2A55D37B405 for ; Mon, 21 Jan 2002 22:59:17 -0800 (PST) Received: from cis8.cableone.net ([24.116.0.44]) by mail4.cableone.net with Microsoft SMTPSVC(5.5.1877.447.44); Mon, 21 Jan 2002 23:58:03 -0700 Received: from mail pickup service by cis8.cableone.net with Microsoft SMTPSVC; Mon, 21 Jan 2002 23:59:17 -0700 From: To: Subject: missing empydir template & login screen question Date: Mon, 21 Jan 2002 23:59:17 -0700 Message-ID: <3a0f01c1a312$4ed84660$2c00740a@cableone.net> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft CDO for Windows 2000 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Content-Class: urn:content-classes:message Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG When I try to create a directory while running xwindows, I get the error message that the file /usr/local/share/templates/.source/emptydir does not exist. It had looked like everything was up & running on my laptop with 4.3, but apparently this file got missed. How can I get it? 2nd question. I had customized motd where there is a white bar across the top of the login screen with a blank space towards the end of it where the name of the computer shows. Forgot to tell it not to update & the ascii code isn't in motd, but the screen continues to work like that. This seems rather trifling, but it's really bugging me, trying to figure out how I got it that way in the 1st place, that is, what file I edited to get it to show up like that. Thanks for any help I can get. ================= Unix/BSD/Linux Live Free or Die! ================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Jan 21 23:36:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id 15DD337B416 for ; Mon, 21 Jan 2002 23:36:47 -0800 (PST) Received: (qmail 4290 invoked by uid 100); 22 Jan 2002 07:36:45 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15437.5772.965984.619017@guru.mired.org> Date: Tue, 22 Jan 2002 01:36:44 -0600 To: Cliff Sarginson Cc: questions@freebsd.org Subject: Re: What do I do with changes to a kernel module ? In-Reply-To: <91790610@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Cliff Sarginson types: > I have put some code into the USB Scanner modules source code to > add support for Epson 640 USB Scanners. > What do I do with it now to get it put in the distribution ? > > It's in 4.5 RC. > > Tough one that, all 6 lines of it :) Do a "diff -u" with the sources, and submit a PR with a subject that starts "[PATCH]". That in the subject line will clue in committers that you have included a patch to fix the problem, so they don't have to do anything but test your code and commit it. Oh, yeah - if you haven't followed style(9), read it and do so before submitting the PR. And yes, having become one of Anthony's "few, isolated cases" you get to call yourself a kernel hacker (jg) now. You don't have to be able to debug device drivers just by looking at the code. That is a truly rare talent, as most of us require a working sample device to do that. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 0: 3:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta5.snfc21.pbi.net (mta5.snfc21.pbi.net [206.13.28.241]) by hub.freebsd.org (Postfix) with ESMTP id 520AE37B404 for ; Tue, 22 Jan 2002 00:03:37 -0800 (PST) Received: from evilmofo ([64.171.254.129]) by mta5.snfc21.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with SMTP id <0GQB00L2CYE0TN@mta5.snfc21.pbi.net> for FreeBSD-questions@freebsd.org; Tue, 22 Jan 2002 00:03:37 -0800 (PST) Date: Tue, 22 Jan 2002 00:03:38 -0800 From: EvilMoFo Subject: help me please To: FreeBSD-questions@freebsd.org Message-id: <000801c1a31b$4c7f9a40$0400fea9@evilmofo> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Mailer: Microsoft Outlook Express 6.00.2600.0000 Content-type: multipart/alternative; boundary="Boundary_(ID_17Lmm7qNGLTJ4VFF21c1jg)" X-Priority: 3 X-MSMail-priority: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --Boundary_(ID_17Lmm7qNGLTJ4VFF21c1jg) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT the pc: p1 100 32mb ram adaptec 2940x (dunno the exact model) 2gb scsi hd external 6x scsi cdrom linksys lne100tx version 4.1 netgear fa311 rev b1 freebsd version: 4.4 the problem: the scsi card uses ahc in /dev the setup only loads aha how do i get the freebsd setup to see the scsi card/attached devices? --Boundary_(ID_17Lmm7qNGLTJ4VFF21c1jg) Content-type: text/html; charset=iso-8859-1 Content-transfer-encoding: 7BIT
the pc:
p1 100
32mb ram
adaptec  2940x (dunno the exact model)
2gb scsi hd
external 6x scsi cdrom
linksys lne100tx version 4.1
netgear fa311 rev b1
freebsd version: 4.4
the problem:
the scsi card uses ahc in /dev
the setup only loads aha
how do i get the freebsd setup to see the scsi card/attached devices?
--Boundary_(ID_17Lmm7qNGLTJ4VFF21c1jg)-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 0:21:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from pooh.noc.u-net.net (pooh.noc.u-net.net [195.102.252.112]) by hub.freebsd.org (Postfix) with ESMTP id 0AF4837B400 for ; Tue, 22 Jan 2002 00:21:57 -0800 (PST) Received: from pooh.noc.u-net.net ([195.102.252.112] helo=there) by pooh.noc.u-net.net with smtp (Exim 3.22 #1) id 16SwBk-000I9D-00; Tue, 22 Jan 2002 08:21:52 +0000 Content-Type: text/plain; charset="iso-8859-1" From: Peter McGarvey Reply-To: pmcgarvey@vianetworks.co.uk Organization: VIA NETdotWORKS To: Doug Poland , Nathan Mace Subject: Re: smbfs and freebsd Date: Tue, 22 Jan 2002 08:21:46 +0000 X-Mailer: KMail [version 1.3] Cc: freebsd-questions@freebsd.org References: <200201220345.WAA25771@uce55.uchaswv.edu> <20020121215213.A17592@polands.org> In-Reply-To: <20020121215213.A17592@polands.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: X-EXIM-FILTER: PASS-s02 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday 22 January 2002 03:52 am, Doug Poland wrote: > On Mon, Jan 21, 2002 at 10:42:24PM -0500, Nathan Mace wrote: > > does freebsd have support for smbfs? i seem to remember reading > > somewhere that either it doesn't or that it does but it's of beta > > quality? can anyone point me in the right direction? thanks > > I've been using it for several months with absolutely no problems. > You'll need to configure a custom kernel then install the smbfs-1.4.1 > port on 4.4-RELEASE or better. Or upgrade to 4.5 which comes with the smbfs tools. -- TTFN, FNORD Peter McGarvey System Administrator Network Operations, VIA Networks UK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 0:29:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 3EDD737B402 for ; Tue, 22 Jan 2002 00:29:48 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.11.6/8.11.6) id g0M8Tgi58703; Tue, 22 Jan 2002 03:29:42 -0500 (EST) (envelope-from mwlucas) Date: Tue, 22 Jan 2002 03:29:42 -0500 From: Michael Lucas To: Dave Runkle Cc: questions@FreeBSD.ORG Subject: Re: Xfree86 4.2.0 Message-ID: <20020122032942.A58570@blackhelicopters.org> References: <20020121083009.A53217@blackhelicopters.org> <20020121090945.S25007-100000@trittico.fiddi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121090945.S25007-100000@trittico.fiddi.com>; from dave@runkle.com on Mon, Jan 21, 2002 at 09:32:54AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 09:32:54AM -0800, Dave Runkle wrote: > Michael, where do you get this 'inside' info? How can I keep > up-to-date on info such as this? It's not inside info: it's just that FreeBSD has an awful lot of mailing lists. In this case, I believe FreeBSD-arch@FreeBSD.org is the mailing list where this was discussed. General consensus was to include X4 after 4.5-R. arch@ is a pretty technical list, however; it's a good one to sign up for if you want to learn some pretty obscure technical info. (Of course, so are -hackers, -audit, -mobile... :-) Of course, this is a volunteer project, so the next question is, will anyone actually do the work to make this happen? ==ml -- Michael Lucas mwlucas@FreeBSD.org, mwlucas@BlackHelicopters.org my FreeBSD column: http://www.oreillynet.com/pub/q/Big_Scary_Daemons http://www.blackhelicopters.org/~mwlucas/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 0:56:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f36.law9.hotmail.com [64.4.9.36]) by hub.freebsd.org (Postfix) with ESMTP id B155F37B400; Tue, 22 Jan 2002 00:56:13 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Jan 2002 00:56:13 -0800 Received: from 202.98.16.2 by lw9fd.law9.hotmail.msn.com with HTTP; Tue, 22 Jan 2002 08:56:13 GMT X-Originating-IP: [202.98.16.2] From: "Liu Siwei" To: freebsd-questions@freebsd.org Cc: current@freebsd.org Subject: chinput can't work on KDE2.2.2 Date: Tue, 22 Jan 2002 08:56:13 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Jan 2002 08:56:13.0523 (UTC) FILETIME=[A4FB4230:01C1A322] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi,all: I have a question about FreeBSD's locale. I use the zh_CN.EUC locale to let my FreeBSD support Simplied Chinese. It's all right in gnome 1.4. But in recent version of KDE(aka. KDE-2.2.2), I can't set zh_CN.EUC locale for it. For I have select the country is Asia-China, language is Simplied Chinese, code is gb2312.1980. I need not set any locale in my environment to display Simplied Chinese at all. But for I have not set locale, I can't use chinput in KDE. So I set my locale to zh_CN.EUC in my $HOME/.xinitrc. But when I restart my KDE, it can't display Chinese word proper! in kedit, kwrite, etc, I can use chinput through I can't input any Chinese word proper. If I set my locale to zh_CN.GB2312, zh_CN.GBK or nothing, the KDE can display Chinese word proper, but I can't use chinput. So, how to set ocale to let chinput work under KDE2.2.2? A very inportant QUESTION is: why FreeBSD want zh_CN.EUC while KDE is not? My machine is AMD-K7 700, FreeBSD-current,all software are installed from ports(sources). _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 1: 1:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from pintail.mail.pas.earthlink.net (pintail.mail.pas.earthlink.net [207.217.120.122]) by hub.freebsd.org (Postfix) with ESMTP id 5D7DB37B400 for ; Tue, 22 Jan 2002 01:01:09 -0800 (PST) Received: from dialup-209.245.141.65.dial1.sanjose1.level3.net ([209.245.141.65] helo=blossom.cjclark.org) by pintail.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 16Swnh-0000E0-00; Tue, 22 Jan 2002 01:01:05 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g0M911Q79853; Tue, 22 Jan 2002 01:01:01 -0800 (PST) (envelope-from cjc) Date: Tue, 22 Jan 2002 01:01:00 -0800 From: "Crist J . Clark" To: "Matthew P. Marino" Cc: Bob Hall , FreeBSD Subject: Re: The tower of Hanoi Message-ID: <20020122010100.F77330@blossom.cjclark.org> References: <3C4B83A4.FA87DB7E@mediaone.net> <3C4B8603.2991E316@mediaone.net> <20020121161600.B735@starpower.net> <3C4C8BCA.BBA128A4@citystamp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C4C8BCA.BBA128A4@citystamp.com>; from bind9@citystamp.com on Mon, Jan 21, 2002 at 04:44:43PM -0500 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 04:44:43PM -0500, Matthew P. Marino wrote: > Well, this was in the output of a "dump" command that was trying to dump to an > active atapi hard disk. > > dump -f /web/backups/full-1-20-02 /usr/local Bet you're trying to dump an MS-DOS filesystem. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 1: 4:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from harrier.prod.itd.earthlink.net (harrier.mail.pas.earthlink.net [207.217.120.12]) by hub.freebsd.org (Postfix) with ESMTP id 80C2D37B404 for ; Tue, 22 Jan 2002 01:04:42 -0800 (PST) Received: from dialup-209.245.141.65.dial1.sanjose1.level3.net ([209.245.141.65] helo=blossom.cjclark.org) by harrier.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16SwrB-00063W-00; Tue, 22 Jan 2002 01:04:41 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g0M94dQ79883; Tue, 22 Jan 2002 01:04:39 -0800 (PST) (envelope-from cjc) Date: Tue, 22 Jan 2002 01:04:39 -0800 From: "Crist J . Clark" To: twig les Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Snort doesn't start on boot Message-ID: <20020122010439.G77330@blossom.cjclark.org> References: <20020121193149.89458.qmail@web10105.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121193149.89458.qmail@web10105.mail.yahoo.com>; from twigles@yahoo.com on Mon, Jan 21, 2002 at 11:31:49AM -0800 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Jan 21, 2002 at 11:31:49AM -0800, twig les wrote: > I've got a FreeBSD 4.4 stable box running a > Snort/Mysql. Since I installed mysql from a package > the start script is already in /usr/local/etc/rc.d and > it works fine. However I have written a script for > Snort that works when I do a sh snort.sh start (or > stop), yet doesn't start Snort on boot. This is > confusing to say the least. > > My system is 4.4 stable with a minimum install. Here > is my script. I suspect the script since that's what > I trult stink at. :) Any help would be great. Does /usr/local/etc/rc.d/snort.sh have the executable bit set? -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 1: 9:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 9B9FB37B402 for ; Tue, 22 Jan 2002 01:09:53 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7E55D66F0F; Tue, 22 Jan 2002 01:09:52 -0800 (PST) Date: Tue, 22 Jan 2002 01:09:52 -0800 From: Kris Kennaway To: adrian kok Cc: freebsd-questions@FreeBSD.ORG, mwm-dated-1011760229.941611@mired.org Subject: Re: solaris Message-ID: <20020122010951.A10394@xor.obsecurity.org> References: <20020120140552.83290.qmail@web21203.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="jRHKVT23PllUwdXP" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020120140552.83290.qmail@web21203.mail.yahoo.com>; from adriankok2000@yahoo.com.hk on Sun, Jan 20, 2002 at 10:05:52PM +0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --jRHKVT23PllUwdXP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 20, 2002 at 10:05:52PM +0800, adrian kok wrote: > Hello all >=20 > I have problem to install the solaris 8.0? > Could you tell us how to do? No, this is a FreeBSD support forum. Kris --jRHKVT23PllUwdXP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8TSxeWry0BWjoQKURAmaXAJ9FM3p5+w/QPMIWvy+T7UWWlY4M2QCfUJ4O dXPyKqbBZSg6QXxWS27rBRM= =Zs8E -----END PGP SIGNATURE----- --jRHKVT23PllUwdXP-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 1:11:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id E6F6C37B400 for ; Tue, 22 Jan 2002 01:11:40 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7E2EF66F45; Tue, 22 Jan 2002 01:11:40 -0800 (PST) Date: Tue, 22 Jan 2002 01:11:40 -0800 From: Kris Kennaway To: faisal gillani Cc: FreeBSD Subject: Re: unix password limit Message-ID: <20020122011138.B10394@xor.obsecurity.org> References: <20020121050622.15838.qmail@web11005.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="4SFOXa2GPu3tIq4H" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020121050622.15838.qmail@web11005.mail.yahoo.com>; from fasi_74@yahoo.com on Sun, Jan 20, 2002 at 09:06:22PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --4SFOXa2GPu3tIq4H Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Jan 20, 2002 at 09:06:22PM -0800, faisal gillani wrote: > Unix has a limit on username which is 8 chareaters > right ? but i have seen unix systems taking a lot more > then that .. how do we make it do that can someone > tell me please ? Are you talking about the username, or the password? Kris --4SFOXa2GPu3tIq4H Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8TSzJWry0BWjoQKURAgf1AKCtqCpsw517qbSXpcwIuc38gObTgwCg24Qg PitHctW0mt3WsNKGINNBUPY= =wZzu -----END PGP SIGNATURE----- --4SFOXa2GPu3tIq4H-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 1:15:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from bdg.centrin.net.id (DialupBdg253-214.centrin.net.id [202.146.253.214]) by hub.freebsd.org (Postfix) with ESMTP id 5779237B405 for ; Tue, 22 Jan 2002 01:15:45 -0800 (PST) Received: from budsz by bdg.centrin.net.id with local (Exim 3.12 #1 (Debian)) id 16SxLG-00040V-00; Tue, 22 Jan 2002 16:35:46 +0700 Date: Tue, 22 Jan 2002 16:35:46 +0700 From: budsz To: Ralf Hildebrandt Cc: freebsd-questions Subject: Antivirus & X-face Message-ID: <20020122093546.GA15337@bdg.centrin.net.id> Reply-To: budsz Mail-Followup-To: budsz , Ralf Hildebrandt , freebsd-questions References: <3C4D177B.6080507@parelian.com> <20020122074157.GB16850@charite.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="YiEDa0DAkWCtVeE4" Content-Disposition: inline In-Reply-To: <20020122074157.GB16850@charite.de> User-Agent: Mutt/1.3.26i X-Operation-System: Linux debian 2.2.17-budsz.cayang.caroline i586 X-Geekcode: "GMU d- s++:+ a- C++ UL++ P+ L++ E- W++ N o+ K- w+ O+ M V++ PS PE Y+ PGP++ t 5 X+++ R+ tv b++ DI- D+ G++ e++ h+ r+ y+" X-Pubkey-Linux: "http://bdg.centrin.net.id/~budsan02/pubkey_Linux.txt" X-Pubkey-FreeBSD: "http://bdg.centrin.net.id/~budsan02/pubkey_FreeBSD.txt" X-Company: "PD Sari Rasa" X-Service: "Provides Various Kind of Snacks, Cookies and Crispies" X-Location: "Jl 11 April No 87 Sumedang - West Java - Indonesia" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --YiEDa0DAkWCtVeE4 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 22, 2002 at 08:41:57AM +0100, Ralf Hildebrandt wrote: Sorry OOT, How to make header of mutt X-Face:...?=20 anyway have you URL about installation postfix + Amavis + McAfee scanner in FreeBSD...I was try but I can't sending email sorry I forgot about error me= ssage Thanks you before --=20 budsz --YiEDa0DAkWCtVeE4 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v0.9.8a (GNU/Linux) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjxNMnIACgkQuaC+RZYp1fi6RgCeJPi2VRV8T0xlSbBT/0VVSbqM 3CYAn1FAzYsLU/6i8l0/oAOddyl6Fvft =2HIG -----END PGP SIGNATURE----- --YiEDa0DAkWCtVeE4-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 1:35:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hauptpostamt.charite.de (hauptpostamt.charite.de [193.175.73.10]) by hub.freebsd.org (Postfix) with ESMTP id D87E637B402 for ; Tue, 22 Jan 2002 01:35:37 -0800 (PST) Received: from postamt1.charite.de (postamt1.charite.de [193.175.66.246]) by hauptpostamt.charite.de (Postfix) with ESMTP id 102F815C039; Tue, 22 Jan 2002 10:35:33 +0100 (CET) Received: by postamt1.charite.de (Postfix, from userid 7945) id B0780192C73; Tue, 22 Jan 2002 10:35:32 +0100 (CET) Date: Tue, 22 Jan 2002 10:35:32 +0100 From: Ralf Hildebrandt To: budsz , Ralf Hildebrandt , freebsd-questions Subject: Re: Antivirus & X-face Message-ID: <20020122093532.GR16850@charite.de> References: <3C4D177B.6080507@parelian.com> <20020122074157.GB16850@charite.de> <20020122093546.GA15337@bdg.centrin.net.id> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020122093546.GA15337@bdg.centrin.net.id> User-Agent: Mutt/1.3.25i X-Face: `mQ{d28CbwWv2Qge.eJdYX5\Dr$Fs>s'dQuB{7i,t`)a.\Z64~"c&oZ5hPqb?ckj4>^5Zo!?R>oJ;:Ff`P.z"Vmg+-B4]5)e9vs{CH%$5~}+3bV~U-t:t!-+4*gX/qEY0{r\18/'8c!n;1%v?'|An_XwK`wy4=ue^49|. List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Am 22.01.2002 um 16:35:46 +0700 schrieb budsz folgendes: > Sorry OOT, How to make header of mutt X-Face:...? my_hdr X-Face: \`mQ{d28CbwWv2Qge.eJdYX5\\Dr\$Fs>s\'dQuB{7i,t\`)a.\\Z64~\"c&oZ5hPqb?ckj4>^5Zo!?R>oJ\;:Ff\`P.z\"Vmg+-B4]5)e9vs{CH%\$5~}+3bV~U-t:t!-+4*gX/qEY0{r\\18/\'8c!n\;1%v?\'|An_XwK\`wy4=ue^49|. anyway have you URL about installation postfix + Amavis + McAfee scanner in > FreeBSD No. -- Ralf Hildebrandt (Im Auftrag des Referat V A) Ralf.Hildebrandt@charite.de Charite Campus Virchow-Klinikum Tel. +49 (0)30-450 570-155 Referat V A - Kommunikationsnetze - Fax. +49 (0)30-450 570-916 A C program is like a fast dance on a newly waxed dance floor by people carrying razors." -- Waldi Ravens. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 1:48:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 7918D37B485 for ; Tue, 22 Jan 2002 01:48:18 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16SxXN-000Fyj-00 for questions@freebsd.org; Tue, 22 Jan 2002 09:48:17 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 3AC5E1181; Tue, 22 Jan 2002 10:48:16 +0100 (CET) Date: Tue, 22 Jan 2002 10:48:16 +0100 From: Cliff Sarginson To: questions@freebsd.org Subject: Re: What do I do with changes to a kernel module ? Message-ID: <20020122094816.GA2384@raggedclown.net> References: <91790610@toto.iv> <15437.5772.965984.619017@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <15437.5772.965984.619017@guru.mired.org> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 01:36:44AM -0600, Mike Meyer wrote: > Cliff Sarginson types: > > I have put some code into the USB Scanner modules source code to > > add support for Epson 640 USB Scanners. > > What do I do with it now to get it put in the distribution ? > > > > It's in 4.5 RC. > > > > Tough one that, all 6 lines of it :) > > Do a "diff -u" with the sources, and submit a PR with a subject that > starts "[PATCH]". That in the subject line will clue in committers > that you have included a patch to fix the problem, so they don't have > to do anything but test your code and commit it. Oh, yeah - if you > haven't followed style(9), read it and do so before submitting the PR. > > And yes, having become one of Anthony's "few, isolated cases" you get > to call yourself a kernel hacker (jg) now. Me <<-- Proud look. If it gets accepted do I get to learn the secret handshake ? > You don't have to be able > to debug device drivers just by looking at the code. That is a truly > rare talent, as most of us require a working sample device to do that. > Oh I don't have one, I just chose that device at random because I saw there was no support for it :) -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 2: 3: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f13.law10.hotmail.com [64.4.15.13]) by hub.freebsd.org (Postfix) with ESMTP id 2650437B402 for ; Tue, 22 Jan 2002 02:02:54 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Jan 2002 02:02:23 -0800 Received: from 192.35.17.21 by lw10fd.law10.hotmail.msn.com with HTTP; Tue, 22 Jan 2002 10:02:23 GMT X-Originating-IP: [192.35.17.21] From: "Vlado Korcek" To: freebsd-questions@FreeBSD.ORG Subject: Repeated DNS queries and responses Date: Tue, 22 Jan 2002 10:02:23 +0000 Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_6f29_785a_4afc" Message-ID: X-OriginalArrivalTime: 22 Jan 2002 10:02:23.0845 (UTC) FILETIME=[E37A5150:01C1A32B] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_6f29_785a_4afc Content-Type: text/plain; format=flowed Hi folks, Does anybody have any idea why DNS resolver is still repeating his query to DNS server(BIND 9.1.2) and DNS server is still repeating his responses. I am working with FreeBSD4.3 and using IPv6 environment. I tried for some test purposes in IPv6 environment "ping6" with the name: # ping6 Nr-1_v6.my.domain The global IPv6 address 2001::5 belongs to this name. I saw in Ethereal that the query from DNS client was sent and response from DNS server as well. But after this response is recieved, reverse query (PTR type)to DNS server is sent and this is repeating forever. Could somebody help me with this strange behaviour??? I've attached the output from Ethereal. Do I need some aditional configuration of DNS server or something else? Thx. ... Vladimir _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. ------=_NextPart_000_6f29_785a_4afc Content-Type: application/octet-stream; name="Ping6" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="Ping6" 1MOyoQIABAAAAAAAAAAAAP//AAABAAAAOmlMPLCfBgBhAAAAYQAAAAAEdhEs bAAwBQ94fIbdYARSZgArEUAgAQAAAAAAAAAAAAAAAAEjIAEAAAAAAAAAAAAA AAAABQkMADUAK9SD6uQBAAABAAAAAAAAB05yLTFfdjYCbXkGZG9tYWluAAAc AAE6aUw8oaYGALwAAAC8AAAAADAFD3h8AAR2ESxsht1gAAAAAIYRQCABAAAA AAAAAAAAAAAAAAUgAQAAAAAAAAAAAAAAAAEjADUJDACGK6nq5IWAAAEAAQAB AAIHTnItMV92NgJteQZkb21haW4AABwAAcAMABwAAQABUYAAECABAAAAAAAA AAAAAAAAAAXAFAACAAEAAVGAAAcETnItMcAUwEsAAQABAAFRgAAEwKgAKMBL ABwAAQABUYAAEP6AAAAAAAAAAgR2//4RLGw7aUw8MUoBAJcAAACXAAAAAAR2 ESxsADAFD3h8ht1gBFJoAGERQCABAAAAAAAAAAAAAAAAASMgAQAAAAAAAAAA AAAAAAAFCQ0ANQBhD0+L6wEAAAEAAAAAAAABNQEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAExATABMAEy A2lwNgNpbnQAAAwAATtpTDxhUgEA9QAAAPUAAAAAMAUPeHwABHYRLGyG3WAA AAAAvxFAIAEAAAAAAAAAAAAAAAAABSABAAAAAAAAAAAAAAAAASMANQkNAL/e jYvrhYAAAQABAAEAAgE1ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2ludAAADAAB wAwADAABAAFRgAATB05yLTVfdjYCbXkGZG9tYWluAMBEAAIAAQABUYAABwRO ci0xwG3AhAABAAEAAVGAAATAqAAowIQAHAABAAFRgAAQ/oAAAAAAAAACBHb/ /hEsbDtpTDzEpQEAlwAAAJcAAAAABHYRLGwAMAUPeHyG3WAEUmoAYRFAIAEA AAAAAAAAAAAAAAABIyABAAAAAAAAAAAAAAAAAAUJDgA1AGEPTYvsAQAAAQAA AAAAAAE1ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2ludAAADAABO2lMPLatAQD1 AAAA9QAAAAAwBQ94fAAEdhEsbIbdYAAAAAC/EUAgAQAAAAAAAAAAAAAAAAAF IAEAAAAAAAAAAAAAAAABIwA1CQ4Av96Li+yFgAABAAEAAQACATUBMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMQEwATABMgNpcDYDaW50AAAMAAHADAAMAAEAAVGAABMHTnItNV92NgJt eQZkb21haW4AwEQAAgABAAFRgAAHBE5yLTHAbcCEAAEAAQABUYAABMCoACjA hAAcAAEAAVGAABD+gAAAAAAAAAIEdv/+ESxsO2lMPEbEAQCXAAAAlwAAAAAE dhEsbAAwBQ94fIbdYARSbABhEUAgAQAAAAAAAAAAAAAAAAEjIAEAAAAAAAAA AAAAAAAABQkPADUAYQ9Li+0BAAABAAAAAAAAATUBMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMQEwATAB MgNpcDYDaW50AAAMAAE7aUw8H8wBAPUAAAD1AAAAADAFD3h8AAR2ESxsht1g AAAAAL8RQCABAAAAAAAAAAAAAAAAAAUgAQAAAAAAAAAAAAAAAAEjADUJDwC/ 3omL7YWAAAEAAQABAAIBNQEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNpbnQAAAwA AcAMAAwAAQABUYAAEwdOci01X3Y2Am15BmRvbWFpbgDARAACAAEAAVGAAAcE TnItMcBtwIQAAQABAAFRgAAEwKgAKMCEABwAAQABUYAAEP6AAAAAAAAAAgR2 //4RLGw8aUw80kkBAJcAAACXAAAAAAR2ESxsADAFD3h8ht1gBFJuAGERQCAB AAAAAAAAAAAAAAAAASMgAQAAAAAAAAAAAAAAAAAFCRAANQBhD0mL7gEAAAEA AAAAAAABNQEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNpbnQAAAwAATxpTDz9UQEA 9QAAAPUAAAAAMAUPeHwABHYRLGyG3WAAAAAAvxFAIAEAAAAAAAAAAAAAAAAA BSABAAAAAAAAAAAAAAAAASMANQkQAL/eh4vuhYAAAQABAAEAAgE1ATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATEBMAEwATIDaXA2A2ludAAADAABwAwADAABAAFRgAATB05yLTVfdjYC bXkGZG9tYWluAMBEAAIAAQABUYAABwROci0xwG3AhAABAAEAAVGAAATAqAAo wIQAHAABAAFRgAAQ/oAAAAAAAAACBHb//hEsbDxpTDxrVAEAlwAAAJcAAAAA BHYRLGwAMAUPeHyG3WAEUnAAYRFAIAEAAAAAAAAAAAAAAAABIyABAAAAAAAA AAAAAAAAAAUJEQA1AGEPR4vvAQAAAQAAAAAAAAE1ATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATEBMAEw ATIDaXA2A2ludAAADAABPGlMPCpcAQD1AAAA9QAAAAAwBQ94fAAEdhEsbIbd YAAAAAC/EUAgAQAAAAAAAAAAAAAAAAAFIAEAAAAAAAAAAAAAAAABIwA1CREA v96Fi++FgAABAAEAAQACATUBMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMQEwATABMgNpcDYDaW50AAAM AAHADAAMAAEAAVGAABMHTnItNV92NgJteQZkb21haW4AwEQAAgABAAFRgAAH BE5yLTHAbcCEAAEAAQABUYAABMCoACjAhAAcAAEAAVGAABD+gAAAAAAAAAIE dv/+ESxsPGlMPNddAQCXAAAAlwAAAAAEdhEsbAAwBQ94fIbdYARScgBhEUAg AQAAAAAAAAAAAAAAAAEjIAEAAAAAAAAAAAAAAAAABQkSADUAYQ9Fi/ABAAAB AAAAAAAAATUBMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMQEwATABMgNpcDYDaW50AAAMAAE8aUw8m2UB APUAAAD1AAAAADAFD3h8AAR2ESxsht1gAAAAAL8RQCABAAAAAAAAAAAAAAAA AAUgAQAAAAAAAAAAAAAAAAEjADUJEgC/3oOL8IWAAAEAAQABAAIBNQEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAExATABMAEyA2lwNgNpbnQAAAwAAcAMAAwAAQABUYAAEwdOci01X3Y2 Am15BmRvbWFpbgDARAACAAEAAVGAAAcETnItMcBtwIQAAQABAAFRgAAEwKgA KMCEABwAAQABUYAAEP6AAAAAAAAAAgR2//4RLGw8aUw88mYBAJcAAACXAAAA AAR2ESxsADAFD3h8ht1gBFJ0AGERQCABAAAAAAAAAAAAAAAAASMgAQAAAAAA AAAAAAAAAAAFCRMANQBhD0OL8QEAAAEAAAAAAAABNQEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAExATAB MAEyA2lwNgNpbnQAAAwAATxpTDxQbwEA9QAAAPUAAAAAMAUPeHwABHYRLGyG 3WAAAAAAvxFAIAEAAAAAAAAAAAAAAAAABSABAAAAAAAAAAAAAAAAASMANQkT AL/egYvxhYAAAQABAAEAAgE1ATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2ludAAA DAABwAwADAABAAFRgAATB05yLTVfdjYCbXkGZG9tYWluAMBEAAIAAQABUYAA BwROci0xwG3AhAABAAEAAVGAAATAqAAowIQAHAABAAFRgAAQ/oAAAAAAAAAC BHb//hEsbDxpTDzqcAEAlwAAAJcAAAAABHYRLGwAMAUPeHyG3WAEUnYAYRFA IAEAAAAAAAAAAAAAAAABIyABAAAAAAAAAAAAAAAAAAUJFAA1AGEPQYvyAQAA AQAAAAAAAAE1ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2ludAAADAABPGlMPKx4 AQD1AAAA9QAAAAAwBQ94fAAEdhEsbIbdYAAAAAC/EUAgAQAAAAAAAAAAAAAA AAAFIAEAAAAAAAAAAAAAAAABIwA1CRQAv95/i/KFgAABAAEAAQACATUBMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMQEwATABMgNpcDYDaW50AAAMAAHADAAMAAEAAVGAABMHTnItNV92 NgJteQZkb21haW4AwEQAAgABAAFRgAAHBE5yLTHAbcCEAAEAAQABUYAABMCo ACjAhAAcAAEAAVGAABD+gAAAAAAAAAIEdv/+ESxsPGlMPPh5AQCXAAAAlwAA AAAEdhEsbAAwBQ94fIbdYARSeABhEUAgAQAAAAAAAAAAAAAAAAEjIAEAAAAA AAAAAAAAAAAABQkVADUAYQ8/i/MBAAABAAAAAAAAATUBMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMQEw ATABMgNpcDYDaW50AAAMAAE8aUw8tIEBAPUAAAD1AAAAADAFD3h8AAR2ESxs ht1gAAAAAL8RQCABAAAAAAAAAAAAAAAAAAUgAQAAAAAAAAAAAAAAAAEjADUJ FQC/3n2L84WAAAEAAQABAAIBNQEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNpbnQA AAwAAcAMAAwAAQABUYAAEwdOci01X3Y2Am15BmRvbWFpbgDARAACAAEAAVGA AAcETnItMcBtwIQAAQABAAFRgAAEwKgAKMCEABwAAQABUYAAEP6AAAAAAAAA AgR2//4RLGw9aUw8AEoBAJcAAACXAAAAAAR2ESxsADAFD3h8ht1gBFJ6AGER QCABAAAAAAAAAAAAAAAAASMgAQAAAAAAAAAAAAAAAAAFCRYANQBhDz2L9AEA AAEAAAAAAAABNQEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNpbnQAAAwAAT1pTDwJ UgEA9QAAAPUAAAAAMAUPeHwABHYRLGyG3WAAAAAAvxFAIAEAAAAAAAAAAAAA AAAABSABAAAAAAAAAAAAAAAAASMANQkWAL/ee4v0hYAAAQABAAEAAgE1ATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATEBMAEwATIDaXA2A2ludAAADAABwAwADAABAAFRgAATB05yLTVf djYCbXkGZG9tYWluAMBEAAIAAQABUYAABwROci0xwG3AhAABAAEAAVGAAATA qAAowIQAHAABAAFRgAAQ/oAAAAAAAAACBHb//hEsbD1pTDxtVAEAlwAAAJcA AAAABHYRLGwAMAUPeHyG3WAEUnwAYRFAIAEAAAAAAAAAAAAAAAABIyABAAAA AAAAAAAAAAAAAAUJFwA1AGEPO4v1AQAAAQAAAAAAAAE1ATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATEB MAEwATIDaXA2A2ludAAADAABPWlMPDVcAQD1AAAA9QAAAAAwBQ94fAAEdhEs bIbdYAAAAAC/EUAgAQAAAAAAAAAAAAAAAAAFIAEAAAAAAAAAAAAAAAABIwA1 CRcAv955i/WFgAABAAEAAQACATUBMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMQEwATABMgNpcDYDaW50 AAAMAAHADAAMAAEAAVGAABMHTnItNV92NgJteQZkb21haW4AwEQAAgABAAFR gAAHBE5yLTHAbcCEAAEAAQABUYAABMCoACjAhAAcAAEAAVGAABD+gAAAAAAA AAIEdv/+ESxsPWlMPNddAQCXAAAAlwAAAAAEdhEsbAAwBQ94fIbdYARSfgBh EUAgAQAAAAAAAAAAAAAAAAEjIAEAAAAAAAAAAAAAAAAABQkYADUAYQ85i/YB AAABAAAAAAAAATUBMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMQEwATABMgNpcDYDaW50AAAMAAE9aUw8 kmUBAPUAAAD1AAAAADAFD3h8AAR2ESxsht1gAAAAAL8RQCABAAAAAAAAAAAA AAAAAAUgAQAAAAAAAAAAAAAAAAEjADUJGAC/3neL9oWAAAEAAQABAAIBNQEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAExATABMAEyA2lwNgNpbnQAAAwAAcAMAAwAAQABUYAAEwdOci01 X3Y2Am15BmRvbWFpbgDARAACAAEAAVGAAAcETnItMcBtwIQAAQABAAFRgAAE wKgAKMCEABwAAQABUYAAEP6AAAAAAAAAAgR2//4RLGw9aUw832YBAJcAAACX AAAAAAR2ESxsADAFD3h8ht1gBFKAAGERQCABAAAAAAAAAAAAAAAAASMgAQAA AAAAAAAAAAAAAAAFCRkANQBhDzeL9wEAAAEAAAAAAAABNQEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEx ATABMAEyA2lwNgNpbnQAAAwAAT1pTDxGbwEA9QAAAPUAAAAAMAUPeHwABHYR LGyG3WAAAAAAvxFAIAEAAAAAAAAAAAAAAAAABSABAAAAAAAAAAAAAAAAASMA NQkZAL/edYv3hYAAAQABAAEAAgE1ATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2lu dAAADAABwAwADAABAAFRgAATB05yLTVfdjYCbXkGZG9tYWluAMBEAAIAAQAB UYAABwROci0xwG3AhAABAAEAAVGAAATAqAAowIQAHAABAAFRgAAQ/oAAAAAA AAACBHb//hEsbD1pTDzccAEAlwAAAJcAAAAABHYRLGwAMAUPeHyG3WAEUoIA YRFAIAEAAAAAAAAAAAAAAAABIyABAAAAAAAAAAAAAAAAAAUJGgA1AGEPNYv4 AQAAAQAAAAAAAAE1ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2ludAAADAABPWlM PKN4AQD1AAAA9QAAAAAwBQ94fAAEdhEsbIbdYAAAAAC/EUAgAQAAAAAAAAAA AAAAAAAFIAEAAAAAAAAAAAAAAAABIwA1CRoAv95zi/iFgAABAAEAAQACATUB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMQEwATABMgNpcDYDaW50AAAMAAHADAAMAAEAAVGAABMHTnIt NV92NgJteQZkb21haW4AwEQAAgABAAFRgAAHBE5yLTHAbcCEAAEAAQABUYAA BMCoACjAhAAcAAEAAVGAABD+gAAAAAAAAAIEdv/+ESxsPWlMPO55AQCXAAAA lwAAAAAEdhEsbAAwBQ94fIbdYARShABhEUAgAQAAAAAAAAAAAAAAAAEjIAEA AAAAAAAAAAAAAAAABQkbADUAYQ8zi/kBAAABAAAAAAAAATUBMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MQEwATABMgNpcDYDaW50AAAMAAE9aUw8qoEBAPUAAAD1AAAAADAFD3h8AAR2 ESxsht1gAAAAAL8RQCABAAAAAAAAAAAAAAAAAAUgAQAAAAAAAAAAAAAAAAEj ADUJGwC/3nGL+YWAAAEAAQABAAIBNQEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNp bnQAAAwAAcAMAAwAAQABUYAAEwdOci01X3Y2Am15BmRvbWFpbgDARAACAAEA AVGAAAcETnItMcBtwIQAAQABAAFRgAAEwKgAKMCEABwAAQABUYAAEP6AAAAA AAAAAgR2//4RLGw9aUw8N4MBAJcAAACXAAAAAAR2ESxsADAFD3h8ht1gBFKG AGERQCABAAAAAAAAAAAAAAAAASMgAQAAAAAAAAAAAAAAAAAFCRwANQBhDzGL +gEAAAEAAAAAAAABNQEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNpbnQAAAwAAT1p TDzxigEA9QAAAPUAAAAAMAUPeHwABHYRLGyG3WAAAAAAvxFAIAEAAAAAAAAA AAAAAAAABSABAAAAAAAAAAAAAAAAASMANQkcAL/eb4v6hYAAAQABAAEAAgE1 ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATEBMAEwATIDaXA2A2ludAAADAABwAwADAABAAFRgAATB05y LTVfdjYCbXkGZG9tYWluAMBEAAIAAQABUYAABwROci0xwG3AhAABAAEAAVGA AATAqAAowIQAHAABAAFRgAAQ/oAAAAAAAAACBHb//hEsbD1pTDw8jAEAlwAA AJcAAAAABHYRLGwAMAUPeHyG3WAEUogAYRFAIAEAAAAAAAAAAAAAAAABIyAB AAAAAAAAAAAAAAAAAAUJHQA1AGEPL4v7AQAAAQAAAAAAAAE1ATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATEBMAEwATIDaXA2A2ludAAADAABPWlMPPqTAQD1AAAA9QAAAAAwBQ94fAAE dhEsbIbdYAAAAAC/EUAgAQAAAAAAAAAAAAAAAAAFIAEAAAAAAAAAAAAAAAAB IwA1CR0Av95ti/uFgAABAAEAAQACATUBMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMQEwATABMgNpcDYD aW50AAAMAAHADAAMAAEAAVGAABMHTnItNV92NgJteQZkb21haW4AwEQAAgAB AAFRgAAHBE5yLTHAbcCEAAEAAQABUYAABMCoACjAhAAcAAEAAVGAABD+gAAA AAAAAAIEdv/+ESxsPWlMPAqWAQCXAAAAlwAAAAAEdhEsbAAwBQ94fIbdYARS igBhEUAgAQAAAAAAAAAAAAAAAAEjIAEAAAAAAAAAAAAAAAAABQkeADUAYQ8t i/wBAAABAAAAAAAAATUBMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMQEwATABMgNpcDYDaW50AAAMAAE9 aUw83J0BAPUAAAD1AAAAADAFD3h8AAR2ESxsht1gAAAAAL8RQCABAAAAAAAA AAAAAAAAAAUgAQAAAAAAAAAAAAAAAAEjADUJHgC/3muL/IWAAAEAAQABAAIB NQEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAExATABMAEyA2lwNgNpbnQAAAwAAcAMAAwAAQABUYAAEwdO ci01X3Y2Am15BmRvbWFpbgDARAACAAEAAVGAAAcETnItMcBtwIQAAQABAAFR gAAEwKgAKMCEABwAAQABUYAAEP6AAAAAAAAAAgR2//4RLGw9aUw8W58BAJcA AACXAAAAAAR2ESxsADAFD3h8ht1gBFKMAGERQCABAAAAAAAAAAAAAAAAASMg AQAAAAAAAAAAAAAAAAAFCR8ANQBhDyuL/QEAAAEAAAAAAAABNQEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAExATABMAEyA2lwNgNpbnQAAAwAAT1pTDwkpwEA9QAAAPUAAAAAMAUPeHwA BHYRLGyG3WAAAAAAvxFAIAEAAAAAAAAAAAAAAAAABSABAAAAAAAAAAAAAAAA ASMANQkfAL/eaYv9hYAAAQABAAEAAgE1ATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2 A2ludAAADAABwAwADAABAAFRgAATB05yLTVfdjYCbXkGZG9tYWluAMBEAAIA AQABUYAABwROci0xwG3AhAABAAEAAVGAAATAqAAowIQAHAABAAFRgAAQ/oAA AAAAAAACBHb//hEsbD1pTDy2qAEAlwAAAJcAAAAABHYRLGwAMAUPeHyG3WAE Uo4AYRFAIAEAAAAAAAAAAAAAAAABIyABAAAAAAAAAAAAAAAAAAUJIAA1AGEP KYv+AQAAAQAAAAAAAAE1ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATEBMAEwATIDaXA2A2ludAAADAAB PWlMPIGwAQD1AAAA9QAAAAAwBQ94fAAEdhEsbIbdYAAAAAC/EUAgAQAAAAAA AAAAAAAAAAAFIAEAAAAAAAAAAAAAAAABIwA1CSAAv95ni/6FgAABAAEAAQAC ATUBMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMQEwATABMgNpcDYDaW50AAAMAAHADAAMAAEAAVGAABMH TnItNV92NgJteQZkb21haW4AwEQAAgABAAFRgAAHBE5yLTHAbcCEAAEAAQAB UYAABMCoACjAhAAcAAEAAVGAABD+gAAAAAAAAAIEdv/+ESxsPWlMPNSxAQCX AAAAlwAAAAAEdhEsbAAwBQ94fIbdYARSkABhEUAgAQAAAAAAAAAAAAAAAAEj IAEAAAAAAAAAAAAAAAAABQkhADUAYQ8ni/8BAAABAAAAAAAAATUBMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAEw ATABMQEwATABMgNpcDYDaW50AAAMAAE9aUw8n7kBAPUAAAD1AAAAADAFD3h8 AAR2ESxsht1gAAAAAL8RQCABAAAAAAAAAAAAAAAAAAUgAQAAAAAAAAAAAAAA AAEjADUJIQC/3mWL/4WAAAEAAQABAAIBNQEwATABMAEwATABMAEwATABMAEw ATABMAEwATABMAEwATABMAEwATABMAEwATABMAEwATABMAExATABMAEyA2lw NgNpbnQAAAwAAcAMAAwAAQABUYAAEwdOci01X3Y2Am15BmRvbWFpbgDARAAC AAEAAVGAAAcETnItMcBtwIQAAQABAAFRgAAEwKgAKMCEABwAAQABUYAAEP6A AAAAAAAAAgR2//4RLGw+aUw8YkoBAJcAAACXAAAAAAR2ESxsADAFD3h8ht1g BFKSAGERQCABAAAAAAAAAAAAAAAAASMgAQAAAAAAAAAAAAAAAAAFCSIANQBh DyWMAAEAAAEAAAAAAAABNQEwATABMAEwATABMAEwATABMAEwATABMAEwATAB MAEwATABMAEwATABMAEwATABMAEwATABMAExATABMAEyA2lwNgNpbnQAAAwA AQ== ------=_NextPart_000_6f29_785a_4afc-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 2:44:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20003.mail.yahoo.com (web20003.mail.yahoo.com [216.136.225.48]) by hub.freebsd.org (Postfix) with SMTP id E5E4E37B417 for ; Tue, 22 Jan 2002 02:44:41 -0800 (PST) Message-ID: <20020122104441.57562.qmail@web20003.mail.yahoo.com> Received: from [193.123.204.66] by web20003.mail.yahoo.com via HTTP; Tue, 22 Jan 2002 10:44:41 GMT Date: Tue, 22 Jan 2002 10:44:41 +0000 (GMT) From: =?iso-8859-1?q?Gavin=20Kenny?= Subject: NFS exports file To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Guys, I'm trying my hand at setting up NFS. I have followed the handbook and all the deamons seem to startup OK but when I edit my /etc/exports file and load it via: kill -HUP `cat /var/run/mountd.pid` I get the following message: "bad exports list line /home " I have one line in my exports file and have tried the following combinations without success; (Note I don't have DNS so I am using IP addresses) /home -alldirs 123.456.789.123 or /home 123.456.789.123 or /home -alldirs -network 123.456.789.123 or /usr/home -network 123.456.789.123 and all stations south. When I try to mount from the client I get "Permission denied", which I am assuming is because the exports list is not loading. so what am I doing wrong? cheers Gavin __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 2:59:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from shu.shu-oneline.org (host1.shu-paradigm.org [211.6.195.138]) by hub.freebsd.org (Postfix) with SMTP id 1ADA537B400 for ; Tue, 22 Jan 2002 02:59:43 -0800 (PST) Received: (qmail 14954 invoked by uid 519); 22 Jan 2002 08:01:15 -0000 Delivered-To: neo-shuparadigm@shu-oneline.org Received: (qmail 14951 invoked from network); 22 Jan 2002 08:01:14 -0000 Received: from unknown (HELO pcg-767-series) (192.168.1.100) by shu.shu-oneline.org with SMTP; 22 Jan 2002 08:01:14 -0000 Date: Tue, 22 Jan 2002 16:50:18 +0900 From: NeoParadigmShift To: neo-shuparadigm@shu-oneline.org Subject: planet project message mail paradigm ascension =?ISO-2022-JP?B?GyRCJDMkbCRPOS1KcyRHJDkbKEI=?= ................ Message-Id: <20020122165016.DF69.NEO@shu-oneline.org> MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-2022-JP" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.00.08 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG planet project $B$3$l$O9-Js$G$9(B http://www.shu-oneline.org/planet_P.html contact point tel:0176534584:E-mail:shuparadigm@infogeneratorpro.com paradigm work disseminator shu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 3:24:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20008.mail.yahoo.com (web20008.mail.yahoo.com [216.136.225.71]) by hub.freebsd.org (Postfix) with SMTP id 7B28837B417 for ; Tue, 22 Jan 2002 03:24:13 -0800 (PST) Message-ID: <20020122112412.21323.qmail@web20008.mail.yahoo.com> Received: from [193.123.204.66] by web20008.mail.yahoo.com via HTTP; Tue, 22 Jan 2002 11:24:12 GMT Date: Tue, 22 Jan 2002 11:24:12 +0000 (GMT) From: =?iso-8859-1?q?Gavin=20Kenny?= Subject: Re: VPN with dynamic IP's To: questions@freebsd.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > -----Original Message----- > From: Wayne Pascoe [mailto:freebsd@molemanarmy.com] > Sent: 21 January 2002 19:12 > To: freebsd-questions@freebsd.org > Subject: VPN with dynamic IP's > > > Hi all, > > Quick question about building a VPN. We have the > following > situation. Our office machine (and firewall) have > fixed IP > addresses. We also have several staff who have ADSL > connections at > home with dynamic IP's. > > Our current corporate firewall (Raptor) is > apparantly unable to > provide VPN services with dynamic IP addresses. This > is what our ops > people tell me. > > Can IPSEC provide this kind of solution ? Shouldn't > this be doable > using the private keys to authenticate ? I don't think it is doable just with IPSec as IPSec uses IP addresses to identify packets and therefore know what processing to do to them (encrypt/decrypt)IPSec does not even think about keys until it has identified a packet by it's IP address. IKE the IPSec key management deamon (called racoon on FreeBSD) does pass keys between hosts but I seem to remember that it again uses IP addresses as the initial means of working out if you are worth talking to. If you used a FreeBSD machine as your VPN gateway it could be concievable to write a little script, where your machine with a dynamic address could find out it's IP address and then send this to the firewall as a PGP protected email or something (ssh I guess, I've no experience of this) the firewall would then decrypt the new IP address using PGP and could then alter its SA/SP tables accordingly, racoon would then be automatically called when you first tried to connect and a key exchange would happen and hey presto secure comms. hope this is usefull cheers Gavin __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 3:41:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from bean.epix.net (bean.epix.net [199.224.64.57]) by hub.freebsd.org (Postfix) with ESMTP id AA68937B400 for ; Tue, 22 Jan 2002 03:41:52 -0800 (PST) Received: from there (clsm-26ppp217.epix.net [209.74.26.217]) by bean.epix.net (8.12.1/2001112001/PL) with SMTP id g0MBfovv001177 for ; Tue, 22 Jan 2002 06:41:51 -0500 (EST) Message-Id: <200201221141.g0MBfovv001177@bean.epix.net> Content-Type: text/plain; charset="iso-8859-1" From: Dave Kaufman Reply-To: daverk@epix.net To: freebsd-questions@freebsd.org Subject: virus scanner Date: Tue, 22 Jan 2002 06:41:38 -0500 X-Mailer: KMail [version 1.3] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG is there a recommended virus scanner for freebsd? and for that matter how necessary is it for a stand alone home unit running freebsd 4.4 Release? it's a dual boot to Win98 where i have Norton running. i realise that won't protect the freebsd side but how much protection does the freebsd side need? thanks Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 3:46:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lima.epix.net (lima.epix.net [199.224.64.56]) by hub.freebsd.org (Postfix) with ESMTP id 7E58A37B404 for ; Tue, 22 Jan 2002 03:46:53 -0800 (PST) Received: from there (clsm-26ppp217.epix.net [209.74.26.217]) by lima.epix.net (8.12.1/2001112001/PL) with SMTP id g0MBkp3I004083 for ; Tue, 22 Jan 2002 06:46:52 -0500 (EST) Message-Id: <200201221146.g0MBkp3I004083@lima.epix.net> Content-Type: text/plain; charset="iso-8859-1" From: Dave Kaufman Reply-To: daverk@epix.net To: freebsd-questions@freebsd.org Subject: ipfw settings Date: Tue, 22 Jan 2002 06:46:39 -0500 X-Mailer: KMail [version 1.3] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG i use my freebsd on a stand alone home computer with a dial up connection to my isp. it's connected for 6 or more hours a day. i'm thinking i should implement some protection. i've read Dru Lavigne's articles but am unclear on one point. is there any difference in the devices referenced in the rulesets ie. ed0 versus a dialup connection. it appears the articles are on a network connection (ie. through a nic). does this matter? thanks Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 4: 0:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rambo.simx.org (rambo.simx.org [194.17.208.54]) by hub.freebsd.org (Postfix) with ESMTP id 5F7E037B405 for ; Tue, 22 Jan 2002 04:00:42 -0800 (PST) Received: from rambo.simx.org (malin.twenty4help.se [195.67.108.195]) by rambo.simx.org (8.11.6/8.11.6) with ESMTP id g0MC0VX47173; Tue, 22 Jan 2002 13:00:35 +0100 (CET) (envelope-from listsub@rambo.simx.org) Message-ID: <3C4D5464.2020203@rambo.simx.org> Date: Tue, 22 Jan 2002 13:00:36 +0100 From: "Roger 'Rocky' Vetterberg" User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: daverk@epix.net Cc: freebsd-questions@FreeBSD.ORG Subject: Re: virus scanner References: <200201221141.g0MBfovv001177@bean.epix.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dave Kaufman wrote: >is there a recommended virus scanner for freebsd? and for that matter how >necessary is it for a stand alone home unit running freebsd 4.4 Release? it's >a dual boot to Win98 where i have Norton running. i realise that won't >protect the freebsd side but how much protection does the freebsd side need? > >thanks >Dave > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > AFAIK, there is not a single virus out there that has any effect on a FreeBSD machine. The only reason I know to run antivirus on FreeBSD is on mailservers, to protect the poor windows lusers from getting virus in their Outlook Express inbox. -- R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 4:51: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from server1.wojo.com (server1.wojo.com [216.42.139.184]) by hub.freebsd.org (Postfix) with ESMTP id B35BD37B400; Tue, 22 Jan 2002 04:50:59 -0800 (PST) Received: from ishadow (pc3-oxfo3-0-cust229.oxf.cable.ntl.com [213.107.68.229]) by server1.wojo.com (Postfix) with ESMTP id 184D43B50; Tue, 22 Jan 2002 07:50:52 -0500 (EST) Reply-To: From: "Robin Breathe" To: Cc: Subject: I/O APIC and Uniprocessor support Date: Tue, 22 Jan 2002 12:50:51 -0000 Message-ID: <000501c1a343$6d2ff3c0$026ca8c0@ishadow> 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.3416 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Reading up on 'option APIC', it seems that the intention of keeping it distinct from 'option SMP' was to support future uniprocessor boards that had this feature. Well that time has come ;) The Asus TUSL2-C (based on Intel 815ep chipset, and others based on this chipset I would guess) has supported APIC mode since bios revision 1008 (07Aug2001), but nothing seems to have been done to solidify support for compilation with 'option APIC' and without 'option SMP'. I tried to compile with -STABLE from yesterday, and got the a lot of errors (attached). http://ftp.cvut.cz/Asus/mb/sock370/815ep/tusl2-c/index.txt has the bios revisions, including the introduction of I/O APIC mode. I have shared devices, and thus I think it would be great to get this working. I would be delighted to help test this code out if anyone can supply some patches to get it working. Any ideas? Robin Breathe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 4:54: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from encephalon.de (p3E9E19B8.dip0.t-ipconnect.de [62.158.25.184]) by hub.freebsd.org (Postfix) with ESMTP id 47A6C37B402 for ; Tue, 22 Jan 2002 04:53:54 -0800 (PST) Received: (from bsd@localhost) by encephalon.de (8.11.6/8.11.6) id g0MComL00433; Tue, 22 Jan 2002 13:50:48 +0100 (CET) (envelope-from bsd) Date: Tue, 22 Jan 2002 13:50:47 +0100 From: Roger Kaputtnik To: ac@campbell.org.uk Cc: freebsd-questions@freebsd.org Subject: Re: user-ppp Message-ID: <20020122135047.A416@encephalon.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD encephalon.de 4.5-RC FreeBSD 4.5-RC Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi. Hmm, maybe you try my configuration of ppp.conf. It works without a problem on FreeBSD 4.4 and 4.5 RC2 --> default: set device /dev/cuaa0 set speed 115200 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \ \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT" internet: set phone NUMBER OF PROVIDER set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 set timeout 180 # 3 minute idle timer (the default) add default HISADDR # Add a (sticky) default route enable dns # request DNS info (for resolv.conf) set authname YOUR AUTHENTICATION set authkey YOUR PASSWORD <-- I have NO line: set log Phase Chat LCP IPCP CCP tun command Also NO: ident user-ppp VERSION (built COMPILATIONDATE) Maybe.... Axel -- encephalon.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 5: 6:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mile.nevermind.kiev.ua (freebsddiary.org.ua [213.186.199.26]) by hub.freebsd.org (Postfix) with ESMTP id EAB2F37B400; Tue, 22 Jan 2002 05:06:23 -0800 (PST) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.11.6/8.11.4) id g0MD6Ch04555; Tue, 22 Jan 2002 15:06:12 +0200 (EET) (envelope-from never) Date: Tue, 22 Jan 2002 15:06:11 +0200 From: Nevermind To: freebsd-questions@freebsd.org Cc: freebsd-ports@freebsd.org Subject: Is there any QuickTime player for FreeBSD? Message-ID: <20020122130611.GA4492@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG NB: I'm not subscribed to -questions, so, please Cc: me on replies. I'd like to know is there any QuickTime player for FreeBSD or even Linux binary so that I could watch QuickTime movies? -- NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 5:15:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from eken2.eken.phys.nagoya-u.ac.jp (eken2.eken.phys.nagoya-u.ac.jp [133.6.121.2]) by hub.freebsd.org (Postfix) with ESMTP id 2E42B37B41A; Tue, 22 Jan 2002 05:15:44 -0800 (PST) Received: from eken3.eken.phys.nagoya-u.ac.jp (eken3 [133.6.121.3]) by eken2.eken.phys.nagoya-u.ac.jp (8.11.6+3.4W/3.7W-E) with ESMTP id g0MDFXB12672; Tue, 22 Jan 2002 22:15:33 +0900 (JST) Date: Tue, 22 Jan 2002 22:15:33 +0900 Message-ID: From: Yoichi NAKAYAMA To: Nevermind Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Is there any QuickTime player for FreeBSD? In-Reply-To: <20020122130611.GA4492@nevermind.kiev.ua> References: <20020122130611.GA4492@nevermind.kiev.ua> User-Agent: Wanderlust/2.9.5 (Unchained Melody) EMIKO/1.14.1 (Choanoflagellata) LIMIT/1.14.7 (=?ISO-2022-JP?B?GyRCRiMwZjt7GyhC?=) APEL/10.3 Emacs/20.7 (i686-pc-linux-gnu) MULE/4.0 (=?ISO-2022-JP?B?GyRCMlYxYxsoQg==?=) Organization: E-ken, Dept. of Physics, Nagoya University, JAPAN X-Face: wLZki+KbGjgKe0,<&3g*rA|R**vj[a8L%[v]ecJh1L(Uqm|LBx;v7Nq7n%?0d.aS]F#[~C\!{m?m,C&#U5}$_pZvBR>5VmX1Ol0`P\M-U8`sUF<5Quj'z&zzW8r|Zl9#W7Wut3duYzpKrP{n+AbarKtJ!i"Al7]P;-?[=iBZa*]r=>C':0~JECx]IH+RXq=/hUX}MB9e]oQKBxsDd/ MIME-Version: 1.0 (generated by EMIKO 1.14.1 - "Choanoflagellata") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Tue, 22 Jan 2002 15:06:11 +0200, Nevermind wrote: > > NB: I'm not subscribed to -questions, so, please Cc: me on replies. > > I'd like to know is there any QuickTime player for FreeBSD or even Linux > binary so that I could watch QuickTime movies? xanim or quicktime4linux might be. -- Yoichi Nakayama To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 5:35:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id 74B1037B400 for ; Tue, 22 Jan 2002 05:35:10 -0800 (PST) Received: from SAGEONE (adsl-208-191-227-30.dsl.crchtx.swbell.net [208.191.227.30]) by sage-american.com (8.9.3/8.9.3) with SMTP id HAA20581 for ; Tue, 22 Jan 2002 07:35:06 -0600 (CST) Message-Id: <3.0.5.32.20020122073502.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Tue, 22 Jan 2002 07:35:02 -0600 To: freebsd-questions@freebsd.org From: jacks@sage-american.com Subject: The ppp.linkup file Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I run DSL on one machine using PPPoE via ppp on 4.4-stable using automaic DDIAL so that any disconnectes will reconnect. Of course, I would like to know when there are any connection breaks. For this purpose, there is a "ppp.linkup" file that is part of the distribution that says it will: ######################################################## # Example of ppp.linkup file # # This file is checked when ppp establishes a connection. # ppp searches the labels in this file as follows: # # 1) The label that matches the IP number assigned to our side. # # 2) The label specified on the command line to ppp. # 3) If no label has been found, use MYADDR if it exists. # ######################################################### Well, I have the following single command line place in this file to launch a script that tells me about any new reconnects, but it is not being run. The syntax is pretty crytic, but follows the same syntax of the one above it that is supposed to launch a sound file, but NADA.... ! /bin/sh /etc/ppp/linkup.sh Here's the examples in the file, plus my own command as per #2 above. pmdemand: #!bg /etc/ppp/ppp.etherup.pmdemand #! sh -c "cat /etc/ppp/linkup.au >/dev/audio" ! /bin/sh /etc/ppp/linkup.sh The "linkup.sh" is made executable and runs, so it should run okay if this thing would just work. Does anyone have a suggestion about why this ppp.linkup file is not running my script??? Thanks for any ideas. Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 5:38: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail5.registeredsite.com (mail5.registeredsite.com [64.224.9.14]) by hub.freebsd.org (Postfix) with ESMTP id C8E8C37B405 for ; Tue, 22 Jan 2002 05:38:00 -0800 (PST) Received: from mail.twtdist.com (mail.twtdist.com [216.247.29.19]) by mail5.registeredsite.com (8.11.6/8.11.4) with ESMTP id g0MCida04551 for ; Tue, 22 Jan 2002 07:45:26 -0500 Received: from TWT30570RBA9YJ [216.247.29.19] by mail.twtdist.com (SMTPD32-6.06) id AACB5026011E; Tue, 22 Jan 2002 08:36:11 -0500 Message-ID: <000c01c1a349$7e6e6a30$160aa8c0@TWT30570RBA9YJ> Reply-To: "Michael Gruver" From: "Michael Gruver" To: Subject: How to use APM to sleep your harddrive Date: Tue, 22 Jan 2002 08:34:18 -0500 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0009_01C1A31F.952BE4C0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0009_01C1A31F.952BE4C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Does anyone have any idea how to activate the Power Management features of your IDE harddrive under FreeBSD 4.4 to power down you hard drive after a time interval. I have set the Bios setting and compiled the Kernel with apm0 and made sure the APM daemon was started, however the harddrive still spins and spins. Any ideas? Regards, Michael Gruver mgruver@twtdist.com ------=_NextPart_000_0009_01C1A31F.952BE4C0 Content-Type: text/x-vcard; name="Michael Gruver.vcf" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Michael Gruver.vcf" BEGIN:VCARD VERSION:2.1 N:Gruver;Michael FN:Michael Gruver ORG:TWT Distributing, Inc. TEL;WORK;VOICE:704-588-1746 x205 TEL;PAGER;VOICE:704-562-4939 TEL;WORK;FAX:704-587-0489 ADR;WORK:;800-849-7898;11107-C South Commerce = Blvd.;Charlotte;NC;28273;USA LABEL;WORK;ENCODING=3DQUOTED-PRINTABLE:800-849-7898=3D0D=3D0A11107-C = South Commerce Blvd.=3D0D=3D0ACharlotte, NC 28273=3D0D=3D =3D0AUSA URL;WORK:http://www.twtdist.com EMAIL;PREF;INTERNET:mgruver@twtdist.com REV:20020122T133418Z END:VCARD ------=_NextPart_000_0009_01C1A31F.952BE4C0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 5:56:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.radzinschi.com (pcp284510pcs.owngsm01.md.comcast.net [68.54.240.17]) by hub.freebsd.org (Postfix) with ESMTP id 5443437B404 for ; Tue, 22 Jan 2002 05:56:18 -0800 (PST) Received: from localhost (marco@localhost.radzinschi.com [127.0.0.1]) by mail.radzinschi.com (8.11.6/8.11.6) with ESMTP id g0MDuAX07716 for ; Tue, 22 Jan 2002 08:56:10 -0500 (EST) (envelope-from marco@radzinschi.com) Date: Tue, 22 Jan 2002 08:56:10 -0500 (EST) From: Marco Radzinschi To: FreeBDS-Questions Subject: NTP behind NAT box? Message-ID: <20020122085250.N7705-100000@mail.radzinschi.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello: I am running ntpd on a machine behind a router which is taking care of NAT. I have the router forwarding UDP packets on port 123 to said machine, and NTP is working. Now, do I really need to be forwarding UDP/123 to that machine, or will ntpd work without it? I am assuming it won't, as I have had trouble with it before, but I want to make sure. Thanks, Marco Radzinschi E-Mail: marco@radzinschi.com AOL IM: CrackedBoy Running FreeBSD 4.4-RELEASE i386 8:52AM up 2 days, 10:15, 1 user, load averages: 1.08, 1.02, 1.01 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 5:58: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail3.panix.com (mail3.panix.com [166.84.0.167]) by hub.freebsd.org (Postfix) with ESMTP id 1D8BC37B402 for ; Tue, 22 Jan 2002 05:57:58 -0800 (PST) Received: from panix2.panix.com (panix2.panix.com [166.84.1.2]) by mail3.panix.com (Postfix) with ESMTP id 4FE929823D for ; Tue, 22 Jan 2002 08:57:57 -0500 (EST) Received: (from stanb@localhost) by panix2.panix.com (8.11.3nb1/8.8.8/PanixN1.0) id g0MDvvs09823 for freebsd-questions@freebsd.org; Tue, 22 Jan 2002 08:57:57 -0500 (EST) Message-Id: <200201221357.g0MDvvs09823@panix2.panix.com> Subject: winesetuptk To: freebsd-questions@freebsd.org (Free BSD Questions list) Date: Tue, 22 Jan 2002 08:57:57 -0500 (EST) From: "Stan Brown" X-Mailer: ELM [version 2.5 PL6] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I juste used winsetuptk to actually get a usable wine environemnt on a Debian machine. This is the first time I have ever managed to get wine to actually do anything. I would like to get wine setup on FreeBSD. Has anyone ported this to FreeBSD? I tried runing it in the Linux emulation mode, but some libs were not present. -- "They that would give up essential liberty for temporary safety deserve neither liberty nor safety." -- Benjamin Franklin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 6: 0:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from heaven.gigo.com (gigo.com [207.173.11.186]) by hub.freebsd.org (Postfix) with ESMTP id 4187037B404 for ; Tue, 22 Jan 2002 06:00:18 -0800 (PST) Received: from 200.193.224.206 (unknown [200.193.224.206]) by heaven.gigo.com (Postfix) with ESMTP id ADBC8B8D5 for ; Tue, 22 Jan 2002 06:00:15 -0800 (PST) Received: (qmail 1667 invoked by uid 1001); 22 Jan 2002 14:00:16 -0000 Message-ID: <20020122140016.1666.qmail@exxodus.fedaykin.here> Date: Tue, 22 Jan 2002 11:59:54 -0200 From: Mario Sergio Fujikawa Ferreira To: Yoichi NAKAYAMA Cc: Nevermind , freebsd-questions@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: Is there any QuickTime player for FreeBSD? References: <20020122130611.GA4492@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from yoichi@eken.phys.nagoya-u.ac.jp on Tue, Jan 22, 2002 at 10:15:11PM +0900 X-Operating-System: FreeBSD 4.5-RC X-Disclaimer: I hope you find what you are looking for... in life :) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 10:15:11PM +0900, Yoichi NAKAYAMA wrote: > At Tue, 22 Jan 2002 15:06:11 +0200, > Nevermind wrote: > > > > NB: I'm not subscribed to -questions, so, please Cc: me on replies. > > > > I'd like to know is there any QuickTime player for FreeBSD or even Linux > > binary so that I could watch QuickTime movies? > > xanim or quicktime4linux might be. Well, there are also oqtplayer and recent mplayer. However, none of the aforementioned will play Sorenson encoded QuickTime movies since Apple holds Copyrights on that codec. :( Regards, -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." Computer Science Undergraduate | FreeBSD Committer | CS Developer flames to beloved devnull@someotherworldbeloworabove.org feature, n: a documented bug | bug, n: an undocumented feature To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 6: 4:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from pom.INS.cwru.edu (pom.INS.CWRU.Edu [129.22.8.234]) by hub.freebsd.org (Postfix) with ESMTP id 8D1F837B43B for ; Tue, 22 Jan 2002 06:04:28 -0800 (PST) Received: from po.cwru.edu (adsl-64-108-88-128.dsl.clevoh.ameritech.net [64.108.88.128]) by pom.INS.cwru.edu with ESMTP (8.8.8+cwru/CWRU-1.0-smtprelay) id JAA24202; Tue, 22 Jan 2002 09:04:27 -0500 (EST) (from sjh13@po.cwru.edu for ) Message-ID: <3C4D716B.9040108@po.cwru.edu> Date: Tue, 22 Jan 2002 09:04:27 -0500 From: Steven Huwig User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.7) Gecko/20020107 X-Accept-Language: en-us MIME-Version: 1.0 To: questions@FreeBSD.ORG Subject: XFree86 4.2.0 / Matrox G400 / DRI References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all, Under XFree86-4.1.0 I had DRI working using the drm-kmod port and WITH_MATROX_GXX_DRIVER="YES" when building X from ports. I installed 4.2.0 and when the dri module is enabled, my machine hangs and then reboots itself. Has anyone else seen this, and is it an issue with my XFree86, my FreeBSD, or possibly a hardware incompatibility? My mobo is an Abit KT7. -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 6: 9: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.ruraltel.net (mail.ruraltel.net [24.225.0.34]) by hub.freebsd.org (Postfix) with ESMTP id B928E37B41D for ; Tue, 22 Jan 2002 06:08:59 -0800 (PST) Received: from darryl (p189n31.ruraltel.net [24.225.31.189]) by mail1.ruraltel.net (8.11.2/8.11.2) with SMTP id g0MEvLp03044 for ; Tue, 22 Jan 2002 08:57:21 -0600 Reply-To: From: "Darryl Hoar" To: Subject: Dell Latitude CPi + FreeBSD 4.4? Date: Tue, 22 Jan 2002 08:11:30 -0600 Message-ID: <001501c1a34e$b15d41a0$0701a8c0@darryl> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.3018.1300 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Greetings, I just acquired a Dell Latitude Cpi. I want to Dual Boot this with Win2K and Freebsd 4.4. Anybody done this? Anybody have Freebsd running on this notebook? thanks, Darryl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 6:27:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from marble.dublin.wbtsystems.com (marble.dublin.wbtsystems.com [193.120.231.8]) by hub.freebsd.org (Postfix) with ESMTP id 60B9C37B404 for ; Tue, 22 Jan 2002 06:27:27 -0800 (PST) Received: from spiral (spiral.dublin.wbtsystems.com [193.120.231.190]) (authenticated) by marble.dublin.wbtsystems.com (8.11.6/8.11.6) with ESMTP id g0MERPW85913 for ; Tue, 22 Jan 2002 14:27:25 GMT From: "Barry Byrne" To: Subject: which version of sendmail with release 4.5 Date: Tue, 22 Jan 2002 14:27:24 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi: I haven't installed any of the release candidates yet, but was wondering which version of sendmail is intended for inclusion in release 4.5? Thanks in advance, Barry -- Barry Byrne, IT Manager, WBT Systems, Block 2, Harcourt Centre Harcourt Street, Dublin 2, Ireland To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 6:43: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id 00F2C37B404; Tue, 22 Jan 2002 06:43:02 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id DA0BB9B19; Tue, 22 Jan 2002 09:42:41 -0500 (EST) Date: Tue, 22 Jan 2002 09:42:41 -0500 From: Will Andrews To: Liu Siwei Cc: freebsd-questions@freebsd.org, kde@FreeBSD.org Subject: Re: chinput can't work on KDE2.2.2 Message-ID: <20020122094241.J18609@squall.waterspout.com> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Liu Siwei , freebsd-questions@freebsd.org, kde@FreeBSD.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 08:56:13AM +0000, Liu Siwei wrote: This question is not appropriate for the -current list. I'm expanding this to include the maintainers of the KDE ports to see if anyone else has an idea what's going on. > I have a question about FreeBSD's locale. I use the zh_CN.EUC locale to > let my FreeBSD support Simplied Chinese. It's all right in gnome 1.4. But in > > recent version of KDE(aka. KDE-2.2.2), I can't set zh_CN.EUC locale for it. > For I have select the country is Asia-China, language is Simplied Chinese, > code is gb2312.1980. I need not set any locale in my environment to display > Simplied Chinese at all. But for I have not set locale, I can't use chinput > in KDE. So I set my locale to zh_CN.EUC in my $HOME/.xinitrc. But when I > restart my KDE, it can't display Chinese word proper! in kedit, kwrite, etc, > > I can use chinput through I can't input any Chinese word proper. If I set my > > locale to zh_CN.GB2312, zh_CN.GBK or nothing, the KDE can display Chinese > word proper, but I can't use chinput. > So, how to set ocale to let chinput work under KDE2.2.2? > A very inportant QUESTION is: why FreeBSD want zh_CN.EUC while KDE is > not? > My machine is AMD-K7 700, FreeBSD-current,all software are installed > from ports(sources). I'm sorry but I can't help with this specific problem since I do not use any locale other than the default. :( -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 6:47:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Interjet.citystamp.com (host-64-65-195-99.choiceone.net [64.65.195.99]) by hub.freebsd.org (Postfix) with ESMTP id EAC5D37B400; Tue, 22 Jan 2002 06:47:04 -0800 (PST) Received: (from daemon@localhost) by Interjet.citystamp.com (8.8.5/8.8.5) id KAA13389; Tue, 22 Jan 2002 10:13:16 -0500 (EST) Received: from UNKNOWN(64.65.195.58), claiming to be "[192.168.2.113]" via SMTP by Interjet.citystamp.com, id smtpdC13387; Tue Jan 22 15:13:13 2002 User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Tue, 22 Jan 2002 09:44:05 -0500 Subject: Re: The tower of Hanoi From: bind9 To: "Crist J . Clark" Cc: Bob Hall , FreeBSD Message-ID: In-Reply-To: <20020122010100.F77330@blossom.cjclark.org> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG on 1/22/02 4:01 AM, Crist J . Clark at cjc@FreeBSD.ORG wrote: > On Mon, Jan 21, 2002 at 04:44:43PM -0500, Matthew P. Marino wrote: >> Well, this was in the output of a "dump" command that was trying to dump to >> an >> active atapi hard disk. >> >> dump -f /web/backups/full-1-20-02 /usr/local > > Bet you're trying to dump an MS-DOS filesystem. GASP!!! I don't think so, fstab doesn't think so. But obviously there is something not good about that disk configuration. Must have configured wrong. I'll do the best I can with "tar". Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 6:59:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from scaup.prod.itd.earthlink.net (scaup.mail.pas.earthlink.net [207.217.120.49]) by hub.freebsd.org (Postfix) with ESMTP id A526137B416 for ; Tue, 22 Jan 2002 06:59:25 -0800 (PST) Received: from dialup-209.245.141.65.dial1.sanjose1.level3.net ([209.245.141.65] helo=blossom.cjclark.org) by scaup.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16T2NV-0005Ye-00; Tue, 22 Jan 2002 06:59:16 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g0MEueF81528; Tue, 22 Jan 2002 06:56:40 -0800 (PST) (envelope-from cjc) Date: Tue, 22 Jan 2002 06:56:12 -0800 From: "Crist J . Clark" To: bind9 Cc: Bob Hall , FreeBSD Subject: Re: The tower of Hanoi Message-ID: <20020122065612.H77330@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20020122010100.F77330@blossom.cjclark.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from bind9@citystamp.com on Tue, Jan 22, 2002 at 09:44:05AM -0500 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 09:44:05AM -0500, bind9 wrote: > on 1/22/02 4:01 AM, Crist J . Clark at cjc@FreeBSD.ORG wrote: > > > On Mon, Jan 21, 2002 at 04:44:43PM -0500, Matthew P. Marino wrote: > >> Well, this was in the output of a "dump" command that was trying to dump to > >> an > >> active atapi hard disk. > >> > >> dump -f /web/backups/full-1-20-02 /usr/local > > > > Bet you're trying to dump an MS-DOS filesystem. > > GASP!!! > > I don't think so, fstab doesn't think so. But obviously there is something > not good about that disk configuration. Must have configured wrong. I'll do > the best I can with "tar". Thanks. You'll also get that is you try to do something like dump a directory. Is there a filesystem mounted at /usr/local? -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 7:34:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sahiro.homeip.net (p76-dna05sawada.niigata.ocn.ne.jp [211.122.195.204]) by hub.freebsd.org (Postfix) with ESMTP id 98C7B37B405; Tue, 22 Jan 2002 07:34:12 -0800 (PST) Date: Wed, 23 Jan 2002 00:34:06 +0900 From: SASAKI Katuhiro Subject: Re: [kde-freebsd] Re: chinput can't work on KDE2.2.2 To: Will Andrews Cc: Liu Siwei , freebsd-questions@freebsd.org, kde@FreeBSD.org Message-ID: <3c4d866e.6574%sahiro@crest.ocn.ne.jp> In-Reply-To: <20020122094241.J18609@squall.waterspout.com> References: <20020122094241.J18609@squall.waterspout.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi. In <20020122094241.J18609@squall.waterspout.com>, Will Andrews wrote: >On Tue, Jan 22, 2002 at 08:56:13AM +0000, Liu Siwei wrote: > >This question is not appropriate for the -current list. I'm >expanding this to include the maintainers of the KDE ports to see >if anyone else has an idea what's going on. > >> I have a question about FreeBSD's locale. I use the zh_CN.EUC locale to >> let my FreeBSD support Simplied Chinese. It's all right in gnome 1.4. But in >> >> recent version of KDE(aka. KDE-2.2.2), I can't set zh_CN.EUC locale for it. > I think this trouble is because of a problem in Qt 2.3.1. I have found the problem in QTextCodec and send a patch to qt-bugs@trolltech.com. And I received a reply that says the problem will be fixed in Qt-2.3.3 and Qt 3.0.2. The patch I send is below. Please test this. --- qt-2.3.1/src/tools/qeucjpcodec.cpp.orig Wed Jun 13 17:53:47 2001 +++ qt-2.3.1/src/tools/qeucjpcodec.cpp Sat Dec 22 20:55:38 2001 @@ -317,8 +317,8 @@ } // there exists ja_JP.EUC, ko_KR.EUC, zh_CN.EUC and zh_TW.EUC // so "euc" may or may not be Japanese EUC. - if (qstricmp(p, "euc") == 0) { - return ja ? score + 4 : 1; + if (qstricmp(p, "euc") == 0 && ja) { + return score + 4; } } return QTextCodec::heuristicNameMatch(hint); --- qt-2.3.1/src/tools/qeuckrcodec.cpp.orig Wed Jun 13 17:53:47 2001 +++ qt-2.3.1/src/tools/qeuckrcodec.cpp Sat Dec 22 20:55:38 2001 @@ -221,8 +221,8 @@ if (qstricmp(p, "eucKR") == 0) { return score + 4; } - else if (qstricmp(p, "euc") == 0) { - return ko ? score + 4 : 1; + else if (qstricmp(p, "euc") == 0 && ko) { + return score + 4; } } return QTextCodec::heuristicNameMatch(hint); --- qt-2.3.1/src/tools/qgbkcodec.cpp.orig Wed Jun 13 17:53:47 2001 +++ qt-2.3.1/src/tools/qgbkcodec.cpp Sat Dec 22 20:55:38 2001 @@ -187,6 +187,8 @@ return score + 4; else if (qstricmp(p, "GB2312") == 0) return score + 2; + else if (qstricmp(p, "euc") == 0 && zh) + return score + 4; } return QTextCodec::heuristicNameMatch(hint); } ================================================================ SASAKI Katuhiro mailto: sahiro@crest.ocn.ne.jp ================================================================ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 7:39:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from darkstar.wave-net.com.br (ipcorp-C8B16E82.ssa.terraempresas.com.br [200.177.110.130]) by hub.freebsd.org (Postfix) with ESMTP id E108C37B400 for ; Tue, 22 Jan 2002 07:39:11 -0800 (PST) Received: from jcrr (wv-acc2-ssa-C8B06E01.brdterra.com.br [200.176.110.1]) by darkstar.wave-net.com.br (8.11.2/8.11.0) with SMTP id g0MFgbR01315; Tue, 22 Jan 2002 13:42:37 -0200 Message-ID: <000b01c1a363$2edb0540$2c00a8c0@intranet.wavenet.com.br> From: "Joao Carlos" To: Subject: No Buffer space avaliable for only ONE IP ADDRESS Date: Tue, 22 Jan 2002 13:38:11 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I´m having a curious and horrible problem. I'm running a FreeBSD 4.4-R in a PIII 1.0Ghz 128MB RAM. This machine acts only as a router with natd. The problem is that when I ping a determined IP address (for example, 12.12.12.12) that is a certain machine on my network, it gives me a no buffer space avaliable error. I changed the ip address to 12.12.12.13 (for example) and it returned to ping. Some hours later, it started to give the same problem, but the 12.12.12.12 ip address was not, anymore. I switched back to the 12.12.12.12 ip address and it worked again (note that during some hours after i change the ip, the old ip continues to give the problem) Some hours after, again the problem. I cannot think in anything that can cause this. MANY other clients are in the same physical network, pinging to the same NIC and have no trouble. My netstat -m output is very fine: 326/480/10240 mbufs in use (current/peak/max): 326 mbufs allocated to data 324/460/2560 mbuf clusters in use (current/peak/max) 1040 Kbytes allocated to network (13% of mb_map in use) 0 requests for memory denied 0 requests for memory delayed 0 calls to protocol drain routines I've already tried to increase NMBCLUSTERS but the problem continues. I need your help!!! I don't know if it helps, but the client machine is a Linux. (as every other client) Thanks Joao Carlos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 8: 1:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from felix.cheetahusa.net (felix.cheetahusa.net [216.133.11.108]) by hub.freebsd.org (Postfix) with ESMTP id 1E73037B402; Tue, 22 Jan 2002 08:01:15 -0800 (PST) Received: from falcon (falcon.cheetahusa.net [192.168.10.139]) by felix.cheetahusa.net (8.11.6/8.11.6) with SMTP id g0MG17Q65080; Tue, 22 Jan 2002 08:01:12 -0800 (PST) (envelope-from craig@CheetahUSA.net) From: "Craig Burgess" To: "questions" , Subject: syntax for (nat) multiple -redirect-ports? Date: Tue, 22 Jan 2002 08:02:23 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG What is the correct working syntax for the rc.conf file to "open" different ports for different machines on the local LAN? This one works: 'natd -s -m -v -n -redirect_port tcp 192.168.0.130:2050-2051 2050-2051' BUT how do I add a redirect for different ports to a different machine? (I'm trying to get pcAnywhere to work as 'host' behind the firewall. Firewall type is "open.") I can't tell if the problem is with the pcAnywhere configuration, or my redirect_port arguments. thanks, craig To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 8: 1:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from felix.cheetahusa.net (felix.cheetahusa.net [216.133.11.108]) by hub.freebsd.org (Postfix) with ESMTP id 1E73037B402; Tue, 22 Jan 2002 08:01:15 -0800 (PST) Received: from falcon (falcon.cheetahusa.net [192.168.10.139]) by felix.cheetahusa.net (8.11.6/8.11.6) with SMTP id g0MG17Q65080; Tue, 22 Jan 2002 08:01:12 -0800 (PST) (envelope-from craig@CheetahUSA.net) From: "Craig Burgess" To: "questions" , Subject: syntax for (nat) multiple -redirect-ports? Date: Tue, 22 Jan 2002 08:02:23 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG What is the correct working syntax for the rc.conf file to "open" different ports for different machines on the local LAN? This one works: 'natd -s -m -v -n -redirect_port tcp 192.168.0.130:2050-2051 2050-2051' BUT how do I add a redirect for different ports to a different machine? (I'm trying to get pcAnywhere to work as 'host' behind the firewall. Firewall type is "open.") I can't tell if the problem is with the pcAnywhere configuration, or my redirect_port arguments. thanks, craig To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 8:14:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from veldy.net (veldy-host33.dsl.visi.com [209.98.200.33]) by hub.freebsd.org (Postfix) with ESMTP id 384E237B400; Tue, 22 Jan 2002 08:14:31 -0800 (PST) Received: from HP2500B (localhost.veldy.net [127.0.0.1]) by veldy.net (Postfix) with SMTP id B7AB01A01A; Tue, 22 Jan 2002 10:14:26 -0600 (CST) Message-ID: <005001c1a35f$9c4da780$3028680a@tgt.com> From: "Thomas T. Veldhouse" To: "Bart Matthaei" Cc: , "FreeBSD-Questions, " References: <20020122101115.P25912-100000@camelia.dnt.ro> <002701c1a328$9aac7fa0$2e020a0a@mti.itb.ac.id> <00b401c1a35e$2c55fa50$3028680a@tgt.com> <20020122171134.E69805@heresy.dreamflow.nl> Subject: Re: relaying mail from DHCP clients Date: Tue, 22 Jan 2002 10:12:37 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I wasn't talking about private IPs, I was talking about the sendmail server itself. Tom Veldhouse veldy@veldy.net PS -- moved to FreeBSD-questions ----- Original Message ----- From: "Bart Matthaei" To: "Thomas T. Veldhouse" Cc: Sent: Tuesday, January 22, 2002 10:11 AM Subject: Re: relaying mail from DHCP clients To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 8:28: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe67.pav2.hotmail.com [64.4.36.201]) by hub.freebsd.org (Postfix) with ESMTP id F28D937B417 for ; Tue, 22 Jan 2002 08:27:55 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Jan 2002 08:27:55 -0800 X-Originating-IP: [199.45.167.74] From: "dseeger" To: Subject: man command Date: Tue, 22 Jan 2002 08:06:20 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Message-ID: X-OriginalArrivalTime: 22 Jan 2002 16:27:55.0848 (UTC) FILETIME=[BF39DC80:01C1A361] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG for some reason (I am certain it was me) when running man i get permission denied - properties of usr/bin/man show yesterdays date - file has been messed up - how can i retreive this file from the installation CDs Thanks Don To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 8:34:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from asmodean.nks.net (asmodean.nks.net [216.139.201.16]) by hub.freebsd.org (Postfix) with ESMTP id CE17037B400 for ; Tue, 22 Jan 2002 08:34:05 -0800 (PST) Received: from localhost (joeo@localhost) by asmodean.nks.net (8.9.3/8.9.3) with ESMTP id LAA32478; Tue, 22 Jan 2002 11:33:49 -0500 Date: Tue, 22 Jan 2002 11:33:49 -0500 (EST) From: X-Sender: To: Steven Huwig Cc: Subject: Re: XFree86 4.2.0 / Matrox G400 / DRI In-Reply-To: <3C4D716B.9040108@po.cwru.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Build the kernel module from the sources in the port; /usr/ports/x11/XFree86-4/work/xc/programs/Xserver/hw/xfree86/os-support/bsd/drm/kernel. Technically, the "sarea" size changed, I'm not sure the drm-kmod, port reflects that just yet... On Tue, 22 Jan 2002, Steven Huwig wrote: > Hello all, > > Under XFree86-4.1.0 I had DRI working using the drm-kmod port and > WITH_MATROX_GXX_DRIVER="YES" when building X from ports. I installed > 4.2.0 and when the dri module is enabled, my machine hangs and then > reboots itself. Has anyone else seen this, and is it an issue with my > XFree86, my FreeBSD, or possibly a hardware incompatibility? My mobo is > an Abit KT7. > > -- Steve > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 8:35:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 9412737B404 for ; Tue, 22 Jan 2002 08:35:43 -0800 (PST) Received: from gateway ([63.70.155.108]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com; Tue, 22 Jan 2002 11:38:14 -0500 From: "Joe & Fhe Barbish" To: "Bob Giesen" Cc: "FBSD Questions" Subject: RE: pw in script to create new user. Date: Tue, 22 Jan 2002 11:34:57 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: <004b01c1a30b$5fcb20c0$328dfea9@pegasus> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG To all who responded I want to say thanks for your input. I have gotten my script to work. Now for the archives I am summarizing how the pw command works. When FBSD is installed the PW command does not have it's pw.conf option file. Pw stills works but you have no idea what the defaults are and the command line gets full using the pw flags. The first thing you should do if you want to use the pw command to add users is to create the pw.conf file, do this by entering pw -D this will create the /etc/pw.conf file. The comments in the file are self explanatory. I added the default group and the additional groups. pw -D = create /etc/pw.conf file pw adduser tom -m -c tom brown = tom =userid -m = create home directory -c full name field pw deluser tom -r = delete user tom -r = remove home directory pw showuser tom = display this users entry in password file pw showuser tom -P = display password info in human readable form pw showuser -a = display all entries in password file The pw command can also be used for groups pw addgroup networking pw showgroup networking The pw command can also change settings in the userid password file. My /etc/pw.conf looks like this # # /etc/pw.conf - user/group configuration defaults # created 01/20/2002 by Joe Barbish # Password for new users? no=nologin yes=loginid none=blank random=random defaultpasswd = "yes" # Reuse gaps in uid sequence? (yes or no) reuseuids = "yes" # Reuse gaps in gid sequence? (yes or no) reusegids = "yes" # Path to the NIS passwd file (blank or 'no' for none) nispasswd = # Obtain default dotfiles from this directory skeleton = "/usr/share/skel/" # Mail this file to new user (/etc/newuser.msg or no) newmail = "no" # Log add/change/remove information in this file logfile = "/var/log/userlog" # Root directory in which $HOME directory is created home = "/home" # Colon separated list of directories containing valid shells shellpath = "/bin" # Comma separated list of available shells (without paths) shells = "sh","csh","tcsh" # Default shell (without path) defaultshell = "sh" # Default group (leave blank for new group per user) defaultgroup = "network" # Extra groups for new users extragroups = "wheel" # Default login class for new users defaultclass = "" # Range of valid default user ids minuid = 1000 maxuid = 32000 # Range of valid default group ids mingid = 1000 maxgid = 32000 # Days after which account expires (0=disabled) expire_days = 0 # Days after which password expires (0=disabled) password_days = 0 ###################################################### The script that the folks here helped me with. #! /bin/sh pw adduser tom -m -c testing -h 0 <<- EOD water EOD # water is the password used for tom -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Bob Giesen Sent: Tuesday, January 22, 2002 1:10 AM To: Joe & Fhe Barbish; FBSD Questions Subject: Re: pw in script to create new user. ----- Original Message ----- From: "Joe & Fhe Barbish" To: "FBSD Questions" Sent: Monday, January 21, 2002 10:52 PM Subject: pw in script to create new user. > I have sh script with this in it > Pw adduser tom -m -c bkup manager -o > The /etc/pw.conf has all the defaults, one is to > make the password the same as the userid. > The -o option will take input from keyboard for the > Password but this is a canned script so I need to > Some how pass the password value to the pw command -0 option. > > How can I configure the script to hold the password value > for that userid so when the pw adduser command is executed > the correct password gets used in creating the user? Three thoughts: 1) Does pw offer no other way of providing the password, other than via stdin (keyboard)? 2) Putting unencrypted passwords into a text file (such as your script) does present something of a security risk. 3) If the answer to (1) is no and (2) doesn't faze you, you can redirect stdin within the script. I am not familiar with pw (perhaps because I'm running v3.2), so I'll expand on your example command for adding tom: Pw adduser tom -m -c bkup manager -h 0 << EOF tomspassword EOF The first line's "<< EOF" tells sh to take the expected stdin input from the following lines, up to the first line that BEGINS with "EOF." So, just put tom's password on the following line and then EOF on the very next line. Two points worth mentioning: 1) My choice of "EOF" was arbitrary. You may use EOP, EOI, XYZ, SILLY, or whatever you like, so long as you use exactly the same string to signal the end of input redirection. 2) EOF (or EOP, SILLY, or whatever you use) MUST BEGIN the line to signal the end of redirection. Any space (or other character) before the ending EOF will mess up your script (which, since you're operating as root, has the potential to make things interesting, to say the least). (Exception: you may precede the finishing string (EOF, or whatever) with a tab IF YOU USE "<<-" instead of "<<" for the redirection on the first line. E.g.: Pw adduser tom -m -c bkup manager -h 0 <<- EOF tomspassword EOF My mail client turned the tabs to spaces; there should be tabs before "tomspassword" and the final "EOF" here. Sometimes, the <<- & tab functionality helps to make a more readable script. Hope this helps... - Bob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 8:50:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.galaxy.net (saturn.galaxy.net [199.224.11.8]) by hub.freebsd.org (Postfix) with SMTP id 54E5C37B4B9 for ; Tue, 22 Jan 2002 08:49:23 -0800 (PST) Received: (qmail 19606 invoked from network); 21 Jan 2002 12:22:39 -0000 Received: from 01-026.081.popsite.net (HELO hal) (64.24.245.26) by saturn.galaxy.net with SMTP; 21 Jan 2002 12:22:39 -0000 Content-Type: text/plain; charset="iso-8859-1" From: David Vitkus To: questions@freebsd.org Subject: Boot manager Date: Mon, 21 Jan 2002 02:18:33 -0500 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <02012102183300.00404@hal> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG with BSD 4.4, how do I get the boot manager to recognise when i've installed another OS. I have two BSD OS's installed and want to install Linux in a third partition. Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 8:51:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id 104F537B676; Tue, 22 Jan 2002 08:51:03 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 570D79B73; Tue, 22 Jan 2002 11:50:43 -0500 (EST) Date: Tue, 22 Jan 2002 11:50:43 -0500 From: Will Andrews To: SASAKI Katuhiro Cc: Will Andrews , Liu Siwei , freebsd-questions@freebsd.org, kde@FreeBSD.org Subject: Re: [kde-freebsd] Re: chinput can't work on KDE2.2.2 Message-ID: <20020122115043.O18609@squall.waterspout.com> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , SASAKI Katuhiro , Liu Siwei , freebsd-questions@freebsd.org, kde@FreeBSD.org References: <20020122094241.J18609@squall.waterspout.com> <3c4d866e.6574%sahiro@crest.ocn.ne.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3c4d866e.6574%sahiro@crest.ocn.ne.jp> User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jan 23, 2002 at 12:34:06AM +0900, SASAKI Katuhiro wrote: > I think this trouble is because of a problem in Qt 2.3.1. > I have found the problem in QTextCodec and send a patch to > qt-bugs@trolltech.com. And I received a reply that says the > problem will be fixed in Qt-2.3.3 and Qt 3.0.2. > The patch I send is below. Please test this. I'm willing to add this patch to the qt port if it passes a quick patch & compile and I hear from the original problem submitter that it fixes the problem he's having. Unless, of course, this fixes something for you too, SASAKI-san. Regards, -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 8:58:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fem.uniag.sk (fem.uniag.sk [193.87.97.7]) by hub.freebsd.org (Postfix) with ESMTP id 8C98237B402 for ; Tue, 22 Jan 2002 08:58:28 -0800 (PST) Received: from localhost (lk01@localhost) by fem.uniag.sk (8.10.2+Sun/8.10.2) with ESMTP id g0MGvHL16418; Tue, 22 Jan 2002 17:57:17 +0100 (MET) Date: Tue, 22 Jan 2002 17:57:17 +0100 (MET) From: Ladislav Kostal To: Steven Huwig Cc: questions@FreeBSD.ORG Subject: Re: XFree86 4.2.0 / Matrox G400 / DRI In-Reply-To: <3C4D716B.9040108@po.cwru.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 22 Jan 2002, Steven Huwig wrote: > Under XFree86-4.1.0 I had DRI working using the drm-kmod port and > WITH_MATROX_GXX_DRIVER="YES" when building X from ports. I installed > 4.2.0 and when the dri module is enabled, my machine hangs and then > reboots itself. Has anyone else seen this, and is it an issue with my > XFree86, my FreeBSD, or possibly a hardware incompatibility? My mobo is > an Abit KT7. Same with ATI r128 when using drm-kmod from ports. Then I found unbuilded kernel modules in XFree86 tree in port XFree86-4 (/usr/ports/x11/XFree86-4/work/xc/programs/Xserver/hw/xfree86/os-support/bsd/drm/kernel) and just type make in "r128" subdirectory (mga.ko module builds successfully too). Then just kldload r128.ko (kldload agp; kldload linux before), enable Load "dri" in XF86Config and it works... Ladislav Kostal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 8:59:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.galaxy.net (saturn.galaxy.net [199.224.11.8]) by hub.freebsd.org (Postfix) with SMTP id DC70137B400 for ; Tue, 22 Jan 2002 08:59:12 -0800 (PST) Received: (qmail 20380 invoked from network); 21 Jan 2002 12:32:29 -0000 Received: from 01-026.081.popsite.net (HELO hal) (64.24.245.26) by saturn.galaxy.net with SMTP; 21 Jan 2002 12:32:29 -0000 Content-Type: text/plain; charset="iso-8859-1" From: David Vitkus To: "carl florez" , Subject: Re: dual boot question Date: Mon, 21 Jan 2002 02:28:24 -0500 X-Mailer: KMail [version 1.2] References: <000701c1a220$a8cf5de0$948ee60c@mike.attbi.com> In-Reply-To: <000701c1a220$a8cf5de0$948ee60c@mike.attbi.com> MIME-Version: 1.0 Message-Id: <02012102282401.00404@hal> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sunday 20 January 2002 21:09, carl florez wrote: > I installed freebsd on the second hard drive (slave) ...i run win 98 on the > first....how can i set up a dual boot..right now i boot to the win 98 drive > and can't get to my second (freebsd) drive....or is there some piece of > software i can get that will let me reboot to the free bsd drive after I > have booted in win 98 ...help...please cflorez3@attbi.com Take a look at the Install FAQ http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/install.html#WIN95-DAMAGED-BOOT-MANAGER Those instructions should help. ---------------------------------------- Content-Type: text/html; charset="iso-8859-1"; name="Attachment: 1" Content-Transfer-Encoding: quoted-printable Content-Description: ---------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9: 0:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Interjet.citystamp.com (host-64-65-195-99.choiceone.net [64.65.195.99]) by hub.freebsd.org (Postfix) with ESMTP id 0D8FB37B416 for ; Tue, 22 Jan 2002 09:00:20 -0800 (PST) Received: (from daemon@localhost) by Interjet.citystamp.com (8.8.5/8.8.5) id MAA15683; Tue, 22 Jan 2002 12:28:06 -0500 (EST) Received: from UNKNOWN(64.65.195.58), claiming to be "[192.168.2.113]" via SMTP by Interjet.citystamp.com, id smtpde15676; Tue Jan 22 17:28:01 2002 User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Tue, 22 Jan 2002 11:58:50 -0500 Subject: Re: The tower of Hanoi From: bind9 To: Cc: Bob Hall , FreeBSD Message-ID: In-Reply-To: <20020122065612.H77330@blossom.cjclark.org> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG on 1/22/02 9:56 AM, Crist J . Clark at cristjc@earthlink.net wrote: > On Tue, Jan 22, 2002 at 09:44:05AM -0500, bind9 wrote: >> on 1/22/02 4:01 AM, Crist J . Clark at cjc@FreeBSD.ORG wrote: >> >>> On Mon, Jan 21, 2002 at 04:44:43PM -0500, Matthew P. Marino wrote: >>>> Well, this was in the output of a "dump" command that was trying to dump to >>>> an >>>> active atapi hard disk. >>>> >>>> dump -f /web/backups/full-1-20-02 /usr/local >>> >>> Bet you're trying to dump an MS-DOS filesystem. >> >> GASP!!! >> >> I don't think so, fstab doesn't think so. But obviously there is something >> not good about that disk configuration. Must have configured wrong. I'll do >> the best I can with "tar". Thanks. > > You'll also get that is you try to do something like dump a > directory. Is there a filesystem mounted at /usr/local? Yes. Should I dump by disk i.e. /dev/adc1se?? Or, do I have source and destination backward; dump -f destination source To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9: 1:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 3A4DD37B426 for ; Tue, 22 Jan 2002 09:01:11 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id 1284B5D31; Tue, 22 Jan 2002 09:01:11 -0800 (PST) To: David Vitkus Cc: questions@freebsd.org Subject: Re: Boot manager In-reply-to: Your message of "Mon, 21 Jan 2002 02:18:33 EST." <02012102183300.00404@hal> Date: Tue, 22 Jan 2002 09:01:11 -0800 From: "Kevin Oberman" Message-Id: <20020122170111.1284B5D31@ptavv.es.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > From: David Vitkus > Date: Mon, 21 Jan 2002 02:18:33 -0500 > Sender: owner-freebsd-questions@FreeBSD.ORG > > with BSD 4.4, how do I get the boot manager to recognise when i've installed > another OS. I have two BSD OS's installed and want to install Linux in a > third partition. Assuming that you mean the standard FreeBSD boot tool, you just install Linux but don't let the installation install LILO. The boot tool recognizes DOS/Windows (FAT), Unix, Linux, BSD/OS, FreeBSD, NetBSD, and OpenBSD partition types at this time. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9: 5:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f4.law12.hotmail.com [64.4.19.4]) by hub.freebsd.org (Postfix) with ESMTP id 5439D37B404 for ; Tue, 22 Jan 2002 09:05:13 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Jan 2002 09:05:13 -0800 Received: from 213.175.73.112 by lw12fd.law12.hotmail.msn.com with HTTP; Tue, 22 Jan 2002 17:05:12 GMT X-Originating-IP: [213.175.73.112] From: "uwi mAn" To: questions@freebsd.org Subject: how to make a precompiled package Date: Tue, 22 Jan 2002 12:05:12 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Jan 2002 17:05:13.0215 (UTC) FILETIME=[F4CCF8F0:01C1A366] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ok guys I grew up a bit, I'm willing to make packages now, yes I just want have newer stuff and not to wait till someone port it, sometimes it takes up to few months. Say I built the source code of Mplayer 0.60 with everything I need, what I must do in order the following combination works: pkg_add mplayer060.tgz and it will leave a record in /var/db/pkg so I could easily remove it as time goes by with del_pkg mplayer060 Share the wealth brothers :) Thanks. --uwi mAn _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9: 6:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f204.law12.hotmail.com [64.4.19.204]) by hub.freebsd.org (Postfix) with ESMTP id 2168837B404 for ; Tue, 22 Jan 2002 09:06:56 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Jan 2002 09:06:56 -0800 Received: from 213.175.73.112 by lw12fd.law12.hotmail.msn.com with HTTP; Tue, 22 Jan 2002 17:06:55 GMT X-Originating-IP: [213.175.73.112] From: "uwi mAn" To: questions@freebsd.org Subject: AIFF audio format Date: Tue, 22 Jan 2002 12:06:55 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Jan 2002 17:06:56.0053 (UTC) FILETIME=[3218CE50:01C1A367] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello people, Is there some kind of player capable of hanling AIFF sound format? PS. Sox works but I need no convertion. Thanks in advance. --uwi mAn _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9: 7:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailout.fastq.com (mailout.fastq.com [204.62.193.66]) by hub.freebsd.org (Postfix) with ESMTP id 337E437B41C for ; Tue, 22 Jan 2002 09:07:12 -0800 (PST) Received: from broken (d94-osel.phx.fastq.com [216.190.249.126]) by mailout.fastq.com (8.11.3/8.11.3.FastQ-MailOut) with ESMTP id g0MH7AT83553 for ; Tue, 22 Jan 2002 10:07:11 -0700 (MST) (envelope-from dan@ript.org) From: "Dan Trainor" To: Subject: ports browser Date: Tue, 22 Jan 2002 10:19:59 -0700 Message-ID: <013601c1a369$087651b0$0100a8c0@broken> 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 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Anyone know of an ncurses-based program or something that will let me browse my ports tree, and read me pkg-comment, pkg-descr, and plg-plist? I'd just like a more orderly way of browsing the list, and I don't feel like: cd port1; cat pkg*; (read for a while, ok) cd ..; cd port1; .... etc etc. With over what was it, 1600 ports I believe, that becomes a pretty boring task. Thanks -dt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:10:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f103.law12.hotmail.com [64.4.19.103]) by hub.freebsd.org (Postfix) with ESMTP id B252637B405 for ; Tue, 22 Jan 2002 09:10:10 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Jan 2002 09:10:09 -0800 Received: from 213.175.73.112 by lw12fd.law12.hotmail.msn.com with HTTP; Tue, 22 Jan 2002 17:10:09 GMT X-Originating-IP: [213.175.73.112] From: "uwi mAn" To: questions@freebsd.org Subject: zsnes linux port Date: Tue, 22 Jan 2002 12:10:09 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Jan 2002 17:10:09.0966 (UTC) FILETIME=[A5AD94E0:01C1A367] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I'm wondering, maybe someone of you have succeeded in using a USB joystick with Zsnes Linux port? I have one, but Zsnes sees nothing. Other apps work *correct* :) --uwi mAn _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:12:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from linuxmail.touchtunes.com (operator.touchtunes.com [216.94.139.201]) by hub.freebsd.org (Postfix) with ESMTP id 79F9B37B402 for ; Tue, 22 Jan 2002 09:12:09 -0800 (PST) Received: from sunder.touchtunes.com (sunder.touchtunes.com [192.168.0.26]) by linuxmail.touchtunes.com (8.9.3/8.8.7) with ESMTP id MAA03146; Tue, 22 Jan 2002 12:12:08 -0500 Received: (from dinjo@localhost) by sunder.touchtunes.com (8.11.6/8.11.6) id g0MHC0218204; Tue, 22 Jan 2002 12:12:00 -0500 (EST) (envelope-from dinjo) Date: Tue, 22 Jan 2002 12:12:00 -0500 From: Joel Dinel To: Dan Trainor Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ports browser Message-ID: <20020122121200.A18157@sunder.touchtunes.com> Mail-Followup-To: Joel Dinel , Dan Trainor , freebsd-questions@FreeBSD.ORG References: <013601c1a369$087651b0$0100a8c0@broken> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <013601c1a369$087651b0$0100a8c0@broken>; from dan@ript.org on Tue, Jan 22, 2002 at 10:19:59AM -0700 X-Useless-Header: Look ma, it's a # sign! X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Port: pib-1.2 Path: /usr/ports/sysutils/pib Info: GUI Ports Collection management tool Maint: msmith@freebsd.org Index: sysutils tk82 B-deps: XFree86-libraries-4.1.0_1 freetype2-2.0.6 imake-4.1.0_2 tcl-8.2.3_1 tk-8.2.3 R-deps: XFree86-libraries-4.1.0_1 freetype2-2.0.6 imake-4.1.0_2 tcl-8.2.3_1 tk-8.2.3 On Tue, Jan 22, 2002 at 10:19:59AM -0700, Dan Trainor wrote: > From: "Dan Trainor" > To: > Subject: ports browser > Date: Tue, 22 Jan 2002 10:19:59 -0700 > X-Mailer: Microsoft Outlook, Build 10.0.2616 > > Anyone know of an ncurses-based program or something that will let me > browse my ports tree, and read me pkg-comment, pkg-descr, and plg-plist? > I'd just like a more orderly way of browsing the list, and I don't feel > like: cd port1; cat pkg*; (read for a while, ok) cd ..; cd port1; .... > etc etc. With over what was it, 1600 ports I believe, that becomes a > pretty boring task. > > Thanks > > -dt > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ---end quoted text--- -- Joel Dinel System Administrator TouchTunes Digital Jukebox, Inc. GnuPG key : http://darkhost.mine.nu:81/~joel/misc/mykey.asc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:12:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 6412837B41B for ; Tue, 22 Jan 2002 09:12:15 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.11.6/8.11.6) id g0MHCB762269; Tue, 22 Jan 2002 12:12:11 -0500 (EST) (envelope-from mwlucas) Date: Tue, 22 Jan 2002 12:12:11 -0500 From: Michael Lucas To: Dan Trainor Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ports browser Message-ID: <20020122121211.A62237@blackhelicopters.org> References: <013601c1a369$087651b0$0100a8c0@broken> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <013601c1a369$087651b0$0100a8c0@broken>; from dan@ript.org on Tue, Jan 22, 2002 at 10:19:59AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You can just call up the ports tree in a web browser, or use the FreeBSD.org web site; there's a link there to the ports collection. On Tue, Jan 22, 2002 at 10:19:59AM -0700, Dan Trainor wrote: > Anyone know of an ncurses-based program or something that will let me > browse my ports tree, and read me pkg-comment, pkg-descr, and plg-plist? > I'd just like a more orderly way of browsing the list, and I don't feel > like: cd port1; cat pkg*; (read for a while, ok) cd ..; cd port1; .... > etc etc. With over what was it, 1600 ports I believe, that becomes a > pretty boring task. > > Thanks > > -dt > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Michael Lucas mwlucas@FreeBSD.org, mwlucas@BlackHelicopters.org my FreeBSD column: http://www.oreillynet.com/pub/q/Big_Scary_Daemons http://www.blackhelicopters.org/~mwlucas/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:12:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from linuxmail.touchtunes.com (operator.touchtunes.com [216.94.139.201]) by hub.freebsd.org (Postfix) with ESMTP id DBA9637B417 for ; Tue, 22 Jan 2002 09:12:37 -0800 (PST) Received: from sunder.touchtunes.com (sunder.touchtunes.com [192.168.0.26]) by linuxmail.touchtunes.com (8.9.3/8.8.7) with ESMTP id MAA03161; Tue, 22 Jan 2002 12:12:37 -0500 Received: (from dinjo@localhost) by sunder.touchtunes.com (8.11.6/8.11.6) id g0MHCSk18214; Tue, 22 Jan 2002 12:12:28 -0500 (EST) (envelope-from dinjo) Date: Tue, 22 Jan 2002 12:12:28 -0500 From: Joel Dinel To: Dan Trainor Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ports browser Message-ID: <20020122121228.B18157@sunder.touchtunes.com> Mail-Followup-To: Joel Dinel , Dan Trainor , freebsd-questions@FreeBSD.ORG References: <013601c1a369$087651b0$0100a8c0@broken> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <013601c1a369$087651b0$0100a8c0@broken>; from dan@ript.org on Tue, Jan 22, 2002 at 10:19:59AM -0700 X-Useless-Header: Look ma, it's a # sign! X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sorry, PIB is not ncurses-based. On Tue, Jan 22, 2002 at 10:19:59AM -0700, Dan Trainor wrote: > From: "Dan Trainor" > To: > Subject: ports browser > Date: Tue, 22 Jan 2002 10:19:59 -0700 > X-Mailer: Microsoft Outlook, Build 10.0.2616 > > Anyone know of an ncurses-based program or something that will let me > browse my ports tree, and read me pkg-comment, pkg-descr, and plg-plist? > I'd just like a more orderly way of browsing the list, and I don't feel > like: cd port1; cat pkg*; (read for a while, ok) cd ..; cd port1; .... > etc etc. With over what was it, 1600 ports I believe, that becomes a > pretty boring task. > > Thanks > > -dt > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ---end quoted text--- -- Joel Dinel System Administrator TouchTunes Digital Jukebox, Inc. GnuPG key : http://darkhost.mine.nu:81/~joel/misc/mykey.asc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:15: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f80.law12.hotmail.com [64.4.19.80]) by hub.freebsd.org (Postfix) with ESMTP id 7E0C137B400 for ; Tue, 22 Jan 2002 09:15:06 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Jan 2002 09:15:06 -0800 Received: from 213.175.73.112 by lw12fd.law12.hotmail.msn.com with HTTP; Tue, 22 Jan 2002 17:15:06 GMT X-Originating-IP: [213.175.73.112] From: "uwi mAn" To: questions@freebsd.org Subject: hw.ata.tags problem Date: Tue, 22 Jan 2002 12:15:06 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Jan 2002 17:15:06.0390 (UTC) FILETIME=[565C4B60:01C1A368] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello everybody, I got an IBM DPTA HDD and would like to try this SCSI tagging feature. As always, I boot with -s and type: sysctl hw.ata.tags=1 (default is set to zero) sysctl: oid 'hw.ata.tags' is read only What the heck? Thank you. --uwi mAn. _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:19:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 884B937B400 for ; Tue, 22 Jan 2002 09:19:11 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id 67E425D0A; Tue, 22 Jan 2002 09:19:11 -0800 (PST) To: "Dan Trainor" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ports browser In-reply-to: Your message of "Tue, 22 Jan 2002 10:19:59 MST." <013601c1a369$087651b0$0100a8c0@broken> Date: Tue, 22 Jan 2002 09:19:11 -0800 From: "Kevin Oberman" Message-Id: <20020122171911.67E425D0A@ptavv.es.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > From: "Dan Trainor" > Date: Tue, 22 Jan 2002 10:19:59 -0700 > Sender: owner-freebsd-questions@FreeBSD.ORG > > Anyone know of an ncurses-based program or something that will let me > browse my ports tree, and read me pkg-comment, pkg-descr, and plg-plist? > I'd just like a more orderly way of browsing the list, and I don't feel > like: cd port1; cat pkg*; (read for a while, ok) cd ..; cd port1; .... > etc etc. With over what was it, 1600 ports I believe, that becomes a > pretty boring task. The "right" way would be to use pib, but the port needs updating to the new ports structure and I don't know when that might happen. (I really don't have the time to do it myself, especially since it is written in Tk, a language which I have not used in years.) The "official" way is to cd to someplace in the ports tree and "make readmes". You can do this at /usr/ports, but it will take a while! Once complete, you the HTML browser of your choice to look around starting at README.html in the directory you did the "make" in. Note that readmes must be re-made when a port is updated or added so you might want to do this again after a cvsup. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:20:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id D0E1437B405 for ; Tue, 22 Jan 2002 09:20:21 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g0MHK2r59490; Tue, 22 Jan 2002 19:20:02 +0200 (EET) (envelope-from ru) Date: Tue, 22 Jan 2002 19:20:02 +0200 From: Ruslan Ermilov To: Craig Burgess Cc: questions@FreeBSD.org Subject: Re: syntax for (nat) multiple -redirect-ports? Message-ID: <20020122192002.B58453@sunbay.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.23i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 08:02:23AM -0800, Craig Burgess wrote: > What is the correct working syntax for the rc.conf file to "open" > different ports for different machines on the local LAN? > > This one works: > 'natd -s -m -v -n -redirect_port tcp 192.168.0.130:2050-2051 > 2050-2051' > BUT > how do I add a redirect for different ports to a different machine? > (I'm trying to get pcAnywhere to work as 'host' behind the > firewall. Firewall type is "open.") I can't tell if the problem is > with the pcAnywhere configuration, or my redirect_port arguments. > There could be any number of -redirect_port's, just add one. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:22:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id AFEFC37B42B for ; Tue, 22 Jan 2002 09:22:28 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id 8BAF95D31; Tue, 22 Jan 2002 09:22:28 -0800 (PST) To: "uwi mAn" Cc: questions@freebsd.org Subject: Re: hw.ata.tags problem In-reply-to: Your message of "Tue, 22 Jan 2002 12:15:06 EST." Date: Tue, 22 Jan 2002 09:22:28 -0800 From: "Kevin Oberman" Message-Id: <20020122172228.8BAF95D31@ptavv.es.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > From: "uwi mAn" > Date: Tue, 22 Jan 2002 12:15:06 -0500 > Sender: owner-freebsd-questions@FreeBSD.ORG > > Hello everybody, > > I got an IBM DPTA HDD and would like to try this SCSI tagging feature. > As always, I boot with -s and type: > sysctl hw.ata.tags=1 (default is set to zero) > sysctl: oid 'hw.ata.tags' is read only It's too late to set it after booting. ata sysctls must be set before boot by either adding them to /boot/loader.conf or entering them at the boot prompt BEFORE entering a boot command. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:22:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from encephalon.de (p3EE35CEC.dip0.t-ipconnect.de [62.227.92.236]) by hub.freebsd.org (Postfix) with ESMTP id 0A9E637B405 for ; Tue, 22 Jan 2002 09:22:09 -0800 (PST) Received: (from bsd@localhost) by encephalon.de (8.11.6/8.11.6) id g0MHIr301629; Tue, 22 Jan 2002 18:18:53 +0100 (CET) (envelope-from bsd) Date: Tue, 22 Jan 2002 18:18:52 +0100 From: Roger Kaputtnik To: uwi mAn Cc: questions@FreeBSD.ORG Subject: Re: hw.ata.tags problem Message-ID: <20020122181852.A1615@encephalon.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from uwiman3k@hotmail.com on Tue, Jan 22, 2002 at 12:15:06PM -0500 X-Operating-System: FreeBSD encephalon.de 4.5-RC FreeBSD 4.5-RC Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi. > sysctl hw.ata.tags=1 (default is set to zero) > sysctl: oid 'hw.ata.tags' is read only > What the heck? You are booting in single user mode (boot -s). So your filesystem is just read-only. Mount your filesyste, read-write. Thats it. Axel -- encephalon.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:23:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id B5D1237B41C for ; Tue, 22 Jan 2002 09:23:19 -0800 (PST) Received: from bsd.havk.org (user-24-214-88-13.knology.net [24.214.88.13]) by mail.hiwaay.net (8.12.1/8.12.1) with ESMTP id g0MHNEBZ013837 for ; Tue, 22 Jan 2002 11:23:17 -0600 (CST) Received: by bsd.havk.org (Postfix, from userid 1001) id 1236A1A786; Tue, 22 Jan 2002 11:23:09 -0600 (CST) Date: Tue, 22 Jan 2002 11:23:09 -0600 From: Steve Price To: questions@freebsd.org Subject: 160GB Maxtor drives Message-ID: <20020122112309.A816@bsd.havk.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.5-PRERELEASE i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Does anyone know of any gotchas with using an IDE drive that is 160GB in size on FreeBSD? A Linux user here in town is asking about using one of these drives and I'd love more than anything to tell him that "you might be able to do it in Linux if you can find someone with some experimental patches but FreeBSD has supported this in the last N stable releases. I'd be glad to burn a copy of the discs and help you get the box setup". Thanks. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:29: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from encephalon.de (p3EE35CAB.dip0.t-ipconnect.de [62.227.92.171]) by hub.freebsd.org (Postfix) with ESMTP id 5A7E637B405 for ; Tue, 22 Jan 2002 09:28:49 -0800 (PST) Received: (from bsd@localhost) by encephalon.de (8.11.6/8.11.6) id g0MHPWU01751; Tue, 22 Jan 2002 18:25:32 +0100 (CET) (envelope-from bsd) Date: Tue, 22 Jan 2002 18:25:31 +0100 From: Roger Kaputtnik To: uwi mAn Cc: questions@FreeBSD.ORG Subject: Re: hw.ata.tags problem Message-ID: <20020122182530.A1693@encephalon.de> References: <20020122181852.A1615@encephalon.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020122181852.A1615@encephalon.de>; from bsd@encephalon.de on Tue, Jan 22, 2002 at 06:18:52PM +0100 X-Operating-System: FreeBSD encephalon.de 4.5-RC FreeBSD 4.5-RC Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi again. > Hi. > > > sysctl hw.ata.tags=1 (default is set to zero) > > sysctl: oid 'hw.ata.tags' is read only > > What the heck? > > You are booting in single user mode (boot -s). > So your filesystem is just read-only. > Mount your filesyste, read-write. > Thats it. I dont know where my head is. I told you complete bullshit. sysctl hw.ata.tags must be loaded with the loader. You cant load the, after booting.. Axel -- encephalon.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:36:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id B85AC37B402 for ; Tue, 22 Jan 2002 09:36:55 -0800 (PST) Received: from gateway ([63.70.155.108]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com; Tue, 22 Jan 2002 12:40:07 -0500 From: "Joe & Fhe Barbish" To: "Dan Trainor" Cc: "FBSD Questions" Subject: RE: ports browser Date: Tue, 22 Jan 2002 12:36:51 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: <013601c1a369$087651b0$0100a8c0@broken> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I tried using to FBSD.org port section, but it never matched what I had on my system. I use the port ytree (like msdos xtree display) to navigate the hard drive directory tree and changed the ytree default viewer to zmore. Just my 2 cents worth. -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Dan Trainor Sent: Tuesday, January 22, 2002 12:20 PM To: freebsd-questions@FreeBSD.ORG Subject: ports browser Anyone know of an ncurses-based program or something that will let me browse my ports tree, and read me pkg-comment, pkg-descr, and plg-plist? I'd just like a more orderly way of browsing the list, and I don't feel like: cd port1; cat pkg*; (read for a while, ok) cd ..; cd port1; .... etc etc. With over what was it, 1600 ports I believe, that becomes a pretty boring task. Thanks -dt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:46:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web10102.mail.yahoo.com (web10102.mail.yahoo.com [216.136.130.52]) by hub.freebsd.org (Postfix) with SMTP id 4563C37B405 for ; Tue, 22 Jan 2002 09:46:29 -0800 (PST) Message-ID: <20020122174625.79239.qmail@web10102.mail.yahoo.com> Received: from [24.177.27.182] by web10102.mail.yahoo.com via HTTP; Tue, 22 Jan 2002 09:46:25 PST Date: Tue, 22 Jan 2002 09:46:25 -0800 (PST) From: twig les Subject: Re: Snort doesn't start on boot To: "Crist J . Clark" Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <20020122010439.G77330@blossom.cjclark.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You nailed it. After I sent that post off on it's merry way to announcing my moronicity I realized I hadn't chmoded the file after writing it. LOL/blush. One other thing I had to do in the end is throw a sleep 5 at the top to give mysql a chance to start completely. Thnx --- "Crist J . Clark" wrote: > On Mon, Jan 21, 2002 at 11:31:49AM -0800, twig les > wrote: > > I've got a FreeBSD 4.4 stable box running a > > Snort/Mysql. Since I installed mysql from a > package > > the start script is already in /usr/local/etc/rc.d > and > > it works fine. However I have written a script > for > > Snort that works when I do a sh snort.sh start (or > > stop), yet doesn't start Snort on boot. This is > > confusing to say the least. > > > > My system is 4.4 stable with a minimum install. > Here > > is my script. I suspect the script since that's > what > > I trult stink at. :) Any help would be great. > > Does /usr/local/etc/rc.d/snort.sh have the > executable bit set? > -- > Crist J. Clark | > cjclark@alum.mit.edu > | > cjclark@jhu.edu > http://people.freebsd.org/~cjc/ | cjc@freebsd.org ===== ------------------------------------------------------- It is easier to denature Plutonium than to denature the evil spirit of man ------------------------------------------------------- Albert Einstein __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:51:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rambo.simx.org (rambo.simx.org [194.17.208.54]) by hub.freebsd.org (Postfix) with ESMTP id B5CC337B400; Tue, 22 Jan 2002 09:51:30 -0800 (PST) Received: from rambo.simx.org (rocky [192.168.0.2]) by rambo.simx.org (8.11.6/8.11.6) with ESMTP id g0MHpKX50692; Tue, 22 Jan 2002 18:51:20 +0100 (CET) (envelope-from listsub@rambo.simx.org) Message-ID: <3C4DA698.5080605@rambo.simx.org> Date: Tue, 22 Jan 2002 18:51:20 +0100 From: "Roger 'Rocky' Vetterberg" Reply-To: listsub@rambo.simx.org User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Craig Burgess Cc: questions , questions@FreeBSD.ORG Subject: Re: syntax for (nat) multiple -redirect-ports? References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Craig Burgess wrote: > What is the correct working syntax for the rc.conf file to "open" > different ports for different machines on the local LAN? > > This one works: > 'natd -s -m -v -n -redirect_port tcp 192.168.0.130:2050-2051 > 2050-2051' > BUT > how do I add a redirect for different ports to a different machine? > (I'm trying to get pcAnywhere to work as 'host' behind the > firewall. Firewall type is "open.") I can't tell if the problem is > with the pcAnywhere configuration, or my redirect_port arguments. > > thanks, > > craig > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > I have found that using a config file makes it easier to make changes to your natd configuration. Create for example /etc/natd.conf, which in your case could contain something like this: interface use_sockets yes same_ports yes redirect_port tcp 192.168.0.130:2050-2051 2050-2051 redirect_port udp 192.168.0.130:2050-2051 2050-2051 Start natd with 'natd -f /etc/natd.conf'. You could then add or remove options whenever you want, just edit the file and -HUP natd. -- R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:51:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rambo.simx.org (rambo.simx.org [194.17.208.54]) by hub.freebsd.org (Postfix) with ESMTP id B5CC337B400; Tue, 22 Jan 2002 09:51:30 -0800 (PST) Received: from rambo.simx.org (rocky [192.168.0.2]) by rambo.simx.org (8.11.6/8.11.6) with ESMTP id g0MHpKX50692; Tue, 22 Jan 2002 18:51:20 +0100 (CET) (envelope-from listsub@rambo.simx.org) Message-ID: <3C4DA698.5080605@rambo.simx.org> Date: Tue, 22 Jan 2002 18:51:20 +0100 From: "Roger 'Rocky' Vetterberg" Reply-To: listsub@rambo.simx.org User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Craig Burgess Cc: questions , questions@FreeBSD.ORG Subject: Re: syntax for (nat) multiple -redirect-ports? References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Craig Burgess wrote: > What is the correct working syntax for the rc.conf file to "open" > different ports for different machines on the local LAN? > > This one works: > 'natd -s -m -v -n -redirect_port tcp 192.168.0.130:2050-2051 > 2050-2051' > BUT > how do I add a redirect for different ports to a different machine? > (I'm trying to get pcAnywhere to work as 'host' behind the > firewall. Firewall type is "open.") I can't tell if the problem is > with the pcAnywhere configuration, or my redirect_port arguments. > > thanks, > > craig > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > I have found that using a config file makes it easier to make changes to your natd configuration. Create for example /etc/natd.conf, which in your case could contain something like this: interface use_sockets yes same_ports yes redirect_port tcp 192.168.0.130:2050-2051 2050-2051 redirect_port udp 192.168.0.130:2050-2051 2050-2051 Start natd with 'natd -f /etc/natd.conf'. You could then add or remove options whenever you want, just edit the file and -HUP natd. -- R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:53: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from felix.cheetahusa.net (felix.cheetahusa.net [216.133.11.108]) by hub.freebsd.org (Postfix) with ESMTP id 75DEE37B486; Tue, 22 Jan 2002 09:52:14 -0800 (PST) Received: from falcon (falcon.cheetahusa.net [192.168.10.139]) by felix.cheetahusa.net (8.11.6/8.11.6) with SMTP id g0MHqAQ65436; Tue, 22 Jan 2002 09:52:12 -0800 (PST) (envelope-from craig@CheetahUSA.net) From: "Craig Burgess" To: "Ruslan Ermilov" Cc: Subject: RE: syntax for (nat) multiple -redirect-ports? Date: Tue, 22 Jan 2002 09:53:27 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 In-Reply-To: <20020122192002.B58453@sunbay.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Ruslan, Um. "Just add one" as: 'natd -s -m -v -n -redirect_port tcp 192.168.0.130:2050-2051 2050-2051 -redirect_port udp 192.168.0.20:4632:4632 ...' or will it work with a single '-redirect_port' with arguments seperated by commas? On one line in the rc.conf or ...?? (Will 'natd -s -m -v -n -redirect_port tcp 192.168.0.130:2050-2051 2050-2051, 192.168.0.2:5800-5805 5800-5805' work??) The docs (man page etc) aren't clear at all IMO. thanks, craig > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of > Ruslan Ermilov > Sent: Tuesday, January 22, 2002 9:20 AM > To: Craig Burgess > Cc: questions@FreeBSD.ORG > Subject: Re: syntax for (nat) multiple -redirect-ports? > > > On Tue, Jan 22, 2002 at 08:02:23AM -0800, Craig Burgess wrote: > > What is the correct working syntax for the rc.conf > file to "open" > > different ports for different machines on the local LAN? > > > > This one works: > > 'natd -s -m -v -n -redirect_port tcp 192.168.0.130:2050-2051 > > 2050-2051' > > BUT > > how do I add a redirect for different ports to a > different machine? > > (I'm trying to get pcAnywhere to work as 'host' behind the > > firewall. Firewall type is "open.") I can't tell if > the problem is > > with the pcAnywhere configuration, or my redirect_port > arguments. > > > There could be any number of -redirect_port's, just add one. > > > Cheers, > -- > Ruslan Ermilov Oracle Developer/DBA, > ru@sunbay.com Sunbay Software AG, > ru@FreeBSD.org FreeBSD committer, > +380.652.512.251 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 9:58:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.cz (diana.mobil.cz [195.39.16.12]) by hub.freebsd.org (Postfix) with ESMTP id B984337B402 for ; Tue, 22 Jan 2002 09:58:54 -0800 (PST) Received: from ester.mobil.cz (ester.mobil.cz [194.213.62.23]) by mobil.cz (8.11.6/8.11.0) with ESMTP id g0MHwre10868 for ; Tue, 22 Jan 2002 18:58:53 +0100 Received: from roman.mobil.cz ([10.2.0.89]) by ester.mobil.cz (Lotus Domino Release 5.0.7) with ESMTP id 2002012218562102:10322 ; Tue, 22 Jan 2002 18:56:21 +0100 Received: (from roman@localhost) by roman.mobil.cz (8.11.6/8.11.6) id g0MI9Pg67342 for questions@freebsd.org; Tue, 22 Jan 2002 19:09:25 +0100 (CET) (envelope-from neuhauser@mobil.cz) X-Authentication-Warning: roman.mobil.cz: roman set sender to neuhauser@mobil.cz using -f Date: Tue, 22 Jan 2002 19:09:25 +0100 From: Roman Neuhauser To: questions@freebsd.org Subject: Re: how to make a precompiled package Message-ID: <20020122190924.U7062@roman.mobil.cz> Mail-Followup-To: questions@freebsd.org References: Mime-Version: 1.0 In-Reply-To: User-Agent: Mutt/1.3.23i X-MIMETrack: Itemize by SMTP Server on ester/Mobil(Release 5.0.7 |March 21, 2001) at 01/22/2002 06:56:21 PM, Serialize by Router on ester/Mobil(Release 5.0.7 |March 21, 2001) at 01/22/2002 06:56:26 PM, Serialize complete at 01/22/2002 06:56:26 PM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > From: "uwi mAn" > To: questions@freebsd.org > Subject: how to make a precompiled package > Date: Tue, 22 Jan 2002 12:05:12 -0500 > > ok guys I grew up a bit, I'm willing to make packages now, yes I just want > have newer stuff and not to wait till someone port it, sometimes it takes up > to few months. Say I built the source code of Mplayer 0.60 with everything I > need, what I must do in order the following combination works: > pkg_add mplayer060.tgz and it will leave a record in /var/db/pkg > so I could easily remove it as time goes by with > del_pkg mplayer060 read The Porter's Handbook. -- FreeBSD 4.4-STABLE 7:08PM up 2 days, 1:32, 14 users, load averages: 0.01, 0.04, 0.00 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10: 9:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from doheny.beach.net (doheny.beach.net [206.16.184.191]) by hub.freebsd.org (Postfix) with ESMTP id DC21E37B400 for ; Tue, 22 Jan 2002 10:09:56 -0800 (PST) Received: from localhost (scott@localhost) by doheny.beach.net (8.11.3/8.11.3) with ESMTP id g0MIA7i69059; Tue, 22 Jan 2002 10:10:07 -0800 (PST) Date: Tue, 22 Jan 2002 10:10:06 -0800 (PST) From: "Scott B. Gale" To: Christian Weihs Cc: questions@FreeBSD.ORG Subject: Re: MySQL Trouble PLEASE help! In-Reply-To: <1a0301c1a2e8$a9a54ea0$a50410ac@olmct.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002, Christian Weihs wrote: > Hi, > I don't know MySQL much myself but don't you have to grant > users rights directly on tables? No, you may grant privileges at the global, database, table, or column level. From the documentation at http://www.mysql.com/doc/G/R/GRANT.html: *********************************************************************** The GRANT and REVOKE commands allow system administrators to create users and grant and revoke rights to MySQL users at four privilege levels: Global level Global privileges apply to all databases on a given server. These privileges are stored in the mysql.user table. Database level Database privileges apply to all tables in a given database. These privileges are stored in the mysql.db and mysql.host tables. Table level Table privileges apply to all columns in a given table. These privileges are stored in the mysql.tables_priv table. Column level Column privileges apply to single columns in a given table. These privileges are stored in the mysql.columns_priv table. *********************************************************************** Scott B. Gale Dana Point Communications To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10:12: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.27in.tv (roc-66-24-112-7.rochester.rr.com [66.24.112.7]) by hub.freebsd.org (Postfix) with ESMTP id 2E89037B402 for ; Tue, 22 Jan 2002 10:12:04 -0800 (PST) Received: (from root@localhost) by mail.27in.tv (8.11.6/8.11.6) id g0MIC1120585; Tue, 22 Jan 2002 13:12:01 -0500 (EST) (envelope-from cjm2@earthling.net) Received: from 27in.tv (roc-66-24-112-7.rochester.rr.com [66.24.112.7]) by mail.27in.tv (8.11.6/8.11.6av) with SMTP id g0MIBxU20576; Tue, 22 Jan 2002 13:11:59 -0500 (EST) (envelope-from cjm2@earthling.net) Received: from 216.153.202.7 (SquirrelMail authenticated user cjm2) by www1.27in.tv with HTTP; Tue, 22 Jan 2002 13:12:00 -0500 (EST) Message-ID: <2453.216.153.202.7.1011723120.squirrel@www1.27in.tv> Date: Tue, 22 Jan 2002 13:12:00 -0500 (EST) Subject: Re: Opinions wanted - dealing with file sharing in AOL IM From: "C J Michaels" To: In-Reply-To: References: X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal Cc: , , X-Mailer: SquirrelMail (version 1.2.4 [cvs]) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Rick Hamell said: > >> > One of my sons asked me today, about opening a port on the firewall >> > so he and some friends from school can share files. I'm a bit leary >> > of opening a port on the firewall. I know my freebsd boxes will be >> > safe from windoze viruses by >> >> Say NO. If he complains, un-plug the computer for about a month. FTP >> will look >> pretty good. Let me guess, MP3's??? I wouldn't trust AOL IM features. >> If he's > > Say Heck no... IM is the number two place Virus' come from these > days... > > Rick Parenting tips aside, I would suggest setting up a socks 5 server, there's one available in the ports collection. -- Chris "I'll defend to the death your right to say that, but I never said I'd listen to it!" -- Tom Galloway with apologies to Voltaire To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10:16:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.27in.tv (roc-66-24-112-7.rochester.rr.com [66.24.112.7]) by hub.freebsd.org (Postfix) with ESMTP id 1B3D537B405 for ; Tue, 22 Jan 2002 10:16:12 -0800 (PST) Received: (from root@localhost) by mail.27in.tv (8.11.6/8.11.6) id g0MIGAG20647; Tue, 22 Jan 2002 13:16:10 -0500 (EST) (envelope-from cjm2@earthling.net) Received: from 27in.tv (roc-66-24-112-7.rochester.rr.com [66.24.112.7]) by mail.27in.tv (8.11.6/8.11.6av) with SMTP id g0MIG7U20638; Tue, 22 Jan 2002 13:16:08 -0500 (EST) (envelope-from cjm2@earthling.net) Received: from 216.153.202.7 (SquirrelMail authenticated user cjm2) by www1.27in.tv with HTTP; Tue, 22 Jan 2002 13:16:08 -0500 (EST) Message-ID: <2477.216.153.202.7.1011723368.squirrel@www1.27in.tv> Date: Tue, 22 Jan 2002 13:16:08 -0500 (EST) Subject: Re: Ip-sec interface for MRTG (or SNMPd). From: "C J Michaels" To: In-Reply-To: <000801c1a31b$4c7f9a40$0400fea9@evilmofo> References: <000801c1a31b$4c7f9a40$0400fea9@evilmofo> X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal Cc: X-Mailer: SquirrelMail (version 1.2.4 [cvs]) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Duke, Have you ever attempted a tcpdump -i gif0? Try it, you'll see absolutely nothing. I had this discussion on the list about a month ago, and the conslusion is that the packets are not dumped to interface for security reasons. Sorry, -- Chris "I'll defend to the death your right to say that, but I never said I'd listen to it!" -- Tom Galloway with apologies to Voltaire EvilMoFo said: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10:16:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from deliver.hccnet.nl (deliver.hccnet.nl [62.251.0.10]) by hub.freebsd.org (Postfix) with ESMTP id BF8E937B416 for ; Tue, 22 Jan 2002 10:16:22 -0800 (PST) Received: from PII-350.fia168-94.dsl.hccnet.nl by deliver.hccnet.nl via fia168-94.dsl.hccnet.nl [62.251.94.168] with ESMTP for id TAA05924 (8.8.8/1.13); Tue, 22 Jan 2002 19:16:21 +0100 (MET) Received: by PII-350.fia168-94.dsl.hccnet.nl (Postfix, from userid 1000) id 2BCD9194; Tue, 22 Jan 2002 19:16:11 +0100 (CET) Content-Type: text/plain; charset="iso-8859-15" From: Simon Siemonsma To: freebsd-questions@freebsd.org Subject: Fwd: Which locking method for local delivery with postfix and Kmail? Date: Tue, 22 Jan 2002 19:16:10 +0100 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020122181611.2BCD9194@PII-350.fia168-94.dsl.hccnet.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I recently installed postfix on my system and everything seems to work fine. Only when making an account in Kmail for local delivery it is asking me which locking method to use. I have no clue which one to choose. During testing I used no locking, but I don't want to go live with this setting. Simon Siemonsma To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10:18:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.27in.tv (roc-66-24-112-7.rochester.rr.com [66.24.112.7]) by hub.freebsd.org (Postfix) with ESMTP id E014D37B400 for ; Tue, 22 Jan 2002 10:18:16 -0800 (PST) Received: (from root@localhost) by mail.27in.tv (8.11.6/8.11.6) id g0MIIFi20686; Tue, 22 Jan 2002 13:18:15 -0500 (EST) (envelope-from cjm2@earthling.net) Received: from 27in.tv (roc-66-24-112-7.rochester.rr.com [66.24.112.7]) by mail.27in.tv (8.11.6/8.11.6av) with SMTP id g0MIIDU20659; Tue, 22 Jan 2002 13:18:13 -0500 (EST) (envelope-from cjm2@earthling.net) Received: from 216.153.202.7 (SquirrelMail authenticated user cjm2) by www1.27in.tv with HTTP; Tue, 22 Jan 2002 13:18:13 -0500 (EST) Message-ID: <2490.216.153.202.7.1011723493.squirrel@www1.27in.tv> Date: Tue, 22 Jan 2002 13:18:13 -0500 (EST) Subject: Re: NFS exports file From: "C J Michaels" To: In-Reply-To: <20020122104441.57562.qmail@web20003.mail.yahoo.com> References: <20020122104441.57562.qmail@web20003.mail.yahoo.com> X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal Cc: X-Mailer: SquirrelMail (version 1.2.4 [cvs]) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You can only export mount points. Not subdirectory's of mount points. Despite the lack of df output here, I would assume you have a situation where /home is a symlink to /usr/home and /usr is the mount point. In this case you need to export /usr --Chris Gavin Kenny said: > Hi Guys, > > I'm trying my hand at setting up NFS. I have followed > the handbook and all the deamons seem to startup OK > > but when I edit my /etc/exports file and load it via: > kill -HUP `cat /var/run/mountd.pid` > > I get the following message: > "bad exports list line /home " > > I have one line in my exports file and have tried the > following combinations without success; (Note I don't > have DNS so I am using IP addresses) > > /home -alldirs 123.456.789.123 > or > /home 123.456.789.123 > or > /home -alldirs -network 123.456.789.123 > or > /usr/home -network 123.456.789.123 > > and all stations south. > > When I try to mount from the client I get "Permission > denied", which I am assuming is because the exports > list is not loading. > > so what am I doing wrong? > > cheers > > Gavin > > __________________________________________________ > Do You Yahoo!? > Everything you'll ever need on one web page > from News and Sport to Email and Music Charts > http://uk.my.yahoo.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Chris "I'll defend to the death your right to say that, but I never said I'd listen to it!" -- Tom Galloway with apologies to Voltaire To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10:20:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id 5141D37B405 for ; Tue, 22 Jan 2002 10:19:58 -0800 (PST) Received: from win98800 ([12.232.232.117]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20020122181957.UGZL3578.rwcrmhc52.attbi.com@win98800> for ; Tue, 22 Jan 2002 18:19:57 +0000 Message-ID: <0ffe01c1a371$661d1b20$6600640a@attbi.com> From: "Douglas R. Spindler" To: Subject: A question from a convert from Windows to FreeBSD Date: Tue, 22 Jan 2002 10:19:58 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0FFB_01C1A32E.57CF21A0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0FFB_01C1A32E.57CF21A0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable I've been in the industry for 10 years now and have seen the light of = FreeBSD. I know a few Unix commands and know DOS very well. Here's my question, why do you guys make converting so difficult? Let me illustrate my point. Take a look at www.freebsd.org =20 Find the section that says, Easy to Install. FreeBSD can be installed from a variety of media including CD-ROM, = floppy disk, magnetic tape, an MS-DOS partition, or if you have a = network connection, you can install it directly over anonymous FTP or = NFS. All you need is a pair of blank, 1.44MB floppies and these = directions. Now click on "these directions" Sorry to be so stupid, but I can't follow the easy directions. I can't = even find what files I need to FTP. I also am finding the floppy disk = installation incomplete. I would appreciate any assistance you could offer. Thank you. ------=_NextPart_000_0FFB_01C1A32E.57CF21A0 Content-Type: text/html; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable
I've been in the industry for 10 years now and have = seen the=20 light of FreeBSD.  I know a few Unix commands and know DOS very=20 well.
 
Here's my question, why do you guys make converting = so=20 difficult?
 
Let me illustrate my point.
 
Take a look at www.freebsd.org =20

Find the section that says, Easy to Install.

FreeBSD can be installed from a variety of media including CD-ROM, = floppy=20 disk, magnetic tape, an MS-DOS partition, or if you have a network = connection,=20 you can install it directly over anonymous FTP or NFS. All you = need is a=20 pair of blank, 1.44MB floppies and these=20 directions.

Now click on "these directions"
 
Sorry to be so stupid, but I can't follow = the easy=20 directions.  I can't even find what files I need to FTP.  I = also am=20 finding the floppy disk installation incomplete.
 
I would appreciate any assistance you could=20 offer.
 
Thank you.
 
 
------=_NextPart_000_0FFB_01C1A32E.57CF21A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10:22:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from felix.cheetahusa.net (felix.cheetahusa.net [216.133.11.108]) by hub.freebsd.org (Postfix) with ESMTP id AC3AA37B48E for ; Tue, 22 Jan 2002 10:21:25 -0800 (PST) Received: from falcon (falcon.cheetahusa.net [192.168.10.139]) by felix.cheetahusa.net (8.11.6/8.11.6) with SMTP id g0MILAQ65528; Tue, 22 Jan 2002 10:21:11 -0800 (PST) (envelope-from craig@CheetahUSA.net) From: "Craig Burgess" To: Cc: Subject: RE: syntax for (nat) multiple -redirect-ports? Date: Tue, 22 Jan 2002 10:22:26 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 In-Reply-To: <3C4DA698.5080605@rambo.simx.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Roger, and "ahhhhh" - the conf file looks like it could be a winner. (Duoh?) Thanks. craig > Craig Burgess wrote: > > > What is the correct working syntax for the rc.conf > file to "open" > > different ports for different machines on the local LAN? > > > > This one works: > > 'natd -s -m -v -n -redirect_port tcp 192.168.0.130:2050-2051 > > 2050-2051' > > BUT > > how do I add a redirect for different ports to a > different machine? > > (I'm trying to get pcAnywhere to work as 'host' behind the > > firewall. Firewall type is "open.") I can't tell if > the problem is > > with the pcAnywhere configuration, or my redirect_port > arguments. > > > > thanks, > > > > craig > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > I have found that using a config file makes it easier to > make changes to your natd configuration. > Create for example /etc/natd.conf, which in your case could > contain something like this: > > interface > use_sockets yes > same_ports yes > redirect_port tcp 192.168.0.130:2050-2051 2050-2051 > redirect_port udp 192.168.0.130:2050-2051 2050-2051 > > Start natd with 'natd -f /etc/natd.conf'. > You could then add or remove options whenever you want, just > edit the file and -HUP natd. > > -- > R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10:27:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tcpns.com (dsl-64-192-239-221.telocity.com [64.192.239.221]) by hub.freebsd.org (Postfix) with ESMTP id 402C037B400 for ; Tue, 22 Jan 2002 10:27:32 -0800 (PST) Received: from localhost.tcpns.com (localhost.tcpns.com [127.0.0.1]) by tcpns.com (8.12.2/8.12.2) with ESMTP id g0MIRVkg006735 for ; Tue, 22 Jan 2002 13:27:32 -0500 (EST) Date: Tue, 22 Jan 2002 13:27:31 -0500 (EST) From: Jason Borkowsky To: freebsd-questions@freebsd.org Subject: FreeBSD extended paging Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Can somebody tell me how to disable extended memory pages (or how to define them to something like 4K in size)? I ask because there has been an Athlon bug discovered that is affected by using extended memory page sizes, and I need to determine if this is what is causing my FreeBSD box instability. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10:34:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 62D8137B404 for ; Tue, 22 Jan 2002 10:34:28 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 25FB166B74; Tue, 22 Jan 2002 10:34:27 -0800 (PST) Date: Tue, 22 Jan 2002 10:34:26 -0800 From: Kris Kennaway To: uwi mAn Cc: questions@freebsd.org Subject: Re: how to make a precompiled package Message-ID: <20020122103426.B21075@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="FkmkrVfFsRoUs1wW" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from uwiman3k@hotmail.com on Tue, Jan 22, 2002 at 12:05:12PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --FkmkrVfFsRoUs1wW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 22, 2002 at 12:05:12PM -0500, uwi mAn wrote: > ok guys I grew up a bit, I'm willing to make packages now, yes I just wan= t=20 > have newer stuff and not to wait till someone port it, sometimes it takes= up=20 > to few months. Say I built the source code of Mplayer 0.60 with everythin= g I=20 > need, what I must do in order the following combination works: > pkg_add mplayer060.tgz and it will leave a record in /var/db/pkg Modify the port as desired, build and install it and type 'make package'. Note that since you've already installed the port, you don't need to pkg_add on the same system. Perhaps you didn't really want to build the package, only install the port. > so I could easily remove it as time goes by with > del_pkg mplayer060 ln -sf /usr/sbin/pkg_delete ~/del_pkg :-) Kris --FkmkrVfFsRoUs1wW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8TbCyWry0BWjoQKURAvj0AKD9yLoamaySPb6LVHex9/OPw7mnVwCg9ITG y8qxo1pDkLRgd1qTwfDGUBM= =xP5e -----END PGP SIGNATURE----- --FkmkrVfFsRoUs1wW-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10:40:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id CBDE837B404 for ; Tue, 22 Jan 2002 10:40:18 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 6320766EE7; Tue, 22 Jan 2002 10:40:18 -0800 (PST) Date: Tue, 22 Jan 2002 10:40:18 -0800 From: Kris Kennaway To: "Douglas R. Spindler" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: A question from a convert from Windows to FreeBSD Message-ID: <20020122104018.C21075@xor.obsecurity.org> References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="dkEUBIird37B8yKS" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <0ffe01c1a371$661d1b20$6600640a@attbi.com>; from spindler@dnai.com on Tue, Jan 22, 2002 at 10:19:58AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --dkEUBIird37B8yKS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 22, 2002 at 10:19:58AM -0800, Douglas R. Spindler wrote: > I've been in the industry for 10 years now and have seen the light > of FreeBSD. I know a few Unix commands and know DOS very well. >=20 > Here's my question, why do you guys make converting so difficult? That's a very subjective question, wouldn't you say? Since FreeBSD is a community supported project, obviously some people in the user community thought the directions were fine. > Sorry to be so stupid, but I can't follow the easy directions. I > can't even find what files I need to FTP. I also am finding the > floppy disk installation incomplete. Following through the instructions, one of the steps is the following: ---- In general, to create boot floppy images, follow these steps: 1. Acquire the Boot Floppy Images The boot discs are available on your installation media in the floppies= directory, and can also be downloaded from the . ---- The last two words are a link which take you to the download site for the boot floppies for the latest release. That's all you need. If you have more specific questions please ask them here, and if you can come up with concrete suggestions about how the documentation could be improved then please send them to doc@FreeBSD.org. Your feedback on how the installation guide can be improved would be appreciated. Kris --dkEUBIird37B8yKS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8TbIRWry0BWjoQKURAnu3AKDmRaFBufrswxh0u8U7kc+mSjLCPwCghxpi mQgSSbPObl5Uyz+iZCViAm8= =c/cU -----END PGP SIGNATURE----- --dkEUBIird37B8yKS-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10:40:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smnolde.com (att-98-60-141.atl.mediaone.net [24.98.60.141]) by hub.freebsd.org (Postfix) with ESMTP id 3919037B405 for ; Tue, 22 Jan 2002 10:40:19 -0800 (PST) Received: from bsd ([192.168.10.7]) by smnolde.com with esmtp (Exim 3.30 #1) id 16T5qF-000ObO-00; Tue, 22 Jan 2002 13:40:19 -0500 Date: Tue, 22 Jan 2002 13:40:17 -0500 (EST) From: Scott Nolde To: "Douglas R. Spindler" Cc: Subject: Re: A question from a convert from Windows to FreeBSD In-Reply-To: <0ffe01c1a371$661d1b20$6600640a@attbi.com> Message-ID: <20020122133541.G48246-100000@bsd.smnolde.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus sayeth the previous author: >Date: Tue, 22 Jan 2002 10:19:58 -0800 >From: Douglas R. Spindler >To: freebsd-questions@FreeBSD.ORG >Subject: A question from a convert from Windows to FreeBSD > >I've been in the industry for 10 years now and have seen the light of FreeBSD. I know a few Unix commands and know DOS very well. > >Here's my question, why do you guys make converting so difficult? > >Let me illustrate my point. > >Take a look at www.freebsd.org >Find the section that says, Easy to Install. > >FreeBSD can be installed from a variety of media including CD-ROM, floppy disk, magnetic tape, an MS-DOS partition, or if you have a network connection, you can install it directly over anonymous FTP or NFS. All you need is a pair of blank, 1.44MB floppies and these directions. > >Now click on "these directions" > >Sorry to be so stupid, but I can't follow the easy directions. I can't even find what files I need to FTP. I also am finding the floppy disk installation incomplete. > >I would appreciate any assistance you could offer. > >Thank you. > In a few words those instructions say: 1) know your hardware and how to choose the boot device 2) know any networking details you might be asked about 3) choose the boot media a) cdrom (you can download this and burn it yourself and it will be bootable) b) floppies (you must make the kern.flp and mfsroot.flp) 4) do any kernel configuration you need (i generally skip this on generic i386 hardware 5) welcome to sysinstall Scott Nolde GPG Key 0xD869AB48 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10:41: 5 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 2F2D637B417 for ; Tue, 22 Jan 2002 10:40:42 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C6D6966C11; Tue, 22 Jan 2002 10:40:41 -0800 (PST) Date: Tue, 22 Jan 2002 10:40:41 -0800 From: Kris Kennaway To: Jason Borkowsky Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD extended paging Message-ID: <20020122104041.D21075@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="cHMo6Wbp1wrKhbfi" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from jcborkow@tcpns.com on Tue, Jan 22, 2002 at 01:27:31PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --cHMo6Wbp1wrKhbfi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 22, 2002 at 01:27:31PM -0500, Jason Borkowsky wrote: >=20 > Can somebody tell me how to disable extended memory pages (or how to defi= ne > them to something like 4K in size)? I ask because there has been an Athlon > bug discovered that is affected by using extended memory page sizes, and I > need to determine if this is what is causing my FreeBSD box instability. > Thanks! It doesn't affect FreeBSD. Kris --cHMo6Wbp1wrKhbfi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8TbIpWry0BWjoQKURApE4AJ9/XYLiMlLKr9IM1eAoFaN518GZzwCg0lCl zejFZMiQXixg3Qize91xOPg= =S2w6 -----END PGP SIGNATURE----- --cHMo6Wbp1wrKhbfi-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 10:47: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fremont.bolingbroke.com (adsl-216-102-90-210.dsl.snfc21.pacbell.net [216.102.90.210]) by hub.freebsd.org (Postfix) with ESMTP id 734BE37B402 for ; Tue, 22 Jan 2002 10:46:54 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by fremont.bolingbroke.com (8.12.1/8.12.1) with ESMTP id g0MIkKs6011073; Tue, 22 Jan 2002 10:46:20 -0800 (PST) Date: Tue, 22 Jan 2002 10:46:20 -0800 (PST) From: Ken Bolingbroke X-X-Sender: ken@fremont.bolingbroke.com To: C J Michaels Cc: gavinkenny@yahoo.co.uk, Subject: Re: NFS exports file In-Reply-To: <2490.216.153.202.7.1011723493.squirrel@www1.27in.tv> Message-ID: <20020122103806.C99955-100000@fremont.bolingbroke.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I missed the original message, but this last answer isn't strictly correct. For instance, I export /usr/ports and /usr/obj, both of which are subdirectories of the mount point /usr, and this works just fine, although I have to put them on the same line in /etc/exports: /usr/ports /usr/obj myhosts They do have to be on the same line, though, or I get the bad exports error message. Ken Bolingbroke hacker@bolingbroke.com On Tue, 22 Jan 2002, C J Michaels wrote: > You can only export mount points. Not subdirectory's of mount points. > > Despite the lack of df output here, I would assume you have a situation > where /home is a symlink to /usr/home and /usr is the mount point. > > In this case you need to export /usr > > --Chris > > Gavin Kenny said: > > Hi Guys, > > > > I'm trying my hand at setting up NFS. I have followed > > the handbook and all the deamons seem to startup OK > > > > but when I edit my /etc/exports file and load it via: > > kill -HUP `cat /var/run/mountd.pid` > > > > I get the following message: > > "bad exports list line /home " > > > > I have one line in my exports file and have tried the > > following combinations without success; (Note I don't > > have DNS so I am using IP addresses) > > > > /home -alldirs 123.456.789.123 > > or > > /home 123.456.789.123 > > or > > /home -alldirs -network 123.456.789.123 > > or > > /usr/home -network 123.456.789.123 > > > > and all stations south. > > > > When I try to mount from the client I get "Permission > > denied", which I am assuming is because the exports > > list is not loading. > > > > so what am I doing wrong? > > > > cheers > > > > Gavin > > > > __________________________________________________ > > Do You Yahoo!? > > Everything you'll ever need on one web page > > from News and Sport to Email and Music Charts > > http://uk.my.yahoo.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > -- > Chris > > "I'll defend to the death your right to say that, but I never said I'd > listen to it!" > -- Tom Galloway with apologies to Voltaire > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 11:14:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id B0E8537B402 for ; Tue, 22 Jan 2002 11:14:39 -0800 (PST) Received: from gateway ([63.70.155.108]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com; Tue, 22 Jan 2002 14:17:50 -0500 From: "Joe & Fhe Barbish" To: "Bob Giesen" Cc: "FBSD Questions" Subject: RE: pw in script to create new user. Date: Tue, 22 Jan 2002 14:14:33 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: <004b01c1a30b$5fcb20c0$328dfea9@pegasus> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG To all who responded I want to say thanks for your input. I have gotten my script to work. Now for the archives I am summarizing how the pw command works. When FBSD is installed the PW command does not have it's pw.conf option file. Pw stills works but you have no idea what the defaults are and the command line gets full using the pw flags. The first thing you should do if you want to use the pw command to add users is to create the pw.conf file, do this by entering pw -D this will create the /etc/pw.conf file. The comments in the file are self explanatory. I added the default group and the additional groups. pw -D = create /etc/pw.conf file pw adduser tom -m -c tom brown = tom =userid -m = create home directory -c full name field pw deluser tom -r = delete user tom -r = remove home directory pw showuser tom = display this users entry in password file pw showuser tom -P = display password info in human readable form pw showuser -a = display all entries in password file The pw command can also be used for groups pw addgroup networking pw showgroup networking The pw command can also change settings in the userid password file. My /etc/pw.conf looks like this # # /etc/pw.conf - user/group configuration defaults # created 01/20/2002 by Joe Barbish # Password for new users? no=nologin yes=loginid none=blank random=random defaultpasswd = "yes" # Reuse gaps in uid sequence? (yes or no) reuseuids = "yes" # Reuse gaps in gid sequence? (yes or no) reusegids = "yes" # Path to the NIS passwd file (blank or 'no' for none) nispasswd = # Obtain default dotfiles from this directory skeleton = "/usr/share/skel/" # Mail this file to new user (/etc/newuser.msg or no) newmail = "no" # Log add/change/remove information in this file logfile = "/var/log/userlog" # Root directory in which $HOME directory is created home = "/home" # Colon separated list of directories containing valid shells shellpath = "/bin" # Comma separated list of available shells (without paths) shells = "sh","csh","tcsh" # Default shell (without path) defaultshell = "sh" # Default group (leave blank for new group per user) defaultgroup = "network" # Extra groups for new users extragroups = "wheel" # Default login class for new users defaultclass = "" # Range of valid default user ids minuid = 1000 maxuid = 32000 # Range of valid default group ids mingid = 1000 maxgid = 32000 # Days after which account expires (0=disabled) expire_days = 0 # Days after which password expires (0=disabled) password_days = 0 ###################################################### The script that the folks here helped me with. #! /bin/sh pw adduser tom -m -c testing -h 0 <<- EOD water EOD # water is the password used for tom -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Bob Giesen Sent: Tuesday, January 22, 2002 1:10 AM To: Joe & Fhe Barbish; FBSD Questions Subject: Re: pw in script to create new user. ----- Original Message ----- From: "Joe & Fhe Barbish" To: "FBSD Questions" Sent: Monday, January 21, 2002 10:52 PM Subject: pw in script to create new user. > I have sh script with this in it > Pw adduser tom -m -c bkup manager -o > The /etc/pw.conf has all the defaults, one is to > make the password the same as the userid. > The -o option will take input from keyboard for the > Password but this is a canned script so I need to > Some how pass the password value to the pw command -0 option. > > How can I configure the script to hold the password value > for that userid so when the pw adduser command is executed > the correct password gets used in creating the user? Three thoughts: 1) Does pw offer no other way of providing the password, other than via stdin (keyboard)? 2) Putting unencrypted passwords into a text file (such as your script) does present something of a security risk. 3) If the answer to (1) is no and (2) doesn't faze you, you can redirect stdin within the script. I am not familiar with pw (perhaps because I'm running v3.2), so I'll expand on your example command for adding tom: Pw adduser tom -m -c bkup manager -h 0 << EOF tomspassword EOF The first line's "<< EOF" tells sh to take the expected stdin input from the following lines, up to the first line that BEGINS with "EOF." So, just put tom's password on the following line and then EOF on the very next line. Two points worth mentioning: 1) My choice of "EOF" was arbitrary. You may use EOP, EOI, XYZ, SILLY, or whatever you like, so long as you use exactly the same string to signal the end of input redirection. 2) EOF (or EOP, SILLY, or whatever you use) MUST BEGIN the line to signal the end of redirection. Any space (or other character) before the ending EOF will mess up your script (which, since you're operating as root, has the potential to make things interesting, to say the least). (Exception: you may precede the finishing string (EOF, or whatever) with a tab IF YOU USE "<<-" instead of "<<" for the redirection on the first line. E.g.: Pw adduser tom -m -c bkup manager -h 0 <<- EOF tomspassword EOF My mail client turned the tabs to spaces; there should be tabs before "tomspassword" and the final "EOF" here. Sometimes, the <<- & tab functionality helps to make a more readable script. Hope this helps... - Bob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 11:17:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.mail.pas.earthlink.net [207.217.120.50]) by hub.freebsd.org (Postfix) with ESMTP id DAB9F37B417 for ; Tue, 22 Jan 2002 11:17:24 -0800 (PST) Received: from 1cust160.tnt1.davis.ca.da.uu.net ([63.61.44.160] helo=ti_ello) by avocet.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16T6Q7-0006uY-00 for freebsd-questions@freebsd.org; Tue, 22 Jan 2002 11:17:24 -0800 Content-Type: text/plain; charset="iso-8859-1" From: tipaporiello To: freebsd-questions@freebsd.org Subject: rm - syntax Date: Tue, 22 Jan 2002 11:25:42 -0800 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <02012211254201.17022@ti_ello> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hoy, What is the syntax for removing a symbolic link with rm. Thank you, tipaporiello To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 11:17:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.mail.pas.earthlink.net [207.217.120.50]) by hub.freebsd.org (Postfix) with ESMTP id 7388237B404 for ; Tue, 22 Jan 2002 11:17:23 -0800 (PST) Received: from 1cust160.tnt1.davis.ca.da.uu.net ([63.61.44.160] helo=ti_ello) by avocet.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16T6Q6-0006uY-00 for questions@FreeBSD.ORG; Tue, 22 Jan 2002 11:17:22 -0800 Content-Type: text/plain; charset="iso-8859-1" From: tipaporiello To: questions@FreeBSD.ORG Subject: rm - unlink syntax Date: Tue, 22 Jan 2002 11:19:28 -0800 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <02012211192800.17022@ti_ello> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hoy, What is the syntax for removing a symbolic link with rm? Thank you. tipaporiello To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 11:25:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.XtremeDev.com (xtremedev.com [216.241.38.65]) by hub.freebsd.org (Postfix) with ESMTP id AE62D37B400 for ; Tue, 22 Jan 2002 11:25:11 -0800 (PST) Received: from xtremedev.com (xtremedev.com [216.241.38.65]) by mail.XtremeDev.com (Postfix) with ESMTP id DD6BC70604; Tue, 22 Jan 2002 12:25:05 -0700 (MST) Date: Tue, 22 Jan 2002 12:25:05 -0700 (MST) From: FreeBSD user To: Kris Kennaway Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD extended paging In-Reply-To: <20020122104041.D21075@xor.obsecurity.org> Message-ID: <20020122122442.W96843-100000@Amber.XtremeDev.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Does this mean FreeBSD doesn't take advantage of x86 extended paging capabilities? On Tue, 22 Jan 2002, Kris Kennaway wrote: > On Tue, Jan 22, 2002 at 01:27:31PM -0500, Jason Borkowsky wrote: > > > > Can somebody tell me how to disable extended memory pages (or how to define > > them to something like 4K in size)? I ask because there has been an Athlon > > bug discovered that is affected by using extended memory page sizes, and I > > need to determine if this is what is causing my FreeBSD box instability. > > Thanks! > > It doesn't affect FreeBSD. > > Kris > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 11:36:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns-exch05.jccc.net (ns-exch05.jccc.net [198.248.56.5]) by hub.freebsd.org (Postfix) with ESMTP id D7CE237B402 for ; Tue, 22 Jan 2002 11:36:28 -0800 (PST) Received: by ns-exch05 with Internet Mail Service (5.5.2653.19) id ; Tue, 22 Jan 2002 13:34:02 -0600 Message-ID: From: Noah Dunker To: 'tipaporiello' , freebsd-questions@FreeBSD.ORG Subject: RE: rm - syntax Date: Tue, 22 Jan 2002 13:34:02 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rm . # echo "hi" > /tmp/filename # cat /tmp/filename hi # ln -s /tmp/filename ~/filename # cat ~/filename hi # rm ~/filename # cat ~/filename cat: ~/filename: No such file or directory # cat /tmp/filename hi # pretty simple. > -----Original Message----- > From: tipaporiello [mailto:tipapori@earthlink.net] > Sent: Tuesday, January 22, 2002 1:26 PM > To: freebsd-questions@FreeBSD.ORG > Subject: rm - syntax > > > Hoy, > > What is the syntax for removing a symbolic link with rm. > > Thank you, > tipaporiello > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 11:43:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id B4BA437B41A for ; Tue, 22 Jan 2002 11:43:26 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id NAA24272; Tue, 22 Jan 2002 13:43:16 -0600 (CST) Message-Id: <3.0.5.32.20020122134304.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Tue, 22 Jan 2002 13:43:04 -0600 To: "Joe & Fhe Barbish" , "Bob Giesen" From: jacks@sage-american.com Subject: RE: pw in script to create new user. Cc: "FBSD Questions" In-Reply-To: References: <004b01c1a30b$5fcb20c0$328dfea9@pegasus> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Joe: I ran #pw -D and no pw.conf was created (4.4-stable)....???? At 02:14 PM 1.22.2002 -0500, Joe & Fhe Barbish wrote: >To all who responded I want to say thanks for your input. >I have gotten my script to work. >Now for the archives I am summarizing how the pw command works. > >When FBSD is installed the PW command does not have it's >pw.conf option file. Pw stills works but you have no idea what >the defaults are and the command line gets full using the pw flags. >The first thing you should do if you want to use the pw command to >add users is to create the pw.conf file, do this by >entering pw -D this will create the /etc/pw.conf file. >The comments in the file are self explanatory. >I added the default group and the additional groups. > >pw -D = create /etc/pw.conf file >pw adduser tom -m -c tom brown = tom =userid -m = create home directory -c >full name field >pw deluser tom -r = delete user tom -r = remove home directory >pw showuser tom = display this users entry in password file >pw showuser tom -P = display password info in human readable form >pw showuser -a = display all entries in password file > >The pw command can also be used for groups >pw addgroup networking >pw showgroup networking > >The pw command can also change settings in the userid password file. > >My /etc/pw.conf looks like this > ># ># /etc/pw.conf - user/group configuration defaults ># created 01/20/2002 by Joe Barbish > ># Password for new users? no=nologin yes=loginid none=blank random=random >defaultpasswd = "yes" > ># Reuse gaps in uid sequence? (yes or no) >reuseuids = "yes" > ># Reuse gaps in gid sequence? (yes or no) >reusegids = "yes" > ># Path to the NIS passwd file (blank or 'no' for none) >nispasswd = > ># Obtain default dotfiles from this directory >skeleton = "/usr/share/skel/" > ># Mail this file to new user (/etc/newuser.msg or no) >newmail = "no" > ># Log add/change/remove information in this file >logfile = "/var/log/userlog" > ># Root directory in which $HOME directory is created >home = "/home" > ># Colon separated list of directories containing valid shells >shellpath = "/bin" > ># Comma separated list of available shells (without paths) >shells = "sh","csh","tcsh" > ># Default shell (without path) >defaultshell = "sh" > ># Default group (leave blank for new group per user) >defaultgroup = "network" > ># Extra groups for new users >extragroups = "wheel" > ># Default login class for new users >defaultclass = "" > ># Range of valid default user ids >minuid = 1000 >maxuid = 32000 > ># Range of valid default group ids >mingid = 1000 >maxgid = 32000 > ># Days after which account expires (0=disabled) >expire_days = 0 > ># Days after which password expires (0=disabled) >password_days = 0 > >###################################################### >The script that the folks here helped me with. > >#! /bin/sh > >pw adduser tom -m -c testing -h 0 <<- EOD > water > EOD ># water is the password used for tom > > > > > > > > >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Bob Giesen >Sent: Tuesday, January 22, 2002 1:10 AM >To: Joe & Fhe Barbish; FBSD Questions >Subject: Re: pw in script to create new user. > >----- Original Message ----- >From: "Joe & Fhe Barbish" >To: "FBSD Questions" >Sent: Monday, January 21, 2002 10:52 PM >Subject: pw in script to create new user. > > >> I have sh script with this in it >> Pw adduser tom -m -c bkup manager -o >> The /etc/pw.conf has all the defaults, one is to >> make the password the same as the userid. >> The -o option will take input from keyboard for the >> Password but this is a canned script so I need to >> Some how pass the password value to the pw command -0 option. >> >> How can I configure the script to hold the password value >> for that userid so when the pw adduser command is executed >> the correct password gets used in creating the user? > > Three thoughts: >1) Does pw offer no other way of providing the password, other than via >stdin (keyboard)? >2) Putting unencrypted passwords into a text file (such as your script) does >present something of a security risk. >3) If the answer to (1) is no and (2) doesn't faze you, you can redirect >stdin within the script. I am not familiar with pw (perhaps because I'm >running v3.2), so I'll expand on your example command for adding tom: > >Pw adduser tom -m -c bkup manager -h 0 << EOF >tomspassword >EOF > > The first line's "<< EOF" tells sh to take the expected stdin input from >the following lines, up to the first line that BEGINS with "EOF." So, just >put tom's password on the following line and then EOF on the very next line. > Two points worth mentioning: >1) My choice of "EOF" was arbitrary. You may use EOP, EOI, XYZ, SILLY, or >whatever you like, so long as you use exactly the same string to signal the >end of input redirection. >2) EOF (or EOP, SILLY, or whatever you use) MUST BEGIN the line to signal >the end of redirection. Any space (or other character) before the ending >EOF will mess up your script (which, since you're operating as root, has the >potential to make things interesting, to say the least). (Exception: you >may precede the finishing string (EOF, or whatever) with a tab IF YOU USE >"<<-" instead of "<<" for the redirection on the first line. E.g.: > >Pw adduser tom -m -c bkup manager -h 0 <<- EOF > tomspassword > EOF > > My mail client turned the tabs to spaces; there should be tabs before >"tomspassword" and the final "EOF" here. Sometimes, the <<- & tab >functionality helps to make a more readable script. > Hope this helps... >- Bob > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 11:44:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id 9E5F037B400 for ; Tue, 22 Jan 2002 11:44:29 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id NAA24469; Tue, 22 Jan 2002 13:44:25 -0600 (CST) Message-Id: <3.0.5.32.20020122134423.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Tue, 22 Jan 2002 13:44:23 -0600 To: tipaporiello , questions@FreeBSD.ORG From: jacks@sage-american.com Subject: Re: rm - unlink syntax In-Reply-To: <02012211192800.17022@ti_ello> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hmmm... just #rm works for me.... as I recall. If not, #rm -rf... At 11:19 AM 1.22.2002 -0800, tipaporiello wrote: >Hoy, > >What is the syntax for removing a symbolic link with rm? > >Thank you. >tipaporiello > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 11:52:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web13306.mail.yahoo.com (web13306.mail.yahoo.com [216.136.175.42]) by hub.freebsd.org (Postfix) with SMTP id 631B337B404 for ; Tue, 22 Jan 2002 11:52:16 -0800 (PST) Message-ID: <20020122195216.53966.qmail@web13306.mail.yahoo.com> Received: from [193.174.9.99] by web13306.mail.yahoo.com via HTTP; Tue, 22 Jan 2002 20:52:16 CET Date: Tue, 22 Jan 2002 20:52:16 +0100 (CET) From: =?iso-8859-1?q?m=20p?= Subject: Re: FreeBSD extended paging To: freebsd@XtremeDev.com Cc: freebsd-questions@freebsd.org, kris@obsecurity.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG [ Please do not top post. ] FreeBSD user wrote: > > Does this mean FreeBSD doesn't take advantage of x86 extended paging > capabilities? > > On Tue, 22 Jan 2002, Kris Kennaway wrote: > > > On Tue, Jan 22, 2002 at 01:27:31PM -0500, Jason Borkowsky wrote: > > > > > > Can somebody tell me how to disable extended memory pages (or how to > > > define > > > them to something like 4K in size)? I ask because there has been an Athlon > > > bug discovered that is affected by using extended memory page sizes, and I > > > need to determine if this is what is causing my FreeBSD box instability. > > > Thanks! > > > > It doesn't affect FreeBSD. > > > > Kris Read there more about it - and why Linux is possible failing. http://groups.google.de/groups?hl=de&threadm=20020121100217.81572.qmail%40web14002.mail.yahoo.com.lucky.freebsd.current&prev=/groups%3Fhl%3Dde%26group%3Dlucky.freebsd.stable Not being striked by a bug does not mean that you are not using this feature - perhaps you are using it in a different way. IF there was a bug - be sure it would be worked out before the upcoming release of FreeBSD 4.5. Hope that helps Marc __________________________________________________________________ Gesendet von Yahoo! Mail - http://mail.yahoo.de Ihre E-Mail noch individueller? - http://domains.yahoo.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 12: 0:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by hub.freebsd.org (Postfix) with ESMTP id E3A3837B400 for ; Tue, 22 Jan 2002 12:00:23 -0800 (PST) Received: from ppp1-37.ath.forthnet.gr Bernie_X@smtp-send.myrealbox.com [213.16.148.37] by smtp-send.myrealbox.com with Novell NIMS $Revision: 2.88 $ on Novell NetWare; Tue, 22 Jan 2002 13:00:22 -0700 Date: Tue, 22 Jan 2002 19:47:38 +0200 (EET) From: Bernie X-X-Sender: root@BLAST To: Dave Kaufman Cc: freebsd-questions@freebsd.org Subject: Re: ipfw settings In-Reply-To: <200201221146.g0MBkp3I004083@lima.epix.net> Message-ID: <20020122194509.M878-100000@BLAST> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 22 Jan 2002, Dave Kaufman wrote: > i use my freebsd on a stand alone home computer with a dial up connection to > my isp. it's connected for 6 or more hours a day. i'm thinking i should > implement some protection. i've read Dru Lavigne's articles but am unclear on > one point. is there any difference in the devices referenced in the rulesets > ie. ed0 versus a dialup connection. it appears the articles are on a network > connection (ie. through a nic). does this matter? > > thanks > Dave > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > yes there is. i'm on the same setup as you described... the comand 'ifconfig' will show you the names of the tunnels. on mine is 'tun0'. it may be the same with yours but check with ifconfig while connected to the net... Regards, --Bernie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 12: 1:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id D5A5937B41D for ; Tue, 22 Jan 2002 12:01:03 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16T76L-00031a-00 for questions@FreeBSD.ORG; Tue, 22 Jan 2002 20:01:01 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 8B5CB1181; Tue, 22 Jan 2002 21:01:00 +0100 (CET) Date: Tue, 22 Jan 2002 21:01:00 +0100 From: Cliff Sarginson To: questions@FreeBSD.ORG Subject: Re: rm - unlink syntax Message-ID: <20020122200100.GA3097@raggedclown.net> References: <02012211192800.17022@ti_ello> <3.0.5.32.20020122134423.01831ca0@mail.sage-american.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3.0.5.32.20020122134423.01831ca0@mail.sage-american.com> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 01:44:23PM -0600, jacks@sage-american.com wrote: > hmmm... just #rm works for me.... as I recall. If not, #rm -rf... NO ! Do not do this ! > At 11:19 AM 1.22.2002 -0800, tipaporiello wrote: > >Hoy, > > > >What is the syntax for removing a symbolic link with rm? > > > with "unsubscribe freebsd-questions" in the body of the message Same as with removing any file. rm filename REPEAT .. do *not* do an rm -rf... -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 12:13: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.broadpark.no (217-13-4-9.dd.nextgentel.com [217.13.4.9]) by hub.freebsd.org (Postfix) with ESMTP id DBD7637B404 for ; Tue, 22 Jan 2002 12:12:58 -0800 (PST) Received: from ninja.amphex.com (ninja.amphex.com [217.13.29.51]) by mail.broadpark.no (Postfix) with SMTP id F02388048 for ; Tue, 22 Jan 2002 21:12:56 +0100 (MET) Date: Tue, 22 Jan 2002 21:12:53 +0100 From: J.S. To: freebsd-questions@freebsd.org Subject: High ASCII font: vga.pcf -- are there no equivalents? Message-Id: <20020122211253.4aa2aaf4.johann@broadpark.no> X-Mailer: Sylpheed version 0.6.5 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi. I was wondering if anyone knew of a replacement to the vga.pcf that looked a bit more like the fixed font. I'd like my terminal font to be compact, slick and good-looking as well as support high ASCII characters, allowing my IRC client to display its themes correctly in X. The vga.pcf is too big, too ugly. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 12:16: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from snipe.prod.itd.earthlink.net (snipe.mail.pas.earthlink.net [207.217.120.62]) by hub.freebsd.org (Postfix) with ESMTP id 6F67437B404 for ; Tue, 22 Jan 2002 12:15:50 -0800 (PST) Received: from dialup-209.244.65.228.dial1.chicago1.level3.net ([209.244.65.228] helo=pegasus) by snipe.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16T7Kc-0004s1-00; Tue, 22 Jan 2002 12:15:47 -0800 Message-ID: <007b01c1a381$93765900$328dfea9@pegasus> From: "Bob Giesen" To: "Kris Kennaway" , "Douglas R. Spindler" Cc: References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> <20020122104018.C21075@xor.obsecurity.org> Subject: Re: A question from a convert from Windows to FreeBSD Date: Tue, 22 Jan 2002 14:15:33 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Tue, Jan 22, 2002 at 10:19:58AM -0800, Douglas R. Spindler wrote: > > I've been in the industry for 10 years now and have seen the light > > of FreeBSD. I know a few Unix commands and know DOS very well. > > > > Here's my question, why do you guys make converting so difficult? > > That's a very subjective question, wouldn't you say? Not very, no. I've been a computer junkie for 20 years (well, pretty soon -- I got my first one in Feb., 1981), have made a living at UNIX system administration, vocally advocate FreeBSD to any who will listen -- yet it is obvious to me why a recent convert from the dark side (a.k.a. micro$haft) would consider FreeBSD to be difficult to install. Objectively speaking (and I'm sure that it could be quantified in terms of time and keystrokes), there is not much of a comparison when it comes to ease of installation -- which is a major reason that FreeBSD installations number in the thousands, rather than millions. This is why: > Since FreeBSD is a community supported project... If unsophisticated users could easily install FreeBSD and a free office app (such as StarOffice or KDE) that would operate on all those m$office files in circulation, I think you'd see a lot more home offices with FreeBSD as the system of choice. After all, how many people wouldn't love to get something for free that will do all they really need of the topheavy m$office apps? m$ OSes installed seemingly are approaching McD's number of burgers served. (Okay, a slight exaggeration...) m$ throws a lot of money at compatibility and ease of installation, knowing that their livelihoods depend on successful installations being performed by millions of users who don't know the difference between a bit and a byte. Of course, with their large, installed base, they've also managed to convince hardware manufacturers that it's in their best interest to provide winblows-compatible drivers. Having the necessary drivers hit the street at the same time as the hardware also helps a great deal. Here, most of us (FreeBSD) users are a little more savvy and demanding of other features in our O.S. We don't want to be hand-held to the point that the OS author makes all of our decisions for us during the installation (one of my many peaves w/ m$) -- but I think a certain amount of it could be automated better. Of course, besides being such a solid, flexible product, FreeBSD's also FREE, which is why I'd never complain about the difficulty of installation. Everything on which FreeBSD depends comes to us by the grace of people who are willing to share their work with the world at no cost. That doesn't usually lead to the sense of urgency instilled in the m$ mill, so a certain amount of "do-it-yourself" is to be expected. In terms of installation and configuration time, FreeBSD is really more costly to set up than my w98 setup was -- but m$ gets you in the end with the ongoing instability issues. In the final analysis, if you place a lot of demands on your computer, you'll have to get to know a lot about it in order to keep it working to your satisfaction, no matter what the OS. With m$, you'll probably get a very simple installation, but you'll end up putting out perennial fires. With FreeBSD, you'll have to learn more about it to configure it properly at first, but then you'll get rewarded with a system that does just what you expect it to (when it's not doing more than you expect it to) and you can use your knowledge to tweak it to do things you'd never consider trying on that other o$. > > Sorry to be so stupid, but I can't follow the easy directions. I > > can't even find what files I need to FTP. I also am finding the > > floppy disk installation incomplete. I heartily recomment the FreeBSD Power Pack. Mine came with 10 CD-ROM's of software -- and Grreg Lehey's "The Complete FreeBSD" -- which will walk you through the installation. CompUSA has it (w/ v4.4 software) for about $70; I got v3.2 a couple of years ago, on sale there for about $45. You might want to check around. Whatever your route, good luck and don't let the initial commitment of time discourage you. It will reward you, in the end. - Bob > Following through the instructions, one of the steps is the following: > > ---- > In general, to create boot floppy images, follow these steps: > > 1. Acquire the Boot Floppy Images > > The boot discs are available on your installation media in the floppies directory, and can also be > downloaded from the . > ---- > > The last two words are a link which take you to the download site for > the boot floppies for the latest release. That's all you need. > > If you have more specific questions please ask them here, and if you > can come up with concrete suggestions about how the documentation > could be improved then please send them to doc@FreeBSD.org. Your > feedback on how the installation guide can be improved would be > appreciated. > > Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 12:18:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.broadpark.no (217-13-4-9.dd.nextgentel.com [217.13.4.9]) by hub.freebsd.org (Postfix) with ESMTP id D58F837B400 for ; Tue, 22 Jan 2002 12:18:40 -0800 (PST) Received: from ninja.amphex.com (ninja.amphex.com [217.13.29.51]) by mail.broadpark.no (Postfix) with SMTP id C314B7F21 for ; Tue, 22 Jan 2002 21:18:39 +0100 (MET) Date: Tue, 22 Jan 2002 21:18:37 +0100 From: J.S. To: freebsd-questions@freebsd.org Subject: Decent scripts collection Message-Id: <20020122211837.0a790a0f.johann@broadpark.no> X-Mailer: Sylpheed version 0.6.5 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi. Are there any places containing decent scripts coded by experienced system administrators that can ease the administrating for those who do not code? Such as an adduser script, limitation of background processes and what else there might be. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 12:19:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id 8514B37B402 for ; Tue, 22 Jan 2002 12:19:24 -0800 (PST) Received: by peitho.fxp.org (Postfix, from userid 1206) id DFD641366D; Tue, 22 Jan 2002 15:19:23 -0500 (EST) Date: Tue, 22 Jan 2002 15:19:23 -0500 From: Bob Bomar To: questions@freebsd.org Subject: Neomail Message-ID: <20020122201923.GA14698@peitho.fxp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I took the advice and installed Neomail. It installed very fast, and easily. When I went to domain.com/cgi-bin/neomail.pl it comes up with the message: "Neomail Error" "Default!" I am running FreeBSD 4.4 and Apache 1.13, does anybody have any ideas of what I need to do? Thanks Bob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 12:27:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tomts7-srv.bellnexxia.net (tomts7.bellnexxia.net [209.226.175.40]) by hub.freebsd.org (Postfix) with ESMTP id 1B02137B404 for ; Tue, 22 Jan 2002 12:27:31 -0800 (PST) Received: from ntdc.ceecom.com ([207.61.222.114]) by tomts7-srv.bellnexxia.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20020122202730.ICNH18463.tomts7-srv.bellnexxia.net@ntdc.ceecom.com> for ; Tue, 22 Jan 2002 15:27:30 -0500 Subject: Ceecom Inc. MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Tue, 22 Jan 2002 15:19:57 -0500 Message-ID: X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 content-class: urn:content-classes:message X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Ceecom Inc. Thread-Index: AcGjgilB7vd9apn0Qm+Z4Pas4TEEAQ== From: "Flora Divetta" To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Please amend the name on your website=20 from Ceecom Inc. (TXbase) to Ceecom Inc. Thank you. Flora Di Vetta Ceecom Inc. Suite 320 7100 Woodbine Avenue Markham, ON L3R 5J2 Tel: (905) 940-3232 Fax: (905) 475-9191 email: fdivetta@ceecom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 12:30:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from snipe.prod.itd.earthlink.net (snipe.mail.pas.earthlink.net [207.217.120.62]) by hub.freebsd.org (Postfix) with ESMTP id E7EDF37B400 for ; Tue, 22 Jan 2002 12:30:19 -0800 (PST) Received: from dialup-209.244.65.228.dial1.chicago1.level3.net ([209.244.65.228] helo=pegasus) by snipe.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16T7YF-0001rH-00; Tue, 22 Jan 2002 12:29:51 -0800 Message-ID: <00ac01c1a383$8acfc500$328dfea9@pegasus> From: "Bob Giesen" To: "J.S." , References: <20020122211837.0a790a0f.johann@broadpark.no> Subject: Re: Decent scripts collection Date: Tue, 22 Jan 2002 14:29:49 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Get a book (or books) and learn to do shell scripts. It's easy, once you get started. Further, you have incentive to learn them, which will make the process easier. You'll be glad you did it. Then, when you've learned the limitations of shell scripting, consider perl. ----- Original Message ----- From: "J.S." To: Sent: Tuesday, January 22, 2002 2:18 PM Subject: Decent scripts collection > Hi. > > Are there any places containing decent scripts coded by experienced system > administrators that can ease the administrating for those who do not code? > Such as an adduser script, limitation of background processes and what > else there might be. > > Thanks. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 12:40:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f193.law12.hotmail.com [64.4.19.193]) by hub.freebsd.org (Postfix) with ESMTP id 4D99637B43D for ; Tue, 22 Jan 2002 12:40:11 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Jan 2002 12:40:11 -0800 Received: from 168.187.120.202 by lw12fd.law12.hotmail.msn.com with HTTP; Tue, 22 Jan 2002 20:40:10 GMT X-Originating-IP: [168.187.120.202] From: "Zaid Dashti" To: freebsd-questions@freebsd.org Subject: D-Link PCMCIA for laptops Date: Tue, 22 Jan 2002 23:40:10 +0300 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Jan 2002 20:40:11.0074 (UTC) FILETIME=[FC861220:01C1A384] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi i want ask about the d-line (Ethernet Network Card) PCMCIA for laptops. does D-Link (DFE-650TX) work under FreeBSD ? thanks _________________________________________________________________ Chat with friends online, try MSN Messenger: http://messenger.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 12:44:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.radix.net (mail1.radix.net [207.192.128.31]) by hub.freebsd.org (Postfix) with ESMTP id 3340F37B404 for ; Tue, 22 Jan 2002 12:44:53 -0800 (PST) Received: from [192.168.1.3] (p1.a1.du.radix.net [207.192.129.1]) by mail1.radix.net (8.9.3/8.9.3) with ESMTP id PAA16299; Tue, 22 Jan 2002 15:44:24 -0500 (EST) User-Agent: Microsoft-Entourage/10.0.0.1309 Date: Tue, 22 Jan 2002 15:44:28 -0500 Subject: Re: /var full.. how solve it? From: "John A. Limpert" To: Deman , freebsd-questions Message-ID: In-Reply-To: <3089.10.100.98.21.1011370910.squirrel@10.100.3.5> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Hi, > > I got the /var full after running portugrade > > Filesystem 1M-blocks Used Avail Capacity Mounted on > /dev/ad0s1a 96 32 56 37% / > /dev/ad0s1g 1025 897 46 95% /home > /dev/ad0s1f 2713 739 1756 30% /usr > /dev/ad0s1e 19 19 -1 109% /var > procfs 0 0 0 100% /proc > > Is there any good suggestion of what should I do? And also how to do it or > cross > point to any article :) > > - dman Try "setenv TMPDIR /usr/tmp" before running portupgrade. I had the same problem. /var was being filled up by the distribution files that were being downloaded by portupgrade. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 13:11: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from TheWorld.com (pcls3.std.com [199.172.62.105]) by hub.freebsd.org (Postfix) with ESMTP id E30D737B434; Tue, 22 Jan 2002 13:10:22 -0800 (PST) Received: from shell.TheWorld.com (root@shell01.TheWorld.com [199.172.62.241]) by TheWorld.com (8.9.3/8.9.3) with ESMTP id QAA01244; Tue, 22 Jan 2002 16:10:21 -0500 Received: (from kwc@localhost) by shell.TheWorld.com (8.9.3/8.9.3) id QAA9516725; Tue, 22 Jan 2002 16:10:20 -0500 (EST) Date: Tue, 22 Jan 2002 16:10:20 -0500 (EST) From: Kenneth W Cochran Message-Id: <200201222110.QAA9516725@shell.TheWorld.com> To: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Kernel option USER_LDT issues in -stable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Are there any issues (security, reliablity, performance, etc.) with regard to the USER_LDT kernel option in -stable? Since this appears to be defined by default in -current, why is this not the case with -stable? I can't find anything in the -questions archive & messages in the -stable archive don't mention any possible "gotchas." According to some port-docs, this option is defined by default in -current; some ports (WINE, aviplay, for examples) report requiring this. Additionally, mplayer requires it too, but this is not documented in that port's information (except in its own documentation). Thanks, -kc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 13:15:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id 27D8037B417 for ; Tue, 22 Jan 2002 13:15:38 -0800 (PST) Received: by peitho.fxp.org (Postfix, from userid 1206) id BA01313667; Tue, 22 Jan 2002 16:15:31 -0500 (EST) Date: Tue, 22 Jan 2002 16:15:31 -0500 From: Bob Bomar To: questions@freebsd.org Subject: Mutt Message-ID: <20020122211531.GA72948@peitho.fxp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am trying to figure out how to turn the line wrap on, I tried set smart_wrap=yes, but it did not work. Its probably something simple, but I can not figure it out. Thanks Bob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 13:20:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.panix.com (mail2.panix.com [166.84.0.213]) by hub.freebsd.org (Postfix) with ESMTP id 5B4C437B402 for ; Tue, 22 Jan 2002 13:20:33 -0800 (PST) Received: from panix3.panix.com (panix3.panix.com [166.84.1.3]) by mail2.panix.com (Postfix) with ESMTP id 4DAA78EA2 for ; Tue, 22 Jan 2002 16:20:12 -0500 (EST) Received: (from cft@localhost) by panix3.panix.com (8.11.3nb1/8.8.8/PanixN1.0) id g0MLKCu02093 for freebsd-questions@freebsd.org; Tue, 22 Jan 2002 16:20:12 -0500 (EST) Date: Tue, 22 Jan 2002 16:20:12 -0500 From: Carl Tucker To: freebsd-questions@freebsd.org Subject: Re: ports browser Message-ID: <20020122212012.GA1105@panix.com> References: <013601c1a369$087651b0$0100a8c0@broken> <20020122171911.67E425D0A@ptavv.es.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020122171911.67E425D0A@ptavv.es.net> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 09:19:11AM -0800, Kevin Oberman wrote: > The "official" way is to cd to someplace in the ports tree and "make > readmes". You can do this at /usr/ports, but it will take a while! > Once complete, you the HTML browser of your choice to look around > starting at README.html in the directory you did the "make" in. I don't find the README.html files made that way any more useful than just doing 'lynx /usr/ports' and navigating around to the pkg-descr files. Actually I have my ports tree as a lynx bookmark, and start it with 'lynx -book'. Fewer keystrokes. -- Carl Tucker cft@panix.com flestrin@worldnet.att.net tuckercl@phnsy.navy.mil To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 13:22: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp05.retemail.es (smtp05.iddeo.es [62.81.186.15]) by hub.freebsd.org (Postfix) with ESMTP id 3171E37B402 for ; Tue, 22 Jan 2002 13:22:04 -0800 (PST) Received: from conway.localdomain ([62.174.68.100]) by smtp05.retemail.es (InterMail vM.5.01.03.02 201-253-122-118-102-20010403) with SMTP id <20020122212151.XHSX1011.smtp05.retemail.es@conway.localdomain> for ; Tue, 22 Jan 2002 22:21:51 +0100 Date: Tue, 22 Jan 2002 22:23:52 +0100 From: F.Xavier Noria To: freebsd-questions@freebsd.org Subject: doubts on maintaining ports Message-Id: <20020122222352.430269b5.fxn@isoco.com> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have some doubts on maintaining ports: 1. After running cvsup (with GUI if necessary) how could one know whether there are new or removed ports? 2. I use "portversion -l '<'" to see which installed ports have a new version, but often I would like to know the actual new version number to decide whether it's worth updating or not. Is there any standard utility or way to do this or do I need to write my own script? 3. I would like to run "make readme" just on modified ports, whether they are installed or not, what would be a suitable way to accomplish it? Thank you, and regards from Barcelona, -- fxn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 13:32:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id BCEBE37B400 for ; Tue, 22 Jan 2002 13:32:49 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id 8E2435D31; Tue, 22 Jan 2002 13:32:49 -0800 (PST) To: fxn@isoco.com Cc: freebsd-questions@freebsd.org Subject: Re: doubts on maintaining ports In-reply-to: Your message of "Tue, 22 Jan 2002 22:23:52 +0100." <20020122222352.430269b5.fxn@isoco.com> Date: Tue, 22 Jan 2002 13:32:49 -0800 From: "Kevin Oberman" Message-Id: <20020122213249.8E2435D31@ptavv.es.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Tue, 22 Jan 2002 22:23:52 +0100 > From: F.Xavier Noria > Sender: owner-freebsd-questions@FreeBSD.ORG > > I have some doubts on maintaining ports: > > 1. After running cvsup (with GUI if necessary) how could one > know whether there are new or removed ports? > > 2. I use "portversion -l '<'" to see which installed ports have > a new version, but often I would like to know the actual new > version number to decide whether it's worth updating or not. > Is there any standard utility or way to do this or do I need > to write my own script? > > 3. I would like to run "make readme" just on modified ports, > whether they are installed or not, what would be a suitable > way to accomplish it? Try "portversion -vL =". It will list new and old version numbers along with other relevant details like whether a port has been removed. (But it won't tell you if it's marked BROKEN or FORBIDDEN.) Don't forget to run 'portsdb -Uu' every time you cvsup. If make is working correctly and you have already done a 'make readme' on the full ports tree, a new 'make readme' should only re-make the README files in ports that have been changed. Other than that, you would need to read the cvsup log an manually update the modified port. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 13:39:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from meter.hydro.washington.edu (meter.hydro.washington.edu [128.95.246.163]) by hub.freebsd.org (Postfix) with ESMTP id 3F11B37B416 for ; Tue, 22 Jan 2002 13:39:19 -0800 (PST) Received: from localhost (penglish@localhost) by meter.hydro.washington.edu (8.11.4/8.11.4) with ESMTP id g0MLdIr11981; Tue, 22 Jan 2002 13:39:18 -0800 (PST) Date: Tue, 22 Jan 2002 13:39:18 -0800 (PST) From: Paul English To: freebsd-questions@FreeBSD.ORG Cc: Paul English Subject: Installing a port that is already "in the base system" In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I want to install a port that is already "in the base system." That is the message that I get when I do a `make`, and it refuses to install. How can I do this? I'd like a couple of things to be properly installed in /usr/local, and also to upgrade some things from the base system. Thanks, Paul To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 13:43:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blade.elitsat.net (blade.elitsat.net [209.239.78.129]) by hub.freebsd.org (Postfix) with ESMTP id 6B05437B405 for ; Tue, 22 Jan 2002 13:43:12 -0800 (PST) Received: from localhost (amour@localhost) by blade.elitsat.net (8.11.6/8.11.6) with ESMTP id g0MLh7i78446 for ; Tue, 22 Jan 2002 23:43:07 +0200 (EET) (envelope-from amour@blade.elitsat.net) Date: Tue, 22 Jan 2002 23:43:03 +0200 (EET) From: Alexander To: Subject: IPX over tunnel Message-ID: <20020122233706.N78417-100000@blade.elitsat.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I have to make the following situation Novell Network(using ipx) -> freebsd router1 with tunnel to freebsd router2 -> internet -> freebsd router2 with tunnel to 1 -> novell network(using ipx) 2 But I'm not sure how can I route IPX over a tunnel ? I've checked the kernel to see what does it have but ... options IPX #IPX/SPX communications protocols options IPXIP #IPX in IP encapsulation (not available) options IPTUNNEL #IP in IPX encapsulation (not available) this thing "not availabe" doesn't encourage me :) I'm going to use (/sbin/) nos-tun for tunneling, just a simple tunnel If you have any idea how the IPX can be routed please write me. thanks P.S. please excuse my english To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 13:55: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from c002.snv.cp.net (c002-h001.c002.snv.cp.net [209.228.32.165]) by hub.freebsd.org (Postfix) with SMTP id AC77537B416 for ; Tue, 22 Jan 2002 13:54:44 -0800 (PST) Received: (cpmta 11448 invoked from network); 22 Jan 2002 13:54:42 -0800 Received: from 63.233.206.96 (HELO concentric.net) by smtp.peoplepc.com (209.228.32.165) with SMTP; 22 Jan 2002 13:54:43 -0800 X-Sent: 22 Jan 2002 21:54:43 GMT Message-ID: <3C4DE0C4.2DDC6D52@concentric.net> Date: Tue, 22 Jan 2002 16:59:32 -0500 From: mh X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.19 i686) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Subject: Re: can't build Evolution: Solution? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >Ray Kohler wrote: > > I did not receive a reply from the port maintainer, but I was > > able to "solve" the problem of the missing libfreetype.so.6. I > > deinstalled all the XFree86-*-4* sub-packages and reinstalled the > > mega-port in /usr/ports/x11/XFree86-4. This provided > > libfreetype.so.6. I copied this file as libfreetype.so.6.save and > > then deinstalled the mega-port, reinstalled the sub-ports, and > > copied the libfreetype file to its original location. Then I > > deinstalled evolution and reinstalled it, and it built and > > installed without problem. > > Well, libfreetype is part of the print/freetype2 port, but it's at > so.7 now. It looks like part of your ports tree is stale and > possibly goofed up anyway. I'd try deleting it and getting a new > one if you can (my apologies if you already tried that). > > -- > Ray Kohler > "Have you lived here all your life?" > "Oh, twice that long." If anything is stale and goofed-up, it would be me. I use CVSup to keep ports current nightly. I decided to try again (sitting in front of the box, not at work): 1. removed /usr/X11R6/lib/libfreetype.so.6 (in keeping with problem report ports/30813) 2. checked and print/freetype2 port is installed, and libfreetype.so.7 was installed in /usr/local/lib 3. deinstalled / reinstalled evolution 4. tried running evolution. failed with "/usr/libexec/ld-elf.so.1: shared object "libfreetype.so.6" not found 5. made link from /usr/X11R6/lib/libfreetype.so.6 to /usr/local/lib/freetype.so.7 6. deinstalled / reinstalled evolution. probably not necessary. 7. ran evolution, works fine. So, it works, with the link. Until libfreetype.so.8 get installed. Now, is this a problem with the evolution port? I really want to and am trying to learn here, so don't give up on me. Obviously I don't program but I'd like to help out where I can. Thanks for any suggestions. mike -- If they give you ruled paper, write the other way. -- Juan Ramon Jimenez To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 14:31:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.mx.pitdc1.stargate.net (smtp1.mx.pitdc1.stargate.net [206.210.69.141]) by hub.freebsd.org (Postfix) with SMTP id 2C58F37B404 for ; Tue, 22 Jan 2002 14:31:13 -0800 (PST) Received: (qmail 3088 invoked from network); 22 Jan 2002 22:31:06 -0000 Received: from dap-209-166-136-73.nfas.greensburg-tnt-1.sns234.pa.stargate.net (HELO wastegate.net) (209.166.136.73) by smtp1.mx.pitdc1.stargate.net with SMTP; 22 Jan 2002 22:31:06 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id C3E0D4844F; Tue, 22 Jan 2002 17:31:44 -0500 (EST) From: "Doug Reynolds" To: "Bob Giesen" , "freebsd-questions" Date: Tue, 22 Jan 2002 17:33:34 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: <006801c1a2d3$1cc73120$328dfea9@pegasus> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 Message-Id: <20020122223144.C3E0D4844F@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002 17:26:53 -0600, Bob Giesen wrote: >Thanks for the quick reponse. I didn't see the dc option in my "Complete >FreeBSD" book, so I didn't think to try that. Is that available in 3.2? >I'll give it a try in a little while. according to: http://www.freebsd.org/releases/3.2R/notes.html Lite-On 82c168/82c169 PNIC fast ethernet NICs including the following: LinkSys EtherFast LNE100TX NetGear FA310-TX Rev. D1 Matrox FastNIC 10/100 how well it works could be another question; although it'll probably work fine. i would suggest downloading/buying/cvsup'ng 4.5-RELEASE when it becomes available, since it has _many_ security fixes and new features. --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 14:34:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.mx.pitdc1.stargate.net (smtp1.mx.pitdc1.stargate.net [206.210.69.141]) by hub.freebsd.org (Postfix) with SMTP id ADD0537B404 for ; Tue, 22 Jan 2002 14:34:19 -0800 (PST) Received: (qmail 10494 invoked from network); 22 Jan 2002 22:34:18 -0000 Received: from dap-209-166-136-73.nfas.greensburg-tnt-1.sns234.pa.stargate.net (HELO wastegate.net) (209.166.136.73) by smtp1.mx.pitdc1.stargate.net with SMTP; 22 Jan 2002 22:34:18 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id CBB0E48449; Tue, 22 Jan 2002 17:34:56 -0500 (EST) From: "Doug Reynolds" To: "Bob Giesen" , "freebsd-questions" Date: Tue, 22 Jan 2002 17:36:46 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: <001501c1a2e4$d975be20$328dfea9@pegasus> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 Message-Id: <20020122223456.CBB0E48449@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002 19:33:17 -0600, Bob Giesen wrote: > Well, I just tried it, and it didn't seem to do anything. (Nothing in >dmesg or ifconfig -a...) I didn't see anything in /sys/pci that looked like >it should be an option, either. (I'm guessing I'd find an if_dc.c file, or >something like that, along w/ an associated header file.) > I did another search on Google and found the dc(4) man page, which stated >that that driver first appeared in FreeBSD in v4.0. Does anyone know if it >will work in 3.2 -- and, if it can (or even might), where I can find the >driver's source (other than in a full-blown 4.x download), so that I might >give it a try? it could be under a different name- they changed a bunch of device names from 3.x to 4.x. the dc0 device in 4.5-rc supports a lot more cards: # The `dc' device provides support for PCI fast ethernet adapters # based on the DEC/Intel 21143 and various workalikes including: # the ADMtek AL981 Comet and AN985 Centaur, the ASIX Electronics # AX88140A and AX88141, the Davicom DM9100 and DM9102, the Lite-On # 82c168 and 82c169 PNIC, the Lite-On/Macronix LC82C115 PNIC II # and the Macronix 98713/98713A/98715/98715A/98725 PMAC. This driver # replaces the old al, ax, dm, pn and mx drivers. List of brands: # Digital DE500-BA, Kingston KNE100TX, D-Link DFE-570TX, SOHOware SFA110, # SVEC PN102-TX, CNet Pro110B, 120A, and 120B, Compex RL100-TX, # LinkSys LNE100TX, LNE100TX V2.0, Jaton XpressNet, Alfa Inc GFC2204, # KNE110TX. where as 3.x is listed as: Lite-On 82c168/82c169 PNIC fast ethernet NICs including the following: LinkSys EtherFast LNE100TX NetGear FA310-TX Rev. D1 Matrox FastNIC 10/100 --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 14:40:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from linuxmail.touchtunes.com (operator.touchtunes.com [216.94.139.201]) by hub.freebsd.org (Postfix) with ESMTP id F16E537B405 for ; Tue, 22 Jan 2002 14:40:18 -0800 (PST) Received: from sunder.touchtunes.com (sunder.touchtunes.com [192.168.0.26]) by linuxmail.touchtunes.com (8.9.3/8.8.7) with ESMTP id RAA13161; Tue, 22 Jan 2002 17:40:17 -0500 Received: (from dinjo@localhost) by sunder.touchtunes.com (8.11.6/8.11.6) id g0MMe5E26917; Tue, 22 Jan 2002 17:40:05 -0500 (EST) (envelope-from dinjo) Date: Tue, 22 Jan 2002 17:40:05 -0500 From: Joel Dinel To: Bob Bomar Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Mutt Message-ID: <20020122174005.A26883@sunder.touchtunes.com> Mail-Followup-To: Joel Dinel , Bob Bomar , freebsd-questions@FreeBSD.ORG References: <20020122211531.GA72948@peitho.fxp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020122211531.GA72948@peitho.fxp.org>; from bulldog@peitho.fxp.org on Tue, Jan 22, 2002 at 04:15:31PM -0500 X-Useless-Header: Look ma, it's a # sign! X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 04:15:31PM -0500, Bob Bomar wrote: > Date: Tue, 22 Jan 2002 16:15:31 -0500 > From: Bob Bomar > To: questions@FreeBSD.ORG > Subject: Mutt > > I am trying to figure out how to turn the line wrap on, I tried set smart_wrap=yes, but it did not work. Its probably something simple, but I can not figure it out. > > > Thanks > > Bob > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ---end quoted text--- I use vim to edit my messages. Here's what I have in my .muttrc : set editor="vim +9 -c 'set tw=72 ft=mail'" Hope this helps. -- Joel Dinel System Administrator TouchTunes Digital Jukebox, Inc. GnuPG key : http://darkhost.mine.nu:81/~joel/misc/mykey.asc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 14:57:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe41.pav2.hotmail.com [64.4.36.98]) by hub.freebsd.org (Postfix) with ESMTP id C72DA37B416 for ; Tue, 22 Jan 2002 14:57:37 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Jan 2002 14:57:37 -0800 X-Originating-IP: [64.81.32.110] From: "rachel" To: Subject: Virtual interface Date: Tue, 22 Jan 2002 14:57:27 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: X-OriginalArrivalTime: 22 Jan 2002 22:57:37.0734 (UTC) FILETIME=[2FEA8660:01C1A398] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi! I have a freebsd4.4 box that has two nics, one going to a flowpoint144 router that is acting as a bridge that gives the box its public ip and my linksys router which gives it a private ip (the router is also plugged into the flowpoint and also gets a public ip form it). I have wanted to monitor my router with mrtg and have that all setup. To get the snmp data from the flowpoint I made a virtual interface off dc0 (the one going to the flowpoint) which is called dc0:1 with ip 192.168.254.1, broadcast 192.168.254.255, netmask 255.255.255.0. It is set to activate at boot, but it doesn't start at boot up. And when I bring it up manually it calls itself dc0:0. It does work to collect the snmp data from the flowpoint at 192.168.254.254, but the problem is that that interface now does not have a route to the outside world :-(. Is there a way to have both ips on that nic that work at the same time? Or perhaps the problem is in the flowpoint, like it can't handle two ips on the same port. Any ideas? I could put a 3rd nic on the computer, but that is over the top. Thank you! Rachel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 15: 1:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 25AE537B405 for ; Tue, 22 Jan 2002 15:01:10 -0800 (PST) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) with ESMTP id g0MN1Fn35851; Tue, 22 Jan 2002 18:01:24 -0500 (EST) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Tue, 22 Jan 2002 18:01:15 -0500 (EST) From: Joe Clarke To: mh Cc: freebsd-questions@FreeBSD.ORG Subject: Re: can't build Evolution: Solution? In-Reply-To: <3C4DE0C4.2DDC6D52@concentric.net> Message-ID: <20020122175741.O32336-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 22 Jan 2002, mh wrote: > >Ray Kohler wrote: > > > I did not receive a reply from the port maintainer, but I was > > > able to "solve" the problem of the missing libfreetype.so.6. I > > > deinstalled all the XFree86-*-4* sub-packages and reinstalled the > > > mega-port in /usr/ports/x11/XFree86-4. This provided > > > libfreetype.so.6. I copied this file as libfreetype.so.6.save and > > > then deinstalled the mega-port, reinstalled the sub-ports, and > > > copied the libfreetype file to its original location. Then I > > > deinstalled evolution and reinstalled it, and it built and > > > installed without problem. > > > > Well, libfreetype is part of the print/freetype2 port, but it's at > > so.7 now. It looks like part of your ports tree is stale and > > possibly goofed up anyway. I'd try deleting it and getting a new > > one if you can (my apologies if you already tried that). > > > > -- > > Ray Kohler > > "Have you lived here all your life?" > > "Oh, twice that long." > > > If anything is stale and goofed-up, it would be me. I use CVSup to keep > ports current nightly. I decided to try again (sitting in front of the > box, not at work): > > 1. removed /usr/X11R6/lib/libfreetype.so.6 (in keeping with problem > report ports/30813) > 2. checked and print/freetype2 port is installed, and libfreetype.so.7 > was installed in /usr/local/lib > 3. deinstalled / reinstalled evolution > 4. tried running evolution. failed with "/usr/libexec/ld-elf.so.1: > shared object "libfreetype.so.6" not found > 5. made link from /usr/X11R6/lib/libfreetype.so.6 to > /usr/local/lib/freetype.so.7 > 6. deinstalled / reinstalled evolution. probably not necessary. > 7. ran evolution, works fine. > > So, it works, with the link. Until libfreetype.so.8 get installed. Now, > is this a problem with the evolution port? Maxim recently upgraded freetype2 and evolution to chase the new library number. The problem iis really with ever-changing lib numbers. When a library major number changes (like freetype.7 to .8), you really have two choices: 1. keep the old version of the lib around for your old applications, 2. upgrade the library, and all the ports it depends on. The portupgrade tool makes 2 a snap. Just do: portupgrade -f -r freetype2 After cvsup'ing a current ports tree. Symlinking can be a bad idea since library differences can cause core dumps or other unexpected behavior. Joe > > I really want to and am trying to learn here, so don't give up on me. > Obviously I don't program but I'd like to help out where I can. Thanks > for any suggestions. > > mike > -- > If they give you ruled paper, > write the other way. > -- Juan Ramon Jimenez > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 15: 2:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20108.mail.yahoo.com (web20108.mail.yahoo.com [216.136.226.45]) by hub.freebsd.org (Postfix) with SMTP id 3ED3837B420 for ; Tue, 22 Jan 2002 15:01:58 -0800 (PST) Message-ID: <20020122230157.57011.qmail@web20108.mail.yahoo.com> Received: from [216.230.149.131] by web20108.mail.yahoo.com via HTTP; Tue, 22 Jan 2002 15:01:57 PST Date: Tue, 22 Jan 2002 15:01:57 -0800 (PST) From: "Gerardo Amaya G." Subject: installation of windowmaker 0.80 To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all I'm trying to install the latest version of windowmaker 0.80 from ports and when I make install I get the following error configure: exit 1 ("end of config.log") ***ERROR CODE 1 what is the problem?? please reply also to my address because I don't have this email subscribe to the list thank you Gerardo Amaya __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 15:20:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp06.wxs.nl (smtp06.wxs.nl [195.121.6.58]) by hub.freebsd.org (Postfix) with ESMTP id E260537B404 for ; Tue, 22 Jan 2002 15:20:42 -0800 (PST) Received: from 213.10.151.186 ([213.10.151.186]) by smtp06.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id GQD4UG01.103; Wed, 23 Jan 2002 00:20:40 +0100 Date: Wed, 23 Jan 2002 00:20:40 +0100 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: Alex X-Priority: 3 (Normal) Message-ID: <2634816012.20020123002040@cybertron.tmfweb.nl> To: Chris Corayer Cc: "'questions@FreeBSD.ORG'" Subject: Re[2]: ssh & putty In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Chris, Monday, January 21, 2002, 4:21:14 PM, you wrote: CC> "Date: Sat, 19 Jan 2002 21:35:10 -0500 CC> From: "Joe & Fhe Barbish" CC> Subject: ssh & putty CC> Have sshd enabled in rc.conf. Downloaded putty programs CC> to Winbox and unzipped. Putty starts and I enter IP CC> address of my FBSD box. CC> Every time I tell it to open connection I get a error message CC> [unable to open connection to IP address, network error]. CC> From the same Winbox I can telnet to FBSD box using same IP CC> address as used with putty, so I know it's not network error. PUTTY is both a telnet and a ssh client (if you got the rigth one). Its default stands on telnet. You realy have to go though all the tabs and make the rigth settings. This wil also encrease sucurity. (Use version 2) One you are done, you can save your work and reload the next time from the GUI. -- Best regards, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 15:25:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from po4.glue.umd.edu (po4.glue.umd.edu [128.8.10.124]) by hub.freebsd.org (Postfix) with ESMTP id 46E9437B400 for ; Tue, 22 Jan 2002 15:25:33 -0800 (PST) Received: from glue.umd.edu (darkstar.umd.edu [128.8.215.163]) by po4.glue.umd.edu (8.10.1/8.10.1) with ESMTP id g0MNPWR21550 for ; Tue, 22 Jan 2002 18:25:32 -0500 (EST) Message-ID: <3C4DF4ED.384442AC@glue.umd.edu> Date: Tue, 22 Jan 2002 18:25:33 -0500 From: Brandon Fosdick X-Mailer: Mozilla 4.78 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Long user names References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jon Larssen wrote: > > Hello, > > I've been charged with the implementation here at my company of a > company-wide single-sign-in (or login), much like MS Passport is. The > problem is that the designers decided to use the "global" usernames of the > form @. For instance, my network username would be: > > jon@noc.example.com > > The rationale is very simple: give the users a login name they can remember, > make them "pretty" and human readable, and, above all, make them unique. You > know, we actually have jon@example.com and jon@noc.example.com, so both of > us need unique usernames. The designers wanted to have the email addresses > for login names, not something like jlarssen21... So if you're userid is jon@noc.example.com and email addresses are formed by appending "@" to the userid...does that make your email address jon@noc.example.com@noc.example.com? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 15:27: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp05.wxs.nl (smtp05.wxs.nl [195.121.6.57]) by hub.freebsd.org (Postfix) with ESMTP id 38BC437B402 for ; Tue, 22 Jan 2002 15:27:01 -0800 (PST) Received: from 213.10.151.186 ([213.10.151.186]) by smtp05.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id GQD54Z02.4Z5; Wed, 23 Jan 2002 00:26:59 +0100 Date: Wed, 23 Jan 2002 00:26:59 +0100 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: Alex X-Priority: 3 (Normal) Message-ID: <17635195218.20020123002659@cybertron.tmfweb.nl> To: "Jim McIver" Cc: freebsd-questions@freebsd.org Subject: Re: port In-Reply-To: <3C4C16CF.18360.13CC36BA@localhost> References: <3C4C16CF.18360.13CC36BA@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Jim, Monday, January 21, 2002, 2:32:32 PM, you wrote: JM> How would tell what port a daemon is running on? JM> I know that FTP is suppose to use port 21 and 20, but is there a way to JM> see this? You can use the port nmap, to detect port usages by running deamons, for this. -- Best regards, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 15:27:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.mail.pas.earthlink.net [207.217.120.50]) by hub.freebsd.org (Postfix) with ESMTP id C9BBA37B417 for ; Tue, 22 Jan 2002 15:27:04 -0800 (PST) Received: from dialup-65.57.14.11.dial1.chicago1.level3.net ([65.57.14.11] helo=pegasus) by avocet.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16TAJh-00062F-00; Tue, 22 Jan 2002 15:27:01 -0800 Message-ID: <003c01c1a39c$4adb5b80$0100a8c0@pegasus> From: "Bob Giesen" To: "Doug Reynolds" , "freebsd-questions" References: <20020122223144.C3E0D4844F@wastegate.net> Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 Date: Tue, 22 Jan 2002 17:26:59 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Doug Reynolds" To: "Bob Giesen" ; "freebsd-questions" Sent: Tuesday, January 22, 2002 4:33 PM Subject: Re: Linksys LNE10TX v4.1, FreeBSD v3.2 > On Mon, 21 Jan 2002 17:26:53 -0600, Bob Giesen wrote: > > >Thanks for the quick reponse. I didn't see the dc option in my "Complete > >FreeBSD" book, so I didn't think to try that. Is that available in 3.2? > >I'll give it a try in a little while. > > according to: http://www.freebsd.org/releases/3.2R/notes.html > > Lite-On 82c168/82c169 PNIC fast ethernet NICs including the following: > LinkSys EtherFast LNE100TX > NetGear FA310-TX Rev. D1 > Matrox FastNIC 10/100 > > how well it works could be another question; although it'll probably > work fine. > > i would suggest downloading/buying/cvsup'ng 4.5-RELEASE when it becomes > available, since it has _many_ security fixes and new features. > > --- > doug reynolds | the maverick | mav@wastegate.net > > PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB The support for the LNE100TX in 3.2 was for an earlier version of the card. (It used, I believe, the de or the pn driver.) I've learned that there have been at least eight incarnations of this card (through version 5), with at least four different chips (82c168 PNIC, 82c169 PNIC, 82c115 PNIC II, ADMtek AN985 Centaur) have been used in these cards. I have v4.1 with the AN985, which doesn't seem to be recognized by either the de or pn driver. I found an article by Bill Paul (who writes many of these drivers) that led me to try a newer driver, al, which shipped with a newer release. It recognized my card, but not its ethernet address. I can ping myself, but no other machines... I had hoped to find a quick fix to get this working, but it looks like I'll have to do the upgrade. Thanks for the heads-up on the R4.5 fixes; I think I'll take heed your advice on watching for that. - Bob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 15:31:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from buddha.quicksilver.co.nz (buddha.quicksilver.co.nz [202.89.130.1]) by hub.freebsd.org (Postfix) with ESMTP id 9653D37B41C for ; Tue, 22 Jan 2002 15:31:40 -0800 (PST) Received: from sunlight (dhcp1.quicksilver.co.nz [202.89.130.10]) by buddha.quicksilver.co.nz (8.9.3/8.9.3) with SMTP id MAA15472 for ; Wed, 23 Jan 2002 12:31:35 +1300 (NZDT) Message-ID: <016f01c1a39c$d0408700$0a8259ca@quicksilver.co.nz> From: "Mark Frater" To: Subject: getting ldconfig to recognise libs Date: Wed, 23 Jan 2002 12:30:43 +1300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, I'm trying to compile a program (sqwebmail) that requires libpq.so -Its currently throwing up the following error during configure. -checking for pg_config... (cached) /usr/local/bin/pg_config -checking for PQsetdbLogin... (cached) no -configure: error: --with-authpgsql specified but no libpq.so -configure: error: ./configure failed for authlib ..libpq.so exists in /local/www/pgsql/lib.. # ls -tal /local/www/pgsql/lib/libpq.so* lrwxr-xr-x 1 root pop 10 Jan 11 12:39 libpq.so -> libpq.so.2 -rw-r--r-- 1 pgsql pop 46163 May 24 2000 libpq.so.2 .. so I've set ldconfig search directories to include the location of libpq.so # ldconfig -i /usr/lib/compat /usr/X11R6/lib /usr/local/lib /usr/lib /local/www/pgsql/lib .. ldconfig is now picking up other libs in that directory but ldconfig doesn't pick up libpq.so # ldconfig -r | grep pq 98:-lpq.2 => /usr/lib/libpq.so.2 99:-lpq.2 => /local/www/pgsql/lib/libpq.so.2 101:-lpq++.3 => /local/www/pgsql/lib/libpq++.so.3 Can anyone tell me why? .. and how I can get ldconfig to find libpq.so ? Regards Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 15:34:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp05.wxs.nl (smtp05.wxs.nl [195.121.6.57]) by hub.freebsd.org (Postfix) with ESMTP id 131CD37B400 for ; Tue, 22 Jan 2002 15:34:23 -0800 (PST) Received: from 213.10.151.186 ([213.10.151.186]) by smtp05.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id GQD5H900.31S; Wed, 23 Jan 2002 00:34:21 +0100 Date: Wed, 23 Jan 2002 00:34:21 +0100 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: Alex X-Priority: 3 (Normal) Message-ID: <16435636813.20020123003421@cybertron.tmfweb.nl> To: chip Cc: questions@freebsd.org Subject: Re: Opinions wanted - dealing with file sharing in AOL IM In-Reply-To: <200201211320107.SM00412@there> References: <200201211320107.SM00412@there> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello chip, Monday, January 21, 2002, 10:20:13 PM, you wrote: c> One of my sons asked me today, about opening a port on the firewall so he and c> some friends from school can share files. I'm a bit leary of opening a port c> on the firewall. I know my freebsd boxes will be safe from windoze viruses by c> there are also 4 windoze boxes on my network. I was thinking maybe opening a c> high number port, say over 50000 or whatever (at least then it would be c> relatively safe from casual port scanners). Or is this 'stinkin thinkin'? c> I suggested setting up an ftp site and he could give his friends passwords, c> but he would rather just use the IM sharing feature. I've never used, so I'm c> not familiar with it. c> How have you guys dealt with this? It would go with the ftp option. It better at not shutting any body from his school, who is authorize to use it, out. If you have to install this, say NO. If all you have to do is open it, and have a natd redirect of the port, than i don't think there is any risk at it. -- Best regards, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 15:41: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from freebsd.tekrealm.net (dsl081-247-162.sfo1.dsl.speakeasy.net [64.81.247.162]) by hub.freebsd.org (Postfix) with ESMTP id 1B1EB37B427 for ; Tue, 22 Jan 2002 15:40:56 -0800 (PST) Received: (from root@localhost) by freebsd.tekrealm.net (8.11.6/8.11.4) id g0MNete42341; Tue, 22 Jan 2002 15:40:55 -0800 (PST) (envelope-from elitetek@tekrealm.net) Received: (from elitetek@localhost) by freebsd.tekrealm.net (8.11.6/8.11.4av) id g0MNesT42333; Tue, 22 Jan 2002 15:40:54 -0800 (PST) (envelope-from elitetek@tekrealm.net) X-Authentication-Warning: freebsd.tekrealm.net: elitetek set sender to elitetek@tekrealm.net using -f Date: Tue, 22 Jan 2002 15:40:54 -0800 From: Andrew Stuart To: Bob Bomar Cc: questions@freebsd.org Subject: Re: Neomail Message-ID: <20020122154054.A42217@freebsd.tekrealm.net> Reply-To: elitetek@tekrealm.net References: <20020122201923.GA14698@peitho.fxp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020122201923.GA14698@peitho.fxp.org>; from bulldog@peitho.fxp.org on Tue, Jan 22, 2002 at 03:19:23PM -0500 X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 22 Jan 2002 at 15:19:23 -0500, Bob Bomar wrote: > I took the advice and installed Neomail. It installed very fast, and easily. When I went to domain.com/cgi-bin/neomail.pl it comes up with the message: > > "Neomail Error" > > "Default!" > > I am running FreeBSD 4.4 and Apache 1.13, does anybody have any ideas of what I need to do? > > > Thanks > > Bob > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message my guess would be that your suidperl is not setup correctly. ls -al /usr/bin/suidperl -r-s--x--x 3 root wheel 50976 Dec 15 17:37 /usr/bin/suidperl that is what your suidperl should look like, if it isnt, try setting the suid bit. neomail requires suidperl, to access the mail files, etc.. p.s. this is a BIG security risk.. -- Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 15:49:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp01.wxs.nl (smtp01.wxs.nl [195.121.6.61]) by hub.freebsd.org (Postfix) with ESMTP id 0A4AC37B400 for ; Tue, 22 Jan 2002 15:49:28 -0800 (PST) Received: from 213.10.151.186 ([213.10.151.186]) by smtp01.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id GQD66D00.UPN; Wed, 23 Jan 2002 00:49:25 +0100 Date: Wed, 23 Jan 2002 00:49:24 +0100 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: Alex X-Priority: 3 (Normal) Message-ID: <13736540512.20020123004924@cybertron.tmfweb.nl> To: "Mike Meyer" Cc: Cliff Sarginson , Wayne Pascoe , Subject: Re[4]: what is a good language for system administration? In-Reply-To: <15436.37910.635122.378864@guru.mired.org> References: <15436.37910.635122.378864@guru.mired.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Mike, Monday, January 21, 2002, 11:20:06 PM, you wrote: MM> Cliff Sarginson types: >> On Sun, Jan 20, 2002 at 10:07:25AM -0600, Mike Meyer wrote: >> > Alfatrion types: >> I didn't write any of the (>> >) folowing: >> > True. There's a couple of Python-specific remote method invocation >> > implementations floating around, but I haven't investigated them. I >> > like the ability to choose the language appropriate for each object >> > that comes with using CORBA. >> - (Painful as I find this to say) learn Perl. There is such a huge >> amount of canned modules for Perl available, and it is increasingly >> used where people used to write "C" for something too slow to be >> done in the shell, that I don;t think there are any other players >> seriously in the game yet. MM> I think Perl is more useful on your resume than as a system MM> administration language. On the other hand, you're almost certain to MM> encounter it most places, so being able to read and debug it will be MM> handy. I have heared that, you cound't read perl any more, if you don't do it for about 6 months. -- Best regards, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 15:50:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from freebsd.tekrealm.net (dsl081-247-162.sfo1.dsl.speakeasy.net [64.81.247.162]) by hub.freebsd.org (Postfix) with ESMTP id A6A8037B47A for ; Tue, 22 Jan 2002 15:49:57 -0800 (PST) Received: (from root@localhost) by freebsd.tekrealm.net (8.11.6/8.11.4) id g0MNnu342684; Tue, 22 Jan 2002 15:49:56 -0800 (PST) (envelope-from elitetek@tekrealm.net) Received: (from elitetek@localhost) by freebsd.tekrealm.net (8.11.6/8.11.4av) id g0MNnsq42672; Tue, 22 Jan 2002 15:49:54 -0800 (PST) (envelope-from elitetek@tekrealm.net) X-Authentication-Warning: freebsd.tekrealm.net: elitetek set sender to elitetek@tekrealm.net using -f Date: Tue, 22 Jan 2002 15:49:54 -0800 From: Andrew Stuart To: Bob Bomar Cc: questions@freebsd.org Subject: Re: Neomail Message-ID: <20020122154954.A42403@freebsd.tekrealm.net> Reply-To: elitetek@tekrealm.net References: <20020122201923.GA14698@peitho.fxp.org> <20020122154054.A42217@freebsd.tekrealm.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020122154054.A42217@freebsd.tekrealm.net>; from elitetek@tekrealm.net on Tue, Jan 22, 2002 at 03:40:54PM -0800 X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 22 Jan 2002 at 15:40:54 -0800, Andrew Stuart wrote: > On Tue, 22 Jan 2002 at 15:19:23 -0500, Bob Bomar wrote: > > I took the advice and installed Neomail. It installed very fast, and easily. When I went to domain.com/cgi-bin/neomail.pl it comes up with the message: > > > > "Neomail Error" > > > > "Default!" > > > > I am running FreeBSD 4.4 and Apache 1.13, does anybody have any ideas of what I need to do? > > > > > > Thanks > > > > Bob > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > my guess would be that your suidperl is not setup correctly. > > ls -al /usr/bin/suidperl > -r-s--x--x 3 root wheel 50976 Dec 15 17:37 /usr/bin/suidperl > > that is what your suidperl should look like, if it isnt, try setting the > suid bit. neomail requires suidperl, to access the mail files, etc.. > p.s. this is a BIG security risk.. > > -- > Andrew > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message have you updated your cgi and md5 perl modules? the ones in freebsd's base are not new enough.. at least of 4.3, not sure if they hyave been updated since.. also i may suggest against neomail, because upon going to there website, you will notice that they have suspended the project. "IMPORTANT NEWS Future development of the official version of NeoMail has been cancelled, or at the best, indefinitely suspended." -- Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 15:58:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web13002.mail.yahoo.com (web13002.mail.yahoo.com [216.136.174.12]) by hub.freebsd.org (Postfix) with SMTP id D23CF37B416 for ; Tue, 22 Jan 2002 15:58:09 -0800 (PST) Message-ID: <20020122235809.55276.qmail@web13002.mail.yahoo.com> Received: from [212.166.159.111] by web13002.mail.yahoo.com via HTTP; Tue, 22 Jan 2002 15:58:09 PST Date: Tue, 22 Jan 2002 15:58:09 -0800 (PST) From: Russo Roberto Subject: Problem with FORE PCA-200E atm adaptor To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I am working to use a FORE PCA-200E atm adapter with my FreeBSD4.3; I have recompiled the kernel with the options for ATM and make all the suggested settings for the configuration, but not seems work; I have two PCs with two Fore PCA-200E with a Fore Switch; IS A STRANGE PROBLEM...!!!!! the same machines in the same hardware configuration but with Linux Redhat operating sistem work with no problems; when I try the two FreeBSD I can't see connectivity between the two machines; looking the output of the "atm show stats interface" command I see that the Atm adapter Send Data with no problem but not receive nothing; I try to use one PC with FreeBSD and one PC with Linux RedHAT; making a Ping from the FreeBSD to Linux (Freebsd\>ping 10.255.18.2) and using on LINUX the TCPDUMP utility I can see the packet ICMP that coming from the BSD and the ICMP- Reply that are sending from Linux to the FreeBSD but they aren't received (the input data of statistics is always 0); (I can see the ICMP-reply that are sended from the switch to the FreeBSD machine looking the switch PDUs statistics) - anybody can help me to resolve this problem ? Why the Atm adaptor can't read the data ? - There is something wrong in the configuration ? May be the settings for the PVC ? - there is a way to use a program like tcpdump with ATM ? (the comand "tcpdump -i atm0" NOT work) Thank you very much. These are my configurations file and settings: -------------------------------------------------- "atm show config" : Intf Vendor Model Media Bus Serial No hfa0 Fore PCA-200E OC-3c PCI 49238 MAC address = 00:20:48:08:c0:56 Hardware version = 1.0.4 Firmware version = 3.0.1 ---------------------------------------------------- "atm show interface" : Interface Sigmgr State hfa0 SIGPVC ACTIVE ATM address = - Network interfaces: atm0 --------------------------------------------------- "atm show VCC" : Interface VPI VCI AAL Type Dir State Encaps Owner hfa0 0 500 AAL5 PVC InOut ACTIVE LLC/SNAP IP ----------------------------------------------- "atm show IPVCC" : Net Intf VPI VCI State Flags IP Address atm0 0 500 ACTIVE PLM 10.255.18.2 ------------------------------------------------- "atm show stats interface" : Input Input Input Output Output Output Cmd Interface PDUs Bytes Errs PDUs Bytes Errs Errs hfa0 0 0 0 997 90376 0 0 -------------------------------------------------- - the CONFIG for the Kernel: options ATM_CORE options ATM_IP options ATM_SPANS options ATM_SIGPVC options ATM_UNI device hfa pseudo-device atm - the RC.conf setting atm_enable="YES" atm_netif_hfa0="atm 1" atm_sigmgr_hfa0="sigpvc" ifconfig_atm0="inet 10.255.18.1 netmask 255.255.255.0" - the PVC set up atm add PVC hfa0 0 500 aal5 LLC/SNAP IP atm0 10.255.18.2 Thanks...!!!!! Roberto __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 16: 5:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from swan.prod.itd.earthlink.net (swan.mail.pas.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id 0288837B400 for ; Tue, 22 Jan 2002 16:05:35 -0800 (PST) Received: from dialup-209.245.141.241.dial1.sanjose1.level3.net ([209.245.141.241] helo=blossom.cjclark.org) by swan.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16TAun-0007Yx-00; Tue, 22 Jan 2002 16:05:29 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g0N048M83039; Tue, 22 Jan 2002 16:04:08 -0800 (PST) (envelope-from cjc) Date: Tue, 22 Jan 2002 16:03:45 -0800 From: "Crist J . Clark" To: bind9 Cc: Bob Hall , FreeBSD Subject: Re: The tower of Hanoi Message-ID: <20020122160345.I77330@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20020122065612.H77330@blossom.cjclark.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from bind9@citystamp.com on Tue, Jan 22, 2002 at 11:58:50AM -0500 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 11:58:50AM -0500, bind9 wrote: > on 1/22/02 9:56 AM, Crist J . Clark at cristjc@earthlink.net wrote: > > > On Tue, Jan 22, 2002 at 09:44:05AM -0500, bind9 wrote: > >> on 1/22/02 4:01 AM, Crist J . Clark at cjc@FreeBSD.ORG wrote: > >> > >>> On Mon, Jan 21, 2002 at 04:44:43PM -0500, Matthew P. Marino wrote: > >>>> Well, this was in the output of a "dump" command that was trying to dump to > >>>> an > >>>> active atapi hard disk. > >>>> > >>>> dump -f /web/backups/full-1-20-02 /usr/local > >>> > >>> Bet you're trying to dump an MS-DOS filesystem. > >> > >> GASP!!! > >> > >> I don't think so, fstab doesn't think so. But obviously there is something > >> not good about that disk configuration. Must have configured wrong. I'll do > >> the best I can with "tar". Thanks. > > > > You'll also get that is you try to do something like dump a > > directory. Is there a filesystem mounted at /usr/local? > > Yes. Should I dump by disk i.e. /dev/adc1se?? You can, but that's not a vaild disk device name. > Or, do I have source and > destination backward; > > dump -f destination source Like dump(8) says, dump [-0123456789acknu] [-B records] [-b blocksize] [-D dumpdates] [-d density] [-f file] [-h level] [-s feet] [-T date] filesystem -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 16:17:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from citusc17.usc.edu (citusc17.usc.edu [128.125.38.177]) by hub.freebsd.org (Postfix) with ESMTP id 76A1637B417 for ; Tue, 22 Jan 2002 16:17:46 -0800 (PST) Received: (from kris@localhost) by citusc17.usc.edu (8.11.6/8.11.4) id g0N0Hgf07606; Tue, 22 Jan 2002 16:17:42 -0800 (PST) (envelope-from kris) Date: Tue, 22 Jan 2002 16:17:41 -0800 From: Kris Kennaway To: Bob Giesen Cc: Kris Kennaway , "Douglas R. Spindler" , freebsd-questions@FreeBSD.ORG Subject: Re: A question from a convert from Windows to FreeBSD Message-ID: <20020122161741.A7573@citusc17.usc.edu> References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> <20020122104018.C21075@xor.obsecurity.org> <007b01c1a381$93765900$328dfea9@pegasus> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <007b01c1a381$93765900$328dfea9@pegasus>; from BobGiesen@earthlink.net on Tue, Jan 22, 2002 at 02:15:33PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 22, 2002 at 02:15:33PM -0600, Bob Giesen wrote: > > > Here's my question, why do you guys make converting so difficult? > > > > That's a very subjective question, wouldn't you say? >=20 > Not very, no. I've been a computer junkie for 20 years (well, pretty > soon -- I got my first one in Feb., 1981), have made a living at UNIX sys= tem > administration, vocally advocate FreeBSD to any who will listen -- yet it= is > obvious to me why a recent convert from the dark side (a.k.a. micro$haft) > would consider FreeBSD to be difficult to install. Objectively speaking > (and I'm sure that it could be quantified in terms of time and keystrokes= ), > there is not much of a comparison when it comes to ease of installation -- > which is a major reason that FreeBSD installations number in the thousand= s, > rather than millions. No, it is subjective, because for example when I first transferred to FreeBSD a number of years ago I found the instructions very straightforward. The fact that other people find them more confusing is what makes it subjective, by definition. If we're comparing FreeBSD installations with Windows installations, I spent the entire weekend (literally!) last week trying to install Win98 on my K6-2/550 with quite standard hardware. Win98 would boot from CD but refuse to load the ATAPI drivers to read the rest of the CD; the Promise IDE controller wasn't detected out of the box, so I had to transfer my HDs to the motherboard controllers in order to install onto them once I got the CD media to work; the motherboard needed me to download 4 drivers in order for it to work without crashing; and my graphics card (Matrox dual-head G400) didn't work out of the box, and still causes Windows 98 to BSOD at startup every 2 out of 3 startups no matter what driver magic I've tried. Then Windows Update suggested a new driver for my intel fxp ethernet card which totally bodged it up, and I had to do major system file surgery to recover a working driver and stop it from continually trying to install the broken one. I had to disable power management because the default settings cause the system to hang when it tries to suspend. Then I found last night that the FAT16 partition I created using Win98 FDISK was created right in the middle of my UFS partition which was already on the disk. If I didn't have such expertise with Windows administration there is no way in hell I'd have been able to get this thing running. I can hardly think of more things which could have gone wrong with the installation to have made it more difficult. By contrast, FreeBSD installed and runs on the same system without a single hitch. > This is why: > > Since FreeBSD is a community supported project... >=20 > If unsophisticated users could easily install FreeBSD and a free office > app (such as StarOffice or KDE) that would operate on all those m$office > files in circulation, I think you'd see a lot more home offices with Free= BSD > as the system of choice. After all, how many people wouldn't love to get > something for free that will do all they really need of the topheavy > m$office apps? > > [snip] These are all pretty good statements, but unless someone (you?) has time to sit down and make these improvements they won't happen. That's how it works around here, of course.. Kris --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8TgElWry0BWjoQKURAv2MAKDB//g0By7iaAdyssM/a6sS73ErQgCeK7Dr eorpYkD1V4VdEC3Sfzh2QhI= =2cy6 -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 16:22: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from roc-66-66-72-6.rochester.rr.com (roc-66-66-72-6.rochester.rr.com [66.66.72.6]) by hub.freebsd.org (Postfix) with ESMTP id A8F6137B400 for ; Tue, 22 Jan 2002 16:22:06 -0800 (PST) Received: by roc-66-66-72-6.rochester.rr.com (Postfix, from userid 1000) id A6957901A21; Tue, 22 Jan 2002 19:22:04 -0500 (EST) Date: Tue, 22 Jan 2002 19:22:04 -0500 From: mpd To: Alex Cc: questions@freebsd.org Subject: Re: port Message-ID: <20020122192204.A16187@rochester.rr.com> References: <3C4C16CF.18360.13CC36BA@localhost> <17635195218.20020123002659@cybertron.tmfweb.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <17635195218.20020123002659@cybertron.tmfweb.nl>; from FreeBSD@cybertron.tmfweb.nl on Wed, Jan 23, 2002 at 12:26:59AM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jan 23, 2002 at 12:26:59AM +0100, Alex wrote: > Hello Jim, > > Monday, January 21, 2002, 2:32:32 PM, you wrote: > > JM> How would tell what port a daemon is running on? > > JM> I know that FTP is suppose to use port 21 and 20, but is there a way to > JM> see this? > > You can use the port nmap, to detect port usages by running deamons, for this. Or just use sockstat(1). > > > -- > Best regards, > Alex mike -- ___________________________________________________________ "NOW YOU ARE BOTH GOING TO DIE!!!" - Pokey the Penguin from "THE FORBIDDEN CANDY" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 16:25: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from raiden.jasnetworks.net (raiden.jasnetworks.net [65.194.248.251]) by hub.freebsd.org (Postfix) with ESMTP id 3100B37B405 for ; Tue, 22 Jan 2002 16:24:57 -0800 (PST) Received: from works ([192.168.0.2]) by raiden.jasnetworks.net (8.11.6/8.11.6) with ESMTP id g0N0P0o01714 for ; Tue, 22 Jan 2002 19:25:01 -0500 (EST) (envelope-from raiden23@netzero.net) Message-Id: <4.2.0.58.20020122192009.009c9da0@pop.netzero.net> X-Sender: raiden23@pop.netzero.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Tue, 22 Jan 2002 19:30:29 -0500 To: freebsd-questions@FreeBSD.ORG From: Lord Raiden Subject: disk space remaining Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ok, I'm starting to forget things way too often these days. I'm needing to find out how much disk space I have left on our shell server. I looked around but can't find any info on this. I know "du -s" gives a summery of the space used. But what I want to know is what the total free space is remaining for each slice, and for the disk as a whole. Thanks again, and I promise to have a talk with my senior moments. =) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 16:26:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 660F337B405 for ; Tue, 22 Jan 2002 16:26:53 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id EC8F066B74; Tue, 22 Jan 2002 16:26:52 -0800 (PST) Date: Tue, 22 Jan 2002 16:26:52 -0800 From: Kris Kennaway To: m p Cc: freebsd@XtremeDev.com, freebsd-questions@freebsd.org, kris@obsecurity.org Subject: Re: FreeBSD extended paging Message-ID: <20020122162652.A24515@xor.obsecurity.org> References: <20020122195216.53966.qmail@web13306.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="gKMricLos+KVdGMg" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020122195216.53966.qmail@web13306.mail.yahoo.com>; from sumirati@yahoo.de on Tue, Jan 22, 2002 at 08:52:16PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --gKMricLos+KVdGMg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Jan 22, 2002 at 08:52:16PM +0100, m p wrote: > > Does this mean FreeBSD doesn't take advantage of x86 extended paging > > capabilities? > http://groups.google.de/groups?hl=de&threadm=20020121100217.81572.qmail%40web14002.mail.yahoo.com.lucky.freebsd.current&prev=/groups%3Fhl%3Dde%26group%3Dlucky.freebsd.stable Thanks, this is the reference I was going to post. Kris --gKMricLos+KVdGMg Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8TgNMWry0BWjoQKURAucZAJ9ZJYE63KCMg20/Wiw1DS2A/rnfXwCgiOTO pSunxxgbHSnemRWEVfTiTD0= =y462 -----END PGP SIGNATURE----- --gKMricLos+KVdGMg-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 16:28:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id AF26B37B426 for ; Tue, 22 Jan 2002 16:28:39 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 47D6A66B74; Tue, 22 Jan 2002 16:28:39 -0800 (PST) Date: Tue, 22 Jan 2002 16:28:39 -0800 From: Kris Kennaway To: Lord Raiden Cc: freebsd-questions@FreeBSD.ORG Subject: Re: disk space remaining Message-ID: <20020122162839.B24515@xor.obsecurity.org> References: <4.2.0.58.20020122192009.009c9da0@pop.netzero.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="1LKvkjL3sHcu1TtY" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <4.2.0.58.20020122192009.009c9da0@pop.netzero.net>; from raiden23@netzero.net on Tue, Jan 22, 2002 at 07:30:29PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --1LKvkjL3sHcu1TtY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 22, 2002 at 07:30:29PM -0500, Lord Raiden wrote: > Ok, I'm starting to forget things way too often these days. I'm needing= =20 > to find out how much disk space I have left on our shell server. I looke= d=20 > around but can't find any info on this. I know "du -s" gives a summery o= f=20 > the space used. But what I want to know is what the total free space is= =20 > remaining for each slice, and for the disk as a whole. du(1) includes a reference to df(1) in the SEE ALSO: section, which is the command you want. Kris --1LKvkjL3sHcu1TtY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8TgO2Wry0BWjoQKURAnykAKDBqVlTDCbKu3+bIS5BPlZj3FZcbwCg0Pje XwPHMB6RlRQTsc6Qf1x6CUo= =eFzf -----END PGP SIGNATURE----- --1LKvkjL3sHcu1TtY-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 16:30:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by hub.freebsd.org (Postfix) with ESMTP id 03F5E37B41E for ; Tue, 22 Jan 2002 16:30:00 -0800 (PST) Received: from ppp5-12.ath.forthnet.gr Bernie_X@smtp-send.myrealbox.com [213.16.152.12] by smtp-send.myrealbox.com with Novell NIMS $Revision: 2.88 $ on Novell NetWare; Tue, 22 Jan 2002 17:29:56 -0700 Date: Wed, 23 Jan 2002 00:17:16 +0200 (EET) From: Bernie X-X-Sender: root@BLAST To: freebsd-questions@FreeBSD.ORG Subject: gnomecore problem... Message-ID: <20020122235757.M76041-100000@BLAST> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hello, i'm trying to do portupgrade on gnomecore and get errors continuosly. the portupgrade was used with -PR options. the error i'm getting after a long compiling session is the following: command failed: make clean build ** Fix the problem and try again. ** The following packages were not installed or upgraded (-:skipped / !:failed) - graphics/png (png-1.2.1) - devel/gettext (gettext-0.10.35_1) - archivers/bzip2 (bzip2-1.0.1) - graphics/xpm (xpm-3.4k) - graphics/jpeg (jpeg-6b_1) - audio/libaudiofile (libaudiofile-0.2.2) - graphics/libungif (libungif-4.1.0b1) - audio/esound (esound-0.2.23) - devel/glib12 (glib-1.2.10_5) - x11-toolkits/gtk12 (gtk-1.2.10_3) - textproc/libxml (libxml-1.8.16) - graphics/tiff (tiff-3.5.7) - graphics/imlib (imlib-1.9.11) - x11/gnomelibs (gnomelibs-1.4.1.3) - audio/gnomeaudio (gnomeaudio-1.4.0) ! x11/gnomecore (gnomecore-1.2.4) (missing header) i'm getting error on compilation on many ports. they are cvsup and i'm using 4.5-Prerelease version. is there any way to get a better report on the error that occured? i was trying to compile glide as well but didn't work either. same with xmms and many other ports. i think that some 'central' thing fails to compile and it's needed by many apps that in turn fail to compile cause they depend on it. on occasions i got the stdout and stderr captured, but couldn't figure out where exactly the error was occuring. is there anyone that can give me a hand with this? thanks a lot. Regards --Bernie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 16:30:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Mail6.mgfairfax.rr.com (fe6.southeast.rr.com [24.93.67.53]) by hub.freebsd.org (Postfix) with ESMTP id AC26337B41D for ; Tue, 22 Jan 2002 16:29:53 -0800 (PST) Received: from there ([24.163.113.25]) by Mail6.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Tue, 22 Jan 2002 19:29:53 -0500 Content-Type: text/plain; charset="iso-8859-1" From: Ray Kohler To: freebsd-questions@FreeBSD.ORG Subject: Some questions about ipfw Date: Tue, 22 Jan 2002 19:33:06 -0500 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: <0e9d45329001712FE6@Mail6.mgfairfax.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a protect-this-client-only firewall set up here, and I'm not sure that my rules are good. It's very simple: ipfw add allow ip from any to any via lo0 ipfw add allow tcp from me to any keep-state ipfw add allow udp from me to any keep-state ipfw add allow icmp from me to any keep-state ipfw add allow icmp from any to me icmptype 3 ipfw add deny log ip from any to any (No, I'm not using rc.firewall and not running natd.) I intend to let anything out and nothing in that isn't part of an established connection (and of course the ICMP type 3 packets). I have 3 questions: 1) Why does the rc.firewall script use "setup" and "established" rules for tcp instead of keep-state like it does for udp? 2) Are these tules sufficient for my purpose? 3) I'm having trouble fetching ports even with FETCH_CMD= fetch -p set in make.conf. Eventually I get the file, but not until after a lot of servers are tried. In my logs I see a lot of: Jan 22 18:19:47 B1M1X9 /kernel: ipfw: 600 Deny TCP 199.232.41.9:20167 24.163.113.25:1039 in via rl0 Jan 22 18:19:49 B1M1X9 /kernel: ipfw: 600 Deny TCP 130.94.149.162:21 24.163.113.25:1032 in via rl0 Jan 22 18:19:59 B1M1X9 /kernel: ipfw: 600 Deny TCP 199.232.41.9:20167 24.163.113.25:1039 in via rl0 Jan 22 18:20:23 B1M1X9 /kernel: ipfw: 600 Deny TCP 199.232.41.9:20167 24.163.113.25:1039 in via rl0 where the "from" IPs belong to the about a dozen ftp servers I've tried, and the packet arrives a few minutes after fetch has given up on that server. (Why are these servers contacting me anyway when I'm using passive ftp, anyway?) Thanks to all for reading such a long post. -- Ray Kohler Lewis's Law of Travel: The first piece of luggage out of the chute doesn't belong to anyone, ever. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 16:37:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id 4BD6637B400 for ; Tue, 22 Jan 2002 16:37:36 -0800 (PST) Received: from plato ([62.253.84.18]) by mta05-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20020123003734.EAGC7206.mta05-svc.ntlworld.com@plato>; Wed, 23 Jan 2002 00:37:34 +0000 Message-ID: <000a01c1a3a6$ad8d45e0$1254fd3e@newroad.org> From: "CB" To: "Ralph Wallis" Cc: References: <3.0.5.32.20020122024753.0079e910@mail.virgin.net> <20020123090805.B8268@localhost> Subject: Re: FreeBSD 4.4 - ATAPI-CDROM won't mount Date: Wed, 23 Jan 2002 00:41:19 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Ralph Thanks for your response. I've tried this with several "known good" CDs: A Star Office CD from Sun (which I've installed fine on the MSDOS partition of my laptop) A FreeBSD ver 2.2.7 ports collection CD from Walnut Creek - one I've been using for years The Cheap*Bytes version 4.0 CD which originally installed the system on the PC in question. When it's refusing to co-operate, I find that no CD will work in the drive, and the only way to cure seems to be to rebuild the OS with one of the versions with which it happens to behave - and make sure the Linux emulator goes nowhere near it! I'm due to do a talk/demo on "Free Software and Alternative Operating Systems" on Friday, and I'd have liked to have got Star Office onto the FreeBSD box in time for that, so if anyone out there can suggest an easy fix, it would be most welcome. Cheers Charles ----- Original Message ----- From: Ralph Wallis To: Charlie Brewster Sent: Tuesday, January 22, 2002 10:08 PM Subject: Re: FreeBSD 4.4 - ATAPI-CDROM won't mount > hi, i have the same problem with some cds, but not others. I > haven't worked out the common factor. Check if it's the particular > CD you're trying. > > On Tuesday, 22 Jan 2002 at 02:47, Charlie Brewster wrote: > > My FreeBSD box has a CDROM drive being recognised as /dev/acd0c > > > > "dmesg" shows: > > acd0: CDROM at ata0-slave using PIO4 > > > > "uname -a" gives: > > FreeBSD 4.4-RELEASE Sun Jan 20 23:06:54 GMT 2002 > > root@/usr/obj/usr/src/sys/GENERIC i386 > > > > The machine is a P300 with 128 Mbytes RAM. > > FreeBSD is the only operating system. > > > > With version 4.4 when I try to mount the CDROM as root immediately after > > booting I get the following: > > # mount /cdrom > > cd9660: /dev/acd0c: Device busy > > #umount /cdrom > > umount: /cdrom: not currently mounted > > > > I noticed this problem originally with FreeBSD 4.0, although it may only > > have started after I installed the Linux emulator. > > > > After upgrading by cvsup to 4.1 and I found the CDROM worked OK to start > > with, but failed as above after I installed the Linux emulator. > > > > With versions 4.2 and 4.3 the CDROM seemed to work OK although I didn't try > > invoking the Linux emulator in either case. > > > > With 4.4 it fails consistently and the Linux emulator has never been run > > since the upgraded OS was installed. > > > > I looked in the TODO files in the isofs source directory and tried > > "mount -t isofs -o -norrip /dev/acdoc /cdrom" > > which might or might not have done the trick had "Rockridge Extensions" > > been the problem, but that just gives: > > mount: exec mount_isofs not found in /sbin /usr/sbin > > No such file or directory. > > > > Is anyone aware of any recent changes which might have been incorporated > > into 4-STABLE or 4-CURRENT which might resolve this problem? Is there > > anything I can run to diagnose it further? > > > > Many thanks for any help. > > Charles > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 16:42:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail6.wi.rr.com (fe6.rdc-kc.rr.com [24.94.163.53]) by hub.freebsd.org (Postfix) with ESMTP id 4062737B405 for ; Tue, 22 Jan 2002 16:42:07 -0800 (PST) Received: from woodstock.monkey.net ([65.25.189.10]) by mail6.wi.rr.com with Microsoft SMTPSVC(5.5.1877.537.53); Tue, 22 Jan 2002 18:42:30 -0600 Received: by woodstock.monkey.net (Postfix, from userid 500) id A1B8EC6; Tue, 22 Jan 2002 18:42:03 -0600 (CST) Date: Tue, 22 Jan 2002 18:42:03 -0600 From: Jon Hamilton To: Zaid Dashti Cc: freebsd-questions@freebsd.org Subject: Re: D-Link PCMCIA for laptops Message-ID: <20020123004203.GB92697@woodstock.monkey.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Zaid Dashti , said on Tue Jan 22, 2002 [11:40:10 PM]: } hi } i want ask about the d-line (Ethernet Network Card) PCMCIA for laptops. } } does D-Link (DFE-650TX) work under FreeBSD ? Yep, works fine. I've only tried with 64-bit WEP, and have heard varying reports of success (or lack thereof) with 128-bit. -- Jon Hamilton hamilton@pobox.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 16:47:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from raiden.jasnetworks.net (raiden.jasnetworks.net [65.194.248.251]) by hub.freebsd.org (Postfix) with ESMTP id 4825D37B400 for ; Tue, 22 Jan 2002 16:47:19 -0800 (PST) Received: from works ([192.168.0.2]) by raiden.jasnetworks.net (8.11.6/8.11.6) with ESMTP id g0N0l1o01756; Tue, 22 Jan 2002 19:47:02 -0500 (EST) (envelope-from raiden23@netzero.net) Message-Id: <4.2.0.58.20020122195208.00980d10@pop.netzero.net> X-Sender: raiden23@pop.netzero.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Tue, 22 Jan 2002 19:52:29 -0500 To: Kris Kennaway From: Lord Raiden Subject: Re: disk space remaining Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <20020122162839.B24515@xor.obsecurity.org> References: <4.2.0.58.20020122192009.009c9da0@pop.netzero.net> <4.2.0.58.20020122192009.009c9da0@pop.netzero.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks. :) Found it. (man I fell silly for not seeing that) >du(1) includes a reference to df(1) in the SEE ALSO: section, which is >the command you want. > >Kris > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 17: 2:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lists.unixathome.org (lists.unixathome.org [210.48.103.158]) by hub.freebsd.org (Postfix) with ESMTP id E721237B402 for ; Tue, 22 Jan 2002 17:02:04 -0800 (PST) Received: from wocker (lists.unixathome.org [210.48.103.158]) by lists.unixathome.org (8.11.6/8.11.6) with ESMTP id g0N11uD90451 for ; Wed, 23 Jan 2002 14:01:57 +1300 (NZDT) (envelope-from dan@lists.unixathome.org) Message-Id: <200201230101.g0N11uD90451@lists.unixathome.org> From: "Dan Langille" Organization: DVL Software Limited To: freebsd-questions@freebsd.org Date: Tue, 22 Jan 2002 20:01:51 -0500 MIME-Version: 1.0 Subject: PPPOE: very slow and 50% packet loss Reply-To: dan@langille.org X-mailer: Pegasus Mail for Windows (v4.01) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a DSL connection which is using PPPOE. It's very slow, even when downloading from a box just one hop away. For example, I downloaded a 26MB file at a speed of 12.53kB/s. During the download, if I pinged a box 1 hop away, I got 53% packet loss... I'm guessing this could be a poor line (i.e. the DSL line). Or could it be related to my PPPoE configuration? note: my mtu/mru are both 1452. I have tried mru 1500, which ppp resets to 1492. My DSL provider indicates mtu must be 1452. I'ved tried higher values, without success.[1] Any suggestions apart from leaving it to my DSL provider to figure out? Could this be a a configuration issue? ifconfig, ppp.conf, etc, at http://www.freebsddiary.org/tmp/pppoe.txt [1] - well partial success. the connection exhibits the same problems as characterized at http://www.daemonnews.org/200101/pppoe.html#pmtu (e.g. can access some websites, but not others). -- Dan Langille The FreeBSD Diary - http://freebsddiary.org/ - practical examples To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 17: 4:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smnolde.com (att-98-60-141.atl.mediaone.net [24.98.60.141]) by hub.freebsd.org (Postfix) with ESMTP id DC17137B400 for ; Tue, 22 Jan 2002 17:04:46 -0800 (PST) Received: from bsd ([192.168.10.7]) by smnolde.com with esmtp (Exim 3.30 #1) id 16TBqJ-000PPp-00; Tue, 22 Jan 2002 20:04:47 -0500 Date: Tue, 22 Jan 2002 20:04:46 -0500 (EST) From: Scott Nolde To: Ray Kohler Cc: Subject: Re: Some questions about ipfw In-Reply-To: <0e9d45329001712FE6@Mail6.mgfairfax.rr.com> Message-ID: <20020122200126.A48937-100000@bsd.smnolde.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus sayeth the previous author: >Date: Tue, 22 Jan 2002 19:33:06 -0500 >From: Ray Kohler >To: freebsd-questions@FreeBSD.ORG >Subject: Some questions about ipfw > >I have a protect-this-client-only firewall set up here, >and I'm not sure that my rules are good. It's very simple: > >ipfw add allow ip from any to any via lo0 >ipfw add allow tcp from me to any keep-state >ipfw add allow udp from me to any keep-state >ipfw add allow icmp from me to any keep-state >ipfw add allow icmp from any to me icmptype 3 >ipfw add deny log ip from any to any > >(No, I'm not using rc.firewall and not running natd.) I >intend to let anything out and nothing in that isn't part >of an established connection (and of course the ICMP type 3 packets). Perhaps you should use rc.firewall. firewall_type="CLIENT" is a good start. >I have 3 questions: > >1) Why does the rc.firewall script use "setup" and "established" rules >for tcp instead of keep-state like it does for udp? Setup will allow the SYN packet through and established lets the rest of the session's packets through. >2) Are these tules sufficient for my purpose? You have essentially allowd your computer to send, but not receive. >3) I'm having trouble fetching ports even with >FETCH_CMD= fetch -p set in make.conf. Eventually I get the file, >but not until after a lot of servers are tried. In my logs I see a lot of: > >Jan 22 18:19:47 B1M1X9 /kernel: ipfw: 600 Deny TCP 199.232.41.9:20167 24.163.113.25:1039 in via rl0 >Jan 22 18:19:49 B1M1X9 /kernel: ipfw: 600 Deny TCP 130.94.149.162:21 24.163.113.25:1032 in via rl0 >Jan 22 18:19:59 B1M1X9 /kernel: ipfw: 600 Deny TCP 199.232.41.9:20167 24.163.113.25:1039 in via rl0 >Jan 22 18:20:23 B1M1X9 /kernel: ipfw: 600 Deny TCP 199.232.41.9:20167 24.163.113.25:1039 in via rl0 > >where the "from" IPs belong to the about a dozen ftp servers I've tried, >and the packet arrives a few minutes after fetch has given up on that server. >(Why are these servers contacting me anyway when I'm using passive >ftp, anyway?) This is a normal response after instituting the rules you've set forth. > >Thanks to all for reading such a long post. > np >Ray Kohler Scott Nolde GPG Key 0xD869AB48 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 17:20:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id A0EF737B402 for ; Tue, 22 Jan 2002 17:20:25 -0800 (PST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id B329B78306; Wed, 23 Jan 2002 11:50:20 +1030 (CST) Date: Wed, 23 Jan 2002 11:50:20 +1030 From: Greg Lehey To: Darryl Hoar Cc: freebsd-questions@Freebsd.org Subject: Re: Dell Latitude CPi + FreeBSD 4.4? Message-ID: <20020123115020.C62266@wantadilla.lemis.com> References: <001501c1a34e$b15d41a0$0701a8c0@darryl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <001501c1a34e$b15d41a0$0701a8c0@darryl> User-Agent: Mutt/1.3.23i Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday, 22 January 2002 at 8:11:30 -0600, Darryl Hoar wrote: > Greetings, > I just acquired a Dell Latitude Cpi. I want to Dual Boot > this with Win2K and Freebsd 4.4. Anybody done this? > Anybody have Freebsd running on this notebook? Yes, I had one of them, and my daughter has it now. It's pretty straightforward. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 17:38:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailout5.nyroc.rr.com (mailout5-0.nyroc.rr.com [24.92.226.122]) by hub.freebsd.org (Postfix) with ESMTP id A74D837B405 for ; Tue, 22 Jan 2002 17:38:29 -0800 (PST) Received: from twcny.rr.com (syr-24-161-96-98.twcny.rr.com [24.161.96.98]) by mailout5.nyroc.rr.com (8.11.6/Road Runner 1.12) with ESMTP id g0N1cPq02655 for ; Tue, 22 Jan 2002 20:38:25 -0500 (EST) Message-ID: <3C4E1411.EE93F677@twcny.rr.com> Date: Tue, 22 Jan 2002 20:38:25 -0500 From: Tom Parquette X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: PC not powering up Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a PC I built with an Antec case and 350W power supply. The motherboard is a Tyan Tiger MP with two Athlon MP 1800+ processors. For some reason, FreeBSD no longer recognizes the APM support. Additionally, the machine refuses to power up, when I press the power button, if it has been off for a while. Example: powered down overnight. The only way I have found to bring the machine back up is to unplug the 120V power cord to the machine. Has anybody seen anything like this behavior? Cheers... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 17:41:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from 1nova.com (heorot.1nova.com [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 6187A37B405 for ; Tue, 22 Jan 2002 17:41:43 -0800 (PST) Received: by 1nova.com (Postfix, from userid 1000) id 8429018F3; Tue, 22 Jan 2002 18:41:19 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by 1nova.com (Postfix) with ESMTP id 729FB18F2; Tue, 22 Jan 2002 18:41:19 -0800 (PST) Date: Tue, 22 Jan 2002 18:41:19 -0800 (PST) From: Rick Hamell To: Tom Parquette Cc: freebsd-questions@freebsd.org Subject: Re: PC not powering up In-Reply-To: <3C4E1411.EE93F677@twcny.rr.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Additionally, the machine refuses to power up, when I press the power > button, if it has been off for a while. Example: powered down > overnight. The only way I have found to bring the machine back up is to > unplug the 120V power cord to the machine. Sounds like a bad power supply or power switch Rick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 17:42:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (mail.pioneernet.net [207.115.64.224]) by hub.freebsd.org (Postfix) with ESMTP id 5C1BE37B417 for ; Tue, 22 Jan 2002 17:42:16 -0800 (PST) Received: from there [66.114.152.128] by pioneernet.net (SMTPD32-6.06) id A4F8F010026; Tue, 22 Jan 2002 17:42:16 -0800 Content-Type: text/plain; charset="iso-8859-1" From: chip To: "C J Michaels" , Subject: Re: Opinions wanted - dealing with file sharing in AOL IM Date: Tue, 22 Jan 2002 17:41:33 -0800 X-Mailer: KMail [version 1.3.2] Cc: , References: <2453.216.153.202.7.1011723120.squirrel@www1.27in.tv> In-Reply-To: <2453.216.153.202.7.1011723120.squirrel@www1.27in.tv> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200201221742871.SM01952@there> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday 22 January 2002 10:12 am, C J Michaels banged out on the keys: > Rick Hamell said: > >> > One of my sons asked me today, about opening a port on the firewal= l > >> > so he and some friends from school can share files. I'm a bit lear= y > >> > of opening a port on the firewall. I know my freebsd boxes will be > >> > safe from windoze viruses by > Parenting tips aside, I would suggest setting up a socks 5 server, ther= e's > one available in the ports collection. Thanks for the suggestion, I looked at the port description, it's a bit v= ague=20 and there is no web site reference. Do you know of any good web sites I c= ould=20 learn more about socks? Would it work with ipfw on the same machine? --=20 Chip <+><+><+><+><+><+><+><+> Windows 95/NT - 32 bit extensions and a graphical shell for a 16 bit patc= h to an 8 bit operating system originally coded for a 4 bit microprocessor, written by a 2 bit company that can't stand 1 bit of competition. <+><+><+><+><+><+><+><+> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 17:54:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from angui.sh (angui.sh [216.27.181.149]) by hub.freebsd.org (Postfix) with ESMTP id C5D1437B400 for ; Tue, 22 Jan 2002 17:54:17 -0800 (PST) Received: from localhost (wfroning@localhost) by angui.sh (8.11.6/8.11.4) with ESMTP id g0N20Bu26191 for ; Tue, 22 Jan 2002 18:00:21 -0800 (PST) (envelope-from wfroning@angui.sh) Date: Tue, 22 Jan 2002 18:00:11 -0800 (PST) From: Will Froning To: Subject: URGENT: kill -9 doesn't work Message-ID: <20020122175821.U12282-100000@angui.sh> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Does anyone know how to kill a process that doesn't respond to kill -9? It keeps dumping core to a nfs server and quickly filling it up. I cannot reboot the machine. Any hints? Will -- Will Froning Unix Sys. Admin. wfroning@angui.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 17:56: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smnolde.com (att-98-60-141.atl.mediaone.net [24.98.60.141]) by hub.freebsd.org (Postfix) with ESMTP id 09C8737B402 for ; Tue, 22 Jan 2002 17:55:53 -0800 (PST) Received: from bsd ([192.168.10.7]) by smnolde.com with esmtp (Exim 3.30 #1) id 16TCdl-000PWl-00; Tue, 22 Jan 2002 20:55:53 -0500 Date: Tue, 22 Jan 2002 20:55:52 -0500 (EST) From: Scott Nolde To: Ray Kohler Cc: Subject: Re: Some questions about ipfw In-Reply-To: <097f55727011712FE8@mail8.mgfairfax.rr.com> Message-ID: <20020122204221.F48937-100000@bsd.smnolde.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus sayeth the previous author: >Date: Tue, 22 Jan 2002 20:31:12 -0500 >From: Ray Kohler >To: Scott Nolde >Cc: freebsd-questions@FreeBSD.ORG >Subject: Re: Some questions about ipfw > >On Tuesday 22 January 2002 08:04 pm, Scott Nolde wrote: >> Thus sayeth the previous author: >> >Date: Tue, 22 Jan 2002 19:33:06 -0500 >> >From: Ray Kohler >> >To: freebsd-questions@FreeBSD.ORG >> >Subject: Some questions about ipfw >> >> >I have 3 questions: >> > >> >1) Why does the rc.firewall script use "setup" and >> > "established" rules for tcp instead of keep-state like it does >> > for udp? >> >> Setup will allow the SYN packet through and established lets the >> rest of the session's packets through. > >Sure, that's what the man page says, but what's the advantage of >one over the other? The Setup packet is like someone knocking on your door. If you want to let that person in you open it and you have established a communication session provided. Usually you allow access to services by filtering in the SYN packet going out or coming in to your machine. If you let all SYN packets in one rule and then later allow established connections you have a better way of controlling which services your machine accepts connections to and from. Knowing the difference bewtween packets with a SYN, ACK, or RST bit is basic TCP/IP. See http://www.mostgraveconcern.com/freebsd/ipfw.html for a few comments around this issue. That example is very similar to rc.firewall. There is no advantage in using setup or established except there is a right way to use one or the other. There _is_ a difference. Slight, but noticable and documented. > >> >3) I'm having trouble fetching ports even with >> >FETCH_CMD= fetch -p set in make.conf. Eventually I get the >> > file, but not until after a lot of servers are tried. In my >> > logs I see a lot of: >> > >> >Jan 22 18:19:47 B1M1X9 /kernel: ipfw: 600 Deny TCP >> > 199.232.41.9:20167 24.163.113.25:1039 in via rl0 Jan 22 >> > 18:19:49 B1M1X9 /kernel: ipfw: 600 Deny TCP 130.94.149.162:21 >> > 24.163.113.25:1032 in via rl0 Jan 22 18:19:59 B1M1X9 /kernel: >> > ipfw: 600 Deny TCP 199.232.41.9:20167 24.163.113.25:1039 in >> > via rl0 Jan 22 18:20:23 B1M1X9 /kernel: ipfw: 600 Deny TCP >> > 199.232.41.9:20167 24.163.113.25:1039 in via rl0 >> > >> >where the "from" IPs belong to the about a dozen ftp servers >> > I've tried, and the packet arrives a few minutes after fetch >> > has given up on that server. (Why are these servers contacting >> > me anyway when I'm using passive ftp, anyway?) >> >> This is a normal response after instituting the rules you've set >> forth. > >You mean difficulty fetching distfiles? packets arriving late? >random active ftp? packets like these being denied? What? > >(Sorry about the tone of this; I guess I'm a bit flabbergasted.) I wouldn't say flabbergasted, but maybe a little confused, but not without reason. I'm surprised if you don't have more problems with any kind of data connection with that machine. You're trying to roll your own firewall without knowledge of firewalls. Don't feel bad, I'm ot an expert on them either, but if you try using the CLIENT firewall setup in /etc/rc.firewall (rememeber to edit it) and compare the results between your firewall and the rc.firewall example you will see a difference. Then compare the ipfw rules and learn from them. >Ray Kohler Scott Nolde GPG Key 0xD869AB48 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 17:56:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id E877137B402 for ; Tue, 22 Jan 2002 17:56:07 -0800 (PST) Received: (qmail 16539 invoked by uid 100); 23 Jan 2002 01:56:02 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15438.6193.320790.289374@guru.mired.org> Date: Tue, 22 Jan 2002 19:56:01 -0600 To: Alex Cc: "Mike Meyer" , Cliff Sarginson , Wayne Pascoe , Subject: Re: Re[4]: what is a good language for system administration? In-Reply-To: <13736540512.20020123004924@cybertron.tmfweb.nl> References: <15436.37910.635122.378864@guru.mired.org> <13736540512.20020123004924@cybertron.tmfweb.nl> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alex types: > MM> Cliff Sarginson types: > >> On Sun, Jan 20, 2002 at 10:07:25AM -0600, Mike Meyer wrote: > >> > Alfatrion types: > >> > > I didn't write any of the (>> >) folowing: Correct. I wrote that. I don't think anything of yours made it into the reply you sent to me. > >> > True. There's a couple of Python-specific remote method invocation > >> > implementations floating around, but I haven't investigated them. I > >> > like the ability to choose the language appropriate for each object > >> > that comes with using CORBA. > > >> - (Painful as I find this to say) learn Perl. There is such a huge > >> amount of canned modules for Perl available, and it is increasingly > >> used where people used to write "C" for something too slow to be > >> done in the shell, that I don;t think there are any other players > >> seriously in the game yet. > > MM> I think Perl is more useful on your resume than as a system > MM> administration language. On the other hand, you're almost certain to > MM> encounter it most places, so being able to read and debug it will be > MM> handy. > > I have heared that, you cound't read perl any more, if you don't do it > for about 6 months. It depends on the Perl. And how handy the Camel book is. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 17:56:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id B5E7D37B416 for ; Tue, 22 Jan 2002 17:56:24 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id TAA23796; Tue, 22 Jan 2002 19:55:51 -0600 (CST) Message-Id: <3.0.5.32.20020122195548.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Tue, 22 Jan 2002 19:55:48 -0600 To: Tom Parquette , freebsd-questions@FreeBSD.ORG From: jacks@sage-american.com Subject: Re: PC not powering up In-Reply-To: <3C4E1411.EE93F677@twcny.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Tom: Don't know if this is related, but I had to rturn one of those Antec black beauties because of switching problems.... now have exchnged it for a new Antec SOHO File Server case w/400w... I have found that it also has some problems that requires swithing off the back power switch before turning on the front switch. Apparently that does some sort of reset.... weird, but some was MB speed setting too. Now seems okay. Doubt if that is much help, but can atest to switching problems with the Antec. At 08:38 PM 1.22.2002 -0500, Tom Parquette wrote: >I have a PC I built with an Antec case and 350W power supply. The >motherboard is a Tyan Tiger MP with two Athlon MP 1800+ processors. > >For some reason, FreeBSD no longer recognizes the APM support. > >Additionally, the machine refuses to power up, when I press the power >button, if it has been off for a while. Example: powered down >overnight. The only way I have found to bring the machine back up is to >unplug the 120V power cord to the machine. > >Has anybody seen anything like this behavior? >Cheers... > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 17:57:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id BBD7537B43E for ; Tue, 22 Jan 2002 17:57:11 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id TAA23912; Tue, 22 Jan 2002 19:56:33 -0600 (CST) Message-Id: <3.0.5.32.20020122195630.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Tue, 22 Jan 2002 19:56:30 -0600 To: Rick Hamell , Tom Parquette From: jacks@sage-american.com Subject: Re: PC not powering up Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: References: <3C4E1411.EE93F677@twcny.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG BTW, Tom, it wasn't the power supply.... At 06:41 PM 1.22.2002 -0800, Rick Hamell wrote: > >> Additionally, the machine refuses to power up, when I press the power >> button, if it has been off for a while. Example: powered down >> overnight. The only way I have found to bring the machine back up is to >> unplug the 120V power cord to the machine. > > Sounds like a bad power supply or power switch > > Rick > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 17:57:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.infowest.com (ns1.infowest.com [204.17.177.10]) by hub.freebsd.org (Postfix) with ESMTP id 4319137B400 for ; Tue, 22 Jan 2002 17:57:29 -0800 (PST) Received: from Presarionb (slc-ppp-208-187-27-252.infowest.net [208.187.27.252]) by ns1.infowest.com (Postfix) with SMTP id 5B476212CE; Tue, 22 Jan 2002 18:57:27 -0700 (MST) Date: Tue, 22 Jan 2002 18:56:41 -0700 To: Douglas R.Spindler , freebsd-questions@FreeBSD.ORG From: Subject: Re: A question from a convert from Windows to FreeBSD X-Mailer: Opera 5.11 build 904 X-Priority: 3 (Normal) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Message-Id: <20020123015727.5B476212CE@ns1.infowest.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've heard that there are improvements to the install program coming for 5.0 I am curious to know what they are. I personally am working on a program to help with the initial partitioning of a Win32 VFAT drive - my guess is that most first timers are going to fall into that category - wanting to add FreeBSD to some Win32 system. I'm not going to even try to touch the NTFS problem. The process as it now exists requires several steps I want to bring it all together under one Windows program that will fetch FIPS and the boot disk and prompt the user through the process of defragging, running FIPS and booting from the boot floppies - except I want to revive the program that used to be able to boot from DOS. The scary part here though, is for people that are overwhelmed or intimidated the install instructions, are they going to be able to use and maintain the system. I don't know. There are many degrees more of idiot proofing that are needed before FreeBSD could be turned loose on the general public. But I want to pursue that dream. 1/22/2002 11:19:58 AM, "Douglas R. Spindler" wrote: > > > > I've been in the industry for 10 years now and have seen the light of > FreeBSD. I know a few Unix commands and know DOS very well. > > Here's my question, why do you guys make converting so difficult? > > > Let me illustrate my point. > > Take a look at www.freebsd.org > > > Find the section that says, Easy to Install. > > FreeBSD can be installed from a variety of media including CD-ROM, floppy > disk, magnetic tape, an MS-DOS partition, or if you have a network > connection, you can install it directly over anonymous FTP or NFS. All you > need is a pair of blank, 1.44MB floppies and these directions. > > > Now click on "these directions" > > Sorry to be so stupid, but I can't follow the easy directions. I can't > even find what files I need to FTP. I also am finding the floppy disk > installation incomplete. > > > I would appreciate any assistance you could offer. > > Thank you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 18: 4:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web13602.mail.yahoo.com (web13602.mail.yahoo.com [216.136.175.113]) by hub.freebsd.org (Postfix) with SMTP id C00BD37B41A for ; Tue, 22 Jan 2002 18:04:46 -0800 (PST) Message-ID: <20020123020441.95879.qmail@web13602.mail.yahoo.com> Received: from [155.246.1.109] by web13602.mail.yahoo.com via HTTP; Tue, 22 Jan 2002 18:04:41 PST Date: Tue, 22 Jan 2002 18:04:41 -0800 (PST) From: Roberto Armenteros Subject: Headache getting XFree to work with NVidia GeForce 2 To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If anyone has gotten installed XFree 4.x on a machine with an NVidia GForce 2 Card, please, I am in desperate situation to get it working. I need clean steps to follow. After installing the basic system first "full binaries and source without X Window System" how should I proceed exactly? When I try to install XFree 4.x from the ports at /usr/ports/x11/XFree-4x by typing "make all install clean" then I says that it cant find the XFree4x.tar file "I dont know why it needs it." I WOULD REALLY appreciate your help. I need to get this going... thanks for ur attention Roberto __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 18:10: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 0CD4C37B400 for ; Tue, 22 Jan 2002 18:09:56 -0800 (PST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id D5DA678307; Wed, 23 Jan 2002 12:39:53 +1030 (CST) Date: Wed, 23 Jan 2002 12:39:53 +1030 From: Greg Lehey To: Will Froning Cc: freebsd-questions@freebsd.org Subject: Re: URGENT: kill -9 doesn't work Message-ID: <20020123123953.J62266@wantadilla.lemis.com> References: <20020122175821.U12282-100000@angui.sh> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020122175821.U12282-100000@angui.sh> User-Agent: Mutt/1.3.23i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday, 22 January 2002 at 18:00:11 -0800, Will Froning wrote: > Does anyone know how to kill a process that doesn't respond to kill > -9? Reboot. > It keeps dumping core to a nfs server and quickly filling it up. I > cannot reboot the machine. Any hints? Basically, if you have a process which you can't kill with -9, it's because it's holding on to some kernel resource, and there's nothing you can do about it until it releases the resource. In this case, it's obviously in 'stopping' state, so you won't be able to stop it until it's dumped its core. You should set up your login class so that it won't dump core. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 18:10:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tomts5-srv.bellnexxia.net (tomts5.bellnexxia.net [209.226.175.25]) by hub.freebsd.org (Postfix) with ESMTP id 260CE37B402 for ; Tue, 22 Jan 2002 18:10:09 -0800 (PST) Received: from wenk ([64.231.44.184]) by tomts5-srv.bellnexxia.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with SMTP id <20020123021004.NVJJ3155.tomts5-srv.bellnexxia.net@wenk> for ; Tue, 22 Jan 2002 21:10:04 -0500 Message-ID: <002901c1a3cc$a61f0070$b300a8c0@wenk> From: "Jeff Shevlen" To: Subject: OpenSSH upgrade Date: Tue, 22 Jan 2002 20:38:51 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I just updated my ssh to OpenSSH 3.0.2, but I when I connect remotely I see that FBSD is still using my old version of ssh (2.3.0). This is also confirmed by: # ssh -V SSH Version OpenSSH_2.3.0 FreeBSD localisations 20010713, protocol versions 1.5/2.0. Compiled with SSL (0x0090601f). I used the portupgrade software to manage the move up to v3.0.2, and thought this would somehow remove the older version but I guess not. (In hindsight this may have something to do with the fact that I ran portupgrade via ssh!) Anyhow, I tried restarting the ssh daemon: # kill -HUP ... but still no love. What do I need to do to get this to work? Jeff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 18:18:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail8.mgfairfax.rr.com (fe8.southeast.rr.com [24.93.67.55]) by hub.freebsd.org (Postfix) with ESMTP id 0C65E37B404 for ; Tue, 22 Jan 2002 18:18:48 -0800 (PST) Received: from there ([24.163.113.25]) by mail8.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Tue, 22 Jan 2002 20:27:57 -0500 Content-Type: text/plain; charset="iso-8859-1" From: Ray Kohler To: Scott Nolde Subject: Re: Some questions about ipfw Date: Tue, 22 Jan 2002 20:31:12 -0500 X-Mailer: KMail [version 1.3.2] Cc: References: <20020122200126.A48937-100000@bsd.smnolde.com> In-Reply-To: <20020122200126.A48937-100000@bsd.smnolde.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: <097f55727011712FE8@mail8.mgfairfax.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday 22 January 2002 08:04 pm, Scott Nolde wrote: > Thus sayeth the previous author: > >Date: Tue, 22 Jan 2002 19:33:06 -0500 > >From: Ray Kohler > >To: freebsd-questions@FreeBSD.ORG > >Subject: Some questions about ipfw > > >I have 3 questions: > > > >1) Why does the rc.firewall script use "setup" and > > "established" rules for tcp instead of keep-state like it does > > for udp? > > Setup will allow the SYN packet through and established lets the > rest of the session's packets through. Sure, that's what the man page says, but what's the advantage of one over the other? > >3) I'm having trouble fetching ports even with > >FETCH_CMD= fetch -p set in make.conf. Eventually I get the > > file, but not until after a lot of servers are tried. In my > > logs I see a lot of: > > > >Jan 22 18:19:47 B1M1X9 /kernel: ipfw: 600 Deny TCP > > 199.232.41.9:20167 24.163.113.25:1039 in via rl0 Jan 22 > > 18:19:49 B1M1X9 /kernel: ipfw: 600 Deny TCP 130.94.149.162:21 > > 24.163.113.25:1032 in via rl0 Jan 22 18:19:59 B1M1X9 /kernel: > > ipfw: 600 Deny TCP 199.232.41.9:20167 24.163.113.25:1039 in > > via rl0 Jan 22 18:20:23 B1M1X9 /kernel: ipfw: 600 Deny TCP > > 199.232.41.9:20167 24.163.113.25:1039 in via rl0 > > > >where the "from" IPs belong to the about a dozen ftp servers > > I've tried, and the packet arrives a few minutes after fetch > > has given up on that server. (Why are these servers contacting > > me anyway when I'm using passive ftp, anyway?) > > This is a normal response after instituting the rules you've set > forth. You mean difficulty fetching distfiles? packets arriving late? random active ftp? packets like these being denied? What? (Sorry about the tone of this; I guess I'm a bit flabbergasted.) -- Ray Kohler Mother is far too clever to understand anything she does not like. -- Arnold Bennett To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 18:19:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from angui.sh (angui.sh [216.27.181.149]) by hub.freebsd.org (Postfix) with ESMTP id 4E97837B400; Tue, 22 Jan 2002 18:19:28 -0800 (PST) Received: from localhost (wfroning@localhost) by angui.sh (8.11.6/8.11.4) with ESMTP id g0N2PW927078; Tue, 22 Jan 2002 18:25:32 -0800 (PST) (envelope-from wfroning@angui.sh) Date: Tue, 22 Jan 2002 18:25:32 -0800 (PST) From: Will Froning To: Greg Lehey Cc: Subject: Re: URGENT: kill -9 doesn't work In-Reply-To: <20020123123953.J62266@wantadilla.lemis.com> Message-ID: <20020122182201.S12282-100000@angui.sh> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG First off, I liked your book it's on my desk right now. I feared that I would have to reboot. I was just hoping there was some ninja-guru move I wasn't aware of. I don't have control over the box. I'm only called when there's a problem. Basic life of a sysadmin. Thanks for the quick response. Will =>On Tuesday, 22 January 2002 at 18:00:11 -0800, Will Froning wrote: =>> Does anyone know how to kill a process that doesn't respond to kill =>> -9? => =>Reboot. => =>> It keeps dumping core to a nfs server and quickly filling it up. I =>> cannot reboot the machine. Any hints? => =>Basically, if you have a process which you can't kill with -9, it's =>because it's holding on to some kernel resource, and there's nothing =>you can do about it until it releases the resource. In this case, =>it's obviously in 'stopping' state, so you won't be able to stop it =>until it's dumped its core. You should set up your login class so =>that it won't dump core. => =>Greg =>-- =>When replying to this message, please copy the original recipients. =>If you don't, I may ignore the reply. =>For more information, see http://www.lemis.com/questions.html =>See complete headers for address and phone numbers => -- Will Froning Unix Sys. Admin. wfroning@angui.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 18:19:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from creme-brulee.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id EB84637B422 for ; Tue, 22 Jan 2002 18:19:32 -0800 (PST) Received: from shumai.marcuscom.com (marcus@shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.11.6/8.11.6) with ESMTP id g0N2ISZ72572; Tue, 22 Jan 2002 21:18:29 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: gnomecore problem... From: Joe Clarke To: Bernie Cc: FreeBSD User Questions List In-Reply-To: <20020122235757.M76041-100000@BLAST> References: <20020122235757.M76041-100000@BLAST> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/1.0.1 Date: 22 Jan 2002 21:19:50 -0500 Message-Id: <1011752390.36679.6.camel@shumai.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 2002-01-22 at 17:17, Bernie wrote: > > hello, > > i'm trying to do portupgrade on gnomecore and get errors > continuosly. the portupgrade was used with -PR options. > the error i'm getting after a long compiling session is > the following: > > command failed: make clean build > ** Fix the problem and try again. > ** The following packages were not installed or upgraded (-:skipped / > !:failed) > - graphics/png (png-1.2.1) > - devel/gettext (gettext-0.10.35_1) > - archivers/bzip2 (bzip2-1.0.1) > - graphics/xpm (xpm-3.4k) > - graphics/jpeg (jpeg-6b_1) > - audio/libaudiofile (libaudiofile-0.2.2) > - graphics/libungif (libungif-4.1.0b1) > - audio/esound (esound-0.2.23) > - devel/glib12 (glib-1.2.10_5) > - x11-toolkits/gtk12 (gtk-1.2.10_3) > - textproc/libxml (libxml-1.8.16) > - graphics/tiff (tiff-3.5.7) > - graphics/imlib (imlib-1.9.11) > - x11/gnomelibs (gnomelibs-1.4.1.3) > - audio/gnomeaudio (gnomeaudio-1.4.0) > ! x11/gnomecore (gnomecore-1.2.4) (missing header) This might be related to the recent change in gnomelibs. You may need to portupgrade -r -f ORBit to fix this. If you send the actual compile output, that may help determine for sure what is going on. > > > i'm getting error on compilation on many ports. they are > cvsup and i'm using 4.5-Prerelease version. > > is there any way to get a better report on the error that > occured? > > i was trying to compile glide as well but didn't work either. > same with xmms and many other ports. > > i think that some 'central' thing fails to compile and it's > needed by many apps that in turn fail to compile cause they > depend on it. > > on occasions i got the stdout and stderr captured, but > couldn't figure out where exactly the error was occuring. > > is there anyone that can give me a hand with this? The GNOME ports _do_ compile on 4.5-PRE and -RC just fine. You just have to make sure the long list of dependencies are up-to-date. Forcing a portupgrade on ORBit and everything that depends on ORBit is a good way of cleaning up GNOME issues. Joe > > thanks a lot. > > > Regards > > --Bernie > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 18:37:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20103.mail.yahoo.com (web20103.mail.yahoo.com [216.136.226.40]) by hub.freebsd.org (Postfix) with SMTP id 3368437B400 for ; Tue, 22 Jan 2002 18:37:44 -0800 (PST) Message-ID: <20020123023743.68457.qmail@web20103.mail.yahoo.com> Received: from [24.101.148.245] by web20103.mail.yahoo.com via HTTP; Tue, 22 Jan 2002 18:37:43 PST Date: Tue, 22 Jan 2002 18:37:43 -0800 (PST) From: ann kok Subject: monitor the system loading To: questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all Except top and vmstat, is there any command to monitor the system loading? TIA __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 18:40:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.velosystems.net (cx144844-b.pv1.ca.home.com [24.9.137.174]) by hub.freebsd.org (Postfix) with ESMTP id F0DEA37B400 for ; Tue, 22 Jan 2002 18:40:10 -0800 (PST) Received: from win2kads (ms [192.168.1.5]) by mail.velosystems.net (Postfix) with SMTP id 5315B50783 for ; Tue, 22 Jan 2002 18:40:01 -0800 (PST) Message-ID: <00f701c1a3b5$7ab86f00$0501a8c0@win2kads> From: "Steve Wingate" To: "freebsd-questions" Subject: Logitech, mousewheel and XF86Config Date: Tue, 22 Jan 2002 18:27:18 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've moved to a Logitech M-BJ58 ps2-usb Optical wheel mouse on FreeBSD 4.5-RC/XFree 4.2. The mouse works fine in console and X11 but I can't get the wheel working at all. Here is the configuration I had working perfectly prior to the switch with an IBM Intellipoint ( two button mouse with the lil eraserhead middle button) Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "Auto" Option "Device" "/dev/mouse" Option "Buttons" "5" Option "ZAxisMapping" "4 5" EndSection I've looked thru the mail list archives and tried various suggestions like /dev/sysmouse, psm0, etc but none of them give me the wheel function. Does anyone have any further suggestions? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 18:44:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id 65C8E37B402 for ; Tue, 22 Jan 2002 18:44:39 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0N2ia550181 for ; Tue, 22 Jan 2002 20:44:36 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0N2iZA15856 for questions@freebsd.org; Tue, 22 Jan 2002 20:44:35 -0600 (CST) Date: Tue, 22 Jan 2002 20:44:35 -0600 From: Doug Poland To: questions@freebsd.org Subject: 4.5-RC1 machine hung, need advice Message-ID: <20020122204435.A15286@polands.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I was torture testing a new box I've built to see how it handles under extreme load. Now the box appears hung and I'm seeing: swap_pager_getswapspace: failed on the console. It does not respond to the keyboard on the console or to keystrokes on any of the ssh sessions I'm running. I was hearing the harddrives churning but that has since stopped. I have the uncomfortable feeling that I may have to do a hardware reset but am hoping someone has an idea of how I can get control of this box. Many TIA, -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 18:48:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out0.mx.nwbl.wi.voyager.net (out0.mx.nwbl.wi.voyager.net [169.207.1.78]) by hub.freebsd.org (Postfix) with ESMTP id 6587437B405 for ; Tue, 22 Jan 2002 18:48:31 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out0.mx.nwbl.wi.voyager.net (8.11.4/8.11.4/1.7) with ESMTP id g0N2mng48044; Tue, 22 Jan 2002 20:48:49 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0N2mUB16028; Tue, 22 Jan 2002 20:48:30 -0600 (CST) Date: Tue, 22 Jan 2002 20:48:30 -0600 From: Doug Poland To: ann kok Cc: questions@FreeBSD.ORG Subject: Re: monitor the system loading Message-ID: <20020122204830.A15867@polands.org> References: <20020123023743.68457.qmail@web20103.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020123023743.68457.qmail@web20103.mail.yahoo.com>; from annkok2001@yahoo.com on Tue, Jan 22, 2002 at 06:37:43PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 06:37:43PM -0800, ann kok wrote: > Hi all > > Except top and vmstat, is there any command to monitor > the system loading? > I've grown quite fond of systat -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 18:52:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web13303.mail.yahoo.com (web13303.mail.yahoo.com [216.136.175.39]) by hub.freebsd.org (Postfix) with SMTP id 4437037B400 for ; Tue, 22 Jan 2002 18:52:15 -0800 (PST) Message-ID: <20020123025215.95139.qmail@web13303.mail.yahoo.com> Received: from [193.174.9.34] by web13303.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 03:52:15 CET Date: Wed, 23 Jan 2002 03:52:15 +0100 (CET) From: =?iso-8859-1?q?m=20p?= Subject: Re: Some questions about ipfw To: Scott Nolde , Ray Kohler Cc: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Scott Nolde wrote: > > Thus sayeth the previous author: > > >Date: Tue, 22 Jan 2002 19:33:06 -0500 > >From: Ray Kohler > >To: freebsd-questions@FreeBSD.ORG > >Subject: Some questions about ipfw (snip) > > > >(No, I'm not using rc.firewall and not running natd.) I > >intend to let anything out and nothing in that isn't part > >of an established connection (and of course the ICMP type 3 packets). > > Perhaps you should use rc.firewall. firewall_type="CLIENT" is a good > start. Yes, it is the recommended way to do it - but not the only one. > > >I have 3 questions: > > > >1) Why does the rc.firewall script use "setup" and "established" rules > >for tcp instead of keep-state like it does for udp? > > Setup will allow the SYN packet through and established lets the rest of > the session's packets through. "setup" and "establish" can NOT do it for UDP! UDP is "stateless" that means there is nothing like SYN and ACK. > > >2) Are these tules sufficient for my purpose? > > You have essentially allowd your computer to send, but not receive. That is not correct. keep-state creates for every session started by his machine a dynamic rule which is checked either by the first "check-state" or by the first "keep-state" in his ruleset. > > >3) I'm having trouble fetching ports even with > >FETCH_CMD= fetch -p set in make.conf. Eventually I get the file, > >but not until after a lot of servers are tried. In my logs I see a lot of: > > (snip) > > This is a normal response after instituting the rules you've set forth. > I can not see why the packets should be denied. IF there were other packets send back to him he should see them too denied in the logs. But he is not seeing them. "setup" and "established" can be bypassed with hand crafted packets which have the SYN and ACK bit set. That is the behaviour for any stateless firewall. With "keep-state" only packets are allowed that matches a rule created by his machine at connection start time. It is considered "more secure" to use "keep-state" _correctly_. For testing can you, Ray, please test some rules with "setup" and "established" _only_ to see if it helps to use "setup" and established ? Your ruleset looks okay for me. Hope that helps Marc __________________________________________________________________ Gesendet von Yahoo! Mail - http://mail.yahoo.de Ihre E-Mail noch individueller? - http://domains.yahoo.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 19:11:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id A42FE37B400 for ; Tue, 22 Jan 2002 19:11:27 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1C9C866B74; Tue, 22 Jan 2002 19:11:27 -0800 (PST) Date: Tue, 22 Jan 2002 19:11:27 -0800 From: Kris Kennaway To: Jeff Shevlen Cc: freebsd-questions@FreeBSD.ORG Subject: Re: OpenSSH upgrade Message-ID: <20020122191126.A25960@xor.obsecurity.org> References: <002901c1a3cc$a61f0070$b300a8c0@wenk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="0OAP2g/MAC+5xKAE" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <002901c1a3cc$a61f0070$b300a8c0@wenk>; from jshevlen@passedpawn.com on Tue, Jan 22, 2002 at 08:38:51PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --0OAP2g/MAC+5xKAE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 22, 2002 at 08:38:51PM -0800, Jeff Shevlen wrote: > # ssh -V > SSH Version OpenSSH_2.3.0 FreeBSD localisations 20010713, protocol versio= ns > 1.5/2.0. > Compiled with SSL (0x0090601f). >=20 > I used the portupgrade software to manage the move up to v3.0.2, and thou= ght > this would somehow remove the older version but I guess not. Nope: the port installs in /usr/local like most ports; it won't touch the base system files. You can either remove them by hand and set NO_OPENSSH in your /etc/make.conf to prevent future world builds from rebuilding them, or just leave them and set your PATH variable to use /usr/local/bin first. To tell FreeBSD which version of sshd to run at startup use the sshd_program variable in /etc/rc.conf. Kris --0OAP2g/MAC+5xKAE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8TineWry0BWjoQKURArOCAJsEDgTwJ1TtLWyUpsRQp3ZhYW9DeACfVsCD eduDN/h4HgGjiukRCal+7Ps= =P9kn -----END PGP SIGNATURE----- --0OAP2g/MAC+5xKAE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 19:17:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from y3k.shacknet.nu (ts5m-pool0-61.gti.net [208.216.126.61]) by hub.freebsd.org (Postfix) with ESMTP id 1489937B400 for ; Tue, 22 Jan 2002 19:17:18 -0800 (PST) Received: from shacknet.nu (localhost.gti.net [127.0.0.1]) by y3k.shacknet.nu (8.11.6/8.11.6) with SMTP id g0N3NxY60275; Tue, 22 Jan 2002 22:24:00 -0500 (EST) (envelope-from y3k@gti.net) Received: from 198.151.239.42 (SquirrelMail authenticated user mark) by y3k.shacknet.nu with HTTP; Tue, 22 Jan 2002 22:24:01 -0500 (EST) Message-ID: <2807.198.151.239.42.1011756241.squirrel@y3k.shacknet.nu> Date: Tue, 22 Jan 2002 22:24:01 -0500 (EST) Subject: Re: A question from a convert from Windows to FreeBSD From: "Mark Yeck" To: BobGiesen@earthlink.net In-Reply-To: <007b01c1a381$93765900$328dfea9@pegasus> References: <007b01c1a381$93765900$328dfea9@pegasus> Cc: freebsd-questions@FreeBSD.ORG X-Mailer: SquirrelMail (version 1.0.6) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bob wrote: [snip...] > If unsophisticated users could easily install FreeBSD and a free > office > app (such as StarOffice or KDE) that would operate on all those > m$office files in circulation, I think you'd see a lot more home > offices with FreeBSD as the system of choice. After all, how many I honestly think there are some misconceptions about how easy windows is to install. Just because 99% of people use windows doesnt mean that 99% of the people can install it. I doubt if there are many unsophisticated users who could install windows. I know quite a few users with a wide variety of experience. I dont think that any of them would be able to install windows and not able to install freebsd. That's not to say that the freebsd installation procedure couldnt use improvement, but i seriously doubt that microsoft's domination has much to do with ease of installation. > people wouldn't love to get something for free that will do all they > really need of the topheavy m$office apps? > m$ OSes installed seemingly are approaching McD's number of burgers >served. (Okay, a slight exaggeration...) m$ throws a lot of money at >compatibility and ease of installation, knowing that their livelihoods >depend on successful installations being performed by millions of users >who don't know the difference between a bit and a byte. Of course, Actually, every user that I know that doesnt know the difference between bits and bytes has bought their computer with windows installed already or had someone with a clue install it for them. with >their large, installed base, they've also managed to convince hardware > manufacturers that it's in their best interest to provide > winblows-compatible drivers. Having the necessary drivers hit the > street at the same time as the hardware also helps a great deal. > Here, most of us (FreeBSD) users are a little more savvy and > demanding of > other features in our O.S. We don't want to be hand-held to the point > that the OS author makes all of our decisions for us during the > installation (one of my many peaves w/ m$) -- but I think a certain > amount of it could be automated better. Of course, besides being such What parts could be automated better? It's been a little while since I've done a fresh install, but i think you can go through almost all of the installation selecting defaults. Seriously, though, your input as a fresh convert from windows is very useful. If you can let people know specifically what parts of the installation were troublesome, they will improve them in future versions. > a solid, flexible product, FreeBSD's also FREE, which is why I'd never > complain about the difficulty of installation. Everything on which > FreeBSD depends comes to us by the grace of people who are willing to > share their work with the world at no cost. That doesn't usually lead > to the sense of urgency instilled in the m$ mill, so a certain amount > of "do-it-yourself" is to be expected. In terms of installation and > configuration time, FreeBSD is really more costly to set up than my w98 > setup was -- but m$ gets you in the end with the ongoing instability > issues. I've installed several versions of Windows and FreeBSD and found them to be pretty comparable as far as ease of installation. -mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 19:35:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.nc.rr.com (fe7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id B7DA237B400; Tue, 22 Jan 2002 19:35:04 -0800 (PST) Received: from i8k.babbleon.org ([66.57.85.154]) by mail7.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Tue, 22 Jan 2002 22:35:01 -0500 Received: by i8k.babbleon.org (Postfix, from userid 111) id 5C9E63EF9; Tue, 22 Jan 2002 22:34:07 -0500 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: Kris Kennaway , Bob Giesen Subject: Re: A question from a convert from Windows to FreeBSD Date: Tue, 22 Jan 2002 22:34:07 -0500 X-Mailer: KMail [version 1.3] Cc: Kris Kennaway , "Douglas R. Spindler" , freebsd-questions@FreeBSD.ORG References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> <007b01c1a381$93765900$328dfea9@pegasus> <20020122161741.A7573@citusc17.usc.edu> In-Reply-To: <20020122161741.A7573@citusc17.usc.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020123033407.5C9E63EF9@i8k.babbleon.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I think that FreeBSD installation is quite straightforward if you start out by ordering the CD set. To compare an install of FreeBSD straight over the network to a CD-based install of Windows is preposterous; plus, an install of Windows is not that easy--I've had more failures than than with FreeBSD. To compare on install of FreeBSD to a PRE-installed Windows (all most folks ever see of Windows) is like cutting off one runner's legs and then complaining that he should be doing more to keep up . . . And of course the worse part is the slice/fdisk stuff, but if you just give the whole disk over, it's easy, and Windows fdisk is a lot harder to work with than FreeBSD's and provides even less assistance. So I don't think there's any apples-to-apples comparison by which FreeBSD comes out worse off . . . at least not in my experience. On Tuesday 22 January 2002 07:17 pm, Kris Kennaway wrote: > On Tue, Jan 22, 2002 at 02:15:33PM -0600, Bob Giesen wrote: > > > > Here's my question, why do you guys make converting so difficult? > > > > > > That's a very subjective question, wouldn't you say? > > > > Not very, no. I've been a computer junkie for 20 years (well, pretty > > soon -- I got my first one in Feb., 1981), have made a living at UNIX > > system administration, vocally advocate FreeBSD to any who will listen -- > > yet it is obvious to me why a recent convert from the dark side (a.k.a. > > micro$haft) would consider FreeBSD to be difficult to install. > > Objectively speaking (and I'm sure that it could be quantified in terms > > of time and keystrokes), there is not much of a comparison when it comes > > to ease of installation -- which is a major reason that FreeBSD > > installations number in the thousands, rather than millions. > > No, it is subjective, because for example when I first transferred to > FreeBSD a number of years ago I found the instructions very > straightforward. The fact that other people find them more confusing > is what makes it subjective, by definition. > > If we're comparing FreeBSD installations with Windows installations, I > spent the entire weekend (literally!) last week trying to install > Win98 on my K6-2/550 with quite standard hardware. Win98 would boot > from CD but refuse to load the ATAPI drivers to read the rest of the > CD; the Promise IDE controller wasn't detected out of the box, so I > had to transfer my HDs to the motherboard controllers in order to > install onto them once I got the CD media to work; the motherboard > needed me to download 4 drivers in order for it to work without > crashing; and my graphics card (Matrox dual-head G400) didn't work out > of the box, and still causes Windows 98 to BSOD at startup every 2 out > of 3 startups no matter what driver magic I've tried. Then Windows > Update suggested a new driver for my intel fxp ethernet card which > totally bodged it up, and I had to do major system file surgery to > recover a working driver and stop it from continually trying to > install the broken one. I had to disable power management because the > default settings cause the system to hang when it tries to suspend. > Then I found last night that the FAT16 partition I created using Win98 > FDISK was created right in the middle of my UFS partition which was > already on the disk. > > If I didn't have such expertise with Windows administration there is > no way in hell I'd have been able to get this thing running. I can > hardly think of more things which could have gone wrong with the > installation to have made it more difficult. > > By contrast, FreeBSD installed and runs on the same system without a > single hitch. > > > This is why: > > > Since FreeBSD is a community supported project... > > > > If unsophisticated users could easily install FreeBSD and a free > > office app (such as StarOffice or KDE) that would operate on all those > > m$office files in circulation, I think you'd see a lot more home offices > > with FreeBSD as the system of choice. After all, how many people > > wouldn't love to get something for free that will do all they really need > > of the topheavy m$office apps? > > > > [snip] > > These are all pretty good statements, but unless someone (you?) has > time to sit down and make these improvements they won't happen. > That's how it works around here, of course.. > > Kris -- Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org -------> Free Dmitry Sklyarov! (let him go home) <----------- http://www.eff.org http://www.programming-freedom.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 19:44:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id 162D237B402 for ; Tue, 22 Jan 2002 19:44:54 -0800 (PST) Received: from sdn-ar-007dcwashp010.dialsprint.net ([63.178.91.18] helo=moo.holy.cow) by gull.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16TELC-0000gV-00; Tue, 22 Jan 2002 19:44:50 -0800 Received: by moo.holy.cow (Postfix, from userid 1001) id 0F84950BA8; Tue, 22 Jan 2002 22:46:50 -0500 (EST) Date: Tue, 22 Jan 2002 22:46:49 -0500 From: parv To: Will Froning Cc: freebsd-questions@freebsd.org Subject: Re: URGENT: kill -9 doesn't work Message-ID: <20020123034649.GA92597@moo.holy.cow> Mail-Followup-To: Will Froning , freebsd-questions@freebsd.org References: <20020122175821.U12282-100000@angui.sh> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020122175821.U12282-100000@angui.sh> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG in message <20020122175821.U12282-100000@angui.sh>, wrote Will Froning thusly... > > Does anyone know how to kill a process that doesn't respond to kill > -9? > > It keeps dumping core to a nfs server and quickly filling it up. I > cannot reboot the machine. Any hints? i don't know if it was you who had posted similar problem on comp.unix.(admin|questions). in any case, SIGSEGV was suggested along w/ possible reason of SIGKILL not working. -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 19:49:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out0.mx.nwbl.wi.voyager.net (out0.mx.nwbl.wi.voyager.net [169.207.1.78]) by hub.freebsd.org (Postfix) with ESMTP id 8E9FE37B400 for ; Tue, 22 Jan 2002 19:49:37 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out0.mx.nwbl.wi.voyager.net (8.11.4/8.11.4/1.7) with ESMTP id g0N3ntg66131 for ; Tue, 22 Jan 2002 21:49:55 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0N3naN20000 for questions@freebsd.org; Tue, 22 Jan 2002 21:49:36 -0600 (CST) Date: Tue, 22 Jan 2002 21:49:36 -0600 From: Doug Poland To: questions@freebsd.org Subject: Re: 4.5-RC1 machine hung, need advice Message-ID: <20020122214936.B19676@polands.org> References: <20020122204435.A15286@polands.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020122204435.A15286@polands.org>; from doug@polands.org on Tue, Jan 22, 2002 at 08:44:35PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 08:44:35PM -0600, Doug Poland wrote: > Hi, > > I was torture testing a new box I've built to see how it handles > under extreme load. Now the box appears hung and I'm seeing: > > swap_pager_getswapspace: failed > > on the console. It does not respond to the keyboard on the console > or to keystrokes on any of the ssh sessions I'm running. I was > hearing the harddrives churning but that has since stopped. > > I have the uncomfortable feeling that I may have to do a hardware > reset but am hoping someone has an idea of how I can get control > of this box. > Never mind, I just reset the machine. Filesystems needed fsck but came up clean and quick (soft updates and vinum) -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 19:51:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Mail4.mgfairfax.rr.com (fe4.southeast.rr.com [24.93.67.51]) by hub.freebsd.org (Postfix) with ESMTP id 5E9F437B404 for ; Tue, 22 Jan 2002 19:51:40 -0800 (PST) Received: from there ([24.163.113.25]) by Mail4.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Tue, 22 Jan 2002 21:46:19 -0500 Content-Type: text/plain; charset="iso-8859-1" From: Ray Kohler To: ann kok , questions@FreeBSD.ORG Subject: Re: monitor the system loading Date: Tue, 22 Jan 2002 21:49:25 -0500 X-Mailer: KMail [version 1.3.2] References: <20020123023743.68457.qmail@web20103.mail.yahoo.com> In-Reply-To: <20020123023743.68457.qmail@web20103.mail.yahoo.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: <0ed451946021712FE4@Mail4.mgfairfax.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday 22 January 2002 09:37 pm, ann kok wrote: > Hi all > > Except top and vmstat, is there any command to monitor > the system loading? systat(1). -- Ray Kohler Crash programs fail because they are based on the theory that, with nine women pregnant, you can get a baby a month. -- Wernher von Braun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 19:56: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id 9E38637B402 for ; Tue, 22 Jan 2002 19:56:05 -0800 (PST) Received: from sdn-ar-007dcwashp010.dialsprint.net ([63.178.91.18] helo=moo.holy.cow) by gull.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16TEW4-00062P-00 for freebsd-questions@freebsd.org; Tue, 22 Jan 2002 19:56:05 -0800 Received: by moo.holy.cow (Postfix, from userid 1001) id 3C4AB50BA8; Tue, 22 Jan 2002 22:58:05 -0500 (EST) Date: Tue, 22 Jan 2002 22:58:05 -0500 From: parv To: f-q Subject: is /usr/bin/passwd advisable as a login shell for ftp only users? Message-ID: <20020123035805.GA92721@moo.holy.cow> Mail-Followup-To: f-q Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG in a private newsgroup in a discussion about shells, somebody posted that /usr/bin/passwd is also a potential shell, along w/ sh, csh, etc. in reply, i thought out loud that that was a blunder and noted that it's for changing password. in reply to which the other person said that /usr/bin/passwd is not a blunder for users who have ftp only account. and, when a ftp user connects to the server -- via ssh or telnet -- they can change their password. (i assume that after password change user is logged off.) something tells me that using passwd (as a login shell) is bad thing, but i cannot come up w/ technical reasons. it seems to be a security risk waiting to happen. is /usr/bin/passwd advisable as a login shell for ftp only users, for that matter, for anybody? - waiting to be enlightened -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 19:58:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from clmboh1-smtp4.columbus.rr.com (clmboh1-smtp4.columbus.rr.com [65.24.0.114]) by hub.freebsd.org (Postfix) with ESMTP id BEBB737B404 for ; Tue, 22 Jan 2002 19:58:53 -0800 (PST) Received: from there (cvg-65-27-178-104.cinci.rr.com [65.27.178.104]) by clmboh1-smtp4.columbus.rr.com (8.11.2/8.11.2) with SMTP id g0N3x7m04185 for ; Tue, 22 Jan 2002 22:59:08 -0500 (EST) Message-Id: <200201230359.g0N3x7m04185@clmboh1-smtp4.columbus.rr.com> Content-Type: text/plain; charset="iso-8859-1" From: Mike To: freebsd-questions@freebsd.org Subject: Space needed for EVERY port Date: Tue, 22 Jan 2002 23:01:13 -0500 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just curious, does anybody know how many gigabytes you would neet to install the ENTIRE ports tree? thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 20: 2:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id CC30B37B400 for ; Tue, 22 Jan 2002 20:02:42 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 92D412B825; Wed, 23 Jan 2002 05:02:39 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 75D6620A; Wed, 23 Jan 2002 15:02:34 +1100 (EST) Date: Wed, 23 Jan 2002 15:02:34 +1100 From: Edwin Groothuis To: ann kok Cc: questions@FreeBSD.ORG Subject: Re: monitor the system loading Message-ID: <20020123150234.H823@k7.mavetju.org> References: <20020123023743.68457.qmail@web20103.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020123023743.68457.qmail@web20103.mail.yahoo.com>; from annkok2001@yahoo.com on Tue, Jan 22, 2002 at 06:37:43PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 06:37:43PM -0800, ann kok wrote: > Except top and vmstat, is there any command to monitor > the system loading? If you're running X, try xload and xperfmon++ Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 20: 5:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 6466837B404 for ; Tue, 22 Jan 2002 20:05:44 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16TEfP-0002s6-00 for freebsd-questions@freebsd.org; Wed, 23 Jan 2002 04:05:43 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id BD7C8118A; Wed, 23 Jan 2002 05:05:42 +0100 (CET) Date: Wed, 23 Jan 2002 05:05:42 +0100 From: Cliff Sarginson To: freebsd-questions@freebsd.org Subject: Re: URGENT: kill -9 doesn't work Message-ID: <20020123040542.GG1345@raggedclown.net> References: <20020122175821.U12282-100000@angui.sh> <20020123034649.GA92597@moo.holy.cow> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020123034649.GA92597@moo.holy.cow> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 10:46:49PM -0500, parv wrote: > in message <20020122175821.U12282-100000@angui.sh>, > wrote Will Froning thusly... > > > > Does anyone know how to kill a process that doesn't respond to kill > > -9? > > > > It keeps dumping core to a nfs server and quickly filling it up. I > > cannot reboot the machine. Any hints? > > i don't know if it was you who had posted similar problem on > comp.unix.(admin|questions). in any case, SIGSEGV was suggested > along w/ possible reason of SIGKILL not working. > There are a few cases where this happens. I see Greg's explanation in another posting. It can also happen if a process gets into an uninterruptible sleep state, waiting for something that will never happen. This is a rather famous Unix feature.. :) The thing about signal 9 is that no process can handle or ignore it (except process 1, init, but that is a special case). Unfortunately it still has to be delivered to take effect. In your case there may be another explanation. You don't say what the process is but perhaps it is one that when it dies, it's death is detected by it's parent and automatically restarted. If it is core-dumping then you have a vicious circle. Is the PID changing ? If so then it is not that the process is unkillable, it is that something is restarting it. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 20:17:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id BBBC037B400 for ; Tue, 22 Jan 2002 20:17:08 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16TEqR-0003Dd-00 for freebsd-questions@freebsd.org; Wed, 23 Jan 2002 04:17:07 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id E1F00118A; Wed, 23 Jan 2002 05:17:06 +0100 (CET) Date: Wed, 23 Jan 2002 05:17:06 +0100 From: Cliff Sarginson To: f-q Subject: Re: is /usr/bin/passwd advisable as a login shell for ftp only users? Message-ID: <20020123041706.GH1345@raggedclown.net> References: <20020123035805.GA92721@moo.holy.cow> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020123035805.GA92721@moo.holy.cow> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 10:58:05PM -0500, parv wrote: > in a private newsgroup in a discussion about shells, somebody > posted that /usr/bin/passwd is also a potential shell, along w/ sh, > csh, etc. in reply, i thought out loud that that was a blunder > and noted that it's for changing password. > Any program can be a "shell". Just create a password file entry with the program in the shell field. If you are lazy you could have a login called "date", that just calls /bin/date as it's shell. So you type date at the prompt, and there it is :) > in reply to which the other person said that /usr/bin/passwd is not > a blunder for users who have ftp only account. and, when a ftp user > connects to the server -- via ssh or telnet -- they can change their > password. (i assume that after password change user is logged > off.) > Yes, of course. > something tells me that using passwd (as a login shell) is bad > thing, but i cannot come up w/ technical reasons. it seems > to be a security risk waiting to happen. > > is /usr/bin/passwd advisable as a login shell for ftp only users, > for that matter, for anybody? > Well it is a pretty useless shell for an ordinary user... A security risk, probably, most any suid root program is. On the other hand if there is an unkown buffer overflow exploit in passwd we better all pack our bags up and go home .. :) -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 20:17:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id C992137B417 for ; Tue, 22 Jan 2002 20:17:30 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16TEqn-0003Df-00 for freebsd-questions@freebsd.org; Wed, 23 Jan 2002 04:17:29 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 40324118A; Wed, 23 Jan 2002 05:17:29 +0100 (CET) Date: Wed, 23 Jan 2002 05:17:29 +0100 From: Cliff Sarginson To: freebsd-questions@freebsd.org Subject: Re: Space needed for EVERY port Message-ID: <20020123041729.GI1345@raggedclown.net> References: <200201230359.g0N3x7m04185@clmboh1-smtp4.columbus.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200201230359.g0N3x7m04185@clmboh1-smtp4.columbus.rr.com> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 11:01:13PM -0500, Mike wrote: > Just curious, does anybody know how many gigabytes you would neet to install > the ENTIRE ports tree? thanks. > Lots. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 20:34: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from dc-mx03.cluster1.charter.net (dc-mx03.cluster0.hsacorp.net [209.225.8.13]) by hub.freebsd.org (Postfix) with ESMTP id E33FC37B402 for ; Tue, 22 Jan 2002 20:34:06 -0800 (PST) Received: from [66.169.156.82] (HELO there) by dc-mx03.cluster1.charter.net (CommuniGate Pro SMTP 3.4.6) with SMTP id 34837073 for questions@freebsd.org; Tue, 22 Jan 2002 23:41:26 -0500 Content-Type: text/plain; charset="iso-8859-1" From: Bob Bomar To: questions@freebsd.org Subject: Fwd: Re: Neomail Date: Tue, 22 Jan 2002 22:34:05 -0600 X-Mailer: KMail [version 1.3.1] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ---------- Forwarded Message ---------- Subject: Re: Neomail Date: Tue, 22 Jan 2002 17:30:38 -0600 From: Bob Bomar To: Bob Bomar On Tue, Jan 22, 2002 at 03:19:23PM -0500, Bob Bomar wrote: > I took the advice and installed Neomail. It installed very fast, and > easily. When I went to domain.com/cgi-bin/neomail.pl it comes up with the > message: > > "Neomail Error" > > "Default!" > > I am running FreeBSD 4.4 and Apache 1.13, does anybody have any ideas of > what I need to do? > > > Thanks > > Bob > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message I have been doing some investigating into what the problem could be. I have come across something that would help me. In the error page that is displayed, I looked at what creates it, neomailerror, it has a line: print shift; Now, the shift variable, and please tell me if I'm wrong, is what is displayed. Well, Default!, is displayed. I am trying to figure out what would cause, Default!, to be put into shift. Thanks for your time Bob ------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 20:50: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from nycsmtp1out.rdc-nyc.rr.com (nycsmtp1out.rdc-nyc.rr.com [24.29.99.226]) by hub.freebsd.org (Postfix) with ESMTP id 564F337B400 for ; Tue, 22 Jan 2002 20:49:57 -0800 (PST) Received: from scottro11.homeunix.net (24-168-24-239.nyc.rr.com [24.168.24.239]) by nycsmtp1out.rdc-nyc.rr.com (8.12.1/Road Runner SMTP Server 1.0) with SMTP id g0N4nYfZ000308 for ; Tue, 22 Jan 2002 23:49:35 -0500 (EST) Date: Tue, 22 Jan 2002 23:58:40 -0500 From: Scott Robbins To: FreeBSD-questions@freebsd.org Subject: Re: editing a makefile in ports Message-Id: <20020122235840.6f230191.scottro@nyc.rr.com> In-Reply-To: <20020122222755.2544b37e.stephen@shepherdbusinessgroup.com> References: <5.1.0.14.0.20020121202919.00c1bec0@pop-server.nyc.rr.com> <20020122222755.2544b37e.stephen@shepherdbusinessgroup.com> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.5) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Mon, 21 Jan 2002 20:33:30 -0500 > Scott wrote: > > > I don't know enough about coding or even scripting, I fear, to know if this > > is an inane question or not. > > > > (Concerning x11/XFree86-4 and downgrading from 4.2.0 to 4.1) > > If I simply edit the line in the > > Makefile that says PORTVERSION = 4.2.0 and change it to 4.1.0 will that > > solve my problem, or will there then be various other conflicts that I > > don't know enough to see. To answer my own question---I see that ports has already been downgraded to 4.1.x--a quick perusal of the ports mailing list archives indicates that there have been enough problems with it so that it's felt it doesn't yet belong on STABLE. (And thank a couple of people that took the time to send me private mails informing me of that) Also, I realized afterwards, that as there are MD5 sums involved, it would have been more complex than simply changing the version number in the Makefile Thanks Scott Robbins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 20:50:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mmu.edu.my (ext-dns.mmu.edu.my [203.106.62.11]) by hub.freebsd.org (Postfix) with ESMTP id C2D1F37B404 for ; Tue, 22 Jan 2002 20:50:01 -0800 (PST) Received: from venus.cyber.mmu.edu.my (venus.cyber.mmu.edu.my [203.106.62.12]) by mmu.edu.my (8.9.1b+Sun/8.9.1) with ESMTP id MAA00929; Wed, 23 Jan 2002 12:44:16 +0800 (MYT) Received: from lunar.cyber.mmu.edu.my (lunar.cyber.mmu.edu.my [10.100.3.5]) by venus.cyber.mmu.edu.my (8.8.8+Sun/8.8.8) with ESMTP id MAA18602; Wed, 23 Jan 2002 12:47:44 +0800 (SGT) Received: from mmu.edu.my (localhost [127.0.0.1]) by lunar.cyber.mmu.edu.my (8.9.3+Sun/8.9.1) with SMTP id MAA06044; Wed, 23 Jan 2002 12:46:18 +0800 (SGT) Received: from 10.100.20.43 (SquirrelMail authenticated user s9810048) by 10.100.3.5 with HTTP; Wed, 23 Jan 2002 12:46:18 +0800 (SGT) Message-ID: <2109.10.100.20.43.1011761178.squirrel@10.100.3.5> Date: Wed, 23 Jan 2002 12:46:18 +0800 (SGT) Subject: Re: 4.5-RC1 machine hung, need advice From: "Sudirman Hassan" To: doug@polands.org In-Reply-To: <20020122214936.B19676@polands.org> References: <20020122214936.B19676@polands.org> Cc: questions@FreeBSD.ORG X-Mailer: SquirrelMail (version 1.0.6) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I tried reiserfs in Mandrake and it just ent OK whenever such problem as reset before shutdown wihout a need for me to manually do fsck.. will this feature come into FreeBSD in 4.5, 4.6 or 5.0?? - deman > On Tue, Jan 22, 2002 at 08:44:35PM -0600, Doug Poland wrote: >> Hi, >> >> I was torture testing a new box I've built to see how it handles under >> extreme load. Now the box appears hung and I'm seeing: >> >> swap_pager_getswapspace: failed >> >> on the console. It does not respond to the keyboard on the console or to >> keystrokes on any of the ssh sessions I'm running. I was >> hearing the harddrives churning but that has since stopped. >> >> I have the uncomfortable feeling that I may have to do a hardware reset >> but am hoping someone has an idea of how I can get control of this box. >> > Never mind, I just reset the machine. Filesystems needed fsck > but came up clean and quick (soft updates and vinum) > > -- > Regards, > Doug > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 20:59: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 3EEE737B404 for ; Tue, 22 Jan 2002 20:58:54 -0800 (PST) Received: from gateway ([63.70.155.108]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Wed, 23 Jan 2002 00:02:06 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: RE: Some questions about ipfw Date: Tue, 22 Jan 2002 23:58:49 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: <20020122204221.F48937-100000@bsd.smnolde.com> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Here is one of the many sample firewall rules sets patterned after the /etc/rc.firewall that can be found on the internet. What purpose does line 49 through 72 serve before the divert natd rule on line 81? What is line 15 through 25 doing and why? Other variations of this same rc.firewall move the line 81 the divert natd rule right after line 47 the flush rule, this puts lines 49 through 72 behind the divert natd rule. Does this make any difference? If so why? This rule set uses the established / setup combo method to process all tcp packets. It was previous said in this thread {It is considered "more secure" to use "keep-state"} method. What would this same rule set look like redone using the "keep-state" method? One good comparisons example says more that a million words. I was born in the show me state. If there are things missing like cvsup, passive FTP, or what ever are commonly used FBSD functions then add the rules to let them process. Also would like to see pointed out the difference of allowing things originating on the FBSD box or from behind being allowed as verses things coming in from the internet requesting services being allowed. A very important difference. All standard simple questions, but not answered any where with complete Working examples. Lets get this hidden information out into the open in one place all presented together for all the experts to agree on what is the best correct standardized rule set for the most commonly used FBSD functions. Firewall rules is some thing all FBSD users have to go through sooner or later on there FBSD box. So this will help every one. The following rule set came from http://www.mostgraveconcern.com/freebsd/ipfw.html 7. # rc.ipfw - Firewall Rules 8. # 9. # This file is a modified version of /etc/rc.firewall. 10. # 11. # Maintained by: D. O'Connor 12. # Modified: 7/18/2000. 13. # 14. 15. # Suck in the configuration variables. 16. if [ -r /etc/defaults/rc.conf ]; then 17. . /etc/defaults/rc.conf 18. source_rc_confs 19. elif [ -r /etc/rc.conf ]; then 20. . /etc/rc.conf 21. fi 22. 23. if [ -n "${1}" ]; then 24. firewall_type="${1}" 25. fi 26. 27. # Firewall program 28. fwcmd="/sbin/ipfw" 29. 30. # Outside interface network and netmask and ip 31. oif="dc0" 32. onet="123.45.67.0" 33. omask="255.255.252.0" 34. oip="123.45.67.89" 35. 36. # Inside interface network and netmask and ip 37. iif="ep0" 38. inet="10.20.155.0" 39. imask="255.255.255.0" 40. iip="10.20.155.1" 41. 42. # My ISP's DNS servers 43. dns1="123.45.67.8" 44. dns2="98.76.54.123" 45. 46. # Flush previous rules 47. ${fwcmd} -f flush 48. 49. # Allow loopbacks, deny imposters 50. ${fwcmd} add 100 pass all from any to any via lo0 51. ${fwcmd} add 200 deny all from any to 127.0.0.0/8 52. 53. # If you're using 'options BRIDGE', uncomment the following line to pass ARP 54. #${fwcmd} add 300 pass udp from 0.0.0.0 2054 to 0.0.0.0 55. 56. # Stop spoofing 57. ${fwcmd} add deny all from ${inet}:${imask} to any in via ${oif} 58. ${fwcmd} add deny all from ${onet}:${omask} to any in via ${iif} 59. 60. # Stop RFC1918 nets on the outside interface 61. ${fwcmd} add deny all from any to 10.0.0.0/8 via ${oif} 62. ${fwcmd} add deny all from any to 172.16.0.0/12 via ${oif} 63. ${fwcmd} add deny all from any to 192.168.0.0/16 via ${oif} 64. 65. # Stop draft-manning-dsua-03.txt (1 May 2000) nets (includes RESERVED-1, 66. # DHCP auto-configuration, NET-TEST, MULTICAST (class D), and class E) 67. # on the outside interface 68. ${fwcmd} add deny all from any to 0.0.0.0/8 via ${oif} 69. ${fwcmd} add deny all from any to 169.254.0.0/16 via ${oif} 70. ${fwcmd} add deny all from any to 192.0.2.0/24 via ${oif} 71. ${fwcmd} add deny all from any to 224.0.0.0/4 via ${oif} 72. ${fwcmd} add deny all from any to 240.0.0.0/4 via ${oif} 73. 74. # Network Address Translation. This rule is placed here deliberately 75. # so that it does not interfere with the surrounding address-checking 76. # rules. If for example one of your internal LAN machines had its IP 77. # address set to 192.0.2.1 then an incoming packet for it after being 78. # translated by natd(8) would match the `deny' rule above. Similarly 79. # an outgoing packet originated from it before being translated would 80. # match the `deny' rule below. 81. ${fwcmd} add divert natd all from any to any via ${natd_interface} 82. 83. # Stop RFC1918 nets on the outside interface 84. ${fwcmd} add deny all from 10.0.0.0/8 to any via ${oif} 85. ${fwcmd} add deny all from 172.16.0.0/12 to any via ${oif} 86. ${fwcmd} add deny all from 192.168.0.0/16 to any via ${oif} 87. 88. # Stop draft-manning-dsua-03.txt (1 May 2000) nets (includes RESERVED-1, 89. # DHCP auto-configuration, NET-TEST, MULTICAST (class D), and class E) 90. # on the outside interface 91. ${fwcmd} add deny all from 0.0.0.0/8 to any via ${oif} 92. ${fwcmd} add deny all from 169.254.0.0/16 to any via ${oif} 93. ${fwcmd} add deny all from 192.0.2.0/24 to any via ${oif} 94. ${fwcmd} add deny all from 224.0.0.0/4 to any via ${oif} 95. ${fwcmd} add deny all from 240.0.0.0/4 to any via ${oif} 96. 97. # Allow established connections with minimal overhead 98. ${fwcmd} add pass tcp from any to any established 99. 100. # Allow IP fragments to pass through 101. ${fwcmd} add pass all from any to any frag 102. 103. 104. ### TCP RULES 105. 106. # HTTP - Allow access to our web server 107. ${fwcmd} add pass tcp from any to any 80 setup 108. 109. # SMTP - Allow access to sendmail for incoming e-mail 110. ${fwcmd} add pass tcp from any to any 25 setup 111. 112. # FTP - Allow incoming data channel for outgoing connections, 113. # reject & log all incoming control connections 114. ${fwcmd} add pass tcp from any 20 to any 1024-65535 setup 115. ${fwcmd} add deny log tcp from any to any 21 in via ${oif} setup 116. 117. # SSH Login - Allow & Log all incoming 118. ${fwcmd} add pass log tcp from any to any 22 in via ${oif} setup 119. 120. # IDENT - Reset incoming connections 121. ${fwcmd} add reset tcp from any to any 113 in via ${oif} setup 122. 123. # Reject&Log all setup of incoming connections from the outside 124. ${fwcmd} add deny log tcp from any to any in via ${oif} setup 125. 126. # Allow setup of any other TCP connection 127. ${fwcmd} add pass tcp from any to any setup 128. 129. 130. ### UDP RULES 131. 132. # DNS - Allow queries out in the world 133. ${fwcmd} add pass udp from any to ${dns1} 53 134. ${fwcmd} add pass udp from any to ${dns2} 53 135. ${fwcmd} add pass udp from ${dns1} 53 to any 136. ${fwcmd} add pass udp from ${dns2} 53 to any 137. 138. # SMB - Allow local traffic 139. ${fwcmd} add pass udp from any to any 137-139 via ${iif} 140. 141. # SYSLOG - Allow machines on inside net to log to us. 142. ${fwcmd} add pass log udp from any to any 514 via ${iif} 143. 144. # NTP - Allow queries out in the world 145. ${fwcmd} add pass udp from any 123 to any 123 via ${oif} 146. ${fwcmd} add pass udp from any 123 to any via ${iif} 147. ${fwcmd} add pass udp from any to any 123 via ${iif} 148. 149. # TRACEROUTE - Allow outgoing 150. ${fwcmd} add pass udp from any to any 33434-33523 out via ${oif} 151. 152. 153. ### ICMP RULES 154. 155. # ICMP packets 156. # Allow all ICMP packets on internal interface 157. ${fwcmd} add pass icmp from any to any via ${iif} 158. 159. # Allow outgoing pings 160. ${fwcmd} add pass icmp from any to any icmptypes 8 out via ${oif} 161. ${fwcmd} add pass icmp from any to any icmptypes 0 in via ${oif} 162. 163. # Allow Destination Unreachable, Source Quench, Time Exceeded, and Bad Header 164. ${fwcmd} add pass icmp from any to any icmptypes 3,4,11,12 via ${oif} 165. 166. # Deny the rest of them 167. ${fwcmd} add deny icmp from any to any 168. 169. 170. ### MISCELLANEOUS REJECT RULES 171. 172. # Reject broadcasts from outside interface 173. ${fwcmd} add 63000 deny ip from any to 0.0.0.255:0.0.0.255 in via ${oif} 174. 175. # Reject&Log SMB connections on outside interface 176. ${fwcmd} add 64000 deny log udp from any to any 137-139 via ${oif} 177. 178. # Reject&Log all other connections from outside interface 179. ${fwcmd} add 65000 deny log ip from any to any via ${oif} 180. 181. # Everything else is denied by default, unless the 182. # IPFIREWALL_DEFAULT_TO_ACCEPT option is set in your kernel 183. # config file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 21: 1: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ericekong.unixtechs.org (bgp942486bgs.canton01.mi.comcast.net [68.41.35.133]) by hub.freebsd.org (Postfix) with ESMTP id 3FE6437B400 for ; Tue, 22 Jan 2002 21:00:56 -0800 (PST) Received: (from eric@localhost) by ericekong.unixtechs.org (8.11.6/8.11.6) id g0N4v3O22032; Tue, 22 Jan 2002 23:57:03 -0500 Date: Tue, 22 Jan 2002 23:57:03 -0500 From: Eric Ekong To: Ted Zateslo Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Problems compiling Pine Message-ID: <20020123045702.GD20971@ericekong.unixtechs.org> Reply-To: Eric Ekong References: <200201200354.g0K3si105426@quartz.gly.fsu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200201200354.g0K3si105426@quartz.gly.fsu.edu> User-Agent: Mutt/1.3.25i Organization: UNIXTECHS X-Operating-System: Linux 2.4.8-26mdk i686 up 1 day, 3:32 X-Editor: Vim http://www.vim.org/ X-Mailer: Mutt http://www.mutt.org/ X_Info: http://www.unixtechs.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Did you ever get a response to this. I just updated my cvs directory and I still can't seem to get it to compile and I get the very same error you did. Eric * Ted Zateslo [020119 22:54]: > My attempts to compile the latest release of Pine (4.44) from > the Ports collection have failed, and I don't know why it's > happening. Everything goes fine for a while, Pico and Pilot compile > fine, then, as the Pine files are compiling, it gets to imap.c and I > get: > > ******************** > cc -O -pipe -DDEBUG -DBSDI -DSYSTYPE=\"BSF\" -DMOUSE -I/usr/local/include -c imap.c > imap.c: In function `mm_log': > imap.c:195: `TCPDEBUG' undeclared (first use in this function) > imap.c:195: (Each undeclared identifier is reported only once > imap.c:195: for each function it appears in.) > *** Error code 1 > > Stop in /usr/ports/mail/pine444/work/pine4.44/pine. > ******************** > > I took a look at imap.c in the earlier Pine version already installed > (4.10), and the line in question with (errflg == TCPDEBUG) wasn't > there. So it is something fairly new. > > Has anyone been through this? Or am I just being oblivious to > something obvious? > > Ted Zateslo > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- ====================================================== Eric I. Ekong eric@unixtechs.org office phone: 734-214-7435 eric.ekong@wcom.com cell phone: 734-276-6182 ekonge@cuaa.edu pager:1-888-806-8347 support@unixtechs.org ======================================================= Uptime: 1 day, 5:23 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 21:15:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 0598E37B404 for ; Tue, 22 Jan 2002 21:15:41 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16TFl5-0008vi-00 for freebsd-questions@freebsd.org; Wed, 23 Jan 2002 05:15:39 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 95F99118A; Wed, 23 Jan 2002 06:15:38 +0100 (CET) Date: Wed, 23 Jan 2002 06:15:38 +0100 From: Cliff Sarginson To: FreeBSD List Subject: Reversing Linux and FreeBSD running on same system without mutual self-destruction Message-ID: <20020123051538.GA3234@raggedclown.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Here is a challenge. One of the systems on my network has got to start being more useful than it has been so far (reasons I won't bother you with). Now on this system I have a UW2 SCSI disk with a Linux system on it. This runs on reiser file systems. Also on this system on AT Disks is a cuddly FreeBSD 4.5 system. Now I want to reverse this setup, most of what I have beeing doing on the Linux system has been transferred to the FreeBSD one, a few things are left to do..but that will happen. However I need to preserve the Linux system, for the forseeable future. However it will be much less used than it has been. I want the main platform of the system to be FreeBSD, I am getting sick of rebooting it every 5 minutes to do this thing on one and that on the other. This is not only for convenience but the system is shortly going to need to be online 5/7 for most of the day as part of my great scheme. Now I am trying to get my head around how to do this. I have some spare disk capacity for intermediate stages, but not endless amounts. The only external storage media I have is CD/RW. I want the FreeBSD system to end up on the SCSI disks and the Linux one on the AT disk. I cannot mount the reiser systems on FreeBSD I guess. And I have had terrible troubles mounting FreeBSD disks on Linux systems (though it is supposed to work, I could look into it again I suppose). I also of course need to build a SCSI aware BSD system, although that should be a non-problem I guess -- controller is Tekram with ncr53c895 chipset, common as muck ? I have given this a lot of thought, and it's obviously do-able. But in my attempts to do minimise the amount of work involved, and to avoid too much re-configuration I wonder if any of you can think of any tips, or how to avoid falling into a nest of vipers on the way. I am particularly concerned about the different partitioning schemes for BSD/Linux, since at some point some part of the system is going to have to be off-air (i.e. sitting on a CD-ROM hopefully not being a candidate for a coaster). When I think about this I realise why I gave up being a Unix System Manager and went back to programming :) A much less hazhardous profession, if somewhat worse paid. And before someone says "Wouldn't it have been better to have done the switch before configuring so much of BSD ?" The answer is yes, it would have been. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 21:50:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail8.mgfairfax.rr.com (fe8.southeast.rr.com [24.93.67.55]) by hub.freebsd.org (Postfix) with ESMTP id 9FFA837B416 for ; Tue, 22 Jan 2002 21:50:22 -0800 (PST) Received: from there ([24.163.113.25]) by mail8.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Tue, 22 Jan 2002 22:52:50 -0500 Content-Type: text/plain; charset="iso-8859-1" From: Ray Kohler To: m p , Scott Nolde Subject: Re: Some questions about ipfw Date: Tue, 22 Jan 2002 22:56:05 -0500 X-Mailer: KMail [version 1.3.2] Cc: freebsd-questions@FreeBSD.ORG References: <20020123025215.95139.qmail@web13303.mail.yahoo.com> In-Reply-To: <20020123025215.95139.qmail@web13303.mail.yahoo.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: <053275052031712FE8@mail8.mgfairfax.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday 22 January 2002 09:52 pm, m p wrote: > Scott Nolde wrote: > > This is a normal response after instituting the rules you've > > set forth. > > I can not see why the packets should be denied. IF there were > other packets send back to him he should see them too denied in > the logs. But he is not seeing them. > > "setup" and "established" can be bypassed with hand crafted > packets which have the SYN and ACK bit set. That is the behaviour > for any stateless firewall. With "keep-state" only packets are > allowed that matches a rule created by his machine at connection > start time. > > It is considered "more secure" to use "keep-state" _correctly_. > > For testing can you, Ray, please test some rules with "setup" and > "established" _only_ to see if it helps to use "setup" and > established ? > > Your ruleset looks okay for me. Doing the TCP with "established" and "setup" rules seems to improve behavior, but then I'm beginning to think that there was network trouble upstream at that point anyway and that's why things were showing up so late. I'm considering just going back to IPF at this point; I had it working before and it just seems a little "smarter" than IPFW. -- Ray Kohler Schnuffel, n.: A dog's practice of continuously nuzzling in your crotch in mixed company. -- Rich Hall, "Sniglets" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 21:51:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id CC7E237B416 for ; Tue, 22 Jan 2002 21:51:38 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D4FC766B74; Tue, 22 Jan 2002 21:51:37 -0800 (PST) Date: Tue, 22 Jan 2002 21:51:37 -0800 From: Kris Kennaway To: Mike Cc: freebsd-questions@freebsd.org Subject: Re: Space needed for EVERY port Message-ID: <20020122215137.A27249@xor.obsecurity.org> References: <200201230359.g0N3x7m04185@clmboh1-smtp4.columbus.rr.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="gKMricLos+KVdGMg" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200201230359.g0N3x7m04185@clmboh1-smtp4.columbus.rr.com>; from bricktop@cinci.rr.com on Tue, Jan 22, 2002 at 11:01:13PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --gKMricLos+KVdGMg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 22, 2002 at 11:01:13PM -0500, Mike wrote: > Just curious, does anybody know how many gigabytes you would neet to inst= all=20 > the ENTIRE ports tree? thanks. Well, the ports tree is only a few megabytes. Or did you mean to install every port in the ports tree? Kris --gKMricLos+KVdGMg Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8Tk9pWry0BWjoQKURAvq2AJ9AasSaPvGCkcSYHO87ridSyevpgwCfS070 k0ucipoThDCXgaBRxahmyi8= =e6e5 -----END PGP SIGNATURE----- --gKMricLos+KVdGMg-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 21:54:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from server1.wojo.com (server1.wojo.com [216.42.139.184]) by hub.freebsd.org (Postfix) with ESMTP id 5FE4037B41E; Tue, 22 Jan 2002 21:51:57 -0800 (PST) Received: from ishadow (pc3-oxfo3-0-cust229.oxf.cable.ntl.com [213.107.68.229]) by server1.wojo.com (Postfix) with ESMTP id 0B5423B4A; Wed, 23 Jan 2002 00:51:49 -0500 (EST) Reply-To: From: "Robin Breathe" To: Cc: Subject: RE: I/O APIC and Uniprocessor support Date: Wed, 23 Jan 2002 05:51:48 -0000 Message-ID: <000401c1a3d2$0d8ba600$026ca8c0@ishadow> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0005_01C1A3D2.0D8BA600" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.3416 Importance: Normal In-Reply-To: <3C4D7280.C379B9F2@svenskabutiker.se> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C1A3D2.0D8BA600 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Earlier I tried a kernel compile with both SMP and APIC, then enabled APIC mode in the bios (v1011 - 18/01/02). On boot, I get an immediate panic: panic: pmap_bootstrap: no local apic! mp_lock =3D 0000000c; cpuid =3D 0; lapic.id =3D 00000000 Uptime: 0s Any ideas? The APIC apparently works with Win 2k/XP in MPS Uniprocessor mode, so I think the fault must be with BSD's detection. Kernel config is attached. Also attached is the failed kernel compilation log from enabling APIC without SMP (I tried to send before, but it appears to have failed). Robin Breathe. -----Original Message----- From: owner-freebsd-smp@FreeBSD.ORG [mailto:owner-freebsd-smp@FreeBSD.ORG] On Behalf Of Martin Nilsson Sent: 22 January 2002 14:09 To: robin@isometry.net Cc: smp@freebsd.org Subject: Re: I/O APIC and Uniprocessor support Robin Breathe wrote: >=20 > Hi, >=20 > Reading up on 'option APIC', it seems that the intention of keeping it > distinct from 'option SMP' was to support future uniprocessor boards=20 > that had this feature. Well that time has come ;) Yes, it is a PC2001 design requirement that the PC should be able to run in=20 APIC mode. So all new motherboards will have this in the future. > The Asus TUSL2-C (based on Intel 815ep chipset, and others based on=20 > this chipset I would guess) has supported APIC mode since bios=20 > revision 1008 (07Aug2001), but nothing seems to have been done to=20 > solidify support for I have a MSI K7T Turbo2 (Athlon KT133A) that have APIC mode as an option in=20 BIOS. I can run a SMP kernel on it but not compile a kernel with just=20 "options APIC_IO". It seems silly to run a SMP kernel just to get better interrupt sharing. > compilation with 'option APIC' and without 'option SMP'. I tried to=20 > compile with -STABLE from yesterday, and got the a lot of errors=20 > (attached). http://ftp.cvut.cz/Asus/mb/sock370/815ep/tusl2-c/index.txt > has the bios revisions, including the introduction of I/O APIC mode. > I have shared devices, and thus I think it would be great to get this > working. I would be delighted to help test this code out if anyone can > supply some patches to get it working. I took a look at the source files where APIC_IO was used but it seemed to=20 be rather mixed up with options SMP and not that easy to sort out. I'l be happy to test patches, both on this machine and on dual PPro boxen (have one STABLE and one CURRENT). /Martin --=20 Martin Nilsson, Civilingenj=F6r M.Sc. CS&E=20 Svenska Butiker AB, S:t Larsv=E4g 44, 222 70 Lund martin@svenskabutiker.se =20 Tel: 046-304130 =20 www.svenskabutiker.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-smp" in the body of the message ------=_NextPart_000_0005_01C1A3D2.0D8BA600 Content-Type: application/octet-stream; name="QUADRIC" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="QUADRIC" #=0A= # GENERIC -- Generic kernel configuration file for FreeBSD/i386=0A= #=0A= # For more information on this file, please read the handbook section on=0A= # Kernel Configuration Files:=0A= #=0A= # http://www.FreeBSD.org/handbook/kernelconfig-config.html=0A= #=0A= # The handbook is also available locally in /usr/share/doc/handbook=0A= # if you've installed the doc distribution, otherwise always see the=0A= # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the=0A= # latest information.=0A= #=0A= # An exhaustive list of options and more detailed explanations of the=0A= # device lines is also present in the ./LINT configuration file. If you = are=0A= # in doubt as to the purpose or necessity of a line, check first in LINT.=0A= #=0A= # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.35 2001/09/27 17:43:06 = alfred Exp $=0A= =0A= machine i386=0A= cpu I686_CPU=0A= ident QUADRIC=0A= maxusers 256=0A= options NMBCLUSTERS=3D8192=0A= =0A= options ROOTDEVNAME=3D\"ufs:da0s1a\"=0A= =0A= #makeoptions DEBUG=3D-g #Build kernel with gdb(1) debug symbols=0A= #options MAXMEM=3D32768=0A= #options DDB=0A= =0A= #options MATH_EMULATE #Support for x87 emulation=0A= options INET #InterNETworking=0A= #options INET6 #IPv6 communications protocols=0A= options FFS #Berkeley Fast Filesystem=0A= options FFS_ROOT #FFS usable as root device [keep this!]=0A= options SOFTUPDATES #Enable FFS soft updates support=0A= options UFS_DIRHASH=0A= options MFS #Memory Filesystem=0A= #options MD_ROOT #MD is a potential root device=0A= #options NFS #Network Filesystem=0A= #options NFS_ROOT #NFS usable as root device, NFS required=0A= options MSDOSFS #MSDOS Filesystem=0A= options CD9660 #ISO 9660 Filesystem=0A= #options CD9660_ROOT #CD-ROM usable as root, CD9660 required=0A= options PROCFS #Process filesystem=0A= #options SMBFS #SMB/CIFS filesystem=0A= options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]=0A= options SCSI_DELAY=3D4000 #Delay (in ms) before probing SCSI=0A= options UCONSOLE #Allow users to grab the console=0A= options KTRACE #ktrace(1) support=0A= options SYSVSHM #SYSV-style shared memory=0A= options SYSVMSG #SYSV-style message queues=0A= options SYSVSEM #SYSV-style semaphores=0A= options P1003_1B #Posix P1003_1B real-time extensions=0A= options _KPOSIX_PRIORITY_SCHEDULING=0A= options _KPOSIX_VERSION=3D199309L #stuff for cdrdao=0A= options ICMP_BANDLIM #Rate limit bad replies=0A= options KBD_INSTALL_CDEV # install a CDEV entry in /dev=0A= options CPU_ENABLE_SSE #Enable SSE support=0A= =0A= # To make an SMP kernel, the next two are needed=0A= options SMP # Symmetric MultiProcessor Kernel=0A= options APIC_IO # Symmetric (APIC) I/O=0A= =0A= device isa=0A= #device eisa=0A= device pci=0A= =0A= # Floppy drives=0A= #device fdc0 at isa? port IO_FD1 irq 6 drq 2=0A= #device fd0 at fdc0 drive 0=0A= #device fd1 at fdc0 drive 1=0A= #=0A= # If you have a Toshiba Libretto with its Y-E Data PCMCIA floppy,=0A= # don't use the above line for fdc0 but the following one:=0A= #device fdc0=0A= =0A= # ATA and ATAPI devices=0A= device ata0 at isa? port IO_WD1 irq 14=0A= device ata1 at isa? port IO_WD2 irq 15=0A= device ata=0A= device atadisk # ATA disk drives=0A= device atapicd # ATAPI CDROM drives=0A= options ATA_STATIC_ID #Static device numbering=0A= =0A= # SCSI Controllers=0A= device ahc # AHA2940 and onboard AIC7xxx devices=0A= =0A= # SCSI peripherals=0A= device scbus # SCSI bus (required)=0A= device da # Direct Access (disks)=0A= device sa # Sequential Access (tape etc)=0A= device cd # CD=0A= device pass # Passthrough device (direct SCSI access)=0A= =0A= # atkbdc0 controls both the keyboard and the PS/2 mouse=0A= device atkbdc0 at isa? port IO_KBD=0A= device atkbd0 at atkbdc? irq 1 flags 0x1=0A= #device psm0 at atkbdc? irq 12=0A= =0A= device vga0 at isa?=0A= =0A= # splash screen/screen saver=0A= pseudo-device splash=0A= =0A= # syscons is the default console driver, resembling an SCO console=0A= device sc0 at isa? flags 0x100=0A= =0A= # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver=0A= #device vt0 at isa?=0A= #options XSERVER # support for X server on a vt console=0A= #options FAT_CURSOR # start with block cursor=0A= # If you have a ThinkPAD, uncomment this along with the rest of the PCVT = lines=0A= #options PCVT_SCANSET=3D2 # IBM keyboards are non-std=0A= =0A= # Floating point support - do not disable.=0A= device npx0 at nexus? port IO_NPX irq 13=0A= =0A= # Power management support (see LINT for more options)=0A= device apm0 at nexus? disable flags 0x20 # Advanced Power Management=0A= =0A= # Serial (COM) ports=0A= device sio0 at isa? port IO_COM1 flags 0x10 irq 4=0A= device sio1 at isa? port IO_COM2 irq 3=0A= options CONSPEED=3D115200=0A= =0A= # Parallel port=0A= device ppc0 at isa? irq 7=0A= device ppbus # Parallel port bus (required)=0A= device lpt # Printer=0A= #device plip # TCP/IP over parallel=0A= #device ppi # Parallel port interface device=0A= #device vpo # Requires scbus and da=0A= =0A= =0A= # PCI Ethernet NICs that use the common MII bus controller code.=0A= # NOTE: Be sure to keep the 'device miibus' line in order to use these = NICs!=0A= device miibus # MII bus support=0A= #device dc # DEC/Intel 21143 and various workalikes=0A= device fxp # Intel EtherExpress PRO/100B (82557, 82558)=0A= #device wx # Intel Gigabit Ethernet Card (``Wiseman'')=0A= #device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')=0A= #device rl # Realtek shitty 8139 support=0A= =0A= =0A= # Pseudo devices - the number indicates how many units to allocate.=0A= pseudo-device loop # Network loopback=0A= pseudo-device ether # Ethernet support=0A= pseudo-device pty # Pseudo-ttys (telnet etc)=0A= pseudo-device md # Memory "disks"=0A= pseudo-device gif # IPv6 and IPv4 tunneling=0A= #pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation)=0A= pseudo-device vn # Vnode driver (turns a file into a device)=0A= #pseudo-device ccd 1 # Concatenated disk thingy=0A= =0A= # The `bpf' pseudo-device enables the Berkeley Packet Filter.=0A= # Be aware of the administrative consequences of enabling this!=0A= pseudo-device bpf #Berkeley packet filter=0A= =0A= # IPFilter support=0A= options IPFILTER #ipfilter support=0A= options IPFILTER_LOG #ipfilter logging=0A= =0A= # IPsec support=0A= options IPSEC # IP security=0A= options IPSEC_ESP # IP security (crypto; define w/IPSEC)=0A= =0A= # SMB support=0A= #options NETSMB # SMB/CIFS requester=0A= #options NETSMBCRYPTO # encrypted password support for SMB=0A= #options LIBMCHAIN # mbuf management library=0A= #options LIBICONV # Kernel side iconv library=0A= =0A= # USB support=0A= #device uhci # UHCI PCI->USB interface=0A= #device ohci # OHCI PCI->USB interface=0A= #device usb # USB Bus (required)=0A= #device ugen # Generic=0A= #device uhid # "Human Interface Devices"=0A= #device ukbd # Keyboard=0A= #device ulpt # Printer=0A= #device umass # Disks/Mass storage - Requires scbus and da=0A= #device ums # Mouse=0A= #device uscanner # Scanners=0A= #device urio # Diamond Rio MP3 Player=0A= ------=_NextPart_000_0005_01C1A3D2.0D8BA600 Content-Type: application/x-compressed; name="kernel.0121.21.13.25.tar.gz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="kernel.0121.21.13.25.tar.gz" H4sIAEVPTjwAA+29aW/cSLY2eL++9SuImg8GLl5Zq1UqX7jRLlvu1m2X7dd2dd/GYMBicsmMSm5m kKlUDea/T6xkcAmSyZSYSfoYVjL25Twnzok91m4Suv7zs/OL8+fk//nl84sX//HI/87Pzq6vroz/ MOi/s/L34qezy/MX14bx09XF5TkxX18ZxvkFMfyHcfbYBWn6l+HUSgzjP5IoStvC3a9c1x+jQOP+ O9nr3w9/+ctfjH8wFjIWGfIdw4sS4//89vrt57s3BqVs6jpGFBq/kr//tkLj4pz8f3l++fLihfHb 1zfGxdnZxQ97luHVq1d/kXn+EKwdlBgnsXGa4eQ0WvzBvjixT/ED/sF2DNV+ii5vrk/tKPT+yzA+ vf7691e1WCwEsyxQ+FLv3e67tAIXvxRp5EGLJInBMGg50NIwTpzGwp9Kssqqvo3CZykl+NJNjTQy nMiwjN9/D6y1azhu7IbOs2c/lMAhpHHtNEoeDIRb88gJpfEn5Pr19T9uP/7y32/vPn/6fPvu7n9y 0hnGm4+/frp7f/vZ7CCpjxbu1rXbqWoY7+9++fz68797pNaSEvE1DFLedx8///r6a8+Skaq8e//6 b19e/XgSRjh1UGgbJx8vCHuh2DVOAiuxV68IoVOUBXES/UiY6Pbz+xekwO1pO1ZqncZu4p++eH52 9uLs0jD+9vnju3fmL3cfuorGSMJDv/v4obMmeGUl7ukyiTzP9KIwlXG//vr6Tb+4aWARQry9/fKV YN0c2jDuPnz5+vr9+1c/4lXRwtIo8kkbC4kc8P3nePXjETSyXVngZYkfCNH+fvfh9hWrNGto/7j9 /OH2/as1b2a27xIhx35JW/shCYwTz/jP5xH5w/TnC/1ZM6vhOqSRGm6SYMMQ0cXHR2HK3GkOxLIm IbCbOq73f5+d/z/PbWHBz1dGai2J58ZNMHHehJHjmshTjSvDQraFA/Exl4kVEH9hw7YVEtvD89Ra kKDU+aftdmti9xuPyWyJuyQ2x90gWyRfmFdEtGDuKE0rI0Aody3MKyOOc+fcSFxtJBIQphURTxZ3 EoZVTXIHkZP5Ljb+y3DDjV4YNQmvPC4DkIHFdYhl255J26YAjpP5LCf4eYn00jfKfaMiBQqyYiGy t7BFxl9J1vYKha6BH4LF8zSIDfL3PFKKsUrTeL9i0BTyYnCLLAazdRZjuUcBljzrpch0GXNHk3K2 L8wbZAkTRliYLB9JU+DIODfnZ9LotRTbiOLUXDiUV5kpw8JE2KrEv6uCU0WitjTk3LgSRFhJZiAm pbI7kGLFmWEl2GBlcUeTsHZXZWzSVnkVsI2RWm61Mnkb4SUOkuGwBQkrK/3QspIvszEKcpOD8Lqt 2I0lrNA0HFxA5JlEYK1zAykkNwkXUlDbShzFinJzD3oT57SLytXKZO7g2nDRaJimkJEry16bRClQ uUeKnLmyptQkqkqMvVtAhhe62ihSmddjsXyqepCURT2YideDGnvVo6v0FTgWCXL2qAmPTosrTaS4 wtglL23bEfkS0yBRQeOtxYfkS78tNCpUvMjf+fn6+mxw1Xl0lr8w0SIwo7kIrDgPYvpRtM4UOy1H YUsSpPhlKfIL28bDUYwVe8it/esYOVIeb6h5GJlpxLX80loSg+ktsCM8zZD0JG1SIlc6xJiwn7Tg bJFI88YNM5xb8uox286V20OUkCZl5/LCLuSF/VTywrGfSFw4tqgFNfBKENNTyAonC4IHIvGHEz32 7kk16EethEyX1qMw06rEZm7vUyFeTM9x8XBis9i0JMJAp2ioqWBWYd2VW73t8O5hOweQlAULMBPn AWp8CiZYbp+oFsutqAQ18DoQ01NUgbYQtAeLiPiy2SFcNDxq7tdnksZrpVSuN7hMrvf86vnyT/61 rZSaWYqilNTAy+h2DglQvFUKKIyuSj7PQulqH/qxBCTTcrNgW2YZTsIlGk5DHl1yIcoptmSjKBTm hmth2rGQzBwkEdHx4VIpcxxLyUBMgzQ0T0SUnJl4yakxoqmaafpAY/h2FMSJi6nkIvrbpFYRgiTl WynVfn/6aLFL7XJ24cWvCj5SDuxLUPyh9SMx17mB1w771Sr1KHJRpnQvTiHRZYHSnFOocTjvppbk AyWgMjE1qJwkUVFOZuLlTK1O5VDLvihmttd4lESXBcryESk1Di7Qxt9vhEzjiyJxIy8TM+/CU/G1 d79H34jEZqXgBtb9uTaJsWscRbpTyE/d4bMYKOZtK+YtK/C9tUkt1Il07VNu8BJryU045XKCGOMk 2j5wo5UxwU1MfiQCemwsw38767AP6STlcsL1ohveK1Msc8V5tszUle0f0cPgTEnc5zdUtXOD0PPU suaetBj0u+uEU3lKjE6re3hwKXl0WiRpIqXixqIXLe27dqPX+w361vmgb10M+tZPNejzn2ySyM8n ifxiksh/okki0h9AdhRuBtdFJkCLXJhpoZkp4l9z63Nhwyz0x02IXOuYxG7m53oSdpNjUcHAXllo uBrJUxBVlBZSRzr9YQp7l3DwUZjJARYzmxYm4Uim3LZ0Q+4QDSojSYLLD2kUEoRb1zIILTXPz4/s KHFlXD4az21EsBdeSze1753ciiI79QtbbOdmWn3KxrmddTalGRcBMVqGVpEGjuw1mwcQVqKEcGF7 wGp+xOqGqWrduEXCYo5NWJBzfk2ZLlhadmpyAnQtM5AepyV7cTwGN2+IO2mD9V5K4AyXA2yOM+BT nEHrDCcbX3hyFYeElbnvIcwDLskDIcYDVYYHfQR4UagaURDaUzqykgkTLRxC3MuMVw9i1jFbE7P8 yqnIQtSRkfP52dkZD+Nu+TfE/Bv4/JuKbyK+VsC/js2/cSjjLaWDxQ2LRLhsRRQkgvrblBu+ibws kdZuck67cFyS34G/x6SNzwQD+7DO4ZY7iqUianqEJa4AO9EePEpjs1JyAy0nNRH2FPpFWh1XTL5L B49pHGnLZ+qlQ8Hq0mHX/kpoD5/2I3FprdiH1Il8aX1C7sMEojDSEMKRMzgLmjzEqTAHkSNMyTdh IL10JJMK/Z6j58qAn+Yr6hnbw5Vne1eHpCxnNux8cEaNT9HVIbVcJqTxlm2nFn4Ih08YymRIDaVR rWO4NFn6DOvcTAGXlq5uQ17ORTx8UqO7lCR1UUZm4iWkRtLGY8/kw9AdCrvf2mOP8uark4pFlLrf GmVeVpv0TKInLCpLX5RUmHlBuaV3OV179ZTFpMmLUnIjLyQz9y9jutpjtqJHIWn6spTcLIrJLL3L 6SVW4JqJ61vDR+zdpVVyEWUuufCSq069y7+K/KdsXTR5UWJu5EVl5t5lRJ5lP2UhWfqilMLMi8kt vcu55sOPJyypyEGUNbfx0q7z0U/P8vrB8L51d1lJ6qKczMTLSI29y5fr2X0LycqRm4VwtzCFlphi K8E7oByF7kVghU/Z3GUWgn6FlRc9t/cuc7F69BTFFctK0sQLyZeV+pcvesoWztIvyhi5SimjHbCP 4zReJk9bUpZDXlZhk6Xl1t7lTTz7/Orn4fuXussrchDlzW28vNLau7xPLkBL8rMsPneVnqn7lHxA UhelZCZeRGrsX770KUUUXSsW5UtzwcQXkHuW77e7Jyzeb3eidNTAC0dMvcu2+eMpB3IkdVE6ZuLF o8aeK9WVwgZx/JSlpcmL4nIjLy8zR0ZiX9H0VtZ511A7V8By3LzHhKNYOpLrRnSRaIEi7iG3TjLj N98Vep7YsJtspFE2dmZJNnJjIrNmCyyND9i2fF9a85meXqtSlRmRMJ90zWeA2QxEFKVNOyLCJ1sW CvNlobBYFgqfaFkoDJxgOMwkMsOZfSnQ1NB34r1G0XQfjksFy6WS59ISQ6QKRzCLnGSjZrSy8Epa WAPfaXYw8/19Sk6is5KzLy05MeTFo+aiFsy28+zl/T6ls2Mqeuy4JHXuBbHvJbHvlXZNzXLpSFik qajJvYrHfYFHu4iiU5XcdF9vrdV6x1GSWv7gmvPotJrSRCrKjUU9pH1XTOIksvdAhUdnZRMmWjZm NDnhhYXvYReWMGJbPoQt8VGA0sJOF+PYtm5p54AIW/oQK3GL+gv7rvVPhuPSLjwTucUsybeYJW1b V4ZLTjx8lra9CjjflFbsSet5BGzXKqA91mva64CwrATCeS1Qpz4eVo31XpsA17Kk67ygrUthw8sZ ZaGjGE9je7juxaFjkvi07LmRHXX8+Se+JmqvrDB0fW7xXNeRuzACtJVGGvo5XdzzPDapKuIQk4Np VT1r7eaxi2S8IC0sCd9IxlLl5aKShJpoHWnbp6m2EbTf0bO8anZuWqmVtFXLSqmxrZhXRe3twqji c+okaOMmdZdTyzm/Ob/eFzDSYoRJbTLUiacvAZU2iik3Ph4FVzpSrVppcmr5+OrsbPh0RTcJeAY5 DaSVEkGYD08Fe49p2U4K2HxWNjfSk1qtc7Kj1RpfXdycP2HFWfp53YWNVp8bj4ECw8/I96i+VdRd nNBjZ3fJL5Xth6++g58QfZK4rD4z0ntb8DGA7gbZ+dn6CWsuMpC1z62EAtJ8BFTA55c/Dd9/1E0E ln5OA2GjJODGY6DA8K5yZ/XxwhaexFSnDS4IgwVVaEea0Obm5uYIaOMFN2dP2EJY8pIEwkJPdDLT 4WuP7OELoJ11J4nLmjMj227derZupFoHlovTZPg2lc6aiwxk7XMr3RcozEdDhcsnJ8NlhQ6XKiEu j4ESTykfg0IEBljuDaUicJm1n9UdqfKhGwXWEg1f5emkgMxBkqGw09lXaTk8JfDiKUfIrXqSZi3J w8303MbiKAbOeHFzMKrcFES5ETQ5hk4DKeteJCHxi4rZomJH0QQi/wnVIk09rzcz04pTw+Frnl45 99Zm+LJoZ+VFBrL+uZWQQJoPT4UNsm4u7OubJ5SDeRaSEooDoUVhOwZqLNwn7Bmw5AsqMAujADUd sPakOE89USz8uUUzkSrDcFvDXKMIQEzN83HSn1ka5qxyf6thRkd4EpNm0kMEELbmSQEZhlkah4Yi BDM3jJ+ENzFp+tYigLDpOuDlUJcNXVQZAmNd702EkNYm2S41OTFqpJ8IIWxa0SCC5fbGlpMHIuad O1u5b539SBcj971pmNDIQa3mKpoynwBkEuRArTh9qt09JOX8zpF8dw9On2Z3D90fFYW4ZDld+FY4 fMWUxTaxteHHM0pWem+gYu/aIScL5FhuEA0/ecajF0Uq2ykjqQ59C+VZznAWoJGLAqk2OnFVWHsX Bu2xqZlGVgqj2GhhCmvfwiwT1x2OFotdFKdkJeVR7X0L5EfL4T1uGrkojmqjB+gLa9/CJPvcQEAj F4VRbaQwirVvYXBorffpj5PYRXFKVjrqUOy9C5Raw0+N0chKcRQbLU1h7VuYeysZfuyCRi4Ko9pI YRRr38JY8fC9ICRuURTFQpfNc1tXQdLhq9r08ickL4RC+X1QrcvWHTqtrMfSp9oulsrtYmm+XSx9 mu1i6f3whkji0mKyDx3r3rvc0fSItORXuO5zcD/d41ZLSrD86sq0uLoy3evqynL5suUe+oZGpsXj X1I4ZugoWsv9QNWdjNkKDR/q0ciscOxLC0cNj1i49WKPwpHIrHDsSwtHDb0KR000sLhtiRv7ldiP h58vopFZidmXltiPO2+d3YWcgRXvsWuXRmfFC8QtftQg99kyc76vltt23VVLYu2xDMNii/KJVRZu 6g15r6v7ZVFJ0YdrPB6dF5abWGmZ8THx3oeagpaSkj3p2K9gIdpjwMRis8JxAy0eNeWsyCwFL3Lr zsyIF8NLSEixFh9aOrygCUcGl47ZKluIQOzX/JahZI2FRVYCLxwkv/K6KOrPLhCQgVZE0fBLcKiR AlG4RNylJ+/zlzdatZmshy0NDcDSx2nCPW5WkAlw8kkzo6GwPB4XblCYDW/CLDYtpjCwaVtqEi78 ZTBp42N4aeNvBWVMuHOHqDDxAxDM4vPrdZg5IAkkD9LGDpUn0kaGVs6L3OJ+y1ycFtYNYgsLzCbv zWQWwVWt9OR1aiDe8Pa7YY13w1vuprUzU8s1Hj5SJnFZvjFfdEKBoHosflHrGlSjfmAEIvF1DSd/ L0mUfni7aB8GbBJ5d2yS3xzb2VIGDQPuhwvF9ircL0QV7heyCvedN0APq8JT3R5/L2+Pv89vj79/ mtvjt081ntzK8eQ2H09un2Y8aVnD189JXDZTYPF1c/plNvnkETF13QdHy03j9RrAWXiP55kwn9XA Yj4Dd7ZLRbYUAofG61XWxTpNCtMps/KyUyMtZMBV/e5VYQms5ZdOlhODKS7nZOYIS5OVOUyeMkua ccXNw/O3nto5ihe1vTdS1Q15fc1gj565TEBWlJtlZYPW/jkvh432GMTQyDRr/qW76FH3CKbGMT34 xI68Pe6eX9j4gr6iQr8lEcIcaNpMjig2pnHZ9abMvoPOz8EsZE3js3A5Y/By/qeIxV9ypPnTVxyF Y545z8KLs+HLE3HG1iXoh+1pTFd0RVi8Y9DOKssw2ydrHp0tQwgTXS1CGxMH9PHOiD5UGSWYF9K0 Ev6sBTOzC2apyQ1T1qtk5tQWpjRhXdelSySP44j7IvzIckyc8vYeR/6DebENzqXZStkpOWYmZZBG /0KaCE2ur6QFozxwES+MAsRu203cJc2XjoWEjZ26ZxlzG32flN2uS608O2ryaQETYclolrmZp3Uf mHiVbIXpW9J9IQtj4v1aCr/vWBrlyyjMKlsJbyCsvRDQwkhGFdcWc7M4mMgt4p5ibvHskI0aRDh5 a7GwypuIRYpihCE8yRCDBMjtYkzALVs3RNuyrZaaUgpirnoHeJmbI3H1XV4qxLb45FZ+P3K7pIv5 HooG8e+jcM9T6XkK4hZq5Wx6blOuhy6fMy8c8okHxWnXyYfAH365DonLb8t9ELfl8muEH/Lbch+Y lngCnRLaw69np/mZfkTf5pLG0pUN9oZfQ7sR19AmLy7tF2dnxeORuVO/7qp2POc42gmEfGsGzbKR AHj4SkQXATC/BA2LG9DY+WbyWxDgUJVO9riakl5vwO+clCZx50HrHZOd737mRRVrlItwr8VBGl9u emFGseuFmnNX0bz23OwjCiwYYG9mYgvNuZkuM0tL4W7GPV5Z5QzSWzCIagSLvcQxf6SBNAhpVBtE /sAB9+fm0nYsmjsjADewq+uv2C1YwUJeYk2N/JlIakoT0qlg91hTG/mTJi7jqZHdXU0NGZZO8pJr akbskmuWY6EIuFXcL8MtbHAkgoVqqCIramElcFxsurY0EQKt3b6to3JVtpvSFAWOjCqVO2ianqeo KScc+xYumU8XwR6CjyVhkiQYWIqN8mth7dyJwIsS23sc9OS5kSSUojBbURRq7SxKunwqPUCS5rtH lnwtPbDPb+xLmoQ0ikeTc+vBFQTpkbvWHktRIj6vtjCyHTPc3NWREcFkYTbJlSwJMeZvmzDLXk+b 0BR4T1+YREef2dbCnxWcZpW/asJsea9Z2nhfWIyYWUzpJ/v2zCb7/cwiuqbMLDv5PI640ITFQD6X PdSSppHv5BY3CRCbwRGRKN1ym7zQLrcVqRSvqTArGS1GWWLndeMjmP6PmbDadtyNtXH3uMyARmYr Aa64qYAZaMujBrt7A81maeWTyXt1LO5lt+I+71Tc796JyFub7RinRC2d4sQ+JTx0GkRO5rvY+C/D JWr019f/uP34y3+/vfv86fPtu7v/ecXCRos/SnH+z2+v336+e5PHDay1a9i+a4UOEhOLlm17pkPG +4p1laaxsC6lYSUDBDJiKL6ZmHehD5hzA7+Gn89M2eKSIfE4tpiuckRqtozs2OIrnwTmUzns5V1u 3IqSLLdiKC8eXZUW18uN/DVRaaMveEozvdtYmrFfGNMiCH00MTdnYW5mjwJyC3uXTxjFU3nSJt1x bqTPszGDeASNm2W9fUmo/EksaRPvR8nhcCaqHQh6BjIp+uiNGGbKIOztEzGIE5Whr2lwl7b3KMpu 9O2HiouCbOUlg7IbezWg4sQu6S+7qRfil33YVfNlJ36ze9lN3qJedqV3lZddNLXOr+cuO+dcUrlz uurG73cuu8pblMuujcWklwJXXNJqUX67qzjQ22bLLuxKV+4keSLMQaI3anJTmnvyKyK5+V6axAWF 3MynXviAULhhwQv0mjZuWItv00ViirXrCqsGD3GzU93HlsA23QbU5GE1uNK7Y+qu8m6VBh9+30iT B25w5RdQ1N3p1Qx1V3l1gdbnssmrMeP84Hfdi52EbnK+aXRtTIKeJK07y2OWdZ/i6GGTHz2Ip7jj nIVSmZb+tEjJSZzXKLmx4xJlF5RUXPjBgZIT27pfcklyCVzexF52otvISy5sL3fJhW6oZg6pYOBU NCu6E5cbpH5jG0y5ie7m5Ca6dZKb6JZEbuL7/6QZ50a2l02YpSPbosWNeCENYncPs/HtM9woQtLt GdwgwtyLmPeiMWxFHejqLzdgZbWyMJ02WNmyHnNiK2zcRFexmEn60fUUZhBrK1y3sjl8qRdVWUUn WoXaE3qUzuFxMSY1DJs+4iY5L8NtbHqDG5uHxKqdjksFvy6lgY+LuIWOSzjtXCmDSOdSduk03bT/ Mli37svnN59ef/37q1IQ0kU8tZD903a7pV8LBwbvzZHeakfA019JOPq04g//spIQhcuXxsfFH66d GqQTSD5R8mCEUcrOoy1dx/CSKDCiBC0RGZu0FvgH2zZOPl4YJzGKSUkCK7FXr2Iy9kFZQHAxTu5Y LBTafuaQAHfPDfLvxO4sMf88t584A5N2yCOf5PNg0ZycvvGI4g2eP/wQbIyH56m1IKMD1cP+wXe3 xklq9C4GaYnPfeMvhmofXvlyWfZMZZ+yGCeRSKZUpqiUtrQpzhyViMT3/Z6NpnEsZBhvPv766e79 7WezaFFqOujy5ppZSH/b3br2S32IBQoN4/3dL59ff/53j9RaUiK+hkHK++7j519ff+1ZMlKVd+9f /+3Lqx9PwginDqF0GyA/Gsan28/vX5ACt6dNR36nsZv4py+en529OLs0jL99/vjunfnL3YeuojGS 8NDvPn7orAleWYlL9C6R8qYXhamM+/XX12/6xU3JQNow3t5++Uqwbg5tGHcfvnx9/f79qx/xqmh/ aRT5mLAn0dW+/xyvKH06ciS1a2eHFt8lGdbglyKNPGiRJKPcrizwssQPhGh/v/tw+4pVmmmCf9x+ /nD7/hUdZrq+4biEG5ynm0WgzYu0vT1TEaXkvYd8JqJP/KZaneZJGDbRxilVZlHSSIBT7bzHfpnT JHpmXp5lGZ7tsk+G6jzO8KxWfQirzhQNzypIemSlzEUNzynskZEy1zU8o8ztkZM6mzY4KxK5O6vq fN3w3Fj8HhlW5gUHZ0gid+dWnXkcnhuL3yPD6gzn8BxJ7B75lWZRh2fWhy3VedrBOTl2d0a1eeDh uYkUeuTZMOc8OFsWvTvPysz28Oy2PaS/Onc+OKfltjuj6tz84MxEAt05NqwC7JOp6/XKsrbWsE+e LIVe2dbXNfbJl8TvlWt1/WSfPEn8XnlW1mn2yRL7vXKsrAbtlWPaj7DVVad98iTxe+VZXd3aK8+s R9epaRVtn0xpAr1yra7XDc+URu+RZcOq4B558hT6ZFtbgdwn114VLa9yDs8O98uvvJY6ODsSuTuz 6mrt4Nx4/O4Mq6vCwzPs048rrTsPzsrv09uvr2wPz09uHuzOVLOKvk/WYmNin7zra/Z7ZEyi98lU 3RkwOLegx4BK3XkwPKM+baK0t2F4Vgj1yErdPTE8K78HVJX9GcMzo9F7ZFfeBTI4O/roYmdmpX0m g7Mikbuz6reTZXh1S+n0qHnXDpr9S0JS2aEc2l07j1CQnhM9ffYL7V8als4OhdHuU9q/KDSZHUqi 3R31CCWh6exSlI5dWfuXSElth3J17Azbv1g0mR3Ko92Ptn9JWDo7FKVtH9z+pREp7VAe/R68/UtD UtmhJC37/vYvSv74ef/ydO063L9QMqkdCtWy53H/8vSa3+ncZ/ko5Yh2aVNt+zsfozQspZ3K07a3 dP8SiZR2KFHrvtb9C7Sz1NHuqN2/LCSVHQrSvIv3EUqR7tKqG3cO71+I3+52KEPjXuX9y0BS2aEQ mv3R+xeDJrNDOcq7sodn32e8XNr3PTyrXl370s7y4XmR2D0yK+9eH55b2ouK1R3yw/Nj8XvkWN2J PzzH+175VXf7Dx+ps/g9Buv1UwXD82Txe+RZPr0wOL+kR/2U0xGD88E9Rvfq6YvhGaEe1FPPdwzP ad0jo7bzI8Nzlkn0KMCQ0yp7FqyUWN8i9j0v80hlE6/17Fi41jM7j1Myu89gsP95oUcqFH+aaMdy tZ1Yeqxy9dhC1PO01OOUiD7CtFuJ2k9qPU6p5OtPu5Ws87TYIxWOvzq1Y9nazqs9Vrn6aJK+Z+Ue p0z8+a3dStV2Vu9xSkXf/NqtTO3nBB+nVPKxsd1K1uOs4qMW73JY+XQnJh+pbDuzfsdpzccpVv6q 225l6zoz+jiFYw+07VawlhOrj1Wmm52LpDst+1gl2hW9lpO6j1Qk+gjgjmVqPyf8OOWSrw/uVrQ+ Z5Ufp3zFw4e7lbD7zPRjlY++t7hr2RrObO9ZHJJE31KUTogPzzbtwzQ9zqAPL4GaTI+ydJ5837sk PJ3+RdGeuN+7JDSV/uXQnPLfvxSoz1IN7rhZYO9isGT6l0N3n8He5aCp9C+G5g6FvUuR9NqChzvu bdi7GCyZ/uXQ3RaxfzlIKjsUo/mGir1LQVPpX4rmWzH2LgRJpH8Z1Hs4Buec9piGUu75GJ5Pjwlo 9R6R4Rnd9+Dp0k0lw7Pqc16pfBfK4Lxo7O7MKvetDM+NxO6RW/lOl+G5kdg9civfGzM8NxK7R27V u2mG58fi98ixdgfOPln2GdnXb9rZI0cav0+W5Rt99siwVwVLdwYNz4xG75Fd+Wai4dnhRY/Mancf 7ZEfT6FPpvV7lgZny6J351m+zWl4bj0AVG+LGp5R3KOLqd5HNTynHogp910Nzue+Bzsq92kNz6fH 6oByX9fgfLY9+iLqfWCDMyKRu3Mq3Tg2PCvc546JtjvNBmedJ9FdgNYb1PYvAE1mh0JU7m0bnD+N 3Z1t5W644bmR2D1yU++fG5xXH3Kq99sNzohE7s6peoPe4Nx4/O4M6zf1Dc6SP0zVfT606T7AwZnm SfQ6e1e9fXBwtiRynxNkyv2Gg7Mikfsc6FJuUByeFe6zHVy9o3FwVkmf4yXlWyAH50Vj95hzqN80 OTxH+Y5Ad64Nt1oOz5ZG75Fn592Zw0uQp9GjGPq7OvfNn6TRO//S3aDDM06XfVYqKreP7pEdS6BP lknlntPheZLYPTIs36U6vOfv9tkRVbqvdXivvId4uBfCobiI7q/GyV9KYX+QDwdU3PnVgOKyTfFk wXNxlV6wJgbFwTix6EWcxaWRb01+USAx/eP9W/PXj29/e39rnNydsFs7T+7+Sv9Onz9XLvOs0SG/ mlCG0fSdZdVocuR/6Kb0KZvC/bmt0IDdhzdPGtCqNdGAuuc0WA6ufRpl9qp4+EW109dhFTt91mr1 A73v0/gru3rilF7DSJ8sin3jZCUdiwcpgu7A4hkLfUibOJKM6SWE3UnuFFA8lhEcM/5Libyo2XO7 Z0CTPizv9w++QVb/wBjh/oEtH+0QOHB2qOLNOX1lRQAuW8JqsCwsOJ09fPQDO5j94//luB6N+uH1 318b5z8aLIua75c3X+7Mt7fvX//bOH9xdnZGwxUPJz1CO9i5eSFsnYoHmY6axVdSwLMrromNklfH A02B2StXEv0gGYr+ASCaihQKEpXqxEb+tBA1BWaqY6cI7NV2CWo4FNNyG737cPuVt+DiXbyDt8w5 8EeoAhjS+9Pote87BJYv0+0YR89TjRFUOZG5j99fyvDiMAxFaxkgRP/yxI+YXTJXQYcQjcGTuRIb erXwI2FzJFjMoI0TUBTQqI2ARj45aPyyntmNwHi9iuGXcJDVpvdEP4pu+vDmzVvjiuomkmSFc/Mn D0sMmbuS1I+YgKQ6CuNQG62gJB+/9foRemzTphEjgyATwpGXO/GPuQgs7dCvM7IfRetseHT2WPHQ yEmChuecpUg7gu2MLJ5cHhydPcUs2ZRelv44zfyfbz6+fc0b+oYmO6umTuojSMqM9Mf0Fljbr2uM EFqBaxPK6pmuKVaM6dvdu8Rgz2vvEmHjhpmeoRpjtPNgY5QS30Ev9XDM3NRLtYteqmNDJ/XYMHNs ZYaQXu5vP6++CPFImB0xDURNKysGKDalj6QJf0XiOPte797efnkzKt0YNQTR6PPpnnRivx2ivCuy KtTpexogOY6s1RBQFGlPbfTFjG2+vrbcAmbHhtlyq0BGLPS1ke3z4jUX9rTL000cF8BSh+ujVgqC Gso0hnB5Xnr85nGI9el/FFrF29pSWSM1y0Fuv/799rN5d8eC8XCupwl1c3Zx2TPcRZ9wXz68/lQN d9TIul4ZV9dTUOWv/jxdK6gHuS6HGdIwPrx7fff176/OxqYkI1aZmMxJoSd9z+jA1CwH+vXzx9++ 3n34WxEuSKKMdPqOu5vKSVmm9ZKu4vcLzvu04a5RKBjXPFKOKL1H+HHmdj59+mRcUBRIkjUF0U8M KnGY5FQ237A0y0mQDM1fvryl7xQXKekCvr199/7111tFtOlCvrt7//X2cy3gbOapOOhl3qNV1DNS OTixmWn60Ds89u0oiBMXa8cPtSgL7Jg00k5lIhD6VqqdN6vF+dNHC6UhYH80yfbhy3veUrA/QEqx DEZmGOyX+QVrZ6argVX0C1qnB1cjR90+CX0q9E5VmU0fohtnS8jUBR2hVJmQqRWrhMzG2lszeUJm YYWQWagQkj0Y+HSU3LkH/c/3rz+M34GmVChTibrkZGKPHI60ReDu0z+v3919vv3X6/fvxyUDrWWt 2xlfm959QQjx7OJotOBdOvP9P34tWT/+TVa0XgtexHyBKkwTtCielmyl6LAUHx+I1gzzYUTge2vS 3dYr9J7poNgMrfQRUvESa/kIyeC0rTPYP504ibb6zm7/dKyMjqT3TsaPHoM4nn5rQd9UWBJ5gx5R sB1IrFWlGiNjIdPwiDQYsdq4qDedZ+Z29itrTl99nc6e84kcCyBEzXfnWNQmqS2evD3OZcvx6MPJ UF5yFG7807Fi2SO+umi5hp0oh4O6aSfKutiJ4sN+6eMDzS/tl/b5fmm/2DicvzX9WJpj8Yd6YpIk z7xYHib9cRPSd9GQt4i72jnu43DIEQMpgBJoloijE65tccytzwYJDdQtWEM8BT673lReNUEZRha6 EdPkzgUJ6MPkjzKdQhdHXn81ry6LORU6H2uVV1tYhiWXDQlDmuuMJrFYHWWnikbhDuyXbw7T83MR kxOvFJcMhLTjzI6oSze177X7gzsio8hOtaO4rrix3SdmjU6UAwmUA3MN6ILLwJi4V4EbomK0DK2h dOIvZQ6NnFqptgfaFfcB90S3hhEJ6Ia9ytwUdeMOJXTbeYWuqMg5v96xxChYWrYUXUJwBoOPIxWS L/DK1z4EzlGvFgXq+SJiCfLTRcHwcWKVGrNRAkE+6Ms8bgs6x4qaOOr4kPTeJzIHYg8Yc8x0jEKr pDQdXkEtEzQFNuPVQ9s5mnqkbE2i7BhcHtUpyN87vnt+dna2U47udqfgId4peODvFDzdLXiyW3Ar 2Cm4Y+8UPA53JORyx+StncIvkt3S3+5GHLRbbf1tulP4b7uxmcWhkldLDh5KwZ0oWtnpq7vPqY38 aQFqCtx2f0VzBPVOlAA7EcyCMyrISWxq9rD8mm0TNG3xHLftxHNbTE+/+tsWrf18dlvMjm5bW0y1 8xbaj3Aiafge187jA0UEUtKjHouQ8gmCk6pSC/mjjKi9DacxAh1z7xSBkmWnDFq6bM1VSB5iLW83 xiCeO4VPvu0U3I+WaDeihn7O77E9eGoVFkyequkQUARo4vAuccgFlJsuE9LdK9tOLfwQDj7hdbyU KNdPEIUzM3cPlybzqpLndBEP3lU8AXKQ2jUTg3hoRYEuMnUw+YaeOhlnepdRpYIaYpbuN8p9bITt aMYkYfVrpgjzqhGE9lpmTA9avWZyUJ86NdLVeNtZD0EOWj8NPahXjSBeYgWumbi+NXhz2ATIotSy mThKgBqJVpE/ZyFLq9dMFOpTowbyLHvO5GD1a6YH86oRZM2XHmdMElHDZqKs5cprhSx+MHilZQIk IbVrJgfxqJEiHxbMlx65obmvZmHtRFXPJGIrwfW2F4XuRWCFc1ZdsorNZJG+NcrscVp8AkQpzgdX 2SSOm0gRzVljsfppyRHVW00cp/EymTdJWA11RGGeNbIknn1+9fPgW14nQBZRw2ayCM8aWWbfvWnr 3Wg6N6k759ZDatdMDeJRJ0U6Z+1LaqchRVrXub/dzZgSv901E+K3uxodNn/Mebab1K6ZEsSjs5Nb jdxw60YeNojjR7i7VSZXv9vk9uvfPr/+9Hfz10+f3pi3H958/venr3cfPyj36ShxJwAMpVczMtSn E5pydLaSGJ0m9hX9GxYZr6zzHNXH2OM5ZO06rOySzc8LKEuEUZTO6uKk4sQgNdFDggsUaTGsBW7b V9EQ+pvvto1vaxGwm2g3fDSEbt3Y3hA+2bTeSt4QI1to92Y0hH7AtuX7O8Ro3/3REL605wMODR5h +yodGgz5ocFQWY0LnOApTkWVDkXNR1oRaqnkpFb6k1MzhXPkp5QIUk5QI/3pkiyNUcJdY7RuQmqK gFYW1l4g0hiDdQFzuDPfB8BPORkEqcTBf+FGP+2wdMTt4Juu2CX9dD8cq+rLSp/+FxFyoh/HdxAq 3bh7XT9uPojfF02DGulPe1+sKULrYUtNjJ2CdzBPY5RWodMUg3O32AYYJak1+M7L2bAHJ0O5WQo3 /ulApkd8tWHHSWSDGD7lZKhQjbvxj9nS3Lojt7wX1h05jPT3hnXHTnwUIO3Aqjs+PTSsf2epR/wW BdYdO32I96h7R0vpjq+2lGSwbIIR2lM120QKOrFJOcmvgMODt94CWk+FFvbKaOH8jhWMHmHaEOB6 ZLgQruCFcmGI14DX0eG1rsC1ztGKMlLWwkhCDJ64OvQdib2B6rpxIKfEqWX//FM/rtklTj0fe2WF oevvmlWvaPXcPNd1+lwTtnusel4B2u6elRLpKBqVhNQ2FIrbRkEReuXBVhqbm2BeuXyRrM42gyMv Ms9ztZ3pzuiiVoPjO1g7iOmM6xFOGB6ZIbBndNMLtKOgvkkkLTc4d6bBeGdwbBw6dCQ2PD41DY69 obxT0ianToI2blJ3ObWc85vz6+9WvQxRFQNl/jDpffyCuIVHSzxWcGuJYSmePEATx55aPr46O3uU V+6BQYFBNQzKmUzDoRQnEaKRRe3hh0qAPYE9u9nTVs/11FjTLg73lGPhq4ubc+BM4Mwn5EzGY23M yQJo+NMC5gTmfErmtFo502ofYPVNhRCnkb8dDMIX+PsJ+ZswWAtnEt9GtnSD7PxsDawJrPmErCmY rIU9RYhmFsXnlz9N6dpN4NDpcSjjsTYGZQE0/PkoW7CAOYE5dcyJNZxJwWx5Cn2nVM5vbm4a+dsL bs6ggwAc/oQczlisRfoy/0bmRPbgK2uANYE1u1mTMFgLYxLfRrYMLBenyeBLDYE1gTW7WVMwWQt7 ihBtLHoJPPpd8Oivl+bb219++5v5/vaft+9fnZwfnG8vuxn3splzYcD1nTDtoRi0dagU9Bxwtaey zLDdyN2hGwXWEg2+VgVYHFi8mzkll7XIYBmkkUvxArYJAoc+JYdSDmuRn9Rbw5k3wJjAmE/JmDet fNk8i4oXoNGBLZ+ULXXKnLOlRo9HPsxSAV8+JV8SDmvpZVLvRs5Mr5x7azP4ZjVgTmDObuYUTNbC nyJEI4tukHVzYV/fwEgImPQJmTRnsxY2zcNoGHXhwpwpMOmTMilhsVYGJf5l5sSkPsCTwJOPz5OE s5r4kLNqzoQpXNt7fPilsjMmL0JJi77XA7ajEJcspwvfCgffZ7MjHe6ai6yWhJS8nV49k3h0upZy YL8mttTWIAI4lhtEg990flSC8qLsR1EljaciqciCf5qJ6lnOWI+xtJODFmQ/guYpPBU5WQb0R0NK NNqrUB2EQMm+pJQpPBkpaQb0p5mUy8R1j6Ols5LsR8wiiaeiJs+B/TbT04+WYz1j3E4LWhBOis5g e1B8p1yeChRWCPrTDElioePgcFqQ/Rg8T+GpSMkyoD/NpMQh6VEeBS1ZSfYjZpHEU1GT58B+NfRM rbFe+e6gBSnIntSUKTwZMWkG9KeZlPdWMtZLou2EoAXZj5R5Ck9FSpYB/WkmpRUPvlzyUSlJyrEf IWUCT0VHmj75K1MxHXz1zxHMKExkhiCVt9+ICYI0v+8mhUu+jw+tyiXfaX7Jd3o/pbXdvcj99V+3 5pe///b17cd/fTA/fPx69+7uzWv2juGoUNyrL2JRG/nT7WRuDGx6ZPCzwE4O4Xaw2j2CFjeVFrSN VSSIjTajbf6GeLYcPogvUMjwYhwUJv3SCKW1AgYhGnPKoVihwStaAMWOUBBaV6EgTjkU68WjQcHe wHom38D6xy9vzbsPX76+fv/efPP29p/G+TPxHhbJsvT8VcYdAMkOJAmZqkhSykkk/Xjwy+7QqHaE gtC6CgVxyqEIrBjemzrlZBB0Em8PCTf6aX01qStu+6tHnbHVN4+Iy/CDktWWU9htKyjZsY3R0zWt o+aC/IBf3lioW0F/ws2DZ1NAdO0KB6V2DQ/qWADyaM0B0OhCo940ioYRouE7DOZDIkqFiihnTuy3 XYm0R+3QIR2RSyoELx5fgZCmcQQDfl1A+T4O41m86Ddxpw08FQ4VhdexDKleuTWzkVbfwNkqW+wQ Gu8W2PyWoWStZ/fGOK2tqymGg3YMbmYp0j7X01woN125Sb+SUVbOVoSXiWEXIPqEpmlHO6cdsbSl 2LDpvtTBy5ugbXdUJYLeNZ7izhKWDQqzR+iPsmSe/lHvf959+O1XdmXNqLRktVMIye28zprG0BLF jkIPLQdE5LsJB0REYeomSRZrX5tqi6t9Zbw1Usvryi3x/MheD4gWELokDwMixlaC9W94tURMLOS8 GBLP/Za5eAgOCRFSG+3STEtE+srYkHhcVwkpAV3zjTrJv6HFzokTD97h1zmDokjYODrcInQck3T5 77FPwRA6KUDxgqOgTYw1RKDE3i04yg8sbx6hiwM7Dh6ZKWQ3SOw42OT9n/tHGMwCWo+L1v2ijNb9 Ikdr8JX/gNaTobWtoJXfiL+FvVdHh9a2svdqm/fxLGvwZUQFXCSRI5jH25X8r1+/Md98/PXT66/m ezLC/J9RESEkUzoU1EaJqOl9NAZum5RpjuCg4i15Cz9Ch6XWXa32Z0kuE2SMEbkAqzM11EYpJiBa rNOkMJ0y60DI2L6VH+W+lQ+//OPrZ+P8R4OnLPe15P7U23z3+fb2ly959WnoPLgiqJvif/jy6y+/ fTHOaAY4OL5J/kmPSHNeEIwjeCd3Nu0o0Q78OyNH2tnzzqhW5uiHW52x0yzUT8l019lKHLXZcNdg +Jr7BPCn1dPRIyiWum30GFs/NJL+0K16V5je3H35wi8/f3U2KmoUBQUpZqU/OUqR5x3pZJvoIt39 8ubLxbg0IzQRNOP1Xdj44hQFS8sm/Ec8JfEeY2sN7D1vB6O0oYZYyCDC1S6DNAY2ve3qfrcY8epB YuzF2fxkOalUicHpT2ClK1L3zLeK606WYTb1+msowGsmiEAsPKYXUwKcOmhj4sDy/ed4QOw48h/I kGczPDIxXF8Njh5GAbKGFT1xl4NLTuNmtOh7xMbZYlDs+8DEq2Q7OO63JH2Oj6qFthbZTZIo0XaY W6MSH9NKULoaHjvbDo7rhql+4bQ7dqqdqOiMmyb6NfDWyEs3NS3HSVreOGyN70eWY+K0ZWzULQ8u tsH58NhWamlX8btj+xfD42K0R8ZDS00lCQGMyZKh8e2IrtUPQ4zHDzEpv3bhvTMBn/JMPiHDOqCP MJaKt+bKstdPv3HmYF133lWv993pr0nEZqidKGiNiWKt5GmNRzdDDIpId8UOiujZoX4rTHtZ0TK0 BkZ9wK6e2dsp27Z1pz3TyF6TwIPitm2MbI24dUOkVX/dMfei1ECOIPH2yTbAWr3ZGi+iO0mHchOi lwgPi7px81cGfBTGSWQf7XGx93cfPn3++Obdl1FFZE4VlYjEMdsqXrmpVRLtmFTbvuIdk2o/X7Br Yup5g8B/gFnL0Yc7hOrKPAy1kT8dvI2B21YlmyNQTAToob15rJm8HfbYOc5IO8sH3yPN9pzZdJHj lP7Mht0I3gpDUFtoJy8u7RdnZyavr46VWmLmzIQf7UoSYKYpMBNWb0ehNvKn5Z+mwDnPcQZKrEdQ QSRoesAdvFWcjxc+Qm0FEWpDnkk++bV0i3DwlWrH3Bwn0roo+RV8mJXeyU6+ujbWEoX3EgSwRISa fnS/f1vjsvdQ3b8jxk5QWIBBqMCccnctgB3xzJhweA5jsBg+wqvJy/KGorsPt1/5fiUliBIn3tb3 IN1+/fLrL/+LRBKxSCRSRE24N5///enrR7HJqRRa4SZawfLhjCC2lm4HR/lowdyRHYUbOiO5cZO0 6cmNSe9KYsQRfMLJ4Fxpx6tqYE5o6kRpo51q1kQh7W/HGGlihamt7RdoYlFe2DFGyyBbEyX5tmOE DO+ahZ086I8DauKgSNsLV2N40sp+O2YGWiJSfh8QTb/1rK2Q4bAy9gW3Gq0fFzGQIqJbMP0zXXtI LOyma7foPMW+hVeq+XQRjHVR8phiKK+bMJrEWCYC6WwNPk5y9BUndZMVJ8bieaMljIS/o5EwwVvt dxNbGtjnN/blmVaQaGOYrIu3c6zySBqniWs9xpVLIiHCV8dMfVbGEmW4iyy9pMomuXqcDf1inffq sugks6XzcjeZ5tfdf512N5RUURCeGelPx6qbLgpbwOoXRWxJZfTdKZfWpd7GKK3ryo0x2haOGiO0 LgU316Nleb25Fshv6a81xUjTyNd3QxtjuEmA9McZNBWhDXS3KJG9dndkLhKlV/UZ0ytIEsFAmthO eSUujrLE1veoGzkgztduNy62HuGemKV11CKb1rK0lk2s1E1HNSU8k+/ybRKbetjFxfb3g2csK5MU n97ccdFO581gAbPlWDKq4kjPJtO5Rlq5F+VIdX1ntwWgqq9XKquhqZRvn6v7V8HqSqOpILum0VSO EnsNKcROCVRKoDuivWM5hibTUJraPSkDizMonUp5aocedyzHzvEr+dcGXzvmX4pv2zT9k4/GSYxi IhYCK7FXr4iMSVEWxElknPzL8kka/0pcJwsdK0xPHNf2MXEJXZy6zom7Jf2AkDoQ3Y7s9ITESqP0 IXYxEVH/Ip0jjMKl6nryrzhiN2edsP3ZxI5Cn8nrf9kWTk++ZZZPonpelARWyjIIMYpoHhYxlARf LuHUKlasDXJP+hClQgq9OEUx6TCREhmqKJVxqH5d+tGCdCRJYV3fI6EIbVzPTQhVTkjfzF6fLOij x1by8OqiSefQn6UbWhg/0K0YuKnF5v7ENzdHBj1Izlx/eH5qIUKg4CnrX/UXCxJVd3aWGtk/bbdb 4yQyhNHE7jdKoiR3SNzl84ZmKLzl9zmJl9fupXFzfW2gkHBTZqcM9gy7jtSIoXtPdKDUiJbiBlz8 qFxcaDHbEOKyIogoc9j1zrxwNrdsHrzZj1GjNtqQvt8yN6v1p6UnkXgoXmlTxqixQMWqGj3s1BrA sRoTLwLUe61lf9vpSCC26kcsqhjS9QG6DHfqsQ28PQOj2LSytIE6LRF2zcBLrOVOEfxot/Ch1cA4 LeFJo9w+7BRDXt3XM0bge2syZGsgE18RWPjRvYforLhnumFtLqAhFGYrB82pUelxfnEjv5rUymsX rUHkQkVjoAT9QVq86+eGE8tfnni4AQJthBiJCE3h8co616VF/C7YTzVuSUms5EUs3YqkLRmhkn6+ tLfXfRIrHuDqDqorn8dfkPK2tTkF1jl2yP9GD95rbkxS+NGTu02LZDJItmZHezUJMN/GRTYZwgp4 /EbPRbJsS92xW+K652dnZ23+27akUdgSNfBbPEPclm6Ily1x47Zc49BqSzltK1TS5rkN2tL1t2lL 3G+4xdMS+BjFyMw28kGRdvjlNyj00qDKXFi4prfLIYhAu+pIJMC1VfpSAHrNb1MAcXdoJW2EI4/I G+fn6+sz8TEXgVVrj03h/ChaZ3GvJJvW1JvCJaTz0ivBpoM7TeHyXQA9gjatxfOdM3x63YqyOsJq ANJrbIuPV269c8UDhCg1AwvV8Sm8ceMiAvOnPybpbNekVeHLp6eak2cBSN98XT+nw/ypl6y8xpfX XJe2ZdstBbfsZqIwT1tczaz1b+D2wpeod7uJo4oQbrhBSRQGraR1N9xb67+tL9WovqglbTL+aavf H1adzwvfdbpKXKumI9UAiWW3wt5w83XZt4W89GaEyG5JPUC1nSOFZ5jGKQpqYqEIQFU4W6bQBkii FrrTwajeN7FCJwpaEtctXBQh8CpLnehe02h5kPphc8WzoX+h+N6j1K4PVZQAD6FdO72vemOb4FOX feUg9ZW2wr8dHuqrlYgsREOXU2zNe9GMG6UIHaFFolnrgtAb3bTxibJrWg9UArBbCLWJU2/sIw3y LAgTCCvCQT4Tmbpg62jxhz4RPu7TeLbJaxYgtpL63ILinTS3W+EZtVLXR/XhSuGNF1lL2vSdh7bE UwuvGycwiiCcbZp8H7C5dEM3QRr2If50hkvvSQQGv79Bl3cS1G8byKM3L7VK7404Ha7zbThAW3ji +l1GiudKI6jStNaJle5y/4XeWweT8G1uYdQzbslVyDSNr668GaEc7SU08xXzJcJa2z9iAQIdW+a+ tWF04c0mLlsSb0Fe8b9oS6EQx5oQxDVxa3175k96seZCpwqpp23Zq2a2Z75+hlNN5475a3mB+jqu Z2V+c+WpP+2daj01Y4TcX6sDmWcbzTbK9lmtimLdI318q4Gm4h0yh0QUH80uXR7OQ14kPpriiIDi tLE4aty0w6UpnLNI3GXPNL1YhO0Oykd4fQI23LHWFC6MGmYMG0P2LiNV4lnPqjfuh24KSBcn+iWp 2T/eGLQ/7omPgnpzEUFx7MqPLk3sRNjLv+w0Ry2xShjHFaPv9mBewxaqShBNY64G01CuGqqxgnQ+ eRHXBLlwNvnMc5Mvqksw7qx/ykz4L+uTOsKH1LdeW+EXuA6qLXRIv/qwh/qQPzPCfANVQzwyfq9J f+qRWE79qhHucW82TG9Lr2Z9wnxJt72mLZhHihvGg9TnTx815oRUIjdE5P6hhsjcdxk0UkRE1UaL zfrDf0qOcTNpcm+h8XX+SdBEc5mza9e7Iqp3aNen0NQ1ooYzb2q97DaKEP8wrk/GKP6BBFgbgvi3 JEG5p2HWRHqndkcRaIA8B30QTZss/MkAV/Rr9IHoKLQ1lbwZNAfJnFjfUmiI61NrJa+01gdoowcL 0E6P61MXx40XZ5cCyFxagrQiy4PIlSl9QijG9RktxZeOLTpoIgK100UE0tNm7T6cNizOFT5Euy2y 2riq8HcahYDwbBJ2YvuRxrkYVTV64yyOo4R6ix1M1VQijLZX4iPURHOI87OzS/O8pkaE9xqTZlET fhnth/I/s3lmTg2xkEG0IVBjv0ENgSMvJfqMdNXqd+w1hGtPq0EaqP6ptfDdeodBDdLc8SiFaOx0 0BAB/2tJIw+hTUP8NS6gqP5shqlpoKwGQisL16b3SgG08MgQeX9NG+JbFqX1/RxqCD098hCd9HBQ 0lSZTXAqxpYmPQZSJwcLwLbZSP+qN50i1nrieyvWp7wJzMZxLfda+vUZKu7TNNzlPnRYqcmpgSGE h9vQnxVeTYM07hUt/nDrSyrcj52o0fo0TdgWvpqSUEI2+2T8Fry6F9ts3JLkn1FISyk2WtaX5/ge TCJtG14eFb4rVF+zoV5RUhuyUuc4bFpZZO7sOc5qHHls3krsq3yxoDHEomFHU37oPnTcWkey8CQj gjCNauMIGeAb5tqk2be9VElr1nSatq4fct91/Z7L3C9N7PpQUfVt6Lyq3nFNnSu+vluDW/ENO9IO 2xNPo9qkS8m33ksseWftsbPGdXkrtejfCd9Xp/d3ghoXlLz5moXWnz4M25Z+jE4advaVA9iNm228 BfnfmDTx4Ud9NdHooZsGn/XCIRmS38ZEc98aA0pfHrPmhfMzMCtEr1lu3hpShAqirHk3RhGEnuDq SIUGOXGy+rn6hmC43uAqh3eWVhI6jXuOlEDI4ZOHrYHS9gLxb3siD7iRRGyzthUH9K8uUPPt3FYa BfVlGsVft8pXBFk0nJ5TfDNM2oxyJk0X0PU93cm1IhC6vrkWk53aII5LL+7IWhIJTZt07FoTIb2H 1jTWXcXorErDlG3hGbrbhjnVwj9u2vtT+MrZ4y6aE1s3zdOkoYNTeG+C+uWvqm9HMYhqt5t2NxTn skL6TlFXGij2TS8LbQ0n8q5IS3Tei2lYiSsFaZD+uX8Y17tYuScbk3pLepBAF58EaVgvpz5MzpqN 5Ze+dtPxe5ZqvYdAnZs2bDB3LlV0qRHJ1+RVXpQPGkZMUgM7aOOgS51+DiKnxfcbiZw0tDnpn7Un nuWpIynR8rN2tkFd6ptAGo+9uOHG+PUfb28/mW8+fXr1Iz17dPujYTSe5djSYy9uQIbEyck9Slcn dhzTm4Q/vvn4+RaOeoxxYImqJ7vhbRhF82xtN6ZndEgQLf6sIFifiJxT0ieB7+lGIW0CRAjSmTpc PTS7URlKutoOT0Y9+UqT+z+/vX77+e7NfxnGr6//cfvxl/9+e/f50+fbd3f/80qGNwx6C8Td+9vP 5qfXX//+qpZOfoKWtBy6Ze6lPsQChYbx/u6Xz68//7tHai0pEV/DIOV99/Hzr6+/9iwZqcq796// 9uXVjwprfrzQNSrSSD/dfn7/ghS4PW2HdrbpmcTTF8/Pzl6cXRrG3z5/fPfO/OXuQ1fRGEl46Hcf P3TWBK+sxD1dJpHnmR5pFTLu119fv+kXNyW60TDe3n75SrBuDm0Ydx++fH39/v2rH9Uze2kU+YQD 6dMXtHmsKH06ciS1a2eHFt+lFbj4pUgjD1okySi3Kwu8LPEDIdrf7z7cvmKVpodHDS5UXlEN4PoG qWfedGSTESfCjf8ymGDXNZumZpbHZVnRtkUa3p6p0CLyh3dt2zMpJyrWVZrGwrqUhpUMEIhHYK1Q fDNXPHS5lIYEOdJs244wsG3V8nVBR6Rmy8iOuKKADJ6Ch9BNxStrdMuuMG5FSZZb8fqJR7sBdm5x vdzoWUTx5LYlKnziOM7N2C+MaRGEDH4Lcxbm5o0va4zia+9eGrlmyW3SHefGP6IHbqDM4WFhlvX2 JaEIb7ErGXNbYK8sFOZPFmSi2oGgZyCTChCSV9TLIHRNXd5gLioT2yIpQtsl6WmvyrZTiy6vVdwW sVd1UZDNHW2CQlRxo/dFVJ3omnDFzUtIYzUT17ceKj6ryK/mgzzLrrqt+VariqsfoIqLptZR6F4E VljNPOcS1SWq5h3HaUy62hXXxLPPr34+q7g2FjN1q5HTtFqU3+4qDps/qjAFpPMtnCRPhDlIgRMI U5p7Zr6fm++lifYqLNEixPMY/NZp4YYFL2AkPPBafGnXSDGSEUagWp0EbSTwqsup5ZzfnF83efj4 6uzsrMHHlsCWXfHVxc15o4fV4OrgprBukJ2frRt98PnlT9tGD9zg6gU3Z03JIHvV4BpYpJ+dRHqf yyavxoxDNwqsJbIbvPCikdB4cdPo2phE5DeVMr1y7q2N2+CzQdbNhX1905TxhijSUhVwzkKpTIsP EUuW0wWRweuyk2O5QRSW3TzLcSsuKKm4kJbrVqL50TIquyS5BM7nwUKiPStOqZWUXe6tJC67WLFo E6lg4FQ0q/RepJZK/ZYtZbmyFRJUycjYW5j8WIiRLLBi2UiJGedGMtgMpFk6hkjSKMMLabCtMJQt c0M0jIi1ESE3saDGRoS5FzHvRWPYyi6EJRjGwsoD8YXptMHKHsNmTuxBaG6ijw4zk/Sjr4wyg3hx lOtW9uyZ1IuqrKKPtAi1J/QofXSBizGpYdi97dwkL/rmNnZfNDc2306q2umlnYJfl9LA7xTkFnqV HqedK2XQvci26HDZrcOI0mD1+Ibp5buTSkN23TVK7ePqY6xjddOiuNUph7C4nZjtHsrdn9s/+I5B 7/ag933krmviWNiiH0hLx27quB4uBwLOmABncOTo8y6A1lTQOucN8+QXNqdBtxAZlRYa5bhWG65M ITIUOc5GyoD/8eOvl+MUwiY5Tt3rcpy55nKc2epyXAYCzpgAZ4Acnx5abXKcN76aHM8bbk2OL0GC TwH5Zgm+lLKb7rkmNmjGMwKT3mJCDyYApPOBdEPPyQGg8wEUIwyAzglQy0cA6KwApfcmAqDzARTd nMN4dRqIMri88jzSUswgkW9kFN1cbqb9I26iipWbqEQWJtKURRzKA5FMvzwHtYTZp6nwB8w+TQ8t 3ezTsjrvtNTMOK1g7XcKaDdr45X61BK1kT9ovjMDlB8/UZX2Sizfr5h6FiHKancFi/dT4QRQu9ND S6d2V9Vl+5VmwT5IAO0JoN0spYNEldLERv7E3b2A6qxQBUBnBih/8EXtTBGQWWeKfJmNheAm1qTL /SoeGphiAkwB/arpoaXrV9FmV+pXiVZb61eFAPYEwG6W16EqrkN6dyu98R4AnRWgRL3aVgKLgDPE FZbqZwdqdeqRy2SqeblJuMhGXVhRbq7NTeZpALNMgFmgFz09tDS9aNHw1H500Z5rPenM/SGNMntl mKZ4bXJFSGCyK8kYL7DEHeCJ4+aJSLwVqoUR4Dtm+HTaOnMVdZ3hBdPX9GLoirImTlJbE2NND3Nv 4IMJ8AEo4umh1aKIacuramLRWAtVzCW2uK5iCQp5DrwBCnnS8GkUMmmdikKmNtKgF8uaQqZOQiFT Y1UhC2/ggwnwASjk6aGlV8is5VUUsmysGoXMLyAE8I8f/GaRzfArrtsQDoRDdgv+8vzi8qVxbyUh KfhL4/eFszQdnJohvfz1mUE4hxTWMRZZaoRRamTYdXbN4er6oppDYG1Nek+iLodC64hUKCMLY0nr FN7AyhNgZdA600NLo3Vky1O1jtJYqzOy9PpiwPz4MW+U7QQ8ZXxAbTZ91EgR09ROYaffkoAWHoD9 BLAH6Tw9tDTSmTU7VTTLBlqTy/w2eQD8+AFvFs0MPyGdEY683Il/xKOpAPBsAZav0QLEs4WYv0gM AM8W4CRB0ILnDHCWIrh+b84Ay/fcAeL5QhxyhJVZD+bBJz6U3rb0kF2z3M70eG5jQj+3MQmR2wQ7 FXaWd3lmJc8ceG4CPAeTK9NDSze5IlpeaX6lEAW1KRb6SB+AfvygN6sFgp5QCsxIf0xvgeEQ2NxA pUvetmWvYKg9N2Rj7LgbQHVmqNIH7AHUmYG6ccMMhtGzQxVmR2YJa31GhDjz+ZC8m8wdld6VcOBK WViYLBdmLgKkJZ8IKTIsT4OIHIG1JsBaMAkyPbR0kyCs3ZWmQGTbr02AZLDRfAp4Nwv+psO6dv2w rl0c1rUbDuvacFh3MnwAUnp6aOnPBtkNh3Xt2mFdLqkdG07pzoAp4JTupOHTaGLHVl4vIo3Ysas6 mLgIFUxMVQ3MPQH+CcAPCnh6aOkVMG14Ff0rGmrz0VwnC4KH0E1zVYxi7x4U8RSZg4BNsNNACNAd M3Q6JSwaZ3HQGVEbik3pU1LKuSPTy0qgknZWQwFrTIA1QEFPDy2Ngi7anqqjS+22UNNUjHMl7Tku 7kT/5O27t7df3gAXHL6OGnHOYBSynGRre9KJ/fZetwSgj6aOA4GurWQyd9b8S6wQGWqEkhbPYwC3 TIhbeqtyQO1o6tih0kVDVPV50ZqrU97eNoY57xnwBMx5Txo+ndrexsrqM7UhzySf6sw3dRJT39RY nfsW3sAHE+ADGFtPDy395DdreZXZb9lYm6e/l1vQxzNgDdDHk4ZPo4+XW0UdEwtpzcttVRkTF6GL iamqirkncMAEOAA08fTQ0mti2vAqilg01GY9TJepUfccN4B/+DpqhLVAULmTWbjU9g0hXOwcouba 3iHUb2YTmOHwddxFbgNcB69jj/1DqDqbqTbZ6nwm8XO9H5Z/opikHWoFg+udut7zK+MvBv08X/4J vDIFXmmBsyTlCagVGU9chIQnpqp8557AAlNgAZDuE4RLL91p06vIdtFUGyS7Z5FSdC9Ufnj3+u7r 31+dAQccvo56mc3ALItt5lRb22COcnWDWWrrGzII8Ma0eGOH3QcA3PHUsce6B2+R1ZWPvCk3CPcl 8mCibQLQ6+Q5wa8szYmD7j0ubfCX52fXymtZKEQpsnz0p5WSQhheEgXEzY6CmDhQdhO1MWjtds7q /MVYWRl3JMUstFnSvy9pJye0rdheufb62ctdU7u8uFIKTnEz6HjYShxsUACRh9wE8yrkpbaSpZs+ UuFRZKf+7uV+cVF6Cc3B6TMjQMtVaixc9vCZkYU5DMSGQiNdIZxnvmd+JOKO+YE4mok44odUwl1E UilKawO+6tsSyklenp3v1YqBOWfEnNekmte7sqcSqZVBr3dhUDXRy7MXe7FoeVkc5VNw1EjcwtzA M6ytlaN+83LA6YeuIyyWTxGtlsVyVJ+Wk+23YegWxzHMxk4Bd50WIACWO9DEAWbY54Qp9ulQNnFx n2tIAdeD17EvrgvsmBRZQHVOqBKbSZSsb6V9buMHYA9ex77A/umjBSA6J0RpU03Th+qqJe1AidEu NUaGDEd61YUqjoxcfvMQstFHBuOU6ohYpAr8MwX+gZ0qE4RLPyZmba8yJpatvGFMjP3uNe27D7df AfzD11Ev67FfHhfjHs+YAq7HUseeuJbGxiUtTuAWShz7Fc1d0cw8JLDGdFhjh71HANpx1LFbSdNm WNHRog03qegUdhxNAXStEE8r2z6IQ8v6aXPwl+eXPz/6NqDDZ1VeDyZuJIq7IYzdshasK/VPN0qp Y4tBbFjJ0rgyIs/4nS00m1ZKmGll0jyfPXVd+u2e0qR28eLs8Ra1aZKyh5DWV7CFN0iZCUgZWMGe HlotHYG0voItG2tDVyC1ulewAfZD11HfFSD4lWU9cagO5qiTkNXUWJXVwhvYYAJsALJ6emjpZTVr eRVZLRtrk6zOundmA+4Hr2OLsM7CirDOwpqwJk5SWBNjTVhzb+CDKfABLIRNEK4WcU3bXlVci+ba IK43vtUpr0/efvjn+9cf4HTnMdRRL7gplGXJTV2qopu5CdnNzFXhLQMAV0yKK3Y5rA24HUsdu+U5 b44VgZ434ppEj6+9+x5LZp/+ef3u7vPtv16/fw9scPg66oQ6RbN2ACy+Nr37slin4cQrXsyzLNOl L/DF9Phil3VwAO+o6tgl23mzLEn2vB3X5bqHfFKWPlzw7u7919vP5vt//FqyfvwbIalGzPDEhaSx o5CQaJE7T5eXBtZ3Rhw4pP75YfjA99YmivttqgO2A7Z7HLZDsRlaKTAdMN24TOcl1hK4DrhuXK4j 1exzjBDYDtjuMdmOlGb7AGwHbDcu21kZu0IWuA64bkSu8yPo2AHTjT2cQDBxAkw3JtNxjlOXhfjh qnwejzqxuRVmYONdZuJjEGbk/UJmZLqamaj85FEQTYT9lleY+p6vBGYHZh+2tgWMA4zTc12teso0 1pwxjfttlYA11eOpo15DVvZJsB7Yvfa8qTZ85TgjDWh2Hs7Up3Zx9rN6y3kWsovNN6T2jF9/9+z4 WUlj5/s4GrZx9N/FASx7PHXcWc8BdMdSx05NU9/Aodu/gXsoG0D84HXU6RdciHj6uDi3s9/yiAvn ApyZygIc95TgwAcHryMcYpwiWjo5jeuCGusk9R/RQ8cDtSQE/Xt+Y7DQz2/6PFALTHLoOmpEO0WT C3aELYarKtCpnXIJ/ZaEufAA3CeAO4jy6aGlEeWs2amCXDbQqhhfk4J7GACfAOCNYpnjJyQzydf2 cjf+MTcejuI+7yUAxoeu43CMQw5xoZC5B2vyZT6IjFKckrIuIgGzTIBZQF9PDy2NvpYtT1XZShOu ae0MXk6cAubN4jxzlSmyDC/oFQTEsXoDAXUSFxBQY/X+AeENfDABPgBJPT209FcNsJZXuWlANtaq pPaX7g9plNkrwzQDhBYZNleECKbjyseuWPIOcMVxc0VkcPS0MAJ8xwyfRhWT1qmoYmojTZl8qqqY OglVTI1VVSy8gQ8mwAegiqeHll4Vs5ZXUcWysRaqmEtsoZDRAtlRuAH4JwB/s9AWCArJTax0pHzK 3KBZzxNXc+v3ueoAwD14HW2DA0Z/3IQkZCKv1J2SMPMOFTNFhgJy1JRAqcelpgAcMQGOgD7X9NDS 9LmKtqf2ukptujYFghaBvbJQ933ngP6h66hXzRxCoZuZYsbZIjG5c1XAC1fGDUqoqhQvggFrTIA1 QIxPDy29GJeNryLH1aZbE+Rhtu3Y9MnC8F+28VOYYOvnNJimBVOx+fPy5loF2XSyIOhxQQ6ge/A6 9kCXP3VYwhdFdtrjggbA9+B1HIhvbAO680C3JpsDy17BCuVs8G1ovQFaALqzRRejZWiB8p0xwJG9 dmFdY8YAP2DoPs8G4FoHiwQkGAK884V348LwaCbwNojnDDnn1wJfgPi4Id69+S7d0ML4IYAGfPzo DmzAHvJ7PAoA8B68jsPgXbqpfe8AwLMFmJ5mBnhnCy+9MBmuHpgvvlna5/J2gPfgddxt9IuCpWWn Jt+7Yf+AV8Zf+ZavvEdNnCp97Ehu9jC5fSUHVVuDOLjBwielvyeFP7HjmBD9/cc3Hz/fAt8cNd8M GHT5kR0l7nPMdxkpLlFpiyDlLLrHqBzEUPeUSBvr40c5v7EeobTy3Qm5LbZzs1z7zO1ooZhxEVAs suRWPiWfW5kGy218Olex0uk/xUqni6SVCcfcwmYaIqPUtCr7IQVNQJwee7OAvZCTREu7F5I1vPI+ SCmfqnsgA2ieUwC8UW8FjnLYm1gCp7RvnVjZKzBOWS5zZ0B9AqiDUJ4eWhqhTFudKpFF46yJY7i7 chJYN8vj/FLDzOO2AO6rnC+utTsqA3G7XaDeThk0X00ZwL2Uk2EKUMPTQ0unhquXUgaaGykDhADt CaDdLLARUkdGxEb+oPnODFAzXj3Q09gA7JyAzdYEVoB0dpCa0FQng6u4EZRddAR4HT9ePduhe352 dgbSdW6obgHSmUEaYoB0ZpAGPkA6M0hTgHRukCYA6dwgtQKAdGaQxiFAOjNIQ7wETGeGaRxagOnM MF0k0E7nhukWekhzgxRBD2lukPrbFDCdGabfYJ53bpBaNkA6M0gdAamy0Zetj/O9vgjxB9ny3UiR wbewiK8pHIs19cjIF2KJccu/fMmHBPP5NxXfRHz5NFZk8MJEBp8DofGW0sHiBtFFj4ytiIJEUKFB IuObyIvzanlbcl4z4OAJcDDsTJ4eWrqdyaLllTYnF3Kmtj/Z3wLmE8C8Wcf4W1XHEBv5g0Y8M0BN B+E1oDo3VGMblTuDPj9ZT7/MxkJwE+OAcgfLhzsxpsIU0LuaHlq63pVfuRFDttpavwo7ERzBngLe zSKbwieENjN7WH5NeE97vtg6bhg5cHPuTNH14K30uULrR9E6gxe9Zoou3H0ya3TrN6BQHz4aVjtd kVHR04UDFe2FTUiDwqG4RqWUZ3lILTMFLpsAl8Ggenpo6QbVvOGVhtW5AKgOrEM7BsQngHijFiDg CR0Quim1kD8q2kNoxjMDlV4XDaDODFTyB5jODFO4TmWGoNrJQwxTXXNDlXgCpjPDNPkGkM4MUj9a IhjQzA3V0C9PUdK+MJ2fyEewzImPe7iRhhCOfOt2oZm5mcpzbiJSgBs474j4fmWCUmQJjDUBxoLp yemhpZmeZM1OnZyUTb86NRnb4Q9plNkrwzTFMY0Vqb5Jn9vifMASdoAfjpsf5IZ5LYwA3zHDp9Hq pHUKrR7b6BR5JnEoaXThRFu2MJa0b+ENPDABHgAFPD20NApYtjxVByuNtVDDXFqLdUI3XSZWvCrb Ti38ENq5lpbOA/Q0pyMwz8HrGOXgtgAKQB4/kLrReKnpChXOx+bcPVyazKs8PJeObIwuLeXhtBIE mGQyTNJbsQNmR1LHrvF13g5Lg2y1ARcqXqPWF7EHSn1GLANKfSZAdil10nCbVTrxAJhnCzN1MD3k kyyr3TYKvOi0UWNkKEGr/TcRFthkMmwCvbepYqbvvbFWWOm7yVbc3XNLkLN0ofM2I46BzttMgOzU 6qztavpvzK+m3Lmr1O/cVtPqeSDglMlwCij2qWLWothFQ6zq9qIRd6p3G2E7Au0+I7YB7T4TILu0 O2u6zcqdeVV1O3cUqp1bqpo9DwJMMhkmAcU+Vcz0il20w4peLxpwp1p37RVo9TnxDGj1mQDZpdVp y21W6tSnqtOZm1DpzFzV6DIA8Mdk+AMU+lQx0yt03gwr+jxvvN3qPF25CejzGbEM6POZANmpz2nT 1Sh06lXT6MxRqnRmqel0GQSYZDJMAkp9qpi1KHXeDqtaPW/AnWrdS6zANRPXtx5Auc+IdUC5zwTI LuWuNOBmFa8EqCp61Uuoe9WpqvQrwYGFJsNCoPqniple9ZdaY6UDUG3Ynd2AVeTDBrs58Q/o/5kA 2aX/acttVvzUp6rxmZtQ9cxc1fEyAPDHZPgDlPtUMdMrd94MK1o9b7yd6hx5lg36fE4sA/p8JkB2 6XPWdJsVOvOqanTuKFQ6t1R1eh4EmGQyTAJKfaqY6ZW6aIcVrV404E61vqZXh7opKPYZsQ0o9pkA 2aXYReNtVu3Cs6rcpbNQ79JaVfBKMGCXybALqPipYqZX8XlLrCh5tSF3qnk/QKDiZ8Q2oOJnAmSX iicNt1m9E4+qaqdOQq1TY1WlC29gjcmwBqjzqWKmV+esFVZUuWy4nWo8dwZ+mAo/tIv33NB8m4mF XWj83wnYsZXgylS88M0vrqHswAQGD1tW8Epg4JjJcAyo+KliplPxeTssKXm1KdceF5dSIArdi8AK Ydv8nPgFhuozAbJLvcvW26zepW910J67CyWf26vDdzUg8MxkeAYU/FQx04/hi6ZYGciXGnPnaD6O Y9D0M2Ic0PQzAbJL05OGqxnDx3FVv1MnodqpsarVhTewxmRYAxT6VDHTK3TWCiu6XDbcPmo8gp3x c2IYUOQzAbKHIo80O+OZV4Myj1xFnUf1nfF5EGCSyTAJqPSpYtaq0qP6zviiAfdQ62m8TECxz4lt QLHPBMhuxc4ar061M8+6cufOuXrn1rqCz4MBu0yGXUDFTxWzNhUvWmJNyRcNuVPNJ559fvXzGaj5 GbEOqPmZANml5kXjbVbzwrOq5qWzUPPSWlXzSjBgl8mwC6j5qWKmV/N5S6yoebUhd6p5OOY+O84B LT8TILu0fNsp9+ZD7uUz7poj7nDCfYKcAgp+qpjpFbzmgPsu59tTFybq58Q0oNtnAmSXbicNt1mx E4+qVqdOQqVTY1WfC29gjcmwBijzqWKmV+asFVY0uWy43Wo8hbNvc2IXUOMzAbJTjaeaY2/Eo6bG 0/ywGzXW1HgKR9ymxRqgxqeKWYsaT+un22TD7VTjv92BFp8Rt4AWnwmQXVr8t7tmJf7bXVWHExeh wompqsG5J3DFZLgCFPhUMdMrcNoIK/pbNNpO9b35wwb9PSNmAf09EyC79DdpuM0KnHgAzLOF+RT7 dkQriXG1n0aBFx01aiQKoQha7baJsMAmk2ET6LdNFTN9v421wkrHTbbizp5bEMfQdZsTv0DXbSZA dul02nKb+27UB4CeKdB28hCn0WliX9E/gHneMBPNe17tobPmLbrozBwZlBNID4AGrvbRZWjgk8nw CXTSp4qZvpPOm2Gll563ZG033cNdPADoH7yOOsnuYdk585jNxMnGtuxVjxc6ANWD17E3qgsUAaBz AjSMHGii80L0m+/2ehkJQD14HftrUzfZAKKzQlQezQVM54NptsCA6KwQfcA2KT6gOitUNx6OYsB0 XpiGHFJl+tjDfOpYjFuZCx/wCKPoKXMb62IJo7gSwyhNZAgrlfHCKIUDtwquEhZWnPIENS8PMN0E mK73tDSgdfA6dk1I02ZXmowWcqH20OSyuCUjQGiR4QF7Q4AfDl7HyODoaWEE+I4ZPp3GX8qrMBx3 w2zIM8mHYLpj+JfnVxdnL417KwlJ2V8avxNXM9m6kf3MIAKBlNUxFllqhFFqZNh1lC6FSIJKD2Es afjCG/hsAnwGSn56aGmUvGx5qp5XGmuh6rlGEAo/cAKAfgLQNwt4gp4q4amV/pTHgNSBDQKpoTwc E17AARPgABDV00NLNx5j7a40IJONtDYiS2FP0CQAbxbQaTFJR430B6ZeZwprCKjOD1WcLRIAdWag opWFV4DqzFBl55bLQ59Urn+lpcWpQlwLC2vlwsyZQ1h4muVBUwqLWJPhHhg0TQ8t3aApra1ipbpl rMz3Ydg0CcibxTvDTwh4kq/t5W70A52ymeMLI+TZI1zfqkSceV8tb+HcUem3FTHLPTIRFdhlAuwC PbLpoaXrkbF2V+qRyUZc65Hdk/5Yfu+MHcO2oinyAwHYjpsBBOCOGTidlr4vplGokf7Accg5gooi O/UB1dmhCpDODFIY+s4TVlgcniGqYh5SmcS4lwtO98o5q0IB5xZpKuY27tU1qTzx8jzHPaw8TYaL YJ5jemjp5jnuaytP97WVJzIm5lMdcZSklg+oTwD1RknP8StPXQs3/oE+2veAcW2BgnuwVl/mg8go xSmp7CISMMsEmAWU9vTQ0iht2fJUta004eoCBSmZDVtGJgF7s0Rn+FUkOnfjHxMmQGcOcGDBYtSs AQ6jFFamZo1w4qMAwY2As8aY1C7NYPQ8b4xhg+7MEab5A8JzRhhmOb8DjOuznMyDz3IW42bpzsZY uYX1x3Ob6LvldqHnCzvf0q3Kj9xWzKSq5SrPpOYFA4acAEPCTOr00NLNpIqWV5pJLcREdSY18eEK yRkwBVwhOWn4NF2CRC56xjait0Emfkn7cxdxtyMxVa92TGApcyrwgwKeHlr6mx0Tv3axY1JdyFTv dcQeKOEZMAYo4UnDp1HC2CsrYexVlTBxEUqYmKpKmHsC/BOAH5Tw9NDSK2Ha8CpKWDRUjRJGGLTw DDgDtPCk4dNpYYQrahjhmh5GOFfECNc1MYIJ6anwAKji6aHVoooRrutiVJ2QLinjNQA/AeCbRfW6 IqnXNUG9zuX0ui6m1yClJwI/SOnpodUipdd1Ib1uXDTEtKqKkbR0eJdmCixg2T//ZCIPGuwk0LJX Vhi6PgA2FcCau0NSQopekXj+qXB2MMxMzBlfz1rD5ts5A8xMgPAkEPZc13ETUKlTwWtYi1xkHqkm QDxjiEXnGDCeMcZcWAPEs4fY9AI4R/wdwJxYcCfArHHGoUNPkgHGM8Z4Q7tegPAkEA7QFka704Fr WIOkqzoA8IwBZq24tImC6FmT+LDVWbmoF6kLRpEy0xUVYiBioclHzJDkcYiJrkOQaHS2WsYukqEd 9NzCunEi1eesMEzpR3w1mHy5iijt7FBKDJw6AU6FvR3TQ0uztyNveuruDlWCNO7vOHUStHGTusup 5ZzfnF/nm+VFSrBbfoqskzOCHkgA8JgBbO1TlBps0bsodTAQtkSAWg9DOLNOBjfWVHoRBHhlArwC Wn16aLVoddn6qopdabiFbhfivUmh+/jq7OwMNPoc2AY0+sQB7KXReYvVqHR68EKEqOt04c6UujDX tXoRCBhmAgwDan16aLWpddn8anpdabx9FLsdIFDqc2AaUOoTB7CPUiettUWhE9+aMqduVBbQb02J C09gjgkwByjw6aHVosBZ06sqb9lYeylufHVxcw66ew78Arp74gD20t2swbapbxagrsG5M1Pi3FjX 43kQ4JUJ8Aqo8umh1abKReurafOi4fZT6BZo8zmwDGjziQPYT5tbrarcAqS/F6TpHql6p80SPTaL 7qDkgRr6bRZ02ibCKNBpmx5arZ02q6nHZvXurjkYJl9mwSzQXZs4gH2UOGmtLUqc+NY0OHWjsoB+ a4pbeAJzTIA5QHFPD60Wxc2aXlVxy8baR3G7QXZ+tgblPQuGAeU9cQD7KG/RYlsUuAhRU+LSncoG aa4pcyUQMMwEGAYU+vTQalHoefOrKnW18fZS7Pj88qct6PU58A3o9YkD2EuvswbbptZZAIL3I6b1 0rgLDS8L7ZQU1/idOZ+biWM7z14+aj4vfr5+adxbSUhI+9L4ffvMCNBylRoL18gwkUAZ8UApsnz0 J7Gh0EhXCOclq3ZkeKqsH8ON9W5MHgSaxwSaB/RipodWWy9GtL5aJ6ZouP36MBg6MHNgmY4OjIox XtiA8XQxJvDpgQQAjxnAfp1UrOnt0WsxiHi/ubkBsL8TsHF9hhFj0SvHRLELdmjom8PDolPhEuiY Tw+t1o45buqVV58Wlb01occbuuZecHMGq4azYBuYXZw4gH10OWuvLRN1zL+mz7krlQ3cVFPleQBg kwmwCSjz6aHVosxF46uq86LR9pljQ/YK1PgcGAbU+MQB7KPGSWttUeLEt6bCqRt7PJ58a+pbeAJz TIA5QHlPD60W5c2aXlV1y8baR3EHFqleEoHyngPDgPKeOIB9lLdosS0KXISoKXHpTmWDNNeUuRII GGYCDAMKfXpotSj0vPlVlbraeHdQ7JePoNkFKd/+emm+vf3lt7+Z72//efv+1ck58NTh67ifzgdo jxjaHXoDl93dgUtdf+BS7RBcansEl326BMBPR81PvTsLgOMEcOzuRlxq+xGX/TsSsH12HmwDswMT B7BXf6B1t90ywzZA/V1AHTRsrAzEFq2AbaxkzFDv7cG2ysnwCMz9TA+ttk5b07bKQLetsqGrFrpR YC2RDf21OXAM9NcmDmAfJS6bbMv8jQxSU+e5B5UPuaWm0dVgwDUT4BpQ69NDq0WtF+2vqttLDbiP gscLeAF+HnwDZ5m/F4zhLPNkAezTgaMiuWUahnrXOm7Mkcl8aqh12KQ3cMgEOAQ6a9NDq6Wzxtte taNWNNgdDrfixQ301ebANtBX+14whr7aZAHs11e7ae2q3TT01G5ER63hBhLhCcwxAeaAbtr00Grt pt009dJuBnTSgCOmwBF9hLtuEYUL9/r6CXXjwr1h1UR4AnNMgDlAuE8PrVbh3rBWkjfWXLg3SfPI h6Oss2AT2PwwcQB7qWzSXFs2PlDvutKmjkwQUENdbQtv4JAJcAjo7emh1aa3WdurKe68wfbY4JBe OffWxgUdPgeWAR0+cQD76HDRYlvUuAhR0+TSncoGaa7pcyUQMMwEGAZU+vTQalHpefOranW18fZR 7Btk3VzY1zewfXEWrAOqfeIA9lHteZttUe55mJp6L3yojChsNRVfCgisMwHWASU/PbRalLzSAKtq vtyI+yn6hQsXRsyCdUDJTxzAfkqetNdWBU/8G5Q7deWKnZoalLoIAGwyATYBhT49tFoVOmt8dWUu G22rIidOoL/nwCk77Fu3nPOb82uAebowcwS1cJbA9vHV2dkZoD1htDmEekBVvO0AAdbTxZrA1wxk CWN8dXFzDjBPGGaGoBbOMtgWID1lpK1mIFWMHQytecIYE/iagVQxdoPs/GwNOE8YZwGhHtAS3vj8 8qctwD1huBmCWjhVsNkDmoD1dLFmAOrAVJFG9gpwni7OSAekirG4Nh9wni7OAkI9oA14XwLgkwf8 sgXSEuQYA9oTRhvjZiBVjOWNmwD0dIGWGLZAWrqSKfJBbU8YboqfBkoVZrEhHZCeLtICQj2gKt75 zkRAfLqI5yC2gVpGfeFCL23SiBMAdWDCTYqzwVl7k2IZY9hzNG2Q8x1HVSjLMN8AylNG+aYZyPLS FqjlCWPs5pMnDUACgMcMYOshD4Jo08EOfvajeqqDbQ0XXtUDHXCUYyLMAEc5poeW/ihH7RBHywW3 Yge4uj1Ybh9V9hfKDWhyk5K6iUXZ4VAsgMslUnUJrbS6IiffS3Oz+cydOrFTHvIXw0E5YMj7lLLb IRSSOJ2SFvdCBQgtMuhxTJLrI4Ojp4UR4Dtm+HT9jVTeAUVPjSLPJA6lDoZwovJLGEt9jMIbeGAC PADdjOmhpelmyJan9jSUxlp0Nri0Fsr4Adski5LldOFb4bqLIU7umuWHmgah93QZp28FZ8RfPSrM fk1sVcedqjtlN9VeUhCVgMBm3x+b9VY6AP5cwdfosJJwUBVZVbzUng8QFHMsN4jCPfmKJzJnxipq OCPO6lNj/mnQXyUPNoGqOpQ0WDUocNv3yG2PpcQA/gnDr1FjZQmh6rGamNEpMs9y3D05iyYxZ76S 9ZsRV3XXl/40qC/FmXKVYi2prnIw4K/vjb8eS2kB9BOFXqOwVLmgqquKWNEqK5TsraxIEs0cFbuU hsjeB06R+D5wFsXoEtM0M/rTJKYLZyamC2tZTJeCfU+UfTQBNb1K65qmwgulpllmJV3TXCauu+98 CEtjzuI+r+CM5H2PCrPfBimlulPeUu0lOVUJCGz2/bHZYwlsAH+y4GsUV0k4qJqrKl50qsuPltGe XEWT4DTvDDZbxtuFBjPizW6a0J8G7ac4U+5UrCXdVw4GfAp8elgFCiz0nbOQRg2rckrVwhUxp1PC iYX2HT7SJJ5sLC4TH2Vqh2VGfxrUhuJM6alYS2qjHOx7ouxjCboJVlrTNFVeUJtmhZV0TROH1nrf aVeWxpyHXXkFZyTve1SY/TZIKdWd8ZZir5wVLAUENvv+2OyxBDaAP1nwtScaFeFQPtlYES861ZVa yb5cRZKYNVOJ+s2Ip7rrS3+atFbhzLiqsJZ1VikY8Nf3xl+PprAA+mlCr1NXilwoaauKWNEoq3sr iffkKJrEk41ZZeKjTIGwzOhPg5hWnCk9FWtJTJeDfU+UfSwBNcFKa5qmygtq06ywkq5pWnGwJylJ CnMW9aJ6M5L0ndUlfw2yqXCl/FTYSpKpFAgY6/tirMcSzgD8JIHXKChFJKj6qSxOquopRXCdxgSA b+TzFJXvv0lR9fob4iJuvyGm6uU33BPgnwD8cPfN9NDS331DG17l6hvRUGvS2Yf752bAEnD/3KTh 06lfv6J+/Zr69XP169fVrw/qdyLwg/qdHlot6tevq1+/5eK59L5769Lbr/+6Nb/8/bevbz/+64P5 4ePXu3d3b15/vfv4AXji8HXUCfB7eYEovaec2sgfYZu70PAQ4RdRYcfwkijYKYmXlz+9/OGvqtvG Sp6vXl5cXb6kE8YhqeFL43dCgMxOjQWKnhmUSqwvh0iRCZVjK7ECl1Ta8BFOuxNDKTawHRH2RNiI Qv/BSFfERPgZhSgl1DCiRGRiUev/Nu5X9JJlEoaQekEayIMRRilxtVLjIcpIymH6vClfg9InC22W 6O/E2XTDb5mbuSatiKbeN0pRY4tBbFjJ0rgwIs/4fZF530xScTdJzdRC/jNOcgJAFMSkuLT1Ch4w KE/0K5bjdhXr+kwpFi3VMgxIqx6Q+8X1eXcNEzeINm5n5XbitHq16Vphyqq8G8te/TSIGLtl8uKi lUxVbnpiUt1bKKX0SjO8K7nOzy+v1OYXxD6yUao2MVqjIr+3t+9f//vZjiV+nRppFBu+u3H9HQv4 08W1KmsYZ7ipyeSKefGMSwYibxZZyhp+hl1nxxwuL/Q5XD1GDj//XM0goW0ap+Y33w0Vofk7BRHZ z3hehFqJzB1U93ejuk0vcd0Fdh5BhRdJvby6AlUOqvzJVbnCcbXqO0RHEajd5cNOWkpJ8vrm8lH1 bjHNQQU1HTvRL7PluZYmPEQwkMYTl8b9l54BySkgqZkmYc1VnSSRzby2QrHt3HAIaB+8jrpe1DZW tQax0bmwLV2V2DF8VWdtY6Ih6WDAcqyYFFyrt/QpXpU0+u/JMyNAyxXpYrlsIGFkIesNWT76k3W1 eCdJluERKuBE96EfWY7p3Q8p/s/HU3w2zh1QhxelntAB6kBaUmSbCclePz7Xp/dzaYS+c/HLSzkk RbmWQ4y1xRzuDaJwAqIQVnOmh1bLag5tedXlHNFYq52VbNl9wSCAfvA6anorFD1F1Gd4wZxKi+7M gULPDCUpLb2AASbAACCjp4eWRkbzdqdK6LyR1uTzCkHznALgzfKZoFeVz8SpLJ+pA5PP1FCWz8IL GGACDADyeXpo6eQza3cl+SwbaU0+rxfQPKcAeLN8JuhV5TNxKstn6sDkMzWU5bPwAgaYAAOAfJ4e Wjr5zNpdST7LRlqTz36cAuATALxZPhP0qvKZOJXlM3Vg8pkayvJZeAEDTIABQD5PDy2dfGbtriSf ZSOtyefAij0MkE8A8mYJzfATMprka3u5G/2YOFsk0KTni+/Gw1GMAeEZIxxygJUeF3HmPa68hXNH yQ3SxmKWe2QiKrDLBNgFemTTQ0vXI2PtrtQjk424oUeGoUM2BcR14hzj6piZulVFOHERMhzXhTT3 BC6YABeAlJ4eWnopTRteRUyLhlqX05Hjdl6gCaAfvI5aQU3xq0lq6lgR1cyJy2pmrAhr6Q2sMAFW AGk9PbS00pq3vLK4zhtrXV5Dr3oKmGuEdb1PXe1Ry/50rTcNfempYA/SeXpoaaVzrSet6UeH9GQT 4H38eDdLZgpfZfaaObFfWH+aN7yw/DR3gMXq0x5xK4douV8W+pG91p2g7Znw+c2Zeho4C9kZ2g0h EFNDJKtnag+RxuV9xEI0CWdl5UzJodyPlNGB1yfA69CTnB5aup4kb3ilvmTelGu9SbwAxCeAeLPY J+P68iifH9YCQGcDKPkzv2UoWUOncXa4uunKTWDANxloKWbIA7AmAVbfdrjKFoDorBAlrRSE6gxR dRBAOjtIzSxFPuA6K1xXNrTUWSEacUR3Cl2ZxaaOJr2rUTuFrUvn+qp0C+fK3vUSSGDE2TAi+QPJ MgdA6Xt7VE+YMeiK+SAaFYgqy4ikzbJFRD57Ehns2jCDDby5L/uVs5zcItcaWa9ffHlXkfsXU2c0 JZErN5JPVLgwJVJel+TlAZ6bAM/BquT00NKtStJmV1qTFHKhviJpW2HoJp2vUywB9cPXUasXOIi1 /ht3rigI4ci1hLBUZHYRBPhiGnzR/5kZAOwI6tgpvmULLMtwpelWBfkGhVnneb+Tt/+8+/Dbr29v f/ntb5QTTj4CMxy+jhqpzhBVRDq3s9/YSrDbY80F8D7GOu6ONyD9vSBtR6GHloD394K3Y7lBFALe 3wveLLskY7eUAuTfB+QRYP39YG2nPTZYANzHWMfd4aanxADt7wXtgHTVkgfA+3vBO7GQ8wLg/m7g dr9lpLgA+PcD+AZtXMD7e8GbVCsFuL8buMVe92Lpm0+l08UzbhIuYspV2MSEnLAV0zXSISpMdKgn LGwgIMyimyhsYqlG2HiXQlqEwsmtTBwJG2dWYeF7sdQ1+rwuwM3T5Ob+C/YA4BHWsWMBXzRPdfW+ kD61pXvYNT8FwJv1j/rCOrFsys+rb/g9IJvK0+obuKpnKqjDptjpoaUTypV7ejbNl/Rs4giwngDW zfI4jhSBHMeLDJ+ioNcaHIB68DruACpxA0hnBylrp0r3iYBMRTRvwdzOfqmt1KHiAYEfJsAP0KOa Hlq6HhVtdqUulWiwtT5V8kMaZfbKMM0AIdLYzRWpvem4sWADlq4D7HDc7BAZHD0tjADfMcOn08Xy 4Bg9VYw8c1M+McZdmBpmppLizT0B/gnAD6p3emhpVK9oeKryLRpqoX65mOZK+H4BSngGjAFKeNLw aZTw/aKshO8XVSV8v5BKmJiqSvgertmYCvyghKeHll4J3y9qSvi+etVGSQlvQQnPgDFACU8aPp0S 3laU8LamhLe5Et7WlfAWlPBE4AclPD20WpTwtq6Ety1KeOuDEp4BY4ASnjR8GiW89ctKeOtXlTBx EUp469eUMPcE+CcAPyjh6aGlV8K04VWUsGiozUrYsnrsfX/9+o355uOvn15/Nd/fffjtf4AVDl9H jdwmeCpbeqiN/BFuoTfTI8ImosKO4SVRsFMSLy9evLh5+cNfT+0oiK30lJQ22/Jfkx/DWb28vlQf W/2dECOzU8KDoZs+MyjNWIcOkQoQmsdWYgUuIYHhI5zukjBKsYHtiHArwkYU+g/8+nvC3uxW/Cg0 okRkZ1Hr/zbuV4h0NEkYAsGCtJcHI4xS4mqlxkOUkZTD9Dm0g7m3A9NBuNdVEQD08dVxJ6CrN7JT CUaVIP0ym7grPWeKUgdWhAY+mSaf7HCqDwA8vjp2dHJZ41S7uLJtV7c7WrjzQnVA++B11Il1rF6k Tm3kryzSMd9mQ79l6Y1hL9xUsIfJh+mhpZPLuLITTjbQqlxerNOkMJ0yK6B//Og3yukcQiGthcDO nU0rc+Dc36wRTrOwzzX4gPDB6zgUYdtKHAB4zgBHSY87uQDgg9dxKMARLo2dqBvrmxXoc0caUJi4 4hYWLuOFhYmD0pBLpgccNAEOgjHX9NDSjLl4u1MHXXnLbhp1cVkQuJ1PVAHyB69jl6SnMOqkPfHS vV3eP37lNXPpYZKU3A1hFd2r5jvk8NOFuqgbxD6yUaou3BqRpxQhTghFvWcVPcbSynUZtdRUkwwC bD8Btgf1ND20WtQTb3tVFZU32qqaskkpu5ft3tx9+WKyyzhfnQEfHL6OGmVFwVTEP7PSH51y0od/ eXFR0hV0m4/loz+5lgisNakFrcHSTfjOJlEh457UJ8pSwzJoTRTVwdKlHMgMJZUhvYAPp8eHO6z9 A3jHVccOZcJbpapI8iZcUyKR5+VnS9DCxhcDjpYQBuEbQ+5+efPlAhjk8HWMDIalDlPAckJY6noM pOWKHgC6vLk+ZUCfomBp2alJPcunUBgbMGd+QWERrHwgpRQOmGV6zLKLWgfwjqqOXWdWlLZZOrhS btuFimceXM/DROYk8G+U9K76YAyxIM90ezyxDoAevI67AGp629U9oDo3VOPVQ/U4sJjP4ybhwtGX Fhqpek4Y5uUnwx4wLz89tPTnhKuT8kULrk6meHEGiE8A8UbxTcArDafpD0lgRcDOfP4QYyHFSWDG AaUAJYktQgA/TIAfQF5PDy2NvGbNTpXWsqVWZfUyzKS43hoWxm5AkkhO6CLYiR3HhJjvP775+PkW +OHY+aFZnHN8hUQnFi7QvZgK61MHbUwckMo8x5RpCiu8pDUFxHcHnFQvSjAI+JnCS3xMlh0gPGeE sy3gO2N8CYjJAyA8Z4RTG/CdMb6kfEsAeKYAL93UtBwncTF0pOeKsR9ZjolTOOM6X4jjyH8wL7bB OSA8Z4St1AoFwjC/OWkGGMoBDtrw6c3cBrObU8B7INz+BTT3OcA/FH9iuL5SGjy3Q5OfAuYDIScl gU7cnAGGPtxM8B/IAGEUIMsvhLqwg1CfAua7Q564SzrDZuJsAXJ9xhiz1ztgim3mGIekfmEK+nsO PDCQCfIpGGkBzT0FtIeB7dOVkwTa+xw4YCALZHTWpWjx3BoBQ3zHDEH78gpDUCswxPfJEPeBiVfJ lrODtAAzfL/M8C1JC2aglkg5YsZjs7MryvkEQ+xkZwdbxJ5nYc62wsT3UQpzagsT25tFklV28USG st9DLBuwnQHCzNaQ1fVDQ640ldcYjHw2WhiLeHLGylDnNrhNjoKlTYyXlM6yoXSrShpVFaZFS1LI qBzEK+gIfe8JNCU4izc9tDRn8WTLU4/jKVKteiKP31az/BMRzWeHzSJVXHJFf5/fGCLO85vnyz/h tqPpcU8LxPWLzdglR6R6YY8nkgDsY6vjELBR3OO0AEB9bHUcArVnh6kPYH8fYGO0DC1A+3tB+wG7 +TIYoD1ztFFkgyD/XsDGkb0mgQHu7wPurRuiLcjz7wpzhGEM9v1ADY37u0I8wD1O6wPUx1bHIVBH 6arPy+MA9rHVceCQG91cA9rfDdobF3pp3wvaqQX9s+8E6wBGX98N1lmKYN70O8GaTaTVn2fjr4Io +xzk0050IVyamfyXFiYgpIWvoebh+CJbbuUD+zxFNk2fe4p5XGlnvCgtvLAlWy01pRTKLEJeSrzM zXwcopSKdlQVK+3J1B+kg7foptk04C26yYPX9hZdwzN0jTv7SMakaLbX47ny93cfPn3++ObdF+CB w9dRo9tyOFX9RhyzreKVm2Qv9vGSemnchYaXhTZ70fz3wtuJ6H52a7N89vIxs3tx9rPyoDqHw+Bw GBQkK+Fvq0ee8XtI3GPkPANO/w45HWeLXnOsAP0R1fFxoN94OIp77YQA8I+ojo8EfsixL8ZzuR/r D1U0iuLNRYbqIBip5MSSL42KSukDz02M53YYFgFyR1THjjGR0ijVcVFZFlTHRoH/ACfdJoB8o54g 4AkNQd/8pTbyB0cXZwaoaVvw3PrsQI1tVOqy0ZbLnnT16dl5GYKbKAOU+l8iMPDEBHgCTpRPDy1N D4s1O7VvJRtttVcV2psf0iizV4ZpYhsj04/uzRUhgOm4seAElrQDHHHcHEHQFvi1QAkQHjOEGrVM 2qiilqkttJMXl/aLszOiem0rcQDdWaJb6nYRHybBa9hHhVO57yViAGtMgDWg7zU9tDR9L9bs1L6X bLlF30uqZ9EHwzH0wWbBGdAHmzyEOi2NY1VLExv5A0BnBmjRnVb6XQRn1u8iX2bL+12lvhYPBfww AX6Avtb00NL1tWizK/W1RGvV9bUSC1YRp4B6o8wm4Ckym9qQZ5JP+YQAd2JHBLixvE0+9wY+mAAf gKyeHlq6nfCi5ZW2wheNtboygRchAtAnAHqjqKboKbKaWQnY9AtteZaw1vYJSLiFJmbm3JXvGago Zhkc+GMC/AGaeXpo6TUzb3oV1Zw335pulmMqgP74oW8W5AJBIcxtK2BOubvuHFp3vMqhs3wW3EoJ uVZ0h5ju0FmPtM+vLq6UI2axxQhmWMnSuGTHykgkE6PAJEBE9jPDQZjO1WGD0gl5yE2w4SVRYAiq GimJ6qYGJTYw81yZ2YwRtkp9k5ylmHSTlsKdxyj1T9QowCoTYBXooEwPLU0HpWh7ag+l3IirXZRg 4eF8Wd1HC2RH4WbIsjqwx8HrSM8GcQA1WCo4B/bKQiEAPV2gOYJtaAKKR42irptGRbLoo61JmU4D 56rHtW2A6OHr2APR0E2JlTrRJypDwHV+uKYJKbUNQniG0JI/gHWGsPa6aAdwPXwdd8M1+Qaozg9V EhRgnR+sdvIQ97iKHIA9fB13AxZFfU5eAqwHr2MPWFkjjU4d4kz+TNeG/vBMocVuunb7XD4E6B68 jrvJY8fdAKwzgdWTVvbb+9pQQPfwddwd3TByXMB2ntiiCJCdJ7LyNl8Ad4bgwszxjLFliz3Kbkjq yu90pCvyzIEv4nIj7Vdzk1wB5DaajjDx27nF1DQ30NlMkRSbAONmOmciciyu8FZ6AdKCoiJYqIYq shI1iQw5YOcmMb4rb96UNQSGngJD99+6CXAdvI5dezd50ytt3MzlTbFrM9/gl2/6Evs4Y9/CK9V8 ughi2NI7AbZoVks5hsJoEqP2tElz4MoRE+Jm3oUo1Z4r0aTy4lw9S0Jrtdt5kd0yu7wZL7M6fd4m 1v3O9Pn5TClyFmbYdYwNYQfWtn9Hz9QuRBGRtevCWtbDpWDQiifQiuEYxfTQ0qlipfWV9HGl8VaP UnD5ENtbYIEJsECbjCcYShlPjB1qtxq4olaIm+l0q5VaKhdn55ojnBf0CGeu/KIir500ZU0p0WwV pUStTUpJBAMenwCPg1KaHlrtSom1vgallDfeqlJKl3Bp7iz4Ay7NnTyEuk5HulQvCyK2NLDPb+xL ENyzRBVeo5gzuLU7NNIl08x5m46MUljF2nRjsogOrDIBVoHu9vTQ0nW3abMr9bNFM9bdmEwK7loB 7nyB9yOAf/g6aqU6w7Ak2bmL+FYEO3djXCHMFdGdBwC2mAZb9H9JGwA7gjp2CnHRAMuCXGm21dmS TXL1w/JPFJOkQ42MIEHYz/Mbg0d4fvN8+Sdo/Akwix5QLvFzbE0SgGAHHbm5wYqWoeUDrDODFUV2 CqjODVVSIZDAcwPVQ36vky6A6qHruAuqaRr5MJ89O1TdJEBRn6NLgOuh67ibYqUjYO2uprYo1Vvr xVjJJKMlJ420W5xak7y4+EndQEs3Oi3DgHAX37tEMImC2EoRHdXnG5ke4CL6uXFlZK9d6PDNEVbo 8c0EVnR5c61gG1j2CvYezQXcAtfExVGW2O5OXYQikr6TkCY+ClpOIHWke3H+s9JRQEHsIxulBiWu lVgst8hTcnaiIktg0VmxKIrllegA63HDuqNOWbohGQE8BKBUjh/aXZfUNq6926hTRHl5/tO1KvhD lCLLR39ykd8xShyS3c2NPrvAWhPS0QyWJIvS8Zp7QsQoSw2LHVwdlPPPF4MrCs1lJs0FBUvLTk22 twCk4Gxg5esfdghLlbNDleS/m2bjEXQDpWz3UZJI8OfSXQ39p1Ifq+T3FkrJd0jRzy+udW+WnvM3 S1dLgq9NGtAzoYRlFUTluEauKGG8Mv7Kn1HKe5bEqdzVjMROLpNbV3JcsaUUdANCreSEJntixzFh /vcf33z8fAvt96jb767jDj+yo8R9jtm+QcUhUnf8Uo3M9g2qAQx1x1hhox26yFB1ufTjm5CEjSsE YWFNQZj5phYZh+6FkDHYErqw8JVXaRELdnkktsIibXx+XbEVqciJPGHNp1xkUchgu7yzWRAC1Nix NwM4lTJJtHQbmlm7K+1mzkVSZSvzxsUWAD4BwBv1FEVP1VOIWKkbNOJZYMqOFj1gm0Q6xTb14BtY i64GA5u2a2agh81kqJIilsGAKybAFaCIp4eWRhHzdqcq4rzBVhXxPQK4JwB3o8i+R1UljDzzHumm erTBK9Ml98jErrvWzZLokzk/+0mdI/mdDgsz/MwI0HKVGgvXYHdPZmG+cEBsKDTSFcJ59oqS4clS puWmkmrJPYF9J8C+oFumh5ZGt4iGpyqXoqEq2oVf60UvgBKou75XXObFaOejhQhAE2amL9EPSUBK p0akHKM/6Xx8FKxwBmcMVZRWrCq7VHxIF5wUenGKYg/5dC5ZbR8yThSn5tKPFpb/fMXJ3M50ZWVi WwH9A1qPR2uTVcMBko9I8m+Zm7lA8REpjhEIlbHoTS/7YT8mISZQfXSqOxYQfXSiYyD6+ES3odsy PtHpbhMg+xhkr2RB3yUmlU1PiRUAOCQAKDatLF0BCAcGARrCEWCQWEsA4cAg+BFgcGgMwvwKJsDg UBgQomwfAIUDo0CXWmF686AoBL63NlEM3aNRUKCPUUenCz+69xB99tIz3dAG0h+G9Jg+1Q20H432 tGbnFzfyC6Qfj/SOi0/lS/VA9tHJjt0UZM2olE/QH8Tf9XPDieUvTzwMI6/DghAjAGFcEPDKOgd6 j0rvC/YDRB+B6PTQT+CQ/0DtEajNjvzL09crFzbtjEj1EKXlF1SA6E9OdPpjkjonQPJRSc4P7QDR RyW67UdweGFkmrvhBiURu00IKD8u5TdA87Fp/ocF23BGJvk6XSWuBaOjcakOmnT8LiOhZARLqeMS PUzjFAXQUR+X6vHqAeevfwDRRyJ6AtJlfJJDD31ckidW6ERwAHZkohcvwwDZxyM7vkepDUdzRib6 Qwg0H53m2CbEhLOY45M9hfmucYlOh6NRBt3Gcam+3W6B4mNRPHBewEh0NGrjbJHQM9wRydADso9K dsfdsDcagOqjUh1hWLwYl+RsMXplhY7vwlajcUm/jhZ/AMlHJTns7joA0WMrgetSx6Z5Aj3GsSke AcnHJfnCR3Cga2Sa40UGbD4yyW0Lxv8j0zy18BpuwB6f7jCdOybFHzB9NNclBAKij0l08XYr0Hw8 mm/Yq7dA8TEpHmC48XFcimMXJlpGpvgKKD4axdP0wbSjIIaFubFpDgPQ0SkOm+ZGpTgdfgLFx6J4 RnrjpmXbIFbGJbkTBRYKgeijEj2AOfNDkByuQRuX5owEQPNRaQ4ziQcjOoiXkc9XsOtEYFQ0BtUD 7ETYy790OLoBwo9AePouxiL2TJ4BkHwkkiPon49HatNNV24C8y3jEn3JeFzr8/L87PqlcW8lISHW S4Pe+YosH/1ppaTihpdEAXHjc+9o4buGoKBBKdqSqnFHImehzVL5fYnYqzNWbK9ce/3sZUvEy4sr pTgUFsNB2LYSBxsUH+QhwkO8YHlZrGTpprsXCUV26reW5sXFhVKa3x2cPjMCtFylxsI1Muw6Rhbm JCM2FBrpCuE8n/5JkzA7Jg0taKQW5EdRDBJrPHoHroPgxfIxCY7giZ6xyE3+zAg7LkiU0Ric5PIN qD0StRPLQbCVdzxq35vwvtqo5CZuiQvyZDSSRxm81zsetVMM90iPR+4/feh5j0VspE5CAtHHJHqo mYQs+bZOGV41zNKVY1+ene81bwjsMBo7LAMY/I7b/oDcY5I7NhG8fjKygolhFDw6ycW2vw7/l+eX Pz/aAmMt7avHW7yspf3i8unSvj4bnDYw+YhMngQwmTmy8nRt6K+MTXI60AKij0t0z4/ugeYjd8xt GHuOTvMwhtvxxyZ6AOsmB6A6oTnw+rhUp0uyCGT6mCRPbRDqh6E6yJeDkB2OLByC6A9kUGqvoA8z NuHpe1bA7mNTHbaVjU72zAGyj0/261NrZdpRAoJ9bKJDn/0QVIc++/hkd3EMIuYgVAcZcxCyg5A5 DN0T9AcJ5cKTy6NSHsXYhTvdRyY53Y4ESvVQhAe9eijKg2odk/Rr9+GU/DVsK819KgdFiJtp2d8y lLgXDadEimjX55fXj3q1zChJ1yu7Ick5VuqaBO3WCv90fv3zE5Xqp/ObF3DcZiKNyXTcRQYvsoxL dAfOI4xLcHFwudX35YubC9h3f7RgxhFG2yvxgVuJRqb6+dnZpXkONB+R5mtsr1w4KzgGxTMPn3r8 z8SRlzpubOI0A3Yfm/ipRTQr3OY9FtnFn0lGZ2vYxzYS4TfBqeN6VuanZmwtYTfVeETfINsFmo9J 83j1gIHiY1J8E5D48EL9iOSmEwVA7tHITZ99AXKPRu7ATUF4j0jvLIQbckck959RCLpyDHL7aMFe 7SKEvUqs0InghfQxyb6wYSZxTHqj0HFBjo9LcTc1wzSCx0HGpPo3HCUw+hmT4qA8xyc5SPOxSY5t K4Rd3KNSfB0DwUcleJrYFujOsUkOd7yNTvL4AUg+Lsl9F+bIRyZ5CJLlADQH0TI2zdMIDrSOTnK4 hGZ0kmfA5uPTHPh8DJo77ubUW5zi2LfwCig+HsU3S1idGIvc5EtywqfYXiGcRgl0FMenfBBlGLZX jE93kgesEB2G7CdOFsC5oQPRHsMKxviUJ52aJHRgj+gBKI8cO4Vh6gEIn4KIH53q/At0H5/u0I1/ OsKfeFGA0hMvsQL3RF4pUsoWXd5c8x8rJWGhizNGCyiIvsiwE1hmYNkrx4UVvnGJT2IC5Q9CeXR9 c20GLkwjjEx2h5DVjjMg+7hkD017jTPg9rHJjoDZR6f6GgT7+ESPA3hEe2SSExt0Hg9C+TQBZh+Z 5Jvg5hpIPhrJsXVq+w2XylZ9K1d0k84Ouy+G+eLqBd21yOdnZ+pN2iiIfWSj1KCQWQm/mDbylPSx m2axeXPxgt6QunUdM4gc91lnLi8ud8olcS2HVCNNTJtQKe1K33idGmkUG767cf3OKp+XqlzLi3hh I8OuY9xTXgsjI+dEY+ESFnMNlGJSdo9d4BuFj5EfpwTJU9LGfzB+5w3lmWGFjuFblNl+J6yTIntH ehPO26Aow1V670rmSk0YRUhrJU3OXnFi5Tk1QTyw0Dpu2bP0zTjIXAn5FSRydNLISEgDSAiLoj45 nqs55uytVgTh8FlqWAWP7Zampj0+CU/dnPfhqWEColyrR+es5qJrOesx6tCGzI5cBir3cKsiBGAU +yZtu7AyOGrvh/yZTgDbWccgOt8gny0SdlFvAPf0jnoywUEbB10CyUckOdHFQPJxSf6NsHkCs8Kj 0jwD0TI+zUG2PCXNSaoegufExtqktwnJf6D2GAMfHHkkI+fn6+sz8TEXsKZ3OOL7UbTOgPyHIn8Y ObAl+FDETxIEnH8o4mcpgjM3hyL+xsNRDFO9ByN/CNQfcc4XBUvLTk0rgjfmRyc6iQs0H43mIUrN wEIwlh2N5PTHJHVcw/M+4xGd0hvE+fgkB2E+tmSxbBuYfGySw7h0XIrT1Q4g+agkd1xsw+zX2FR3 ty7cOzA2yeFZ2ZFJTuqzBpKPSvJ1mlg2LCSNPOqP7DX0W8aleYDgyrBxKY5XWepE9zClODLZYfvX 2BTP4ETAyCRPUQCdlvGPvmAfQWdxZLr7Ecjz8Sj+gE1KYKD4qBRPItvFsK9lNKKnKbzGMSaxzRgI Pi7BgcNHJHiGYtskNpsQE6T4uGQnrokLz7aNRvSNh80FioDgYxLctuwV9MnHJbmfEYLBvNa4RIf9 LCNT3HE9K/NhoX9UotPd5kDxMSkOh3XHpzksC41OcRiCHoDqcCZxdJJbMAAdheCEALZHb3qxHPEB bh+b+B7yIvEB4o9NfLoyl39MeOz0gMR3Fom7BOY/GP29GOh/SPrDXV+HJD7cTHo44odRCosfB6M+ SP1DUp++vpEB/Q9Hf5jEPCD1KSGA+oeiPtx1d2D6w2zPQTs+PgpgnXZM+uPYlR9g/vGIj50Ie/nX dFy4W/lApPcskDeHoDtsDzkY6aGTeTjSg4odifKhm54uYtjaOgatM7pYzv9MQsoI7g0bm+oLIPsh yI6g234AquPISx0X+o6j0x0m5scnOnTWD0N26KiPSPWA/wGzH4jswOwjUl38wVOShyA6Wll4BVQf m+owTjoA1WGK/SBk/5ZFqQVUH5nq0HU8DNmh63gAqjsogX7MSHTfBKf43orN2FrC3TRjUXwTmHBJ yrj0htHoqNQGco9J7mjxhwuPE45IcKotgdyjkhuemB2b4tAdHI/etA8O5B6J3HS6Fjh8NJI77uZ0 vXDoH9B7BHqjy5tr/gOXDIxN8VherWGvYA/X2MRnw3wg/BMSnqtOBPvOn4i+RFUiGwj8dAReZBio O45ctq2A/pnbGAbuY9I7dhMUw+LZuG8KLuBKnZEpTmoDDyGPNXy3Uov+ndAnS4HoIxM9sRBMnIxM 9BidEGIC1Uenug2sPhbRvQX5D9QecQbcSmEO/AAUh5Pjo83DWnFA/4Dg467zwKz3AageulsY9Y9I c2ydhvEWCP40BEcRvJX5dNSNbQTrDuMIC0Jq+ge0Ho/Wph0FMdw0OSbJcRbHUQIkH30GPIDDr6N2 +Qivw+Lak9E8QAi2RIw767qNT5Fnkg+QfCSSEyanf0DvceltxqsHuFRvZLpna0J1oPjYFIfbI8cm uxUAo49L8UWyBJKPS3LHBoqPS3H3/OzsDIg+MtG3QPFxKY5CoPjIAyIfKD4uxUMMFB+b4tBDHJnk MQjy0SluAcnHJXkKunNkiidA8ZEpvoX5rJEp7m9TIPm4JP8GXfKxp8lhBvEJd3XGsHliVI5mBD/1 4UaJkSlOfs2FheHO0/HJfn5xcwVkH53sAf4GVB+b6nAC5emojrAFPZWR9i5ji/7RUxFBBJfUjEjy Fakx0HskepOKAK1HonUcwnbxEWkdWwkMdkY/WwU3Lo15topd15GlcOx7fLIvUAQn2kY9RUiqnCiX g/cJ9NK4Cw0vC+2UVN/4HdmZid00i5+97Bf96vrFS+PeSkKCwEsDBbGPbJQaFEErsViikadkQBI3 fStGtolw4kf2M+CPEfkDw7HesQkOtwYcgO7stgZvmbhLoPtI4wl2B50JEmZkittA8jEHzTHcsjgW rUnpgdZj0foBk5wwyJIRab5ZWmV6bw0LYzdY+IQI94QGJ3Yck6zff3zz8fMtwPGocGimLMiANErc 5xggORpI6CySTedMAZTjAcXd2m5MJ3QIKv8viUSDOwYK4yz9/14aryU8RuBibC1d/LIe6uLnq7OX xm2SRMlL4raxfOQY9spKLJsW/pn5jLgaQegGUYjspvjXP+8T//L8/Arif9fxX0D87zr+NcT/ruP/ BPG/6/g3EP+7jr9v/xHiTzr+xV7jD4g/+fjnEP+7jn8B8b/r+JcQ/7uOv+f8EcSfePw9548g/sTj 7zl/BPEnHn/P+SOIP/H4e84fQfyJx993/gjiTzr+5Z7zRxB/4vH3nD+C+BOPv+f8EcSfePw9548g /sTj7zl/BPEnHn/P+SOIP/H4e84fQfyJx99z/gjiTzr+Tzf7jR9/+nm/+Yeb8/36rzc7jX/+8z// kwc27MhxjfMfzg2XWqseF90e/wH/4B/8g3/wD/7BvyP49/8D+nu7xwCQCwA= ------=_NextPart_000_0005_01C1A3D2.0D8BA600-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 21:55:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id 63A1B37B437 for ; Tue, 22 Jan 2002 21:54:41 -0800 (PST) Received: from dialup-65.57.14.176.dial1.chicago1.level3.net ([65.57.14.176] helo=pegasus) by gull.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16TGMq-0007Iu-00; Tue, 22 Jan 2002 21:54:41 -0800 Message-ID: <007201c1a3d2$7260f120$0100a8c0@pegasus> From: "Bob Giesen" To: , "Lord Raiden" References: <4.2.0.58.20020122192009.009c9da0@pop.netzero.net> Subject: Re: disk space remaining Date: Tue, 22 Jan 2002 23:54:38 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I use "df -k" or "df -k ". Check the man page for details... ----- Original Message ----- From: "Lord Raiden" To: Sent: Tuesday, January 22, 2002 6:30 PM Subject: disk space remaining > Ok, I'm starting to forget things way too often these days. I'm needing > to find out how much disk space I have left on our shell server. I looked > around but can't find any info on this. I know "du -s" gives a summery of > the space used. But what I want to know is what the total free space is > remaining for each slice, and for the disk as a whole. > > Thanks again, and I promise to have a talk with my senior moments. =) > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 21:56:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id DC33B37B402 for ; Tue, 22 Jan 2002 21:56:51 -0800 (PST) Received: from dialup-65.57.14.176.dial1.chicago1.level3.net ([65.57.14.176] helo=pegasus) by gull.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16TGOu-00017w-00; Tue, 22 Jan 2002 21:56:49 -0800 Message-ID: <008901c1a3d2$bec18de0$0100a8c0@pegasus> From: "Bob Giesen" To: "Kris Kennaway" , "Lord Raiden" Cc: References: <4.2.0.58.20020122192009.009c9da0@pop.netzero.net><4.2.0.58.20020122192009.009c9da0@pop.netzero.net> <4.2.0.58.20020122195208.00980d10@pop.netzero.net> Subject: Re: disk space remaining Date: Tue, 22 Jan 2002 23:56:46 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Oops -- I missed this. Sorry for the static... ----- Original Message ----- From: "Lord Raiden" To: "Kris Kennaway" Cc: Sent: Tuesday, January 22, 2002 6:52 PM Subject: Re: disk space remaining > Thanks. :) Found it. (man I fell silly for not seeing that) > > >du(1) includes a reference to df(1) in the SEE ALSO: section, which is > >the command you want. > > > >Kris > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 22:11:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from harrier.prod.itd.earthlink.net (harrier.mail.pas.earthlink.net [207.217.120.12]) by hub.freebsd.org (Postfix) with ESMTP id A333A37B402 for ; Tue, 22 Jan 2002 22:11:43 -0800 (PST) Received: from sdn-ar-004dcwashp137.dialsprint.net ([206.133.21.201] helo=moo.holy.cow) by harrier.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16TGdK-000321-00; Tue, 22 Jan 2002 22:11:43 -0800 Received: by moo.holy.cow (Postfix, from userid 1001) id E329750BA8; Wed, 23 Jan 2002 01:13:42 -0500 (EST) Date: Wed, 23 Jan 2002 01:13:42 -0500 From: parv To: Cliff Sarginson Cc: f-q Subject: Re: is /usr/bin/passwd advisable as a login shell for ftp only users? Message-ID: <20020123061342.GA92756@moo.holy.cow> Mail-Followup-To: Cliff Sarginson , f-q References: <20020123035805.GA92721@moo.holy.cow> <20020123041706.GH1345@raggedclown.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020123041706.GH1345@raggedclown.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG in message <20020123041706.GH1345@raggedclown.net>, wrote Cliff Sarginson thusly... > > On Tue, Jan 22, 2002 at 10:58:05PM -0500, parv wrote: > > ... somebody posted that /usr/bin/passwd is also a potential > > shell, along w/ sh, csh, etc. in reply, i thought out loud that > > that was a blunder ... > > > Any program can be a "shell". > Just create a password file entry with the program in the shell > field. ... yeah, i realized that an hour or so after posting... i just didn't think of this "innovative" way to use the passwd program. > > something tells me that using passwd (as a login shell) is bad > > thing, but i cannot come up w/ technical reasons. it seems > > to be a security risk waiting to happen. ... > A security risk, probably, most any suid root program is. ... ah, "suid" is the keyword! i didn't think of the "suid" bit, but was well aware that passwd has access to the passwd database. thanks. - parv -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 22:29:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe24.pav2.hotmail.com [64.4.36.81]) by hub.freebsd.org (Postfix) with ESMTP id 2103637B402 for ; Tue, 22 Jan 2002 22:29:20 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Jan 2002 22:29:19 -0800 X-Originating-IP: [64.81.32.110] From: "rachel" To: References: Subject: Re: Virtual interface (SOLUTION!) Date: Tue, 22 Jan 2002 22:29:11 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: X-OriginalArrivalTime: 23 Jan 2002 06:29:19.0330 (UTC) FILETIME=[49B9E420:01C1A3D7] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG A guru in a chat room figured this out by adding to my rc.local file: /sbin/ifconfig dc0 alias 192.168.254.1 netmask 255.255.255.0 broadcast 192.168.254.255 up route add -net 0.0.0.0 64.91.31.1 He also said for me to tell them to fix "that bug" that: "That the route is flush when the alias is added". Thanks anyway, Rachel ----- Original Message ----- From: "rachel" To: Sent: Tuesday, January 22, 2002 2:57 PM Subject: Virtual interface > Hi! > > I have a freebsd4.4 box that has two nics, one going to a flowpoint144 > router that is acting as a bridge that gives the box its public ip and my > linksys router which gives it a private ip (the router is also plugged into > the flowpoint and also gets a public ip form it). > > I have wanted to monitor my router with mrtg and have that all setup. To > get the snmp data from the flowpoint I made a virtual interface off dc0 (the > one going to the flowpoint) which is called dc0:1 with ip 192.168.254.1, > broadcast 192.168.254.255, netmask 255.255.255.0. It is set to activate at > boot, but it doesn't start at boot up. And when I bring it up manually it > calls itself dc0:0. It does work to collect the snmp data from the > flowpoint at 192.168.254.254, but the problem is that that interface now > does not have a route to the outside world :-(. > > Is there a way to have both ips on that nic that work at the same time? Or > perhaps the problem is in the flowpoint, like it can't handle two ips on the > same port. Any ideas? I could put a 3rd nic on the computer, but that is > over the top. > > Thank you! > > Rachel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 22:36:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id B20EF37B404 for ; Tue, 22 Jan 2002 22:36:22 -0800 (PST) Received: from dialup-65.57.14.176.dial1.chicago1.level3.net ([65.57.14.176] helo=pegasus) by gull.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16TH18-00076V-00; Tue, 22 Jan 2002 22:36:19 -0800 Message-ID: <00c801c1a3d8$438a8720$0100a8c0@pegasus> From: "Bob Giesen" To: "Mark Yeck" Cc: References: <007b01c1a381$93765900$328dfea9@pegasus> <2807.198.151.239.42.1011756241.squirrel@y3k.shacknet.nu> Subject: Re: A question from a convert from Windows to FreeBSD Date: Wed, 23 Jan 2002 00:36:16 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Mark Yeck" To: Cc: Sent: Tuesday, January 22, 2002 9:24 PM Subject: Re: A question from a convert from Windows to FreeBSD > I honestly think there are some misconceptions about how easy windows is to install. Just because 99% of people use windows doesnt mean that 99% of the people can install it. I doubt if there are many unsophisticated users who could install windows. I know quite a few users with a wide variety of experience. I dont think that any of them would be able to install windows and not able to install freebsd. Let's not inflate the m$ stock any more than we need to; I think they only have about 94% of the OS installations. ;-) And, to be fair, it should be mentioned that a great many OS installations are not done by users at all; the machines come preloaded. Of course, that usually only lasts so long before m$o$ must be reinstalled for sake of sanity... Seriously, though, on_a_clean_installation (which is certainly something less than 99% of the installations done), accepting their defaults will result in a fully (well, okay -- reasonably, if not fully) functional machine -- with simply inserting the CD and clicking the mouse a few times. > That's not to say that the freebsd installation procedure couldnt use improvement, but i seriously doubt that microsoft's domination has much to do with ease of installation. I disagree. The inclusion of a wide range of working drivers supplied by hw vendors (read "at no cost to m$") allows them to concentrate more on other work, including ease-of-use issues. > What parts could be automated better? It's been a little while since I've done a fresh install, but i think you can go through almost all of the installation selecting defaults. Right off the top, the modem installation and configuration comes to mind. Going online is a big, big part of computer use, these days. Most users don't want to have to wade through a few pages of instructions on how to make sure their modems are being detected, then having to learn about ppp and chap scripts to go online... When I installed w98, my modem was detected and a default configuration created, without input from me. In order to go online, I had only to open a wizard (Internet Connection Wizard) which asked me for a phone number for my ISP -- that's all! (Yes, I renamed the connection to match that of my ISP and added an optional AT command set to suit my set-in-my-ways taste, but that was strictly unnecessary -- and very simple.) Of course, the first time I connected, I had to supply my login and password, but I was prompted for it -- I didn't have to edit any files (let alone know which ones to edit). Yes, the instructions are out there for accomplishing the feat in FreBSD, but w98 makes it very easy to get the modem & connection up and running. It would be nice if it were so easy in FreeBSD. By all means, KEEP the textual config files (since it's nice to be able to use scripts for admin tasks), but the installation procedure could be simplified. > Seriously, though, your input as a fresh convert from windows is very useful. If you can let people know specifically what parts of the installation were troublesome, they will improve them in future versions. Actually, I'd love to even help, someday, but I'm afraid that will be some considerable time into the future... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 23: 8:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.nc.rr.com (fe7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id A6C4C37B402 for ; Tue, 22 Jan 2002 23:08:03 -0800 (PST) Received: from i8k.babbleon.org ([66.57.85.154]) by mail7.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Wed, 23 Jan 2002 02:07:55 -0500 Received: by i8k.babbleon.org (Postfix, from userid 111) id 87A0C3EF9; Wed, 23 Jan 2002 02:07:07 -0500 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: "Douglas R. Spindler" Subject: Re: A question from a convert from Windows to FreeBSD Date: Wed, 23 Jan 2002 02:07:07 -0500 X-Mailer: KMail [version 1.3] References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> <20020123033407.5C9E63EF9@i8k.babbleon.org> <11a501c1a3d1$d44ea220$6600640a@attbi.com> In-Reply-To: <11a501c1a3d1$d44ea220$6600640a@attbi.com> Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020123070707.87A0C3EF9@i8k.babbleon.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wednesday 23 January 2002 12:50 am, you wrote: > I just want to get the OS loaded on my machine. I have not found any DOCs > that tell me what files to download to make a bootable CD. The FreeBSD.org > web site says it is easy to install. It maybe easy, but I can't find the > docs on what files I need. The links are to directories. Sorry to be so > inept! The easiest way is to download the ISOs. No, the easiest way is to order the CD-ROMs from FreeBSD mall. The doc should be clearer that this is easiest. The second easiest is to download the ISOs and burn them into your own CD. Doing the thing with the directories is lots harder, but the doc pages are a little too "nuetral" in explaining this, IMHO. A big "start here if this is all new" that really tries to get people to order the physical media would IMHO be a big improvement. Plus it would get a little more money into the FreeBSD project which isn't a bad thing, really. > > It only took four hours, but I have created the boot floppies and am part > way into the install. > > At least I know people out there are supporting me. > > Thanks > > > > ----- Original Message ----- > From: "Brian T.Schellenberger" > To: "Kris Kennaway" ; "Bob Giesen" > > Cc: "Kris Kennaway" ; "Douglas R. Spindler" > ; > Sent: Tuesday, January 22, 2002 19:34 > Subject: Re: A question from a convert from Windows to FreeBSD > > > I think that FreeBSD installation is quite straightforward if you start > > out > > > by ordering the CD set. To compare an install of FreeBSD straight over > > the > > > network to a CD-based install of Windows is preposterous; plus, an > > install > > of > > > Windows is not that easy--I've had more failures than than with FreeBSD. > > > > To compare on install of FreeBSD to a PRE-installed Windows (all most > > folks > > > ever see of Windows) is like cutting off one runner's legs and then > > complaining that he should be doing more to keep up . . . > > > > And of course the worse part is the slice/fdisk stuff, but if you just > > give > > > the whole disk over, it's easy, and Windows fdisk is a lot harder to work > > with than FreeBSD's and provides even less assistance. > > > > So I don't think there's any apples-to-apples comparison by which FreeBSD > > comes out worse off . . . at least not in my experience. > > > > On Tuesday 22 January 2002 07:17 pm, Kris Kennaway wrote: > > > On Tue, Jan 22, 2002 at 02:15:33PM -0600, Bob Giesen wrote: > > > > > > Here's my question, why do you guys make converting so difficult? > > > > > > > > > > That's a very subjective question, wouldn't you say? > > > > > > > > Not very, no. I've been a computer junkie for 20 years (well, > > pretty > > > > > soon -- I got my first one in Feb., 1981), have made a living at UNIX > > > > system administration, vocally advocate FreeBSD to any who will > > listen -- > > > > > yet it is obvious to me why a recent convert from the dark side > > (a.k.a. > > > > > micro$haft) would consider FreeBSD to be difficult to install. > > > > Objectively speaking (and I'm sure that it could be quantified in > > terms > > > > > of time and keystrokes), there is not much of a comparison when it > > comes > > > > > to ease of installation -- which is a major reason that FreeBSD > > > > installations number in the thousands, rather than millions. > > > > > > No, it is subjective, because for example when I first transferred to > > > FreeBSD a number of years ago I found the instructions very > > > straightforward. The fact that other people find them more confusing > > > is what makes it subjective, by definition. > > > > > > If we're comparing FreeBSD installations with Windows installations, I > > > spent the entire weekend (literally!) last week trying to install > > > Win98 on my K6-2/550 with quite standard hardware. Win98 would boot > > > from CD but refuse to load the ATAPI drivers to read the rest of the > > > CD; the Promise IDE controller wasn't detected out of the box, so I > > > had to transfer my HDs to the motherboard controllers in order to > > > install onto them once I got the CD media to work; the motherboard > > > needed me to download 4 drivers in order for it to work without > > > crashing; and my graphics card (Matrox dual-head G400) didn't work out > > > of the box, and still causes Windows 98 to BSOD at startup every 2 out > > > of 3 startups no matter what driver magic I've tried. Then Windows > > > Update suggested a new driver for my intel fxp ethernet card which > > > totally bodged it up, and I had to do major system file surgery to > > > recover a working driver and stop it from continually trying to > > > install the broken one. I had to disable power management because the > > > default settings cause the system to hang when it tries to suspend. > > > Then I found last night that the FAT16 partition I created using Win98 > > > FDISK was created right in the middle of my UFS partition which was > > > already on the disk. > > > > > > If I didn't have such expertise with Windows administration there is > > > no way in hell I'd have been able to get this thing running. I can > > > hardly think of more things which could have gone wrong with the > > > installation to have made it more difficult. > > > > > > By contrast, FreeBSD installed and runs on the same system without a > > > single hitch. > > > > > > > This is why: > > > > > Since FreeBSD is a community supported project... > > > > > > > > If unsophisticated users could easily install FreeBSD and a free > > > > office app (such as StarOffice or KDE) that would operate on all > > > > those m$office files in circulation, I think you'd see a lot more > > > > home > > offices > > > > > with FreeBSD as the system of choice. After all, how many people > > > > wouldn't love to get something for free that will do all they really > > need > > > > > of the topheavy m$office apps? > > > > > > > > [snip] > > > > > > These are all pretty good statements, but unless someone (you?) has > > > time to sit down and make these improvements they won't happen. > > > That's how it works around here, of course.. > > > > > > Kris > > > > -- > > Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) > > Brian, the man from Babble-On . . . . bts@babbleon.org (personal) > > http://www.babbleon.org > > > > -------> Free Dmitry Sklyarov! (let him go home) <----------- > > > > http://www.eff.org http://www.programming-freedom.org -- Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org -------> Free Dmitry Sklyarov! (let him go home) <----------- http://www.eff.org http://www.programming-freedom.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 23:21: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lv.raad.tartu.ee (lv.raad.tartu.ee [194.126.106.110]) by hub.freebsd.org (Postfix) with ESMTP id 3A01C37B400 for ; Tue, 22 Jan 2002 23:21:00 -0800 (PST) Received: Message by Barricade lv.raad.tartu.ee with ESMTP id g0N7Kdh09913; Wed, 23 Jan 2002 09:20:40 +0200 Message-Id: <200201230720.g0N7Kdh09913@lv.raad.tartu.ee> Received: from INFO/SpoolDir by raad.tartu.ee (Mercury 1.48); 23 Jan 02 09:20:23 +0200 Received: from SpoolDir by INFO (Mercury 1.48); 23 Jan 02 09:20:08 +0200 From: "Toomas Aas" Organization: Tartu City Government To: Alexander , freebsd-questions@freebsd.org Date: Wed, 23 Jan 2002 09:20:06 +0200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: IPX over tunnel In-reply-to: <20020122233706.N78417-100000@blade.elitsat.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Alexander! On 22 Jan 02 at 23:43 you wrote: > Novell Network(using ipx) -> freebsd router1 with tunnel to freebsd > router2 -> internet -> freebsd router2 with tunnel to 1 -> novell > network(using ipx) 2 > > But I'm not sure how can I route IPX over a tunnel ? The Netware server itself is able to tunnel IPX over IP if it has TCP/IP protocol stack installed. I have done it with Netware 5.0 and the configuration option seems to exist in 4.10 and 4.11 but I haven't tried it there. -- Toomas Aas | toomas.aas@raad.tartu.ee | http://www.raad.tartu.ee/~toomas/ * Everyone has a photographic memory. Some don't have film. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 23:32:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tgd.net (pop3-ssl.tgd.net [209.81.25.10]) by hub.freebsd.org (Postfix) with ESMTP id EE5DE37B43E for ; Tue, 22 Jan 2002 23:32:25 -0800 (PST) Received: by mail.tgd.net (Postfix, from userid 1001) id BFBC820F05; Tue, 22 Jan 2002 23:32:25 -0800 (PST) Date: Tue, 22 Jan 2002 23:32:25 -0800 From: Sean Chittenden To: freebsd-questions@freebsd.org Subject: cvs + gserver.... Message-ID: <20020122233225.H4278@ninja1.internal> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-PGP-Key: 0x1EDDFAAD X-PGP-Fingerprint: C665 A17F 9A56 286C 5CFB 1DEA 9F4F 5CEF 1EDD FAAD X-Web-Homepage: http://sean.chittenden.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG What's the easiest way to recompile CVS and enable gserver for krb5 support? I'm using MIT kerberos and it doesn't look like there's an easy way to compile in gssapi support into cvs. The best I can come up with is to download the cvs tarball off of cvshome.org and dork with it until I get the paths setup correctly or to recompile krb5 to use a custom path such as /usr/local/krb5 then change into /usr/src/contrib/cvs and run the config with the --with-gssapi=/usr/local/krb5 option. Any other more elegant ideas? Should I turn my findings into a port that'll create a cvs binary that gets tossed into /usr/local/bin? -sc -- Sean Chittenden To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Jan 22 23:32:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id B103537B43C for ; Tue, 22 Jan 2002 23:32:21 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16THtL-000F39-00 for freebsd-questions@freebsd.org; Wed, 23 Jan 2002 07:32:19 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id E4506118A; Wed, 23 Jan 2002 08:32:18 +0100 (CET) Date: Wed, 23 Jan 2002 08:32:18 +0100 From: Cliff Sarginson To: freebsd-questions@FreeBSD.ORG Subject: Re: A question from a convert from Windows to FreeBSD Message-ID: <20020123073218.GB4008@raggedclown.net> References: <007b01c1a381$93765900$328dfea9@pegasus> <2807.198.151.239.42.1011756241.squirrel@y3k.shacknet.nu> <00c801c1a3d8$438a8720$0100a8c0@pegasus> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <00c801c1a3d8$438a8720$0100a8c0@pegasus> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jan 23, 2002 at 12:36:16AM -0600, Bob Giesen wrote: > > > Seriously, though, your input as a fresh convert from windows is very > useful. If you can let people know specifically what parts of the > installation were troublesome, they will improve them in future versions. > > Actually, I'd love to even help, someday, but I'm afraid that will be > some considerable time into the future... > Yes, and there lies the problem you see. Many things can be improved, but with FreeBSD it's changes and improvements come from it's users, or from just a few of them. Someone may well have the motivation, skill and general courage to program drivers for FreeBSD and will do so, maybe because they enjoy it, they care about the project, or they have a device that doesn't work yet. That same person may not really have any motivation to improve "sysinstall". However someone who feels strongly about this and who thinks FreeBSD's acceptance is being hindered by the lack of friendlier tools is the very person who can change it, or if they are not a programmer can at least document what there is, or suggest a design for such a thing. I don't participate anymore in any discussions involving comparisons of Windows and FreeBSD, because they go nowhere, and are of little practical value. This list is about a particular Operating System, maintained and developed and nurtured by people who enjoy it, use it in all sorts of practical and/or recreational situations, use it in business situations such as ISP's and a few lucky ones may even earn a living from knowing about it. It is not a toy system, it is a mature O/S based on the original brilliance of a few people at Bell Labs a long time ago and since developed by a lot of other clever people. On this list you get advice from people that does not cost $35 a go, you get access to the whole of the O/S under the most open licensing system imaginable. You are using a Unix system, a system that was and remains still a landmark in Computer Systems. I realise you may not have the time to contribute much, I mean I hardly contribute that much myself (well I just submitted a 3 line change to a kernel module...hardly going to get me the contributor of the year award I guess ..). But it really would be much better if people stopped taking Windows as some kind of model to which FreeBSD should aspire. That really is missing the point, and missing the chance to have that very nice feeling you get when you use something and can say "Hey, I contributed to this". Hey you want to have the flowers in the garden, then you need to plant a few seeds..as well. -- Yours poetically Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 0: 0:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from digger1.defence.gov.au (digger1.defence.gov.au [203.5.217.4]) by hub.freebsd.org (Postfix) with ESMTP id 7ADA637B405 for ; Tue, 22 Jan 2002 23:59:59 -0800 (PST) Received: from dsto-ms2.dsto.defence.gov.au (dsto-ms2.dsto.defence.gov.au [131.185.2.150]) by digger1.defence.gov.au (8.10.1/8.10.1) with ESMTP id g0N7wxF04495 for ; Wed, 23 Jan 2002 18:28:59 +1030 (CST) Received: from muttley.dsto.defence.gov.au (unverified) by dsto-ms2.dsto.defence.gov.au (Content Technologies SMTPRS 4.1.5) with ESMTP id for ; Wed, 23 Jan 2002 18:29:51 +1030 Received: from salex001.dsto.defence.gov.au (salex001.dsto.defence.gov.au [131.185.2.9]) by muttley.dsto.defence.gov.au (8.9.3/8.9.3/8.9.3.LMD.990513) with ESMTP id SAA21698 for ; Wed, 23 Jan 2002 18:21:23 +1030 (CST) Received: from pluto2.dsto.defence.gov.au (squirm.dsto.defence.gov.au [131.185.75.211]) by salex001.dsto.defence.gov.au with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id DLRR6AGN; Wed, 23 Jan 2002 18:21:22 +1030 Date: Wed, 23 Jan 2002 18:16:24 +1030 (CST) From: "Wilkinson,Alex" X-X-Sender: Reply-To: To: Subject: ipf OR IPFilteri OR ipf ? Message-ID: <20020123181040.M13798-100000@squirm.dsto.defence.gov.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Howdy Crew, Can anyone recommend what the better firewall solution woud be best on a FreeBSD system ? ipfw ? IPFIlter ipf ? Anything else ? -- -- Alex Wilkinson Unix Systems (08) 8259 6838 Defence Science and Technology Organisation Alex.Wilkinson@dsto.defence.gov.au http://www.dsto.defence.gov.au/ -- -- "The risk of pain is the price of life" IMPORTANT: This email remains the property of the Australian Defence Organisation and is subject to the jurisdiction of section 70 of the CRIMES ACT 1914. If you have received this email in error, you are requested to contact the sender and delete the email. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 0: 4:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tgd.net (pop3-ssl.tgd.net [209.81.25.10]) by hub.freebsd.org (Postfix) with ESMTP id 359FB37B417 for ; Wed, 23 Jan 2002 00:04:32 -0800 (PST) Received: by mail.tgd.net (Postfix, from userid 1001) id 52C6E20F05; Wed, 23 Jan 2002 00:04:31 -0800 (PST) Date: Wed, 23 Jan 2002 00:04:31 -0800 From: Sean Chittenden To: "Wilkinson,Alex" Cc: freebsd-questions@freebsd.org Subject: Re: ipf OR IPFilteri OR ipf ? Message-ID: <20020123000431.I4278@ninja1.internal> References: <20020123181040.M13798-100000@squirm.dsto.defence.gov.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020123181040.M13798-100000@squirm.dsto.defence.gov.au>; from "Alex.Wilkinson@dsto.defence.gov.au" on Wed, Jan 23, 2002 at = 06:16:24PM X-PGP-Key: 0x1EDDFAAD X-PGP-Fingerprint: C665 A17F 9A56 286C 5CFB 1DEA 9F4F 5CEF 1EDD FAAD X-Web-Homepage: http://sean.chittenden.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Howdy Crew, > > Can anyone recommend what the better firewall solution woud be best on > a FreeBSD system ? > > ipfw ? > IPFIlter > ipf ? ipf is ipfilter. ipfw and ipf are both nice and I use them both in conjunction all the time. I use ipf for the actual firewall and ipfw for fancy packet rewriting and other nifty ipfw features. I could do everything that I'm doing with the two of them with just ipfw (default firewall), but I really dig ipfstat -t. ;~) Check the archives for more information. -sc -- Sean Chittenden To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 0:26:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20107.mail.yahoo.com (web20107.mail.yahoo.com [216.136.226.44]) by hub.freebsd.org (Postfix) with SMTP id 4D3CA37B41A for ; Wed, 23 Jan 2002 00:26:53 -0800 (PST) Message-ID: <20020123082653.66472.qmail@web20107.mail.yahoo.com> Received: from [193.227.212.161] by web20107.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 09:26:53 CET Date: Wed, 23 Jan 2002 09:26:53 +0100 (CET) From: =?iso-8859-1?q?Fabrizio=20Ravazzini?= Subject: better way to read qmail logs To: freebsd-isp@freebsd.org Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hello all, is there a way to read qmail logs via web interface or some other graphics interface? We've installed qmail on a mail server but our client wants to have the logs of the mails sent, so because the qmail logs are somenthing "cryptic" for a commercial employee (AARGHH) we need something simpler. Or If not graphics also text but more verbosity. Any help would be appreciated. Thanks bye. ______________________________________________________________________ Dillo con una cartolina! http://it.greetings.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 0:28: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from pophost.wldelft.nl (sunray.wldelft.nl [145.9.132.100]) by hub.freebsd.org (Postfix) with ESMTP id 2EBEA37B41B for ; Wed, 23 Jan 2002 00:27:59 -0800 (PST) Received: (from root@localhost) by pophost.wldelft.nl (8.9.3/8.9.3vc) id JAA01181 for freebsd-questions@freebsd.org; Wed, 23 Jan 2002 09:27:57 +0100 (MET) Received: from logchl (logch-l [145.9.222.37]) by pophost.wldelft.nl (8.9.3/8.9.3) with SMTP id JAA00958 for ; Wed, 23 Jan 2002 09:27:53 +0100 (MET) Message-ID: <004301c1a3e7$ce83c6c0$25de0991@wldelft.nl> Reply-To: "Leroy van Logchem" From: "Leroy van Logchem" To: References: <003201c177a7$9b507670$d702a8c0@Gautham> Subject: Kernel microuptime went backwards on 4.4-Release Date: Wed, 23 Jan 2002 09:27:03 +0100 Organization: WL | delft hydraulics 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.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, After just 25 days of uptime I got this weirdness going on: my timer seconds go backwards? microuptime() went backwards in messages while machine aint loaded. I'am running 4.4-Release on a dual cel Abit BP6. Please help out this time, I saw many posts of people having this problem since fprint was added, why not fixed? Leroy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 0:35:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id 0D30037B404 for ; Wed, 23 Jan 2002 00:35:24 -0800 (PST) Received: from dialup-65.57.14.176.dial1.chicago1.level3.net ([65.57.14.176] helo=pegasus) by gull.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16TIsM-0003OI-00; Wed, 23 Jan 2002 00:35:23 -0800 Message-ID: <016101c1a3e8$e58f52c0$0100a8c0@pegasus> From: "Bob Giesen" To: , "Cliff Sarginson" References: <007b01c1a381$93765900$328dfea9@pegasus> <2807.198.151.239.42.1011756241.squirrel@y3k.shacknet.nu> <00c801c1a3d8$438a8720$0100a8c0@pegasus> <20020123073218.GB4008@raggedclown.net> Subject: Re: A question from a convert from Windows to FreeBSD Date: Wed, 23 Jan 2002 02:35:20 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Cliff Sarginson" To: Sent: Wednesday, January 23, 2002 1:32 AM Subject: Re: A question from a convert from Windows to FreeBSD > ...it really would be much better > if people stopped taking Windows as some kind of model to which > FreeBSD should aspire... Geez, Cliff, I never suggested that FreeBSD should aspire to be like Windoze! One soon-to-be ex-Win user mentioned the difficulty of installing FreeBSD, another person took issue with that, and I simply pointed out what should be obvious -- that there's good reason for a non-UNIX-guru who's used to well-planned InstallShield-type installations to feel that the FreeBSD installation is more difficult. Your love of FreeBSD is duly noted -- but remember that love can be blind. FreeBSD's not perfect in every way -- and (prepare for blasphemy...) it's not better than Winblows in every way. (Most ways, by far, but not every.) Can you not still be a defender of the OS while recognizing that another is, indeed, better in some ways? My sons aren't perfect, but I'm not going to lecture or cajole others on how to love them if they, perchance, happen to notice their imperfections. But I'll defend their honor to the death. I love them with all of my heart -- far more than anyone could conceivably love an operating system. Yet, wouldn't it make me a hypocrite to hold up their shortcomings as strengths? Where in that would the honor be for me? I'd be labeled as blind, at best; worse, ignorant. Lighten thee up. It's just a couple of opinions about a work in progress -- and flowery verse won't change mine. - Bob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 0:35:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from unix.central-point.co.uk (unix.central-point.co.uk [194.193.224.196]) by hub.freebsd.org (Postfix) with ESMTP id 1FFF337B402 for ; Wed, 23 Jan 2002 00:35:14 -0800 (PST) Received: from andrew (host217-37-202-156.in-addr.btopenworld.com [217.37.202.156]) by unix.central-point.co.uk (8.9.0/8.9.0) with SMTP id IAA20553 for ; Wed, 23 Jan 2002 08:35:11 GMT Reply-To: From: "Andrew Wood" To: Subject: website Date: Fri, 25 Jan 2002 08:35:13 -0000 Message-ID: MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_NextPart_000_007F_01C1A57B.353AF020" 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.50.4807.1700 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_007F_01C1A57B.353AF020 Content-Type: multipart/alternative; boundary="----=_NextPart_001_0080_01C1A57B.35429140" ------=_NextPart_001_0080_01C1A57B.35429140 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit BlankHi freebsd Just to let you know that this page on your website is unavailable http://www.osd.bsdi.com/titles/freebsd/bsdcomp_bkx.phtml Regards Andrew Central Point Limited DISCLAIMER - This document, and any files transmitted with it, is commercial in confidence and should only be read by the person or persons to whom it is addressed. If an addressing or transmission error has misdirected this e-mail, please notify the author by replying to this e-mail. If you are not the intended recipient you must not use, disclose, distribute, copy, print or rely on this e-mail. Internet communications are not secure and Central Point Limited is not responsible for their abuse by third parties, nor for any alteration or corruption in transmission, nor for any damage or loss caused by any virus or other defect. Any views expressed are solely those of the author and do not necessarily represent those of Central Point Limited or any of its subsidiaries or associates. ------=_NextPart_001_0080_01C1A57B.35429140 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Blank
Hi freebsd
 
Just to let you know that this = page on your=20 website is unavailable
 
http://= www.osd.bsdi.com/titles/freebsd/bsdcomp_bkx.phtml
 
 

 

 

Regards
Andrew
Central=20 Point Limited

 

DISCLAIMER=20 - This document, and any files transmitted with it,
is commercial in=20 confidence and should only be read by the person or
persons to whom = it is=20 addressed. If an addressing or transmission
error has misdirected = this=20 e-mail, please notify the author by
replying to this e-mail. If you = are not=20 the intended recipient you
must not use, disclose, distribute, copy, = print=20 or rely on this e-mail.
Internet communications are not secure and = Central=20 Point Limited is not
responsible for their abuse by third parties, = nor for=20 any alteration or
corruption in transmission, nor for any damage or = loss=20 caused by
any virus or other defect.
Any views expressed are = solely=20 those of the author and do not
necessarily represent those of = Central Point=20 Limited or
any of its subsidiaries or associates.

 

------=_NextPart_001_0080_01C1A57B.35429140-- ------=_NextPart_000_007F_01C1A57B.353AF020 Content-Type: image/jpeg; name="image002.jpg" Content-Transfer-Encoding: base64 Content-ID: <519173408@25012002-171f> /9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAHgAA/+4AIUFkb2JlAGTAAAAAAQMA EAMCAwYAAAJIAAADcwAABxr/2wCEABALCwsMCxAMDBAXDw0PFxsUEBAUGx8XFxcXFx8eFxoaGhoX Hh4jJSclIx4vLzMzLy9AQEBAQEBAQEBAQEBAQEABEQ8PERMRFRISFRQRFBEUGhQWFhQaJhoaHBoa JjAjHh4eHiMwKy4nJycuKzU1MDA1NUBAP0BAQEBAQEBAQEBAQP/CABEIACwA1wMBIgACEQEDEQH/ xACxAAABBQEAAAAAAAAAAAAAAAAAAQIDBAUGAQEBAQAAAAAAAAAAAAAAAAAAAQIQAAICAQMBBwIH AQAAAAAAAAIDAQQAERIFExBAISI0FQYjMyAwUDEUJBY2EQACAAQEAQYKCgMAAAAAAAABAgAREgMh MUEEE1FhcYEiMhCRobHB0VJicgUgQEKCorLCM2MU8UMkEgABAgUFAQAAAAAAAAAAAAAAASEgMBEx cRBQQVFhAv/aAAwDAQACEQMRAAAA7tsbkR6g5Wqr1ieOAAAAAAAAAAAAAAAAKbyRAa5XIKNGqFO9 lM37ScwdQZ9BdexiWE0ynkG5SfXJJYpGlRYiaOKyViQNSCcK8q0yyQKWa8V0djbKJVxOlEz6m4GT JpBFz3TIZ0WuENTRGs1NJTNkvBmGmH//2gAIAQIAAQUA/Sv/2gAIAQMAAQUA7lOuTO3JLTNfGS0z Xx/ILJjJ01nTJyNNfwf/2gAIAQEAAQUAa6AKRKBhSjwVQGRujIPImJ7rx5Q9f3rjSMmkKV5A6Z+8 a5BePc+OiFAz6FloFu8jsiG7jna0vIzSIJVlZnyd+wp1EOQAe23cRTHtumQU69h5cFJXa9aw5th6 ifVuKe6W8XaN9eoNq3UrxceqylkGtirKohqMjouzplgrEZIuq6xO3JSomj5vk+M5EjRyVlg8RJXK 9j5IoiXyxvp8RxybIr6l+xVhhs4Kt/zi0XrVZQwPL3vXp+9U+iPD+j4/0uMrzvG1AySlszo6Z0In BEQGC/kuzkxdT5KlfTfFbBpVuYA/ZrYHMfIBIkfIBIuKr+nh5VKKxL2CsJf56pExVtwde4oivXki XWVXlvEcQJDT48Sir2Ft2/18j3LJ9z0nB27e5//aAAgBAgIGPwDav//aAAgBAwIGPwCdSDK01Xws JiUjuX6Pp+BHowmIf//aAAgBAQEGPwBbaiu6/dQcg1J0EF9xckBmF7Kjrzia7cEaNcw88zGFtFHu kj0RqOuoeuOXo9UYfVW3mZvsSp5EUlUHp64ZWxTbhSF9959rqGUJYQ01As7DOlZCQ6SYUUVMxkoz J1zaP26fhP8AiJ94DUYMIqngcnH6opbBvP0fVLm0yO3chR7jGtD5ZdUC8f27oCXD7LA9g9c5eKFu oJukxL2lOY8kB0MnQ4conmCIFRAUZga+OElmxII5gJzgezcwI96U44RyONs6iWnVDWS44yYMuRPP KLOy2Sht3fmQW7qKNTDDfXEumYoZBLDWeA+gjXiQLjBFkJ9o/QvuhpZbblSMwQphL7OTeKTL696U JvBfNxSFL22Gjc8WttYc21deI7jORyELtrlw3bV0EozZgiN8C5Itg0e73soYXGquWziTnI5QrDcM jBmm2cxhF25/aZeESJSnOQnC7qwJ3kFLJlxEzK9PJFS9pGmGUjEcqsDEhO5ZGWrrze8PL0xUpBYa jBh06xhcbyH0RViWOFRzhETEWzU7aAykF6cYttqLigfe7J88LeKjiICA2sjpDTHd2/Z8nr8F3fjf FN0rnhbUEUUBpBSmsxFzc2WKOUVlYZior64+Xbg7q5d/tlVu22lRJgMlHTG2cXGUcZVpEpTM+10i HNu6xu26RxT3j2hBvbm+bz3grUykqYZL443vzNN09vhs62rQ7lCc3LzwblwlnbbEsxzJKQnwfri1 Zei3t5LiMWKjKHUZLaAHQKY2cvaPoj5j0HzNG2vZJeVrT9MyVj7zRuvif8vgN6w3DvHvaq8tHHpz gJuF4L8pxQ/C+XjgFlBOja+MR2bjjmnP8wMdt3YchMh+GUUqAqjQYCFKY2LJJq0d8sOYeCz80t22 uWqTavqgmQOWHayrhFkKnWmc+SLmxG1D/MBcK2ardQdWbBqpZSi8kpsEUSUYTBXIR8mkp7LJVhlg mcbakEy3CEyE9DF4KCT2cBj9oRa+BfNG++WNauG+WcpSpINtvtT6ICyNX9UiWs6IRZGqjKWPeiyD gaFw6oTeKhe2VouBcSOeLd9UZbFkGRYSmxj5hgcQZYZ4NAtyIcAsuhqBJESYEGo4GN0CCCWeUxze E1yp1nlKP+XiT/h7n4uxGFEv5JT/AAYR/p6qvTH/AHcSnnlwuvh/qgUyplhLKXN4cPqP/9k= ------=_NextPart_000_007F_01C1A57B.353AF020 Content-Type: image/gif; name="Blank Bkgrd.gif" Content-Transfer-Encoding: base64 Content-ID: <519173408@25012002-1726> R0lGODlhLQAtAID/AP////f39ywAAAAALQAtAEACcAxup8vtvxKQsFon6d02898pGkgiYoCm6sq2 7iqWcmzOsmeXeA7uPJd5CYdD2g9oPF58ygqz+XhCG9JpJGmlYrPXGlfr/Yo/VW45e7amp2tou/lW xo/zX513z+Vt+1n/tiX2pxP4NUhy2FM4xtjIUQAAOw== ------=_NextPart_000_007F_01C1A57B.353AF020-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 0:57:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.riic.uni-linz.ac.at (mail.riic.uni-linz.ac.at [140.78.161.130]) by hub.freebsd.org (Postfix) with ESMTP id 2B54C37B400; Wed, 23 Jan 2002 00:57:27 -0800 (PST) Received: from hawkings.riic.uni-linz.ac.at (hawkings.riic.uni-linz.ac.at [140.78.161.239]) by mail.riic.uni-linz.ac.at (8.9.3/8.9.3) with ESMTP id JAA15232; Wed, 23 Jan 2002 09:47:07 +0100 Message-Id: <5.1.0.14.0.20020123093802.02452b30@postoffice.riic.at> X-Sender: hueber@postoffice.riic.at X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Wed, 23 Jan 2002 09:47:39 +0100 To: Fabrizio Ravazzini , freebsd-isp@FreeBSD.ORG From: Gernot Hueber Subject: Re: better way to read qmail logs Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <20020123082653.66472.qmail@web20107.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From matt simersons qmail toaster, although you wont get html output: (you require qmailanalog): Convert Multilog date stamps to human readable date stamps # tai64nlocal < logfile > qmaillog.tmp Statistics about your mail queue: Feed your qmail-send output through matchup and pipe it= through a stats processor: # /usr/local/qmailanalog/bin/matchup <= /var/log/mail/send/current | /usr/local/qmailanalog/bin/z* where z* is one of the following # zddist, zdeferrals, zfailures, zoverall, zrecipients,= zrhosts, zrxdelay, zsenders, zsuccesses, zsuids At 09:26 23.01.2002 +0100, Fabrizio Ravazzini wrote: >hello all, is there a way to read qmail logs via web >interface or some other graphics interface? >We've installed qmail on a mail server but our client >wants to have the logs of the mails sent, so because >the qmail logs are somenthing "cryptic" for a >commercial employee (AARGHH) we need something >simpler. >Or If not graphics also text but more verbosity. >Any help would be appreciated. >Thanks bye. > >______________________________________________________________________ > >Dillo con una cartolina! >http://it.greetings.yahoo.com/ > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-isp" in the body of the message Dipl.-Ing. Gernot Hueber Institut f=FCr Integrierte Schaltungen Freist=E4dter Strasse 315/2 A-4040 Linz Tel: +43 732 2468-7118, Fax: -7126 E-mail: hueber@riic.at To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 1:21:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay3-gui.server.ntli.net (relay3-gui.server.ntli.net [194.168.4.200]) by hub.freebsd.org (Postfix) with ESMTP id E62E337B425 for ; Wed, 23 Jan 2002 01:21:28 -0800 (PST) Received: from pc3-card4-0-cust122.cdf.cable.ntl.com ([62.254.251.122] helo=rhadamanth.private.submonkey.net ident=exim) by relay3-gui.server.ntli.net with esmtp (Exim 3.03 #2) id 16TJaw-00023r-00; Wed, 23 Jan 2002 09:21:26 +0000 Received: from setantae by rhadamanth.private.submonkey.net with local (Exim 3.34 #1) id 16TJXQ-0000PX-00; Wed, 23 Jan 2002 09:17:48 +0000 Date: Wed, 23 Jan 2002 09:17:48 +0000 From: Ceri To: Roberto Armenteros Cc: freebsd-questions@freebsd.org Subject: Re: Headache getting XFree to work with NVidia GeForce 2 Message-ID: <20020123091748.GB1450@rhadamanth> Mail-Followup-To: Ceri , Roberto Armenteros , freebsd-questions@freebsd.org References: <20020123020441.95879.qmail@web13602.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020123020441.95879.qmail@web13602.mail.yahoo.com> User-Agent: Mutt/1.3.26i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 06:04:41PM -0800, Roberto Armenteros wrote: > If anyone has gotten installed XFree 4.x on a machine > with an NVidia GForce 2 Card, please, I am in > desperate situation to get it working. I need clean > steps to follow. After installing the basic system > first "full binaries and source without X Window > System" how should I proceed exactly? When I try to > install XFree 4.x from the ports at > /usr/ports/x11/XFree-4x by typing "make all install > clean" then I says that it cant find the XFree4x.tar > file "I dont know why it needs it." I WOULD REALLY > appreciate your help. I need to get this going... Get the latest port. The GeForce 2 card is now supported by the nv driver with XFree86 4.2.0. Ceri -- keep a mild groove on To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 1:58:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id 0FA3F37B416 for ; Wed, 23 Jan 2002 01:58:44 -0800 (PST) Received: (qmail 7421 invoked by uid 0); 23 Jan 2002 09:58:42 -0000 Received: from tk212017108240.univie.teleweb.at (HELO Deadcell.ANT) (212.17.108.240) by mail.gmx.net (mp015-rz3) with SMTP; 23 Jan 2002 09:58:42 -0000 Received: (from ant@localhost) by Deadcell.ANT (8.11.6/8.11.6) id g0N9wfn26727; Wed, 23 Jan 2002 10:58:41 +0100 (CET) (envelope-from ant) Date: Wed, 23 Jan 2002 10:58:41 +0100 From: Andreas Ntaflos To: freebsd-stable@freebsd.org Cc: freebsd-questions@freebsd.org Subject: boot2: -972 bytes available; build error. wtf? Message-ID: <20020123105841.A26714@Deadcell.ANT> Mail-Followup-To: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Howdy, This is a problem I've encountered some times now when building world, I've already posted about this but did not get any responses, so I'll just try again with further information: Situation: fresh, updated /usr/src, empty /usr/obj, FreeBSD 4.4-STABLE built Dec 4 2001. Whenever I do buildworld it goes well until it comes to compile /usr/src/sys/boot/i386/boot2. There it bails with the following errors: btxld -v -E 0x1000 -f bin -b /usr/obj/usr/src/sys/boot/i386/boot2/../btx/btx/btx -l boot2.ldr -o boot2.ld -P 1 boot2.bin kernel: ver=1.01 size=740 load=9000 entry=9010 map=16M pgctl=1:1 client: fmt=bin size=188c text=0 data=0 bss=0 entry=0 output: fmt=bin size=21cc text=200 data=1fcc org=0 entry=0 -972 bytes available *** Error code 1 Stop in /usr/src/sys/boot/i386/boot2. cd'ing to /usr/src7sys/i386/boot2 and issuing a make results in the same errors (obviously). So I've no idea why this could be, the error message message "-972 bytes available" is kinda cryptic, doesn't tell my any- thing. In the past, I've had this error, but somehow it randomly appeared and disappeared, otherwise I would not have been able to build world. Has anyone an idea about this, or can anyone give me a hint? Help appreciated. thanks and regards -- Andreas "ant" Ntaflos ntaflos.andreas@gmx.net Vienna, AUSTRIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 1:59:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gw.intime.sk (mail.intime.sk [195.80.188.167]) by hub.freebsd.org (Postfix) with ESMTP id 436A537B420 for ; Wed, 23 Jan 2002 01:59:38 -0800 (PST) Received: from karol (bts-a-karol.z.sps.sk [10.10.240.14]) by gw.intime.sk (8.11.3/8.11.3) with SMTP id g0N9uGK50119 for ; Wed, 23 Jan 2002 10:56:20 +0100 (CET) (envelope-from karol.kostial@ups.sk) Message-ID: <00bc01c1a3f4$4a854440$0ef00a0a@karol> From: "Karol Kostial" To: Subject: Help ! Date: Wed, 23 Jan 2002 10:56:50 +0100 Organization: UPS - SPS s.r.o. MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_00B9_01C1A3FC.A925D700" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_00B9_01C1A3FC.A925D700 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable Hallo ! Somebody add @ups.sk adresses to mailing list users-l@freebsd.cz. Can = you please delete this adresses, we dont want receive this bulk mails. Thank you wery much Karol Kostial System administrator UPS Slovakia ------=_NextPart_000_00B9_01C1A3FC.A925D700 Content-Type: text/html; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable
Hallo !
 
Somebody add  @ups.sk adresses to = mailing list=20 users-l@freebsd.cz. Can you = please=20 delete this adresses, we dont want
receive this bulk mails.
 
Thank you wery much
 
Karol Kostial
System administrator UPS = Slovakia
 
------=_NextPart_000_00B9_01C1A3FC.A925D700-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 2:36:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sauber.net (adsl-66-120-9-102.dsl.sntc01.pacbell.net [66.120.9.102]) by hub.freebsd.org (Postfix) with ESMTP id 6CA5637B402 for ; Wed, 23 Jan 2002 02:36:19 -0800 (PST) Received: from ctj-139.1.1.10.in-addr.arpa (blue-edge-alt [210.132.88.42]) by sauber.net (8.11.3/8.11.3) with ESMTP id g0NAaEO25795 for ; Wed, 23 Jan 2002 02:36:14 -0800 (PST) (envelope-from sauber@netcom.com) Date: Wed, 23 Jan 2002 19:36:08 +0900 (JST) From: X-X-Sender: To: Subject: racoon: Invalid authority of the CERT. Message-ID: <20020123193424.B58931-100000@localhost> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm attempting to set up racoon to deal with win2000 road warriors and I'm having trouble with certificates. I have created the certificates, put them into /usr/local/etc/certs and loaded them on the win2000 computer. It seems to be kind of working. But when I attempt to establish a connection, racoon says: 2002-01-22 13:25:57: ERROR: crypto_openssl.c:337:cb_check_cert(): unable to get local issuer certificate(20) at depth:0 SubjectName:/C=JP/ST=Tokyo-to/O=CTJ/OU=IT/CN=Soren Dossing/Email=sauber@ctjorsomething.com 2002-01-22 13:25:57: ERROR: oakley.c:1300:oakley_validate_auth(): Invalid authority of the CERT. The certificates are self-certified. I think I need precisely guidelines for how to create certificates, how to place them in the right places and how to utilize them correctly from configuration files. If it matters, I'm using fbsd-4.4 and racoon-20010831a. Soren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 3: 9:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C12437B402 for ; Wed, 23 Jan 2002 03:09:39 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16TLHe-0009fg-00 for freebsd-questions@freebsd.org; Wed, 23 Jan 2002 11:09:38 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 457B2118A; Wed, 23 Jan 2002 12:09:36 +0100 (CET) Date: Wed, 23 Jan 2002 12:09:36 +0100 From: Cliff Sarginson To: freebsd-questions@FreeBSD.ORG Subject: Re: A question from a convert from Windows to FreeBSD Message-ID: <20020123110936.GA1117@raggedclown.net> References: <007b01c1a381$93765900$328dfea9@pegasus> <2807.198.151.239.42.1011756241.squirrel@y3k.shacknet.nu> <00c801c1a3d8$438a8720$0100a8c0@pegasus> <20020123073218.GB4008@raggedclown.net> <016101c1a3e8$e58f52c0$0100a8c0@pegasus> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <016101c1a3e8$e58f52c0$0100a8c0@pegasus> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jan 23, 2002 at 02:35:20AM -0600, Bob Giesen wrote: > ----- Original Message ----- > From: "Cliff Sarginson" > To: > Sent: Wednesday, January 23, 2002 1:32 AM > Subject: Re: A question from a convert from Windows to FreeBSD > > > > ...it really would be much better > > if people stopped taking Windows as some kind of model to which > > FreeBSD should aspire... > > Geez, Cliff, I never suggested that FreeBSD should aspire to be like > Windoze! I was not particularly addressing the remark at you personally. > One soon-to-be ex-Win user mentioned the difficulty of installing > FreeBSD, another person took issue with that, and I simply pointed out what > should be obvious -- that there's good reason for a non-UNIX-guru who's used > to well-planned InstallShield-type installations to feel that the FreeBSD > installation is more difficult. Did I say anything on that subject as such ? Do you not think that comment has been made ad-nauseam on this list ? Has one of the people making that comment said that he or she will do something practical to ease the pain, or perceived pain ? > Your love of FreeBSD is duly noted -- but remember that love can be > blind. FreeBSD's not perfect in every way -- and (prepare for blasphemy...) > it's not better than Winblows in every way. (Most ways, by far, but not > every.) Can you not still be a defender of the OS while recognizing that > another is, indeed, better in some ways? I told you, I do not involve myself in such discussions in public. I am not in love with FreeBSD, (I hate computers actually, but if I have to use one then FreeBSD is my choice). Blasphemy, mmm. I was trying to make the point they are not useful. They happen so often on this list, and they go nowhere. They go nowhere because there are too many axes being ground, too much point-scoring. You see I don't really care whether Windows is Better than FreeBSD or vice-versa; I think it is a non-issue actually. Like is not being compared to like. Except for the fact they both run on a computer.. :) > Lighten thee up. It's just a couple of opinions about a work in > progress -- and flowery verse won't change mine. I am very light thank you :) I am not trying to change anyone's opinions. The last windows versus freebsd thread on this list went to over 100 messages in a single thread. I ended up saving the delete key on my keyboard from breaking down by rejecting all mail in that thread at the point of entry to my mailhost. Anyway, I am teetering again on the edge of breaking my New Year's resolution, so this is my last contribution to this thread. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 3:45:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from netmail2.alcatel.com (netmail2.alcatel.com [128.251.168.51]) by hub.freebsd.org (Postfix) with ESMTP id 50E1737B404; Wed, 23 Jan 2002 03:45:40 -0800 (PST) Received: from auds953.usa.alcatel.com (auds953.usa.alcatel.com [143.209.238.6]) by netmail2.alcatel.com (8.9.1/8.9.1) with ESMTP id FAA22900; Wed, 23 Jan 2002 05:45:39 -0600 (CST) Received: from alcatel.com (localhost [127.0.0.1]) by auds953.usa.alcatel.com (8.10.2/8.10.2) with ESMTP id g0NBjbr00500; Wed, 23 Jan 2002 05:45:38 -0600 (CST) Message-ID: <3C4EA34F.F5433298@alcatel.com> Date: Wed, 23 Jan 2002 17:19:35 +0530 From: sanjay X-Mailer: Mozilla 4.74 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: wilko@FreeBSD.org, freebsd-questions@FreeBSD.org Subject: Info required. Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I'm interested in buying a perfect system and my application is for 5PC at my home which i'll be connecting via hub. Which motherboard you recomend. I'm interested in going for AMD Duron Processor. Let me have the best supported display card for 4.3BSD. Regards. Sanjay To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 3:59:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.nocpeople.net (mx1.nocpeople.net [216.29.244.16]) by hub.freebsd.org (Postfix) with ESMTP id B4FB437B402 for ; Wed, 23 Jan 2002 03:59:30 -0800 (PST) Received: from mail.daytondigital.net (mail.nocpeople.net [216.29.244.21]) by mx1.nocpeople.net (Postfix) with ESMTP id 7596E53501 for ; Wed, 23 Jan 2002 06:56:31 -0500 (EST) Received: from Hewey [64.105.103.198] by mail.daytondigital.net (SMTPD32-6.06) id A49514430142; Wed, 23 Jan 2002 06:55:01 -0500 Message-ID: <039701c1a405$5ddad9e0$0401a8c0@Hewey> From: "Allen May" To: Subject: Looking for a FreeBSD solution for a T1 Router Date: Wed, 23 Jan 2002 06:59:09 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0394_01C1A3DB.74B3CBB0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0394_01C1A3DB.74B3CBB0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable We are quoting on installation of a low budget wireless bridge between = two buildings..=20 We are delivering a T1 to an industrial park for two companies to = share... basically building one is the host building and currently there is only = one building that we will share with... others would require us to upgrade = the wap to a APII or TT CPR or something... but not for just one client .... Can anyone suggest a FreeBSD or Linux solution for the T1 Router and to = serve as an Access Point as well as server local ethernet to the building we would be in... (Estimated Cost to configure this system... I know the cost of the PCI adapter and Orionoco Card as well as the Moxa card for the T1 and the Ethernet card... We could use a Cisco 2610 with a 2 DLINK DI-704's one going to ethernet local and the other going to the wap-11 but we would like to = avoice=20 the 2610's cost for this venture... at least for now... Allen May DAYTON DIGITAL NETWORKS ------=_NextPart_000_0394_01C1A3DB.74B3CBB0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
We are quoting on installation of a low budget wireless bridge = between=20 two buildings..

We are delivering a T1 to an industrial park for two companies = to=20 share...
basically building one is the host building and currently = there is=20 only one
building that we will share with... others would = require us to=20 upgrade the
wap to a APII or TT CPR or something... but not for just = one=20 client ....

Can anyone suggest a FreeBSD or Linux solution for = the T1=20 Router and to serve as an Access Point
as well as server local = ethernet to=20 the building we would be in...
(Estimated Cost to configure this = system... I=20 know the cost of the PCI
adapter and Orionoco Card as well as the = Moxa card=20 for the T1 and the
Ethernet card...

We could use a Cisco = 2610=20 with a 2 DLINK DI-704's  one going to
ethernet local and the = other going=20 to the wap-11 but we would like to avoice
the 2610's cost for this venture... at least for = now...

Allen=20 May
DAYTON DIGITAL NETWORKS
------=_NextPart_000_0394_01C1A3DB.74B3CBB0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 4: 2:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.mail.pas.earthlink.net [207.217.120.50]) by hub.freebsd.org (Postfix) with ESMTP id 1766C37B41B for ; Wed, 23 Jan 2002 04:02:30 -0800 (PST) Received: from dialup-209.245.141.241.dial1.sanjose1.level3.net ([209.245.141.241] helo=blossom.cjclark.org) by avocet.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16TM6Y-0000S8-00; Wed, 23 Jan 2002 04:02:14 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g0NC1EL85708; Wed, 23 Jan 2002 04:01:14 -0800 (PST) (envelope-from cjc) Date: Wed, 23 Jan 2002 04:01:14 -0800 From: "Crist J . Clark" To: parv Cc: Cliff Sarginson , f-q Subject: Re: is /usr/bin/passwd advisable as a login shell for ftp only users? Message-ID: <20020123040114.H83184@blossom.cjclark.org> References: <20020123035805.GA92721@moo.holy.cow> <20020123041706.GH1345@raggedclown.net> <20020123061342.GA92756@moo.holy.cow> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020123061342.GA92756@moo.holy.cow>; from parv_@yahoo.com on Wed, Jan 23, 2002 at 01:13:42AM -0500 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jan 23, 2002 at 01:13:42AM -0500, parv wrote: [snip] > i didn't think of the "suid" bit, but was well aware that passwd has > access to the passwd database. Actually, that's not the big security risk. The primary risk is that you give the world pretty much open access to try to brute force the password with a dictionary attack and no alarms will go off. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 4:14:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from nova.kettering.edu (nova.kettering.edu [192.138.137.2]) by hub.freebsd.org (Postfix) with ESMTP id 8135F37B400 for ; Wed, 23 Jan 2002 04:14:34 -0800 (PST) Received: from infinity.kettering.edu (infinity.kettering.edu [198.110.5.123]) by nova.kettering.edu (8.10.1/8.10.0) with ESMTP id g0NCCsc16433 for ; Wed, 23 Jan 2002 07:12:54 -0500 (EST) Received: from localhost (acheng@localhost) by infinity.kettering.edu (8.11.6/8.11.6) with ESMTP id g0NCFKH17703 for ; Wed, 23 Jan 2002 07:15:20 -0500 (EST) (envelope-from acheng@e-math.ams.org) X-Authentication-Warning: infinity.kettering.edu: acheng owned process doing -bs Date: Wed, 23 Jan 2002 07:15:20 -0500 (EST) From: Ada Cheng X-X-Sender: To: Subject: Sources for sound problem Message-ID: <20020123070657.Q17603-100000@infinity.kettering.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Good morning, I have a Integrated Analog Devices AD1885 AC'97 audio (came standard with my Dell Dimension Workstation) and am running 4.4 stable. In my kernel I am using device pcm and dmesg has the following line pcm0: port 0xcc40-0xcc7f,0xc800-0xc8ff irq 11 at device 31.5 on pci0. I can listen to cd fine but the when I try playing real audio or mp3 files, the resulting sound is at a very high and wrong pitch. Did I configure the sound card incorrectly? Many thanks in advance. Ada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 4:27:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from grover.logicsquad.net (CPE-144-137-193-52.sa.bigpond.net.au [144.137.193.52]) by hub.freebsd.org (Postfix) with SMTP id 16E9237B400 for ; Wed, 23 Jan 2002 04:27:17 -0800 (PST) Received: (qmail 10572 invoked from network); 23 Jan 2002 12:27:13 -0000 Received: from unknown (HELO logicsquad.net) (192.168.0.1) by 192.168.0.1 with SMTP; 23 Jan 2002 12:27:13 -0000 Received: from 203.49.60.114 (SquirrelMail authenticated user paulh) by grover.logicsquad.net with HTTP; Wed, 23 Jan 2002 22:57:13 +1030 (CST) Message-ID: <1672.203.49.60.114.1011788833.squirrel@grover.logicsquad.net> Date: Wed, 23 Jan 2002 22:57:13 +1030 (CST) Subject: Re: Qmail/Samba tutorial From: "Paul A. Hoadley" To: In-Reply-To: <4.2.0.58.20020121135021.00986420@pop.netzero.net> References: <4.2.0.58.20020121135021.00986420@pop.netzero.net> X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal Cc: Reply-To: paulh@logicsquad.net X-Mailer: SquirrelMail (version 1.2.2) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Lord Raiden said: > Hey, does anyone know of any good tutorials for setting up Samba and > Qmail? [...] > The simpler and more straight forward the tutorials the better. There are step-by-step instructions for qmail here: http://logicsquad.net/freebsd/qmail-how-to.html -- Paul. mailto:paulh@logicsquad.net mailto:paul.hoadley@student.adelaide.edu.au To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 4:33:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web10005.mail.yahoo.com (web10005.mail.yahoo.com [216.136.130.41]) by hub.freebsd.org (Postfix) with SMTP id 202E637B402 for ; Wed, 23 Jan 2002 04:33:43 -0800 (PST) Message-ID: <20020123123342.14669.qmail@web10005.mail.yahoo.com> Received: from [206.148.72.93] by web10005.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 04:33:42 PST Date: Wed, 23 Jan 2002 04:33:42 -0800 (PST) From: Kenneth Stailey Subject: Documenation for arp? To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I asked where the documentation for the API to ARP is. I was told that route(4) documentation was it. But then I find this: $ man 4 route | grep -i arp | wc -l 0 Is there a more reasonable answer to my question? What I really want to know is what is the format of the messages to write on the PF_ROUTE raw socket to do an ARP table addtion without calling system("/usr/sbin/arp -blah") Please CC: me I'm not on this list. __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 4:37: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rambo.simx.org (rambo.simx.org [194.17.208.54]) by hub.freebsd.org (Postfix) with ESMTP id 5ECC037B400 for ; Wed, 23 Jan 2002 04:36:58 -0800 (PST) Received: from rambo.simx.org (malin.twenty4help.se [195.67.108.195]) by rambo.simx.org (8.11.6/8.11.6) with ESMTP id g0NCagX61792; Wed, 23 Jan 2002 13:36:45 +0100 (CET) (envelope-from listsub@rambo.simx.org) Message-ID: <3C4EAE55.1080800@rambo.simx.org> Date: Wed, 23 Jan 2002 13:36:37 +0100 From: "Roger 'Rocky' Vetterberg" User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: paulh@logicsquad.net Cc: raiden23@netzero.net, freebsd-questions@FreeBSD.ORG Subject: Re: Qmail/Samba tutorial References: <4.2.0.58.20020121135021.00986420@pop.netzero.net> <1672.203.49.60.114.1011788833.squirrel@grover.logicsquad.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Paul A. Hoadley wrote: >Lord Raiden said: > >>Hey, does anyone know of any good tutorials for setting up Samba and >>Qmail? >> > >[...] > >>The simpler and more straight forward the tutorials the better. >> > >There are step-by-step instructions for qmail here: > >http://logicsquad.net/freebsd/qmail-how-to.html > A very simple Samba tutorial can be found at http://bsdvault.net/sections.php?op=viewarticle&artid=8 -- R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 5: 7:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.isg.siue.edu (mail.isg.siue.edu [146.163.5.4]) by hub.freebsd.org (Postfix) with ESMTP id 7E51C37B402 for ; Wed, 23 Jan 2002 05:07:22 -0800 (PST) Received: from WEBSHIELD1.isg.siue.edu (webshield1.isg.siue.edu [146.163.5.149]) by mail.isg.siue.edu (8.9.1/8.9.1) with SMTP id HAA08073 for ; Wed, 23 Jan 2002 07:07:10 -0600 (CST) Received: FROM mail.isg.siue.edu BY WEBSHIELD1.isg.siue.edu ; Wed Jan 23 07:07:10 2002 -0600 Received: from cougar (cougar [146.163.5.29]) by mail.isg.siue.edu (8.9.1/8.9.1) with ESMTP id HAA08064 for ; Wed, 23 Jan 2002 07:07:07 -0600 (CST) Date: Wed, 23 Jan 2002 07:07:07 -0600 (CST) From: William Michael Grim To: freebsd-questions@freebsd.org Subject: please help with SB Live rear speakers Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-851401618-1011791227=:20499" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. ---559023410-851401618-1011791227=:20499 Content-Type: TEXT/PLAIN; charset=US-ASCII Hello there, I wish to make my rear speakers work on my SB Live (emu10k1). I have "device pcm" in my kernel and have included that for everyone to see in case anything else needs to be done. Anyway, in Gnome, I guess it uses "esd" and that doesn't make rear work (at least as is), and mpg123 in pure console will not make the rears work either. Would someone please help me get this going as it is pretty important to me. Thanks a ton for any help you can offer, Mike William Michael Grim Student, Southern Illinois University at Edwardsville Phone: (618) 650-1582 Email: wgrim@siue.edu ---559023410-851401618-1011791227=:20499 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=ZEUS Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=ZEUS Iw0KIyBHRU5FUklDIC0tIEdlbmVyaWMga2VybmVsIGNvbmZpZ3VyYXRpb24g ZmlsZSBmb3IgRnJlZUJTRC9pMzg2DQojDQojIEZvciBtb3JlIGluZm9ybWF0 aW9uIG9uIHRoaXMgZmlsZSwgcGxlYXNlIHJlYWQgdGhlIGhhbmRib29rIHNl Y3Rpb24gb24NCiMgS2VybmVsIENvbmZpZ3VyYXRpb24gRmlsZXM6DQojDQoj ICAgIGh0dHA6Ly93d3cuRnJlZUJTRC5vcmcvaGFuZGJvb2sva2VybmVsY29u ZmlnLWNvbmZpZy5odG1sDQojDQojIFRoZSBoYW5kYm9vayBpcyBhbHNvIGF2 YWlsYWJsZSBsb2NhbGx5IGluIC91c3Ivc2hhcmUvZG9jL2hhbmRib29rDQoj IGlmIHlvdSd2ZSBpbnN0YWxsZWQgdGhlIGRvYyBkaXN0cmlidXRpb24sIG90 aGVyd2lzZSBhbHdheXMgc2VlIHRoZQ0KIyBGcmVlQlNEIFdvcmxkIFdpZGUg V2ViIHNlcnZlciAoaHR0cDovL3d3dy5GcmVlQlNELm9yZy8pIGZvciB0aGUN CiMgbGF0ZXN0IGluZm9ybWF0aW9uLg0KIw0KIyBBbiBleGhhdXN0aXZlIGxp c3Qgb2Ygb3B0aW9ucyBhbmQgbW9yZSBkZXRhaWxlZCBleHBsYW5hdGlvbnMg b2YgdGhlDQojIGRldmljZSBsaW5lcyBpcyBhbHNvIHByZXNlbnQgaW4gdGhl IC4vTElOVCBjb25maWd1cmF0aW9uIGZpbGUuIElmIHlvdSBhcmUNCiMgaW4g ZG91YnQgYXMgdG8gdGhlIHB1cnBvc2Ugb3IgbmVjZXNzaXR5IG9mIGEgbGlu ZSwgY2hlY2sgZmlyc3QgaW4gTElOVC4NCiMNCiMgJEZyZWVCU0Q6IHNyYy9z eXMvaTM4Ni9jb25mL0dFTkVSSUMsdiAxLjI0Ni4yLjM0IDIwMDEvMDgvMTIg MTM6MTM6NDYgam9lcmcgRXhwICQNCg0KbWFjaGluZQkJaTM4Ng0KY3B1CQlJ Njg2X0NQVQ0KaWRlbnQJCVpFVVMNCm1heHVzZXJzCTMyDQoNCiNtYWtlb3B0 aW9ucwlERUJVRz0tZwkJI0J1aWxkIGtlcm5lbCB3aXRoIGdkYigxKSBkZWJ1 ZyBzeW1ib2xzDQoNCm9wdGlvbnMgCU1BVEhfRU1VTEFURQkJI1N1cHBvcnQg Zm9yIHg4NyBlbXVsYXRpb24NCm9wdGlvbnMgCUlORVQJCQkjSW50ZXJORVR3 b3JraW5nDQpvcHRpb25zIAlJTkVUNgkJCSNJUHY2IGNvbW11bmljYXRpb25z IHByb3RvY29scw0Kb3B0aW9ucyAJRkZTCQkJI0JlcmtlbGV5IEZhc3QgRmls ZXN5c3RlbQ0Kb3B0aW9ucyAJRkZTX1JPT1QJCSNGRlMgdXNhYmxlIGFzIHJv b3QgZGV2aWNlIFtrZWVwIHRoaXMhXQ0Kb3B0aW9ucyAJU09GVFVQREFURVMJ CSNFbmFibGUgRkZTIHNvZnQgdXBkYXRlcyBzdXBwb3J0DQpvcHRpb25zIAlN RlMJCQkjTWVtb3J5IEZpbGVzeXN0ZW0NCm9wdGlvbnMgCU1EX1JPT1QJCQkj TUQgaXMgYSBwb3RlbnRpYWwgcm9vdCBkZXZpY2UNCm9wdGlvbnMgCU5GUwkJ CSNOZXR3b3JrIEZpbGVzeXN0ZW0NCm9wdGlvbnMgCU5GU19ST09UCQkjTkZT IHVzYWJsZSBhcyByb290IGRldmljZSwgTkZTIHJlcXVpcmVkDQpvcHRpb25z IAlNU0RPU0ZTCQkJI01TRE9TIEZpbGVzeXN0ZW0NCm9wdGlvbnMgCUNEOTY2 MAkJCSNJU08gOTY2MCBGaWxlc3lzdGVtDQpvcHRpb25zIAlDRDk2NjBfUk9P VAkJI0NELVJPTSB1c2FibGUgYXMgcm9vdCwgQ0Q5NjYwIHJlcXVpcmVkDQpv cHRpb25zIAlQUk9DRlMJCQkjUHJvY2VzcyBmaWxlc3lzdGVtDQpvcHRpb25z IAlDT01QQVRfNDMJCSNDb21wYXRpYmxlIHdpdGggQlNEIDQuMyBbS0VFUCBU SElTIV0NCm9wdGlvbnMgCVNDU0lfREVMQVk9MTUwMDAJI0RlbGF5IChpbiBt cykgYmVmb3JlIHByb2JpbmcgU0NTSQ0Kb3B0aW9ucyAJVUNPTlNPTEUJCSNB bGxvdyB1c2VycyB0byBncmFiIHRoZSBjb25zb2xlDQpvcHRpb25zIAlVU0VS Q09ORklHCQkjYm9vdCAtYyBlZGl0b3INCm9wdGlvbnMgCVZJU1VBTF9VU0VS Q09ORklHCSN2aXN1YWwgYm9vdCAtYyBlZGl0b3INCm9wdGlvbnMgCUtUUkFD RQkJCSNrdHJhY2UoMSkgc3VwcG9ydA0Kb3B0aW9ucyAJU1lTVlNITQkJCSNT WVNWLXN0eWxlIHNoYXJlZCBtZW1vcnkNCm9wdGlvbnMgCVNZU1ZNU0cJCQkj U1lTVi1zdHlsZSBtZXNzYWdlIHF1ZXVlcw0Kb3B0aW9ucyAJU1lTVlNFTQkJ CSNTWVNWLXN0eWxlIHNlbWFwaG9yZXMNCm9wdGlvbnMgCVAxMDAzXzFCCQkj UG9zaXggUDEwMDNfMUIgcmVhbC10aW1lIGV4dGVuc2lvbnMNCm9wdGlvbnMg CV9LUE9TSVhfUFJJT1JJVFlfU0NIRURVTElORw0Kb3B0aW9ucwkJSUNNUF9C QU5ETElNCQkjUmF0ZSBsaW1pdCBiYWQgcmVwbGllcw0Kb3B0aW9ucyAJS0JE X0lOU1RBTExfQ0RFVgkjIGluc3RhbGwgYSBDREVWIGVudHJ5IGluIC9kZXYN Cg0KIyBUbyBtYWtlIGFuIFNNUCBrZXJuZWwsIHRoZSBuZXh0IHR3byBhcmUg bmVlZGVkDQojb3B0aW9ucyAJU01QCQkJIyBTeW1tZXRyaWMgTXVsdGlQcm9j ZXNzb3IgS2VybmVsDQojb3B0aW9ucyAJQVBJQ19JTwkJCSMgU3ltbWV0cmlj IChBUElDKSBJL08NCg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIw0KIyBCZWdpbiBhZGRpdGlvbnMNCmRldmljZQkJcGNtCQkJIyBGb3Ig c291bmQgc3VwcG9ydA0KDQpvcHRpb25zICAgICAgICAgVVNFUl9MRFQNCm9w dGlvbnMgICAgICAgICBTWVNWU0hNDQpvcHRpb25zICAgICAgICAgU1lTVlNF TQ0Kb3B0aW9ucyAgICAgICAgIFNZU1ZNU0cNCiMgRW5kIGFkZGl0aW9ucw0K IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KDQpkZXZpY2UJ CWlzYQ0KZGV2aWNlCQllaXNhDQpkZXZpY2UJCXBjaQ0KDQojIEZsb3BweSBk cml2ZXMNCmRldmljZQkJZmRjMAlhdCBpc2E/IHBvcnQgSU9fRkQxIGlycSA2 IGRycSAyDQpkZXZpY2UJCWZkMAlhdCBmZGMwIGRyaXZlIDANCiNkZXZpY2UJ CWZkMQlhdCBmZGMwIGRyaXZlIDENCiMNCiMgSWYgeW91IGhhdmUgYSBUb3No aWJhIExpYnJldHRvIHdpdGggaXRzIFktRSBEYXRhIFBDTUNJQSBmbG9wcHks DQojIGRvbid0IHVzZSB0aGUgYWJvdmUgbGluZSBmb3IgZmRjMCBidXQgdGhl IGZvbGxvd2luZyBvbmU6DQojZGV2aWNlCQlmZGMwDQoNCiMgQVRBIGFuZCBB VEFQSSBkZXZpY2VzDQpkZXZpY2UJCWF0YTAJYXQgaXNhPyBwb3J0IElPX1dE MSBpcnEgMTQNCmRldmljZQkJYXRhMQlhdCBpc2E/IHBvcnQgSU9fV0QyIGly cSAxNQ0KZGV2aWNlCQlhdGENCmRldmljZQkJYXRhZGlzawkJCSMgQVRBIGRp c2sgZHJpdmVzDQpkZXZpY2UJCWF0YXBpY2QJCQkjIEFUQVBJIENEUk9NIGRy aXZlcw0KI2RldmljZQkJYXRhcGlmZAkJCSMgQVRBUEkgZmxvcHB5IGRyaXZl cw0KI2RldmljZQkJYXRhcGlzdAkJCSMgQVRBUEkgdGFwZSBkcml2ZXMNCm9w dGlvbnMgCUFUQV9TVEFUSUNfSUQJCSNTdGF0aWMgZGV2aWNlIG51bWJlcmlu Zw0KDQojIFNDU0kgQ29udHJvbGxlcnMNCiNkZXZpY2UJCWFoYgkJIyBFSVNB IEFIQTE3NDIgZmFtaWx5DQojZGV2aWNlCQlhaGMJCSMgQUhBMjk0MCBhbmQg b25ib2FyZCBBSUM3eHh4IGRldmljZXMNCiNkZXZpY2UJCWFtZAkJIyBBTUQg NTNDOTc0IChUZWtyYW0gREMtMzkwKFQpKQ0KI2RldmljZQkJaXNwCQkjIFFs b2dpYyBmYW1pbHkNCiNkZXZpY2UJCW5jcgkJIyBOQ1IvU3ltYmlvcyBMb2dp Yw0KI2RldmljZQkJc3ltCQkjIE5DUi9TeW1iaW9zIExvZ2ljIChuZXdlciBj aGlwc2V0cykNCiNvcHRpb25zCQlTWU1fU0VUVVBfTFBfUFJPQkVfTUFQPTB4 NDANCgkJCQkjIEFsbG93IG5jciB0byBhdHRhY2ggbGVnYWN5IE5DUiBkZXZp Y2VzIHdoZW4gDQoJCQkJIyBib3RoIHN5bSBhbmQgbmNyIGFyZSBjb25maWd1 cmVkDQoNCiNkZXZpY2UJCWFkdjAJYXQgaXNhPw0KI2RldmljZQkJYWR3DQoj ZGV2aWNlCQlidDAJYXQgaXNhPw0KI2RldmljZQkJYWhhMAlhdCBpc2E/DQoj ZGV2aWNlCQlhaWMwCWF0IGlzYT8NCg0KI2RldmljZQkJbmN2CQkjIE5DUiA1 M0M1MDANCiNkZXZpY2UJCW5zcAkJIyBXb3JrYml0IE5pbmphIFNDU0ktMw0K I2RldmljZQkJc3RnCQkjIFRNQyAxOEMzMC8xOEM1MA0KDQojIFNDU0kgcGVy aXBoZXJhbHMNCiNkZXZpY2UJCXNjYnVzCQkjIFNDU0kgYnVzIChyZXF1aXJl ZCkNCiNkZXZpY2UJCWRhCQkjIERpcmVjdCBBY2Nlc3MgKGRpc2tzKQ0KI2Rl dmljZQkJc2EJCSMgU2VxdWVudGlhbCBBY2Nlc3MgKHRhcGUgZXRjKQ0KI2Rl dmljZQkJY2QJCSMgQ0QNCiNkZXZpY2UJCXBhc3MJCSMgUGFzc3Rocm91Z2gg ZGV2aWNlIChkaXJlY3QgU0NTSSBhY2Nlc3MpDQoNCiMgUkFJRCBjb250cm9s bGVycyBpbnRlcmZhY2VkIHRvIHRoZSBTQ1NJIHN1YnN5c3RlbQ0KI2Rldmlj ZQkJYXNyCQkjIERQVCBTbWFydFJBSUQgViwgVkkgYW5kIEFkYXB0ZWMgU0NT SSBSQUlEDQojZGV2aWNlCQlkcHQJCSMgRFBUIFNtYXJ0Y2FjaGUgLSBTZWUg TElOVCBmb3Igb3B0aW9ucyENCiNkZXZpY2UJCW1seQkJIyBNeWxleCBBY2Nl bGVSQUlEL2VYdHJlbWVSQUlEDQoNCiMgUkFJRCBjb250cm9sbGVycw0KI2Rl dmljZQkJYWFjCQkjIEFkYXB0ZWMgRlNBIFJBSUQsIERlbGwgUEVSQzIvUEVS QzMNCiNkZXZpY2UJCWlkYQkJIyBDb21wYXEgU21hcnQgUkFJRA0KI2Rldmlj ZQkJYW1yCQkjIEFNSSBNZWdhUkFJRA0KI2RldmljZQkJbWx4CQkjIE15bGV4 IERBQzk2MCBmYW1pbHkNCiNkZXZpY2UJCXR3ZQkJIyAzd2FyZSBFc2NhbGFk ZQ0KDQojIGF0a2JkYzAgY29udHJvbHMgYm90aCB0aGUga2V5Ym9hcmQgYW5k IHRoZSBQUy8yIG1vdXNlDQpkZXZpY2UJCWF0a2JkYzAJYXQgaXNhPyBwb3J0 IElPX0tCRA0KZGV2aWNlCQlhdGtiZDAJYXQgYXRrYmRjPyBpcnEgMSBmbGFn cyAweDENCmRldmljZQkJcHNtMAlhdCBhdGtiZGM/IGlycSAxMg0KDQpkZXZp Y2UJCXZnYTAJYXQgaXNhPw0KDQojIHNwbGFzaCBzY3JlZW4vc2NyZWVuIHNh dmVyDQpwc2V1ZG8tZGV2aWNlCXNwbGFzaA0KDQojIHN5c2NvbnMgaXMgdGhl IGRlZmF1bHQgY29uc29sZSBkcml2ZXIsIHJlc2VtYmxpbmcgYW4gU0NPIGNv bnNvbGUNCmRldmljZQkJc2MwCWF0IGlzYT8gZmxhZ3MgMHgxMDANCg0KIyBF bmFibGUgdGhpcyBhbmQgUENWVF9GUkVFQlNEIGZvciBwY3Z0IHZ0MjIwIGNv bXBhdGlibGUgY29uc29sZSBkcml2ZXINCiNkZXZpY2UJCXZ0MAlhdCBpc2E/ DQojb3B0aW9ucyAJWFNFUlZFUgkJCSMgc3VwcG9ydCBmb3IgWCBzZXJ2ZXIg b24gYSB2dCBjb25zb2xlDQojb3B0aW9ucyAJRkFUX0NVUlNPUgkJIyBzdGFy dCB3aXRoIGJsb2NrIGN1cnNvcg0KIyBJZiB5b3UgaGF2ZSBhIFRoaW5rUEFE LCB1bmNvbW1lbnQgdGhpcyBhbG9uZyB3aXRoIHRoZSByZXN0IG9mIHRoZSBQ Q1ZUIGxpbmVzDQojb3B0aW9ucyAJUENWVF9TQ0FOU0VUPTIJCSMgSUJNIGtl eWJvYXJkcyBhcmUgbm9uLXN0ZA0KDQojIEZsb2F0aW5nIHBvaW50IHN1cHBv cnQgLSBkbyBub3QgZGlzYWJsZS4NCmRldmljZQkJbnB4MAlhdCBuZXh1cz8g cG9ydCBJT19OUFggaXJxIDEzDQoNCiMgUG93ZXIgbWFuYWdlbWVudCBzdXBw b3J0IChzZWUgTElOVCBmb3IgbW9yZSBvcHRpb25zKQ0KZGV2aWNlCQlhcG0w ICAgIGF0IG5leHVzPyBkaXNhYmxlIGZsYWdzIDB4MjAgIyBBZHZhbmNlZCBQ b3dlciBNYW5hZ2VtZW50DQoNCiMgUENDQVJEIChQQ01DSUEpIHN1cHBvcnQN CiNkZXZpY2UJCWNhcmQNCiNkZXZpY2UJCXBjaWMwCWF0IGlzYT8gaXJxIDAg cG9ydCAweDNlMCBpb21lbSAweGQwMDAwDQojZGV2aWNlCQlwY2ljMQlhdCBp c2E/IGlycSAwIHBvcnQgMHgzZTIgaW9tZW0gMHhkNDAwMCBkaXNhYmxlDQoN CiMgU2VyaWFsIChDT00pIHBvcnRzDQpkZXZpY2UJCXNpbzAJYXQgaXNhPyBw b3J0IElPX0NPTTEgZmxhZ3MgMHgxMCBpcnEgNA0KZGV2aWNlCQlzaW8xCWF0 IGlzYT8gcG9ydCBJT19DT00yIGlycSAzDQpkZXZpY2UJCXNpbzIJYXQgaXNh PyBkaXNhYmxlIHBvcnQgSU9fQ09NMyBpcnEgNQ0KZGV2aWNlCQlzaW8zCWF0 IGlzYT8gZGlzYWJsZSBwb3J0IElPX0NPTTQgaXJxIDkNCg0KIyBQYXJhbGxl bCBwb3J0DQpkZXZpY2UJCXBwYzAJYXQgaXNhPyBpcnEgNw0KZGV2aWNlCQlw cGJ1cwkJIyBQYXJhbGxlbCBwb3J0IGJ1cyAocmVxdWlyZWQpDQpkZXZpY2UJ CWxwdAkJIyBQcmludGVyDQojZGV2aWNlCQlwbGlwCQkjIFRDUC9JUCBvdmVy IHBhcmFsbGVsDQpkZXZpY2UJCXBwaQkJIyBQYXJhbGxlbCBwb3J0IGludGVy ZmFjZSBkZXZpY2UNCiNkZXZpY2UJCXZwbwkJIyBSZXF1aXJlcyBzY2J1cyBh bmQgZGENCg0KDQojIFBDSSBFdGhlcm5ldCBOSUNzLg0KI2RldmljZQkJZGUJ CSMgREVDL0ludGVsIERDMjF4NHggKGBgVHVsaXAnJykNCiNkZXZpY2UJCXR4 cAkJIyAzQ29tIDNjUjk5MCAoYGBUeXBob29uJycpDQojZGV2aWNlCQl2eAkJ IyAzQ29tIDNjNTkwLCAzYzU5NSAoYGBWb3J0ZXgnJykNCg0KIyBQQ0kgRXRo ZXJuZXQgTklDcyB0aGF0IHVzZSB0aGUgY29tbW9uIE1JSSBidXMgY29udHJv bGxlciBjb2RlLg0KIyBOT1RFOiBCZSBzdXJlIHRvIGtlZXAgdGhlICdkZXZp Y2UgbWlpYnVzJyBsaW5lIGluIG9yZGVyIHRvIHVzZSB0aGVzZSBOSUNzIQ0K ZGV2aWNlCQltaWlidXMJCSMgTUlJIGJ1cyBzdXBwb3J0DQojZGV2aWNlCQlk YwkJIyBERUMvSW50ZWwgMjExNDMgYW5kIHZhcmlvdXMgd29ya2FsaWtlcw0K I2RldmljZQkJZnhwCQkjIEludGVsIEV0aGVyRXhwcmVzcyBQUk8vMTAwQiAo ODI1NTcsIDgyNTU4KQ0KI2RldmljZQkJcGNuCQkjIEFNRCBBbTc5Qzk3eCBQ Q0kgMTAvMTAwIE5JQ3MNCmRldmljZQkJcmwJCSMgUmVhbFRlayA4MTI5Lzgx MzkNCiNkZXZpY2UJCXNmCQkjIEFkYXB0ZWMgQUlDLTY5MTUgKGBgU3RhcmZp cmUnJykNCiNkZXZpY2UJCXNpcwkJIyBTaWxpY29uIEludGVncmF0ZWQgU3lz dGVtcyBTaVMgOTAwL1NpUyA3MDE2DQojZGV2aWNlCQlzdGUJCSMgU3VuZGFu Y2UgU1QyMDEgKEQtTGluayBERkUtNTUwVFgpDQojZGV2aWNlCQl0bAkJIyBU ZXhhcyBJbnN0cnVtZW50cyBUaHVuZGVyTEFODQojZGV2aWNlCQl0eAkJIyBT TUMgRXRoZXJQb3dlciBJSSAoODNjMTcwIGBgRVBJQycnKQ0KZGV2aWNlCQl2 cgkJIyBWSUEgUmhpbmUsIFJoaW5lIElJDQojZGV2aWNlCQl3YgkJIyBXaW5i b25kIFc4OUM4NDBGDQojZGV2aWNlCQl3eAkJIyBJbnRlbCBHaWdhYml0IEV0 aGVybmV0IENhcmQgKGBgV2lzZW1hbicnKQ0KI2RldmljZQkJeGwJCSMgM0Nv bSAzYzkweCAoYGBCb29tZXJhbmcnJywgYGBDeWNsb25lJycpDQoNCiMgSVNB IEV0aGVybmV0IE5JQ3MuDQojICdkZXZpY2UgZWQnIHJlcXVpcmVzICdkZXZp Y2UgbWlpYnVzJw0KI2RldmljZQkJZWQwCWF0IGlzYT8gcG9ydCAweDI4MCBp cnEgMTAgaW9tZW0gMHhkODAwMA0KI2RldmljZQkJZXgNCiNkZXZpY2UJCWVw DQojZGV2aWNlCQlmZTAJYXQgaXNhPyBwb3J0IDB4MzAwDQojIFhpcmNvbSBF dGhlcm5ldA0KI2RldmljZQkJeGUNCiMgUFJJU00gSSBJRUVFIDgwMi4xMWIg d2lyZWxlc3MgTklDLg0KI2RldmljZQkJYXdpDQojIFdhdmVMQU4vSUVFRSA4 MDIuMTEgd2lyZWxlc3MgTklDcy4gTm90ZTogdGhlIFdhdmVMQU4vSUVFRSBy ZWFsbHkNCiMgZXhpc3RzIG9ubHkgYXMgYSBQQ01DSUEgZGV2aWNlLCBzbyB0 aGVyZSBpcyBubyBJU0EgYXR0YWNobWVudCBuZWVkZWQNCiMgYW5kIHJlc291 cmNlcyB3aWxsIGFsd2F5cyBiZSBkeW5hbWljYWxseSBhc3NpZ25lZCBieSB0 aGUgcGNjYXJkIGNvZGUuDQojZGV2aWNlCQl3aQ0KIyBBaXJvbmV0IDQ1MDAv NDgwMCA4MDIuMTEgd2lyZWxlc3MgTklDcy4gTm90ZTogdGhlIGRlY2xhcmF0 aW9uIGJlbG93IHdpbGwNCiMgd29yayBmb3IgUENNQ0lBIGFuZCBQQ0kgY2Fy ZHMsIGFzIHdlbGwgYXMgSVNBIGNhcmRzIHNldCB0byBJU0EgUG5QDQojIG1v ZGUgKHRoZSBmYWN0b3J5IGRlZmF1bHQpLiBJZiB5b3Ugc2V0IHRoZSBzd2l0 Y2hlcyBvbiB5b3VyIElTQQ0KIyBjYXJkIGZvciBhIG1hbnVhbGx5IGNob3Nl biBJL08gYWRkcmVzcyBhbmQgSVJRLCB5b3UgbXVzdCBzcGVjaWZ5DQojIHRo b3NlIHBhcmFtZXRlcnMgaGVyZS4NCiNkZXZpY2UJCWFuDQojIFRoZSBwcm9i ZSBvcmRlciBvZiB0aGVzZSBpcyBwcmVzZW50bHkgZGV0ZXJtaW5lZCBieSBp Mzg2L2lzYS9pc2FfY29tcGF0LmMuDQojZGV2aWNlCQlpZTAJYXQgaXNhPyBw b3J0IDB4MzAwIGlycSAxMCBpb21lbSAweGQwMDAwDQojZGV2aWNlCQlsZTAJ YXQgaXNhPyBwb3J0IDB4MzAwIGlycSA1IGlvbWVtIDB4ZDAwMDANCiNkZXZp Y2UJCWxuYzAJYXQgaXNhPyBwb3J0IDB4MjgwIGlycSAxMCBkcnEgMA0KI2Rl dmljZQkJY3MwCWF0IGlzYT8gcG9ydCAweDMwMA0KI2RldmljZQkJc24wCWF0 IGlzYT8gcG9ydCAweDMwMCBpcnEgMTANCg0KIyBQc2V1ZG8gZGV2aWNlcyAt IHRoZSBudW1iZXIgaW5kaWNhdGVzIGhvdyBtYW55IHVuaXRzIHRvIGFsbG9j YXRlLg0KcHNldWRvLWRldmljZQlsb29wCQkjIE5ldHdvcmsgbG9vcGJhY2sN CnBzZXVkby1kZXZpY2UJZXRoZXIJCSMgRXRoZXJuZXQgc3VwcG9ydA0KcHNl dWRvLWRldmljZQlzbAkxCSMgS2VybmVsIFNMSVANCnBzZXVkby1kZXZpY2UJ cHBwCTEJIyBLZXJuZWwgUFBQDQpwc2V1ZG8tZGV2aWNlCXR1bgkJIyBQYWNr ZXQgdHVubmVsLg0KcHNldWRvLWRldmljZQlwdHkJCSMgUHNldWRvLXR0eXMg KHRlbG5ldCBldGMpDQpwc2V1ZG8tZGV2aWNlCW1kCQkjIE1lbW9yeSAiZGlz a3MiDQpwc2V1ZG8tZGV2aWNlCWdpZgkJIyBJUHY2IGFuZCBJUHY0IHR1bm5l bGluZw0KcHNldWRvLWRldmljZQlmYWl0aAkxCSMgSVB2Ni10by1JUHY0IHJl bGF5aW5nICh0cmFuc2xhdGlvbikNCg0KIyBUaGUgYGJwZicgcHNldWRvLWRl dmljZSBlbmFibGVzIHRoZSBCZXJrZWxleSBQYWNrZXQgRmlsdGVyLg0KIyBC ZSBhd2FyZSBvZiB0aGUgYWRtaW5pc3RyYXRpdmUgY29uc2VxdWVuY2VzIG9m IGVuYWJsaW5nIHRoaXMhDQpwc2V1ZG8tZGV2aWNlCWJwZgkJI0JlcmtlbGV5 IHBhY2tldCBmaWx0ZXINCg0KIyBVU0Igc3VwcG9ydA0KZGV2aWNlCQl1aGNp CQkjIFVIQ0kgUENJLT5VU0IgaW50ZXJmYWNlDQpkZXZpY2UJCW9oY2kJCSMg T0hDSSBQQ0ktPlVTQiBpbnRlcmZhY2UNCmRldmljZQkJdXNiCQkjIFVTQiBC dXMgKHJlcXVpcmVkKQ0KZGV2aWNlCQl1Z2VuCQkjIEdlbmVyaWMNCmRldmlj ZQkJdWhpZAkJIyAiSHVtYW4gSW50ZXJmYWNlIERldmljZXMiDQpkZXZpY2UJ CXVrYmQJCSMgS2V5Ym9hcmQNCmRldmljZQkJdWxwdAkJIyBQcmludGVyDQoj ZGV2aWNlCQl1bWFzcwkJIyBEaXNrcy9NYXNzIHN0b3JhZ2UgLSBSZXF1aXJl cyBzY2J1cyBhbmQgZGENCmRldmljZQkJdW1zCQkjIE1vdXNlDQpkZXZpY2UJ CXVzY2FubmVyCSMgU2Nhbm5lcnMNCiMgVVNCIEV0aGVybmV0LCByZXF1aXJl cyBtaWkNCiNkZXZpY2UJCWF1ZQkJIyBBRE10ZWsgVVNCIGV0aGVybmV0DQoj ZGV2aWNlCQljdWUJCSMgQ0FUQyBVU0IgZXRoZXJuZXQNCiNkZXZpY2UJCWt1 ZQkJIyBLYXdhc2FraSBMU0kgVVNCIGV0aGVybmV0DQo= ---559023410-851401618-1011791227=:20499-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 5:11:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from MCSMTP2.MC.VANDERBILT.EDU (mcsmtp2.mc.Vanderbilt.Edu [160.129.50.78]) by hub.freebsd.org (Postfix) with ESMTP id 287EC37B417 for ; Wed, 23 Jan 2002 05:11:21 -0800 (PST) Subject: Looking for web based news display To: freebsd-questions@freebsd.org X-Mailer: Lotus Notes Release 5.0.6a January 17, 2001 Message-ID: From: George.Giles@mcmail.vanderbilt.edu Date: Wed, 23 Jan 2002 07:09:07 -0600 X-MIMETrack: Serialize by Router on MCSMTP2.MC.vanderbilt.edu/VUMC/Vanderbilt(Release 5.0.6a |January 17, 2001) at 01/23/2002 07:01:24 AM MIME-Version: 1.0 Content-type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Does freebsd have a package that supports web form creation and production of web based "newsgroups" ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 5:25:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.riic.uni-linz.ac.at (mail.riic.uni-linz.ac.at [140.78.161.130]) by hub.freebsd.org (Postfix) with ESMTP id 422FC37B417 for ; Wed, 23 Jan 2002 05:25:36 -0800 (PST) Received: from hawkings.riic.uni-linz.ac.at (hawkings.riic.uni-linz.ac.at [140.78.161.239]) by mail.riic.uni-linz.ac.at (8.9.3/8.9.3) with ESMTP id OAA17068; Wed, 23 Jan 2002 14:15:10 +0100 Message-Id: <5.1.0.14.0.20020123141149.0246e6c0@postoffice.riic.at> X-Sender: hueber@postoffice.riic.at X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Wed, 23 Jan 2002 14:15:43 +0100 To: paulh@logicsquad.net, From: Gernot Hueber Subject: Re: Qmail/Samba tutorial Cc: In-Reply-To: <1672.203.49.60.114.1011788833.squirrel@grover.logicsquad.n et> References: <4.2.0.58.20020121135021.00986420@pop.netzero.net> <4.2.0.58.20020121135021.00986420@pop.netzero.net> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 22:57 23.01.2002 +1030, Paul A. Hoadley wrote: >Lord Raiden said: >> Hey, does anyone know of any good tutorials for setting up Samba and >> Qmail? > >[...] > >> The simpler and more straight forward the tutorials the better. > >There are step-by-step instructions for qmail here: > >http://logicsquad.net/freebsd/qmail-how-to.html If you want to use vpopmail, too, try this one: http://matt.simerson.net/computing/qmail.toaster.shtml >--=20 >Paul. > >mailto:paulh@logicsquad.net >mailto:paul.hoadley@student.adelaide.edu.au > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message Dipl.-Ing. Gernot Hueber Institut f=FCr Integrierte Schaltungen Freist=E4dter Strasse 315/2 A-4040 Linz Tel: +43 732 2468-7118, Fax: -7126 E-mail: hueber@riic.at To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 5:27:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blade.elitsat.net (blade.elitsat.net [209.239.78.129]) by hub.freebsd.org (Postfix) with ESMTP id 7EDE837B41B for ; Wed, 23 Jan 2002 05:27:44 -0800 (PST) Received: from localhost (amour@localhost) by blade.elitsat.net (8.11.6/8.11.6) with ESMTP id g0NDRMn83280; Wed, 23 Jan 2002 15:27:22 +0200 (EET) (envelope-from amour@blade.elitsat.net) Date: Wed, 23 Jan 2002 15:27:19 +0200 (EET) From: Alexander To: Toomas Aas Cc: Subject: Re: IPX over tunnel In-Reply-To: <200201230720.g0N7Kdh09913@lv.raad.tartu.ee> Message-ID: <20020123152542.W83081-100000@blade.elitsat.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I gave the novell as an example What if it wasn't a novell ? How can I route the ipx over the tunnel ? thanks On Wed, 23 Jan 2002, Toomas Aas wrote: > Hi Alexander! > > On 22 Jan 02 at 23:43 you wrote: > > > Novell Network(using ipx) -> freebsd router1 with tunnel to freebsd > > router2 -> internet -> freebsd router2 with tunnel to 1 -> novell > > network(using ipx) 2 > > > > But I'm not sure how can I route IPX over a tunnel ? > > The Netware server itself is able to tunnel IPX over IP if it has > TCP/IP protocol stack installed. I have done it with Netware 5.0 > and the configuration option seems to exist in 4.10 and 4.11 but I > haven't tried it there. > -- > Toomas Aas | toomas.aas@raad.tartu.ee | http://www.raad.tartu.ee/~toomas/ > * Everyone has a photographic memory. Some don't have film. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 5:33:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailout06.sul.t-online.com (mailout06.sul.t-online.com [194.25.134.19]) by hub.freebsd.org (Postfix) with ESMTP id 4A69337B41C for ; Wed, 23 Jan 2002 05:33:49 -0800 (PST) Received: from fwd04.sul.t-online.de by mailout06.sul.t-online.com with smtp id 16TNXA-0002Dk-04; Wed, 23 Jan 2002 14:33:48 +0100 Received: from ulysses.thomas.org (520002568185-0001@[80.131.9.3]) by fwd04.sul.t-online.com with smtp id 16TNX4-1gjQtkC; Wed, 23 Jan 2002 14:33:42 +0100 Date: Wed, 23 Jan 2002 14:18:44 +0100 From: tschwarzkopf@t-online.de (Thomas Schwarzkopf) To: questions@FreeBSD.ORG Subject: Problem with USB scanner Message-Id: <20020123141844.147d1b82.tschwarzkopf@t-online.de> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Sender: 520002568185-0001@t-dialin.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all, i am trying to make my HP Scanjet 4100C work under FreeBSD-4.5-RC. According the hardware notes and man uscanner, this scanner should work under FreeBSD, but the kernel seems to have a problem with this device. These are the kernel messages (usb part) i see, when i boot my FreeBSD machine with a connected scanner: uhci0: port 0xd400-0xd41f irq 5 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhub0: device problem, disabling port 2 uhci1: port 0xd800-0xd81f irq 5 at device 7.3 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered Kernelconfiguration looks like this (usb part): # USB support device uhci # UHCI PCI->USB interface #device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer #device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse device uscanner # Scanners Is there anything else to do to use USB devices? Any ideas what could be wrong? This scanner works fine under Windows98. Regards Thomas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 5:34:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mip.co.za (puck.mip.co.za [209.212.106.44]) by hub.freebsd.org (Postfix) with ESMTP id 0C2FD37B402 for ; Wed, 23 Jan 2002 05:34:43 -0800 (PST) Received: from patrick (patrick.mip.co.za [10.3.13.181]) by mip.co.za (8.9.3/8.9.3) with SMTP id PAA38847 for ; Wed, 23 Jan 2002 15:34:27 +0200 (SAST) (envelope-from patrick@mip.co.za) From: "Patrick O'Reilly" To: "FreeBSD Question List" Subject: Sendmail and Cyrus IMAP Date: Wed, 23 Jan 2002 15:40:04 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all! I am running sendmail as MTA, and popper for POP3 - all is well. Now, I wish to delve into IMAP. I found Cyrus in the ports collection, and all the write-up and the web site sounds great. OK - the question I need to ask: How does SMTP and/or the MTA function happen when Cyrus runs? Will Cyrus provide and SMTP daemon, or will I still run the Sendmail SMTP Daemon? I understand that Cyrus will replace the popper, and will provide IMAP access instead of POP3, but I don't know how a mail from the outside world will find its way into the Cyrus message store. Thanks in advance. Patrick O'Reilly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 5:55:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from florida-wireless.com (mailserver.florida-wireless.com [208.62.145.34]) by hub.freebsd.org (Postfix) with ESMTP id D602237B400 for ; Wed, 23 Jan 2002 05:55:10 -0800 (PST) Received: from mdd [208.62.145.45] by florida-wireless.com (SMTPD32-7.05) id A17B4DAB008C; Wed, 23 Jan 2002 08:58:19 -0500 Message-ID: <003301c1a417$56edc270$2d913ed0@mdd> From: "freebsd" To: "FreeBSD Questions" References: Subject: timeout errors Date: Wed, 23 Jan 2002 09:07:48 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I continually receive this error. Jan 22 23:15:28 webserver /kernel: ad0: READ command timeout tag=0 serv=0 - resetting Jan 22 23:15:28 webserver /kernel: ad0: READ command timeout tag=0 serv=0 - resetting Jan 22 23:15:29 webserver /kernel: ata0: resetting devices .. done Jan 22 23:15:29 webserver /kernel: ata0: resetting devices .. done I looked in the logs and I also see that there is a message about a non ATA cable and can't run in ata-66 mode. The motherboard doesn't accomendate the new ata stuff. I have searched but not found a answer to stoping the errors or having the OS stop timeing out. Help ? thanks BD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 5:55:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out4.mx.nwbl.wi.voyager.net (out4.mx.nwbl.wi.voyager.net [169.207.1.77]) by hub.freebsd.org (Postfix) with ESMTP id 866FB37B417 for ; Wed, 23 Jan 2002 05:55:43 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out4.mx.nwbl.wi.voyager.net (8.11.1/8.11.4/1.7) with ESMTP id g0NDtg534942 for ; Wed, 23 Jan 2002 07:55:42 -0600 (CST) Received: from localhost (raiden@localhost) by shell.core.com (8.11.6/8.11.6/1.3) with ESMTP id g0NDtg714377; Wed, 23 Jan 2002 07:55:42 -0600 (CST) Date: Wed, 23 Jan 2002 07:55:42 -0600 (CST) From: Steven Lake X-X-Sender: raiden@shell.core.com To: freebsd-questions@FreeBSD.ORG Cc: Steven Lake Subject: DDNS on Freebsd In-Reply-To: <03ce64017011212FE4@Mail4.mgfairfax.rr.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Does FreeBSD or Bind support Dynamic DNS? If not, what do I need on our network to get it to work? I'd like to stay away from having to rely on MicroShaft Windoze Crashware in order to have DDNS supported on our network. All help is apreciated. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 5:58:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rambo.simx.org (rambo.simx.org [194.17.208.54]) by hub.freebsd.org (Postfix) with ESMTP id 3290937B402 for ; Wed, 23 Jan 2002 05:58:22 -0800 (PST) Received: from rambo.simx.org (malin.twenty4help.se [195.67.108.195]) by rambo.simx.org (8.11.6/8.11.6) with ESMTP id g0NDvpX62622; Wed, 23 Jan 2002 14:57:51 +0100 (CET) (envelope-from listsub@rambo.simx.org) Message-ID: <3C4EC159.6010805@rambo.simx.org> Date: Wed, 23 Jan 2002 14:57:45 +0100 From: "Roger 'Rocky' Vetterberg" User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: "Patrick O'Reilly" Cc: FreeBSD Question List Subject: Re: Sendmail and Cyrus IMAP References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Patrick O'Reilly wrote: >Hi all! > >I am running sendmail as MTA, and popper for POP3 - all is well. > >Now, I wish to delve into IMAP. I found Cyrus in the ports collection, >and all the write-up and the web site sounds great. > >OK - the question I need to ask: How does SMTP and/or the MTA function >happen when Cyrus runs? Will Cyrus provide and SMTP daemon, or will I >still run the Sendmail SMTP Daemon? > >I understand that Cyrus will replace the popper, and will provide IMAP >access instead of POP3, but I don't know how a mail from the outside >world will find its way into the Cyrus message store. > >Thanks in advance. > >Patrick O'Reilly. > IMAP is not a replacement for POP3. They basically provide the same service, but they do it in very different ways. While POP3 allows the client to fetch the mails from the server, IMAP allows the client to read the messages while they are still on the server. (Very simplified) You can run both POP3 and IMAP on the same machine. IMAP is not a replacement for Sendmail either, they provide completely different services. You will still need Sendmail (or another MTA) even if you run IMAP. -- R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 6: 1:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id F247D37B416 for ; Wed, 23 Jan 2002 06:01:42 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.11.6/8.11.6) id g0NE1fb68610; Wed, 23 Jan 2002 09:01:41 -0500 (EST) (envelope-from mwlucas) Date: Wed, 23 Jan 2002 09:01:41 -0500 From: Michael Lucas To: Steven Lake Cc: freebsd-questions@FreeBSD.ORG Subject: Re: DDNS on Freebsd Message-ID: <20020123090141.A68565@blackhelicopters.org> References: <03ce64017011212FE4@Mail4.mgfairfax.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from raiden@shell.core.com on Wed, Jan 23, 2002 at 07:55:42AM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I believe that both bind8 and bind9 support DDNS. You'll want to check the official docs at www.isc.org to be sure which exact versions do, and compare them with the version in your FreeBSD. On Wed, Jan 23, 2002 at 07:55:42AM -0600, Steven Lake wrote: > Does FreeBSD or Bind support Dynamic DNS? If not, what do I need > on our network to get it to work? I'd like to stay away from having to > rely on MicroShaft Windoze Crashware in order to have DDNS supported on > our network. All help is apreciated. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Michael Lucas mwlucas@FreeBSD.org, mwlucas@BlackHelicopters.org my FreeBSD column: http://www.oreillynet.com/pub/q/Big_Scary_Daemons http://www.blackhelicopters.org/~mwlucas/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 6: 5:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rambo.simx.org (rambo.simx.org [194.17.208.54]) by hub.freebsd.org (Postfix) with ESMTP id EF0E537B404 for ; Wed, 23 Jan 2002 06:05:28 -0800 (PST) Received: from rambo.simx.org (malin.twenty4help.se [195.67.108.195]) by rambo.simx.org (8.11.6/8.11.6) with ESMTP id g0NE2hX62726; Wed, 23 Jan 2002 15:02:43 +0100 (CET) (envelope-from listsub@rambo.simx.org) Message-ID: <3C4EC27D.7020302@rambo.simx.org> Date: Wed, 23 Jan 2002 15:02:37 +0100 From: "Roger 'Rocky' Vetterberg" User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: freebsd Cc: FreeBSD Questions Subject: Re: timeout errors References: <003301c1a417$56edc270$2d913ed0@mdd> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG freebsd wrote: >Hello, >I continually receive this error. > >Jan 22 23:15:28 webserver /kernel: ad0: READ command timeout tag=0 serv=0 - >resetting >Jan 22 23:15:28 webserver /kernel: ad0: READ command timeout tag=0 serv=0 - >resetting >Jan 22 23:15:29 webserver /kernel: ata0: resetting devices .. done >Jan 22 23:15:29 webserver /kernel: ata0: resetting devices .. done > >I looked in the logs and I also see that there is a message about a non ATA >cable and can't run in ata-66 mode. >The motherboard doesn't accomendate the new ata stuff. > >I have searched but not found a answer to stoping the errors or having the >OS stop timeing out. > >Help ? >thanks >BD > > I would backup my data if I were you. Last time I saw that error the drive died on my 2 weeks later. -- R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 6: 8:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mout0.freenet.de (mout0.freenet.de [194.97.50.131]) by hub.freebsd.org (Postfix) with ESMTP id 78F2B37B417; Wed, 23 Jan 2002 06:08:34 -0800 (PST) Received: from [194.97.50.136] (helo=mx3.freenet.de) by mout0.freenet.de with esmtp (Exim 3.33 #3) id 16TO4k-0001SQ-00; Wed, 23 Jan 2002 15:08:30 +0100 Received: from ae375.pppool.de ([213.6.227.117] helo=Magelan.Leidinger.net) by mx3.freenet.de with esmtp (Exim 3.33 #3) id 16TO4k-0002BK-00; Wed, 23 Jan 2002 15:08:30 +0100 Received: from Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.11.6/8.11.6) with ESMTP id g0NDTNa03574; Wed, 23 Jan 2002 14:29:24 +0100 (CET) (envelope-from netchild@Leidinger.net) Message-Id: <200201231329.g0NDTNa03574@Magelan.Leidinger.net> Date: Wed, 23 Jan 2002 14:29:22 +0100 (CET) From: Alexander Leidinger Subject: Re: better way to read qmail logs To: freefabri@yahoo.it Cc: freebsd-isp@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG, jan@kneschke.de In-Reply-To: <20020123082653.66472.qmail@web20107.mail.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=iso-8859-1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 23 Jan, Fabrizio Ravazzini wrote: > hello all, is there a way to read qmail logs via web > interface or some other graphics interface? /usr/ports/textproc/modlogan has support for qmail logs. I haven't used any mail processor of it (only the weblogs processor), but if there's something you miss in the output of it, you can contact the author (jane@kneschke.de, CCed), hi's usually very responsive. Bye, Alexander. -- The three Rs of Microsoft support: Retry, Reboot, Reinstall. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 6: 9:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from urdvg136.cms.usa.net (urdvg136.cms.usa.net [204.68.25.136]) by hub.freebsd.org (Postfix) with SMTP id AFF6E37B41A for ; Wed, 23 Jan 2002 06:09:13 -0800 (PST) Received: (qmail 7774 invoked from network); 23 Jan 2002 14:11:02 -0000 Received: from cpdvg100.netaddress.usa.net (165.212.8.100) by outbound.postoffice.net with SMTP; 23 Jan 2002 14:11:02 -0000 Received: (qmail 14437 invoked by uid 60001); 23 Jan 2002 14:09:21 -0000 Message-ID: <20020123140921.14436.qmail@cpdvg100.netaddress.usa.net> Received: from 146.101.147.237 [146.101.147.237] by cpdvg100.netaddress.usa.net (USANET web-mailer 34FM.0700.28.01B); Wed, 23 Jan 2002 14:09:20 +0000 Date: 24 Jan 2002 01:09:20 EST From: Scott Aitken To: freebsd-questions@FreeBSD.ORG Subject: sendmail changing entire "from:" addresses X-Mailer: USANET web-mailer (34FM.0700.28.01B) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, is there any way to configure sendmail to completely rewrite the from: or= reply-to: addresses as they are sent. ie. I write a mail in Mutt from user@host.domain.com which then arrives at the recipient as if it was from: completely.different.user@different-domain.com I know you can change the domain part with masquerading, but I need the e= ntire address changed. TIA Scott ____________________________________________________________________ Get free e-mail and a permanent address at http://www.amexmail.com/?A=3D1= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 6:16:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from marble.dublin.wbtsystems.com (marble.dublin.wbtsystems.com [193.120.231.8]) by hub.freebsd.org (Postfix) with ESMTP id CD8E337B400 for ; Wed, 23 Jan 2002 06:16:31 -0800 (PST) Received: from spiral (spiral.dublin.wbtsystems.com [193.120.231.190]) (authenticated) by marble.dublin.wbtsystems.com (8.11.6/8.11.6) with ESMTP id g0NEGRH11427; Wed, 23 Jan 2002 14:16:27 GMT From: "Barry Byrne" To: "Scott Aitken" , Subject: RE: sendmail changing entire "from:" addresses Date: Wed, 23 Jan 2002 14:16:14 -0000 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) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: <20020123140921.14436.qmail@cpdvg100.netaddress.usa.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Scott: Check out virtual user tables if you need to rewrite addresses. Cheers, Barry -- Barry Byrne, IT Manager, WBT Systems, Block 2, Harcourt Centre Harcourt Street, Dublin 2, Ireland > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Scott Aitken > Sent: 24 January 2002 06:09 > To: freebsd-questions@FreeBSD.ORG > Subject: sendmail changing entire "from:" addresses > > > Hi all, > is there any way to configure sendmail to completely rewrite the from: or > reply-to: addresses as they are sent. > > ie. > I write a mail in Mutt from > > user@host.domain.com > > which then arrives at the recipient as if it was from: > > completely.different.user@different-domain.com > > I know you can change the domain part with masquerading, but I > need the entire > address changed. > > TIA > Scott > > ____________________________________________________________________ > Get free e-mail and a permanent address at http://www.amexmail.com/?A=1 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 6:17:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20001.mail.yahoo.com (web20001.mail.yahoo.com [216.136.225.46]) by hub.freebsd.org (Postfix) with SMTP id AC8BF37B404 for ; Wed, 23 Jan 2002 06:16:59 -0800 (PST) Message-ID: <20020123141659.63622.qmail@web20001.mail.yahoo.com> Received: from [193.123.204.66] by web20001.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 14:16:59 GMT Date: Wed, 23 Jan 2002 14:16:59 +0000 (GMT) From: =?iso-8859-1?q?Gavin=20Kenny?= Subject: Re: NFS exports file To: C J Michaels Cc: questions@freebsd.org In-Reply-To: <2490.216.153.202.7.1011723493.squirrel@www1.27in.tv> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks, I've changed my exports line to: /usr -alldirs -maproot=0 -network 123.456.789.123 and this loads ok. showmount -e now gives: /usr 123.456.789.123 however I am still getting permision denied when I try to mount it from the client. I am trying to mount it as root. Is this a permissions error? I've tried adding the client to the hosts.equiv file but that does not seem to make any difference. Any more clues? Gavin --- C J Michaels wrote: > You can only export mount points. Not > subdirectory's of mount points. > > Despite the lack of df output here, I would assume > you have a situation > where /home is a symlink to /usr/home and /usr is > the mount point. > > In this case you need to export /usr > > --Chris > > Gavin Kenny said: > > Hi Guys, > > > > I'm trying my hand at setting up NFS. I have > followed > > the handbook and all the deamons seem to startup > OK > > > > but when I edit my /etc/exports file and load it > via: > > kill -HUP `cat /var/run/mountd.pid` > > > > I get the following message: > > "bad exports list line /home " > > > > I have one line in my exports file and have tried > the > > following combinations without success; (Note I > don't > > have DNS so I am using IP addresses) > > > > /home -alldirs 123.456.789.123 > > or > > /home 123.456.789.123 > > or > > /home -alldirs -network 123.456.789.123 > > or > > /usr/home -network 123.456.789.123 > > > > and all stations south. > > > > When I try to mount from the client I get > "Permission > > denied", which I am assuming is because the > exports > > list is not loading. > > > > so what am I doing wrong? > > > > cheers > > > > Gavin > > > > __________________________________________________ > > Do You Yahoo!? > > Everything you'll ever need on one web page > > from News and Sport to Email and Music Charts > > http://uk.my.yahoo.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body > of the message > > > -- > Chris > > "I'll defend to the death your right to say that, > but I never said I'd > listen to it!" > -- Tom Galloway with apologies to Voltaire > > __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 6:22:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from linuxmail.touchtunes.com (operator.touchtunes.com [216.94.139.201]) by hub.freebsd.org (Postfix) with ESMTP id 43CC737B404 for ; Wed, 23 Jan 2002 06:22:27 -0800 (PST) Received: from sunder.touchtunes.com (sunder.touchtunes.com [192.168.0.26]) by linuxmail.touchtunes.com (8.9.3/8.8.7) with ESMTP id JAA24477; Wed, 23 Jan 2002 09:22:26 -0500 Received: (from dinjo@localhost) by sunder.touchtunes.com (8.11.6/8.11.6) id g0NEMBk10337; Wed, 23 Jan 2002 09:22:11 -0500 (EST) (envelope-from dinjo) Date: Wed, 23 Jan 2002 09:22:11 -0500 From: Joel Dinel To: Scott Aitken Cc: freebsd-questions@FreeBSD.ORG Subject: Re: sendmail changing entire "from:" addresses Message-ID: <20020123092211.A9128@sunder.touchtunes.com> Mail-Followup-To: Joel Dinel , Scott Aitken , freebsd-questions@FreeBSD.ORG References: <20020123140921.14436.qmail@cpdvg100.netaddress.usa.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020123140921.14436.qmail@cpdvg100.netaddress.usa.net>; from scotta@usa.net on Thu, Jan 24, 2002 at 01:09:20AM -0500 X-Useless-Header: Look ma, it's a # sign! X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 01:09:20AM -0500, Scott Aitken wrote: > Date: 24 Jan 2002 01:09:20 EST > From: Scott Aitken > To: freebsd-questions@FreeBSD.ORG > Subject: sendmail changing entire "from:" addresses > X-Mailer: USANET web-mailer (34FM.0700.28.01B) > > Hi all, > is there any way to configure sendmail to completely rewrite the from: or > reply-to: addresses as they are sent. > > ie. > I write a mail in Mutt from > > user@host.domain.com > > which then arrives at the recipient as if it was from: > > completely.different.user@different-domain.com > > I know you can change the domain part with masquerading, but I need the entire > address changed. > > TIA > Scott > > ____________________________________________________________________ > Get free e-mail and a permanent address at http://www.amexmail.com/?A=1 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ---end quoted text--- Yes, it's called 'genericstable'. This is a questions to whcih you'll find the answer on the Sendmail.org website. But, look here : http://www.freebsd.org/cgi/getmsg.cgi?fetch=2254531+2257138+/usr/local/www/db/text/2001/freebsd-questions/20010603.freebsd-questions Sorry for the long line ... -- Joel Dinel System Administrator TouchTunes Digital Jukebox, Inc. GnuPG key : http://darkhost.mine.nu:81/~joel/misc/mykey.asc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 6:27:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Interjet.citystamp.com (host-64-65-195-99.choiceone.net [64.65.195.99]) by hub.freebsd.org (Postfix) with ESMTP id F07FE37B404 for ; Wed, 23 Jan 2002 06:27:37 -0800 (PST) Received: (from daemon@localhost) by Interjet.citystamp.com (8.8.5/8.8.5) id JAA04374; Wed, 23 Jan 2002 09:54:16 -0500 (EST) Received: from UNKNOWN(64.65.195.58), claiming to be "[192.168.1.243]" via SMTP by Interjet.citystamp.com, id smtpdLx4372; Wed Jan 23 14:54:13 2002 User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Wed, 23 Jan 2002 09:24:39 -0500 Subject: Re: Opinions wanted - dealing with file sharing in AOL IM From: bind9 To: chip , C J Michaels , Cc: Message-ID: In-Reply-To: <200201221742871.SM01952@there> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG on 1/22/02 8:41 PM, chip at chip@wiegand.org wrote: > On Tuesday 22 January 2002 10:12 am, C J Michaels banged out on the keys: >> Rick Hamell said: >>>>> One of my sons asked me today, about opening a port on the firewall >>>>> so he and some friends from school can share files. I'm a bit leary >>>>> of opening a port on the firewall. I know my freebsd boxes will be >>>>> safe from windoze viruses by >> Parenting tips aside, I would suggest setting up a socks 5 server, there's >> one available in the ports collection. > > Thanks for the suggestion, I looked at the port description, it's a bit vague > and there is no web site reference. Do you know of any good web sites I could > learn more about socks? Would it work with ipfw on the same machine? If your going to open the port, what does it matter how you do it. AOLIM is going to come at you from a lot of directions from IPs that are transient. So, if you want it to work correctly, you need to just open up and let it in. That being done, you are looking for the occasional abuse. "snort" is an intrusion detection packet sniffer. With a little reading about the rules you can immediately get a notification when say a .vbs comes in. You'll see requests for "default.ida", root.exe, etc. etc. http:/www.snort.org/. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 6:51:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.27in.tv (roc-66-24-112-7.rochester.rr.com [66.24.112.7]) by hub.freebsd.org (Postfix) with ESMTP id 5FA3737B402 for ; Wed, 23 Jan 2002 06:51:47 -0800 (PST) Received: (from root@localhost) by mail.27in.tv (8.11.6/8.11.6) id g0NEpjd45966; Wed, 23 Jan 2002 09:51:45 -0500 (EST) (envelope-from cjm2@earthling.net) Received: from 27in.tv (roc-66-24-112-7.rochester.rr.com [66.24.112.7]) by mail.27in.tv (8.11.6/8.11.6av) with SMTP id g0NEphU45945; Wed, 23 Jan 2002 09:51:43 -0500 (EST) (envelope-from cjm2@earthling.net) Received: from 216.153.202.2 (SquirrelMail authenticated user cjm2) by www1.27in.tv with HTTP; Wed, 23 Jan 2002 09:51:44 -0500 (EST) Message-ID: <1689.216.153.202.2.1011797504.squirrel@www1.27in.tv> Date: Wed, 23 Jan 2002 09:51:44 -0500 (EST) Subject: Re: NFS exports file From: "C J Michaels" To: In-Reply-To: <20020123141659.63622.qmail@web20001.mail.yahoo.com> References: <20020123141659.63622.qmail@web20001.mail.yahoo.com> X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal Cc: X-Mailer: SquirrelMail (version 1.2.4 [cvs]) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Gavin Kenny said: > Thanks, I've changed my exports line to: > > /usr -alldirs -maproot=0 -network 123.456.789.123 ^^^^^ That's not a network ID, that's a host. If you want the whole network use: /usr -alldirs -maproot=0 -network 123.456.789 -mask 255.255.255.0 If you want just the host use, /usr -alldirs -maproot=0 123.456.789.123 > > and this loads ok. showmount -e now gives: > > /usr 123.456.789.123 > > however I am still getting permision denied when I try > to mount it from the client. > > I am trying to mount it as root. Is this a permissions > error? I've tried adding the client to the hosts.equiv > file but that does not seem to make any difference. > > Any more clues? > > Gavin > > --- C J Michaels wrote: > You > can only export mount points. Not >> subdirectory's of mount points. >> >> Despite the lack of df output here, I would assume >> you have a situation >> where /home is a symlink to /usr/home and /usr is >> the mount point. >> >> In this case you need to export /usr >> >> --Chris >> >> Gavin Kenny said: >> > Hi Guys, >> > >> > I'm trying my hand at setting up NFS. I have >> followed >> > the handbook and all the deamons seem to startup >> OK >> > >> > but when I edit my /etc/exports file and load it >> via: >> > kill -HUP `cat /var/run/mountd.pid` >> > >> > I get the following message: >> > "bad exports list line /home " >> > >> > I have one line in my exports file and have tried >> the >> > following combinations without success; (Note I >> don't >> > have DNS so I am using IP addresses) >> > >> > /home -alldirs 123.456.789.123 >> > or >> > /home 123.456.789.123 >> > or >> > /home -alldirs -network 123.456.789.123 >> > or >> > /usr/home -network 123.456.789.123 >> > >> > and all stations south. >> > >> > When I try to mount from the client I get >> "Permission >> > denied", which I am assuming is because the >> exports >> > list is not loading. >> > >> > so what am I doing wrong? >> > >> > cheers >> > >> > Gavin >> > >> > __________________________________________________ >> > Do You Yahoo!? >> > Everything you'll ever need on one web page >> > from News and Sport to Email and Music Charts >> > http://uk.my.yahoo.com >> > >> > To Unsubscribe: send mail to majordomo@FreeBSD.org >> > with "unsubscribe freebsd-questions" in the body >> of the message >> >> >> -- >> Chris >> >> "I'll defend to the death your right to say that, >> but I never said I'd >> listen to it!" >> -- Tom Galloway with apologies to Voltaire >> >> > > __________________________________________________ > Do You Yahoo!? > Everything you'll ever need on one web page > from News and Sport to Email and Music Charts > http://uk.my.yahoo.com -- Chris "I'll defend to the death your right to say that, but I never said I'd listen to it!" -- Tom Galloway with apologies to Voltaire To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 7:13:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web13706.mail.yahoo.com (web13706.mail.yahoo.com [216.136.175.139]) by hub.freebsd.org (Postfix) with SMTP id AA3DC37B400 for ; Wed, 23 Jan 2002 07:13:40 -0800 (PST) Message-ID: <20020123151340.20942.qmail@web13706.mail.yahoo.com> Received: from [203.90.95.20] by web13706.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 07:13:40 PST Date: Wed, 23 Jan 2002 07:13:40 -0800 (PST) From: Santhosh Joseph Subject: PPP Problem To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 1) I have been using ppp to connect to internet. The ppp.conf was set with 'allow users user1 user2', and I could connect as both user1 and user1 without any problem. Recently I re-installed the OS and now when I try to run ppp as a non root user, it results in the following message : bash-2.05$ ppp Working in interactive mode Warning: No available tunnel devices found (No such file or directory) bash-2.05$ i'm still able to connect as root : su-2.05# ppp Working in interactive mode Using interface: tun0 ppp ON bsdbox> What's wrong ? 2) From where can I download a script to do the Internet Accounting (as in kppp) such as - time connected, cost calculation etc. Thanks Joseph __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 7:19:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from host.twdomain.com (host.twdomain.com [209.239.58.92]) by hub.freebsd.org (Postfix) with ESMTP id 8007937B402; Wed, 23 Jan 2002 07:19:52 -0800 (PST) Received: from u-8-ju3votp ([202.109.241.81]) by host.twdomain.com (8.10.2/8.10.2) with SMTP id g0NFJma20161; Wed, 23 Jan 2002 10:19:49 -0500 Date: Wed, 23 Jan 2002 10:19:49 -0500 Received: from tpts4 by venus.seed.net.tw with SMTP id XI5arVBNUDxNYgjeH3kSg; Tue, 22 Jan 2002 20:34:49 +0930 Message-ID: From: chen@zonter.com.tw To: TW@host.twdomain.com Subject: IC of universal remote control X-Mailer: HXrtpEHLZUX4yDARqGXyiCVA1bu8 Content-Type: text/plain; Content-Transfer-Encoding: Quoted-Printable X-Priority: 3 X-MSMail-Priority: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I AM SORRY FOR BOTHERING YOU VERY MUCH BECAUSE OF THIS UNEXPECTED MAIL We produce IC=A0 for universal remote control from UMC in Taiwan. (1) ST2005,ST2088 for USA Japan market (2) ST3088 for Japan and Taiwan market (3) ST5088 for China mainland market (4) ST6088 for Europe market Welcome visit our web site http://www.zonter.com.tw We also produce electronic products such as universal remote control, 100 BaseT LAN filter. We are professional manufacturer and IC designer of universal remote control for TV/ VCR/ CD/ LD/ amplifier satellite receiver/ cable TV converter/ air conditioner. Almost all famous brands like SONY TOSHIBA PANASONIC SHARP JVC over 100 brands included. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 7:21:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fremont.bolingbroke.com (adsl-216-102-90-210.dsl.snfc21.pacbell.net [216.102.90.210]) by hub.freebsd.org (Postfix) with ESMTP id 9958537B400 for ; Wed, 23 Jan 2002 07:21:44 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by fremont.bolingbroke.com (8.12.1/8.12.1) with ESMTP id g0NFLis6016706; Wed, 23 Jan 2002 07:21:44 -0800 (PST) Date: Wed, 23 Jan 2002 07:21:44 -0800 (PST) From: Ken Bolingbroke X-X-Sender: ken@fremont.bolingbroke.com To: Steven Lake Cc: freebsd-questions@FreeBSD.ORG Subject: Re: DDNS on Freebsd In-Reply-To: Message-ID: <20020123071511.F99955-100000@fremont.bolingbroke.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 23 Jan 2002, Steven Lake wrote: > Does FreeBSD or Bind support Dynamic DNS? If not, what do I need > on our network to get it to work? I'd like to stay away from having to > rely on MicroShaft Windoze Crashware in order to have DDNS supported on > our network. All help is apreciated. Yes, FreeBSD's BIND supports DDNS as-is. I recently set it up to maintain hostnames for hosts on AT&T's cable modem DHCP (which have been changing more often than @Home's...). Works like a charm, after puzzling out the documentation. Ken Bolingbroke hacker@bolingbroke.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 7:29:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Interjet.citystamp.com (host-64-65-195-99.choiceone.net [64.65.195.99]) by hub.freebsd.org (Postfix) with ESMTP id 5370F37B428 for ; Wed, 23 Jan 2002 07:29:21 -0800 (PST) Received: (from daemon@localhost) by Interjet.citystamp.com (8.8.5/8.8.5) id KAA05559; Wed, 23 Jan 2002 10:57:40 -0500 (EST) Received: from UNKNOWN(64.65.195.58), claiming to be "[192.168.1.243]" via SMTP by Interjet.citystamp.com, id smtpdgP5556; Wed Jan 23 15:57:32 2002 User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Wed, 23 Jan 2002 10:27:57 -0500 Subject: Re: The tower of Hanoi From: bind9 To: Cc: Bob Hall , FreeBSD Message-ID: In-Reply-To: <20020122160345.I77330@blossom.cjclark.org> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG on 1/22/02 7:03 PM, Crist J . Clark at cristjc@earthlink.net wrote: >> Yes. Should I dump by disk i.e. /dev/adc1se?? > > You can, but that's not a vaild disk device name. > I haven't memorized my BSD disk device names yet. Quiz me on my Solaris meta-disks and I'll ace it. > > Like dump(8) says, > > dump [-0123456789acknu] [-B records] [-b blocksize] [-D dumpdates] > [-d density] [-f file] [-h level] [-s feet] [-T date] filesystem Ok. So I guess what I need is a quick lesson in "filesystem". Does that mean equate more to a mount point. On my system, /usr is a mount point for a disk device. /usr/local is a directory. P.S. Thanks for your patience. I know this thread has over-stayed it's welcome. I'm just trying to learn and learn well. I'm guessing by your E-mail address that you have a much deeper technical education than I. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 7:35:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20001.mail.yahoo.com (web20001.mail.yahoo.com [216.136.225.46]) by hub.freebsd.org (Postfix) with SMTP id 71B5D37B416 for ; Wed, 23 Jan 2002 07:35:15 -0800 (PST) Message-ID: <20020123153513.88573.qmail@web20001.mail.yahoo.com> Received: from [193.123.204.66] by web20001.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 15:35:13 GMT Date: Wed, 23 Jan 2002 15:35:13 +0000 (GMT) From: =?iso-8859-1?q?Gavin=20Kenny?= Subject: Re: NFS exports file To: C J Michaels Cc: questions@freebsd.org In-Reply-To: <1689.216.153.202.2.1011797504.squirrel@www1.27in.tv> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG That did the trick! I just wanted a single host to have access and was getting confused. Many thanks for your help. Gavin > > Thanks, I've changed my exports line to: > > > > /usr -alldirs -maproot=0 -network 123.456.789.123 > ^^^^^ > That's not a network ID, that's a host. If you want > the whole network use: > > /usr -alldirs -maproot=0 -network 123.456.789 -mask > 255.255.255.0 > > If you want just the host use, > > /usr -alldirs -maproot=0 123.456.789.123 > > > > > and this loads ok. showmount -e now gives: > > > > /usr 123.456.789.123 > > > > however I am still getting permision denied when I > try > > to mount it from the client. > > > > I am trying to mount it as root. Is this a > permissions > > error? I've tried adding the client to the > hosts.equiv > > file but that does not seem to make any > difference. > > > > Any more clues? > > > > Gavin > > > > --- C J Michaels wrote: > You > > can only export mount points. Not > >> subdirectory's of mount points. > >> > >> Despite the lack of df output here, I would > assume > >> you have a situation > >> where /home is a symlink to /usr/home and /usr is > >> the mount point. > >> > >> In this case you need to export /usr > >> > >> --Chris > >> > >> Gavin Kenny said: > >> > Hi Guys, > >> > > >> > I'm trying my hand at setting up NFS. I have > >> followed > >> > the handbook and all the deamons seem to > startup > >> OK > >> > > >> > but when I edit my /etc/exports file and load > it > >> via: > >> > kill -HUP `cat /var/run/mountd.pid` > >> > > >> > I get the following message: > >> > "bad exports list line /home " > >> > > >> > I have one line in my exports file and have > tried > >> the > >> > following combinations without success; (Note I > >> don't > >> > have DNS so I am using IP addresses) > >> > > >> > /home -alldirs 123.456.789.123 > >> > or > >> > /home 123.456.789.123 > >> > or > >> > /home -alldirs -network 123.456.789.123 > >> > or > >> > /usr/home -network 123.456.789.123 > >> > > >> > and all stations south. > >> > > >> > When I try to mount from the client I get > >> "Permission > >> > denied", which I am assuming is because the > >> exports > >> > list is not loading. > >> > > >> > so what am I doing wrong? > >> > > >> > cheers > >> > > >> > Gavin > >> > > >> > > __________________________________________________ > >> > Do You Yahoo!? > >> > Everything you'll ever need on one web page > >> > from News and Sport to Email and Music Charts > >> > http://uk.my.yahoo.com > >> > > >> > To Unsubscribe: send mail to > majordomo@FreeBSD.org > >> > with "unsubscribe freebsd-questions" in the > body > >> of the message > >> > >> > >> -- > >> Chris > >> > >> "I'll defend to the death your right to say that, > >> but I never said I'd > >> listen to it!" > >> -- Tom Galloway with apologies to Voltaire > >> > >> > > > > __________________________________________________ > > Do You Yahoo!? > > Everything you'll ever need on one web page > > from News and Sport to Email and Music Charts > > http://uk.my.yahoo.com > > > -- > Chris > > "I'll defend to the death your right to say that, > but I never said I'd > listen to it!" > -- Tom Galloway with apologies to Voltaire > > __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 8: 3:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from clientmail.ehsrealtime.com (eris.ehsrealtime.com [213.52.146.130]) by hub.freebsd.org (Postfix) with ESMTP id 4D45C37B400 for ; Wed, 23 Jan 2002 08:03:36 -0800 (PST) Received: from set.ehsrealtime.com ([213.52.146.197]) by clientmail.ehsrealtime.com with esmtp (Exim 3.33 #2) id 16TPVo-0003LC-01 for freebsd-questions@freebsd.org; Wed, 23 Jan 2002 15:40:32 +0000 Received: from waynep by set.ehsrealtime.com with local (Exim 3.34 #3) id 16TPsS-0000Kx-00 for freebsd-questions@freebsd.org; Wed, 23 Jan 2002 16:03:56 +0000 From: Wayne Pascoe To: freebsd-questions@freebsd.org Subject: SMP machine doesn't reboot... Date: 23 Jan 2002 16:03:55 +0000 Message-ID: Lines: 37 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.5 (bamboo) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, I've just done an install of 4.4-RELEASE onto a new dual processor machine. I then cvsup'd to 4_4 (4.4-RELEASE-p3), ran make world and make kernel KERNCONF=EHSB. uname -a reports : FreeBSD tethys.mydomain.com 4.4-RELEASE-p3 FreeBSD 4.4-RELEASE-p3 #0: Wed Jan 23 15:47:56 GMT 2002 root@tethys.mydomain.com:/usr/obj/usr/src/sys/EHSB i386 The machine seems to run ok, but if I do a shutdown -r now it does not reboot. I get the following message: syncing disks... 7 done Uptime: 48s amr0: flusing cache...done Rebooting... cpu_reset called on cpu#1 cpu_reset: Stopping other CPUs cpu_reset: Restarting BSP cpu_reset_proxy: Grabbed mp lock for BSP cpu_reset_proxy: Stopped CPU 1 And there it sits. The motherboard is a GA-6VTXDR-C with 2 x 1.26 PIII Processors and 3GB Ram. Any idea what is wrong here ? Thanks, -- - Wayne Pascoe | I laugh in the face of danger... freebsd@molemanarmy.com | Then I run and hide until it goes away! http://www.molemanarmy.com | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 8: 7: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id EC38537B400; Wed, 23 Jan 2002 08:07:01 -0800 (PST) Received: (from dan@localhost) by dan.emsphone.com (8.11.6/8.11.6) id g0NG70267338; Wed, 23 Jan 2002 10:07:00 -0600 (CST) (envelope-from dan) Date: Wed, 23 Jan 2002 10:06:59 -0600 From: Dan Nelson To: "Crist J . Clark" Cc: parv , Cliff Sarginson , f-q Subject: Re: is /usr/bin/passwd advisable as a login shell for ftp only users? Message-ID: <20020123160659.GM44873@dan.emsphone.com> References: <20020123035805.GA92721@moo.holy.cow> <20020123041706.GH1345@raggedclown.net> <20020123061342.GA92756@moo.holy.cow> <20020123040114.H83184@blossom.cjclark.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020123040114.H83184@blossom.cjclark.org> User-Agent: Mutt/1.3.25i X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In the last episode (Jan 23), Crist J . Clark said: > On Wed, Jan 23, 2002 at 01:13:42AM -0500, parv wrote: > > [snip] > > > i didn't think of the "suid" bit, but was well aware that passwd has > > access to the passwd database. > > Actually, that's not the big security risk. The primary risk is that > you give the world pretty much open access to try to brute force the > password with a dictionary attack and no alarms will go off. Well, no. :) You have to log in with the correct password before the system will launch $SHELL, and a non-root user can only change their own password (which they just entered in order to log in). -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 8:26:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mafalda.univalle.edu.co (mafalda.univalle.edu.co [200.68.158.10]) by hub.freebsd.org (Postfix) with ESMTP id 67C1237B402 for ; Wed, 23 Jan 2002 08:26:51 -0800 (PST) Received: from libertad.univalle.edu.co (libertad.univalle.edu.co [192.168.18.91]) by mafalda.univalle.edu.co (8.12.1/8.12.1) with ESMTP id g0NGQcYY000963 for ; Wed, 23 Jan 2002 11:26:38 -0500 (GMT) Received: from libertad.univalle.edu.co (buliwyf@localhost.univalle.edu.co [127.0.0.1]) by libertad.univalle.edu.co (8.12.1/8.12.1) with ESMTP id g0NGQduS062120 for ; Wed, 23 Jan 2002 11:26:39 -0500 (COT) Received: from localhost (buliwyf@localhost) by libertad.univalle.edu.co (8.12.1/8.12.1/Submit) with ESMTP id g0NGQbv4062114 for ; Wed, 23 Jan 2002 11:26:37 -0500 (COT) Date: Wed, 23 Jan 2002 11:26:36 -0500 (COT) From: Buliwyf McGraw To: freebsd-questions@FreeBSD.ORG Subject: Re: gets() is unsafe (fwd) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Buliwyf McGraw wrote: > > > Kris Kennaway, and lo! it spake thus: > > > >>>* Buliwyf McGraw [020114 14:49] wrote: > >>> > >>>> Hi... i was installing several applications (php,xmms,etc) on my > >>>> FreeBSD 4.4 server and i got the next message a lot of times when > >>>> i was compiling: > >>>> > > ^^^^^^^^^ > > > >>>>/usr/lib/compat/libc.so.3: warning: mktemp() possibly used unsafely; > >>>>consider using mkstemp() > >>>>/usr/lib/compat/libc.so.3: warning: tmpnam() possibly used unsafely; > >>>>consider using mkstemp() > >>>> > > [...] > > > > > >>>No, this is a FAQ; it's a bug in the linker which causes it to trip > >>>every single _warn_references() in the library when it links to libc, > >>>regardless of whether the program actually uses the functions in > >>>question. > >>> > > > >>I think it's an even better FAQ: Why, when he's compiling, is it linking > >>against a compat/libc? > >> > > > > Ok... i have to say that i am not an expert on FreeBSD, just a new > > admin... I installed FreeBSD 4.4 on my box (in some way, "everything by > > default")... and then i started to install some applications (apache,php,etc), > > not with the /stand/sysinstall utility, but in the traditional way: > > - Download the *.tar.gz > > - Uncompress, configure, make, make install > > > > I expected no problems... but as you can see, the warning messages give > > an "insecure" sensation. > > I want to do something to avoid that messages when i try to compile a GNU > > application. > > Thanks for your comments and help. > > > The easiest thing to do is to install your applications from the ports. > If you installed the ports collection, these are available under > /usr/ports. For example, to install Apache, you can cd to > /usr/ports/www/apache2 (or apache*) and then just type make install. > Any modifications or special configurations is handled by the port.You > can similarly install mod_php from /usr/ports/www/mod_php4 (or > mod_php3). > > This doesn't seem to be very much related to security. > Cc'ing to freebsd-questions. Off course that this does to seem to be related about security. I was working with FreeBSD 3.4 before upgrade to 4.4... and this problem doesn't exist. My point is: What is the limit between Security and Administration? I mean, some people needs php with support for mysql and imap... and another for oracle and gd... everyone has a lot of different needs... Is possible that the ports could cover all configure requeriments of the roots? Apache offers a lot of configuration options... which of them use the /usr/ports/www/apache2? To use the ports seem to be a "relative" secure standar for the future? As i can see it, if i dont use the ports then the compiler going to tell me if the code of the application that i am installing is insecure or not. Ok, i did this proof... xmms 1.25 has a security problem (i read something about it but i dont know exactly the problem description), the point is, that is the version of xmms in the ports for FreeBSD 4.4. I was looking in the xmms web site (www.xmms.org) and i found a new version of the program (1.26) that fix the problems of the 1.25 ... i download the new source code and try to compile it... but the compiler tould me: "unsafe code" and i got a lot of error/warning messages about it. In the end, i couldn't install it. Lets try the ports i said: % cd /usr/ports/audio/xmms % make % make install No Pain!... No Problem!... No warning messages about insecure code... but the application has security vulnerabilities (1.2.5). The ports are a good/easy way to install applications on the box, but it doesn't offer security garanties. I am not an expert, but i think that the warning messages are more than a bug... it seems like a security standar or something like this... maybe in the future, if the application isn't in the ports, you can not to install in your FreeBSD (dont worry, it is just paranoia). Any way, thanks for your help and comments. ======================================================================= Buliwyf McGraw Administrador del Servidor Libertad Centro de Servicios de Informacion Universidad del Valle ======================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 8:30:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from florida-wireless.com (mailserver.florida-wireless.com [208.62.145.34]) by hub.freebsd.org (Postfix) with ESMTP id 8F93E37B404 for ; Wed, 23 Jan 2002 08:30:28 -0800 (PST) Received: from mdd [208.62.145.61] by florida-wireless.com (SMTPD32-7.05) id A5E23B7800BA; Wed, 23 Jan 2002 11:33:38 -0500 Message-ID: <001901c1a42c$fb4c4340$19a8a8c0@mdd> From: "fla wire" To: "FreeBSD Questions" Subject: Backdoors/hacks and others. Date: Wed, 23 Jan 2002 11:42:42 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Portsentry is saying my machine is attacking one of my computers on port 161. Jan 23 09:22:29 games portsentry[334]: attackalert: Connect from host: 208.62.145.45/208.62.145.45 to UDP port: 161 I did a search on port 161 and it says its for snmp. I do not have any snmp programs running on either machine. This is my NT machine I use to surf,grab emails etc. No servers running on it either. This got my paranoid cuz I was hacked with the adorebsd on freebsd machine several months ago. So using NmapNT I scanned each machine. Nothing was found out of the ordinary on the machine that is "attacking" in the above message. Scanning two freebsd machines NmapNT says that ports 12345, 12346 are open with NetBus. Also that 31337 are open with Elite. I did google searches and went to several sites and they all said that these are windows only hacks. Also that on port 27665 trinoo_master is listed as open. I have gone to several sites like the http://www.fedcirc.gov/ and done what any site has said to determine if ther e is these things on my systems but I can not find them. I could use some help as I am a unix newbie and sure that I am missing or not looking in the right places. Hopefully just over paranoid. Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 8:40:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 5FDB937B417 for ; Wed, 23 Jan 2002 08:40:17 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id 5C09E5D0A; Wed, 23 Jan 2002 08:40:17 -0800 (PST) To: Ceri Cc: Roberto Armenteros , freebsd-questions@freebsd.org Subject: Re: Headache getting XFree to work with NVidia GeForce 2 In-reply-to: Your message of "Wed, 23 Jan 2002 09:17:48 GMT." <20020123091748.GB1450@rhadamanth> Date: Wed, 23 Jan 2002 08:40:17 -0800 From: "Kevin Oberman" Message-Id: <20020123164017.5C09E5D0A@ptavv.es.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Wed, 23 Jan 2002 09:17:48 +0000 > From: Ceri > Sender: owner-freebsd-questions@FreeBSD.ORG > > On Tue, Jan 22, 2002 at 06:04:41PM -0800, Roberto Armenteros wrote: > > If anyone has gotten installed XFree 4.x on a machine > > with an NVidia GForce 2 Card, please, I am in > > desperate situation to get it working. I need clean > > steps to follow. After installing the basic system > > first "full binaries and source without X Window > > System" how should I proceed exactly? When I try to > > install XFree 4.x from the ports at > > /usr/ports/x11/XFree-4x by typing "make all install > > clean" then I says that it cant find the XFree4x.tar > > file "I dont know why it needs it." I WOULD REALLY > > appreciate your help. I need to get this going... > > Get the latest port. > The GeForce 2 card is now supported by the nv driver with XFree86 4.2.0. But the XFree86 4.2 port has been backed out due to many reported problems. (FWIW, I've been running it since the day it was released on my NeoMagic card with no problems.) I suspect that 4.2 will return fairly soon. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 8:44:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from 1nova.com (heorot.1nova.com [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 9C66F37B405 for ; Wed, 23 Jan 2002 08:44:30 -0800 (PST) Received: by 1nova.com (Postfix, from userid 1000) id BDF8318F3; Wed, 23 Jan 2002 09:43:34 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by 1nova.com (Postfix) with ESMTP id B534418F2; Wed, 23 Jan 2002 09:43:34 -0800 (PST) Date: Wed, 23 Jan 2002 09:43:34 -0800 (PST) From: Rick Hamell To: George.Giles@mcmail.vanderbilt.edu Cc: freebsd-questions@freebsd.org Subject: Re: Looking for web based news display In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Does freebsd have a package that supports web form creation and production > of web based "newsgroups" ? PHPnuke does forums. Is that what you're looking for? Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://hw.shatteredcrystal.com ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 8:52:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.marketwatchmail.com (mail.marketwatchmail.com [206.146.143.85]) by hub.freebsd.org (Postfix) with SMTP id 4D18637B405 for ; Wed, 23 Jan 2002 08:52:07 -0800 (PST) Received: (qmail 15824 invoked from network); 23 Jan 2002 17:39:56 -0000 Received: from unknown (HELO jaustadw2k) (206.147.106.71) by mail.marketwatchmail.com with SMTP; 23 Jan 2002 17:39:56 -0000 From: "Jay Austad" To: "'Rick Hamell'" , Cc: Subject: RE: Looking for web based news display Date: Wed, 23 Jan 2002 10:52:00 -0600 Message-ID: <54180709DD3FE145917BB165AFE7EFA002E0D374@mspexch2.office.mktw.net> 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 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Does freebsd have a package that supports web form creation > and production > > of web based "newsgroups" ? > > PHPnuke does forums. Is that what you're looking for? I'd advise anyone who is thinking about using PHPnuke to read the archives of the SecurityFocus Bugtraq list. PHPnuke has a long long history of major security holes. The author of PHPnuke has shown very little concern for security in the past, even when presented with gaping holes in his project. PostNuke is a fork of PHPnuke, but suffers from many of the same holes. If you care about the security of your box, either stay far far away from *Nuke projects, or know what you are doing and do a full code audit on it before making it live. Jay To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 9:15:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cpe.atm0-0-0-1231187.0x50c47eb6.kd4nxx3.customer.tele.dk (cpe.atm0-0-0-1231187.0x50c47eb6.kd4nxx3.customer.tele.dk [80.196.126.182]) by hub.freebsd.org (Postfix) with ESMTP id 8400537B400 for ; Wed, 23 Jan 2002 09:15:19 -0800 (PST) Received: from Froekjaer.org (asus.eiffel.dk [192.168.111.22]) by cpe.atm0-0-0-1231187.0x50c47eb6.kd4nxx3.customer.tele.dk (8.11.6/8.11.6) with ESMTP id g0NHFBw82133; Wed, 23 Jan 2002 18:15:11 +0100 (CET) (envelope-from Flemming@Froekjaer.org) Message-ID: <3C4EEF9E.8010207@Froekjaer.org> Date: Wed, 23 Jan 2002 18:15:10 +0100 From: Flemming =?ISO-8859-1?Q?Fr=F8kj=E6r?= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:0.9.7) Gecko/20011221 X-Accept-Language: en-us, da MIME-Version: 1.0 To: bind9 Cc: FreeBSD Subject: Re: The tower of Hanoi References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bind9 wrote: >>Like dump(8) says, >> >>dump [-0123456789acknu] [-B records] [-b blocksize] [-D dumpdates] >>[-d density] [-f file] [-h level] [-s feet] [-T date] filesystem >> > >Ok. So I guess what I need is a quick lesson in "filesystem". Does that mean >equate more to a mount point. On my system, /usr is a mount point for a disk >device. /usr/local is a directory. > In that case you should: dump -ua0f /dev/nsa0 /usr to backup your usr filesystem to the first scsi tape. \Flemming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 9:33:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from imo-m10.mx.aol.com (imo-m10.mx.aol.com [64.12.136.165]) by hub.freebsd.org (Postfix) with ESMTP id 7CA6C37B402 for ; Wed, 23 Jan 2002 09:33:10 -0800 (PST) Received: from TD790@aol.com by imo-m10.mx.aol.com (mail_out_v31_r1.25.) id n.51.17dd6717 (3845) for ; Wed, 23 Jan 2002 12:33:02 -0500 (EST) From: TD790@aol.com Message-ID: <51.17dd6717.29804dce@aol.com> Date: Wed, 23 Jan 2002 12:33:02 EST Subject: Realtek 8100L controller w/Freebsd? To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: AOL 5.0 for Windows sub 139 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Quite a few P4 Motherboards have RTL8100L controllers onboard.I dont see this part listed in the if_rl driver. Does FreeBSD work with this controller? Its not clear if its "compatible". Anyone have one? dennis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 9:33:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from bdg.centrin.net.id (DialupBdg253-207.centrin.net.id [202.146.253.207]) by hub.freebsd.org (Postfix) with ESMTP id B393037B402 for ; Wed, 23 Jan 2002 09:33:44 -0800 (PST) Received: from budsz by bdg.centrin.net.id with local (Exim 3.12 #1 (Debian)) id 16TRb7-00010g-00; Thu, 24 Jan 2002 00:54:09 +0700 Date: Thu, 24 Jan 2002 00:54:08 +0700 From: budsz To: Scott Aitken Cc: freebsd-questions Subject: Re: sendmail changing entire "from:" addresses Message-ID: <20020123175408.GA3781@bdg.centrin.net.id> Reply-To: budsz Mail-Followup-To: budsz , Scott Aitken , freebsd-questions References: <20020123140921.14436.qmail@cpdvg100.netaddress.usa.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LQksG6bCIzRHxTLp" Content-Disposition: inline In-Reply-To: <20020123140921.14436.qmail@cpdvg100.netaddress.usa.net> User-Agent: Mutt/1.3.26i X-Operation-System: Linux debian 2.2.17-budsz.cayang.caroline i586 X-Geekcode: "GMU d- s++:+ a- C++ UL++ P+ L++ E- W++ N o+ K- w+ O+ M V++ PS PE Y+ PGP++ t 5 X+++ R+ tv b++ DI- D+ G++ e++ h+ r+ y+" X-Pubkey-Linux: "http://bdg.centrin.net.id/~budsan02/pubkey_Linux.txt" X-Pubkey-FreeBSD: "http://bdg.centrin.net.id/~budsan02/pubkey_FreeBSD.txt" X-Company: "PD Sari Rasa" X-Service: "Provides Various Kind of Snacks, Cookies and Crispies" X-Location: "Jl 11 April No 87 Sumedang - West Java - Indonesia" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --LQksG6bCIzRHxTLp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 24, 2002 at 01:09:20AM -0500, Scott Aitken wrote: >Hi all, >is there any way to configure sendmail to completely rewrite the from: or >reply-to: addresses as they are sent. Use sendmail option -f b"leh " in muttrc, add some header in= mutt for example: set my_hdr some_header: "bleh ". --=20 budsz --LQksG6bCIzRHxTLp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v0.9.8a (GNU/Linux) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjxO+MAACgkQuaC+RZYp1fiSBgCfXfCayAHFTC7QRn+U1cRhpL9k ppMAnAxbAkVFgeAfXHp0VJiZ+rqQJPpW =CBV6 -----END PGP SIGNATURE----- --LQksG6bCIzRHxTLp-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 9:43:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id 769BB37B400 for ; Wed, 23 Jan 2002 09:43:43 -0800 (PST) Received: (qmail 1687 invoked by uid 0); 23 Jan 2002 17:43:41 -0000 Received: from a1as12-p146.stg.tli.de (HELO abyssfour) (195.252.190.146) by mail.gmx.net (mp016-rz3) with SMTP; 23 Jan 2002 17:43:41 -0000 From: "Daniel S. Haischt" To: "Steven Lake" Cc: Subject: AW: DDNS on Freebsd Date: Wed, 23 Jan 2002 18:40:58 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hello, you just have to install the latest bind (9.1.3rc1) and isc-dhcp (3.0.1.r4) ports. after that you have to configure a TSIG key to allow other clients to update the DNS table dynamically. consult the dhcpd.conf man pages (which include some examples) to get any further. regrads daniel s. haischt -- > -----Ursprungliche Nachricht----- > Von: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]Im Auftrag von Steven Lake > Gesendet: Mittwoch, 23. Januar 2002 14:56 > An: freebsd-questions@FreeBSD.ORG > Cc: Steven Lake > Betreff: DDNS on Freebsd > > > Does FreeBSD or Bind support Dynamic DNS? If not, what do I need > on our network to get it to work? I'd like to stay away from having to > rely on MicroShaft Windoze Crashware in order to have DDNS supported on > our network. All help is apreciated. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 9:44:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 6701D37B404 for ; Wed, 23 Jan 2002 09:43:50 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D2BAC66B74; Wed, 23 Jan 2002 09:43:49 -0800 (PST) Date: Wed, 23 Jan 2002 09:43:49 -0800 From: Kris Kennaway To: Buliwyf McGraw Cc: freebsd-questions@FreeBSD.ORG Subject: Re: gets() is unsafe (fwd) Message-ID: <20020123094349.A38509@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="k+w/mQv8wyuph6w0" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from buliwyf@libertad.univalle.edu.co on Wed, Jan 23, 2002 at 11:26:36AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Jan 23, 2002 at 11:26:36AM -0500, Buliwyf McGraw wrote: > Ok, i did this proof... xmms 1.25 has a security problem (i read > something about it but i dont know exactly the problem description), > the point is, that is the version of xmms in the ports for FreeBSD 4.4. > I was looking in the xmms web site (www.xmms.org) and i found a new > version of the program (1.26) that fix the problems of the 1.25 ... i > download the new source code and try to compile it... but the compiler > tould me: "unsafe code" and i got a lot of error/warning messages about > it. In the end, i couldn't install it. > Lets try the ports i said: > % cd /usr/ports/audio/xmms > % make > % make install You seem to be very confused about something. I've already told you (twice now!) that when the linker spits out a whole host of warning messages like this: /usr/lib/libc.so.4: WARNING! setkey(3) not present in the system! /usr/lib/libc.so.4: warning: this program uses gets(), which is unsafe. /usr/lib/libc.so.4: warning: mktemp() possibly used unsafely; consider using mks /usr/lib/libc.so.4: WARNING! des_setkey(3) not present in the system! /usr/lib/libc.so.4: WARNING! encrypt(3) not present in the system! /usr/lib/libc.so.4: warning: tmpnam() possibly used unsafely; consider using mks /usr/lib/libc.so.4: warning: this program uses f_prealloc(), which is stupid. /usr/lib/libc.so.4: WARNING! des_cipher(3) not present in the system! /usr/lib/libc.so.4: warning: tempnam() possibly used unsafely; consider using mk [....] it is not because the program is actually using all those functions, but because of a BUG in the linker. To repeat: *** This does not indicate insecurity in the application, but a *** BUG IN THE LINKER. *** Those warnings are indeed emitted if you use one or more of the insecure functions (although some of the warnings in the above list aren't security-related, just informational); the signature that you're triggering the bug is that you get EVERY SINGLE WARNING CONTAINED IN LIBC emitted, like what I pasted above. Sorry to spell it out so blatantly, but the message hasn't gotten through the last two mails I've sent on this subject. There is no magical way for the compiler to tell that there is an unspecified security problem in a piece of code like xmms (most security problems are not because of using a function which libc can sensibly warn about, they're from misusing C functions which are used in almost every application). If there was, all our troubles would be over. All it can easily do is warn about certain functions which are difficult or impossible to use safely; and it does this no matter whether you use the FreeBSD port or compile by hand. Furthermore, if you look at a number of ports, like pine or gdm or delegate, we have explicit warnings in front of the port build about security which you won't get if you compile by hand. Some software packages are created by the vendor with defaults which are unsafe on FreeBSD; we fix those in the FreeBSD port. When you install a port which installs potentially dangerous files, like setugid binaries or a network server which is started automatically at boot time, the port will warn you after it's installed. Again, you won't get this if you install by hand. Even furthermore, we usually patch every security vulnerability in the FreeBSD port which we discover or which are reported to us within a day or so -- often within hours. This is a much higher level of service than you'd get if you didn't use the ports. > The ports are a good/easy way to install applications on the box, but > it doesn't offer security garanties. To summarize, it provides a heck of a lot more than you'd get otherwise. I hope this has finally clarified the issue for you. Kris --k+w/mQv8wyuph6w0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8TvZUWry0BWjoQKURAnIjAJwNMJ3eNFJIVDgCtnYRC8gYCPWEogCgtcyZ ML2RQgpLNWOPquFobIY4h7c= =JUsB -----END PGP SIGNATURE----- --k+w/mQv8wyuph6w0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 9:48: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cpe.atm0-0-0-1231187.0x50c47eb6.kd4nxx3.customer.tele.dk (cpe.atm0-0-0-1231187.0x50c47eb6.kd4nxx3.customer.tele.dk [80.196.126.182]) by hub.freebsd.org (Postfix) with ESMTP id A072937B404 for ; Wed, 23 Jan 2002 09:47:54 -0800 (PST) Received: from Froekjaer.org (asus.eiffel.dk [192.168.111.22]) by cpe.atm0-0-0-1231187.0x50c47eb6.kd4nxx3.customer.tele.dk (8.11.6/8.11.6) with ESMTP id g0NHlkw82267; Wed, 23 Jan 2002 18:47:46 +0100 (CET) (envelope-from Flemming@Froekjaer.org) Message-ID: <3C4EF741.1000106@Froekjaer.org> Date: Wed, 23 Jan 2002 18:47:45 +0100 From: Flemming =?ISO-8859-1?Q?Fr=F8kj=E6r?= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:0.9.7) Gecko/20011221 X-Accept-Language: en-us, da MIME-Version: 1.0 To: Jay Austad Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Looking for web based news display References: <54180709DD3FE145917BB165AFE7EFA002E0D374@mspexch2.office.mktw.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jay Austad wrote: >>>Does freebsd have a package that supports web form creation >>> >>and production >> >>>of web based "newsgroups" ? >>> >> PHPnuke does forums. Is that what you're looking for? >> > >I'd advise anyone who is thinking about using PHPnuke to read the >archives of the SecurityFocus Bugtraq list. PHPnuke has a long long >history of major security holes. > You could take a look at phpslice. I don't know if it will do everything you need.. www.phpslice.org And you can take a look at wonko.com. Ryan at wonko.com wrote the first version of phpslice. \Flemming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 9:50: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web21209.mail.yahoo.com (web21209.mail.yahoo.com [216.136.175.167]) by hub.freebsd.org (Postfix) with SMTP id 215EE37B405 for ; Wed, 23 Jan 2002 09:49:59 -0800 (PST) Message-ID: <20020123174958.32298.qmail@web21209.mail.yahoo.com> Received: from [24.100.124.207] by web21209.mail.yahoo.com via HTTP; Thu, 24 Jan 2002 01:49:58 CST Date: Thu, 24 Jan 2002 01:49:58 +0800 (CST) From: =?iso-8859-1?q?adrian=20kok?= Subject: how to prevent the server crashed To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all My ftp server crashed from thousand of ftp access! how do I prevent it except setting up the firewall? My ftp server is opened for the public? and we couldn't block the dedicated ip before outsider scanning eg: automatically script to block it or mail to root when system is overloading or any suggestions about it? Thank you very much _______________________________________________________________________ Do You Yahoo!? Get your free @yahoo.com.hk address at http://mail.english.yahoo.com.hk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 9:53:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.ruraltel.net (mail.ruraltel.net [24.225.0.34]) by hub.freebsd.org (Postfix) with ESMTP id 0967737B400 for ; Wed, 23 Jan 2002 09:53:47 -0800 (PST) Received: from darryl (p189n31.ruraltel.net [24.225.31.189]) by mail1.ruraltel.net (8.11.2/8.11.2) with SMTP id g0NIflp11769 for ; Wed, 23 Jan 2002 12:41:47 -0600 Reply-To: From: "Darryl Hoar" To: Subject: Samba & FreeBSD Date: Wed, 23 Jan 2002 11:56:16 -0600 Message-ID: <001e01c1a437$41a62a90$0701a8c0@darryl> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.3018.1300 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Greetings, I have a machine that currently is the Primary Domain Controller for our internal NT network. Our network is comprised of Win9x, WinNt4.0 & Win2k Pro machines. The PDC needs to be scrubbed down to bare metal and rebuilt. I thought (our Firewall is FreeBSD) that putting FreeBSD on it, and then Samba configured as the PDC might be the ticket. Administration, performance, etc.. would be much better as far as I'm concerned. Anybody doing this? thanks, Darryl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 10: 1: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web12508.mail.yahoo.com (web12508.mail.yahoo.com [216.136.173.200]) by hub.freebsd.org (Postfix) with SMTP id 8470E37B400 for ; Wed, 23 Jan 2002 10:01:00 -0800 (PST) Message-ID: <20020123180059.8732.qmail@web12508.mail.yahoo.com> Received: from [216.250.215.7] by web12508.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 10:00:59 PST Date: Wed, 23 Jan 2002 10:00:59 -0800 (PST) From: david lubowa Reply-To: deez_diablo@excite.com Subject: Re: port To: Jim McIver , freebsd-questions@freebsd.org In-Reply-To: <3C4C16CF.18360.13CC36BA@localhost> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1152659619-1011808859=:8595" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --0-1152659619-1011808859=:8595 Content-Type: text/plain; charset=us-ascii lsof -i : i think lsof is a good tool Jim McIver wrote: How would tell what port a daemon is running on? I know that FTP is suppose to use port 21 and 20, but is there a way to see this? thx, - Jim McIver To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message --------------------------------- Do You Yahoo!? Send FREE video emails in Yahoo! Mail. --0-1152659619-1011808859=:8595 Content-Type: text/html; charset=us-ascii

lsof -i :<port_number> i think lsof is a good tool

  Jim McIver <jmciver@lmtribune.com> wrote:

How would tell what port a daemon is running on?

I know that FTP is suppose to use port 21 and 20, but is there a way to
see this?

thx,
-
Jim McIver

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message



Do You Yahoo!?
Send FREE video emails in Yahoo! Mail. --0-1152659619-1011808859=:8595-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 10:19:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web12501.mail.yahoo.com (web12501.mail.yahoo.com [216.136.173.193]) by hub.freebsd.org (Postfix) with SMTP id 6ADD537B448 for ; Wed, 23 Jan 2002 10:19:30 -0800 (PST) Message-ID: <20020123181930.76205.qmail@web12501.mail.yahoo.com> Received: from [216.250.215.7] by web12501.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 10:19:30 PST Date: Wed, 23 Jan 2002 10:19:30 -0800 (PST) From: david lubowa Reply-To: deez_diablo@excite.com Subject: Re: MySQL Trouble PLEASE help! To: Andre` Niel Cameron , questions@FreeBSD.ORG In-Reply-To: <19df01c1a2e6$f30bd020$a50410ac@olmct.net> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-699975917-1011809970=:76198" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --0-699975917-1011809970=:76198 Content-Type: text/plain; charset=us-ascii i would suggest checking the grants on that username with the "show grants privileges for " and see if all priv's are right then i would maybe to be sure restart mysql but skipping the grant tables ..to achive this you could try --skip-grant-tables switch and see if you can connect to the db!!. my $0.02 Andre` Niel Camerown wrote: Hi, ok here is my problem. I created a DB added the user. Granted all privileges and when I try to use it I get this error: You have new mail in /var/spool/mail/root [root@hs4 thegamersoutlet]# mysql -uthegamersoutlet -psinbumi users < users.sql ERROR 1142 at line 11: create command denied to user: 'thegamersoutlet@localhost' for table 'nuke_authors' [root@hs4 thegamersoutlet]# Does anyone have any Ideas? Here is my mysql transcript: mysql> grant all privileges on users to thegamersoutlet@"%" identified by 'shibumi'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) I even restarted mysql as a last shot!! Please help any body? Regards, André C. Technical Support Ô¿Ô¬ ---------------------------------------------------------------------------- - Visit our support manual at http://supportmanual.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message --------------------------------- Do You Yahoo!? Send FREE video emails in Yahoo! Mail. --0-699975917-1011809970=:76198 Content-Type: text/html; charset=us-ascii

 i would suggest checking the grants on that username with the "show grants privileges for <user_blah>" and see if all priv's are right then i would maybe to be sure restart mysql but skipping the grant tables ..to achive this you could try --skip-grant-tables switch and see if you can connect to the db!!.

my $0.02

  Andre` Niel Camerown <AndreC@Axxs.net> wrote:

Hi,

ok here is my problem. I created a DB added the user. Granted all
privileges and when I try to use it I get this error:
You have new mail in /var/spool/mail/root
[root@hs4 thegamersoutlet]# mysql -uthegamersoutlet -psinbumi users <
users.sql
ERROR 1142 at line 11: create command denied to user:
'thegamersoutlet@localhost' for table 'nuke_authors'
[root@hs4 thegamersoutlet]#

Does anyone have any Ideas? Here is my mysql transcript:


mysql> grant all privileges on users to thegamersoutlet@"%" identified by
'shibumi';
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

I even restarted mysql as a last shot!! Please help any body?

Regards,
André C.
Technical Support
Ô¿Ô¬
----------------------------------------------------------------------------
-
Visit our support manual at http://supportmanual.com/


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message



Do You Yahoo!?
Send FREE video emails in Yahoo! Mail. --0-699975917-1011809970=:76198-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 10:21: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web12503.mail.yahoo.com (web12503.mail.yahoo.com [216.136.173.195]) by hub.freebsd.org (Postfix) with SMTP id 53F7337B404 for ; Wed, 23 Jan 2002 10:20:57 -0800 (PST) Message-ID: <20020123182057.71772.qmail@web12503.mail.yahoo.com> Received: from [216.250.215.7] by web12503.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 10:20:57 PST Date: Wed, 23 Jan 2002 10:20:57 -0800 (PST) From: david lubowa Reply-To: deez_diablo@excite.com Subject: Re: MySQL Trouble PLEASE help! To: Andre` Niel Cameron , questions@FreeBSD.ORG In-Reply-To: <19df01c1a2e6$f30bd020$a50410ac@olmct.net> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-62568088-1011810057=:71769" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --0-62568088-1011810057=:71769 Content-Type: text/plain; charset=us-ascii oops i messed with the command i meant "show grant for ; Andre` Niel Cameron wrote: Hi, ok here is my problem. I created a DB added the user. Granted all privileges and when I try to use it I get this error: You have new mail in /var/spool/mail/root [root@hs4 thegamersoutlet]# mysql -uthegamersoutlet -psinbumi users < users.sql ERROR 1142 at line 11: create command denied to user: 'thegamersoutlet@localhost' for table 'nuke_authors' [root@hs4 thegamersoutlet]# Does anyone have any Ideas? Here is my mysql transcript: mysql> grant all privileges on users to thegamersoutlet@"%" identified by 'shibumi'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) I even restarted mysql as a last shot!! Please help any body? Regards, André C. Technical Support Ô¿Ô¬ ---------------------------------------------------------------------------- - Visit our support manual at http://supportmanual.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message --------------------------------- Do You Yahoo!? Send FREE video emails in Yahoo! Mail. --0-62568088-1011810057=:71769 Content-Type: text/html; charset=us-ascii

oops i messed with the command i meant "show grant for <user_name>;

  Andre` Niel Cameron <AndreC@Axxs.net> wrote:

Hi,

ok here is my problem. I created a DB added the user. Granted all
privileges and when I try to use it I get this error:
You have new mail in /var/spool/mail/root
[root@hs4 thegamersoutlet]# mysql -uthegamersoutlet -psinbumi users <
users.sql
ERROR 1142 at line 11: create command denied to user:
'thegamersoutlet@localhost' for table 'nuke_authors'
[root@hs4 thegamersoutlet]#

Does anyone have any Ideas? Here is my mysql transcript:


mysql> grant all privileges on users to thegamersoutlet@"%" identified by
'shibumi';
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

I even restarted mysql as a last shot!! Please help any body?

Regards,
André C.
Technical Support
Ô¿Ô¬
----------------------------------------------------------------------------
-
Visit our support manual at http://supportmanual.com/


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message



Do You Yahoo!?
Send FREE video emails in Yahoo! Mail. --0-62568088-1011810057=:71769-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 10:33:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.cybersurf.net (smtp2.cybersurf.net [209.197.145.112]) by hub.freebsd.org (Postfix) with ESMTP id 20B8A37B404 for ; Wed, 23 Jan 2002 10:33:31 -0800 (PST) Received: from jim ([206.172.180.24]) by smtp2.cybersurf.net (Netscape Messaging Server 4.15) with SMTP id GQEM7M00.U5F for ; Wed, 23 Jan 2002 11:33:22 -0700 Message-ID: <000801c1a43c$be488020$208ffea9@jim> From: "jaime aguirre" To: Subject: freeBSD and Microsoft Windows Date: Wed, 23 Jan 2002 13:34:44 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C1A412.B7D15340" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C1A412.B7D15340 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, I want to get a FreeBSD machine talking to windows machines in a 10pc = network how do I do it? Your help is very much appreciated. Jaime __________________________________________________________ Get Premium UNLIMITED Internet Access across CANADA for JUST $9.95/MONTH at http://www.get3web.com/?mkid=emt123 ------=_NextPart_000_0005_01C1A412.B7D15340 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello,
I want to get a FreeBSD machine talking = to windows=20 machines in a 10pc network how do I do it?
 
Your help is very much = appreciated.
 
Jaime



____________________________________________________________
Get Premium UNLIMITED Internet Access across Canada for
JUST $9.95/MONTH at http://www.get3web.com/?mkid=3Demt123
------=_NextPart_000_0005_01C1A412.B7D15340-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 10:41:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id DEF4E37B402 for ; Wed, 23 Jan 2002 10:41:27 -0800 (PST) Received: (qmail 13190 invoked by uid 0); 23 Jan 2002 18:41:26 -0000 Received: from a1as12-p146.stg.tli.de (HELO abyssfour) (195.252.190.146) by mail.gmx.net (mp013-rz3) with SMTP; 23 Jan 2002 18:41:26 -0000 From: "Daniel S. Haischt" To: "Patrick O'Reilly" Cc: Subject: AW: Sendmail and Cyrus IMAP Date: Wed, 23 Jan 2002 19:38:47 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hello, > -----Ursprüngliche Nachricht----- > Von: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]Im Auftrag von Patrick > O'Reilly > Gesendet: Mittwoch, 23. Januar 2002 14:40 > An: FreeBSD Question List > Betreff: Sendmail and Cyrus IMAP > > > Hi all! > > I am running sendmail as MTA, and popper for POP3 - all is well. > > Now, I wish to delve into IMAP. I found Cyrus in the ports collection, > and all the write-up and the web site sounds great. > > OK - the question I need to ask: How does SMTP and/or the MTA function > happen when Cyrus runs? Will Cyrus provide and SMTP daemon, or will I > still run the Sendmail SMTP Daemon? no, cyrus does not provide any smtp functionality. you still have to use sendmail or postfix. > > I understand that Cyrus will replace the popper, and will provide IMAP > access instead of POP3, but I don't know how a mail from the outside > world will find its way into the Cyrus message store. cyrus provides a pop3 and imap daemon. postfix uses a mailbox_transport configuration option to process mails after they arrive. there you can configure to 'forward' mails to the cyrus system. sendmail has some similar configuration options. they are also documented on the cyrus web site (as i remember). regads daniel haischt -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 10:42:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.velosystems.net (cx144844-b.pv1.ca.home.com [24.9.137.174]) by hub.freebsd.org (Postfix) with ESMTP id 89C3537B405 for ; Wed, 23 Jan 2002 10:42:22 -0800 (PST) Received: from win2kads (ms [192.168.1.5]) by mail.velosystems.net (Postfix) with SMTP id 9559250783; Wed, 23 Jan 2002 10:42:18 -0800 (PST) Message-ID: <003b01c1a43b$e9a42900$0501a8c0@win2kads> From: "Steve Wingate" To: , References: <20020123181040.M13798-100000@squirm.dsto.defence.gov.au> Subject: Re: ipf OR IPFilteri OR ipf ? Date: Wed, 23 Jan 2002 10:29:37 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The better firewall is the one you know how to configure the most. There is no clear winner between the two. By the way, ipfilter and ipf are one and the same. ----- Original Message ----- From: "Wilkinson,Alex" To: Sent: Tuesday, January 22, 2002 11:46 PM Subject: ipf OR IPFilteri OR ipf ? > Howdy Crew, > > Can anyone recommend what the better firewall solution woud be best on > a FreeBSD system ? > > ipfw ? > IPFIlter > ipf ? > > Anything else ? > > > -- -- > Alex Wilkinson Unix Systems > (08) 8259 6838 Defence Science and Technology Organisation > Alex.Wilkinson@dsto.defence.gov.au http://www.dsto.defence.gov.au/ > -- -- > "The risk of pain is the price of life" > > IMPORTANT: This email remains the property of the Australian Defence > Organisation and is subject to the jurisdiction of section 70 of the > CRIMES ACT 1914. If you have received this email in error, you are > requested to contact the sender and delete the email. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 10:43:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.cybersurf.net (smtp2.cybersurf.net [209.197.145.112]) by hub.freebsd.org (Postfix) with ESMTP id 492CD37B404 for ; Wed, 23 Jan 2002 10:43:38 -0800 (PST) Received: from jim ([206.172.180.24]) by smtp2.cybersurf.net (Netscape Messaging Server 4.15) with SMTP id GQEMON00.Q5C for ; Wed, 23 Jan 2002 11:43:35 -0700 Message-ID: <000801c1a43e$2bf83920$208ffea9@jim> From: "jaime aguirre" To: Subject: FreeBSD and Microsoft Windows Date: Wed, 23 Jan 2002 13:45:45 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C1A414.420E0200" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C1A414.420E0200 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, How do I get FreeBSD to talk to Windows machines in a 10pc network? Your help is very much appreciated. Something else: I posted the same question to questions@freeBSD.org If they are one and = the same list, I apologized for it. Jaime __________________________________________________________ Get Premium UNLIMITED Internet Access across CANADA for JUST $9.95/MONTH at http://www.get3web.com/?mkid=emt123 ------=_NextPart_000_0005_01C1A414.420E0200 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello,
How do I get FreeBSD to talk to Windows = machines in=20 a 10pc network?
Your help is very much = appreciated.
 
Something else:
I posted the same question to questions@freeBSD.org If they = are one=20 and the same list, I apologized for it.
 
Jaime



____________________________________________________________
Get Premium UNLIMITED Internet Access across Canada for
JUST $9.95/MONTH at http://www.get3web.com/?mkid=3Demt123
------=_NextPart_000_0005_01C1A414.420E0200-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 10:47:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay03.roc.frontiernet.net (alteon01h.roc.frontiernet.net [66.133.130.238]) by hub.freebsd.org (Postfix) with SMTP id 8752D37B400 for ; Wed, 23 Jan 2002 10:47:48 -0800 (PST) Received: (qmail 18850 invoked from network); 23 Jan 2002 18:47:42 -0000 Received: from unknown (HELO blacklamb.mykitchentable.net) ([207.173.227.80]) (envelope-sender ) by relay03.roc.frontiernet.net (qmail-ldap-1.03) with SMTP for ; 23 Jan 2002 18:47:42 -0000 Received: from bigdaddy (bigdaddy [192.168.1.3]) by blacklamb.mykitchentable.net (Postfix) with SMTP id 7350CEE5FD; Wed, 23 Jan 2002 10:47:41 -0800 (PST) Message-ID: <002101c1a43e$6f75e710$0301a8c0@bigdaddy> From: "Drew Tomlinson" To: "Jeremy Buckner" , "Brian Reichert" Cc: References: <000b01c1a42d$c82c13e0$0c0aa8c0@caz> <20020123121142.S2872@numachi.com> <003301c1a432$7fc93f60$0c0aa8c0@caz> Subject: Re: Console settings/software? Date: Wed, 23 Jan 2002 10:47:40 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Jeremy Buckner" To: "Brian Reichert" Cc: Sent: Wednesday, January 23, 2002 9:22 AM Subject: Re: Console settings/software? -- redirected to questions > Ok I want to connect to the serial port of the box in an effort to get some sort of shell prompt and > navigate through my files and such. I'm using my laptop with a 9 pin serial cable. The Handbook covers this and many more basic tasks. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/serialconsol e-setup.html Drew > > Jeremy > > ----- Original Message ----- > From: "Brian Reichert" > To: "Jeremy Buckner" > Cc: > Sent: Wednesday, January 23, 2002 10:11 AM > Subject: Re: Console settings/software? > > > > On Wed, Jan 23, 2002 at 09:48:23AM -0700, Jeremy Buckner wrote: > > > If I need/want to console into my FreeBSD box, do I need to load any kind of software or can I > just > > > do it. > > > > 'Console', in this context, isn't a verb. :) > > > > Do you mean 'connect to the console', as distinct from 'getting a > > login shell'? > > > > > I am trying but I don't know what my settings should be (HyperTerminal). Can anyone shed > > > light on the matter. Sorry if this is should be easy but I've never had to do it before. > > > > Are you trying to connect to the FreeBSD box's serial port, or via the > > network? > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-isp" in the body of the message > > > > -- > > Brian 'you Bastard' Reichert > > 37 Crystal Ave. #303 Daytime number: (603) 434-6842 > > Derry NH 03038-1713 USA Intel architecture: the left-hand path > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-isp" in the body of the message > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-isp" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 10:59:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay01.roc.frontiernet.net (alteon01b.roc.frontiernet.net [66.133.130.232]) by hub.freebsd.org (Postfix) with SMTP id 40CDF37B400 for ; Wed, 23 Jan 2002 10:59:43 -0800 (PST) Received: (qmail 11621 invoked from network); 23 Jan 2002 18:57:57 -0000 Received: from unknown (HELO blacklamb.mykitchentable.net) ([207.173.227.80]) (envelope-sender ) by relay01.roc.frontiernet.net (qmail-ldap-1.03) with SMTP for ; 23 Jan 2002 18:57:57 -0000 Received: from bigdaddy (bigdaddy [192.168.1.3]) by blacklamb.mykitchentable.net (Postfix) with SMTP id 3693EEE5FD; Wed, 23 Jan 2002 10:57:57 -0800 (PST) Message-ID: <005201c1a43f$de5c9970$0301a8c0@bigdaddy> From: "Drew Tomlinson" To: "jaime aguirre" , References: <000801c1a43e$2bf83920$208ffea9@jim> Subject: Re: FreeBSD and Microsoft Windows Date: Wed, 23 Jan 2002 10:57:56 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: jaime aguirre To: freebsd-questions@FreeBSD.ORG Sent: Wednesday, January 23, 2002 10:45 AM Subject: FreeBSD and Microsoft Windows HTML is frowned upon around here. Please configure your mailer for plain text. > Hello, > How do I get FreeBSD to talk to Windows machines in a 10pc network? > Your help is very much appreciated. Look in the ports for Samba. You can get more info about this software at www.samba.com > Something else: > I posted the same question to questions@freeBSD.org If they are one and the same > list, I apologized for it. It is the same list. One posting is enough. HTH, Drew ____________________________________________________________ Get Premium UNLIMITED Internet Access across Canada for JUST $9.95/MONTH at http://www.get3web.com/?mkid=emt123 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 11:14:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from www.k.ro (www.k.ro [194.102.255.23]) by hub.freebsd.org (Postfix) with ESMTP id AC1FA37B405 for ; Wed, 23 Jan 2002 11:14:20 -0800 (PST) Received: (from www@localhost) by www.k.ro (8.11.2/8.11.2) id g0NJECf30918; Wed, 23 Jan 2002 21:14:12 +0200 Date: Wed, 23 Jan 2002 21:14:12 +0200 Message-Id: <200201231914.g0NJECf30918@www.k.ro> From: Oleg Sorocean X-Mailer: Super-Mail@k.ro http://mail.k.ro/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Sender-IP: 192.129.3.244 To: questions@FreeBSD.org Subject: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi I am new to FreeBSD operating system and i have a question about it, in my PC i have 2 hard drive's, primary is used by windows , secondary is empty and i want to install FreeBSD on it, can i do this if answer is yes , how can i do that? Thanks in advance. ------------------------------ K Free E-mail http://www.k.ro/ by KappaNet http://www.kappa.ro/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 11:22:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay03.roc.frontiernet.net (alteon01h.roc.frontiernet.net [66.133.130.238]) by hub.freebsd.org (Postfix) with SMTP id 25B1837B400 for ; Wed, 23 Jan 2002 11:22:47 -0800 (PST) Received: (qmail 6161 invoked from network); 23 Jan 2002 19:22:46 -0000 Received: from unknown (HELO blacklamb.mykitchentable.net) ([207.173.227.80]) (envelope-sender ) by relay03.roc.frontiernet.net (qmail-ldap-1.03) with SMTP for ; 23 Jan 2002 19:22:46 -0000 Received: from bigdaddy (bigdaddy [192.168.1.3]) by blacklamb.mykitchentable.net (Postfix) with SMTP id 26AB3EE5FD for ; Wed, 23 Jan 2002 11:22:45 -0800 (PST) Message-ID: <008401c1a443$55d60ce0$0301a8c0@bigdaddy> From: "Drew Tomlinson" To: Subject: Apache From Ports? Date: Wed, 23 Jan 2002 11:22:45 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I built Apache 1.3.17 by hand using the instructions from the "Improved mod_frontpage" web site (http://home.edo.uni-dortmund.de/~chripo/) some time ago. I built it with mod_frontpage and mod_ssl statically compiled. Since then I installed PHP 4.0.6 and mod_php4 from the ports tree so I could run SquirrelMail. I guess mod_php4 is loaded as a DSO? Anyway, things have gotten out of whack and I'd like to upgrade everything. Could someone explain (or point me to a URL) the best way to build Apache with improved mod_frontpage, mod_php4, and mod_ssl from ports? Or is the best thing to do to still build by hand? I've searched the archives but have not found anything conclusive. Thanks, Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 11:35: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.dra.com (mail.dra.com [192.65.218.159]) by hub.freebsd.org (Postfix) with ESMTP id ABD7737B400 for ; Wed, 23 Jan 2002 11:34:57 -0800 (PST) Received: from stlmail.dra.com (stlmail.dra.com [192.65.218.119]) by mail.dra.com (8.9.1/8.9.1) with ESMTP id NAA26618 for ; Wed, 23 Jan 2002 13:34:57 -0600 (CST) Received: by stlmail.dra.com with Internet Mail Service (5.5.2653.19) id ; Wed, 23 Jan 2002 13:34:30 -0600 Message-ID: From: Eric Six To: questions@FreeBSD.ORG Subject: Text editiing.... possibility for perl? Date: Wed, 23 Jan 2002 13:34:27 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I have a few questions.. I need to edit a few files with a bunch text. I am creating forward and reverse zone file for a private network and I want to automate this tedious process.. Here is what I have. I create a basic template in excel, it is as follows; host15,1,in,a,10,50,15,1 host15,2,in,a,10,50,15,2 host15,3,in,a,10,50,15,3 What I need done after this file is populated is make it look like this; host15-1 in a 10.50.15.1 host15-2 in a 10.50.15.2 host15-3 in a 10.50.15.3 So I need the first comma changed to a minus, the next two comma's a tab, and the last three changed to periods. I can do some of this with 'cut' but not everything I want to do... I figure I cannot be the only one that has had to populate a massive amount of forward and reverse files in bind.. I figure there might be a perl script for this?? TIA Eric Eric Six erics@sirsi.com Network Specialist SIRSI v : 1.800.372.8527.356 f : 314.993.8927 -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 7.0.3 for non-commercial use iQA/AwUBPE8QHsbzOHaBcCrEEQJexwCgv3Zbw4opAinpt4xXJ9qqvx39ka0An2tW olfZuwJuBjOi63J+P1sZg67l =AD9h -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 11:39:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id 233F737B402 for ; Wed, 23 Jan 2002 11:39:32 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id NAA01720; Wed, 23 Jan 2002 13:39:25 -0600 (CST) Message-Id: <3.0.5.32.20020123133922.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Wed, 23 Jan 2002 13:39:22 -0600 To: "Drew Tomlinson" , From: jacks@sage-american.com Subject: Re: Apache From Ports? In-Reply-To: <008401c1a443$55d60ce0$0301a8c0@bigdaddy> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Drew: There is a fresh install in ports that installs both Apache and FP2002. Interactive install. Then install the mod_php4 from another port. Pretty smooth really. Hope this is close to a help... At 11:22 AM 1.23.2002 -0800, Drew Tomlinson wrote: >I built Apache 1.3.17 by hand using the instructions from the >"Improved mod_frontpage" web site >(http://home.edo.uni-dortmund.de/~chripo/) some time ago. I built it >with mod_frontpage and mod_ssl statically compiled. Since then I >installed PHP 4.0.6 and mod_php4 from the ports tree so I could run >SquirrelMail. I guess mod_php4 is loaded as a DSO? > >Anyway, things have gotten out of whack and I'd like to upgrade >everything. Could someone explain (or point me to a URL) the best way >to build Apache with improved mod_frontpage, mod_php4, and mod_ssl >from ports? Or is the best thing to do to still build by hand? I've >searched the archives but have not found anything conclusive. > >Thanks, > >Drew > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 11:40:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.infowest.com (ns1.infowest.com [204.17.177.10]) by hub.freebsd.org (Postfix) with ESMTP id F2A0137B404 for ; Wed, 23 Jan 2002 11:40:28 -0800 (PST) Received: from Presarionb (slc-ppp-208-187-27-250.infowest.net [208.187.27.250]) by ns1.infowest.com (Postfix) with SMTP id 861AA21744; Wed, 23 Jan 2002 12:40:26 -0700 (MST) Date: Wed, 23 Jan 2002 12:39:40 -0700 To: jaime aguirre , questions@FreeBSD.org From: Subject: Re: freeBSD and Microsoft Windows X-Mailer: Opera 5.11 build 904 X-Priority: 3 (Normal) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Message-Id: <20020123194026.861AA21744@ns1.infowest.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If each computer can ping the others then they are 'talking' to each other. If you mean sharing files then you want to look into 'samba' in the ports. If you want to study up before you start I think there is a samba.org. Also you can search on the internet for samba. (try http://www.google.com/bsd) also cd /usr/ports make search name=samba | more (The above may not work unless you are 'root'.) 1/23/2002 11:34:44 AM, "jaime aguirre" wrote: > > > > Hello, > I want to get a FreeBSD machine talking to windows machines in a 10pc > network how do I do it? > > > Your help is very much appreciated. > > Jaime > > > > ____________________________________________________________ > Get Premium UNLIMITED Internet Access across Canada for > JUST $9.95/MONTH at http://www.get3web.com/?mkid=emt123 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 11:43:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from wopr.caltech.edu (wopr.caltech.edu [131.215.102.114]) by hub.freebsd.org (Postfix) with ESMTP id 402F937B402 for ; Wed, 23 Jan 2002 11:43:14 -0800 (PST) Received: (from mph@localhost) by wopr.caltech.edu (8.11.6/8.9.3) id g0NJhCC40110; Wed, 23 Jan 2002 11:43:12 -0800 (PST) (envelope-from mph) Date: Wed, 23 Jan 2002 11:43:12 -0800 From: Matthew Hunt To: Eric Six Cc: questions@FreeBSD.ORG Subject: Re: Text editiing.... possibility for perl? Message-ID: <20020123114312.A40013@wopr.caltech.edu> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from erics@sirsi.com on Wed, Jan 23, 2002 at 01:34:27PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jan 23, 2002 at 01:34:27PM -0600, Eric Six wrote: > host15,1,in,a,10,50,15,1 > host15,2,in,a,10,50,15,2 > host15,3,in,a,10,50,15,3 > > What I need done after this file is populated is make it look like > this; > host15-1 in a 10.50.15.1 > host15-2 in a 10.50.15.2 > host15-3 in a 10.50.15.3 There's more than one way to do it. Here are two. perl -pe 's/,/-/; s/,/\t/; s/,/\t/; s/,/\t/; s/,/./g;' infile > outfile perl -ne 'chomp; @a=split /,/; print "$a[0]-$a[1]\t$a[2]\t$a[3]\t$a[4].$a[5].$a[6].$a[7]\n"' infile > outfile -- Matthew Hunt * UNIX is a lever for the http://www.pobox.com/~mph/ * intellect. -J.R. Mashey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 11:50:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blueyonder.co.uk (pcow035o.blueyonder.co.uk [195.188.53.121]) by hub.freebsd.org (Postfix) with ESMTP id A111037B44B for ; Wed, 23 Jan 2002 11:50:34 -0800 (PST) Received: from pcow035o.blueyonder.co.uk ([127.0.0.1]) by blueyonder.co.uk with Microsoft SMTPSVC(5.5.1877.757.75); Wed, 23 Jan 2002 19:46:59 +0000 Received: from y2p4t1 (unverified [62.30.68.81]) by pcow035o.blueyonder.co.uk (Content Technologies SMTPRS 4.2.9) with ESMTP id for ; Wed, 23 Jan 2002 19:46:59 +0000 From: "Stuart Duckworth" To: freebsd-questions@FreeBSD.ORG Date: Wed, 23 Jan 2002 19:51:07 -0000 MIME-Version: 1.0 Content-type: text/plain; charset="us-ascii" Content-transfer-encoding: 7BIT Subject: Re: cd mount problem Reply-To: ITServices@cableinet.co.uk Message-ID: <3C4F142B.12122.BA2ED1@localhost> In-reply-to: <20011005033106.70977.qmail@web13502.mail.yahoo.com> References: <00af324061704a1PCOW028M@blueyonder.co.uk> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Some time ago I wrote about my problems mounting the cdrom on my FreeBSD 4.2 system. I have taken a long time getting round to this. Chia an wrote suggesting that I look in /etc/fstab to see that the cdrom file system exists: it does. Also suggested I do: sh MAKEDEV acd0c which I tried but to no avail. I think I have to put out a lot more information if anyone is to be able to help me. So here's the story: I am using an ABIT motherboard running an AMD DX4. There is a sIDE CDROM control card sitting in an ISA slot. It uses IRQ 15 and I/O addresses 1E8 - 1EF. When I installed FreeBSD I had to set the access to the CDROM card at irq 15 etc. in the installation program so that it could see and use the cd to install from. It worked. After installation I rebooted the machine and, as root, tried to mount the cdrom with # mount_cd9660 /dev/acd0c /cdrom got the error: mount_cd9660: Device not configured. I did dmesg and got: ata0 at port 0x1f0-0x1f7,0x3f6 irq14 on isa0 ... unknown: can't assign resources. I looked in /etc/fstab and found /dev/acd0c /cdrom cd9660 ro, noauto 0 0 I recompiled the kernel including the lines: device ata device atapicd ... device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 It compiled and ran first time (with reservations about sendmail at the moment!) but still it can not see the cdrom and there is no: ata1 at port ... etc. in the dmesg output. but still have the other messages: ata0 at port 0x1f0-0x1f7,0x3f6 irq14 on isa0 ... unknown: can't assign resources. How can I get the kernel to see and read/write to the sIDE card and hence the cdrom? Hope someone can help me. Stuart. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 11:54:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.bcn.isoco.net (ldap.isoco.net [212.9.90.11]) by hub.freebsd.org (Postfix) with ESMTP id 5FD2137B400 for ; Wed, 23 Jan 2002 11:54:45 -0800 (PST) Received: from fxn.bcn.isoco.net (fxn.bcn.isoco.net [172.16.1.50]) by smtp.bcn.isoco.net (Postfix) with SMTP id AC3A2CD2B5 for ; Wed, 23 Jan 2002 20:54:43 +0100 (CET) Date: Wed, 23 Jan 2002 20:54:38 +0100 From: F.Xavier Noria To: freebsd-questions@freebsd.org Subject: Re: Text editiing.... possibility for perl? Message-Id: <20020123205438.23e003d3.fxn@isoco.com> In-Reply-To: References: X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 23 Jan 2002 13:34:27 -0600 Eric Six wrote: : I have a few questions.. I need to edit a few files with a bunch : text. I am creating forward and reverse zone file for a private : network and I want to automate this tedious process.. Here is what I : have. : : I create a basic template in excel, it is as follows; : : host15,1,in,a,10,50,15,1 : host15,2,in,a,10,50,15,2 : host15,3,in,a,10,50,15,3 : : : What I need done after this file is populated is make it look like : this; : host15-1 in a 10.50.15.1 : host15-2 in a 10.50.15.2 : host15-3 in a 10.50.15.3 : : So I need the first comma changed to a minus, the next two comma's a : tab, and the last three changed to periods. I can do some of this : with 'cut' but not everything I want to do... I figure I cannot be : the only one that has had to populate a massive amount of forward and : reverse files in bind.. I figure there might be a perl script for : this?? This one liner performs the transformation in place and leaves a backup of the original file called file.bak in the same directory: $ perl -pi.bak -e '$re="([^,]+)," x 7; s/$re/$1-$2\t$3\t$4\t$5.$6.$7./' file $ cat file host15-1 in a 10.50.15.1 host15-2 in a 10.50.15.2 host15-3 in a 10.50.15.3 -- fxn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 12: 0:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay02.roc.frontiernet.net (alteon01g.roc.frontiernet.net [66.133.130.237]) by hub.freebsd.org (Postfix) with SMTP id 9A88037B400 for ; Wed, 23 Jan 2002 12:00:24 -0800 (PST) Received: (qmail 9451 invoked from network); 23 Jan 2002 20:00:18 -0000 Received: from unknown (HELO blacklamb.mykitchentable.net) ([207.173.227.80]) (envelope-sender ) by relay02.roc.frontiernet.net (qmail-ldap-1.03) with SMTP for ; 23 Jan 2002 20:00:18 -0000 Received: from bigdaddy (bigdaddy [192.168.1.3]) by blacklamb.mykitchentable.net (Postfix) with SMTP id EFF99EE5FD; Wed, 23 Jan 2002 12:00:16 -0800 (PST) Message-ID: <00c001c1a448$93e8e980$0301a8c0@bigdaddy> From: "Drew Tomlinson" To: , References: <3.0.5.32.20020123133922.01831ca0@mail.sage-american.com> Subject: Re: Apache From Ports? Date: Wed, 23 Jan 2002 12:00:16 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: To: "Drew Tomlinson" ; Sent: Wednesday, January 23, 2002 11:39 AM Subject: Re: Apache From Ports? > Drew: There is a fresh install in ports that installs both Apache and > FP2002. Interactive install. Then install the mod_php4 from another port. > Pretty smooth really. > > Hope this is close to a help... Thanks for the response. I have a couple of questions. 1. Will FP2002 work with FrontPage 2000 client? 2. How does mod_ssl fit into this equation? Thanks, Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 12: 3:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtpproxy2.mitre.org (smtpproxy2.mitre.org [128.29.154.90]) by hub.freebsd.org (Postfix) with ESMTP id 7DFD337B400 for ; Wed, 23 Jan 2002 12:03:27 -0800 (PST) Received: from avsrv2.mitre.org (avsrv2.mitre.org [128.29.154.4]) by smtpproxy2.mitre.org (8.11.3/8.11.3) with ESMTP id g0NK2oc00280; Wed, 23 Jan 2002 15:02:50 -0500 (EST) Received: from MAILHUB2 (mailhub2.mitre.org [129.83.221.18]) by smtpsrv2.mitre.org (8.11.3/8.11.3) with ESMTP id g0NK2li29443; Wed, 23 Jan 2002 15:02:48 -0500 (EST) Received: from dhcp-105-164.mitre.org (128.29.105.164) by mailhub2.mitre.org with SMTP id 9005458; Wed, 23 Jan 2002 15:02:45 -0500 Message-ID: <3C4F16E5.8177CB81@mitre.org> Date: Wed, 23 Jan 2002 15:02:45 -0500 From: Jason Andresen Organization: The MITRE Corporation X-Mailer: Mozilla 4.75 [en]C-20000818M (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Simon Dick Cc: freebsd-questions@freebsd.org Subject: Re: New IBM drive setting problem? References: <3C4465B9.50AB6EA1@mitre.org> <20020115190721.GF99371@irrelevant.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Simon Dick wrote: > > On Tue, Jan 15, 2002 at 12:24:09PM -0500, Jason Andresen wrote: > > I have a rather annoying problem my ide controller on a VIA KT133a. > > > > Both the drive and the controller support UDMA100, and I have an UDMA100 > > cable attached, but the drive only comes up as UDMA33. More annoying > > is the DVD-ROM drive attached to the second controller that comes up > > as ATA66. > > > > Is there any knob I can tweak to make the drive realize it's ATA100 > > compliant? > > > > This is running on: > > FreeBSD escaflowne.el.hazard 4.4-STABLE FreeBSD 4.4-STABLE #9: Mon Dec > > 31 18:21:52 EST 2001 > > > > Here are the relevant messages from boot: > > atapci0: port 0xe000-0xe00f at device > > 17.1 on pci 0 > > ata0: at 0x1f0 irq 14 on atapci0 > > ata1: at 0x170 irq 15 on atapci0 > > > > ad0: 58644MB [119150/16/63] at ata0-master tagged > > UDMA33 > > acd0: DVD-ROM at ata1-master > > using UDMA66 > > The drive should just work as ATA100, mine do: > FreeBSD 4.4-RELEASE-p1 #1: Sun Dec 16 21:20:07 GMT 2001 > atapci1: port 0x8000-0x803f,0x8400-0x8403,0x8800-0x8807,0x9000-0x9003,0x9400-0x9407 mem 0xe2000000-0xe201ffff irq 10 at device 17.0 on pci0 > ata2: at 0x9400 on atapci1 > ata3: at 0x8800 on atapci1 > ad4: 58644MB [119150/16/63] at ata2-master UDMA100 > ad6: 58644MB [119150/16/63] at ata3-master UDMA100 > > You may want to try sending the output of boot -v to the list. Ok: Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.4-STABLE #9: Mon Dec 31 18:21:52 EST 2001 root@escaflowne.el.hazard:/usr/src/sys/compile/ESCAFLOWNE Calibrating clock(s) ... TSC clock: 1477618038 Hz, i8254 clock: 1193277 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method Timecounter "TSC" frequency 1477508214 Hz CPU: AMD Athlon(tm) XP 1700+ (1477.51-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x662 Stepping = 2 Features=0x383f9ff AMD Features=0xc0480000<,AMIE,DSP,3DNow!> Data TLB: 32 entries, fully associative Instruction TLB: 16 entries, fully associative L1 data cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L1 instruction cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L2 internal cache: 256 kbytes, 64 bytes/line, 1 lines/tag, 8-way associative real memory = 268369920 (262080K bytes) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) 0x00472000 - 0x0ffe7fff, 263675904 bytes (64374 pages) avail memory = 256925696 (250904K bytes) bios32: Found BIOS32 Service Directory header at 0xc00fadc0 bios32: Entry = 0xfb230 (c00fb230) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xb260 pnpbios: Found PnP BIOS data at 0xc00fbd20 pnpbios: Entry = f0000:bd50 Rev = 1.0 Other BIOS signatures found: ACPI: 000f67c0 Preloaded elf kernel "kernel" at 0xc044b000. Preloaded elf module "usb.ko" at 0xc044b0a8. Preloaded elf module "agp.ko" at 0xc044b144. Preloaded elf module "mga.ko" at 0xc044b1e0. link_elf: symbol linux_ioctl_register_handler undefined VESA: information block 56 45 53 41 00 02 fd 6e 00 c0 01 00 00 00 a7 6b 00 c0 00 01 07 02 12 6f 00 c0 19 6f 00 c0 22 6f 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 VESA: 11 mode(s) found VESA: v2.0, 16384k memory, flags:0x1, mode table:0xc00c6ba7 (c0006ba7) VESA: Matrox Graphics Inc. VESA: Matrox MGA-G200 00 Pentium Pro MTRR support enabled md0: Malloc disk Creating DISK md0 pci_open(1): mode 1 addr port (0x0cf8) is 0x80010014 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=30991106) Using $PIR table, 6 entries at 0xc00fdf10 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard found-> vendor=0x1106, dev=0x3099, revid=0x00 class=06-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[10]: type 1, range 32, base e0000000, size 26 found-> vendor=0x1106, dev=0xb099, revid=0x00 class=06-04-00, hdrtype=0x01, mfdev=0 subordinatebus=1 secondarybus=1 found-> vendor=0x109e, dev=0x036e, revid=0x02 class=04-00-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 intpin=a, irq=10 map[10]: type 1, range 32, base e9002000, size 12 found-> vendor=0x109e, dev=0x0878, revid=0x02 class=04-80-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 intpin=a, irq=10 map[10]: type 1, range 32, base e9000000, size 12 found-> vendor=0x100b, dev=0x0020, revid=0x00 class=02-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=5 map[10]: type 1, range 32, base 0000d000, size 8 map[14]: type 1, range 32, base e9001000, size 12 found-> vendor=0x9005, dev=0x0081, revid=0x02 class=01-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base 0000d400, size 8 map[14]: type 1, range 64, base e9003000, size 12 found-> vendor=0x1102, dev=0x0002, revid=0x08 class=04-01-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 intpin=a, irq=10 map[10]: type 1, range 32, base 0000d800, size 5 found-> vendor=0x1102, dev=0x7002, revid=0x08 class=09-80-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 map[10]: type 1, range 32, base 0000dc00, size 3 found-> vendor=0x1106, dev=0x3074, revid=0x00 class=06-01-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 found-> vendor=0x1106, dev=0x0571, revid=0x06 class=01-01-8a, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=255 map[20]: type 1, range 32, base 0000e000, size 4 found-> vendor=0x1106, dev=0x3038, revid=0x1b class=0c-03-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=d, irq=11 map[20]: type 1, range 32, base 0000e400, size 5 found-> vendor=0x1106, dev=0x3038, revid=0x1b class=0c-03-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=d, irq=11 map[20]: type 1, range 32, base 0000e800, size 5 found-> vendor=0x1106, dev=0x3038, revid=0x1b class=0c-03-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=d, irq=11 map[20]: type 1, range 32, base 0000ec00, size 5 pci0: on pcib0 agp0: mem 0xe0000000-0xe3ffffff at device 0.0 on pci0 agp0: allocating GATT for aperture of size 256M pcib1: at device 1.0 on pci0 found-> vendor=0x102b, dev=0x0521, revid=0x01 class=03-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=10 map[10]: type 1, range 32, base e7000000, size 24 map[14]: type 1, range 32, base e4000000, size 14 map[18]: type 1, range 32, base e5000000, size 23 pci1: on pcib1 pci1: (vendor=0x102b, dev=0x0521) at 0.0 irq 10 bktr0: mem 0xe9002000-0xe9002fff irq 10 at device 8.0 on pci0 iicbb0: on bti2c0 iicbus0: on iicbb0 master-only iicbus: iic devclass not found smbus0: on bti2c0 smb0: on smbus0 brooktree0: PCI bus latency is 32. bktr0: buffer size 3555328, addr 0x5000000 bktr0: GPIO is 0x00fff7c3 bktr0: subsystem 0x1461 0x0001 bktr0: AVer Media TV/FM, Philips FR1236 NTSC FM tuner. pci0: (vendor=0x109e, dev=0x0878) at 8.1 irq 10 sis0: port 0xd000-0xd0ff mem 0xe9001000-0xe9001fff irq 5 at device 9.0 on pci0 sis0: Ethernet address: 00:02:e3:05:1e:12 miibus0: on sis0 ukphy0: on miibus0 ukphy0: OUI 0x080017, model 0x0002, rev. 1 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto bpf: sis0 attached ahc0: port 0xd400-0xd4ff mem 0xe9003000-0xe9003fff irq 11 at device 10.0 on pci0 ahc0: Reading SEEPROM...done. ahc0: BIOS eeprom is present ahc0: Secondary Low byte termination Enabled ahc0: Primary Low Byte termination Enabled ahc0: Primary High Byte termination Enabled ahc0: Downloading Sequencer Program... 419 instructions downloaded aic7892: Ultra160 Wide Channel A, SCSI Id=7, 32/255 SCBs pcm0: port 0xd800-0xd81f irq 10 at device 12.0 on pci0 emu: setmap (51000, 800), nseg=1, error=0 emu: setmap (472000, 1000), nseg=1, error=0 pcm0: ac97 codec id 0x43525914 (Cirrus Logic CS4297B) pcm0: ac97 codec features headphone, 20 bit DAC, 18 bit ADC, 6 bit master volume, Crystal Semi 3D Stereo Enhancement pcm0: ac97 primary codec extended features AMAP using shared irq10. emu: setmap (4b2000, 1000), nseg=1, error=0 emu: setmap (4f2000, 1000), nseg=1, error=0 emu: setmap (532000, 1000), nseg=1, error=0 emu: setmap (572000, 1000), nseg=1, error=0 pcm: setmap 5b2000, 1000; 0xcfd5a000 -> 5b2000 pcm: setmap 5f2000, 1000; 0xcfd9a000 -> 5f2000 pcm: setmap 632000, 1000; 0xcfdda000 -> 632000 isab0: at device 17.0 on pci0 isa0: on isab0 atapci0: port 0xe000-0xe00f at device 17.1 on pci0 ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0xe000 ata0: mask=03 status0=50 status1=00 ata0: mask=03 ostat0=50 ostat2=00 ata0-master: ATAPI probe a=00 b=00 ata0-slave: ATAPI probe a=00 b=00 ata0: mask=03 status0=50 status1=00 ata0-master: ATA probe a=01 b=a5 ata0: devices=01 ata0: at 0x1f0 irq 14 on atapci0 ata1: iobase=0x0170 altiobase=0x0376 bmaddr=0xe008 ata1: mask=03 status0=50 status1=00 ata1: mask=03 ostat0=50 ostat2=00 ata1-slave: ATAPI probe a=00 b=00 ata1-master: ATAPI probe a=14 b=eb ata1: mask=03 status0=00 status1=00 ata1: devices=04 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xe400-0xe41f irq 11 at device 17.2 on pci0 using shared irq11. usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0xe800-0xe81f irq 11 at device 17.3 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0xec00-0xec1f irq 11 at device 17.4 on pci0 usb2: on uhci2 usb2: USB revision 1.0 uhub2: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0:

Hello,

 

My name is Laz Peterson and I am with Paravis = Technologies, a PC manufacturing company located near = San Francisco, = CA= .  We are very interested in using = your operating system for all of our workstation/client systems and also to = build our network of servers.  = One of our objectives is to build a network that has one ‘HQ’ based in = San Francisco, and almost 100,000 nodes = based off of this OS spread all throughout the western US.  We want to use all new = networking protocols and architectures.  = We are currently working with a network service provider in building a VPN over = a fiber network.

 

We would like to heavily customize the operating = system and ultimately, when we are out of beta stages, make the source open and = allow everyone to submit suggestions, inform of bugs and other flaws, and = integrate software of their own seamlessly.

 

Who can I talk to about such business?  I appreciate your = time.

 

Sincerely,

Laz C Peterson

CEO, Paravis = Technologies

------=_NextPart_000_0001_01C1A413.4281C7E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 13:46:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from viefep11-int.chello.at (viefep11-int.chello.at [213.46.255.27]) by hub.freebsd.org (Postfix) with ESMTP id B8F4337B405; Wed, 23 Jan 2002 13:45:29 -0800 (PST) Received: from OEMComputer ([212.186.102.214]) by viefep11-int.chello.at (InterMail vM.5.01.03.06 201-253-122-118-106-20010523) with SMTP id <20020123214526.FRHY1155.viefep11-int.chello.at@OEMComputer>; Wed, 23 Jan 2002 22:45:26 +0100 Message-ID: <000c01c1a457$54d5eae0$5700a8c0@MSHOST> From: "Petar Forai" To: , , Subject: 4.5/SMP clock drifting Date: Wed, 23 Jan 2002 22:45:53 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0009_01C1A45F.B6712000" 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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0009_01C1A45F.B6712000 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi! I've a strange problem on my SMP machine running 4.5. At 8am i use ntpdate to sync the time, at 9:37am when i ntpdate again my time offset from the timeserver is about 0.7s! My dmesg output is att. regards, #pfo ------=_NextPart_000_0009_01C1A45F.B6712000 Content-Type: application/octet-stream; name="misc" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="misc" Copyright (c) 1992-2002 The FreeBSD Project.=0A= Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994=0A= The Regents of the University of California. All rights reserved.=0A= FreeBSD 4.5-RC #0: Sat Jan 19 11:19:30 CET 2002=0A= root@KilKenny.vip.at:/usr/src/sys/compile/KILKENNY=0A= Calibrating clock(s) ... TSC clock: 996708824 Hz, i8254 clock: 1193023 Hz=0A= CLK_USE_I8254_CALIBRATION not specified - using default frequency=0A= Timecounter "i8254" frequency 1193182 Hz=0A= CLK_USE_TSC_CALIBRATION not specified - using old calibration method=0A= CPU: Pentium III/Pentium III Xeon/Celeron (996.85-MHz 686-class CPU)=0A= Origin =3D "GenuineIntel" Id =3D 0x68a Stepping =3D 10=0A= = Features=3D0x387fbff=0A= real memory =3D 1073741824 (1048576K bytes)=0A= Physical memory chunk(s):=0A= 0x00001000 - 0x0009efff, 647168 bytes (158 pages)=0A= 0x002ed000 - 0x3fff7fff, 1070641152 bytes (261387 pages)=0A= avail memory =3D 1042186240 (1017760K bytes)=0A= Programming 16 pins in IOAPIC #0=0A= IOAPIC #0 intpin 2 -> irq 0=0A= Programming 16 pins in IOAPIC #1=0A= SMP: CPU0 apic_initialize():=0A= lint0: 0x00000700 lint1: 0x00010400 TPR: 0x00000010 SVR: 0x000001ff=0A= FreeBSD/SMP: Multiprocessor motherboard=0A= cpu0 (BSP): apic id: 0, version: 0x00040011, at 0xfee00000=0A= cpu1 (AP): apic id: 1, version: 0x00040011, at 0xfee00000=0A= io0 (APIC): apic id: 4, version: 0x000f0011, at 0xfec00000=0A= io1 (APIC): apic id: 5, version: 0x000f0011, at 0xfec01000=0A= bios32: Found BIOS32 Service Directory header at 0xc00fdb90=0A= bios32: Entry =3D 0xfdba0 (c00fdba0) Rev =3D 0 Len =3D 1=0A= pcibios: PCI BIOS entry at 0xdbc1=0A= pnpbios: Found PnP BIOS data at 0xc00f4c50=0A= pnpbios: Entry =3D f0000:3954 Rev =3D 1.0=0A= Other BIOS signatures found:=0A= ACPI: 00000000=0A= Preloaded elf kernel "kernel" at 0xc02c3000.=0A= Preloaded elf module "accf_http.ko" at 0xc02c309c.=0A= Pentium Pro MTRR support enabled=0A= SMP: CPU0 bsp_apic_configure():=0A= lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000010 SVR: 0x000001ff=0A= pci_open(1): mode 1 addr port (0x0cf8) is 0x80000070=0A= pci_open(1a): mode1res=3D0x80000000 (0x80000000)=0A= pci_cfgcheck: device 0 [class=3D060000] [hdr=3D80] is there = (id=3D00091166)=0A= Using $PIR table, 10 entries at 0xc00f51c0=0A= npx0: on motherboard=0A= npx0: INT 16 interface=0A= pcib0: on motherboard=0A= found-> vendor=3D0x1166, dev=3D0x0009, revid=3D0x06=0A= class=3D06-00-00, hdrtype=3D0x00, mfdev=3D1=0A= subordinatebus=3D0 secondarybus=3D0=0A= found-> vendor=3D0x1166, dev=3D0x0009, revid=3D0x06=0A= class=3D06-00-00, hdrtype=3D0x00, mfdev=3D1=0A= subordinatebus=3D0 secondarybus=3D0=0A= IOAPIC #1 intpin 6 -> irq 2=0A= Freeing (NOT implemented) redirected PCI irq 11.=0A= found-> vendor=3D0x1002, dev=3D0x4752, revid=3D0x27=0A= class=3D03-00-00, hdrtype=3D0x00, mfdev=3D0=0A= subordinatebus=3D0 secondarybus=3D0=0A= intpin=3Da, irq=3D2=0A= map[10]: type 1, range 32, base fd000000, size 24=0A= map[14]: type 1, range 32, base 0000d800, size 8=0A= map[18]: type 1, range 32, base feaff000, size 12=0A= IOAPIC #1 intpin 4 -> irq 5=0A= Freeing (NOT implemented) redirected PCI irq 9.=0A= found-> vendor=3D0x8086, dev=3D0x1229, revid=3D0x08=0A= class=3D02-00-00, hdrtype=3D0x00, mfdev=3D0=0A= subordinatebus=3D0 secondarybus=3D0=0A= intpin=3Da, irq=3D5=0A= map[10]: type 1, range 32, base feafe000, size 12=0A= map[14]: type 1, range 32, base 0000d400, size 6=0A= map[18]: type 1, range 32, base fe900000, size 20=0A= IOAPIC #1 intpin 5 -> irq 7=0A= Freeing (NOT implemented) redirected PCI irq 5.=0A= found-> vendor=3D0x8086, dev=3D0x1229, revid=3D0x08=0A= class=3D02-00-00, hdrtype=3D0x00, mfdev=3D0=0A= subordinatebus=3D0 secondarybus=3D0=0A= intpin=3Da, irq=3D7=0A= map[10]: type 1, range 32, base feafd000, size 12=0A= map[14]: type 1, range 32, base 0000d000, size 6=0A= map[18]: type 1, range 32, base fe700000, size 20=0A= found-> vendor=3D0x1166, dev=3D0x0200, revid=3D0x50=0A= class=3D06-01-00, hdrtype=3D0x00, mfdev=3D1=0A= subordinatebus=3D0 secondarybus=3D0=0A= found-> vendor=3D0x1166, dev=3D0x0211, revid=3D0x00=0A= class=3D01-01-8a, hdrtype=3D0x00, mfdev=3D1=0A= subordinatebus=3D0 secondarybus=3D0=0A= map[20]: type 1, range 32, base 0000ffa0, size 4=0A= IOAPIC #0 intpin 10 -> irq 9=0A= Freeing (NOT implemented) redirected PCI irq 10.=0A= found-> vendor=3D0x1166, dev=3D0x0220, revid=3D0x04=0A= class=3D0c-03-10, hdrtype=3D0x00, mfdev=3D1=0A= subordinatebus=3D0 secondarybus=3D0=0A= intpin=3Da, irq=3D9=0A= map[10]: type 1, range 32, base feafc000, size 12=0A= pci0: on pcib0=0A= pci0: (vendor=3D0x1002, = dev=3D0x4752) at 1.0 irq 2=0A= fxp0: port 0xd400-0xd43f mem = 0xfe900000-0xfe9fffff,0xfeafe000-0xfeafefff irq 5 at device 4.0 on pci0=0A= fxp0: using memory space register mapping=0A= fxp0: Ethernet address 00:e0:81:04:fc:0d=0A= fxp0: PCI IDs: 8086 1229 8086 100c 0008=0A= fxp0: Dynamic Standby mode is disabled=0A= inphy0: on miibus0=0A= inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto=0A= fxp1: port 0xd000-0xd03f mem = 0xfe700000-0xfe7fffff,0xfeafd000-0xfeafdfff irq 7 at device 5.0 on pci0=0A= fxp1: using memory space register mapping=0A= fxp1: Ethernet address 00:e0:81:04:fc:0e=0A= fxp1: PCI IDs: 8086 1229 8086 100c 0008=0A= fxp1: Dynamic Standby mode is disabled=0A= inphy1: on miibus1=0A= inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto=0A= isab0: at device 15.0 on pci0=0A= isa0: on isab0=0A= atapci0: port 0xffa0-0xffaf at = device 15.1 on pci0=0A= ata0: iobase=3D0x01f0 altiobase=3D0x03f6 bmaddr=3D0xffa0=0A= ata0: mask=3D03 status0=3D20 status1=3D30=0A= ata0: mask=3D03 ostat0=3D20 ostat2=3D30=0A= ata0-master: ATAPI probe a=3D20 b=3D20=0A= ata0-slave: ATAPI probe a=3D30 b=3D30=0A= ata0: mask=3D03 status0=3D20 status1=3D30=0A= ata0-master: ATA probe a=3D25 b=3D25=0A= ata0-slave: ATA probe a=3D25 b=3D25=0A= ata0: devices=3D00=0A= ata0: at 0x1f0 irq 14 on atapci0=0A= ata1: iobase=3D0x0170 altiobase=3D0x0376 bmaddr=3D0xffa8=0A= ata1: mask=3D03 status0=3D50 status1=3D00=0A= ata1: mask=3D03 ostat0=3D50 ostat2=3D00=0A= ata1-master: ATAPI probe a=3D14 b=3Deb=0A= ata1-slave: ATAPI probe a=3D7f b=3D7f=0A= ata1: mask=3D03 status0=3D00 status1=3D00=0A= ata1: devices=3D04=0A= ata1: at 0x170 irq 15 on atapci0=0A= pci0: (vendor=3D0x1166, dev=3D0x0220) at 15.2 irq 9=0A= pcib1: on motherboard=0A= IOAPIC #1 intpin 9 -> irq 10=0A= Freeing (NOT implemented) redirected PCI irq 7.=0A= found-> vendor=3D0x9005, dev=3D0x00cf, revid=3D0x01=0A= class=3D01-00-00, hdrtype=3D0x00, mfdev=3D1=0A= subordinatebus=3D0 secondarybus=3D0=0A= intpin=3Da, irq=3D10=0A= map[10]: type 1, range 32, base 0000e400, size 8=0A= map[14]: type 1, range 64, base febfe000, size 12=0A= IOAPIC #1 intpin 10 -> irq 11=0A= Freeing (NOT implemented) redirected PCI irq 10.=0A= found-> vendor=3D0x9005, dev=3D0x00cf, revid=3D0x01=0A= class=3D01-00-00, hdrtype=3D0x00, mfdev=3D1=0A= subordinatebus=3D0 secondarybus=3D0=0A= intpin=3Db, irq=3D11=0A= map[10]: type 1, range 32, base 0000e800, size 8=0A= map[14]: type 1, range 64, base febff000, size 12=0A= pci1: on pcib1=0A= ahc0: port 0xe400-0xe4ff mem = 0xfebfe000-0xfebfefff irq 10 at device 6.0 on pci1=0A= ahc0: Reading SEEPROM...done.=0A= ahc0: Manual LVD Termination=0A= ahc0: BIOS eeprom is present=0A= ahc0: Secondary High byte termination Enabled=0A= ahc0: Secondary Low byte termination Enabled=0A= ahc0: Primary Low Byte termination Enabled=0A= ahc0: Primary High Byte termination Enabled=0A= ahc0: Downloading Sequencer Program... 419 instructions downloaded=0A= aic7899: Ultra160 Wide Channel A, SCSI Id=3D7, 32/255 SCBs=0A= ahc1: port 0xe800-0xe8ff mem = 0xfebff000-0xfebfffff irq 11 at device 6.1 on pci1=0A= ahc1: Reading SEEPROM...done.=0A= ahc1: Manual LVD Termination=0A= ahc1: BIOS eeprom is present=0A= ahc1: Secondary High byte termination Enabled=0A= ahc1: Secondary Low byte termination Enabled=0A= ahc1: Primary Low Byte termination Enabled=0A= ahc1: Primary High Byte termination Enabled=0A= ahc1: Downloading Sequencer Program... 419 instructions downloaded=0A= aic7899: Ultra160 Wide Channel B, SCSI Id=3D7, 32/255 SCBs=0A= ata-: ata1 exists, using next available unit number=0A= Trying Read_Port at 203=0A= Trying Read_Port at 243=0A= Trying Read_Port at 283=0A= Trying Read_Port at 2c3=0A= Trying Read_Port at 303=0A= Trying Read_Port at 343=0A= Trying Read_Port at 383=0A= Trying Read_Port at 3c3=0A= isa_probe_children: disabling PnP devices=0A= isa_probe_children: probing non-PnP devices=0A= orm0: tags so the whole page isn't underlined. I've see the demoronizer port, but don't know that much about it, and I don't think its quite what I want. Basically I have to take html given me and make the html they mean. Any Great Ideas END ------------------------------------------------------------------------------ Philip M. Gollucci (p6m7g8) philip@p6m7g8.com 301.314.3118 Science, Discovery, & the Universe (UMCP) Webmaster & Webship Teacher URL: http://www.sdu.umd.edu EJPress.com Database/PERL Programmer & System Admin URL : http://www.ejournalpress.com Resume : http://www.p6m7g8.com/resume.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 15:29:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sttlpop9.sttl.uswest.net (sttlpop9.sttl.uswest.net [206.81.192.10]) by hub.freebsd.org (Postfix) with SMTP id C78A437B402 for ; Wed, 23 Jan 2002 15:29:21 -0800 (PST) Received: (qmail 71348 invoked by uid 0); 23 Jan 2002 23:29:30 -0000 Received: from unknown (HELO System3) (65.102.135.62) by sttlpop9.sttl.uswest.net with SMTP; 23 Jan 2002 23:29:30 -0000 Date: Wed, 23 Jan 2002 15:29:14 -0800 Message-ID: <000701c1a465$c4fe5920$0200a8c0@System3> From: "Bob Maratas" To: questions@freebsd.org Subject: Help! MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Two problems: 1) I reconfigured my rx.conf file and accidently left the quote from the ifconfig_fxp0 line and now the system stops and prompts for the proper cmdline ... but it won't accept a line entry. 2) Then I decided to invoke the single-user mode and now I don't know how to reverse it upon rebooting the system. Bob Maratas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 15:29:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 7864537B404 for ; Wed, 23 Jan 2002 15:29:47 -0800 (PST) Received: from gateway ([63.70.155.29]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com; Wed, 23 Jan 2002 18:33:02 -0500 From: "Joe & Fhe Barbish" To: "Jason Andresen" Cc: "FBSD Questions" Subject: RE: New IBM drive setting problem? Date: Wed, 23 Jan 2002 18:29:43 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <3C4F3CBF.73EA07B@mitre.org> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Here is my advice, since you have only one device per motherboard ide controller this config should work, this means you have some thing incorrect with the hardware. Open up the box and check out that the components are plugged in the correct sockets on the motherboard, that you are not using a 33 wire ribbon to the hard drive, get the mfg and model number off the id plate of the HD and look it up on the mfg web page to verify it's 100, there is a visual difference in ide ribbons, 33 has bigger wires and 66 has smaller wires and 66 of them. I do not know about 100 but it may also have a special ribbon. Check with motherboard manufacture web page for a bios, flash update and verify that you motherboard model does support ATA/100. It's time you play detective. -----Original Message----- From: Jason Andresen [mailto:jandrese@mitre.org] Sent: Wednesday, January 23, 2002 5:44 PM To: Joe & Fhe Barbish; freebsd-questions@freebsd.org Subject: Re: New IBM drive setting problem? Joe & Fhe Barbish wrote: > > You can not share two different speed devices on the same > ide controller. Remove what ever you have from the slave position > of the ribbon on the primary motherboard ide port. Also your pc > Bois have to support UDMA100. If your motherboard is older that > 6/2001 it probably does not support UDMA100 just UDMA66. Check with > your motherboard manufacture for a bios, flash update. Same controller? The Hard Drive is on the primary and the CD-ROM is on the secondary. I am not using the slave on either controller Does this mean I can never plug my Hard Drive and CD-ROM in at the same time? This doesn't make sense to me. The Motherboard is very new (11/2001) and is supposed to support ATA/100 out of the box. P.S. Please CC me by email, thank you. -- \ |_ _|__ __|_ \ __| Jason Andresen jandrese@mitre.org |\/ | | | / _| Network and Distributed Systems Engineer _| _|___| _| _|_\___| Office: 703-883-7755 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 15:32:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by hub.freebsd.org (Postfix) with ESMTP id 4E1CA37B41C for ; Wed, 23 Jan 2002 15:30:57 -0800 (PST) Received: from ppp8-111.ath.forthnet.gr Bernie_X@smtp-send.myrealbox.com [213.16.155.111] by smtp-send.myrealbox.com with Novell NIMS $Revision: 2.88 $ on Novell NetWare; Wed, 23 Jan 2002 16:30:54 -0700 Date: Wed, 23 Jan 2002 23:18:09 +0200 (EET) From: Bernie X-X-Sender: root@BLAST To: Joe Clarke Cc: Bernie , FreeBSD User Questions List Subject: Re: gnomecore problem... In-Reply-To: <1011752390.36679.6.camel@shumai.marcuscom.com> Message-ID: <20020123230009.E188-100000@BLAST> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 22 Jan 2002, Joe Clarke wrote: > On Tue, 2002-01-22 at 17:17, Bernie wrote: > > > > hello, > > > > i'm trying to do portupgrade on gnomecore and get errors > > continuosly. the portupgrade was used with -PR options. > > the error i'm getting after a long compiling session is > > the following: > > > > command failed: make clean build > > ** Fix the problem and try again. > > ** The following packages were not installed or upgraded (-:skipped / > > !:failed) > > - graphics/png (png-1.2.1) > > - devel/gettext (gettext-0.10.35_1) > > - archivers/bzip2 (bzip2-1.0.1) > > - graphics/xpm (xpm-3.4k) > > - graphics/jpeg (jpeg-6b_1) > > - audio/libaudiofile (libaudiofile-0.2.2) > > - graphics/libungif (libungif-4.1.0b1) > > - audio/esound (esound-0.2.23) > > - devel/glib12 (glib-1.2.10_5) > > - x11-toolkits/gtk12 (gtk-1.2.10_3) > > - textproc/libxml (libxml-1.8.16) > > - graphics/tiff (tiff-3.5.7) > > - graphics/imlib (imlib-1.9.11) > > - x11/gnomelibs (gnomelibs-1.4.1.3) > > - audio/gnomeaudio (gnomeaudio-1.4.0) > > ! x11/gnomecore (gnomecore-1.2.4) (missing header) > > This might be related to the recent change in gnomelibs. You may need > to portupgrade -r -f ORBit to fix this. > > If you send the actual compile output, that may help determine for sure > what is going on. > > > > > > > i'm getting error on compilation on many ports. they are > > cvsup and i'm using 4.5-Prerelease version. > > > > is there any way to get a better report on the error that > > occured? > > > > i was trying to compile glide as well but didn't work either. > > same with xmms and many other ports. > > > > i think that some 'central' thing fails to compile and it's > > needed by many apps that in turn fail to compile cause they > > depend on it. > > > > on occasions i got the stdout and stderr captured, but > > couldn't figure out where exactly the error was occuring. > > > > is there anyone that can give me a hand with this? > > The GNOME ports _do_ compile on 4.5-PRE and -RC just fine. You just > have to make sure the long list of dependencies are up-to-date. Forcing > a portupgrade on ORBit and everything that depends on ORBit is a good > way of cleaning up GNOME issues. > > Joe hi, i did exactly as you said 'portupgrade -r -f ORBit' but after a realy long compile it stoped again... i got everuthing captured with 'script', which i opened with an editor and looked for "Error". these are all the findings: gtkdoc-mkhtml: not found gmake[3]: [html] Error 127 (ignored) gmake[3]: Leaving directory `/home/ports/x11/gnomelibs/work/gnome-libs-1.4.1.3/devel-docs/zvt' chgrp: root: illegal group name gmake[2]: [install-exec-local] Error 1 (ignored) gmake install-man1 cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I/usr/X11R6/include/gnome-1.0 -I/usr/X11R6/include -DNEED_GNOMESUPPORT_H -I/usr/X11R6/lib/gnome-libs/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/local/include/freetype2 -I/usr/local/include/gnome-xml -I/usr/X11R6/include/libglade-1.0 -I/usr/X11R6/include/gdk-pixbuf-1.0 -DGAL_GLADEDIR=\"/usr/X11R6/share/gnome/gal/0.19/glade\" -DGAL_IMAGESDIR=\"/usr/X11R6/share/gnome/pixmaps/gal/categories\" -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -O -pipe -march=pentium -I/usr/X11R6/include -Wall -Wunused -c e-gui-utils.c -fPIC -DPIC -o .libs/e-gui-utils.lo e-gui-utils.c:33: gdk-pixbuf/gnome-canvas-pixbuf.h: No such file or directory gmake[3]: *** [e-gui-utils.lo] Error 1 gmake[3]: Leaving directory `/home/ports/x11-toolkits/gal/work/gal-0.19/gal/widgets' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/home/ports/x11-toolkits/gal/work/gal-0.19/gal' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/home/ports/x11-toolkits/gal/work/gal-0.19' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /home/ports/x11-toolkits/gal. *** Error code 1 Stop in /home/ports/x11-toolkits/gal. *** Error code 1 Stop in /home/ports/x11-toolkits/gal. *** Error code 1 Stop in /home/ports/x11-toolkits/gal. *** Error code 1 Stop in /home/ports/www/gtkhtml. *** Error code 1 Stop in /home/ports/www/gtkhtml. *** Error code 1 Stop in /home/ports/www/gtkhtml. *** Error code 1 Stop in /home/ports/www/gtkhtml. *** Error code 1 Stop in /home/ports/www/gtkhtml. *** Error code 1 Stop in /home/ports/www/gtkhtml. *** Error code 1 Stop in /home/ports/www/gtkhtml. *** Error code 1 Stop in /home/ports/x11/gnomecore. *** Error code 1 Stop in /home/ports/x11/gnomecore. *** Error code 1 Stop in /home/ports/x11/gnomecore. *** Error code 1 Stop in /home/ports/x11/gnomecore. *** Error code 1 Stop in /home/ports/x11/gnomecore. *** Error code 1 Stop in /home/ports/x11/gnomecore. ** Command failed: make clean build ** Fix the problem and try again. ---> Reinstalling 'oaf-0.6.7' (devel/oaf) ---> Building '/usr/ports/devel/oaf' ===> Cleaning for esound-0.2.23 ===> Cleaning for libaudiofile-0.2.2 ===> Cleaning for ORBit-0.5.13_1 ===> Cleaning for gettext-0.10.35_1 ... ... ... and others that say (ignored)... can you see where the problem is? it must be something used by many ports cause it breaks too many ports. so far, i thought that the many ports dont compile cause i got 4.5 prerelease instead of 4.4. (actually i did this accidentaly cause i only have done buildworld once). but now i get to realise that it may be on single port that causes all the trouble. still not sure though... i got qt-architect and glide (the two best drag n' drop gui apps) and also xmms and many others just fail to compile. i did cvsup the ports many times, did pkgdb -F, also fixed the ports indexes after each cvsup, but still get these problems. as you probably guessed i'm new to FreeBSD, so please give me a hand with this if you can... i've spent long time on it and couldnt figure it out. btw, can i send the output of 'script' attached? thanks a lot for your help and sorry for long post. Regards, --Bernie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 15:37:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rune.communique.no (rune.communique.no [193.212.204.33]) by hub.freebsd.org (Postfix) with SMTP id 3A5F637B41A for ; Wed, 23 Jan 2002 15:37:31 -0800 (PST) Received: (qmail 26875 invoked by uid 1001); 23 Jan 2002 23:37:24 -0000 Date: Thu, 24 Jan 2002 00:37:24 +0100 (CET) From: Are Bryne X-Sender: are@rune.communique.no To: FreeBSD questions list Subject: PostgreSQL on 2.2.8-STABLE? Message-ID: Organization: Communique DA MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I am trying to get PostgreSQL 7.1.3 compiled on a FreeBSD 2.2.8-STABLE system (that will hopefully be upgraded in not too long, just not yet :). Has anyone had any luck with this? I am having problems with the linker not supporting -export-dynamic, and the compilation of the FreeBSD-port therefore balks. Thanks in advance for all and any suggestions. Regards, Are Bryne -- Communiqué DA Office: +47 22 44 33 99 Postboks 9050 Grønland Mobile: +47 900 22 009 NO-0133 Oslo URL: http://www.communique.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 15:48:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from davida.com (davida.com [204.107.144.130]) by hub.freebsd.org (Postfix) with ESMTP id A66E937B404 for ; Wed, 23 Jan 2002 15:48:30 -0800 (PST) Received: (from jd@localhost) by davida.com (8.11.6/8.11.6) id g0NNmLq01914 for questions@freebsd.org; Wed, 23 Jan 2002 17:48:21 -0600 (CST) (envelope-from jd) Date: Wed, 23 Jan 2002 17:48:21 -0600 (CST) From: Joseph Davida Message-Id: <200201232348.g0NNmLq01914@davida.com> To: questions@freebsd.org Subject: Lava Computer Octopus - 550 8-port board Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This board is available from cdnow.com for $139 complete with 8 male DB9 cables. Is there a freeBSD driver for this board? Cheers, Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 15:52:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from outmail4.pacificnet.net (outmail4.pacificnet.net [207.171.0.64]) by hub.freebsd.org (Postfix) with ESMTP id CE41C37B400 for ; Wed, 23 Jan 2002 15:52:50 -0800 (PST) Received: from visp15.pacificnet.net (mail@visp15.visp.pacificnet.net [209.204.42.115]) by outmail4.pacificnet.net (8.11.4/8.11.4) with SMTP id g0NNjra13838 for ; Wed, 23 Jan 2002 15:45:53 -0800 (PST) Received: from crazyjoe ( [216.119.255.162]) by visp15.pacificnet.net (smtpd 0.4) with SMTP id 1011829711.20469 env-from (mike.walsh@timestar.com) ; Wed Jan 23 15:48:31 2002 -0800 (PST) X-Perlmail-Auth-Sender: mboezi@edgeconnect.com From: "Mike Walsh" To: Subject: two network cards, IRQ's Date: Wed, 23 Jan 2002 18:52:16 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hey there, i'm trying to build a machine with two network cards on it so it can be a VPN server. i'm building it with FreeBSD version 4.4, and everything seems to be going fine except when it comes to configuring these two network cards. i've been reading the documentation as well as the web and i can't find anything on this particular topic. maybe someone over there can help me out. here are my two cards, in terms of how FreeBSD views them. Device Port IRQ DRQ IOMem Description dc0 n/a n/a n/a n/a DEC/Intel 21143 cards and workalikes fxp0 dyn dyn n/a dyn Intel EtherExpress Pro/100B and Intel PRO/100+ Management Adapter they both want an IRQ of 9. i thought of directly putting the IRQ in the config file and making a new kernel, but it doesn't seem to apply. any suggestions? thanks a bunch. mike walsh mike.walsh@timestar.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 15:53:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from scaup.prod.itd.earthlink.net (scaup.mail.pas.earthlink.net [207.217.120.49]) by hub.freebsd.org (Postfix) with ESMTP id 4B5B337B400 for ; Wed, 23 Jan 2002 15:53:21 -0800 (PST) Received: from dialup-209.244.107.7.dial1.sanjose1.level3.net ([209.244.107.7] helo=blossom.cjclark.org) by scaup.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16TXCg-0005oV-00; Wed, 23 Jan 2002 15:53:20 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g0NNrFR87656; Wed, 23 Jan 2002 15:53:15 -0800 (PST) (envelope-from cjc) Date: Wed, 23 Jan 2002 15:53:15 -0800 From: "Crist J . Clark" To: bind9 Cc: Bob Hall , FreeBSD Subject: Re: The tower of Hanoi Message-ID: <20020123155315.K83184@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20020122160345.I77330@blossom.cjclark.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from bind9@citystamp.com on Wed, Jan 23, 2002 at 10:27:57AM -0500 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jan 23, 2002 at 10:27:57AM -0500, bind9 wrote: > on 1/22/02 7:03 PM, Crist J . Clark at cristjc@earthlink.net wrote: [snip] > > Like dump(8) says, > > > > dump [-0123456789acknu] [-B records] [-b blocksize] [-D dumpdates] > > [-d density] [-f file] [-h level] [-s feet] [-T date] filesystem > > Ok. So I guess what I need is a quick lesson in "filesystem". Does that mean > equate more to a mount point. On my system, /usr is a mount point for a disk > device. /usr/local is a directory. Then you can't dump /usr/local, it's not a filesystem. A "filesystem" is either the name of the device holding the filesystem or the mount point of the filesystem. It's any of the paths that shows up when you type, 'mount -t ufs'. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 15:58:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id 1309037B402 for ; Wed, 23 Jan 2002 15:58:11 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id RAA11282; Wed, 23 Jan 2002 17:57:49 -0600 (CST) Message-Id: <3.0.5.32.20020123175745.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Wed, 23 Jan 2002 17:57:45 -0600 To: "Bob Maratas" , questions@FreeBSD.ORG From: jacks@sage-american.com Subject: Re: Help! In-Reply-To: <000701c1a465$c4fe5920$0200a8c0@System3> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Not very much info as to where you are now... did you mount the files system and correct the problem with the missing quote....?? At 03:29 PM 1.23.2002 -0800, Bob Maratas wrote: >Two problems: > >1) I reconfigured my rx.conf file and accidently left the quote from the >ifconfig_fxp0 line and now the >system stops and prompts for the proper cmdline ... but it won't accept a >line entry. > >2) Then I decided to invoke the single-user mode and now I don't know how >to reverse it upon >rebooting the system. > >Bob Maratas > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 16: 2: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [63.169.72.3]) by hub.freebsd.org (Postfix) with ESMTP id 11E8537B402 for ; Wed, 23 Jan 2002 16:02:04 -0800 (PST) Received: (from root@localhost) by luke.cpl.net (8.11.3/8.11.3) id g0O02Zm70079 for questions@freebsd.org; Wed, 23 Jan 2002 16:02:35 -0800 (PST) Date: Wed, 23 Jan 2002 16:02:35 -0800 From: Shawn Ramsey To: questions@freebsd.org Subject: ping wierdness Message-ID: <20020123160233.A33356@cpl.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG /var/log {274}>ping -v 63.169.72.3 PING 63.169.72.3 (63.169.72.3): 56 data bytes 64 bytes from 63.169.72.3: icmp_seq=0 ttl=255 time=0.052 ms 36 bytes from localhost (127.0.0.1): Destination Port Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 3500 3cb4 0 0000 40 11 4002 127.0.0.1 127.0.0.1 UDP: from port 53, to port 2158 (decimal) 36 bytes from 63.169.72.68: Destination Port Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 3a00 3cb3 0 0000 3e 11 3067 63.169.72.3 63.169.72.68 UDP: from port 53, to port 3662 (decimal) 36 bytes from localhost (127.0.0.1): Destination Port Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 1d00 3e73 0 0000 40 11 3e5b 127.0.0.1 127.0.0.1 UDP: from port 2462, to port 137 (decimal) Can someone tell me why this may be happening pinging its own IP address? When I looked the other day at netstat -rs, it had bad routing redirects in the millions or maybe billions, and this server has been rebooting every few days... Could all those redirects be the cause of the reboots? If so, where should I start looking? This is the only server on the network doing something like that when pinging its own IP address... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 16: 7: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id A97D937B417 for ; Wed, 23 Jan 2002 16:07:04 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id AD83166B74; Wed, 23 Jan 2002 16:07:03 -0800 (PST) Date: Wed, 23 Jan 2002 16:07:03 -0800 From: Kris Kennaway To: Jeff Shevlen Cc: Kris Kennaway , freebsd-questions@FreeBSD.ORG Subject: Re: OpenSSH upgrade Message-ID: <20020123160703.B42473@xor.obsecurity.org> References: <20020123163428.A1520-100000@williamt> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="0ntfKIWw70PvrIHh" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020123163428.A1520-100000@williamt>; from jeff@passedpawn.com on Wed, Jan 23, 2002 at 04:38:13PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --0ntfKIWw70PvrIHh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jan 23, 2002 at 04:38:13PM -0500, Jeff Shevlen wrote: >=20 > Thanks! >=20 > I took the low road and made the changes to rc.conf, rebooted, and now > everythings come up current. I see the problem was that sshd was compiled > (or something) in with the kernal... No, not the kernel -- it's a userland binary which is compiled in FreeBSD by 'make world' which rebuilds everything which comes bundled as part of the "base operating system" (all of the standard binaries, libraries etc in /bin, /sbin/ /usr/lib, etc, but not any third party software like ports which you install yourself) By default FreeBSD will start the version of sshd which comes standard, which lives in /usr/sbin/sshd. If you want to replace it with another version which lives in another directory, you have to tell FreeBSD where to find it (this goes in /etc/rc.conf). > Also, maybe you can answer some of my newbie questions in regards to your > response: > (1) when you say "system files", are these files complied with the kernal? > or are they kernal modules? or are they something else? I haven't really > wrapped my head around this. No, I mean the files in /sbin, /usr/sbin, /usr/lib /bin, etc. What are usually called "userland" applications. > (2) you mention that I could remove the sshd files manually, but would it > then be possible to re-integrate the latest version of OpenSSH as > system files again (effectively replacing the old files in /etc/sbin?) By system files I just mean "files which come standard with FreeBSD". There's nothing magical about them, and they're application binaries just like the ones which get installed by ports. The only difference is the directory they live in; ports are installed into a separate directory hierarchy (/usr/local) to keep everything nice and clean and separate. > (3) the changes I've made do not affect the ssh client. When I type # ssh > -V ... I still get the old version. Where is ssh initialized? How do I > upgrade the client too? Like I said, set your PATH so that your shell looks in /usr/local/bin first for the ssh binary you installed from the port, instead of /usr/bin. Kris --0ntfKIWw70PvrIHh Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8T1AnWry0BWjoQKURAsgjAJ9WBjlkMAtQ68ojP7GdpmzeAr6QlACfa5Qp h+Y8Lr73RXdFzZb8657UucI= =CkNI -----END PGP SIGNATURE----- --0ntfKIWw70PvrIHh-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 16: 8: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tao.thought.org (sense-kline-249.oz.net [216.39.168.249]) by hub.freebsd.org (Postfix) with ESMTP id 1F1A337B405 for ; Wed, 23 Jan 2002 16:07:59 -0800 (PST) Received: (from kline@localhost) by tao.thought.org (8.11.3/8.11.3) id g0O07sJ02700; Wed, 23 Jan 2002 16:07:54 -0800 (PST) (envelope-from kline) Date: Wed, 23 Jan 2002 16:07:53 -0800 From: Gary Kline To: jacks@sage-american.com Cc: Gary Kline , Joe & Fhe Barbish , Bob Giesen , FBSD Questions Message-ID: <20020123160753.A2643@tao.thought.org> References: <3.0.5.32.20020122134304.01831ca0@mail.sage-american.com> <004b01c1a30b$5fcb20c0$328dfea9@pegasus> <3.0.5.32.20020122134304.01831ca0@mail.sage-american.com> <20020123120754.A1861@tao.thought.org> <3.0.5.32.20020123155409.01831ca0@mail.sage-american.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <3.0.5.32.20020123155409.01831ca0@mail.sage-american.com>; from jacks@sage-american.com on Wed, Jan 23, 2002 at 03:54:09PM -0600 X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 15 years of service to the Unix community Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jan 23, 2002 at 03:54:09PM -0600, jacks@sage-american.com wrote: > Joe responded that he made a typo and it should be "pw adduser -D" which > messes up the whole start. If Joe wrote the sequence for the benefit of the > archives, methinks he should do a rewrite because the present one is > misleading.... and will continue to mislead. > Yup. Whoever finally does it, Joe's tutorial examples would explain much in the ^NOTES header of the man page. Or the examples might fit somewhere else on the web where a Google search would catch them. Thanks, guys, gary -- Gary Kline kline@thought.org www.thought.org Public service Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 16:10:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Mail4.mgfairfax.rr.com (fe4.southeast.rr.com [24.93.67.51]) by hub.freebsd.org (Postfix) with ESMTP id A4B4237B417 for ; Wed, 23 Jan 2002 16:10:39 -0800 (PST) Received: from there ([24.163.115.240]) by Mail4.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Wed, 23 Jan 2002 18:09:00 -0500 Content-Type: text/plain; charset="iso-8859-1" From: Ray Kohler To: "Sudirman Hassan" , doug@polands.org Subject: Re: 4.5-RC1 machine hung, need advice Date: Wed, 23 Jan 2002 18:12:08 -0500 X-Mailer: KMail [version 1.3.2] Cc: questions@FreeBSD.ORG References: <20020122214936.B19676@polands.org> <2109.10.100.20.43.1011761178.squirrel@10.100.3.5> In-Reply-To: <2109.10.100.20.43.1011761178.squirrel@10.100.3.5> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: <0766e0009231712FE4@Mail4.mgfairfax.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday 22 January 2002 11:46 pm, Sudirman Hassan wrote: > I tried reiserfs in Mandrake and it just ent OK whenever such > problem as reset before shutdown wihout a need for me to manually > do fsck.. will this feature come into FreeBSD in 4.5, 4.6 or > 5.0?? We don't have that kind of filesystem but we have the softupdates feature for our filesystem that basically does the same thing. In 5.0 there will be a background fsck buit for now you can just expect to have to run it but it will be fast and easy to run. -- Ray Kohler Philosophy will clip an angel's wings. -- John Keats To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 16:16:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web10806.mail.yahoo.com (web10806.mail.yahoo.com [216.136.130.248]) by hub.freebsd.org (Postfix) with SMTP id 8DE8837B400 for ; Wed, 23 Jan 2002 16:16:41 -0800 (PST) Message-ID: <20020124001641.4713.qmail@web10806.mail.yahoo.com> Received: from [212.36.0.230] by web10806.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 16:16:41 PST Date: Wed, 23 Jan 2002 16:16:41 -0800 (PST) From: Angel Todorov Subject: Proxim Symphony device drivers To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I am using the Proxim Symphony wireless hardware, but there are no FreeBSD drivers in the kernel. Has someone got an idea where I can find device drivers for that hardware? __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 16:23:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from draco.over-yonder.net (draco.over-yonder.net [198.78.58.61]) by hub.freebsd.org (Postfix) with ESMTP id 195FF37B404 for ; Wed, 23 Jan 2002 16:23:34 -0800 (PST) Received: by draco.over-yonder.net (Postfix, from userid 100) id A5C4BFC2; Wed, 23 Jan 2002 18:23:33 -0600 (CST) Date: Wed, 23 Jan 2002 18:23:33 -0600 From: "Matthew D. Fuller" To: Laz Christian Peterson Cc: questions@FreeBSD.org Subject: Re: Use of source/OS Message-ID: <20020123182333.E69736@over-yonder.net> References: <000001c1a456$50a38140$de00a8c0@archer> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5-fullermd.1i In-Reply-To: <000001c1a456$50a38140$de00a8c0@archer>; from lpeterson@paravis.net on Wed, Jan 23, 2002 at 01:38:33PM -0800 X-Editor: vi X-OS: FreeBSD Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Laz, > My name is Laz Peterson and I am with Paravis Technologies, a PC > manufacturing company located near San Francisco, CA. We are very > interested in using your operating system for all of our > workstation/client systems and also to build our network of servers. > One of our objectives is to build a network that has one 'HQ' based in > San Francisco, and almost 100,000 nodes based off of this OS spread all > throughout the western US. We want to use all new networking protocols > and architectures. We are currently working with a network service > provider in building a VPN over a fiber network. Sounds like some interesting stuff! > We would like to heavily customize the operating system and ultimately, > when we are out of beta stages, make the source open and allow everyone > to submit suggestions, inform of bugs and other flaws, and integrate > software of their own seamlessly. > > Who can I talk to about such business? I appreciate your time. Well, that would depend on what you want to talk about :) The license allows you to do all of this, so there's no troubles there. What specifically do you have questions about? Asking them here is a good way to at least get pointed in the right direction for an answer. -- Matthew Fuller (MF4839) | fullermd@over-yonder.net Unix Systems Administrator | fullermd@futuresouth.com Specializing in FreeBSD | http://www.over-yonder.net/ "The only reason I'm burning my candle at both ends, is because I haven't figured out how to light the middle yet" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 16:30:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 5A65A37B400 for ; Wed, 23 Jan 2002 16:30:38 -0800 (PST) Received: from gateway ([63.70.155.104]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Wed, 23 Jan 2002 19:33:53 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: RE: pw in script to create new user. Date: Wed, 23 Jan 2002 19:30:33 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-OriginalArrivalTime: 23 Jan 2002 01:34:35.0140 (UTC) FILETIME=[1D20A440:01C1A3AE] Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: <004b01c1a30b$5fcb20c0$328dfea9@pegasus> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Repost for the archives correcting a typo in previous post. I am summarizing how the pw command works. When FBSD is installed the PW command does not have it's pw.conf option file. Pw stills works but you have no idea what the defaults are and the command line gets full using the pw flags. The first thing you should do if you want to use the pw command to add users is to create the pw.conf file, do this by entering pw adduser -D this will create the /etc/pw.conf file. The comments in the file are self explanatory. I added the default group and the additional groups I use. pw adduser -D = create /etc/pw.conf file pw adduser tom -m -c "tom brown' tom=userid, -m=create home directory -c= full name field, use quotes to inclose large name -c "Joesph John Barbish" pw deluser tom -r = delete user tom -r = remove home directory pw showuser tom = display this users entry in password file pw showuser tom -P = display password info in human readable form pw showuser -a = display all entries in password file The pw command can also be used for groups pw addgroup networking pw showgroup networking The pw command can also change settings in the userid password file. My /etc/pw.conf looks like this # # /etc/pw.conf - user/group configuration defaults # created 01/20/2002 by Joe Barbish # Password for new users? no=nologin yes=loginid none=blank random=random defaultpasswd = "yes" # Reuse gaps in uid sequence? (yes or no) reuseuids = "yes" # Reuse gaps in gid sequence? (yes or no) reusegids = "yes" # Path to the NIS passwd file (blank or 'no' for none) nispasswd = # Obtain default dotfiles from this directory skeleton = "/usr/share/skel/" # Mail this file to new user (/etc/newuser.msg or no) newmail = "no" # Log add/change/remove information in this file logfile = "/var/log/userlog" # Root directory in which $HOME directory is created home = "/home" # Colon separated list of directories containing valid shells shellpath = "/bin" # Comma separated list of available shells (without paths) shells = "sh","csh","tcsh" # Default shell (without path) defaultshell = "sh" # Default group (leave blank for new group per user) defaultgroup = "network" # Extra groups for new users extragroups = "wheel" # Default login class for new users defaultclass = "" # Range of valid default user ids minuid = 1000 maxuid = 32000 # Range of valid default group ids mingid = 1000 maxgid = 32000 # Days after which account expires (0=disabled) expire_days = 0 # Days after which password expires (0=disabled) password_days = 0 ###################################################### The script that the folks here helped me with. #! /bin/sh pw adduser tom -m -c testing -h 0 << EOD water EOD # water is the password used for tom -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Bob Giesen Sent: Tuesday, January 22, 2002 1:10 AM To: Joe & Fhe Barbish; FBSD Questions Subject: Re: pw in script to create new user. ----- Original Message ----- From: "Joe & Fhe Barbish" To: "FBSD Questions" Sent: Monday, January 21, 2002 10:52 PM Subject: pw in script to create new user. > I have sh script with this in it > Pw adduser tom -m -c bkup manager -o > The /etc/pw.conf has all the defaults, one is to > make the password the same as the userid. > The -o option will take input from keyboard for the > Password but this is a canned script so I need to > Some how pass the password value to the pw command -0 option. > > How can I configure the script to hold the password value > for that userid so when the pw adduser command is executed > the correct password gets used in creating the user? Three thoughts: 1) Does pw offer no other way of providing the password, other than via stdin (keyboard)? 2) Putting unencrypted passwords into a text file (such as your script) does present something of a security risk. 3) If the answer to (1) is no and (2) doesn't faze you, you can redirect stdin within the script. I am not familiar with pw (perhaps because I'm running v3.2), so I'll expand on your example command for adding tom: Pw adduser tom -m -c bkup manager -h 0 << EOF tomspassword EOF The first line's "<< EOF" tells sh to take the expected stdin input from the following lines, up to the first line that BEGINS with "EOF." So, just put tom's password on the following line and then EOF on the very next line. Two points worth mentioning: 1) My choice of "EOF" was arbitrary. You may use EOP, EOI, XYZ, SILLY, or whatever you like, so long as you use exactly the same string to signal the end of input redirection. 2) EOF (or EOP, SILLY, or whatever you use) MUST BEGIN the line to signal the end of redirection. Any space (or other character) before the ending EOF will mess up your script (which, since you're operating as root, has the potential to make things interesting, to say the least). (Exception: you may precede the finishing string (EOF, or whatever) with a tab IF YOU USE "<<-" instead of "<<" for the redirection on the first line. E.g.: Pw adduser tom -m -c bkup manager -h 0 <<- EOF tomspassword EOF My mail client turned the tabs to spaces; there should be tabs before "tomspassword" and the final "EOF" here. Sometimes, the <<- & tab functionality helps to make a more readable script. Hope this helps... - Bob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 16:40:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hermes.pressenter.com (hermes.pressenter.com [209.224.20.19]) by hub.freebsd.org (Postfix) with ESMTP id 35A4537B400 for ; Wed, 23 Jan 2002 16:40:52 -0800 (PST) Received: from [209.224.22.175] (helo=daggar.sbgnet.net) by hermes.pressenter.com with smtp (Exim 3.16 #1) id 16TXwX-0006oW-00 for freebsd-questions@FreeBSD.ORG; Wed, 23 Jan 2002 18:40:41 -0600 Date: Wed, 23 Jan 2002 18:41:18 -0600 From: Stephen Hilton To: freebsd-questions@FreeBSD.ORG Subject: cvsup to get 1 old port Message-Id: <20020123184118.6ac27ee4.nospam@hiltonbsd.com> Organization: HiltonBSD.com X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.5) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG How can I retrive just 1 old version of a port. AbiWord 0.9.6.1 is not working well for me so I would like to get the port for the 0.9.5 version which did work well. I use cvsup, and looked at creating a refuse file and pulling at a specific date when the port was at version 0.9.5, and also looked at the cvsweb interface, but could not see how to get this done. Wondering if there is a better way to do this? Regards, Stephen Hilton nospam@hiltonbsd.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 16:43:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id 2886637B402 for ; Wed, 23 Jan 2002 16:43:30 -0800 (PST) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 3DBE416B16 for ; Thu, 24 Jan 2002 01:43:23 +0100 (CET) Received: from LenConrad.Go2France.com [193.117.38.15] by mail.Go2France.com with ESMTP (SMTPD32-6.06) id ACC153C00B2; Thu, 24 Jan 2002 02:00:49 +0100 Message-Id: <5.1.0.14.2.20020124004225.02a38b98@mail.Go2France.com> X-Sender: LConrad@Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Thu, 24 Jan 2002 00:43:21 +0000 To: freebsd-questions@freebsd.org From: Len Conrad Subject: sending to postfix slow Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG # postconf mail_version mail_version = Snapshot-20011127 I replaced a BSD/i machine with much faster FreeBSD machine. All ftp performance sending big files to the fbsd machine appears as fast or faster than the old machine. But sending files with large attachments through postfix is horribly slower. A 65 mb attachment sent through FreeBSD took 35 minutes, then sending the same attachment through BSD/i (sendmail) took 2 minutes (sender PC and both bsd's on same LAN, of course). The FreeBSD machine is basically idle any ideas where to look? Len http://MenAndMice.com/DNS-training http://BIND8NT.MEIway.com : ISC BIND 8.2.4 for NT4 & W2K http://IMGate.MEIway.com : Build free, hi-perf, anti-abuse mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 16:46:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 391D737B400 for ; Wed, 23 Jan 2002 16:46:18 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id D5EB9BD9B; Wed, 23 Jan 2002 16:46:17 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id QAA06603; Wed, 23 Jan 2002 16:46:17 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g0O0n3L01174; Wed, 23 Jan 2002 16:49:03 -0800 (PST) (envelope-from swear@blarg.net) To: Cliff Sarginson Cc: FreeBSD List Subject: Re: Reversing Linux and FreeBSD running on same system without mutual self-destruction References: <20020123051538.GA3234@raggedclown.net> From: swear@blarg.net (Gary W. Swearingen) Date: 23 Jan 2002 16:49:03 -0800 In-Reply-To: <20020123051538.GA3234@raggedclown.net> Message-ID: Lines: 22 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Cliff Sarginson writes: > Here is a challenge. You provided a lot of info, but maybe not enough. I'm not promising any great ideas, but I was wishing you'd have given approximate disk/ partition sizes at least. Amount of unused space for tmp xfr. How many CDs you consider reasonable to write and verify. I couldn't get reliable mounts of Linux from FreeBSD and vice versa, so I tar'd directly into a raw FreeBSD partition from Linux and then from FreeBSD, untar'd it. I know that doesn't address some of your problems. You might best use a scheme which involves putting everything on CD so that you get a free backup in the process. If you've got room, do "dump ... | gzip | split ..." on your partitions and burn them. You'd need a big space to unsplit them to before "zcat ... | restore ...". (I wish I knew how to make a pipe work like a tape drive with end-of-file thingy so you could treat CDs like tapes with dump and restore, and embed a gzip. It should be doable. It probably should even be possible to make it work like a disk drive with 650 MB blocks.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 17: 3:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from vms4.rit.edu (vms4.isc.rit.edu [129.21.3.15]) by hub.freebsd.org (Postfix) with ESMTP id 9C08137B404 for ; Wed, 23 Jan 2002 17:03:29 -0800 (PST) Received: from sonic.rit.edu ([129.21.10.109]) by ritvax.isc.rit.edu (PMDF V5.2-32 #40294) with ESMTPA id <01KDF8D460JODSZ02U@ritvax.isc.rit.edu> for questions@FreeBSD.org; Wed, 23 Jan 2002 20:03:26 EST Date: Wed, 23 Jan 2002 20:03:04 -0500 From: Matt Penna Subject: Re: two network cards, IRQ's In-reply-to: X-Sender: mdp1261@vmspop.isc.rit.edu To: questions@FreeBSD.org Cc: Mike Walsh Message-id: <5.1.0.14.2.20020123195529.03ba20d0@vmspop.isc.rit.edu> MIME-version: 1.0 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Content-type: text/plain; format=flowed; charset=us-ascii Content-transfer-encoding: 7BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 06:52 PM 1/23/02 -0500, Mike Walsh wrote: >hey there, > >i'm trying to build a machine with two network cards on it so it can be a >VPN server. i'm building it with FreeBSD version 4.4, and everything seems >to be going fine except when it comes to configuring these two network >cards. i've been reading the documentation as well as the web and i can't >find anything on this particular topic. maybe someone over there can help >me out. > >here are my two cards, in terms of how FreeBSD views them. > > Device Port IRQ DRQ IOMem Description > dc0 n/a n/a n/a n/a DEC/Intel 21143 cards and workalikes > fxp0 dyn dyn n/a dyn Intel EtherExpress Pro/100B and Intel > PRO/100+ Management Adapter > >they both want an IRQ of 9. i thought of directly putting the IRQ in the >config file and making a new kernel, but it doesn't seem to apply. Mike, These are both PCI cards, are they not? PCI devices sharing IRQ's is no problem - the PCI bus was designed with that in mind. I've had 3 devices share a single IRQ before with no trouble at all. For the record, the only time I ever encountered an issue with IRQ sharing was with a USB HP scanner that - according to HP's documentation - didn't always work unless the USB controller had its own IRQ, but that was under Windows 98. Maybe I misunderstood your question, so let's back up - you posted here, so I assume the cards are not working for you. What's happening, exactly? Matt -- Matt Penna mdp1261@rit.edu ICQ: 399825 S0ba on AOLIM "The trouble with computers, of course, is that they're very sophisticated idiots." -Dr. Who To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 17: 7: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id 5FFF837B41B for ; Wed, 23 Jan 2002 17:07:00 -0800 (PST) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 6DFC716B1E for ; Thu, 24 Jan 2002 02:06:58 +0100 (CET) Received: from LenConrad.Go2France.com [193.117.38.15] by mail.Go2France.com with ESMTP (SMTPD32-6.06) id A249C5000A2; Thu, 24 Jan 2002 02:24:25 +0100 Message-Id: <5.1.0.14.2.20020124010605.038fad48@mail.Go2France.com> X-Sender: LConrad@Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Thu, 24 Jan 2002 01:06:57 +0000 To: freebsd-questions@freebsd.org From: Len Conrad Subject: sending to postfix slow, more info Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG FreeBSD 4.4-Rel ----------------- # postconf mail_version mail_version = Snapshot-20011127 I replaced a BSD/i machine with much faster FreeBSD machine. All ftp performance sending big files to the fbsd machine appears as fast or faster than the old machine. But sending files with large attachments through postfix is horribly slower. A 65 mb attachment sent through FreeBSD took 35 minutes, then sending the same attachment through BSD/i (sendmail) took 2 minutes (sender PC and both bsd's on same LAN, of course). The FreeBSD machine is basically idle any ideas where to look? Len http://MenAndMice.com/DNS-training http://BIND8NT.MEIway.com : ISC BIND 8.2.4 for NT4 & W2K http://IMGate.MEIway.com : Build free, hi-perf, anti-abuse mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 17:10:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from www.k.ro (www.k.ro [194.102.255.23]) by hub.freebsd.org (Postfix) with ESMTP id 7457337B41B for ; Wed, 23 Jan 2002 17:10:13 -0800 (PST) Received: (from www@localhost) by www.k.ro (8.11.2/8.11.2) id g0O1A6U21238; Thu, 24 Jan 2002 03:10:06 +0200 Date: Thu, 24 Jan 2002 03:10:06 +0200 Message-Id: <200201240110.g0O1A6U21238@www.k.ro> From: Adrian Partenie X-Mailer: Super-Mail@k.ro http://mail.k.ro/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Sender-IP: 193.226.81.13 To: freebsd-questions@freebsd.org Subject: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Can anyone help me? To connect to Interenet I use a FreeBSD and an external modem. Hoe can I find the speed at which the modem actually connects? Under ppp the only command that gives an information about the speed is "show physical" but is the speed from ppp.conf file. Thanks in advance, Adrian ------------------------------ K Free E-mail http://www.k.ro/ by KappaNet http://www.kappa.ro/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 17:10:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from geographos.astro.washington.edu (geographos.astro.washington.edu [128.95.99.27]) by hub.freebsd.org (Postfix) with ESMTP id 68C2A37B405 for ; Wed, 23 Jan 2002 17:10:39 -0800 (PST) Received: from localhost (kopts@localhost) by geographos.astro.washington.edu (8.11.6/8.11.6) with ESMTP id g0O1AcA04507 for ; Wed, 23 Jan 2002 17:10:39 -0800 X-Authentication-Warning: geographos.astro.washington.edu: kopts owned process doing -bs Date: Wed, 23 Jan 2002 17:10:38 -0800 (PST) From: Alexey Koptsevich To: Subject: "init: getty repeating too quickly" from correctly working ttys Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I have the following weird problem. I get log messages every 30 sec: Jan 23 17:05:38 hostname init: getty repeating too quickly on port /dev/ttyv9, sleeping 30 secs Jan 23 17:05:38 hostname init: getty repeating too quickly on port /dev/ttyv8, sleeping 30 secs /etc/ttys: ttyv8 "/usr/X11R6/bin/X :1 dpms -query localhost" cons25 on secure ttyv9 "/usr/X11R6/bin/X :2 dpms -query localhost" cons25 on secure Nevertheless, X on both ttys are working perfectly. What does that mean? Thanks a lot, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 17:53:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from c011.snv.cp.net (c011-h004.c011.snv.cp.net [209.228.34.217]) by hub.freebsd.org (Postfix) with SMTP id BC4BD37B402 for ; Wed, 23 Jan 2002 17:53:23 -0800 (PST) Received: (cpmta 9689 invoked from network); 23 Jan 2002 17:53:22 -0800 Received: from 209.6.191.48 (HELO Fritz) by smtp.namezero.com (209.228.34.217) with SMTP; 23 Jan 2002 17:53:22 -0800 X-Sent: 24 Jan 2002 01:53:22 GMT Message-ID: <00e701c1a479$ef52e5b0$0301a8c0@uminafamily.com> From: "Christopher J. Umina" To: Subject: NFS Mounting Trouble Date: Wed, 23 Jan 2002 20:53:33 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_00E4_01C1A450.05144D00" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_00E4_01C1A450.05144D00 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, =20 I'm dealing with two servers in a LAN and they're both running = FreeBSD 4.1. One server is named ns, the other 209-6-191-48. I can = mount drives that are on ns to 209-6-191-48, but try and reverse the = process and I get this error: ns# mount 209-6-191-48:/cdrom /FritzCDROM/ nfs: bad net address 209-6-191-48=20 Any suggestions? NOTE: The name of 209-6-191-48 must stay the same. ------=_NextPart_000_00E4_01C1A450.05144D00 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi,
   
    I'm dealing with two = servers in=20 a LAN and they're both running FreeBSD 4.1.  One server is named = ns, the=20 other 209-6-191-48.  I can mount drives that are on ns to = 209-6-191-48, but=20 try and reverse the process and I get this error:
 
ns# mount 209-6-191-48:/cdrom = /FritzCDROM/
nfs:=20 bad net address 209-6-191-48
 
Any suggestions?
NOTE: The name of 209-6-191-48 must = stay the=20 same.
------=_NextPart_000_00E4_01C1A450.05144D00-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18: 3:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id EB13F37B423 for ; Wed, 23 Jan 2002 18:03:23 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16TZEZ-000EEq-00 for Questions@FreeBSD.org; Thu, 24 Jan 2002 02:03:23 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id F1230118B; Thu, 24 Jan 2002 03:03:21 +0100 (CET) Date: Thu, 24 Jan 2002 03:03:21 +0100 From: Cliff Sarginson To: Questions@FreeBSD.org Subject: Re: NFS Mounting Trouble Message-ID: <20020124020321.GA1131@raggedclown.net> References: <00e701c1a479$ef52e5b0$0301a8c0@uminafamily.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <00e701c1a479$ef52e5b0$0301a8c0@uminafamily.com> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jan 23, 2002 at 08:53:33PM -0500, Christopher J. Umina wrote: > Hi, > > I'm dealing with two servers in a LAN and they're both running FreeBSD 4.1. One server is named ns, the other 209-6-191-48. I can mount drives that are on ns to 209-6-191-48, but try and reverse the process and I get this error: > > ns# mount 209-6-191-48:/cdrom /FritzCDROM/ > nfs: bad net address 209-6-191-48 > > Any suggestions? > NOTE: The name of 209-6-191-48 must stay the same. Here is a shot in the dark. It sees the number 209, for some reason it assumes this is an IP address, tries to use it as one, gets error returned that is an invalidly fornatted address. Just a thought. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18: 6:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from spitfire.velocet.net (spitfire.velocet.net [216.138.223.227]) by hub.freebsd.org (Postfix) with ESMTP id 5663737B404 for ; Wed, 23 Jan 2002 18:06:42 -0800 (PST) Received: from wenk (H204.C233.tor.velocet.net [216.138.233.204]) by spitfire.velocet.net (Postfix) with SMTP id B116044AAC0; Thu, 24 Jan 2002 02:06:39 +0000 (GMT) Message-ID: <01ee01c1a495$5836e700$b300a8c0@wenk> From: "Jeff Shevlen" To: "Kris Kennaway" Cc: References: <20020123163428.A1520-100000@williamt> <20020123160703.B42473@xor.obsecurity.org> Subject: Re: OpenSSH upgrade Date: Wed, 23 Jan 2002 21:08:35 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-Mimeole: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks again Kris, I've got the ssh client all squared away; and some foggy notions are a little less so. ----- Original Message ----- From: "Kris Kennaway" To: "Jeff Shevlen" Cc: "Kris Kennaway" ; Sent: Wednesday, January 23, 2002 4:07 PM Subject: Re: OpenSSH upgrade On Wed, Jan 23, 2002 at 04:38:13PM -0500, Jeff Shevlen wrote: > > Thanks! > > I took the low road and made the changes to rc.conf, rebooted, and now > everythings come up current. I see the problem was that sshd was compiled > (or something) in with the kernal... No, not the kernel -- it's a userland binary which is compiled in FreeBSD by 'make world' which rebuilds everything which comes bundled as part of the "base operating system" (all of the standard binaries, libraries etc in /bin, /sbin/ /usr/lib, etc, but not any third party software like ports which you install yourself) By default FreeBSD will start the version of sshd which comes standard, which lives in /usr/sbin/sshd. If you want to replace it with another version which lives in another directory, you have to tell FreeBSD where to find it (this goes in /etc/rc.conf). > Also, maybe you can answer some of my newbie questions in regards to your > response: > (1) when you say "system files", are these files complied with the kernal? > or are they kernal modules? or are they something else? I haven't really > wrapped my head around this. No, I mean the files in /sbin, /usr/sbin, /usr/lib /bin, etc. What are usually called "userland" applications. > (2) you mention that I could remove the sshd files manually, but would it > then be possible to re-integrate the latest version of OpenSSH as > system files again (effectively replacing the old files in /etc/sbin?) By system files I just mean "files which come standard with FreeBSD". There's nothing magical about them, and they're application binaries just like the ones which get installed by ports. The only difference is the directory they live in; ports are installed into a separate directory hierarchy (/usr/local) to keep everything nice and clean and separate. > (3) the changes I've made do not affect the ssh client. When I type # ssh > -V ... I still get the old version. Where is ssh initialized? How do I > upgrade the client too? Like I said, set your PATH so that your shell looks in /usr/local/bin first for the ssh binary you installed from the port, instead of /usr/bin. Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18: 8:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sknemsv.skz.ne.jp (mail.skz.ne.jp [210.229.136.29]) by hub.freebsd.org (Postfix) with ESMTP id 4E74E37B402 for ; Wed, 23 Jan 2002 18:08:46 -0800 (PST) Received: from k6500 ([210.153.236.23]) by sknemsv.skz.ne.jp (Post.Office MTA v3.1.2J release 205-101-J ID# 1001-61949U1000L2S100J) with SMTP id AAA93 for ; Thu, 24 Jan 2002 11:13:40 +0900 Message-ID: <000b01d4b389$be532b00$483ffea9@k6500> From: "Yuki" To: Subject: =?iso-2022-jp?B?GyRCPkgycRsoQg==?= Date: Thu, 24 Jan 2019 11:08:47 +0900 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01D4B3D5.2D609FA0" 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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01D4B3D5.2D609FA0 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit $B$($C$H!"%O%s%I%V%C%/$N1Q8lHG$O!"$=$A$i$+$i$*$/$C$F$$$?$@$1$k$b$N$G$7$g$&$+!#(B $B!!%"%a%j%+$N%5%$%H$K$O(B50$B%I%k
=1B$B$($C$H!"%O%s%I%V%C%/$N1Q8lHG$O!"$=3D$A$i$+$i$*$/$C$F$$$?$@$= 1$k$b$N$G$7$g$&$+!#!!%"%a%j%+$N%5%$%H$K$O=1B(B50=1B$B%I%k
 
 
 
------=_NextPart_000_0007_01D4B3D5.2D609FA0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18:20:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 276F637B416 for ; Wed, 23 Jan 2002 18:20:01 -0800 (PST) Received: from win98800 ([12.232.232.117]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20020124022000.PWDQ10199.rwcrmhc53.attbi.com@win98800> for ; Thu, 24 Jan 2002 02:20:00 +0000 Message-ID: <002601c1a47d$a0248620$6600640a@attbi.com> From: "Douglas R. Spindler" To: Subject: Re: A question from a convert from Windows to FreeBSD Date: Wed, 23 Jan 2002 18:20:00 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0023_01C1A43A.91CEEB80" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0023_01C1A43A.91CEEB80 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable To all of you that have offered assistance, thank you very much. It was suggested that I support FreeBSD in the way of buying a copy. I = thought I would oblige. I found the mall home page, but wanted to pick = up a copy today. I found a page saying I could pick up a copy at = CompUSA or Fry's. I visited two Fry's stores today, couldn't find it on the shelf, and = asked 5 different people. They told me after looking in their = computers, "Product has been discontinued". (I took this to mean they = have discontinued the product.) I then visited two CompUSA stores, same story, "product discontinued". I then visited 2 Borders Book stores.... nothing. And a Barnes & Nobel, = again nothing. This is a real bummer as I have an application I wanted to get running = by the weekend. I'm not looking for comments, I'm just letting you know my experience. I have not given up, just been delayed. I do have one question, is there a Users Group in the SF Bay Area/East = Bay? Thanks again for everyone's support. Doug =20 ------=_NextPart_000_0023_01C1A43A.91CEEB80 Content-Type: text/html; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable
To all of you that have offered assistance, thank = you very=20 much.
 
It was suggested that I support FreeBSD in the way = of buying a=20 copy.  I thought I would oblige.  I found the mall home page, = but=20 wanted to pick up a copy today.  I found a page saying I could pick = up a=20 copy at CompUSA or Fry's.
 
I visited two Fry's stores today, couldn't find it = on the=20 shelf, and asked 5 different people.  They told me after looking in = their=20 computers, "Product has been discontinued".  (I took this to mean = they have=20 discontinued the product.)
 
I then visited two CompUSA stores, same story, = "product=20 discontinued".
 
I then visited 2 Borders Book stores.... = nothing.  And a=20 Barnes & Nobel, again nothing.
 
This is a real bummer as I have an application I = wanted to get=20 running by the weekend.
 
I'm not looking for comments, I'm just letting you = know my=20 experience.
 
I have not given up, just been delayed.
 
I do have one question, is there a Users Group in = the SF Bay=20 Area/East Bay?
 
Thanks again for everyone's support.
 
Doug
 
 
------=_NextPart_000_0023_01C1A43A.91CEEB80-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18:22:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tecdigital.net (tecdigital.tol.itesm.mx [132.254.97.16]) by hub.freebsd.org (Postfix) with ESMTP id 2385337B400 for ; Wed, 23 Jan 2002 18:22:38 -0800 (PST) Received: from Deathstar (unknown [148.243.246.208]) by mail.tecdigital.net (Postfix) with ESMTP id E401E1D20; Wed, 23 Jan 2002 20:22:22 -0600 (CST) Message-ID: <001201c1a47d$faf08ae0$0a00a8c0@Deathstar> From: "Mario Doria" To: Cc: Subject: Re[2]: Strange lock-ups during backup over nfs after adding 1024M RAM Date: Wed, 23 Jan 2002 20:22:17 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Wednesday, January 23, 2002 you wrote: > DW> On Tue, 22 Jan 2002, Doug White wrote: > > DW> Try rebuilding your kernel with > DW> > DW> maxusers 256 > DW> > DW> You may need to scale up the tables in the system to handle the additional > DW> memory. > > It's already set to 512, is it too high? We did not rebuild the > kernel after adding memory, it worked fine with maxusers 512 and > 1024M RAM. >Yes. You've scaled the tables so large that when you double the RAM, the >page tables + maxusers 512 tables > KVM. >Drop this to 128, definitely. If you're doing a lot of network, monitor >your mbuf usage and override that if necessary. I had the same problem, but I removed the extra RAM from the machine. What's better, to hardcode maxusers 128 in the kernel or let it be maxusers 0 and let the system auto-size the parameter? Also, is this autosized on every boot or whenever a kernel is built? Mario Doria madd@tecdigital.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18:26:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from resnet.uoregon.edu (resnet.uoregon.edu [128.223.122.47]) by hub.freebsd.org (Postfix) with ESMTP id E1A4F37B405 for ; Wed, 23 Jan 2002 18:26:36 -0800 (PST) Received: from localhost (dwhite@localhost) by resnet.uoregon.edu (8.11.3/8.10.1) with ESMTP id g0O2R3I66471; Wed, 23 Jan 2002 18:27:03 -0800 (PST) Date: Wed, 23 Jan 2002 18:27:03 -0800 (PST) From: Doug White To: Mario Doria Cc: questions@freebsd.org Subject: Re[2]: Strange lock-ups during backup over nfs after adding 1024M RAM In-Reply-To: <001201c1a47d$faf08ae0$0a00a8c0@Deathstar> Message-ID: <20020123182636.V56623-100000@resnet.uoregon.edu> X-All-Your-Base: are belong to us MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 23 Jan 2002, Mario Doria wrote: > >Drop this to 128, definitely. If you're doing a lot of network, monitor > >your mbuf usage and override that if necessary. > > I had the same problem, but I removed the extra RAM from the machine. > > What's better, to hardcode maxusers 128 in the kernel or let it be maxusers > 0 and let the system auto-size the parameter? I would suggest fixing it, although you're welcome to test the autosizing. I think it caps out at 512MB anyway. > Also, is this autosized on every boot or whenever a kernel is built? It's done on boot. Doug White | FreeBSD: The Power to Serve dwhite@resnet.uoregon.edu | www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18:30:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 9D72E37B402 for ; Wed, 23 Jan 2002 18:30:16 -0800 (PST) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 16TZeZ-0001Wf-00; Thu, 24 Jan 2002 03:30:15 +0100 Received: (from mailnull@localhost) by kemoauc.mips.inka.de (8.11.6/8.11.6) id g0O2SxL40647 for freebsd-questions@freebsd.org; Thu, 24 Jan 2002 03:28:59 +0100 (CET) (envelope-from mailnull) From: naddy@mips.inka.de (Christian Weisgerber) Subject: Re: cvsup to get 1 old port Date: Thu, 24 Jan 2002 02:28:59 +0000 (UTC) Message-ID: References: <20020123184118.6ac27ee4.nospam@hiltonbsd.com> Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Stephen Hilton wrote: > How can I retrive just 1 old version of a port. Wrong tool. > Wondering if there is a better way to do this? AnonCVS. -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18:36:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20108.mail.yahoo.com (web20108.mail.yahoo.com [216.136.226.45]) by hub.freebsd.org (Postfix) with SMTP id E5CD037B41A for ; Wed, 23 Jan 2002 18:36:37 -0800 (PST) Message-ID: <20020124023637.67504.qmail@web20108.mail.yahoo.com> Received: from [24.101.148.245] by web20108.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 18:36:37 PST Date: Wed, 23 Jan 2002 18:36:37 -0800 (PST) From: ann kok Subject: commands To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all I would like to know the commands 1/ tail -r doesn't work? 2/ how to check the word that appears more than one in the file? Thank you __________________________________________________ Do You Yahoo!? Great stuff seeing new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18:48:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id 8859C37B400 for ; Wed, 23 Jan 2002 18:48:15 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 570E82B7CD; Thu, 24 Jan 2002 03:48:13 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 4570566A; Thu, 24 Jan 2002 13:48:08 +1100 (EST) Date: Thu, 24 Jan 2002 13:48:08 +1100 From: Edwin Groothuis To: ann kok Cc: freebsd-questions@FreeBSD.ORG Subject: Re: commands Message-ID: <20020124134808.I823@k7.mavetju.org> Mail-Followup-To: Edwin Groothuis , ann kok , freebsd-questions@FreeBSD.ORG References: <20020124023637.67504.qmail@web20108.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020124023637.67504.qmail@web20108.mail.yahoo.com>; from annkok2001@yahoo.com on Wed, Jan 23, 2002 at 06:36:37PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jan 23, 2002 at 06:36:37PM -0800, ann kok wrote: > I would like to know the commands > > 1/ tail -r doesn't work? What do you mean with "doesn't work" ? > 2/ how to check the word that appears more than one in > the file? for i in `cat .profile | fmt -1 | sort | uniq`; do echo -n "$i "; grep -w -- "$i" .profile | wc -l; done But I think there are easier ways to find it out. :-) Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18:49:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 1786137B402 for ; Wed, 23 Jan 2002 18:49:14 -0800 (PST) Received: from gateway ([63.70.155.104]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com; Wed, 23 Jan 2002 21:52:29 -0500 From: "Joe & Fhe Barbish" To: "Adrian Partenie" Cc: "FBSD Questions" Subject: RE: Find modem connection speed Date: Wed, 23 Jan 2002 21:49:11 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: <20020106165112.8A8D248410@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Here is the answer to your question. It was just answered in this questions list on Jan 6. You need to do some research on your own to answer your own questions. Next time do a google search from http://groups.google.com/groups?hl=en&group=mailing.freebsd.questions Just a point you in the correct direction. -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Doug Reynolds Sent: Sunday, January 06, 2002 11:53 AM To: FBSD Questions; Joe & Fhe Barbish Subject: Re: Find modem connection speed On Sun, 6 Jan 2002 09:36:38 -0500, Joe & Fhe Barbish wrote: >I have a internal modem that dials out to my ISP >using user ppp. >I want to find out what the connection speed is? >Is there a command for this? >How do I find this out? cat /var/log/ppp.log | grep CONNECT --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Adrian Partenie Sent: Wednesday, January 23, 2002 8:10 PM To: freebsd-questions@freebsd.org Subject: Hi, Can anyone help me? To connect to Interenet I use a FreeBSD and an external modem. How can I find the speed at which the modem actually connects? Under ppp the only command that gives an information about the speed is "show physical" but is the speed from ppp.conf file. Thanks in advance, Adrian ------------------------------ K Free E-mail http://www.k.ro/ by KappaNet http://www.kappa.ro/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18:52:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from flake.decibel.org (flake.decibel.org [216.254.40.10]) by hub.freebsd.org (Postfix) with SMTP id CC71837B405 for ; Wed, 23 Jan 2002 18:52:31 -0800 (PST) Received: (qmail 61229 invoked by uid 1001); 24 Jan 2002 02:52:31 -0000 Date: Thu, 24 Jan 2002 02:52:31 +0000 From: "Jim C. Nasby" To: igorr@speechpro.com, freebsd-questions@freebsd.org Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Sybase Message-ID: <20020124025231.F942@flake.decibel.org> Reply-To: jim@nasby.net Mail-Followup-To: "Jim C. Nasby" , igorr@speechpro.com, freebsd-questions@freebsd.org References: <18522211127.20020121134320@fhs.usyd.edu.au> <20020121064102.GB19370@sysadm.stc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121064102.GB19370@sysadm.stc>; from igorr@sysadm.stc on Mon, Jan 21, 2002 at 09:41:02AM +0300 X-Operating-System: FreeBSD 4.4-STABLE i386 X-Distributed: Join the Effort! http://www.distributed.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG One caveat: I have not been able to get Sybase 11.0.3.3 (their free version) to work on multiple CPUs. If anyone has been able to do this, I'd be very interested to learn how! See also my recent thread on freebsd-database: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=0+0+archive/2002/freebsd-database/20020106.freebsd-database (sorry, it tends to ramble a bit...) On Mon, Jan 21, 2002 at 09:41:02AM +0300, Igor Roboul wrote: > On Mon, Jan 21, 2002 at 01:43:20PM +1100, Janusz Tydda wrote: > > Dear freebsd-questions, > > > > Is it possible to run Linux version of Sybase on FreeBsd? > Yes, > there are even FreeBSD-enabled version of ASE for Linux on Sybase's > site. At least it was. Also I have made custom .tgz for Sybase > customised for FreeBSD (with russian locale). I did this around year > ago, when I had tried Sybase ASE. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Jim C. Nasby (aka Decibel!) jim@nasby.net Member: Triangle Fraternity, Sports Car Club of America Give your computer some brain candy! www.distributed.net Team #1828 Windows: "Where do you want to go today?" Linux: "Where do you want to go tomorrow?" FreeBSD: "Are you guys coming, or what?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18:52:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from flake.decibel.org (flake.decibel.org [216.254.40.10]) by hub.freebsd.org (Postfix) with SMTP id CB76E37B404 for ; Wed, 23 Jan 2002 18:52:31 -0800 (PST) Received: (qmail 61229 invoked by uid 1001); 24 Jan 2002 02:52:31 -0000 Date: Thu, 24 Jan 2002 02:52:31 +0000 From: "Jim C. Nasby" To: igorr@speechpro.com, freebsd-questions@freebsd.org Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Sybase Message-ID: <20020124025231.F942@flake.decibel.org> Reply-To: jim@nasby.net Mail-Followup-To: "Jim C. Nasby" , igorr@speechpro.com, freebsd-questions@freebsd.org References: <18522211127.20020121134320@fhs.usyd.edu.au> <20020121064102.GB19370@sysadm.stc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020121064102.GB19370@sysadm.stc>; from igorr@sysadm.stc on Mon, Jan 21, 2002 at 09:41:02AM +0300 X-Operating-System: FreeBSD 4.4-STABLE i386 X-Distributed: Join the Effort! http://www.distributed.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG One caveat: I have not been able to get Sybase 11.0.3.3 (their free version) to work on multiple CPUs. If anyone has been able to do this, I'd be very interested to learn how! See also my recent thread on freebsd-database: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=0+0+archive/2002/freebsd-database/20020106.freebsd-database (sorry, it tends to ramble a bit...) On Mon, Jan 21, 2002 at 09:41:02AM +0300, Igor Roboul wrote: > On Mon, Jan 21, 2002 at 01:43:20PM +1100, Janusz Tydda wrote: > > Dear freebsd-questions, > > > > Is it possible to run Linux version of Sybase on FreeBsd? > Yes, > there are even FreeBSD-enabled version of ASE for Linux on Sybase's > site. At least it was. Also I have made custom .tgz for Sybase > customised for FreeBSD (with russian locale). I did this around year > ago, when I had tried Sybase ASE. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Jim C. Nasby (aka Decibel!) jim@nasby.net Member: Triangle Fraternity, Sports Car Club of America Give your computer some brain candy! www.distributed.net Team #1828 Windows: "Where do you want to go today?" Linux: "Where do you want to go tomorrow?" FreeBSD: "Are you guys coming, or what?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 18:57:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id B42E537B405 for ; Wed, 23 Jan 2002 18:57:13 -0800 (PST) Received: from win98800 ([12.232.232.117]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20020124025713.ZSMM26243.rwcrmhc51.attbi.com@win98800> for ; Thu, 24 Jan 2002 02:57:13 +0000 Message-ID: <002201c1a482$d31d48a0$6600640a@attbi.com> From: "Douglas R. Spindler" To: Subject: Help! Which NIC driver should I use? Date: Wed, 23 Jan 2002 18:57:13 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_001F_01C1A43F.C4D0D5C0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_001F_01C1A43F.C4D0D5C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I am attempting a FD/Internet install. I am stuck on which NIC to use. I have a Compaq with an integrated NIC, = DEC 21143 - IRQ 10. =20 Any idea what driver I should use? Thanks ------=_NextPart_000_001F_01C1A43F.C4D0D5C0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I am attempting a FD/Internet install.
I am stuck on which NIC to use.  I have a Compaq with an=20 integrated NIC, DEC 21143 - IRQ 10. 
 
Any idea what driver I should use?
 
Thanks
------=_NextPart_000_001F_01C1A43F.C4D0D5C0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 19: 2: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-2.enteract.com (smtp-2.enteract.com [207.229.143.4]) by hub.freebsd.org (Postfix) with ESMTP id 4C6D237B402 for ; Wed, 23 Jan 2002 19:02:00 -0800 (PST) Received: from jamestown.21stcentury.net (24-148-18-116.na.21stcentury.net [24.148.18.116]) by smtp-2.enteract.com (Postfix) with ESMTP id 918A3866B; Wed, 23 Jan 2002 21:01:59 -0600 (CST) Received: (from jtm@localhost) by jamestown.21stcentury.net (8.11.6/8.11.3) id g0O31v912338; Wed, 23 Jan 2002 21:01:57 -0600 (CST) (envelope-from jtm63@enteract.com) X-Authentication-Warning: jamestown.21stcentury.net: jtm set sender to jtm63@enteract.com using -f To: freebsd-questions@FreeBSD.ORG Cc: Josh Paetzel , Scott Subject: Re: UDMA ICRC error reading fsbn 21778428 of 7149744-7149745 ? References: <86vgdzrsz0.fsf@jamestown.21stcentury.net> <86vgdzrsz0.fsf@jamestown.21stcentury.net> <5.1.0.14.0.20020121023138.00c33f60@pop-server.nyc.rr.com> From: James McNaughton Date: 23 Jan 2002 21:01:53 -0600 In-Reply-To: <5.1.0.14.0.20020121023138.00c33f60@pop-server.nyc.rr.com> Message-ID: <86y9iowixq.fsf@jamestown.21stcentury.net> Lines: 39 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Scott writes: > At 21:45 2002/01/18 +0000, Josh Paetzel wrote: > >On Fri, Jan 18, 2002 at 08:10:27PM -0600, James McNaughton wrote: > > > Is this error: > > > UDMA ICRC error reading fsbn 21778428 of 7149744-7149745 > > > something to worry about? What does it _really_ mean? > > > > > > TIA > > > >What it means is that there was corruption of data on the IDE bus. > >The actual data transfer uses a CRC checksum to detect data > >corruption, and it caught one while doing a transfer on your system. > > If it's also saying something about dropping to PIO mode then... > > I keep thinking this one ought to make the FAQ (if it hasn't already) > as, depending on the phrasing of search words, there's often about > 2,000 hits on deja with it. 9 times out of ten (two machines out of > two in my case) it can be fixed by simply replacing your IDE cable > with shielded 80 pin ATA 100 IDE cable. (Which can be found for > around 3-6 dollars). > > I thought that it was only FreeBSD that was so sensitive to it, but > closer looking at various Linux bootup dmesg showed that it was > affecting Linux as well. > > >HTH > > Scott Robbins > Thanks for the info. It certainly should be on the FAQ since it would ease a lot of minds. My controller is only at UDMA-33 but I think I have a UDMA-66 cable in my spares box. The next time I crack the case I'll replace the cable just for insurance. BTW this error hasn't reappeared. Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 19: 2:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id B733C37B404 for ; Wed, 23 Jan 2002 19:02:40 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16Ta9v-000HE8-00 for freebsd-questions@freebsd.org; Thu, 24 Jan 2002 03:02:39 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 3A553118B; Thu, 24 Jan 2002 04:02:38 +0100 (CET) Date: Thu, 24 Jan 2002 04:02:38 +0100 From: Cliff Sarginson To: FreeBSD List Subject: Re: Reversing Linux and FreeBSD running on same system without mutual self-destruction Message-ID: <20020124030238.GA1042@raggedclown.net> References: <20020123051538.GA3234@raggedclown.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Jan 23, 2002 at 04:49:03PM -0800, Gary W. Swearingen wrote: > Cliff Sarginson writes: > > > Here is a challenge. > > You provided a lot of info, but maybe not enough. I'm not promising any > great ideas, but I was wishing you'd have given approximate disk/ > partition sizes at least. Amount of unused space for tmp xfr. How many > CDs you consider reasonable to write and verify. > Yes, I was not really wanting to burden anyone with the mathematics of it :). > I couldn't get reliable mounts of Linux from FreeBSD and vice versa, so This is the bummer, me neither. > I tar'd directly into a raw FreeBSD partition from Linux and then from > FreeBSD, untar'd it. I know that doesn't address some of your problems. > > You might best use a scheme which involves putting everything on CD so > that you get a free backup in the process. If you've got room, do > "dump ... | gzip | split ..." on your partitions and burn them. You'd > need a big space to unsplit them to before "zcat ... | restore ...". > > (I wish I knew how to make a pipe work like a tape drive with > end-of-file thingy so you could treat CDs like tapes with dump and > restore, and embed a gzip. It should be doable. It probably should > even be possible to make it work like a disk drive with 650 MB blocks.) > I have looked at the problem again, and it boils down to this now. I can move the whole of the Linux stuff, with a bit of tidying up, and some fairly careful fiddling with configurations, from it's current location on the SCSI disk to various places on the AT ones. I can do that without having to touch the FreeBSD stuff..so that is cool. So that will solve that problem, I then have a SCSI disk with only a boot partition .. very small..that I will keep anyway, I get on better with Lilo than with the FreeBSD boot manager, and I am very familiar with it. So I then have a SCSI disk which I can repartition/slice (I am still not used to slices, everytime I use the word I start thinking about cakes) how I like apart from the first one on the disk. Having done that I guess I can boot the existing BSD system single user and tar over the existing AT BSD file systems to the SCSI one. I can adjust Lilo to reflect the new boot possibilities, I can adjust fstab for the SCSI BSD..with me so far ? Now this is where I reach the edge of the desert. I need then a kernel on the SCSI BSD system that will boot it. And this is where I need some expert advice, will the installation of a generic kernel from the existing AT system onto the root of the new SCSI FreeBSD system work ? What are the gotcha's in this scenario ? Apart from the possible devastation of a typing mistake (I just found quite a novel one in the existing installation, which strangely has never had a bad effect..but that is a mere detail :) Thanks for giving it some thought for me :) -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 19: 7:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id B8C3337B402 for ; Wed, 23 Jan 2002 19:07:12 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 3EEFE66B74; Wed, 23 Jan 2002 19:07:12 -0800 (PST) Date: Wed, 23 Jan 2002 19:07:12 -0800 From: Kris Kennaway To: "Philip M. Gollucci" Cc: freebsd-questions@FreeBSD.org Subject: Re: Ugly Ugly CPU Memory error on boot up Message-ID: <20020123190711.A44238@xor.obsecurity.org> References: <20020123180002.R63101-100000@sduwebship.student.umd.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="wRRV7LY7NUeQGEoC" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020123180002.R63101-100000@sduwebship.student.umd.edu>; from philip@sduwebship.student.umd.edu on Wed, Jan 23, 2002 at 06:02:19PM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --wRRV7LY7NUeQGEoC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jan 23, 2002 at 06:02:19PM +0000, Philip M. Gollucci wrote: > First let me apologize for asking this here, but I don't know the > appropriate list. >=20 > This looks to me like someone walked up and kicked the CPU itself. > Any ideas, its in a closet somewhere I don't have access to or root on. > I sent e-mail to root@domain, but they simply deleted the log file that I > pointed out to them without responding. This doesn't look like a FreeBSD error message (Sun Solaris?) Anyway, it's a hardware problem and you probably need to replace the RAM. Kris --wRRV7LY7NUeQGEoC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8T3pfWry0BWjoQKURAn+2AJ9eZKt9A9CRXlwNSg6JYOgJ3X1tKACfUnMw 5uSQYUZFx4KlmCsdf1Su4iA= =n/0y -----END PGP SIGNATURE----- --wRRV7LY7NUeQGEoC-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 19: 8: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id BE80537B400 for ; Wed, 23 Jan 2002 19:07:58 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 4EE1066C11; Wed, 23 Jan 2002 19:07:58 -0800 (PST) Date: Wed, 23 Jan 2002 19:07:58 -0800 From: Kris Kennaway To: Ty Hoeffer Cc: questions@freebsd.org Subject: Re: Anyone using the rp-pppoe port successfully? Message-ID: <20020123190758.B44238@xor.obsecurity.org> References: <3C4F182E.6090504@virginia.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="mxv5cy4qt+RJ9ypb" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <3C4F182E.6090504@virginia.edu>; from pth3k@virginia.edu on Wed, Jan 23, 2002 at 03:08:14PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --mxv5cy4qt+RJ9ypb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jan 23, 2002 at 03:08:14PM -0500, Ty Hoeffer wrote: > Has anyone gotten the rp-pppoe port to work? I've compiled it but of=20 > course pppd complains when you run adsl-start. Anyone got a solution=20 > before I start digging into pppd & rp-pppoe? Why not just use ppp(8) for pppoe? That's what the rest of us use :-) Kris --mxv5cy4qt+RJ9ypb Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8T3qNWry0BWjoQKURAjcfAJ9r0BD6Q73uTY1x6s8FxMgnrQ+REwCeK9J7 bQpKSPQO/0dHtJ0MYGbjDmk= =2NOL -----END PGP SIGNATURE----- --mxv5cy4qt+RJ9ypb-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 19:13:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns33.tstt.net.tt (ns33.tstt.net.tt [196.3.132.33]) by hub.freebsd.org (Postfix) with SMTP id 1238237B400 for ; Wed, 23 Jan 2002 19:13:34 -0800 (PST) Received: (qmail 64638 invoked from network); 24 Jan 2002 02:39:52 -0000 Received: from unknown (HELO uwi.tt) (209.94.215.88) by ns33.tstt.net.tt with SMTP; 24 Jan 2002 02:39:52 -0000 Message-ID: <3C4F73F9.CCE3EC2E@uwi.tt> Date: Wed, 23 Jan 2002 22:39:53 -0400 From: Dale Chulhan X-Mailer: Mozilla 4.78 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: Majorodomo Now Answering Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am trying to change my email address that I am subscribing to the *-freebsd lists with and he does not seem to be answering when I mail him the help command any ideas? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 19:25:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from swan.prod.itd.earthlink.net (swan.mail.pas.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id BFF9F37B400 for ; Wed, 23 Jan 2002 19:25:21 -0800 (PST) Received: from dialup-209.246.210.83.dial1.philadelphia1.level3.net ([209.246.210.83] helo=sparky) by swan.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16TaVn-0004BI-00 for freebsd-questions@freebsd.org; Wed, 23 Jan 2002 19:25:15 -0800 From: Jud To: freebsd-questions@freebsd.org Date: Wed, 23 Jan 2002 22:25:45 -0500 X-Priority: 3 (Normal) Message-Id: Subject: Cooling Athlon / Linux App MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1252" X-Mailer: Opera 6.01 build 1026 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG My Athlon 1.33ghz TBird runs about 41-43 degrees Celsius in Windows when using a small free utility called VCool, about 53-55 degrees Celsius without. (VCool causes the CPU to enter an "idle" state when it's not being used. For more, see "How it Works" at http://www.vcool.de .) I don't have FBSD set up to give me system temperatures, but temperatures shown when I boot into Windows after running FBSD are similar to those I see in Windows without VCool. (The motherboard remains relatively cool - 29-33 Celsius - no matter what the CPU temp. And yes, I do plan to redo my heatsink installation one of these weekends when I have time.) VCool has a Linux version available. Is it possible to install/run it on FreeBSD? (I have Linux emulation enabled.) I'm also wondering whether it might be a Good Thing to have something similar built into /etc/defaults/make.conf or LINT as a user-selectable Athlon optimization, or even have it run as a daemon. The effects on CPU reliability and longevity of a 12 degree Celsius difference in operating temperature could be significant. Jud To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 19:33:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from geographos.astro.washington.edu (geographos.astro.washington.edu [128.95.99.27]) by hub.freebsd.org (Postfix) with ESMTP id 2FE9837B404; Wed, 23 Jan 2002 19:33:40 -0800 (PST) Received: from localhost (kopts@localhost) by geographos.astro.washington.edu (8.11.6/8.11.6) with ESMTP id g0O3Xd504844; Wed, 23 Jan 2002 19:33:39 -0800 X-Authentication-Warning: geographos.astro.washington.edu: kopts owned process doing -bs Date: Wed, 23 Jan 2002 19:33:39 -0800 (PST) From: Alexey Koptsevich To: , Subject: installing linux-6.1-dependent ports over linux-7 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Is there a way to install opera or acroread over linux_base-6.1? Thanks, Alex /usr/ports/print/acroread4 >make install ===> Installing for acroread4-4.05 ===> acroread4-4.05 depends on file: /compat/linux/usr/i486-linux-libc5/lib/libc.so.5 - not found ===> Verifying install for /compat/linux/usr/i486-linux-libc5/lib/libc.so.5 in /usr/ports/emulators/linux_base ===> Installing for linux_base-6.1 setup-2.0.5-1.noarch.rpm package setup-2.4.7-1 (which is newer than setup-2.0.5-1) is already installed *** Error code 2 Stop in /ext/ports/emulators/linux_base. *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 19:37:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id E17C537B402 for ; Wed, 23 Jan 2002 19:37:07 -0800 (PST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id A2863782FC; Thu, 24 Jan 2002 14:07:05 +1030 (CST) Date: Thu, 24 Jan 2002 14:07:05 +1030 From: Greg Lehey To: Jud Cc: freebsd-questions@freebsd.org Subject: Re: Cooling Athlon / Linux App Message-ID: <20020124140705.I93957@wantadilla.lemis.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.3.23i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wednesday, 23 January 2002 at 22:25:45 -0500, Jud wrote: > My Athlon 1.33ghz TBird runs about 41-43 degrees Celsius in Windows > when using a small free utility called VCool, about 53-55 degrees > Celsius without. (VCool causes the CPU to enter an "idle" state when > it's not being used. For more, see "How it Works" at > http://www.vcool.de .) I don't have FBSD set up to give me system > temperatures, but temperatures shown when I boot into Windows after > running FBSD are similar to those I see in Windows without VCool. > (The motherboard remains relatively cool - 29-33 Celsius - no matter > what the CPU temp. And yes, I do plan to redo my heatsink installation > one of these weekends when I have time.) > > VCool has a Linux version available. Is it possible to install/run it on > FreeBSD? (I have Linux emulation enabled.) > > I'm also wondering whether it might be a Good Thing to have something > similar built into /etc/defaults/make.conf or LINT as a user-selectable > Athlon optimization, or even have it run as a daemon. The effects on > CPU reliability and longevity of a 12 degree Celsius difference in > operating temperature could be significant. This is an approach to kernel issues which is contrary to the FreeBSD way of doing things. You don't add external programs to the kernel, you fix the kernel. In this case, though, you don't need to do anything. The single-processor kernel automatically halts when it has nothing to do. My Athlons do run at just below 40° C. For various reasons, the SMP version doesn't, but you can't fix that just by running some program. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 19:40:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from swan.prod.itd.earthlink.net (swan.mail.pas.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id 69CCF37B400; Wed, 23 Jan 2002 19:40:41 -0800 (PST) Received: from dialup-209.246.210.83.dial1.philadelphia1.level3.net ([209.246.210.83] helo=sparky) by swan.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16Taki-0000Qb-00; Wed, 23 Jan 2002 19:40:40 -0800 From: Jud To: ports@freebsd.org, questions@freebsd.org, Alexey Koptsevich Date: Wed, 23 Jan 2002 22:41:10 -0500 X-Priority: 3 (Normal) In-Reply-To: Message-Id: <8641ON0485TMJYU06EDNLKJUTA5CBE9.3c4f8256@sparky> Subject: Re: installing linux-6.1-dependent ports over linux-7 MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" X-Mailer: Opera 6.01 build 1026 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 1/23/2002 10:33:39 PM, Alexey Koptsevich wrote: > >Hello, > >Is there a way to install opera or acroread over linux_base-6.1? Assuming you mean linux_base-7.1. How about deinstalling 7.1, installing 6.1 and dependent ports, reinstalling 7.1, then doing pkgdb -F? Or will the last 2 steps break things? Jud To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 19:57:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from swan.prod.itd.earthlink.net (swan.mail.pas.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id 318E837B405; Wed, 23 Jan 2002 19:57:55 -0800 (PST) Received: from dialup-209.246.210.83.dial1.philadelphia1.level3.net ([209.246.210.83] helo=sparky) by swan.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16Tb1K-0005kU-00; Wed, 23 Jan 2002 19:57:51 -0800 From: Jud To: Greg Lehey Cc: freebsd-questions@freebsd.org Date: Wed, 23 Jan 2002 22:58:21 -0500 X-Priority: 3 (Normal) In-Reply-To: <20020124140705.I93957@wantadilla.lemis.com> Message-Id: Subject: Re: Cooling Athlon / Linux App MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Mailer: Opera 6.01 build 1026 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 1/23/2002 10:37:05 PM, Greg Lehey wrote: >On Wednesday, 23 January 2002 at 22:25:45 -0500, Jud wrote: >> My Athlon 1.33ghz TBird runs about 41-43 degrees Celsius in Windows >> when using a small free utility called VCool, about 53-55 degrees >> Celsius without. (VCool causes the CPU to enter an "idle" state when >> it's not being used. [snip] >> VCool has a Linux version available. Is it possible to install/run it on >> FreeBSD? (I have Linux emulation enabled.) >> >> I'm also wondering whether it might be a Good Thing to have something >> similar built into /etc/defaults/make.conf or LINT as a user- selectable >> Athlon optimization, or even have it run as a daemon. [snip] >This is an approach to kernel issues which is contrary to the FreeBSD >way of doing things. You don't add external programs to the kernel, >you fix the kernel. OK, makes good sense. >In this case, though, you don't need to do anything. The >single-processor kernel automatically halts when it has nothing to do. I think if you read the VCool documentation, you'll find that the theory, at least, is that the Athlon is unable to reach idle mode unless its system bus is disconnected, even when it would otherwise make eminent sense for the CPU to do so because the system isn't busy. VCool purports to set the "Bus Disconnect Enable" bit and so allow the CPU to go into idle mode at appropriate times. >My Athlons do run at just below 40° C. For various reasons, the SMP >version doesn't, but you can't fix that just by running some program. I likely didn't do as careful a job with heat sink and thermal paste as I should have, so my CPU runs significantly hotter than that. Whether or not I achieve improvement in that area, if "some [free open-source] program" will help my CPU run cooler still, I'm curious to know whether I can use it in FreeBSD. Jud To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 19:59:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from valen.gwi.net (valen.gwi.net [207.5.128.33]) by hub.freebsd.org (Postfix) with ESMTP id AC47837B416 for ; Wed, 23 Jan 2002 19:59:25 -0800 (PST) Received: from ABERRATION (dieselgeek.outofspec.com [207.5.188.11]) by valen.gwi.net (8.11.6/8.11.6) with SMTP id g0O3xOc03551; Wed, 23 Jan 2002 22:59:24 -0500 (EST) Message-ID: <017601c1a48b$82813600$fa01a8c0@ABERRATION> Reply-To: "Predius" From: "Predius" To: "Jud" , References: Subject: Re: Cooling Athlon / Linux App Date: Wed, 23 Jan 2002 22:59:23 -0500 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.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG There is an easy solution built into the FreeBSD kernel source, but you will have to recompile to use it. From /usr/src/sys/i386/conf/LINT # CPU_SUSP_HLT enables suspend on HALT. If this option is set, CPU # enters suspend mode following execution of HALT instruction. This does precisely what vcool does. (And is the default for NT based windows releases btw...) Add that option to your kernel conf, recompile and install the kernel, and you'll be all set. Joshua Coombs ----- Original Message ----- From: "Jud" To: Sent: Wednesday, January 23, 2002 10:25 PM Subject: Cooling Athlon / Linux App > My Athlon 1.33ghz TBird runs about 41-43 degrees Celsius in Windows > when using a small free utility called VCool, about 53-55 degrees > Celsius without. (VCool causes the CPU to enter an "idle" state when > it's not being used. For more, see "How it Works" at > http://www.vcool.de .) I don't have FBSD set up to give me system > temperatures, but temperatures shown when I boot into Windows after > running FBSD are similar to those I see in Windows without VCool. > (The motherboard remains relatively cool - 29-33 Celsius - no matter > what the CPU temp. And yes, I do plan to redo my heatsink installation > one of these weekends when I have time.) > > VCool has a Linux version available. Is it possible to install/run it on > FreeBSD? (I have Linux emulation enabled.) > > I'm also wondering whether it might be a Good Thing to have something > similar built into /etc/defaults/make.conf or LINT as a user-selectable > Athlon optimization, or even have it run as a daemon. The effects on > CPU reliability and longevity of a 12 degree Celsius difference in > operating temperature could be significant. > > Jud > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 20: 0:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.netranking.jp (ns.netranking.jp [202.224.198.202]) by hub.freebsd.org (Postfix) with ESMTP id 5795637B402 for ; Wed, 23 Jan 2002 19:59:40 -0800 (PST) Received: from mag (192.168.1.54) by mail.netranking.jp with SMTP (Eudora Internet Mail Server 1.3.1); Thu, 24 Jan 2002 11:14:44 +0900 From: "2525do" To: "freebsd-questions@FreeBSD.ORG" Subject: =?ISO-2022-JP?B?IRskQjktOXAbKEIhIBskQiVRJT0lMyVzISYbKEJPQRskQiROJE0kQyRIRExITiFWJEskMyRLJDNGOyFXJSohPCVXJXMkTiQ0MEZGYhsoQg==?= X-Mailer: A-1 Mail SOHO Ver1.02 Copyright(c) 2001 INGRAM inc. Reply-To: "2525do" Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Date: Thu, 24 Jan 2002 11:14:44 +0900 Message-ID: <1200251612-67823421@mail.netranking.jp> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG $B$*5RMM3F0L(B $B!|J8>O$NJ8;zG[Ns$,Mp$l$k>l9g$O%5%$%:$rD4@0$7$F$4Mw2<$5$$!|(B $B$*$9$9$a>&IJ$rK~:\CW$7$^$7$?%[!<%`%Z!<%8$,$3$NEY3+@_CW$7$^$7$?$N$G(B $B$40FFbCW$7$^$9!#I,MW$J$$J}$KFO$$$F$7$^$C$?>l9g$O@?$K?=$7Lu$4$6$$$^$;$s!#(B ===$B!}!!(BPR$B!!!}(B================================================== $B!!!!!!?k$K%*!<%W%s!*!*%Q%=%3%s!&(BOA$B$N$M$C$HDLHN!V$K$3$K$3F;!W!*(B $B!!!!!!(Bhttp://www.2525do.com/ ============================================================== $B!&!&!E!E!D!D(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,!D!D!E!E!&!&(B $B!!!!!!!!!!!!!z!y!z!!!V$K$3$K$3F;!W%*!<%W%s$N$40FFb!!!z!y!z(B $B!&!&!E!E!D!D(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,!D!D!E!E!&!&(B $B!!!!!!!!!&!&!E!E!D!D(,(,(,!y!!%a%K%e!&IJ>pJs!*(B $B!!!!!Z!o![FC2A>&IJ>pJs!*(B $B!!!!!Z!)![$K$3$K$3F;>pJs!*(B ---------------------------------------------------$B!z!y!z!y!z(B $B"#!Z"v!["."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."#(B $B!!!!"#%*!<%W%s5-G0%W%l%<%s%H!*(B $B"#"."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."#(B $B!!"""#$K$3$K$3F;$G$O%*!<%W%s$r5-G0$7$F!"%G%9%/%H%C%W%Q%=%3%s$^$?$O(B $B!!!!!!%N!<%H%Q%=%3%s$r$*Gc$$>e$2$N$*5RMM$K!"7HBS%0%C%:!V%l%7!<%P!<%m%\!W(B $B!!!!!!$r%W%l%<%s%HCW$7$^$9!*(B $B!!!!!!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(B $B!!!!!!!|%l%7!<%P!<%m%\!&!&!&!&!&(B $B!!!!!!%l%7!<%P!<%m%\$O!"7HBSEEOC$NCe?.$r%-%c%C%A$7$F!"2;!&8w!&F0$-$G(B $B!!!!!!CN$i$;$F$/$l$k7HBS%0%C%:$G$9!*(B $B!!!!!!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(B $B"#!Z!y!["."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."#(B $B!!!!"#$*$9$9$a>&IJ>pJs!*(B $B"#"."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."#(B $B!!"""#$K$3$K$3F;$N$*$9$9$a>&IJ$O%3%A%i!*"-"-"-(B $B!!!!!!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(B $B!!!T#1!U%5%V%&!<%U%!IU%9%F%l%*%9%T!<%+!<%;%C%H!J(B7,480$B1_!K(B $B!!!!!!"d$*$7$c$l$J%9%1%k%H%s7?!*(B $B!!!T#2!U3Z!9@\B3(B2$B!J(B1,980$B1_!K(B $B!!!!!!"d(BPC$B$NN"B&$K$"$k3F%]!<%H$r!"K\BN$NA0LL$K=P$9;v$,$G$-$k(B $B!!!!!!!!%1!<%V%k%;%C%H$G$9!#(B $B!!!T#3!U(BPS$B%8%g%$%Q%C%I(B mini$B!J(B2,480$B1_!K(B $B!!!!!!"d(BPlayStation$BMQ$N(BDualShock$B%3%s%H%m!<%i$,(BDOS/V$B%Q%=%3%s$G(B $B!!!!!!!!;HMQ2DG=!#?6F05!G=BP1~!*(B $B!!!!!'(B $B!!$3$NB>!"$*$9$9$a>&IJ$O$^$@$^$@$"$j$^$9!*(B $B!!!!!!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(B $B"#!Z!o!["."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."#(B $B!!!!"#FC2A>&IJ>pJs!*(B $B"#"."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."#(B $B!!"""#$K$3$K$3F;$NFC2A>&IJ$O%3%A%i!*"-"-"-(B $B!!!!!!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(B $B!!!T#1!U%$%s%?!<%M%C%H%a%G%#%"%-!<%\!<%I!J(B980$B1_!K(B $B!!!!!!"d%$%s%?!<%M%C%H$NA`:n$,2wE,$K9T$($k!"(B8$B$D$N5!G=3HD%%\%?%s$rEk:\(B $B!!!!!!!!$7$?F|K\8l%-!<%\!<%I!*C&Ce2DG=$J%Q!<%`%l%9%HIU!*(B $B!!!T#2!U%O%s%G%#!<%H%i%C%/%\!<%k%^%&%9!J(B1,580$B1_!K(B $B!!!!!!"dJRe$KBf$,!"FC2A>&IJ$O@9$jBt;3!*(B $B!!!!!!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(B $B"#!Z!)!["."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."#(B $B!!!!"#$K$3$K$3F;>pJs!*(B $B"#"."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."."#(B $B!!"""#$K$3$K$3F;$H$O!&!&!&!&!&!&(B $B!!!!!!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(B $B!!!!!|KG0W>&HN%5%$%H$G$9!*(B $B!!!!!|%Q%=%3%s!&(BOA$B>&IJ$rCf?4$H$7$?DL?.HNGd!*(B $B!!!!!|$Q$=$3$sMQ%1!<%V%k(B1$BK\$+$iM"F~HNGdCW$7$^$9!*(B $B!!!!!|$*5RMM>pJs$r(BID$B4IM}$9$k;v$K$h$C$F!"0BA4$K$*Gc$$J*$r$7$FD:$1$^$9!*(B $B!!!!!!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(B ---------------------------------------------------$B!z!y!z!y!z(B $B!!(B_/_/ $B$K$3$K$3F;$N@=IJ7G:\$K$D$$$F$N$*Ld$$9g$o$;(B $B!!!!!!(BE-Mail$B!'(Binfo@2525do.com $B!!(B_/_/$B$K$3$K$3F;$N9XF~Ey$K$D$$$F$N$*Ld$$9g$o$;(B $B!!!!!!(BE-Mail$B!'(Border@2525do.com $B!!(B_/_/E-mail$B%"%I%l%9$NJQ99!"G[?.$NCf;_(B $B!!!!!!K\%a!<%k$O!"3Fl$5$lEPO?$5$l$?J}!9$K(BE$B%a!<%k$GH/Aw$5(B $B!!!!!!$;$F$$$?$@$$$F$*$j$^$9!#(BE-mail$B%"%I%l%9$NJQ99!"G[?.$NCf;_$N$40MMj$O(B $B!!!!!!(Bmag@2525do.com$B$^$G$4O"Mm2<$5$$!#(B $B!!(B_/_/$BH/9T!?JT=8!!$K$3$K$3F;;vL36I(B $B!!!!!!(Bhttp://www.2525do.com/ $B!!!!(B------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 20: 9:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from icc.cgu.chel.su (gw.csu.ru [195.54.14.5]) by hub.freebsd.org (Postfix) with ESMTP id 7D8F237B400 for ; Wed, 23 Jan 2002 20:09:21 -0800 (PST) Received: from mail.cgu.chel.su (mail.cgu.chel.su [195.54.14.68]) by icc.cgu.chel.su (8.11.6/8.11.6) with ESMTP id g0O48W201246 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified NO) for ; Thu, 24 Jan 2002 09:08:51 +0500 (YEKT) (envelope-from ilia@cgu.chel.su) Received: (from uucp@localhost) by mail.cgu.chel.su (8.11.6/8.11.2) with UUCP id g0O48fn13435 for questions@FreeBSD.ORG; Thu, 24 Jan 2002 09:08:41 +0500 (YEKT) (envelope-from ilia@cgu.chel.su) Received: from localhost (localhost.cgu.chel.su [127.0.0.1]) by jane.poka.net with ESMTP id g0NIi3K00786 for ; Wed, 23 Jan 2002 23:44:03 +0500 (YEKT) (envelope-from ilia@cgu.chel.su) Date: Wed, 23 Jan 2002 23:44:02 +0500 (YEKT) From: Ilia Chipitsine X-Sender: ilia@jane.poka.net To: questions@FreeBSD.ORG Subject: Kerberos & su Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear Sirs, I followed the Handbook, but "su" still doesn't use Kerberos. Is anybody using Kerberos + su ? Should I also modify /etc/pam.conf ? /etc/auth.conf ? Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 20:18:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tecdigital.net (tecdigital.tol.itesm.mx [132.254.97.16]) by hub.freebsd.org (Postfix) with ESMTP id 5C95937B416 for ; Wed, 23 Jan 2002 20:18:48 -0800 (PST) Received: from Deathstar (unknown [148.243.246.208]) by mail.tecdigital.net (Postfix) with ESMTP id C75451D20; Wed, 23 Jan 2002 22:18:46 -0600 (CST) Message-ID: <003b01c1a48e$39fabed0$0a00a8c0@Deathstar> From: "Mario Doria" To: Cc: Subject: IPF Dropping connections in the middle of a transfer Date: Wed, 23 Jan 2002 22:18:47 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I'm looking for some help regarding my IPFilter ruleset, as far as I can tell, it looks OK. The problem is that some remote users when transfering files with sftp suddenly lose the connection to the server. Other cases are where tranfering files via FTP (using windows client leechFTP), the connection times out randomly (always before the timeout in leechFTP). On both ocations, I haven't been able to reproduce the problem. I hope someone can shed some light into this! Thanks, Mario Doria madd@tecdigital.net FreeBSD nibleheim.tecdigital.net 4.5-RC FreeBSD 4.5-RC #0: Tue Jan 22 20:12:07 CST 2002 madd@nibleheim.tecdigital.net:/usr/obj/usr/src/sys/NIBLEHEIM i386 # cat /etc/ipf.rules pass in quick on lo0 all pass out quick on lo0 all # block in log quick all with short block in log quick all with ipopt # pass out quick from any to any head 5 block in quick proto icmp all head 6 block in quick proto tcp from any to any head 7 block in quick proto udp from any to any head 8 # pass out quick proto tcp from any to any keep state keep frags group 5 pass out quick proto udp from any to any keep state keep frags group 5 pass out quick proto icmp from any to any keep state group 5 # ICMP # Allows types 0,3,8,11 pass in quick proto icmp from any to any icmp-type 8 keep state group 6 pass in quick proto icmp from any to any icmp-type 0 keep state group 6 pass in quick proto icmp from any to any icmp-type 3 keep state group 6 pass in quick proto icmp from any to any icmp-type 11 keep state group 6 ## TCP Services # Samba, Webmin pass in quick proto tcp from 10.25.165.0/24 to any port 136 >< 140 flags S/SA keep state keep frags group 7 pass in quick proto tcp from 10.25.165.0/24 to any port = 10000 flags S/SA keep state keep frags group 7 # HTTP pass in quick proto tcp from any to any port = 80 flags S/SA keep state keep frags group 7 pass in quick proto tcp from any to any port = 443 flags S/SA keep state keep frags group 7 # DNS pass in quick proto tcp from any to any port = 53 flags S keep state keep frags group 7 # SMTP pass in quick proto tcp from any to any port = 25 flags S keep state keep frags group 7 block return-rst in quick proto tcp from any to any port = 113 group 7 # SPOP3 pass in quick proto tcp from any to any port = 995 flags S keep state keep frags group 7 # SSH pass in quick proto tcp from any to any port = 22 flags S keep state keep frags group 7 # FTP (opens ports 50000...53000, set in /etc/sysctl.conf) pass in quick proto tcp from any to any port = 20 flags S/SA keep state keep frags group 7 pass in quick proto tcp from any to any port = 21 flags S/SA keep state keep frags group 7 pass in quick proto tcp from any to any port 49999 >< 53001 flags S/SA keep state keep frags group 7 ## UDP Services # Samba pass in quick proto udp from 10.25.165.0/24 to any port 136 >< 140 keep state group 8 # DNS pass in quick proto udp from any to any port = 53 keep state group 8 # Block everything else block in log all block out log all To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 20:20:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from digger1.defence.gov.au (digger1.defence.gov.au [203.5.217.4]) by hub.freebsd.org (Postfix) with ESMTP id 7CB2037B404 for ; Wed, 23 Jan 2002 20:20:08 -0800 (PST) Received: from dsto-ms2.dsto.defence.gov.au (dsto-ms2.dsto.defence.gov.au [131.185.2.150]) by digger1.defence.gov.au (8.10.1/8.10.1) with ESMTP id g0O4J7F08434 for ; Thu, 24 Jan 2002 14:49:07 +1030 (CST) Received: from muttley.dsto.defence.gov.au (unverified) by dsto-ms2.dsto.defence.gov.au (Content Technologies SMTPRS 4.1.5) with ESMTP id for ; Thu, 24 Jan 2002 14:49:58 +1030 Received: from salex001.dsto.defence.gov.au (salex001.dsto.defence.gov.au [131.185.2.9]) by muttley.dsto.defence.gov.au (8.9.3/8.9.3/8.9.3.LMD.990513) with ESMTP id OAA10223 for ; Thu, 24 Jan 2002 14:42:14 +1030 (CST) Received: from pluto2.dsto.defence.gov.au (squirm.dsto.defence.gov.au [131.185.75.211]) by salex001.dsto.defence.gov.au with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id DLRR7NPW; Thu, 24 Jan 2002 14:42:13 +1030 Date: Thu, 24 Jan 2002 14:37:16 +1030 (CST) From: "Wilkinson,Alex" X-X-Sender: wilkinsa@squirm.dsto.defence.gov.au Reply-To: Alex.Wilkinson@dsto.defence.gov.au To: freebsd-questions@freebsd.org Subject: Linux Compat Mode Message-ID: <20020124143542.X42131-100000@squirm.dsto.defence.gov.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Howdy Crew, Whats the best way to tell if a port is going to be run in Linux Compatability Mode *before* the port is installed? pkg-desc ? That doesn't say much though ? - Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 20:20:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from zikmu.net (AMetz-101-1-4-86.abo.wanadoo.fr [80.11.87.86]) by hub.freebsd.org (Postfix) with ESMTP id D0F3537B416 for ; Wed, 23 Jan 2002 20:20:11 -0800 (PST) Message-ID: <6312-22002142442018290@zikmu.net> X-EM-Version: 6, 0, 1, 0 X-EM-Registration: #00F06206106618006920 X-Priority: 3 Reply-To: mail@zikmu.net From: "Zikmu Encheres" To: "freebsd-questions@FreeBSD.ORG" Subject: Site d'encheres GRATUITES Date: Thu, 24 Jan 2002 05:20:18 +0100 MIME-Version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bonjour, Apres une longue periode d'inactivit=E9e, Zikmu est heureux de vous=20 annoncer que Zikmu-Enchere reeouvre ses portes=2E Zikmu encheres vous permet de vendre tout type d'objet en rapport a la=20 musique GRATUITEMENT Rejoignez nous sur CORDIALEMENT pour ne plus faire partie de notre liste de diffusions, cliquez sur ce lie= n : To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 20:27: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tecdigital.net (tecdigital.tol.itesm.mx [132.254.97.16]) by hub.freebsd.org (Postfix) with ESMTP id DDA0E37B402 for ; Wed, 23 Jan 2002 20:26:56 -0800 (PST) Received: from Deathstar (unknown [148.243.246.208]) by mail.tecdigital.net (Postfix) with ESMTP id 16C821D20 for ; Wed, 23 Jan 2002 22:26:56 -0600 (CST) Message-ID: <004101c1a48f$5d47f500$0a00a8c0@Deathstar> From: "Mario Doria" To: Subject: Re[2]: Strange lock-ups during backup over nfs after adding 1024M RAM Date: Wed, 23 Jan 2002 22:26:57 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Some final comment: adding the line: kern.maxusers="256" to /boot/loader.conf on recent -STABLE builds is better than building a new kernel :) Mario Doria madd@tecdigital.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 20:27:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id 0F0A137B400 for ; Wed, 23 Jan 2002 20:27:31 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 321302B7CD; Thu, 24 Jan 2002 05:27:28 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id E8938170; Thu, 24 Jan 2002 15:27:22 +1100 (EST) Date: Thu, 24 Jan 2002 15:27:22 +1100 From: Edwin Groothuis To: "Wilkinson,Alex" Cc: freebsd-questions@freebsd.org Subject: Re: Linux Compat Mode Message-ID: <20020124152722.J823@k7.mavetju.org> Mail-Followup-To: Edwin Groothuis , "Wilkinson,Alex" , freebsd-questions@freebsd.org References: <20020124143542.X42131-100000@squirm.dsto.defence.gov.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020124143542.X42131-100000@squirm.dsto.defence.gov.au>; from Alex.Wilkinson@dsto.defence.gov.au on Thu, Jan 24, 2002 at 02:37:16PM +1030 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 02:37:16PM +1030, Wilkinson,Alex wrote: > Whats the best way to tell if a port is going to be run in > Linux Compatability Mode *before* the port is installed? Mostly because it has the linux- prefix, a la www/linux-opera, print/linux-acrobat or that it is in the category linux (in the Makefile) Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 20:58:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id D9FD937B400 for ; Wed, 23 Jan 2002 20:58:53 -0800 (PST) Received: from gateway ([63.70.155.104]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Thu, 24 Jan 2002 00:02:07 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: Modem getting sio1 interrupt-level buffer overflow msgs Date: Wed, 23 Jan 2002 23:58:48 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a Zoom model 2920 pci modem on sio1 and connect to my ISP with user ppp. I keep getting this message on the FBSD console '30 more sio1 interrupt-level buffer overflows' when installing ports that have to download tar files. I also get this message when I use 'tip or cu' command to issue ATI11 to the modem to display the last connection values. Any ideas of what is causing this or what to try to make it go away? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 21: 9:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 3191937B405 for ; Wed, 23 Jan 2002 21:09:17 -0800 (PST) Received: from gateway ([63.70.155.104]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Thu, 24 Jan 2002 00:12:34 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: ls command flags Date: Thu, 24 Jan 2002 00:09:15 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The /usr/ports/www directory has so many directories in it that the ls command just scrolls them off the screen. Is there a -flag to tell ls to show one screen at a time? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 21:11:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 3A85D37B404 for ; Wed, 23 Jan 2002 21:11:25 -0800 (PST) Received: from gateway ([63.70.155.104]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Thu, 24 Jan 2002 00:14:42 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: Modem getting sio1 interrupt-level buffer overflow msgs Date: Thu, 24 Jan 2002 00:11:23 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a Zoom model 2920 pci modem on sio1 and connect to my ISP with user ppp. I keep getting this message on the FBSD console '30 more sio1 interrupt-level buffer overflows' when installing ports that have to download tar files. I also get this message when I use 'tip or cu' command to issue ATI11 to the modem to display the last connection values. Any ideas of what is causing this or what to try to make it go away? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 21:13:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from www.k.ro (www.k.ro [194.102.255.23]) by hub.freebsd.org (Postfix) with ESMTP id BBEB737B417 for ; Wed, 23 Jan 2002 21:13:23 -0800 (PST) Received: (from www@localhost) by www.k.ro (8.11.2/8.11.2) id g0O5D2407938; Thu, 24 Jan 2002 07:13:02 +0200 Date: Thu, 24 Jan 2002 07:13:02 +0200 Message-Id: <200201240513.g0O5D2407938@www.k.ro> From: Oleg Sorocean X-Mailer: Super-Mail@k.ro http://mail.k.ro/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Sender-IP: 192.129.3.244 To: questions@freebsd.org Subject: FreeBSD installing problem Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi! When i trying to install FreeBSD i encouter following problem in my system i have 2 hard drive's first is primary master and second is secondary master when i boot from floppy to install FreeBSD it detects both hard drive's: Bios drive A:is disc 0 bios drive C:is disc 1 bios drive D:is disc 2 after kernel loading system detects both hard drive's ata1.... ata2... after that when i begin standard instalation appear text Message In the next menu.... [OK] [Press Enter to continue] and after thant, dialog too select on wich hard drive i want to install FreeBSD did not appear installation goes directly to screen Disk name :ad 0 Disk Geometry .... Offset ... sorry for my english thanks in advance ------------------------------ K Free E-mail http://www.k.ro/ by KappaNet http://www.kappa.ro/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 21:14:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web13803.mail.yahoo.com (web13803.mail.yahoo.com [216.136.175.13]) by hub.freebsd.org (Postfix) with SMTP id 87C3C37B402 for ; Wed, 23 Jan 2002 21:14:34 -0800 (PST) Message-ID: <20020124051431.66768.qmail@web13803.mail.yahoo.com> Received: from [12.248.237.48] by web13803.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 21:14:31 PST Date: Wed, 23 Jan 2002 21:14:31 -0800 (PST) From: Brent Peterson Subject: Install stops from purchased CDROM! To: FreeBSD-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Using the BSD 4.0 Boxed set I have, using the orginal, manufactured CDs: I am trying to install free BSD on an old AST advantage 8075p on to a 4gig conner CFP4207S drive. Adaptec 2940W/UW scsi card. The machine is a pentium 1, and has a 4X Toshiba ATAPI CDROM drive model XM5302B. I boot from floppy disk with the CDROM in the drive and the install proceeds fine until I get: Unable to transfer the Servers/XSVGA distribution from acd0c do you want to try to retrieve it again? ALT-F2 gives the following message: acd0: READ_BIG - MEDIUM ERROR asc=15 ascq=00 error=00 /stand/gunzip: failed gzclose /stand/cpio: premature end of file the first time I just selected no for that package and several there after to get out of the install and started over. Now on the second try, the same error has occured. What's going on here? Free BSD is happy with the CDROM until this point. I have just completed installing Openstep without difficulty on the ATA/EIDE drive, so I know this machine should work with a BSD type unix OS. I'd like to know how to get this install to work, but the usenet archives only show people having the same problem but no posted solutions. thanks, -Bp ===== -- __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 21:28:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from nycsmtp1out.rdc-nyc.rr.com (nycsmtp1out.rdc-nyc.rr.com [24.29.99.226]) by hub.freebsd.org (Postfix) with ESMTP id 1507F37B400 for ; Wed, 23 Jan 2002 21:28:54 -0800 (PST) Received: from scott1.nyc.rr.com (24-168-24-239.nyc.rr.com [24.168.24.239]) by nycsmtp1out.rdc-nyc.rr.com (8.12.1/Road Runner SMTP Server 1.0) with ESMTP id g0O5SSfa009244; Thu, 24 Jan 2002 00:28:28 -0500 (EST) Message-Id: <5.1.0.14.0.20020123212503.00c1e350@pop-server.nyc.rr.com> X-Sender: scottro@pop-server.nyc.rr.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Wed, 23 Jan 2002 21:26:07 -0500 To: "Joe & Fhe Barbish" , "FBSD Questions" From: Scott Subject: Re: ls command flags In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 00:09 2002/01/24 -0500, Joe & Fhe Barbish wrote: >The /usr/ports/www directory has so many directories >in it that the ls command just scrolls them off the screen. >Is there a -flag to tell ls to show one screen at a time? Don't know of a flag, but just doing ls -d /usr/ports/www | less will confine it to a screen at a time HTH Scott Robbins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 21:29:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.nc.rr.com (fe7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id 4698D37B405 for ; Wed, 23 Jan 2002 21:29:45 -0800 (PST) Received: from i8k.babbleon.org ([66.57.85.154]) by mail7.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Thu, 24 Jan 2002 00:29:39 -0500 Received: by i8k.babbleon.org (Postfix, from userid 111) id 03E813F9C; Thu, 24 Jan 2002 00:28:28 -0500 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: freebsd-questions@freebsd.org Subject: External (USB/firewire) hard drives? Date: Thu, 24 Jan 2002 00:28:28 -0500 X-Mailer: KMail [version 1.3] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020124052828.03E813F9C@i8k.babbleon.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG How well do USB hardrives work under FreeBSD? What brands do/don't work. (The discussion of this in the FAQ under hardware compatibiilty a) doesn't discuss disk drives and b) refers to version 3.x of FreeBSD! ) Is there some other place I ought to be looking for this sort of info? is 1394/firewire supported at all? How about USB-2? And would I have to have USB-2 *ports* on my computer to use it if it was, or is this just a software/driver/external device difference? Thanks for any insight. -- Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org -------> Free Dmitry Sklyarov! (let him go home) <----------- http://www.eff.org http://www.programming-freedom.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 21:31:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.nc.rr.com (fe7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id 9398537B404 for ; Wed, 23 Jan 2002 21:31:21 -0800 (PST) Received: from i8k.babbleon.org ([66.57.85.154]) by mail7.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Thu, 24 Jan 2002 00:31:13 -0500 Received: by i8k.babbleon.org (Postfix, from userid 111) id 348353F9C; Thu, 24 Jan 2002 00:30:03 -0500 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: "Joe & Fhe Barbish" , "FBSD Questions" Subject: Re: ls command flags Date: Thu, 24 Jan 2002 00:30:02 -0500 X-Mailer: KMail [version 1.3] References: In-Reply-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020124053003.348353F9C@i8k.babbleon.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday 24 January 2002 12:09 am, Joe & Fhe Barbish wrote: > The /usr/ports/www directory has so many directories > in it that the ls command just scrolls them off the screen. > Is there a -flag to tell ls to show one screen at a time? Yes, it's the "| more" flag :-) ls | more > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org -------> Free Dmitry Sklyarov! (let him go home) <----------- http://www.eff.org http://www.programming-freedom.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 21:34:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.nc.rr.com (fe7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id 5E9DB37B416 for ; Wed, 23 Jan 2002 21:34:38 -0800 (PST) Received: from i8k.babbleon.org ([66.57.85.154]) by mail7.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Thu, 24 Jan 2002 00:34:35 -0500 Received: by i8k.babbleon.org (Postfix, from userid 111) id DD3073F9C; Thu, 24 Jan 2002 00:33:24 -0500 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: Brent Peterson , FreeBSD-questions@FreeBSD.ORG Subject: Re: Install stops from purchased CDROM! Date: Thu, 24 Jan 2002 00:33:24 -0500 X-Mailer: KMail [version 1.3] References: <20020124051431.66768.qmail@web13803.mail.yahoo.com> In-Reply-To: <20020124051431.66768.qmail@web13803.mail.yahoo.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020124053324.DD3073F9C@i8k.babbleon.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Have you looked at the CD? Maybe the surface has gotten scratched? That's what that sort of error usually means . . . a physical problem with the CD (or the drive). If so, the "SkipDoctor" really works . . . or you might just want to order a new CD set since you could step up to 4.4 (or even 4.5 if you can wait just a bit) while you were at it . . . On Thursday 24 January 2002 12:14 am, Brent Peterson wrote: > Using the BSD 4.0 Boxed set I have, using the orginal, > manufactured CDs: > > I am trying to install free BSD on an old AST advantage 8075p > on to a 4gig conner CFP4207S drive. Adaptec 2940W/UW scsi > card. The machine is a pentium 1, and has a 4X Toshiba > ATAPI CDROM drive model XM5302B. > > I boot from floppy disk with the CDROM in the drive and > the install proceeds fine until I get: > Unable to transfer the Servers/XSVGA distribution from acd0c > do you want to try to retrieve it again? > > ALT-F2 gives the following message: > acd0: READ_BIG - MEDIUM ERROR asc=15 ascq=00 error=00 > /stand/gunzip: failed gzclose > /stand/cpio: premature end of file > > the first time I just selected no for that package and > several there after to get out of the install and started > over. Now on the second try, the same error has occured. > > What's going on here? Free BSD is happy with the CDROM > until this point. > > I have just completed installing Openstep without difficulty > on the ATA/EIDE drive, so I know this machine should work > with a BSD type unix OS. > > I'd like to know how to get this install to work, but the > usenet archives only show people having the same problem but > no posted solutions. > > thanks, > > -Bp > > > > ===== -- Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org -------> Free Dmitry Sklyarov! (let him go home) <----------- http://www.eff.org http://www.programming-freedom.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 22: 2:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from kitkat.hotpop.com (kitkat.hotpop.com [204.57.55.30]) by hub.freebsd.org (Postfix) with ESMTP id 6C1B337B402 for ; Wed, 23 Jan 2002 22:02:54 -0800 (PST) Received: from hotpop.com (unknown [204.57.55.31]) by kitkat.hotpop.com (Postfix) with SMTP id 1B93130649 for ; Thu, 24 Jan 2002 05:56:20 +0000 (UTC) Received: from AFI (38.eagle.speede.com [64.39.177.38]) by zagnut.hotpop.com (Postfix) with SMTP id 9654E5001E for ; Thu, 24 Jan 2002 04:52:41 +0000 (UTC) Message-ID: <00c701c1a492$f9080f40$0200a8c0@AFI> From: "Dillion Klein" To: Subject: Disk Slicing Warning: "Max one 'fat' allowed...." Date: Wed, 23 Jan 2002 23:52:48 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-HotPOP: ----------------------------------------------- Sent By HotPOP.com FREE Email Get your FREE POP email at www.HotPOP.com ----------------------------------------------- Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Greetings, Can someone please explain this warning I am getting, before I continue: Disk Slicing Warning: Max one 'fat' allowed as child of 'whole' During the creation of slices in the FDISK Partition Editor. Does this mean I cannot create more than on FAT partition, or? Here is my setup: New Install Windows 4.4 (haha, FreeBSD I mean) Release Seagate 40GB (had linux partition, but deleted them in this session of FDISK Partition Editor) Anything else you need? Thanks for your time, DK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 22: 8:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ms29.hinet.net (ms29.hinet.net [168.95.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 8195337B405; Wed, 23 Jan 2002 22:08:32 -0800 (PST) Received: from kuo (61-218-144-173.HINET-IP.hinet.net [61.218.144.173]) by ms29.hinet.net (8.8.8/8.8.8) with SMTP id NAA07169; Thu, 24 Jan 2002 13:49:35 +0800 (CST) Message-ID: <003901c1a49b$c0178ea0$ad90da3d@kuo> From: "=?big5?B?pfi3fq5hpGq2uqmxLi4uLg==?=" To: =?big5?B?t3Gx0qrM?= Subject: =?big5?B?tEiwsq7IuUMgpu2xSjWn6Sitrbr0pFetcanQKTEtNQ==?= Date: Thu, 24 Jan 2002 13:49:38 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0036_01C1A4DD.F759A6E0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0036_01C1A4DD.F759A6E0 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: quoted-printable =A5=BB=B6=BA=A9=B1=A8C=A6~=C1|=BF=EC=A5|=A6=B8=A4=A7 = =A6=ED=B1J=A2=B4=A7=E9 =A6^=F5X=AC=A1=B0=CA = =A7Y=B1N=AEi=B6}=A8=C3=B8g=A5=D1=A6=B9 Emaill=20 =A7i=AA=BE=B1z=B8=D4=B2=D3=A4=BA=AEe =B9L=A9]=BD=D0=A4W http://gohotel.com.tw =BA=F4=AF=B8=C2s=C4=FD Your best choice for accommodation in Taichung. =A4@=A6=B8=BA=A1=A8=AC = =A6=ED=B1J.=A6Y=B3=DC.=AA=B1=BC=D6.=C1=CA=AA=AB = =A4@=A6=B8=BA=A1=A8=AC =A5=F8=B7~=AEa=A4j=B6=BA=A9=B1 =A6h=A6=B8=BAa=C0=F2=A5x=A4=A4=A5=AB=C0u=A8}=AE=C8=C0]=B5=FB=C5=B2=B2=C4=A4= @=A6W =ADY=B1z=A4=A3=B7Q=A6A=A6=AC=A8=EC=A6=B9=AC=A1=B0=CA =BD=D0=A5=D1 gohotel101r@hotmail.com =A7i=AA=BE=A7=DA=AD=CC = =C1=C2=C1=C2 =20 =20 =20 ------=_NextPart_000_0036_01C1A4DD.F759A6E0 Content-Type: text/html; charset="big5" Content-Transfer-Encoding: quoted-printable
=A5=BB=B6=BA=A9=B1=A8C=A6~=C1|=BF=EC=A5|=A6=B8=A4=A7  =    =A6=ED=B1J=A2=B4=A7=E9 =20 =A6^=F5X=AC=A1=B0=CA      = =A7Y=B1N=AEi=B6}=A8=C3=B8g=A5=D1=A6=B9 Emaill=20
=A7i=AA=BE=B1z=B8=D4=B2=D3=A4=BA=AEe
 =B9L=A9]=BD=D0=A4W   http://gohotel.com.tw   =20 =BA=F4=AF=B8=C2s=C4=FD=
Your best choice for = accommodation in=20 Taichung.
=A4@=A6=B8=BA=A1=A8=AC    =20 =A6=ED=B1J.=A6Y=B3=DC.=AA=B1=BC=D6.=C1=CA=AA=AB     = =A4@=A6=B8=BA=A1=A8=AC
 
=A5=F8=B7~=AEa=A4j=B6=BA=A9=B1
=A6h=A6=B8=BAa=C0=F2=A5x=A4=A4=A5=AB=C0u=A8}=AE=C8= =C0]=B5=FB=C5=B2=B2=C4=A4@=A6W
 
=ADY=B1z=A4=A3=B7Q=A6A=A6=AC=A8=EC=A6=B9=AC=A1=B0= =CA
=BD=D0=A5=D1 gohotel101r@hotmail.com =A7i=AA=BE=A7=DA=AD=CC  = =C1=C2=C1=C2
         &nb= sp;           &nbs= p;            = ;            =            =20
         &nb= sp;          &nb= sp;           &nbs= p;            = ;   
         &nb= sp;           &nbs= p;            = ;   
 
 
------=_NextPart_000_0036_01C1A4DD.F759A6E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 22: 8:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ms29.hinet.net (ms29.hinet.net [168.95.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 8195337B405; Wed, 23 Jan 2002 22:08:32 -0800 (PST) Received: from kuo (61-218-144-173.HINET-IP.hinet.net [61.218.144.173]) by ms29.hinet.net (8.8.8/8.8.8) with SMTP id NAA07169; Thu, 24 Jan 2002 13:49:35 +0800 (CST) Message-ID: <003901c1a49b$c0178ea0$ad90da3d@kuo> From: "=?big5?B?pfi3fq5hpGq2uqmxLi4uLg==?=" To: =?big5?B?t3Gx0qrM?= Subject: =?big5?B?tEiwsq7IuUMgpu2xSjWn6Sitrbr0pFetcanQKTEtNQ==?= Date: Thu, 24 Jan 2002 13:49:38 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0036_01C1A4DD.F759A6E0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0036_01C1A4DD.F759A6E0 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: quoted-printable =A5=BB=B6=BA=A9=B1=A8C=A6~=C1|=BF=EC=A5|=A6=B8=A4=A7 = =A6=ED=B1J=A2=B4=A7=E9 =A6^=F5X=AC=A1=B0=CA = =A7Y=B1N=AEi=B6}=A8=C3=B8g=A5=D1=A6=B9 Emaill=20 =A7i=AA=BE=B1z=B8=D4=B2=D3=A4=BA=AEe =B9L=A9]=BD=D0=A4W http://gohotel.com.tw =BA=F4=AF=B8=C2s=C4=FD Your best choice for accommodation in Taichung. =A4@=A6=B8=BA=A1=A8=AC = =A6=ED=B1J.=A6Y=B3=DC.=AA=B1=BC=D6.=C1=CA=AA=AB = =A4@=A6=B8=BA=A1=A8=AC =A5=F8=B7~=AEa=A4j=B6=BA=A9=B1 =A6h=A6=B8=BAa=C0=F2=A5x=A4=A4=A5=AB=C0u=A8}=AE=C8=C0]=B5=FB=C5=B2=B2=C4=A4= @=A6W =ADY=B1z=A4=A3=B7Q=A6A=A6=AC=A8=EC=A6=B9=AC=A1=B0=CA =BD=D0=A5=D1 gohotel101r@hotmail.com =A7i=AA=BE=A7=DA=AD=CC = =C1=C2=C1=C2 =20 =20 =20 ------=_NextPart_000_0036_01C1A4DD.F759A6E0 Content-Type: text/html; charset="big5" Content-Transfer-Encoding: quoted-printable
=A5=BB=B6=BA=A9=B1=A8C=A6~=C1|=BF=EC=A5|=A6=B8=A4=A7  =    =A6=ED=B1J=A2=B4=A7=E9 =20 =A6^=F5X=AC=A1=B0=CA      = =A7Y=B1N=AEi=B6}=A8=C3=B8g=A5=D1=A6=B9 Emaill=20
=A7i=AA=BE=B1z=B8=D4=B2=D3=A4=BA=AEe
 =B9L=A9]=BD=D0=A4W   http://gohotel.com.tw   =20 =BA=F4=AF=B8=C2s=C4=FD=
Your best choice for = accommodation in=20 Taichung.
=A4@=A6=B8=BA=A1=A8=AC    =20 =A6=ED=B1J.=A6Y=B3=DC.=AA=B1=BC=D6.=C1=CA=AA=AB     = =A4@=A6=B8=BA=A1=A8=AC
 
=A5=F8=B7~=AEa=A4j=B6=BA=A9=B1
=A6h=A6=B8=BAa=C0=F2=A5x=A4=A4=A5=AB=C0u=A8}=AE=C8= =C0]=B5=FB=C5=B2=B2=C4=A4@=A6W
 
=ADY=B1z=A4=A3=B7Q=A6A=A6=AC=A8=EC=A6=B9=AC=A1=B0= =CA
=BD=D0=A5=D1 gohotel101r@hotmail.com =A7i=AA=BE=A7=DA=AD=CC  = =C1=C2=C1=C2
         &nb= sp;           &nbs= p;            = ;            =            =20
         &nb= sp;          &nb= sp;           &nbs= p;            = ;   
         &nb= sp;           &nbs= p;            = ;   
 
 
------=_NextPart_000_0036_01C1A4DD.F759A6E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 22:51:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 9595F37B402 for ; Wed, 23 Jan 2002 22:51:09 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 4F333BC7E; Wed, 23 Jan 2002 22:51:09 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id WAA30965; Wed, 23 Jan 2002 22:51:08 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g0O6rs101641; Wed, 23 Jan 2002 22:53:54 -0800 (PST) (envelope-from swear@blarg.net) To: Cliff Sarginson Cc: FreeBSD List Subject: Re: Reversing Linux and FreeBSD running on same system without mutual self-destruction References: <20020123051538.GA3234@raggedclown.net> <20020124030238.GA1042@raggedclown.net> From: swear@blarg.net (Gary W. Swearingen) Date: 23 Jan 2002 22:53:53 -0800 In-Reply-To: <20020124030238.GA1042@raggedclown.net> Message-ID: <00d7009r3y.700@localhost.localdomain> Lines: 33 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Cliff Sarginson writes: > Yes, I was not really wanting to burden anyone with the mathematics of > it :). Thanks, but it was hard to see what your problem was well enough to suggest a solution. > Having done that I guess I can boot the existing BSD system single user > and tar over the existing AT BSD file systems to the SCSI one. I can > adjust Lilo to reflect the new boot possibilities, I can adjust fstab > for the SCSI BSD..with me so far ? And adjust /etc/fstab on the SCSI, of course. > Now this is where I reach the edge of the desert. I need then a kernel > on the SCSI BSD system that will boot it. And this is where I need > some expert advice, will the installation of a generic kernel from the > existing AT system onto the root of the new SCSI FreeBSD system work ? I don't know SCSI, but I suppose that GENERIC should do that. If it doesn't work you could build a custom kernel on the ATA and move just the new /kernel and /modules over. > What are the gotcha's in this scenario ? Apart from the possible > devastation of a typing mistake (I just found quite a novel one > in the existing installation, which strangely has never had a bad > effect..but that is a mere detail :) The only thing I know is the limitations of tar. The only one I know of has to do with device minor numbers on /dev/*sa*.ctl which I think you can do without until you get a chance to run /dev/MAKEDEV. See sa(4). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 23: 3:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 5FA2037B400 for ; Wed, 23 Jan 2002 23:03:47 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id F101DBD21; Wed, 23 Jan 2002 23:03:46 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id XAA00903; Wed, 23 Jan 2002 23:03:46 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g0O76R501648; Wed, 23 Jan 2002 23:06:27 -0800 (PST) (envelope-from swear@blarg.net) To: "Douglas R. Spindler" Cc: Subject: Re: A question from a convert from Windows to FreeBSD References: <002601c1a47d$a0248620$6600640a@attbi.com> From: swear@blarg.net (Gary W. Swearingen) Date: 23 Jan 2002 23:06:27 -0800 In-Reply-To: <002601c1a47d$a0248620$6600640a@attbi.com> Message-ID: Lines: 14 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Douglas R. Spindler" writes: > I visited two Fry's stores today, couldn't find it on the shelf, and asked 5 different people.  They told me after > looking in their computers, "Product has been discontinued".  (I took this to mean they have discontinued the product.) Probably Wind River discontinued it and the new distributor hasn't gotten it continued again yet. Rumor says they will. > I do have one question, is there a Users Group in the SF Bay Area/East Bay? http://www.freebsd.org/support.html#user shows http://www.bafug.org P.S. It would be appreciated here if you'd limit your lines to about 70 characters, excepting quotes and source code. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 23: 5:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from creme-brulee.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 36DE737B404 for ; Wed, 23 Jan 2002 23:05:03 -0800 (PST) Received: from shumai.marcuscom.com (marcus@shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.11.6/8.11.6) with ESMTP id g0O73pZ79723; Thu, 24 Jan 2002 02:03:51 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: gnomecore problem... From: Joe Clarke To: Bernie Cc: FreeBSD User Questions List In-Reply-To: <20020123230009.E188-100000@BLAST> References: <20020123230009.E188-100000@BLAST> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/1.0.1 Date: 24 Jan 2002 02:05:00 -0500 Message-Id: <1011855901.477.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 2002-01-23 at 16:18, Bernie wrote: > > > cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I/usr/X11R6/include/gnome-1.0 > -I/usr/X11R6/include -DNEED_GNOMESUPPORT_H > -I/usr/X11R6/lib/gnome-libs/include -I/usr/X11R6/include/gtk12 > -I/usr/local/include/glib12 -I/usr/local/include > -I/usr/local/include/freetype2 -I/usr/local/include/gnome-xml > -I/usr/X11R6/include/libglade-1.0 -I/usr/X11R6/include/gdk-pixbuf-1.0 > -DGAL_GLADEDIR=\"/usr/X11R6/share/gnome/gal/0.19/glade\" > -DGAL_IMAGESDIR=\"/usr/X11R6/share/gnome/pixmaps/gal/categories\" > -I/usr/local/include -I/usr/X11R6/include/gtk12 > -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -O > -pipe -march=pentium -I/usr/X11R6/include -Wall -Wunused -c e-gui-utils.c > -fPIC -DPIC -o .libs/e-gui-utils.lo > e-gui-utils.c:33: gdk-pixbuf/gnome-canvas-pixbuf.h: No such file or > directory Looks like you may need o reinstall/upgrade gdk-pixbuf. Make sure it is in sync with the gnomecanvas port as well or you'll get occasional core dumps. gdk-pixbuf doesn't depend on ORBit, so it wasn't handled by the recursive upgrade. Another option that was mentioned on this list is to do a portupgrade -R -f gnome This has the tendency to rebuild X if you're not careful. Joe > gmake[3]: *** [e-gui-utils.lo] Error 1 > gmake[3]: Leaving directory > `/home/ports/x11-toolkits/gal/work/gal-0.19/gal/widgets' > gmake[2]: *** [all-recursive] Error 1 > gmake[2]: Leaving directory > `/home/ports/x11-toolkits/gal/work/gal-0.19/gal' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory `/home/ports/x11-toolkits/gal/work/gal-0.19' > gmake: *** [all-recursive-am] Error 2 > *** Error code 2 > > Stop in /home/ports/x11-toolkits/gal. > *** Error code 1 > > Stop in /home/ports/x11-toolkits/gal. > *** Error code 1 > > Stop in /home/ports/x11-toolkits/gal. > *** Error code 1 > > Stop in /home/ports/x11-toolkits/gal. > *** Error code 1 > > Stop in /home/ports/www/gtkhtml. > *** Error code 1 > > Stop in /home/ports/www/gtkhtml. > *** Error code 1 > > Stop in /home/ports/www/gtkhtml. > *** Error code 1 > > Stop in /home/ports/www/gtkhtml. > *** Error code 1 > > Stop in /home/ports/www/gtkhtml. > *** Error code 1 > > Stop in /home/ports/www/gtkhtml. > *** Error code 1 > > Stop in /home/ports/www/gtkhtml. > *** Error code 1 > > Stop in /home/ports/x11/gnomecore. > *** Error code 1 > > Stop in /home/ports/x11/gnomecore. > *** Error code 1 > > Stop in /home/ports/x11/gnomecore. > *** Error code 1 > > Stop in /home/ports/x11/gnomecore. > *** Error code 1 > > Stop in /home/ports/x11/gnomecore. > *** Error code 1 > > Stop in /home/ports/x11/gnomecore. > ** Command failed: make clean build > ** Fix the problem and try again. > ---> Reinstalling 'oaf-0.6.7' (devel/oaf) > ---> Building '/usr/ports/devel/oaf' > ===> Cleaning for esound-0.2.23 > ===> Cleaning for libaudiofile-0.2.2 > ===> Cleaning for ORBit-0.5.13_1 > ===> Cleaning for gettext-0.10.35_1 > ... > ... > ... > > > and others that say (ignored)... > > can you see where the problem is? it must be something used > by many ports cause it breaks too many ports. > > so far, i thought that the many ports dont compile cause i got > 4.5 prerelease instead of 4.4. (actually i did this accidentaly > cause i only have done buildworld once). > > but now i get to realise that it may be on single port that causes > all the trouble. still not sure though... > > i got qt-architect and glide (the two best drag n' drop gui apps) > and also xmms and many others just fail to compile. > > i did cvsup the ports many times, did pkgdb -F, also fixed the > ports indexes after each cvsup, but still get these problems. > > as you probably guessed i'm new to FreeBSD, so please give me a > hand with this if you can... i've spent long time on it and > couldnt figure it out. > > btw, can i send the output of 'script' attached? > > > thanks a lot for your help and sorry for long post. > > Regards, > > --Bernie > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 23:22:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 7207A37B400 for ; Wed, 23 Jan 2002 23:22:35 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 11271BCE2; Wed, 23 Jan 2002 23:22:35 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id XAA03952; Wed, 23 Jan 2002 23:22:34 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g0O7PMI01652; Wed, 23 Jan 2002 23:25:22 -0800 (PST) (envelope-from swear@blarg.net) To: Jud Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Cooling Athlon / Linux App References: From: swear@blarg.net (Gary W. Swearingen) Date: 23 Jan 2002 23:25:21 -0800 In-Reply-To: Message-ID: Lines: 21 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jud writes: > I think if you read the VCool documentation, you'll find that the theory, > at least, is that the Athlon is unable to reach idle mode unless its > system bus is disconnected, even when it would otherwise make > eminent sense for the CPU to do so because the system isn't busy. > VCool purports to set the "Bus Disconnect Enable" bit and so allow the > CPU to go into idle mode at appropriate times. That quoted phrase doesn't appear in google *freebsd* archive except in this thread. If you think that's important and different from the CPU_SUSP_HLT mentioned in another msg, please ask about that on -stable or -current or -hackers or -hardware (?); maybe they've missed something. I doubt it, but you seem to have physical evidence of it. (For the thermal paste, get a piece of hard plastic with a smooth straight edge just a bit wider than the chip and spread it real even but real thin. I've put it only on the chip the few times I've done it, but I'm thinking that it would be better to spread it only on the heat sink both because it is probably rougher and easier to clean the over-spread. I'm guessing that putting it on both surfaces is more apt to leave bubbles.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 23:35:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web13602.mail.yahoo.com (web13602.mail.yahoo.com [216.136.175.113]) by hub.freebsd.org (Postfix) with SMTP id 345BD37B402 for ; Wed, 23 Jan 2002 23:35:19 -0800 (PST) Message-ID: <20020124073516.39582.qmail@web13602.mail.yahoo.com> Received: from [155.246.1.108] by web13602.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 23:35:16 PST Date: Wed, 23 Jan 2002 23:35:16 -0800 (PST) From: Roberto Armenteros Subject: How to run Window Maker and Afterstep with startX To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I run echo "usr/local/bin/startkde" > ~/.xinitrc making kde the default environment when running startx. But I also have WindowMaker and AfterStep installed, but I dont know how to get into those. Would someone tell me how to do this. Also, how do I set up the system to start X on boot "so I can choose the destop environment I want to use with a graphical interface" I would appreciate any help... Roberto... __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 23:39: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from soda.csua.berkeley.edu (soda.CSUA.Berkeley.EDU [128.32.247.226]) by hub.freebsd.org (Postfix) with ESMTP id 7CD0E37B404 for ; Wed, 23 Jan 2002 23:39:02 -0800 (PST) Received: from localhost (mjm@localhost) by soda.csua.berkeley.edu (8.11.6/8.11.4) with ESMTP id g0O7d2l10842 for ; Wed, 23 Jan 2002 23:39:02 -0800 (PST) (envelope-from joup@bigfoot.com) X-Authentication-Warning: soda.csua.berkeley.edu: mjm owned process doing -bs Date: Wed, 23 Jan 2002 23:39:02 -0800 (PST) From: Mark Miller X-X-Sender: mjm@soda.csua.berkeley.edu To: freebsd-questions@freebsd.org Subject: java in 4.5? Message-ID: <20020123233630.L10541-100000@soda.csua.berkeley.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I saw the newsflash about having a licensed version of a JDK/JRE in version 4.5. I (unwittingly, don't ask) installed 4.5-RC today, but I don't see anything relating to java. Does anybody know how this is going to work? Which version will it be? 1.1.8, or 1.3.1? Sorry if I'm missing something obvious, but I've really scoured the web for news on this matter and I've come up quite dry. Thanks, Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 23:42:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.borahome.net (smtp2.borahome.com [203.248.241.22]) by hub.freebsd.org (Postfix) with ESMTP id 1A44A37B417 for ; Wed, 23 Jan 2002 23:42:09 -0800 (PST) Received: from borahome ([211.53.228.104]) by smtp2.borahome.net (8.10.0.Beta6/8.10.0.Beta6) with SMTP id g0O7kqO16809 for ; Thu, 24 Jan 2002 16:46:52 +0900 (KST) Message-Id: <200201240746.g0O7kqO16809@smtp2.borahome.net> From: =?ks_c_5601-1987?B?TUVEUEFQQQ==?= To: questions@FreeBSD.org Subject: =?ks_c_5601-1987?B?W8irurhdICBEZW50aXN0cnkgZGVtb25zdHJhdGlvbnMgYW5kIHNlbWluYXJzIGludGVybmV0IHNlcnZpY2U=?= Date: Thu, 24 Jan 2002 16:42:33 +0900 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0167_01C0F42A.93A33C00" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0167_01C0F42A.93A33C00 Content-Type: text/plain; charset="ks_c_5601-1987" Content-Transfer-Encoding: base64 IA0KTmV3IFllYXIncyBFdmVudCEhDQpXaW4gZnJlZSBhY2Nlc3MgdG8gdGhlIG1vc3QgdmFs dWFibGUgcHJvZ3JhbXMgZm9yIHRocmVlIG1vbnRocyEhDQpUaGUgd29ybGQncyBtb3N0IGRp c3Rpbmd1aXNoZWQgZGVudGlzdHJ5IHNjaG9sYXJzIGFyZSBhbGwgaGVyZSEhDQoNCldlIHBy b3ZpZGUgeW91IHdpdGggbW92aW5nIGltYWdlcyBvZiBkZW50aXN0cnkgZGVtb25zdHJhdGlv bnMgYW5kIHNlbWluYXJzLiANCg0KDQogDQpIZWxsbyENCiANCk1lZHBhcGEgaXMgYSB3ZWJz aXRlIHByb3ZpZGluZyBtb3ZpbmcgaW1hZ2VzIG9mIGRlbnRpc3RyeSBlZHVjYXRpb24gc2Vy dmljZSBhbmQgcmVsYXRlZCB2aWRlb3MsIENEcywgYW5kIERWRHMgc3VwcGxpZWQgYnkgbW9y ZSB0aGFuIDMwIGNvbXBhbmllcyBmcm9tIDggY291bnRyaWVzLiANCllvdSBjYW4gZmluZCBp biBNZWRwYXBhIHRoZSBzdGF0ZS1vZi10aGUtYXJ0IHRlY2hub2xvZ2llcyBpbiBEZW50aXN0 cnksIHVwLWRhdGVkIGRlbW9uc3RyYXRpb25zLCBhbmQgc2VtaW5hcnMgYW5kIHN5bXBvc2l1 bXMgYnkgd29ybGQncyBiZXN0IHJlbm93bmVkIGRlbnRpc3RyeSBzY2hvbGFycyBhdCBhIHBy aWNlIHVwIHRvIG9uZSB0ZW50aCBvZiB0aGUgcHJvZHVjdHMnIG9yaWdpbmFsIHByaWNlcy4g DQpZb3UgY2FuIGFsc28gcHVyY2hhc2UgdGhlIHNhbWUgcHJvZ3JhbXMgaW4gdGhlIG1hbGwu DQogDQpDbGljayBub3chISB3d3cubWVkcGFwYS5jb20hDQoNCkl0IGlzIHdvcnRoIHlvdXIg cHJlY2lvdXMgdGltZS4NCkNsaWNrIG5vdyBhbmQgdGFrZSBhIGdsYW5jZSBhdCBvdXIgbW9i aWxlIGltYWdlcyBmb3IgZnJlZSEhDQogDQogT3VyIHNwb25zb3JzIGFuZCBlbmRvcnNpbmcg aW5zdGl0dXRlcyBhcmUgYXMgIGZvbGxvd3M7IA0KICBBbWVyaWNhbiBEZW50YWwgQXNzb2Np YXRpb24gIEFjYWRlbXkgb2YgR2VuZXJhbCBEZW50aXN0cnkgIEYmZWFjdXRlO2QmZWFjdXRl O3JhdGlvbiBEZW50YWlyZSBJbnRlcm5hdGlvbmFsZSAgUGllcnJlIEZhdWNoYXJkIEFjYWRl bXkgb2YgUGFyaXMgIEFtZXJpY2FuIEFjYWRlbXkgb2YgRXN0aGV0aWMgRGVudGlzdHJ5ICBB Y2FkZW15IG9mIE9zc2VvaW50ZWdyYXRpb24gIEludGVybmF0aW9uYWwgQWNhZGVteSBvZiBP cmFsIE1lZGljaW5lIGFuZCBUb3hpY29sb2d5ICBGdW5kYWNpJm9hY3V0ZTtuIFN0ZXJuICBU aGUgTWFzdGVycyBTZXJpZXMNCkJlc3QgUmVnYXJkcw0Kd3d3Lm1lZHBhcGEuY29tDQo= ------=_NextPart_000_0167_01C0F42A.93A33C00 Content-Type: text/html; charset="ks_c_5601-1987" Content-Transfer-Encoding: base64 PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9u YWwvL0VOIj4NCjxURCANCnN0eWxlPSJQQURESU5HLVJJR0hUOiAxMHB4OyBQQURESU5HLUxF RlQ6IDEwcHg7IFBBRERJTkctQk9UVE9NOiAxMHB4OyBQQURESU5HLVRPUDogMTBweCIgDQpj b2xTcGFuPSIyIiBiZ0NvbG9yPSJ3aGl0ZSIgd2lkdGg9IjQ3MCI+PEhUTUw+PEhFQUQ+DQo8 TUVUQSBodHRwLWVxdWl2PUNvbnRlbnQtVHlwZSBjb250ZW50PSJ0ZXh0L2h0bWw7IGNoYXJz ZXQ9a3NfY181NjAxLTE5ODciPg0KPE1FVEEgY29udGVudD0iTVNIVE1MIDYuMDAuMjYwMC4w IiBuYW1lPUdFTkVSQVRPUj48L0hFQUQ+DQo8Qk9EWT48U1BBTiBzdHlsZT0iRk9OVC1TSVpF OiAxMHB0Ij48Rk9OVCBmYWNlPUFyaWFsIGNvbG9yPSM1MTUxNTE+DQo8RElWIGFsaWduPWNl bnRlcj48U1RST05HPjxGT05UIGNvbG9yPSMwMDgwODA+PC9GT05UPjwvU1RST05HPiZuYnNw OzwvRElWPg0KPERJViBhbGlnbj1jZW50ZXI+PFNUUk9ORz48Rk9OVCBjb2xvcj0jMDA4MDgw Pk5ldyBZZWFyJ3MgDQpFdmVudCEhPC9GT05UPjwvU1RST05HPjwvRElWPg0KPERJViBhbGln bj1jZW50ZXI+PFNUUk9ORz48Rk9OVCBjb2xvcj0jMDA4MDgwPldpbiBmcmVlIGFjY2VzcyB0 byB0aGUgbW9zdCANCnZhbHVhYmxlIHByb2dyYW1zIGZvciB0aHJlZSBtb250aHMhITwvRElW PjwvRk9OVD48L1NUUk9ORz4NCjxESVYgYWxpZ249Y2VudGVyPjxTVFJPTkc+PEZPTlQgY29s b3I9IzgwMDAwMCBzaXplPTQ+VGhlIHdvcmxkJ3MgbW9zdCANCmRpc3Rpbmd1aXNoZWQgZGVu dGlzdHJ5IHNjaG9sYXJzIGFyZSBhbGwgaGVyZSEhPEJSPjwvRk9OVD48L1NUUk9ORz48L0RJ Vj4NCjxESVYgYWxpZ249Y2VudGVyPjxTVFJPTkc+PEZPTlQgY29sb3I9IzAwMDA4MD5XZSBw cm92aWRlIHlvdSB3aXRoIG1vdmluZyBpbWFnZXMgDQpvZiBkZW50aXN0cnkgZGVtb25zdHJh dGlvbnMgYW5kIHNlbWluYXJzLiZuYnNwOzxCUj48L0ZPTlQ+PC9TVFJPTkc+PC9ESVY+DQo8 RElWIGFsaWduPWNlbnRlcj48U1RST05HPjxGT05UIGNvbG9yPSMwMDgwODA+PC9GT05UPjxG T05UIA0KY29sb3I9IzAwMDA4MD48L0ZPTlQ+PEJSPiZuYnNwOzwvRElWPjwvU1RST05HPjxT VFJPTkc+PC9TVFJPTkc+DQo8RElWPkhlbGxvITwvRElWPg0KPERJVj4mbmJzcDs8L0RJVj4N CjxESVY+TWVkcGFwYSBpcyBhIHdlYnNpdGUgcHJvdmlkaW5nIG1vdmluZyBpbWFnZXMgb2Yg ZGVudGlzdHJ5IGVkdWNhdGlvbiBzZXJ2aWNlIA0KYW5kIHJlbGF0ZWQgdmlkZW9zLCBDRHMs IGFuZCBEVkRzIHN1cHBsaWVkIGJ5IG1vcmUgdGhhbiAzMCBjb21wYW5pZXMgZnJvbSA4IA0K Y291bnRyaWVzLiA8QlI+WW91IGNhbiBmaW5kIGluIE1lZHBhcGEgdGhlIHN0YXRlLW9mLXRo ZS1hcnQgdGVjaG5vbG9naWVzIGluIA0KRGVudGlzdHJ5LCB1cC1kYXRlZCBkZW1vbnN0cmF0 aW9ucywgYW5kIHNlbWluYXJzIGFuZCBzeW1wb3NpdW1zIGJ5IHdvcmxkJ3MgYmVzdCANCnJl bm93bmVkIGRlbnRpc3RyeSBzY2hvbGFycyBhdCBhIHByaWNlIHVwIHRvIG9uZSB0ZW50aCBv ZiB0aGUgcHJvZHVjdHMnIG9yaWdpbmFsIA0KcHJpY2VzLiA8QlI+WW91IGNhbiBhbHNvIHB1 cmNoYXNlIHRoZSBzYW1lIHByb2dyYW1zIGluIHRoZSBtYWxsLjwvRElWPg0KPERJVj4mbmJz cDs8L0RJVj4NCjxESVY+Q2xpY2sgbm93ISEgPFU+PEZPTlQgY29sb3I9IzgwMDA4MD48QSBo cmVmPSJodHRwOi8vd3d3Lm1lZHBhcGEuY29tIj48Rk9OVCANCnNpemU9Mz53d3cubWVkcGFw YS5jb208L0ZPTlQ+PC9BPjxGT05UIHNpemU9Mz4hPC9GT05UPjwvRk9OVD48L1U+PEJSPjxC Uj5JdCBpcyANCndvcnRoIHlvdXIgcHJlY2lvdXMgdGltZS48QlI+Q2xpY2sgbm93IGFuZCB0 YWtlIGEgZ2xhbmNlIGF0IG91ciA8QSANCmhyZWY9Imh0dHA6Ly93d3cubWVkcGFwYS5jb20v dm9kL3RpdGxlLmFzcD9jaWQ9MTAzMCIgdGFyZ2V0PV9ibGFuaz5tb2JpbGUgaW1hZ2VzIA0K Zm9yIGZyZWUhITwvQT48L0RJVj4NCjxESVY+Jm5ic3A7PC9ESVY+DQo8VUwgZGlyPWx0ciBz dHlsZT0iTUFSR0lOLVJJR0hUOiAwcHgiPg0KICA8TEk+PFNUUk9ORz48Rk9OVCBjb2xvcj0j MDAwMDgwPk91ciBzcG9uc29ycyBhbmQgZW5kb3JzaW5nIGluc3RpdHV0ZXMgYXJlIGFzIA0K ICBmb2xsb3dzOyZuYnNwOzxCUj48L0ZPTlQ+PC9TVFJPTkc+DQogIDxVTD4NCiAgICA8TEk+ QW1lcmljYW4gRGVudGFsIEFzc29jaWF0aW9uIA0KICAgIDxMST5BY2FkZW15IG9mIEdlbmVy YWwgRGVudGlzdHJ5IA0KICAgIDxMST5GJmVhY3V0ZTtkJmVhY3V0ZTtyYXRpb24gRGVudGFp cmUgSW50ZXJuYXRpb25hbGUgDQogICAgPExJPlBpZXJyZSBGYXVjaGFyZCBBY2FkZW15IG9m IFBhcmlzIA0KICAgIDxMST5BbWVyaWNhbiBBY2FkZW15IG9mIEVzdGhldGljIERlbnRpc3Ry eSANCiAgICA8TEk+QWNhZGVteSBvZiBPc3Nlb2ludGVncmF0aW9uIA0KICAgIDxMST5JbnRl cm5hdGlvbmFsIEFjYWRlbXkgb2YgT3JhbCBNZWRpY2luZSBhbmQgVG94aWNvbG9neSANCiAg ICA8TEk+RnVuZGFjaSZvYWN1dGU7biBTdGVybiANCiAgICA8TEk+VGhlIE1hc3RlcnMgU2Vy aWVzPC9MST48L1VMPjwvTEk+PC9VTD4NCjxESVYgZGlyPWx0cj48Rk9OVCBmYWNlPUFyaWFs PjwvRk9OVD48QlI+QmVzdCBSZWdhcmRzPEJSPjxBIA0KaHJlZj0iaHR0cDovL3d3dy5tZWRw YXBhLmNvbSI+PEZPTlQgDQpzaXplPTM+d3d3Lm1lZHBhcGEuY29tPC9GT05UPjwvQT48L0ZP TlQ+PC9TUEFOPjwvRElWPjwvVEQ+PC9CT0RZPjwvSFRNTD4NCg== ------=_NextPart_000_0167_01C0F42A.93A33C00-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 23:42:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from encephalon.de (p3E9E198D.dip0.t-ipconnect.de [62.158.25.141]) by hub.freebsd.org (Postfix) with ESMTP id 36F2137B405 for ; Wed, 23 Jan 2002 23:42:56 -0800 (PST) Received: (from bsd@localhost) by encephalon.de (8.11.6/8.11.6) id g0O7dr001007; Thu, 24 Jan 2002 08:39:53 +0100 (CET) (envelope-from bsd) Date: Thu, 24 Jan 2002 08:39:53 +0100 From: Roger Kaputtnik To: Mark Miller Cc: freebsd-questions@FreeBSD.ORG Subject: Re: java in 4.5? Message-ID: <20020124083952.A990@encephalon.de> References: <20020123233630.L10541-100000@soda.csua.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020123233630.L10541-100000@soda.csua.berkeley.edu>; from joup@bigfoot.com on Wed, Jan 23, 2002 at 11:39:02PM -0800 X-Operating-System: FreeBSD encephalon.de 4.5-RC FreeBSD 4.5-RC Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi. > don't see anything relating to java. Does anybody know how this is going > to work? Which version will it be? 1.1.8, or 1.3.1? Sorry if I'm Java is in the ports. You have to install it. /usr/posrts/java --> take a look there for your java stuff Maybe you have to update your ports (cvsup is your friend). hth Axel -- encephalon.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Jan 23 23:56:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web13601.mail.yahoo.com (web13601.mail.yahoo.com [216.136.175.112]) by hub.freebsd.org (Postfix) with SMTP id 8504D37B404 for ; Wed, 23 Jan 2002 23:56:15 -0800 (PST) Message-ID: <20020124075614.67609.qmail@web13601.mail.yahoo.com> Received: from [155.246.1.108] by web13601.mail.yahoo.com via HTTP; Wed, 23 Jan 2002 23:56:14 PST Date: Wed, 23 Jan 2002 23:56:14 -0800 (PST) From: Roberto Armenteros Subject: Installing PAO "the utility for PCMCI detection To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG FreeBSD 4.4 did not detect my network pc card "3com megahertz" from my compaq armada 7400 laptop. Everything else including X installation went great. I heard about PAO and the solutions it has. First, is this the most recomendable way to make it work. Second, does PAO work on FreeBSD 4.4. Third, what is the easiest way to configure it with PAO once I have a running system? I read the PAO manual and followed the instructions without success. Thanks a lot... Roberto __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 0:18: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fem.uniag.sk (fem.uniag.sk [193.87.97.7]) by hub.freebsd.org (Postfix) with ESMTP id 70A9F37B400 for ; Thu, 24 Jan 2002 00:17:59 -0800 (PST) Received: from localhost (lk01@localhost) by fem.uniag.sk (8.10.2+Sun/8.10.2) with ESMTP id g0O8Gkc10704; Thu, 24 Jan 2002 09:16:46 +0100 (MET) Date: Thu, 24 Jan 2002 09:16:46 +0100 (MET) From: Ladislav Kostal To: Roberto Armenteros Cc: freebsd-questions@FreeBSD.ORG Subject: Re: How to run Window Maker and Afterstep with startX In-Reply-To: <20020124073516.39582.qmail@web13602.mail.yahoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 23 Jan 2002, Roberto Armenteros wrote: > I run echo "usr/local/bin/startkde" > ~/.xinitrc > making kde the default environment when running > startx. But I also have WindowMaker and AfterStep > installed, but I dont know how to get into those. > Would someone tell me how to do this. Also, how do I > set up the system to start X on boot "so I can choose > the destop environment I want to use with a graphical > interface" For windowmaker, before first run type wmaker.inst, which creates directory GNUstep in your home and setup .xinitrc. Ladislav Kostal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 0:23: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from newmx.estpak.ee (ld1.estpak.ee [194.126.101.98]) by hub.freebsd.org (Postfix) with ESMTP id 14F9937B402 for ; Thu, 24 Jan 2002 00:23:07 -0800 (PST) Received: from myhakas.estpak.ee (myhakas.estpak.ee [194.126.115.54]) by newmx.estpak.ee (Postfix) with ESMTP id 71D2D960DB; Thu, 24 Jan 2002 10:22:31 +0200 (EET) Received: (from vallo@localhost) by myhakas.estpak.ee (8.11.6/8.11.6) id g0O8N4w74883; Thu, 24 Jan 2002 10:23:04 +0200 (EET) (envelope-from vallo) Date: Thu, 24 Jan 2002 10:23:04 +0200 From: Vallo Kallaste To: Steve Price Cc: questions@freebsd.org Subject: Re: 160GB Maxtor drives Message-ID: <20020124082304.GA74833@myhakas.estpak.ee> Reply-To: kalts@estpak.ee References: <20020122112309.A816@bsd.havk.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20020122112309.A816@bsd.havk.org> User-Agent: Mutt/1.3.24i-ja.1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 11:23:09AM -0600, Steve Price wrote: > Does anyone know of any gotchas with using an IDE drive that is > 160GB in size on FreeBSD? A Linux user here in town is asking > about using one of these drives and I'd love more than anything > to tell him that "you might be able to do it in Linux if you can > find someone with some experimental patches but FreeBSD has > supported this in the last N stable releases. I'd be glad to > burn a copy of the discs and help you get the box setup". The problems will arise probably from ATA controller support, not from the 48-bit addressing support, which is considered stable. As Søren pointed out some days ago, the Promise ATA-133 controller support is mostly untested. Don't know about any others. -- Vallo Kallaste kalts@estpak.ee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 0:34:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tierzero.apana.org.au (sa.apana.org.au [203.14.158.1]) by hub.freebsd.org (Postfix) with ESMTP id 990DF37B402 for ; Thu, 24 Jan 2002 00:34:14 -0800 (PST) Received: from BAPhD.gihon.org.au (dialup-8.pasa.apana.org.au [203.14.158.137]) by tierzero.apana.org.au (8.11.1/8.11.1) with SMTP id g0O8XPw66052 for ; Thu, 24 Jan 2002 19:03:26 +1030 (CST) (envelope-from bastill@sa.apana.org.au) Content-Type: text/plain; charset="iso-8859-1" From: Brian Astill Reply-To: bastill@sa.apana.org.au To: Subject: Re: A question from a convert from Windows to FreeBSD Date: Thu, 24 Jan 2002 19:03:23 +1030 X-Mailer: KMail [version 1.2] References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> In-Reply-To: <0ffe01c1a371$661d1b20$6600640a@attbi.com> MIME-Version: 1.0 Message-Id: <02012419032304.01209@BAPhD.gihon.org.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wednesday 23 January 2002 04:49, Douglas R. Spindler wrote: > I've been in the industry for 10 years now and have seen the light of > FreeBSD. I know a few Unix commands and know DOS very well. > > Here's my question, why do you guys make converting so difficult? An interesting question, and I note that of the replies I have seen, only Bob Geisen seems to understand the issue. You would think that installing from CD (the most obvious way, IMHO), that the install procedure which can, and does, find your network card and set it up correctly does NOT find your modem. (It doesn't find your sound card either, but I guess you can do without sound) FreeBSD with its ports collection virtually depends on your Internet access, but leaves the modem setup to you. Go figure. The problem seems to be that a high proportion of people installing FreeBSD are Un*x literate, and are not operating on the same wavelength as the converter from WinDOS. Such people access the Internet through a server, not from their own modem, I suppose. Hence no automatic support for modems. I had trouble using X as a user. The solutions offered - like "install Xwrapper" (which already existed on my system) - were unusable by me. A knowledgeable friend gave me the commands to change the mode (whatever that means) of the Xserver. That worked just fine on my single-user system. He understood whereas freebsd-questions did not. Not a criticism, just a comment. Basically, help needs to be offered at the level of the enquirer, not at the level of the answerer. That seems to be the issue almost wherever one goes to find out about FreeBSD. -- Regards, Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 1: 1:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C53037B41F for ; Thu, 24 Jan 2002 01:00:54 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16TfkY-000BUF-00 for freebsd-questions@FreeBSD.ORG; Thu, 24 Jan 2002 09:00:50 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id E9C69118B; Thu, 24 Jan 2002 10:00:49 +0100 (CET) Date: Thu, 24 Jan 2002 10:00:49 +0100 From: Cliff Sarginson To: freebsd-questions@FreeBSD.ORG Subject: Re: How to run Window Maker and Afterstep with startX Message-ID: <20020124090049.GA2650@raggedclown.net> References: <20020124073516.39582.qmail@web13602.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 09:16:46AM +0100, Ladislav Kostal wrote: > On Wed, 23 Jan 2002, Roberto Armenteros wrote: > > > I run echo "usr/local/bin/startkde" > ~/.xinitrc > > making kde the default environment when running > > startx. But I also have WindowMaker and AfterStep > > installed, but I dont know how to get into those. > > Would someone tell me how to do this. Also, how do I > > set up the system to start X on boot "so I can choose > > the destop environment I want to use with a graphical > > interface" > > For windowmaker, before first run type wmaker.inst, which creates > directory GNUstep in your home and setup .xinitrc. > That is not exactly what he asked. You could use "gdm" or "kdm" but I have had difficulty getting either of them to work properly recently. They present a graphical login screen and you can select a windowmanager you want to use from them. First try running them by hand, as root, try typing gdm or kdm. If you are lucky you will hear a click and a screen will pop up on virtual console 9 with a login greeting. Even if you get that you may still not be able to login, I have yet to get the right authentication mechanisms configured for GDM (someone else may have cracked this). If they do you could invoke one of them on system startup. An alternative is to have a little shell-script that asks you what you want to run and creates a suitable .xinitrc before calling startx. I will mail mail you an example of mine if you like. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 1: 3: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 3829B37B400 for ; Thu, 24 Jan 2002 01:02:57 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16Tfma-000BdX-00 for questions@FreeBSD.org; Thu, 24 Jan 2002 09:02:56 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id C2DA4118B; Thu, 24 Jan 2002 10:02:55 +0100 (CET) Date: Thu, 24 Jan 2002 10:02:55 +0100 From: Cliff Sarginson To: questions@FreeBSD.org Subject: Re: =?iso-8859-1?B?W8irurhd?= =?iso-8859-1?Q?_?= Dentistry demonstrations and seminars internet service Message-ID: <20020124090255.GB2650@raggedclown.net> References: <200201240746.g0O7kqO16809@smtp2.borahome.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200201240746.g0O7kqO16809@smtp2.borahome.net> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 04:42:33PM +0900, MEDPAPA wrote: > > New Year's Event!! > Win free access to the most valuable programs for three months!! > The world's most distinguished dentistry scholars are all here!! > > We provide you with moving images of dentistry demonstrations and seminars. > Sounds unmissable.. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 1:27:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from shu.shu-oneline.org (host1.shu-paradigm.org [211.6.195.138]) by hub.freebsd.org (Postfix) with SMTP id 4971F37B400 for ; Thu, 24 Jan 2002 01:27:26 -0800 (PST) Received: (qmail 6201 invoked by uid 519); 24 Jan 2002 06:25:20 -0000 Delivered-To: neo-shuparadigm@shu-oneline.org Received: (qmail 6198 invoked from network); 24 Jan 2002 06:25:20 -0000 Received: from unknown (HELO pcg-767-series) (192.168.1.100) by shu.shu-oneline.org with SMTP; 24 Jan 2002 06:25:20 -0000 Date: Thu, 24 Jan 2002 15:14:16 +0900 From: NeoParadigmShift To: neo-shuparadigm@shu-oneline.org Subject: planet project message mail paradigm ascension =?ISO-2022-JP?B?GyRCJDMkbCRPOS1KcyRHJDkbKEI=?= ................ Message-Id: <20020124151405.A9BE.NEO@shu-oneline.org> MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-2022-JP" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.00.08 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG planet project $B$3$l$O9-Js$G$9(B http://www.shu-oneline.org/planet_P.html contact point tel:0176534584:E-mail:shuparadigm@infogeneratorpro.com paradigm work disseminator shu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 1:34:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gw-1.adm.msi.ru (gw-1-A1-115k.adm.msi.ru [212.14.192.45]) by hub.freebsd.org (Postfix) with ESMTP id 8E68237B400 for ; Thu, 24 Jan 2002 01:34:04 -0800 (PST) Received: from vperep (vperep [212.14.192.100]) by gw-1.adm.msi.ru (8.10.2/8.10.2) with ESMTP id g0OKc4L00653 for ; Fri, 25 Jan 2002 07:38:05 +1100 (MG) Date: Thu, 24 Jan 2002 20:40:49 +1100 From: Vladimir Perepechenko X-Mailer: The Bat! (v1.53d) UNREG / CD5BF9353B3B7091 Reply-To: Vladimir Perepechenko Organization: Magadansvyazinform Company X-Priority: 3 (Normal) Message-ID: <9441790171.20020124204049@adm.msi.ru> To: freebsd-questions@FreeBSD.ORG Subject: Is Didiboard AccelePort Xp multiport adapter supported in FreeBSD 4.4 ? MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG úÄÒÁ×ÓÔ×ÕÊÔÅ, Hello! I ordered this multiport adapter (PCI Bus)but not shure about compatibility. What you think? thank you, Vladimir To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 3: 5:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mxzilla1.xs4all.nl (mxzilla1.xs4all.nl [194.109.6.54]) by hub.freebsd.org (Postfix) with ESMTP id D844337B417 for ; Thu, 24 Jan 2002 03:05:38 -0800 (PST) Received: from xs4.xs4all.nl (rene@xs4.xs4all.nl [194.109.6.45]) by mxzilla1.xs4all.nl (8.12.0/8.12.0) with ESMTP id g0OB5bKV020362 for ; Thu, 24 Jan 2002 12:05:37 +0100 (CET) Received: (from rene@localhost) by xs4.xs4all.nl (8.9.0/8.9.0) id MAA18157 for questions@freebsd.org; Thu, 24 Jan 2002 12:05:37 +0100 (CET) Date: Thu, 24 Jan 2002 12:05:37 +0100 From: rene@xs4all.nl To: questions@freebsd.org Subject: backups using tar? Message-ID: <20020124120536.O10869@xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello. I've got a system that I regularly update with cvsup, then rebuilding my world and all and in general I'm very happy with this. However, backups are a necessity and I've got them down with dump & restore. Now, I'd also like to be able to do it with tar. the idea being that instead of fixing my personal and config files together with my system, I'd be able to keep them seperate. Restoration would then be a matter of installing the latest (desired) branch of FreeBSD onto a new harddisk, then unpacking the tar file from root under that. I've found some NetBSD HowTo that has a line on how to accomplish this, but it doesn't quite do the trick for FreeBSD. find / -type f -newer /etc/rc ! \ \( -name "backup" -or -name "burn" \) \ -exec tar -rvf $backupfile {} \; the problem is that this line includes most of my /usr/ports, /usr/bin/, practically my complete system. Then I might aswell dump it ;) What would I need to tell tar in order not to take any system files, just my personal files? Please take into account that I cvsup sometimes. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 3: 9:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.prod.itd.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by hub.freebsd.org (Postfix) with ESMTP id 9F12737B416 for ; Thu, 24 Jan 2002 03:09:13 -0800 (PST) Received: from dialup-209.244.107.7.dial1.sanjose1.level3.net ([209.244.107.7] helo=blossom.cjclark.org) by falcon.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16Thkd-0001Ol-00; Thu, 24 Jan 2002 03:09:07 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g0OB86n90051; Thu, 24 Jan 2002 03:08:06 -0800 (PST) (envelope-from cjc) Date: Thu, 24 Jan 2002 03:08:06 -0800 From: "Crist J. Clark" To: Cliff Sarginson Cc: Questions@FreeBSD.ORG, "Christopher J. Umina" Subject: Re: NFS Mounting Trouble Message-ID: <20020124030806.H87663@blossom.cjclark.org> References: <00e701c1a479$ef52e5b0$0301a8c0@uminafamily.com> <20020124020321.GA1131@raggedclown.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020124020321.GA1131@raggedclown.net>; from cliff@raggedclown.net on Thu, Jan 24, 2002 at 03:03:21AM +0100 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 03:03:21AM +0100, Cliff Sarginson wrote: > On Wed, Jan 23, 2002 at 08:53:33PM -0500, Christopher J. Umina wrote: > > Hi, > > > > I'm dealing with two servers in a LAN and they're both running FreeBSD 4.1. One server is named ns, the other 209-6-191-48. I can mount drives that are on ns to 209-6-191-48, but try and reverse the process and I get this error: > > > > ns# mount 209-6-191-48:/cdrom /FritzCDROM/ > > nfs: bad net address 209-6-191-48 > > > > Any suggestions? > > NOTE: The name of 209-6-191-48 must stay the same. > > Here is a shot in the dark. > It sees the number 209, for some reason it assumes this is > an IP address, tries to use it as one, gets error returned > that is an invalidly fornatted address. "209-6-191-48" is an illegal DNS name. (period) RFC1034 says, The labels must follow the rules for ARPANET host names. They must start with a letter, end with a letter or digit, and have as interior characters only letters, digits, and hyphen. There are also some restrictions on the length. Labels must be 63 characters or less. Note that "they must start with a letter." -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 3:16: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from swan.prod.itd.earthlink.net (swan.mail.pas.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id 62B7937B402 for ; Thu, 24 Jan 2002 03:16:01 -0800 (PST) Received: from dialup-63.214.217.107.dial1.philadelphia1.level3.net ([63.214.217.107] helo=sparky) by swan.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16ThrL-0001At-00; Thu, 24 Jan 2002 03:16:00 -0800 From: Jud To: swear@blarg.net (Gary W. Swearingen) Cc: freebsd-questions@FreeBSD.ORG Date: Thu, 24 Jan 2002 06:16:30 -0500 X-Priority: 3 (Normal) In-Reply-To: Message-Id: <95FBK736ZUOQOIRQ621USNGCSPHE1Y.3c4fed0e@sparky> Subject: Re: Cooling Athlon / Linux App MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Mailer: Opera 6.01 build 1028 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 1/24/2002 2:25:21 AM, swear@blarg.net (Gary W. Swearingen) wrote: >Jud writes: > >> I think if you read the VCool documentation, you'll find that the theory, >> at least, is that the Athlon is unable to reach idle mode unless its >> system bus is disconnected, even when it would otherwise make >> eminent sense for the CPU to do so because the system isn't busy. >> VCool purports to set the "Bus Disconnect Enable" bit and so allow the >> CPU to go into idle mode at appropriate times. > >That quoted phrase doesn't appear in google *freebsd* archive except in >this thread. If you think that's important and different from the >CPU_SUSP_HLT mentioned in another msg, please ask about that on -stable >or -current or -hackers or -hardware (?); maybe they've missed >something. I doubt it, but you seem to have physical evidence of it. I actually don't think it's (supposed to be) any different than CPU_SUSP_HLT, and I'm a bit mystified as to why VCool seems to make a difference on my W2K system. I didn't know about CPU_SUSP_HLT before, so I'll put that in the kernel and see how it works. >(For the thermal paste, get a piece of hard plastic with a smooth straight >edge just a bit wider than the chip and spread it real even but real >thin. I've put it only on the chip the few times I've done it, but I'm >thinking that it would be better to spread it only on the heat sink both >because it is probably rougher and easier to clean the over-spread. I'm >guessing that putting it on both surfaces is more apt to leave bubbles.) I used a razor blade, but the plastic sounds easier to handle. Problems with the thermal paste application may have been caused by my manipulating the rather large heatsink and fan combination so as to get past some nearby capacitors on the motherboard, and then get the @# $%^*! clip seated - I did some wiggling, which may have introduced bubbles. Hopefully, practice will make perfect. Jud To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 3:23:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mxzilla2.xs4all.nl (mxzilla2.xs4all.nl [194.109.6.50]) by hub.freebsd.org (Postfix) with ESMTP id E011437B404 for ; Thu, 24 Jan 2002 03:23:42 -0800 (PST) Received: from xs4.xs4all.nl (rene@xs4.xs4all.nl [194.109.6.45]) by mxzilla2.xs4all.nl (8.12.0/8.12.0) with ESMTP id g0OBNflc015268 for ; Thu, 24 Jan 2002 12:23:41 +0100 (CET) Received: (from rene@localhost) by xs4.xs4all.nl (8.9.0/8.9.0) id MAA19496 for questions@freebsd.org; Thu, 24 Jan 2002 12:23:41 +0100 (CET) Date: Thu, 24 Jan 2002 12:23:36 +0100 From: rene@xs4all.nl To: questions@freebsd.org Subject: email with qmail? or something else that's secure? Message-ID: <20020124122336.P10869@xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've taken the big dip into mailhandling, and definately don't want to run something monolithic as sendmail. I've sorta chosen qmail on good faith and after seeing it's nicely compartimentalized (main reason).. however, now that I read the install manuals, it seems to deviate from standards quite a whole lot. my question: is this a problem, and if so, what are my alternatives? I've heard of postfix, but haven't look at it in detail yet. my demands for my mail-handling software are in order of priority * reliability * security * Maildir support To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 3:35:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sduwebship.student.umd.edu (sduwebship.student.umd.edu [129.2.156.15]) by hub.freebsd.org (Postfix) with ESMTP id A40D037B404 for ; Thu, 24 Jan 2002 03:35:40 -0800 (PST) Received: from localhost (philip@localhost) by sduwebship.student.umd.edu (8.11.6/8.11.6) with ESMTP id g0O6c7u70121; Thu, 24 Jan 2002 06:38:07 GMT (envelope-from philip@sduwebship.student.umd.edu) Date: Thu, 24 Jan 2002 06:38:05 +0000 (GMT) From: "Philip M. Gollucci" To: Kris Kennaway Cc: Subject: Re: Ugly Ugly CPU Memory error on boot up In-Reply-To: <20020123190711.A44238@xor.obsecurity.org> Message-ID: <20020124063748.T70098-100000@sduwebship.student.umd.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You are correct, it is solaris, thats why I appologized for asking on this list. END ------------------------------------------------------------------------------ Philip M. Gollucci (p6m7g8) philip@p6m7g8.com 301.314.3118 Science, Discovery, & the Universe (UMCP) Webmaster & Webship Teacher URL: http://www.sdu.umd.edu EJPress.com Database/PERL Programmer & System Admin URL : http://www.ejournalpress.com Resume : http://www.p6m7g8.com/resume.txt On Wed, 23 Jan 2002, Kris Kennaway wrote: > On Wed, Jan 23, 2002 at 06:02:19PM +0000, Philip M. Gollucci wrote: > > First let me apologize for asking this here, but I don't know the > > appropriate list. > > > > This looks to me like someone walked up and kicked the CPU itself. > > Any ideas, its in a closet somewhere I don't have access to or root on. > > I sent e-mail to root@domain, but they simply deleted the log file that I > > pointed out to them without responding. > > This doesn't look like a FreeBSD error message (Sun Solaris?) Anyway, > it's a hardware problem and you probably need to replace the RAM. > > Kris > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 3:37: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sduwebship.student.umd.edu (sduwebship.student.umd.edu [129.2.156.15]) by hub.freebsd.org (Postfix) with ESMTP id 9BEEC37B400 for ; Thu, 24 Jan 2002 03:36:54 -0800 (PST) Received: from localhost (philip@localhost) by sduwebship.student.umd.edu (8.11.6/8.11.6) with ESMTP id g0O6dMr70140; Thu, 24 Jan 2002 06:39:23 GMT (envelope-from philip@sduwebship.student.umd.edu) Date: Thu, 24 Jan 2002 06:39:22 +0000 (GMT) From: "Philip M. Gollucci" To: Joe & Fhe Barbish Cc: FBSD Questions Subject: Re: ls command flags In-Reply-To: Message-ID: <20020124063916.V70098-100000@sduwebship.student.umd.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ls | less END ------------------------------------------------------------------------------ Philip M. Gollucci (p6m7g8) philip@p6m7g8.com 301.314.3118 Science, Discovery, & the Universe (UMCP) Webmaster & Webship Teacher URL: http://www.sdu.umd.edu EJPress.com Database/PERL Programmer & System Admin URL : http://www.ejournalpress.com Resume : http://www.p6m7g8.com/resume.txt On Thu, 24 Jan 2002, Joe & Fhe Barbish wrote: > The /usr/ports/www directory has so many directories > in it that the ls command just scrolls them off the screen. > Is there a -flag to tell ls to show one screen at a time? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 3:40:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by hub.freebsd.org (Postfix) with ESMTP id E95F437B400 for ; Thu, 24 Jan 2002 03:40:29 -0800 (PST) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id DAA29652; Thu, 24 Jan 2002 03:40:26 -0800 Message-ID: <3C4FF2A9.50005@owt.com> Date: Thu, 24 Jan 2002 03:40:25 -0800 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Jud Cc: "Gary W. Swearingen" , freebsd-questions@FreeBSD.ORG Subject: Re: Cooling Athlon / Linux App References: <95FBK736ZUOQOIRQ621USNGCSPHE1Y.3c4fed0e@sparky> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jud wrote: > 1/24/2002 2:25:21 AM, swear@blarg.net (Gary W. Swearingen) wrote: > > >>Jud writes: >> >> >>>I think if you read the VCool documentation, you'll find that the >>> > theory, > >>>at least, is that the Athlon is unable to reach idle mode unless its >>>system bus is disconnected, even when it would otherwise make >>>eminent sense for the CPU to do so because the system isn't busy. >>>VCool purports to set the "Bus Disconnect Enable" bit and so allow >>> > the > >>>CPU to go into idle mode at appropriate times. >>> >>That quoted phrase doesn't appear in google *freebsd* archive except >> > in > >>this thread. If you think that's important and different from the >>CPU_SUSP_HLT mentioned in another msg, please ask about that >> > on -stable > >>or -current or -hackers or -hardware (?); maybe they've missed >>something. I doubt it, but you seem to have physical evidence of it. >> > > I actually don't think it's (supposed to be) any different than > CPU_SUSP_HLT, and I'm a bit mystified as to why VCool seems to > make a difference on my W2K system. I didn't know about > CPU_SUSP_HLT before, so I'll put that in the kernel and see how it > works. > > >>(For the thermal paste, get a piece of hard plastic with a smooth >> > straight > >>edge just a bit wider than the chip and spread it real even but real >>thin. I've put it only on the chip the few times I've done it, but I'm >>thinking that it would be better to spread it only on the heat sink both >>because it is probably rougher and easier to clean the over-spread. >> > I'm > >>guessing that putting it on both surfaces is more apt to leave bubbles.) >> > > I used a razor blade, but the plastic sounds easier to handle. Problems > with the thermal paste application may have been caused by my > manipulating the rather large heatsink and fan combination so as to get > past some nearby capacitors on the motherboard, and then get the @# > $%^*! clip seated - I did some wiggling, which may have introduced > bubbles. Hopefully, practice will make perfect. On my AMDs, I used Artic Silver II. I followed the instructions at http://www.arcticsilver.com/arctic_silver_instructions.htm Kent -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://users.owt.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 3:41:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.cz (diana.mobil.cz [195.39.16.12]) by hub.freebsd.org (Postfix) with ESMTP id 76B3737B400 for ; Thu, 24 Jan 2002 03:41:21 -0800 (PST) Received: from ester.mobil.cz (ester.mobil.cz [194.213.62.23]) by mobil.cz (8.11.6/8.11.0) with ESMTP id g0OBfJe26764; Thu, 24 Jan 2002 12:41:20 +0100 Received: from roman.mobil.cz ([10.2.0.89]) by ester.mobil.cz (Lotus Domino Release 5.0.7) with ESMTP id 2002012412384337:12054 ; Thu, 24 Jan 2002 12:38:43 +0100 Received: (from roman@localhost) by roman.mobil.cz (8.11.6/8.11.6) id g0OBpuX77535; Thu, 24 Jan 2002 12:51:56 +0100 (CET) (envelope-from neuhauser@mobil.cz) X-Authentication-Warning: roman.mobil.cz: roman set sender to neuhauser@mobil.cz using -f Date: Thu, 24 Jan 2002 12:51:55 +0100 From: Roman Neuhauser To: Jordan Breeding Cc: freebsd-questions@freebsd.org Subject: Re: Making and different in sc(1)? Message-ID: <20020124125155.A77465@roman.mobil.cz> Mail-Followup-To: Jordan Breeding , freebsd-questions@freebsd.org References: <3C4F415D.4050809@attbi.com> Mime-Version: 1.0 In-Reply-To: <3C4F415D.4050809@attbi.com> User-Agent: Mutt/1.3.23i X-MIMETrack: Itemize by SMTP Server on ester/Mobil(Release 5.0.7 |March 21, 2001) at 01/24/2002 12:38:43 PM, Serialize by Router on ester/Mobil(Release 5.0.7 |March 21, 2001) at 01/24/2002 12:38:49 PM, Serialize complete at 01/24/2002 12:38:49 PM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Wed, 23 Jan 2002 17:03:57 -0600 > From: Jordan Breeding > To: freebsd-questions@freebsd.org > Subject: Making and different in sc(1)? > > Is there a way in sc(1) to allow to remove characters to the left > and to delete characters to the left instead of both keys removing > characters to the left? Thanks for any help. Hi Jordan, there are two things that could cause the Delete key remove a char to the left of the cursor in the console (that I'm aware of): 1) The key sends ^H, which is Backspace. 2) Your shell is configured to remove a char to the left of the cursor when it receives both ^H and ^? (Delete). You can find out the code by typing ^V (Ctrl and V at once) and then pressing the Delete key. If it shows "^?" (w/o the quotes), you have to look at your shell's manual. I'm 99% sure this is the case, since Delete has been sending ^? since I remember, but both tcsh-6.0.1[01] and zsh-4.0.[24] are misconfigured just the way you describe. Unfortunately, I don't remember the fix for tcsh, and haven't fixed this in my zsh yet. -- FreeBSD 4.4-STABLE 12:43PM up 3 days, 19:07, 3 users, load averages: 0.01, 0.02, 0.00 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 3:44:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from castor.email.si (mail.email.si [193.77.122.6]) by hub.freebsd.org (Postfix) with ESMTP id 5EE5037B404 for ; Thu, 24 Jan 2002 03:44:19 -0800 (PST) Received: from earth (node.066-0.ty.link.si [213.250.43.66]) by castor.email.si (8.11.1/8.11.1) with SMTP id g0OBiEO27228 for ; Thu, 24 Jan 2002 12:44:15 +0100 Message-ID: <001601c1a4cc$7d75f290$0200a8c0@earth> From: "FreeBSD" To: "FreeBSD Questions" Subject: My server is going down !! Date: Thu, 24 Jan 2002 12:43:16 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am new in FreeBSD world, but i have configured my server. And now i have a problem. My sever stops working. From time to time my server in unreachable, but when i make ifconfig xl0 down ifconfig xl0 up then it srats working again ... I dont know why but first i try to fix a problem with irq, becouse my video cart and my xl0 network card had the same irq. I think that this has reduce my problem, because now server stops working but then starts without me. But this is still not good. What shall i do. What could be wrong. Server ony stops my internet connection, but my local network is still working. I dont know if it matters but when i log on to my server via locakl network, server always works, but when i am away or ny local mascine in not turned on then server stops working and starts ad so on. I hope that you can help me, or tell me what could be wrong. Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 4: 4:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lima.epix.net (lima.epix.net [199.224.64.56]) by hub.freebsd.org (Postfix) with ESMTP id D735E37B404 for ; Thu, 24 Jan 2002 04:04:17 -0800 (PST) Received: from there (clsm-58ppp119.epix.net [209.74.58.119]) by lima.epix.net (8.12.1/2001112001/PL) with SMTP id g0OC4F3I025768 for ; Thu, 24 Jan 2002 07:04:16 -0500 (EST) Message-Id: <200201241204.g0OC4F3I025768@lima.epix.net> Content-Type: text/plain; charset="iso-8859-1" From: Dave Kaufman Reply-To: daverk@epix.net To: freebsd-questions@freebsd.org Subject: interscan query Date: Thu, 24 Jan 2002 07:04:10 -0500 X-Mailer: KMail [version 1.3] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG i work for a small college and we need to get some protection for incoming and outgoing email. my boss has settled on Interscan and got a compag proliant dl360 rack mount unit to run it on. we tried installing Mandrake-Linux 7.2 but it didn't like the dual integral nics at all. so just for the halibut i talked him into letting me try my freebsd 4.4 Release. came up beautifully. now i need to get the Interscan running. according to the documentation it's been tested with Red Hat 6.0. i installed linux compatibility. can i just follow the directions for installing it? apparently it runs its own installation program. i don't know enough about this to know if that's likely to work. i apologize for asking this before i've had a problem but the list-serve won't accept emails from my mail server at work so i have to ask from home and i need to get this thing running today. if anybody has had experience with Interscan on freebsd i'd appreciate hearing about it. thanks Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 4:23: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mydomain.com (61-223-3-87.HINET-IP.hinet.net [61.223.3.87]) by hub.freebsd.org (Postfix) with SMTP id 3945037B400; Thu, 24 Jan 2002 04:22:25 -0800 (PST) Received: from mail by tcts.seed.net.tw with SMTP id pYzfEbJ3WiLy0VXC72CsmYM7; Thu, 24 Jan 2002 20:27:12 +0800 Message-ID: From: ooxx777@mail2000.com.tw To: No11@FreeBSD.ORG Subject:=?big5?Q?=A6=B3=BF=FA=A4H=A8S=BF=F9 !!?= MIME-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----=_NextPart_4Ppt50lOUM80DJo24Pd9pNfM" X-Mailer: bwmyhqIAG2MlF3YhYb X-Priority: 3 X-MSMail-Priority: Normal Date: Thu, 24 Jan 2002 04:22:25 -0800 (PST) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_4Ppt50lOUM80DJo24Pd9pNfM Content-Type: multipart/alternative; boundary="----=_NextPart_4Ppt50lOUM80DJo24Pd9pNfMAA" ------=_NextPart_4Ppt50lOUM80DJo24Pd9pNfMAA Content-Type: text/html; charset="big5" Content-Transfer-Encoding: base64 PCEtLSBzYXZlZCBmcm9tIHVybD0oMDAyMilodHRwOi8vaW50ZXJuZXQuZS1tYWlsIC0tPg0KDQo8 aHRtbD4NCg0KPGhlYWQ+DQo8TUVUQSBIVFRQLUVRVUlWPSJDb250ZW50LVR5cGUiIENPTlRFTlQ9 InRleHQvaHRtbDtjaGFyc2V0PWJpZzUiPg0KPG1ldGEgaHR0cC1lcXVpdj0iQ29udGVudC1MYW5n dWFnZSIgY29udGVudD0iemgtdHciPg0KPG1ldGEgaHR0cC1lcXVpdj0iQ29udGVudC1UeXBlIiBj b250ZW50PSJ0ZXh0L2h0bWw7IGNoYXJzZXQ9YmlnNSI+DQo8bWV0YSBuYW1lPSJHRU5FUkFUT1Ii IGNvbnRlbnQ9Ik1pY3Jvc29mdCBGcm9udFBhZ2UgNC4wIj4NCjxtZXRhIG5hbWU9IlByb2dJZCIg Y29udGVudD0iRnJvbnRQYWdlLkVkaXRvci5Eb2N1bWVudCI+DQo8dGl0bGU+tlevxbrrrV6qqTwv dGl0bGU+DQo8Ymdzb3VuZCBzcmM9Imh0dHA6Ly9ob21lLmtpbW8uY29tLnR3L215a2lzcy0xMi8z bWlkaS8xMTcubWlkIiBsb29wPSItMSI+DQo8L2hlYWQ+DQo8c2NyaXB0IGxhbmd1YWdlPSJKYXZh c2NyaXB0Ij4gZnVuY3Rpb24gTm9SaWdodENsaWNrKGV2bnQpIHsgaWYgKG5hdmlnYXRvci5hcHBO YW1lLnRvVXBwZXJDYXNlKCkubWF0Y2goL05FVFNDQVBFLykgIT0gbnVsbCkgeyBpZiAoZXZudC53 aGljaCA9PSAzKXthbGVydCgivkukSFxusU23frVvpuYgoUkiKTtyZXR1cm4gZmFsc2U7fX1lbHNl IGlmIChldmVudC5idXR0b249PTIpYWxlcnQoIr5LpEhcbrFNt361b6bmoUkiKTt9IGRvY3VtZW50 Lm9ubW91c2Vkb3duID0gTm9SaWdodENsaWNrOyA8L3NjcmlwdD4NCjxib2R5IGJnY29sb3I9IiNG RkZGRkYiPg0KDQo8ZGl2IGFsaWduPSJjZW50ZXIiPg0KICA8Y2VudGVyPg0KICA8dGFibGUgYm9y ZGVyPSIwIiB3aWR0aD0iNzQlIiBiZ2NvbG9yPSIjRkY2NjY2Ij4NCiAgICA8dHI+DQogICAgICA8 dGQgd2lkdGg9IjEwMCUiPg0KICAgICAgICA8cCBhbGlnbj0iY2VudGVyIj48Yj48Zm9udCBmYWNl PSK80LeixekiIHNpemU9IjYiIGNvbG9yPSIjRkZGRkZGIj67tMNQt+2rS6dRsNOpsabRqk88L2Zv bnQ+PC9iPjwvdGQ+DQogICAgPC90cj4NCiAgPC90YWJsZT4NCiAgPC9jZW50ZXI+DQo8L2Rpdj4N CjxwIGFsaWduPSJjZW50ZXIiPjxpbWcgYm9yZGVyPSIwIiBzcmM9Imh0dHA6Ly93d3cuZGoubmV0 LnR3L35nd2svZ2lmL2xpbmUvdHJlbmRzL2IuZ2lmIiB3aWR0aD0iNjQwIiBoZWlnaHQ9IjUiPjwv cD4NCjx0YWJsZSBib3JkZXI9IjAiIHdpZHRoPSIxMDIlIj4NCiAgPHRyPg0KICAgIDx0ZCB3aWR0 aD0iNTUlIj48cD48Zm9udCBzaXplPSIyIj6nQaRAqXelaLlMIDxmb250IGNvbG9yPSIjMDAwMEZG Ij43LTFYPC9mb250PiAgICAgIA0KICAgICAgtlK5TKpGpughISCkXaq+uUSlTL3mqrq7+a7mpKOr S6l5ISE8L2ZvbnQ+PC9wPiAgICAgDQo8cD48Zm9udCBzaXplPSIyIj6m/bZSpEakQL36pGylTK/g e6Ze9Vh9tbmnQaSwu/KpTz88L2ZvbnQ+PC9wPg0KICAgICAgPHA+PGZvbnQgc2l6ZT0iMiI+p9qt zCB7q0unUbDTqbF9IK91qrqr3KSjpEC8y7PhfjwvZm9udD48L3A+ICAgICANCjxwPjxiPqRAr+uk SKjTtlI8L2I+ICZndDsmZ3Q7IKVMveanQSAmZ3Q7Jmd0OyA8Zm9udCBjb2xvcj0iIzAwMDBGRiI+ PGI+t3yt+7v5PC9iPjwvZm9udD48L3A+ICAgICANCjxwPjxiPrhnvlCw06jTtlI8L2I+ICZndDsm Z3Q7IKVMveanQSAmZ3Q7Jmd0OyA8Zm9udCBjb2xvcj0iI0ZGMDAwMCI+PGI+ptGqT7v5PC9iPjwv Zm9udD48L3A+ICAgICANCjxwPjxmb250IGNvbG9yPSIjRkYwMDAwIiBzaXplPSIyIj6wo6RGqMmo /KbRqk+7+aV+LLZXsNPB2bd8pl71WDEwJcX9p0G37bz6qvepTyE8L2ZvbnQ+PC9wPg0KICAgIDwv dGQ+DQogICAgPHRkIHdpZHRoPSI0NSUiPg0KICAgICAgPHAgYWxpZ249ImNlbnRlciI+PGI+PGZv bnQgY29sb3I9IiMwMDAwODAiPqr3s7u5cabAqrqk8bv5PC9mb250PjwvYj48L3A+DQogICAgICA8 ZGl2IGFsaWduPSJjZW50ZXIiPg0KICAgICAgICA8Y2VudGVyPg0KICAgICAgICA8dGFibGUgYm9y ZGVyPSIxIiB3aWR0aD0iODQlIiBiZ2NvbG9yPSIjRkY5OUNDIiBib3JkZXJjb2xvcj0iI0MwQzBD MCI+DQogICAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHdpZHRoPSIzMCUiPjxiPjxmb250 IGNvbG9yPSIjMDAwMEZGIj43LTFYPC9mb250PjwvYj48L3RkPg0KICAgICAgICA8L2NlbnRlcj4N CiAgICAgICAgICAgIDx0ZCB3aWR0aD0iMzYlIj4NCiAgICAgICAgICAgICAgPHAgYWxpZ249Imxl ZnQiPrHGu/kgMTEwpLg8L3RkPiAgICANCiAgICAgICAgICA8Y2VudGVyPiAgIA0KICAgICAgICAg ICAgPHRkIHdpZHRoPSIzNCUiPg0KICAgICAgICAgICAgICA8cCBhbGlnbj0iY2VudGVyIj6r3LZR PC90ZD4NCiAgICAgICAgICA8L3RyPg0KICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB3 aWR0aD0iMzAlIj48Yj48Zm9udCBjb2xvcj0iIzAwMDBGRiI+pf6lwbZXsNM8L2ZvbnQ+PC9iPjwv dGQ+DQogICAgICAgICAgICA8dGQgd2lkdGg9IjM2JSI+sca7+SA4OaS4PC90ZD4gICAgIA0KICAg ICAgICAgICAgPHRkIHdpZHRoPSIzNCUiPg0KICAgICAgICAgICAgICA8cCBhbGlnbj0iY2VudGVy Ij6rS6l5PC90ZD4NCiAgICAgICAgICA8L3RyPg0KICAgICAgICAgIDx0cj4NCiAgICAgICAgICAg IDx0ZCB3aWR0aD0iMzAlIj48Yj48Zm9udCBjb2xvcj0iIzAwMDBGRiI+pf6lwbZXsNM8L2ZvbnQ+ PC9iPjwvdGQ+DQogICAgICAgICAgICA8dGQgd2lkdGg9IjM2JSI+ptGqT7v5NjmkuDwvdGQ+ICAg DQogICAgICAgICAgICA8dGQgd2lkdGg9IjM0JSI+DQogICAgICAgICAgICAgIDxwIGFsaWduPSJj ZW50ZXIiPq91q0upeTwvdGQ+DQogICAgICAgICAgPC90cj4NCiAgICAgICAgPC90YWJsZT4NCiAg ICAgICAgPC9jZW50ZXI+DQogICAgICA8L2Rpdj4NCiAgICA8L3RkPg0KICA8L3RyPg0KPC90YWJs ZT4NCjxocj4NCjxwPjxiPjxmb250IGZhY2U9IrzQt6LF6SIgY29sb3I9IiMwMDgwMDAiIHNpemU9 IjQiPqRAsF+o07ftpf6lwatLp1Gw06mxqrqm0apPPC9mb250PjwvYj48L3A+DQo8cD48Yj48Zm9u dCBmYWNlPSK80LeixekiIHNpemU9IjMiIGNvbG9yPSIjMDAwMEZGIj62V7DTpsqzZrDTq362V7lM ODAwMLrYPC9mb250PjwvYj48L3A+DQo8cD48Yj48Zm9udCBmYWNlPSK80LeixekiIHNpemU9IjMi IGNvbG9yPSIjMDAwMEZGIj41pn6kurZ9uqE1MDCuYbZXsNM8L2ZvbnQ+PC9iPjwvcD4NCjx0YWJs ZSBib3JkZXI9IjAiIHdpZHRoPSIxMDAlIj4NCiAgPHRyPg0KICAgIDx0ZCB3aWR0aD0iMzQlIj6l /qXBtlew06q6uGfA57zSpqE6DQogICAgICA8cD4oMSkgpUi56sXpqbHnRbNzwuo8L3A+ICAgICAN CiAgICAgIDxwPigyKSClSLbHvlCk6Kahs3PC6jwvcD4gICAgIA0KICAgICAgPHA+PGI+PGZvbnQg Y29sb3I9IiNGRjAwMDAiPqnSpUin2q3Mtlew06vcwci/+iEhPC9mb250PjwvYj48L3RkPg0KICAg IDx0ZCB3aWR0aD0iNjYlIj6zb6xPpECt0zxiPiA8Zm9udCBjb2xvcj0iIzAwMDBGRiI+MDwvZm9u dD4gPGZvbnQgY29sb3I9IiMwMDAwRkYiPqfruOo8L2ZvbnQ+PC9iPqq6qMa3fr73t3wgICAgIA0K ICAgICAgPHA+pfSm86RIpXWtbqZis2+4zK74tk+6oSA8Yj48Zm9udCBjb2xvcj0iI0ZGMDAwMCIg c2l6ZT0iNCI+MTUwMDA8L2ZvbnQ+PC9iPjxiPjxmb250IGNvbG9yPSIjRkYwMDAwIiBzaXplPSI0 Ij4gICAgICANCiAgICAgIDwvZm9udD48L2I+pLilqqVrPC9wPg0KICAgICAgPHA+tE6laaVIqPqx b6bRqk+46q7mISE8L3A+DQogICAgICA8cD6wo6RGqMmo/DxiPjxmb250IGNvbG9yPSIjRkYwMDAw Ij6m0apPu/k8L2ZvbnQ+PC9iPqSnpX4swdmlaaVIs9CzebF6qrqoxrd+ISE8L3RkPg0KICA8L3Ry Pg0KPC90YWJsZT4NCjxocj4NCjxwPjwvcD4NCjx0YWJsZSBib3JkZXI9IjAiIHdpZHRoPSIxMDAl Ij4NCiAgPHRyPg0KICAgIDx0ZCB3aWR0aD0iMTAwJSI+PGI+PGZvbnQgc2l6ZT0iNCIgY29sb3I9 IiNGRjAwMDAiIGZhY2U9IrzQt6LF6SI+pf6lwatLp1Gw06mxxf2lord+qsykzrPQt36qzCytq7dz rEKmXqfGseYhITwvZm9udD48L2I+DQogICAgICA8cD60uq7wtlao07ZWp0PD+ywgV1RPIKq6qOyo 08X9q9ymaKRIpaK3fizF/avcpmikSKhTpc23TrC1ITwvcD4gICAgIA0KICAgICAgPHA+pUir4aq6 pOmkbKfarcy406ZwpvOr17lMqU8/PC9wPg0KICAgICAgPHA+pf6lwbZXsNOsQLHPpaK3fqrMPC9w Pg0KICAgICAgPHA+ezxiPjxmb250IGNvbG9yPSIjMDAwMDgwIj6lwaVIrbmssKTRPC9mb250Pjwv Yj59PC9wPg0KICAgICAgPHA+e67jYKbMYKpvYMZRYMHnYLhKYL9dYKzWYMLmYL5MYK/5YH0gpf6l wbZXsNOkQKTipV2/7CEhPC9wPiAgICAgDQogICAgICA8cD6nS6VotLqu8KVdtfYhITwvcD4NCiAg ICAgIDxwPqFAPC9wPg0KICAgICAgPHA+PGI+PGZvbnQgc2l6ZT0iNCIgY29sb3I9IiNGRjAwMDAi IGZhY2U9IrzQt6LF6SI+pf6lwbZXsNOpsar4IDwvZm9udD48Zm9udCBzaXplPSI0IiBmYWNlPSK8 0LeixekiIGNvbG9yPSIjMDAwMEZGIj4mZ3Q7Jmd0OzwvZm9udD48Zm9udCBzaXplPSI0IiBjb2xv cj0iI0ZGMDAwMCIgZmFjZT0ivNC3osXpIj4gDQogICAgICCl/rDqpMCs9bvis3Gu/DwvZm9udD48 L2I+PC9wPiAgICAgDQogICAgICA8cD65TKVosXqlW7f5q0unUbDTqbGwo6RGrW6n67jqtFimyrhV pLilSKV+LKbTpULB2a1uqdO+4b3fv/qquq23wEk8L3A+DQogICAgICA8cD637aX+pcG2V7DTqrqp sar4pKOkQLzLISE8L3A+DQogICAgICA8cD6xeqV1rW6u+LZPuqEgMTUwMDCkuCyo+rFvpECt07hn wOfFdrROpWmlSKjJqPykQL36pGyquqbRqk+7+SEhPC9wPiAgICAgDQogICAgICA8cD6l/rDqs3PC 6rZXsNOko7reprOmaKTWrmEspf6lwbZXsNPBYMDnt37DQsX9qbGq+KVopMCs9SAgDQogICAgICAo PGI+PGZvbnQgY29sb3I9IiNGRjAwMDAiPjYlPC9mb250PjwvYj4pISE8L3RkPg0KICA8L3RyPg0K PC90YWJsZT4NCjxocj4NCjxwIGFsaWduPSJjZW50ZXIiPjxiPjxmb250IHNpemU9IjQiIGNvbG9y PSIjMDA4MDAwIiBmYWNlPSK80LeixekiPrN6uUy69Lj0pOimoaVbpEqqzDwvZm9udD48L2I+PC9w Pg0KPHAgYWxpZ249ImNlbnRlciI+PGI+PGZvbnQgZmFjZT0ivNC3osXpIiBjb2xvcj0iIzAwMDBG RiIgc2l6ZT0iNSI+p0u2T7D2sFa69Lj0pua+UK/gpE8hITwvZm9udD48L2I+PC9wPg0KPHAgYWxp Z249ImNlbnRlciI+PGltZyBib3JkZXI9IjAiIHNyYz0iaHR0cDovL3d3dy5kai5uZXQudHcvfmd3 ay9naWYvbGluZS90cmVuZHMvYi5naWYiIHdpZHRoPSI2NDAiIGhlaWdodD0iNSI+PC9wPg0KPGRp diBhbGlnbj0iY2VudGVyIj4NCiAgPGNlbnRlcj4NCiAgPHRhYmxlIGJvcmRlcj0iMCIgd2lkdGg9 IjQ3MyIgaGVpZ2h0PSIzNjIiPg0KICAgIDx0cj4NCiAgICA8VEQgaGVpZ2h0PSIyNCIgd2lkdGg9 IjQ2MyIgYmdjb2xvcj0iI0ZGNjY2NiI+DQogICAgICA8cCBhbGlnbj0iY2VudGVyIj48Zm9udCBz aXplPSIyIiBjb2xvcj0iIzAwMDAwMCI+uvS49KbmvlCwqqTisFa9ba9aICAgICAgICAgICAgICAg DQogICAgICB+ILZXr8W6661er1OnT6qpJm5ic3A7PC9mb250PiAgICAgICAgICAgICAgDQogICAg PC9URD4NCiAgICA8L3RyPg0KICAgIDx0cj4NCiAgICA8dGQgd2lkdGg9IjU4OSIgYmFja2dyb3Vu ZD0iaHR0cDovL3d3dy42NjY2NjYuaWR2LnR3L3BkL2QwNC5naWYiPiAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgIDxkaXYgYWxpZ249 ImNlbnRlciI+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgIA0KICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiB3aWR0aD0iNTg5IiBoZWlnaHQ9IjMx MSI+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg IA0KICAgICAgICAgIDx0cj4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgPHRkIHdpZHRoPSI1NyIgaGVpZ2h0PSIxOSI+ PC90ZD4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgIA0KICAgICAgICAgICAgPHRkIHdpZHRoPSI1MTgiIGhlaWdodD0iMTkiPiAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAg IDxkaXYgYWxpZ249ImNlbnRlciI+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIHdpZHRo PSI1MjAiIGNlbGxwYWRkaW5nPSIzIj4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICA8dHI+ICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAg ICA8dGQgd2lkdGg9IjQ4NCI+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgIDxwIGFsaWduPSJjZW50ZXIiPjxm b250IHNpemU9IjIiIGNvbG9yPSIjMDAwMDAwIj4gvXUmbmJzcDsgDQogICAgICAgICAgICAgICAg ICAgICAgpFcmbmJzcDsmbmJzcDuz+CZuYnNwOyCmVyAmbmJzcDsgqkEmbmJzcDsgsMg8L2ZvbnQ+ PC90ZD4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgPHRkIHdp ZHRoPSIxNCI+PC90ZD4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgIDwvdHI+ICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgPC90YWJs ZT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAN CiAgICAgICAgICAgICAgPC9kaXY+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICA8L3RkPiAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgIDwvdHI+ICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQog ICAgICAgICAgPHRyPiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgIA0KICAgICAgICAgICAgPHRkIHdpZHRoPSI1NyIgaGVpZ2h0PSIyODQiPjwv dGQ+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgDQogICAgICAgICAgICA8dGQgd2lkdGg9IjUxOCIgaGVpZ2h0PSIyODQiPiAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAg ICAgICA8cCBhbGlnbj0iY2VudGVyIj6hQDxmb250IGNvbG9yPWdyZWVuPiAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KPGZvcm0gYWN0aW9uPWh0 dHA6Ly9hcHAua3V0dS5uZXQvcmVzb3VyY2UvbWFpbGZvcm0vbWFpbGZvcm0ucGhwMyAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KIG1ldGhvZD1w b3N0PiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg IA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg DQo8aW5wdXQgdHlwZT1oaWRkZW4gbmFtZT1MQU5HVUFHRSB2YWx1ZT1iNT48aW5wdXQgdHlwZT1o aWRkZW4gbmFtZT1FQ0hPICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgIA0KdmFsdWU9IjxjZW50ZXI+PGgzPqfarcy3fLrJp9apTbF6s3O1uCzBwsHC pfrBezwvaDM+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgDQo8aW1nIHNyYz1odHRwOi8vd3d3LjY2NjY2Ni5pZHYudHcvcGQvYmF1dGUwMS5naWY+ PHA+Ij48cCBhbGlnbj0ibGVmdCI+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICANCjxpbnB1dCB0eXBlPWhpZGRlbiBuYW1lPVRPIHZhbHVlPSAxMTEy NzEzQHNpbmdsZS51cmwuY29tLnR3PiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgIA0KPGlucHV0IHR5cGU9aGlkZGVuIG5hbWU9U1VCSkVDVCB2YWx1 ZT3BwsHCp0GqurDRxlteXj48Zm9udCBzaXplPSIyIj6p0iAgICAgDQqmYiCmYSDCSTo8Yj48c3Bh biBzdHlsZT0idGV4dC1pbmRlbnQ6IDBweDsgbGluZS1oZWlnaHQ6IDI0cHgiPjxzZWxlY3QgbmFt ZT0ienAiIHNpemU9MT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQo8b3B0aW9uIHZhbHVlPSIiIHNl bGVjdGVkPr3Qv+++3CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgDQo8b3B0aW9uIHZhbHVlPSIxIj6leKVfpasgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KPG9wdGlvbiB2YWx1ZT0iMiI+sPK2qaWr ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCjxv cHRpb24gdmFsdWU9IjMiPqV4pV+/pCAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgDQo8b3B0aW9uIHZhbHVlPSI0Ij6pecT1v6QgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KPG9wdGlvbiB2YWx1ZT0i NSI+rue26b+kICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICANCjxvcHRpb24gdmFsdWU9IjYiPrdzpsulqyAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgDQo8b3B0aW9uIHZhbHVlPSI3Ij63c6bLv6QgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KPG9wdGlv biB2YWx1ZT0iOCI+rV2u37+kICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICANCjxvcHRpb24gdmFsdWU9IjkiPqV4pKSlqyAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQo8b3B0aW9uIHZhbHVlPSIxMCI+ pXikpL+kICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICANCjxvcHRpb24gdmFsdWU9IjExIj65/KTGv6QgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgIA0KPG9wdGlvbiB2YWx1ZT0iMTIiPqtup+u/pCAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQo8b3B0aW9u IHZhbHVlPSIxMyI+ucW4caWrICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICANCjxvcHRpb24gdmFsdWU9IjE0Ij65xbhxv6QgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KPG9wdGlvbiB2YWx1ZT0iMTUi Prazqky/pCAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgDQo8b3B0aW9uIHZhbHVlPSIxNiI+pXirbqWrICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICANCjxvcHRpb24gdmFsdWU9IjE3Ij6leKtuv6QgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KPG9wdGlv biB2YWx1ZT0iMTgiPrCqtq+lqyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgDQo8b3B0aW9uIHZhbHVlPSIxOSI+sKq2r7+kICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCjxvcHRpb24gdmFsdWU9IjIw Ij6rzKpGv6QgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgIA0KPG9wdGlvbiB2YWx1ZT0iMjEiPqrhvay/pCAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgDQo8b3B0aW9uIHZhbHVlPSIyMiI+pXiqRr+kICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCjxvcHRp b24gdmFsdWU9IjIzIj686rTyv6QgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgIA0KPG9wdGlvbiB2YWx1ZT0iMjQiPqr3qvm/pCAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQo8b3B0aW9uIHZhbHVlPSIy NSI+s3Omv7+kICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICANCjwvc2VsZWN0PiAgICZuYnNwOzwvc3Bhbj48YnI+ICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQombmJzcDsmbmJzcDsgPC9iPqltJm5i c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7IKZXOiA8aW5wdXQg dHlwZT10ZXh0IHNpemU9MjAgbWF4bGVuZ3RoPTMwIG5hbWU9q8ik4altplc+ICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgIA0KPGJyPiAgICAgICAgICAgICAgICAgICANCiZuYnNwOyZuYnNwOyZu YnNwOyCmYSZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyCn fTo8aW5wdXQgdHlwZT10ZXh0IHNpemU9MzAgbWF4bGVuZ3RoPTMwIG5hbWU9pmGnfT4gICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICANCiAmbmJzcDsgJm5ic3A7PGJyPiAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgDQombmJzcDsmbmJzcDsmbmJzcDsgs3O1uLlxuNw6IDxpbnB1dCB0eXBlPXRleHQg c2l6ZT0yMCBtYXhsZW5ndGg9MzAgbmFtZT2zc7W4uXG43D4gICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgDQogJm5ic3A7PGJyPiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQombmJzcDsm bmJzcDsmbmJzcDsgpuawyrlxuNw6IDxpbnB1dCB0eXBlPXRleHQgc2l6ZT0yMCBtYXhsZW5ndGg9 MzAgbmFtZT2m5rDKuXG43D4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogJm5ic3A7 PGJyPiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQombmJzcDsmbmJzcDsmbmJzcDsgRW1haWw6 Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7IDxpbnB1dCB0 eXBlPXRleHQgc2l6ZT0yMCBtYXhsZW5ndGg9NjggbmFtZT1FTUFJTD4gICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgIA0KPC9mb250PjwvZm9udD4NCiAgICAgIDxwPiZuYnNwOyZuYnNwOyZuYnNwOyA8 aW5wdXQgdHlwZT0icmFkaW8iIHZhbHVlPSKxTaRIrbG9zSIgbmFtZT0iue+p86X+pcG2V7DTqrqz 0Ld+t07EQCIgY2hlY2tlZD48Zm9udCBjb2xvcj0iIzAwMDBmZiIgc2l6ZT0iMiI+p9qtbqXfp1mw 0aVbuGe+ULDTJm5ic3A7IA0KICAgICAgPC9mb250Pjxmb250IGNvbG9yPSIjMDA4MDAwIiBzaXpl PSIyIj6xTaRIrbG9zTwvZm9udD48L3A+DQogICAgICA8cD48Zm9udCBjb2xvcj0iIzAwMDAwMCIg c2l6ZT0iMiI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7IDwvZm9udD48aW5wdXQgdHlw ZT0icmFkaW8iIHZhbHVlPSKn2qvcprO/s73sIiBuYW1lPSK576nzpf6lwbZXsNOqurPQt363TsRA Ij48Zm9udCBjb2xvcj0iIzAwMDBmZiIgc2l6ZT0iMiI+p9qr3Kazv7O97DwvZm9udD48Zm9udCBz aXplPSIyIj4mbmJzcDsgDQogICAgICA8L2ZvbnQ+PGZvbnQgY29sb3I9IiMwMDgwMDAiIHNpemU9 IjIiPrFItW+oxrd+u6Gp+iBWQ0Q8L2ZvbnQ+PC9wPiAgICANCiAgICAgICAgICAgICAgPHAgYWxp Z249ImxlZnQiPiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgDQo8Zm9udCBjb2xvcj1ncmVlbj4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICANCjxwIGFsaWduPSJsZWZ0Ij4gICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KPGI+Jm5ic3A7ICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgDQo8aW5wdXQgdHlwZT1zdWJtaXQgbmFtZT1TVUJNSVQgdmFs dWU9sGWlWKrts+Y+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgIA0KPGJyPiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgDQo8L2I+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgIA0KPC9mb250PiAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQo8L2Zvcm0+PC90ZD4gICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAg ICAgICAgIDwvdHI+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICANCiAgICAgICAgPC90YWJsZT4gICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgPC9kaXY+ICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICA8 L3RkPiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgDQogICAgPC90cj4NCiAgPC90YWJsZT4NCiAgPC9jZW50ZXI+DQo8L2Rpdj4NCjxwIGFs aWduPSJjZW50ZXIiPjxpbWcgYm9yZGVyPSIwIiBzcmM9Imh0dHA6Ly93d3cuZGoubmV0LnR3L35n d2svZ2lmL2xpbmUvdHJlbmRzL2IuZ2lmIiB3aWR0aD0iNjQwIiBoZWlnaHQ9IjUiPjwvcD4NCg0K PC9ib2R5Pg0KDQo8L2h0bWw+ ------=_NextPart_4Ppt50lOUM80DJo24Pd9pNfMAA-- ------=_NextPart_4Ppt50lOUM80DJo24Pd9pNfM-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 5: 1:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from pimout2-int.prodigy.net (pimout2-ext.prodigy.net [207.115.63.101]) by hub.freebsd.org (Postfix) with ESMTP id 033C337B400 for ; Thu, 24 Jan 2002 05:01:52 -0800 (PST) Received: from flash.net (216-99-240-20-atl-01.cvx.algx.net [216.99.240.20]) by pimout2-int.prodigy.net (8.11.0/8.11.0) with ESMTP id g0OD1fP163056 for ; Thu, 24 Jan 2002 08:01:44 -0500 Message-ID: <3C50062A.5030609@flash.net> Date: Thu, 24 Jan 2002 08:03:38 -0500 From: Courtney Thomas User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.4) Gecko/20011126 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Blackdown or Sun for linux Java on 4.3 ? Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Greetings ! Which version of Java for linux compat is better ? Why ? Does this mean that there should be an additional Java install just for FreeBSD itself ? Given that I've not upgraded ports from the 4.3 installation, are there "significant" enhancements to upgrade ports before installing Java ? Appreciatively, Courtney To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 5:10:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id B7BA337B402; Thu, 24 Jan 2002 05:10:29 -0800 (PST) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.6/8.11.6) with ESMTP id g0ODASm35415; Thu, 24 Jan 2002 13:10:28 GMT (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.6/8.11.6) with ESMTP id g0ODAOl49131; Thu, 24 Jan 2002 13:10:24 GMT (envelope-from brian@freebsd-services.com) Message-Id: <200201241310.g0ODAOl49131@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: zaks@prioris.mini.pw.edu.pl Cc: freebsd-net@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: PPP callback and SecurID In-Reply-To: Message from Slawek Zak of "Sat, 19 Jan 2002 13:35:12 +0100." <87ofjqo6wv.fsf@pf39.warszawa.sdi.tpnet.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 24 Jan 2002 13:10:24 +0000 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You could probably ``set cd off'' to get the desired effect. Alternatively, configure your machine to be able to receive incoming connections and let the initial ppp session drop when the peer hangs up. > I've a problem with my callback. I'd like to automate it somehow, but there is a > problem with LCP. > > The hard way is to do something like: > > # ppp ras > ppp ON pf39> term > deflink: Entering terminal mode on /dev/cuaa1 > Type `~?' for help > atdt > CONNECT 57600 > > > User Access Verification > > Username: > Enter PASSCODE: > > Callback initiated - line is disconnected > > NO CARRIER > > RING > > RING > > ATA > ...... (the connection) > > I tried to do something like this: > > [ppp.conf] > ... > callback: > disable pap > disable chap > set speed 57600 > set phone > set cd off > set device /dev/cuaa1 > allow users * > set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 10 \"\" ATZ OK ATDT\\T TIMEOUT 40 CONNECT" > set login "TIMEOUT 15 sername: szak PASSCODE: \"!/usr/X11R6/bin/ssh-askpass\" Callback ATA" > > But it bails out, because the connection is apparently considered open by ppp > after the disconnection, so I can't make the modem accept connections with ATA > command in this state. > > Does anyone have other ideas how to make it work without typing the sequence > everytime with term? > > Thanks, /S -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 5:20:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from plab.ku.dk (plab.ku.dk [130.225.105.65]) by hub.freebsd.org (Postfix) with ESMTP id 3183637B402 for ; Thu, 24 Jan 2002 05:20:31 -0800 (PST) Received: (from tolid@localhost) by plab.ku.dk (8.11.3/8.9.3) id g0ODKT999568 for freebsd-questions@freebsd.org.AVP; Thu, 24 Jan 2002 14:20:29 +0100 (CET) (envelope-from tolid) Received: (from tolid@localhost) by plab.ku.dk (8.11.3/8.9.3) id g0ODKTa99560 for freebsd-questions@freebsd.org; Thu, 24 Jan 2002 14:20:29 +0100 (CET) (envelope-from tolid) Date: Thu, 24 Jan 2002 14:20:29 +0100 From: Anatoliy Dmytriyev To: freebsd-questions@freebsd.org Subject: downgrade from 4.4 to 3.5 Message-ID: <20020124142029.A97194@plab.ku.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-Operating-System: FreeBSD 4.3-STABLE Organization: The Protein Laboratory, University of Copenhagen Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello everybody! Please, help me: How can I do downgrade from FreeBSD 4.4 to FreeBSD 3.5? I tryed to do cvsup to RELENG_3, but buildworld failed. best regards, Anatoliy. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 5:25:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from picknowl.com.au (firewall.picknowl.com.au [203.24.77.2]) by hub.freebsd.org (Postfix) with ESMTP id D734A37B400 for ; Thu, 24 Jan 2002 05:25:42 -0800 (PST) Received: from mailserver1.picknowl.com.au (mailserver1.picknowl.com.au [10.1.1.4]) by mailserver2.picknowl.com.au (8.9.3/8.9.3) with ESMTP id XAA11341 for ; Thu, 24 Jan 2002 23:55:40 +1030 Received: from [210.48.133.114] by mailserver1.picknowl.com.au (NTMail 5.03.0001/NU2410.00.c584a8e8) with ESMTP id wdjjycaa for freebsd-questions@FreeBSD.ORG; Thu, 24 Jan 2002 23:55:39 +1030 From: "nik [tm]" To: Subject: 4.4 Install problem Date: Thu, 24 Jan 2002 23:56:47 +1030 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have just tried installing version FreeBSD 4.4 on my system and i seem to have come across a problem just after partitioning and labelling the HDD.. i tried auto labelling as well as my own choice but they both gave the same error. 'Unable to make new root filesystem on /dev/ad0s1a' next message was 'command returned status 1' then ' couldnt make filesystem, aborting' I checked the other tty (vty?) and it said 'newfs: /dev/ad0s1a: 'a' partition is unavailable' I read a bit on groups and suggestions people had didnt help; things like changing hdd to slave (put cd as master - hmm useful as I run a scsi cd!) I am installing to my IDE hdd (windows has the smaller SCSI as it will be purely for gaming once BSD is up and running!) Partitioning - I split the drive fair down the middle.. 2 x 9.5Gb with the labeling I tried a few options, initially as how I wanted it to be set out; swap 512Mb / had 1Gb /var had 500Mb /usr had 1Gb and the rest for /home I left the second partition for now, that will hold my music collection.. any suggestions will be greatly appreciated! TIA nik [tm] ·´¯`·.¸¸..><((((º>.·´¯`·.¸¸.·´¯`·.¸ ><((((º>`·.¸¸.·´¯`·.¸><((((º>`·.¸ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 5:48:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.nc.rr.com (fe7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id A793637B402 for ; Thu, 24 Jan 2002 05:48:02 -0800 (PST) Received: from i8k.babbleon.org ([66.57.85.154]) by mail7.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Thu, 24 Jan 2002 08:46:42 -0500 Received: by i8k.babbleon.org (Postfix, from userid 111) id F16D93F56; Thu, 24 Jan 2002 08:45:52 -0500 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: bastill@sa.apana.org.au, Subject: Re: A question from a convert from Windows to FreeBSD Date: Thu, 24 Jan 2002 08:45:52 -0500 X-Mailer: KMail [version 1.3] References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> <02012419032304.01209@BAPhD.gihon.org.au> In-Reply-To: <02012419032304.01209@BAPhD.gihon.org.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020124134552.F16D93F56@i8k.babbleon.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday 24 January 2002 03:33 am, Brian Astill wrote: > On Wednesday 23 January 2002 04:49, Douglas R. Spindler wrote: > > I've been in the industry for 10 years now and have seen the light of > > FreeBSD. I know a few Unix commands and know DOS very well. > > > > Here's my question, why do you guys make converting so difficult? > > An interesting question, and I note that of the replies I have seen, > only Bob Geisen seems to understand the issue. > > You would think that installing from CD (the most obvious way, IMHO), > that the install procedure which can, and does, find your network > card and set it up correctly does NOT find your modem. (It doesn't find > your sound card either, but I guess you can do without sound) > FreeBSD with its ports collection virtually depends on your Internet > access, but leaves the modem setup to you. Go figure. Hmmm . . . I admit that as one of the people reading the thread I was unaware of that issue. Not because I am Unix literate (though I am; I first used BSD Unix more than two decades ago), but rather because I have a cable modem, which presents itself to the computer as a network card. I think that network cards are setup automatically by the install because it's plausible to do an install over the network using a network card, but doing one over a modem (even at 56K) would be preprosterous. So the problem isn't so much that the *install* is lame (Windows installs don't, in my experience, set up modems, either); but rather that the POST-install environment doesn't offer any "wizards" to set up the various hardware. I'd agree that this is a weakness compared to Windows. Of course there may be some packages that do this sort of thing, but I'm not familiar with any. I *can* tell you that Linux (I'd especially recommend Mandrake for this sort of thing) *does* have lots of wizards and similar tools for configuring your system. I personally dislike such things and in fact I switched back to FreeBSD from Mandrake Linux largely because Mandrake had gotten entirely too "user friendly" for my taste. (Meaning that I couldn't *find* the scripts so I could set things up for myself, so hidden were they under all the wizards and other GUI crud.) But if you are looking for a Unixy system and is more stable than Windows and you want more wizards and hand-holding than FreeBSD, I'd recommend you look into Linux, especially Mandrake Linux. (RedHat, though a very popular distribution in the USA, lags way behind in this area. Slackware deliberately avoids that sort of thing, and would be quite FreeBSDlike in that regard. The myriad of Linux distributions is a confusing aspect of Linux.) I hope that FreeBSD will get there someday but I agree it's not there yet. And of course I hope that it gets there by having somebody write nice wizards on top of what we have now rather than by changing things around to support the GUIs, which is unfortunately what Mandrake seems to have done. > The problem seems to be that a high proportion of people installing > FreeBSD are Un*x literate, and are not operating on the same wavelength > as the converter from WinDOS. Such people access the Internet through > a server, not from their own modem, I suppose. Hence no automatic > support for modems. > > I had trouble using X as a user. The solutions offered - like "install > Xwrapper" (which already existed on my system) - were unusable by me. > A knowledgeable friend gave me the commands to change the mode > (whatever that means) of the Xserver. That worked just fine on my > single-user system. He understood whereas freebsd-questions did not. > Not a criticism, just a comment. Something was squirrly on your system, and I wish we could have figured out what it was so that it wouldn't bite others in the future. Installing Xwrapper is *supposed* to "just make it work." It did for me. I didn't have to chmod (which means to change permissions, by the way--not sure why it's called "chmod") or anything else to get it to work for a regular user, and I have no idea why it shouldn't do the same for you. OTOH, I knew about chmod and saw your post (and even responded), but didn't mention it because I wanted to "solve the mystery" and because Xwrapper *should* have worked, so I guess I'm "guilty as charged" in seeing things from the developer/system point of view, being at least as interested in helping fix the system as I was in getting you going right then. I'll try personally to be a little more sensitive in the future to helping somebody out of the immediate crisis as well as the long-term perspective. Though I still suspect that if you'd un-instlaled and re-installed Xwrapper it might have fixed things up . . . or did you try that? > Basically, help needs to be offered at the level of the enquirer, not > at the level of the answerer. That seems to be the issue almost > wherever one goes to find out about FreeBSD. This seems to be to be a fact of the human condition rather than so much of FreeBSD. And I know that there are evangelists for FreeBSD who'd like to see it take over the world who will be dismayed at this posting of mine, but I think that it's better to steer people to something that will make them happy than to try to pretend that FreeBSD does what it doesn't do. It's great if you want to have total control and edit scripts and such-like; if you want wizards, you probably want to go elsewhere. (At least for now). (Though Gnome/Enlightenment might have wizards. I thought that KDE would but in quickly poking around I don't see any modem wizards -- but I don't know; I haven't ever used a modem on my last couple of computers, and perhaps KDE is so clever that it detects the fact that there is no modem and doesn't present the wizards to control what isn't there.) -- Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org -------> Free Dmitry Sklyarov! (let him go home) <----------- http://www.eff.org http://www.programming-freedom.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 6:20: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtpproxy2.mitre.org (smtpproxy2.mitre.org [128.29.154.90]) by hub.freebsd.org (Postfix) with ESMTP id 1C4F737B400 for ; Thu, 24 Jan 2002 06:19:57 -0800 (PST) Received: from avsrv2.mitre.org (avsrv2.mitre.org [128.29.154.4]) by smtpproxy2.mitre.org (8.11.3/8.11.3) with ESMTP id g0OEJqc07451; Thu, 24 Jan 2002 09:19:52 -0500 (EST) Received: from MAILHUB1 (mailhub1.mitre.org [129.83.20.31]) by smtpsrv2.mitre.org (8.11.3/8.11.3) with ESMTP id g0OEJpi05492; Thu, 24 Jan 2002 09:19:51 -0500 (EST) Received: from dhcp-105-164.mitre.org (128.29.105.164) by mailhub1.mitre.org with SMTP id 8946864; Thu, 24 Jan 2002 09:19:24 -0500 Message-ID: <3C501806.F9DE2049@mitre.org> Date: Thu, 24 Jan 2002 09:19:50 -0500 From: Jason Andresen Organization: The MITRE Corporation X-Mailer: Mozilla 4.75 [en]C-20000818M (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Joe & Fhe Barbish Cc: FBSD Questions Subject: Re: New IBM drive setting problem? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Joe & Fhe Barbish wrote: > > Here is my advice, since you have only one device per motherboard > ide controller this config should work, this means you have some > thing incorrect with the hardware. Open up the box and check out > that the components are plugged in the correct sockets on the > motherboard, that you are not using a 33 wire ribbon to the hard > drive, get the mfg and model number off the id plate of the HD and > look it up on the mfg web page to verify it's 100, there is a visual > difference in ide ribbons, 33 has bigger wires and 66 has smaller > wires and 66 of them. I do not know about 100 but it may also have a > special ribbon. Check with motherboard manufacture web page for a bios, > flash update and verify that you motherboard model does support ATA/100. > > It's time you play detective. Sorry, I thought I'd mentioned all of this in the original email: The hard drive is an IBM 60GXP 40GB HD (as the probed model number indicates). It supports up to ATA100. The cable is an ATA100 compliant (80 conductor) cable. Hmm. There appears to be a new BIOS on the website, but it only claims to fix problems with the Athlon XP 2000+. I'll try installing it anyway to see if that makes a difference. The Motherboard is a SolTek SL-75DRV2 which according to the webpage "Supports Ultra ATA 100/66/33". What seems really strange to me is how the DVD-ROM comes up as ATA66 (that's the maximum it can support) while the Hard Drive comes up ATA33. I'm really stumped on this myself. -- \ |_ _|__ __|_ \ __| Jason Andresen jandrese@mitre.org |\/ | | | / _| Network and Distributed Systems Engineer _| _|___| _| _|_\___| Office: 703-883-7755 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 7: 0:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20710.mail.yahoo.com (web20710.mail.yahoo.com [216.136.226.183]) by hub.freebsd.org (Postfix) with SMTP id 99C0637B402 for ; Thu, 24 Jan 2002 07:00:49 -0800 (PST) Message-ID: <20020124150049.59424.qmail@web20710.mail.yahoo.com> Received: from [203.197.90.40] by web20710.mail.yahoo.com via HTTP; Thu, 24 Jan 2002 07:00:49 PST Date: Thu, 24 Jan 2002 07:00:49 -0800 (PST) From: abhijit vaidya Subject: null rpc To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-686002013-1011884449=:59307" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --0-686002013-1011884449=:59307 Content-Type: text/plain; charset=us-ascii Respected Sir/Madam, I want to know how to invoke NULL RPC ( RPC 0) of NFS on client side? it is the RPC to which the NFS server responds if it is alive. I want to check that NFS server is alive or not on NFS client.Please explain me how to do this.This checking is required for my undergraduate project in freebsd. Thanking all in anticipation, Abhijit Vaidya. --------------------------------- Do You Yahoo!? Yahoo! Auctions Great stuff seeking new owners! Bid now! --0-686002013-1011884449=:59307 Content-Type: text/html; charset=us-ascii

Respected Sir/Madam,

     I want to know how to invoke NULL RPC ( RPC 0) of NFS on client side? it is the RPC to which the NFS server responds if it is alive. I want to check that NFS server is alive or not on NFS client.Please explain me how to do this.This checking is required for my undergraduate project in freebsd.

Thanking all in anticipation, 

                                                                                   Abhijit Vaidya.



Do You Yahoo!?
Yahoo! Auctions Great stuff seeking new owners! Bid now! --0-686002013-1011884449=:59307-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 7: 8:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20105.mail.yahoo.com (web20105.mail.yahoo.com [216.136.226.42]) by hub.freebsd.org (Postfix) with SMTP id 3055437B404 for ; Thu, 24 Jan 2002 07:08:17 -0800 (PST) Message-ID: <20020124150816.16426.qmail@web20105.mail.yahoo.com> Received: from [24.100.124.207] by web20105.mail.yahoo.com via HTTP; Thu, 24 Jan 2002 10:08:16 EST Date: Thu, 24 Jan 2002 10:08:16 -0500 (EST) From: Nicole Kok Subject: questions about using script To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello everybody I want to check our ip addressess are valid in the network I have a ip addresses file as belows eg: 192.168.0.1 192.168.0.2 192.168.0.3 . . . 192.168.0.200 How can I write script to ping 192.168.0.1 > 192-168-0-1 & ping 192.168.0.2 > 192-168-0.2 & ping 192.168.0.3 > 192-168-0.3 & Thank you ______________________________________________________________________ Web-hosting solutions for home and business! http://website.yahoo.ca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 7:21:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from support.euronet.nl (support.euronet.nl [194.134.32.134]) by hub.freebsd.org (Postfix) with ESMTP id 8BB3637B416 for ; Thu, 24 Jan 2002 07:21:14 -0800 (PST) Received: (from pieterw@localhost) by support.euronet.nl (8.11.3/8.11.0) id g0OFLDb88836 for freebsd-questions@freebsd.org; Thu, 24 Jan 2002 16:21:13 +0100 (CET) Date: Thu, 24 Jan 2002 16:21:13 +0100 From: Pieter Westland To: freebsd-questions@freebsd.org Subject: Reboot after panic Message-ID: <20020124162113.A84947@support.euronet.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-OS: FreeBSD support.euronet.nl 4.3-RELEASE FreeBSD 4.3-RELEASE X-URL: http://support.euronet.nl/~pieterw X-Editor: vim X-Organization: None X-Mission-Statement: We strive to proactively integrate ethical technology to allow us to synergistically engineer economically sound solutions. Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, My 4.4-STABLE machine had a strange reboot a few minutes ago: Jan 24 16:05:33 eniac /kernel: panic: clist reservation botch Jan 24 16:05:33 eniac /kernel: Jan 24 16:05:33 eniac /kernel: syncing disks... 7 Jan 24 16:05:33 eniac /kernel: done Jan 24 16:05:33 eniac /kernel: panic: clist reservation botch Jan 24 16:05:33 eniac /kernel: Uptime: 10d0h45m43s Jan 24 16:05:33 eniac /kernel: Automatic reboot in 15 seconds - press a key on the console to abort Jan 24 16:05:33 eniac /kernel: --> Press a key on the console to reboot <-- Jan 24 16:05:33 eniac /kernel: Rebooting... Nothing strange happened, but still this reboot and these messages. In the mailing-list archives I could not find anything about this, does someone have an idea? Unfortunately I do not have any memdumps or something. Pieter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 7:30:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web14607.mail.yahoo.com (web14607.mail.yahoo.com [216.136.224.87]) by hub.freebsd.org (Postfix) with SMTP id 330E537B417 for ; Thu, 24 Jan 2002 07:30:07 -0800 (PST) Message-ID: <20020124153003.50010.qmail@web14607.mail.yahoo.com> Received: from [66.156.9.100] by web14607.mail.yahoo.com via HTTP; Thu, 24 Jan 2002 07:30:03 PST Date: Thu, 24 Jan 2002 07:30:03 -0800 (PST) From: Jerry Murdock Subject: Re: interscan query To: daverk@epix.net, freebsd-questions@freebsd.org In-Reply-To: <01a701c1a4e7$8b6a88a0$0201a8c0@itraktech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --- "Dave Kaufman" wrote: > i work for a small college and we need to get some protection for incoming > and outgoing email. my boss has settled on Interscan and got a compag > proliant dl360 rack mount unit to run it on. we tried installing > Mandrake-Linux 7.2 but it didn't like the dual integral nics at all. so > just for the halibut i talked him into letting me try my freebsd 4.4 Release. > came up beautifully. > > now i need to get the Interscan running. according to the documentation it's > been tested with Red Hat 6.0. i installed linux compatibility. can i just > follow the directions for installing it? apparently it runs its own > installation program. i don't know enough about this to know if that's > likely to work. > > i apologize for asking this before i've had a problem but the list-serve > won't accept emails from my mail server at work so i have to ask from home > and i need to get this thing running today. > > if anybody has had experience with Interscan on freebsd i'd appreciate > hearing about it. > I run the FTP and HTTP scanners under FBSD without problems, but not the SMTP scanner. It will probably work as well(I've never tried it - mail scanning is done elsewhere), but expect to do some tweaking. First: Tell Trend you need a FreeBSD version. It may not do any good, but can't hurt. Then, quick notes for installing: Create a linux-like /etc/rc.d/init.d directory structure. This should be OK under either /etc or /compat/linux/etc, but it needs to be there for the install to run. The install will want a copy of zcat in /bin, just create a link to /user/bin/zcat. ** Use the linux (/compat/linux/bin/sh) sh to run the install script. ** This is to make the script think we are installing under linux. After install there will need to be some script cleanups, mainly related to ps command arguments, specifically in isfunctions and daemonhup.sh. Also it requires a copy of mail or mailx(can't remember which) in /bin. I just created a symlink to /usr/bin/mail. You need to understand how linux compatibility works, specifically wrt /compat/linux directory mapping. The install may put parts under / and /compat/linux. You may want to clean up the install by keeping all the parts under the same tree, it's just a matter of a few mv's. Jerry __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 7:33:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from nic.upatras.gr (nic.upatras.gr [150.140.129.30]) by hub.freebsd.org (Postfix) with SMTP id 89FB937B402 for ; Thu, 24 Jan 2002 07:32:59 -0800 (PST) Received: (qmail 1623 invoked from network); 24 Jan 2002 15:29:47 -0000 Received: from dialup3-ceid-dialinpool-5.upatras.gr (HELO hades.hell.gr) (root@150.140.128.197) by nic.upatras.gr with SMTP; 24 Jan 2002 15:29:47 -0000 Received: (from charon@localhost) by hades.hell.gr (8.11.6/8.11.6) id g0OEZZO05630; Thu, 24 Jan 2002 16:35:35 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Thu, 24 Jan 2002 16:35:34 +0200 From: Giorgos Keramidas To: Michael E Mercer Cc: freebsd-questions@freebsd.org Subject: Re: three questions regarding hard drives... Message-ID: <20020124143533.GA5184@hades.hell.gr> References: <3C4C9F10.FBD0B1F@nc.rr.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+HP7ph2BbKc20aGI" Content-Disposition: inline In-Reply-To: <3C4C9F10.FBD0B1F@nc.rr.com> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --+HP7ph2BbKc20aGI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2002-01-21 18:06:56, Michael E Mercer wrote: > Hello all, > > I am thinking of buying an 80 G HD to replace the two 8 G HDs that > I am using for Freebsd. > > First question: Is 80 too big for FreeBSD? Should I use a smaller > HD? What is the maximum size for a HD that FreeBSD can use? OK OK, > three questions in one, but anyone that has taken a physics test > should be used to this. :P I'm using for more than 1.5 year now a pair of 45 Gb disks, and FreeBSD works like a charm with them. There are limits to the maximum filesystem that UFS (the default BSD filesystem) can use, but they're set way up higher, in the TeraByte part of the world, IIRC. > Second question: What is your recommendation for partitioning? I > know this is entirely a personal opinion, however maybe things have > changed since I last setup my current system. This is highly a matter of personal taste, and arguments can be given for both extreme cases of a) a huge / filesystem that holds all your data in one place, and b) many smaller partitions, with /var, /usr, /home, /usr/obj, /usr/ports, /usr/src and other directories set in their own separate partitions. Although this is high opportunity for anyone to flame me, I'd just describe what I did on those two 45 Gb drives I mentioned earlier. I made a 200 Mb /, a 1 Gb /var, and a 4 Gb /usr on the first disk, leaving the rest for /home. The second disk is split in two equal parts, mounted under /c and /d, with /c holding various CVS repositories and checked out sources, and /d is the 'playground' full of mp3, and other random downloads I've made. Now, after about a year and a half later, I'd probably join /c and /d with /home using ccd(4) or vinum(8) to a large /home, but I'm too lazy to dump/restore everything using tapes. --=20 Giorgos Keramidas . . . . . . . . . keramida@{ceid.upatras.gr,freebsd.org} FreeBSD Documentation Project . . . http://www.freebsd.org/docproj/ FreeBSD: The power to serve . . . . http://www.freebsd.org/ --+HP7ph2BbKc20aGI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8UBu11g+UGjGGA7YRAhuVAKCaSD7fdiqJ4oU461nNBBNwUGpsvQCeKBfv UyoMvAfUX1jFHHIF5flH/H4= =qXcd -----END PGP SIGNATURE----- --+HP7ph2BbKc20aGI-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 7:49:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from bedroom1.vagner.com (vsat-148-63-135-179.c2.sb4.mrt.starband.net [148.63.135.179]) by hub.freebsd.org (Postfix) with ESMTP id 34D1837B400 for ; Thu, 24 Jan 2002 07:49:09 -0800 (PST) Received: from there (office1.vagner.com [192.168.0.5]) by bedroom1.vagner.com (8.11.6/8.11.6) with SMTP id g0OFoxi42834 for ; Thu, 24 Jan 2002 08:51:04 -0700 (MST) (envelope-from george@vagner.com) Message-Id: <200201241551.g0OFoxi42834@bedroom1.vagner.com> Content-Type: text/plain; charset="iso-8859-1" From: george To: questions@freebsd.org Subject: apache message Date: Thu, 24 Jan 2002 08:50:03 -0700 X-Mailer: KMail [version 1.3] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG i am getting a message when starting apache, anyone know what it might be and how to fix it. below is the message.... [Thu Jan 24 08:41:57 2002] [notice] Accept mutex: flock (Default: flock) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 8: 3:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.mho.com (smtp.mho.net [64.58.4.6]) by hub.freebsd.org (Postfix) with SMTP id A221837B416 for ; Thu, 24 Jan 2002 08:03:39 -0800 (PST) Received: (qmail 47108 invoked from network); 24 Jan 2002 16:01:39 -0000 Received: from mho-internal.mho.net (HELO michaels) (64.58.2.6) by smtp.mho.net with SMTP; 24 Jan 2002 16:01:39 -0000 From: "Michael Schumacher" To: Subject: strange question Date: Thu, 24 Jan 2002 09:03:01 -0700 Message-ID: <000a01c1a4f0$99921ac0$4e010c0a@mho.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000B_01C1A4B5.ED3342C0" 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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000B_01C1A4B5.ED3342C0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Is there any way to install freebsd with out a floppy drive and knowing the cd rom drive can=92t beset to be booted from(its not a option on my laptop)? If there was a way to install freebsd from windows or from dos that would be great. =20 Michael Schumacher HYPERLINK "mailto:mike@mho.com"mike@mho.com Technical Support Specialist MHO Networks HYPERLINK "http://mho.net/"http://mho.net HYPERLINK "mailto:support@mho.net"support@mho.net=20 Phone: 303.692.9409 Fax: 303.692.8936 =20 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.313 / Virus Database: 174 - Release Date: 1/2/02 =20 ------=_NextPart_000_000B_01C1A4B5.ED3342C0 Content-Type: text/html; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable

Is there any way to install freebsd with out a floppy = drive and knowing the cd rom drive can=92t beset to be booted from(its not a option on my laptop)? If there was a way to install freebsd from windows = or from dos that would be great.

 

Michael = Schumacher

mike@mho.com

Technical Support Specialist
 MHO Networks
 
http://mho.net
 
support@mho.net
 
Phone: = 303.692.9409
 Fax: 303.692.8936

 


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.313 / Virus Database: 174 - Release Date: 1/2/02

------=_NextPart_000_000B_01C1A4B5.ED3342C0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 8: 8:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns2.worldgatein.com (ns2.worldgatein.com [203.109.64.24]) by hub.freebsd.org (Postfix) with ESMTP id E47C337B41D for ; Thu, 24 Jan 2002 08:08:08 -0800 (PST) Received: from rivendell.worldgatein.net (interoffice.worldgatein.net [203.109.64.31]) by ns2.worldgatein.com (Postfix) with ESMTP id 34F4EBDF2 for ; Thu, 24 Jan 2002 21:30:37 +0530 (IST) Received: by rivendell.worldgatein.net (Postfix, from userid 1001) id 0C07432609; Thu, 24 Jan 2002 21:41:01 +0530 (IST) Date: Thu, 24 Jan 2002 21:41:01 +0530 From: Devdas Bhagat To: questions@freebsd.org Subject: Re: email with qmail? or something else that's secure? Message-ID: <20020124214100.C91691@rivendell.worldgatein.net> Reply-To: Devdas Bhagat Mail-Followup-To: questions@freebsd.org References: <20020124122336.P10869@xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020124122336.P10869@xs4all.nl>; from rene@xs4all.nl on Thu, Jan 24, 2002 at 12:23:36PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 24/01/02 12:23 +0100, rene@xs4all.nl wrote: > I've taken the big dip into mailhandling, and definately don't want to run > something monolithic as sendmail. I've sorta chosen qmail on good faith and > after seeing it's nicely compartimentalized (main reason).. Not a bad choice, but I prefer postfix. Its a bit nicer and easier for me to handle :). > however, now that I read the install manuals, it seems to deviate from > standards quite a whole lot. It does handle (E)SMTP. > my question: is this a problem, and if so, what are my alternatives? > I've heard of postfix, but haven't look at it in detail yet. Qmail works, so does postfix. > my demands for my mail-handling software are in order of priority > * reliability Postfix yes. > * security Postfix yes > * Maildir support Postfix, yes Responsive author: Postfix yes. Devdas Bhagat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 8: 9:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id 7B6B637B400 for ; Thu, 24 Jan 2002 08:09:38 -0800 (PST) Received: from morello ([12.228.100.37]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020124160938.JDUI3578.rwcrmhc52.attbi.com@morello> for ; Thu, 24 Jan 2002 16:09:38 +0000 From: "Dejan Nikic" To: Subject: Serbo-Croatian Date: Thu, 24 Jan 2002 08:09:38 -0800 Message-ID: <000001c1a4f1$86bd21a0$6401a8c0@morello> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0001_01C1A4AE.7899E1A0" 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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0001_01C1A4AE.7899E1A0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi, I would like to know if anyone knows of any projects on translating FreeBSD to Serbo-Croatian? ------=_NextPart_000_0001_01C1A4AE.7899E1A0 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Message
Hi,
 
I = would like to know=20 if anyone knows of any projects on translating FreeBSD to=20 Serbo-Croatian?
------=_NextPart_000_0001_01C1A4AE.7899E1A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 8:15:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id C3FCD37B402 for ; Thu, 24 Jan 2002 08:15:36 -0800 (PST) Received: from dialup-166.90.85.208.dial1.chicago1.level3.net ([166.90.85.208] helo=pegasus) by gull.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16TmXG-0001ds-00; Thu, 24 Jan 2002 08:15:34 -0800 Message-ID: <003a01c1a4f2$59f73a60$0100a8c0@pegasus> From: "Bob Giesen" To: "Douglas R. Spindler" , References: <002601c1a47d$a0248620$6600640a@attbi.com> Subject: Re: A question from a convert from Windows to FreeBSD Date: Thu, 24 Jan 2002 10:15:32 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG CompUSA still carries the FreeBSD PowerPak (sic) -- at least for now. (Listed price is $69.99.) I just bought one in Naperville, Illinois, yesterday. I found out they had it via a search utility on compusa.com. If you do a search on a product and get a hit, they have a utility that allows you to enter a zip code and it will tell you whether it's in stock in any stores in your area. I entered a Frisco zip (94105) and it showed three stores that supposedly have it (downtown S.F. ((415) 391-9778), San Bruno ((650) 244-9980), and San Rafael ((415) 482-9199)) and a couple more that are out of it (Emeryville & Concord). Good luck. ----- Original Message ----- From: Douglas R. Spindler To: freebsd-questions@FreeBSD.ORG Sent: Wednesday, January 23, 2002 8:20 PM Subject: Re: A question from a convert from Windows to FreeBSD To all of you that have offered assistance, thank you very much. It was suggested that I support FreeBSD in the way of buying a copy. I thought I would oblige. I found the mall home page, but wanted to pick up a copy today. I found a page saying I could pick up a copy at CompUSA or Fry's. I visited two Fry's stores today, couldn't find it on the shelf, and asked 5 different people. They told me after looking in their computers, "Product has been discontinued". (I took this to mean they have discontinued the product.) I then visited two CompUSA stores, same story, "product discontinued". I then visited 2 Borders Book stores.... nothing. And a Barnes & Nobel, again nothing. This is a real bummer as I have an application I wanted to get running by the weekend. I'm not looking for comments, I'm just letting you know my experience. I have not given up, just been delayed. I do have one question, is there a Users Group in the SF Bay Area/East Bay? Thanks again for everyone's support. Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 8:20:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id AC78737B42A for ; Thu, 24 Jan 2002 08:20:08 -0800 (PST) Received: from dialup-166.90.85.208.dial1.chicago1.level3.net ([166.90.85.208] helo=pegasus) by gull.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16Tmbd-0007gf-00; Thu, 24 Jan 2002 08:20:06 -0800 Message-ID: <004401c1a4f2$fba01da0$0100a8c0@pegasus> From: "Bob Giesen" To: "Douglas R. Spindler" , References: <002601c1a47d$a0248620$6600640a@attbi.com> <003a01c1a4f2$59f73a60$0100a8c0@pegasus> Subject: Re: A question from a convert from Windows to FreeBSD Date: Thu, 24 Jan 2002 10:20:03 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Oh, btw, the site shows the CompUSA SKU to be 288010 nad the Mfg Part # to be 30062. My box shows the bar code to be 781571 763051 and the ISBN as 1-57176-305-8. The ISBN should help if you want to ask a bookstore employee to do a positive search. ----- Original Message ----- From: "Bob Giesen" To: "Douglas R. Spindler" ; Sent: Thursday, January 24, 2002 10:15 AM Subject: Re: A question from a convert from Windows to FreeBSD > CompUSA still carries the FreeBSD PowerPak (sic) -- at least for now. > (Listed price is $69.99.) I just bought one in Naperville, Illinois, > yesterday. I found out they had it via a search utility on compusa.com. If > you do a search on a product and get a hit, they have a utility that allows > you to enter a zip code and it will tell you whether it's in stock in any > stores in your area. I entered a Frisco zip (94105) and it showed three > stores that supposedly have it (downtown S.F. ((415) 391-9778), San Bruno > ((650) 244-9980), and San Rafael ((415) 482-9199)) and a couple more that > are out of it (Emeryville & Concord). > Good luck. > > ----- Original Message ----- > From: Douglas R. Spindler > To: freebsd-questions@FreeBSD.ORG > Sent: Wednesday, January 23, 2002 8:20 PM > Subject: Re: A question from a convert from Windows to FreeBSD > > > To all of you that have offered assistance, thank you very much. > > It was suggested that I support FreeBSD in the way of buying a copy. I > thought I would oblige. I found the mall home page, but wanted to pick up a > copy today. I found a page saying I could pick up a copy at CompUSA or > Fry's. > > I visited two Fry's stores today, couldn't find it on the shelf, and asked 5 > different people. They told me after looking in their computers, "Product > has been discontinued". (I took this to mean they have discontinued the > product.) > > I then visited two CompUSA stores, same story, "product discontinued". > > I then visited 2 Borders Book stores.... nothing. And a Barnes & Nobel, > again nothing. > > This is a real bummer as I have an application I wanted to get running by > the weekend. > > I'm not looking for comments, I'm just letting you know my experience. > > I have not given up, just been delayed. > > I do have one question, is there a Users Group in the SF Bay Area/East Bay? > > Thanks again for everyone's support. > > Doug > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 8:29: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.27in.tv (roc-66-24-112-7.rochester.rr.com [66.24.112.7]) by hub.freebsd.org (Postfix) with ESMTP id 1F86237B404 for ; Thu, 24 Jan 2002 08:29:02 -0800 (PST) Received: (from root@localhost) by mail.27in.tv (8.11.6/8.11.6) id g0OGT0337645; Thu, 24 Jan 2002 11:29:00 -0500 (EST) (envelope-from cjm2@earthling.net) Received: from 27in.tv (roc-66-24-112-7.rochester.rr.com [66.24.112.7]) by mail.27in.tv (8.11.6/8.11.6av) with SMTP id g0OGSwU37635; Thu, 24 Jan 2002 11:28:58 -0500 (EST) (envelope-from cjm2@earthling.net) Received: from 216.153.202.102 (SquirrelMail authenticated user cjm2) by www1.27in.tv with HTTP; Thu, 24 Jan 2002 11:28:58 -0500 (EST) Message-ID: <1804.216.153.202.102.1011889738.squirrel@www1.27in.tv> Date: Thu, 24 Jan 2002 11:28:58 -0500 (EST) Subject: Re: apache message From: "C J Michaels" To: In-Reply-To: <200201241551.g0OFoxi42834@bedroom1.vagner.com> References: <200201241551.g0OFoxi42834@bedroom1.vagner.com> X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal Cc: X-Mailer: SquirrelMail (version 1.2.4 [cvs]) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Google is your friend. Check out this link: http://www.apachelabs.org/apr-mbox/200106.mbox/% 3CPine.LNX.4.30.0106220816570.813-100000@koj.rkbloom.net%3E Also, http://httpd.apache.org/docs/mod/core.html#acceptmutex Also, this is a "[notice]" not an "[error]". There is nothing to fix. Although you could probably decrease your log level, if it really bothers you to see it. --Chris george said: > i am getting a message when starting apache, anyone know what it might > be and how to fix it. > > > below is the message.... > > > [Thu Jan 24 08:41:57 2002] [notice] Accept mutex: flock (Default: > flock) > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Chris "I'll defend to the death your right to say that, but I never said I'd listen to it!" -- Tom Galloway with apologies to Voltaire To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 8:51:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20101.mail.yahoo.com (web20101.mail.yahoo.com [216.136.226.38]) by hub.freebsd.org (Postfix) with SMTP id AD64737B402 for ; Thu, 24 Jan 2002 08:51:30 -0800 (PST) Message-ID: <20020124165130.93022.qmail@web20101.mail.yahoo.com> Received: from [24.100.124.207] by web20101.mail.yahoo.com via HTTP; Thu, 24 Jan 2002 11:51:30 EST Date: Thu, 24 Jan 2002 11:51:30 -0500 (EST) From: Nicole Kok Subject: Re: questions about using script To: bk Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <000901c1a4ed$e61cdc20$3ab2100c@sackofshi4ar8j> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear bk Thank you Can you give me some information about perl eg: example about this script Thank you --- bk wrote: > use perl > ----- Original Message ----- > From: "Nicole Kok" > Newsgroups: freebsd.questions > Sent: Thursday, January 24, 2002 9:08 AM > Subject: questions about using script > > > > > > Hello everybody > > > > I want to check our ip addressess are valid in the > > network > > > > > > I have a ip addresses file as belows > > > > > > > > eg: > > > > 192.168.0.1 > > 192.168.0.2 > > 192.168.0.3 > > . > > . > > . > > 192.168.0.200 > > > > How can I write script to ping 192.168.0.1 > > > 192-168-0-1 & > > ping 192.168.0.2 > 192-168-0.2 & > > ping 192.168.0.3 > 192-168-0.3 & > > > > > > Thank you > > > > > > > > > > > > > ______________________________________________________________________ > > > Web-hosting solutions for home and business! > http://website.yahoo.ca > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body > of the message > ______________________________________________________________________ Web-hosting solutions for home and business! http://website.yahoo.ca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 9: 0:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay02.roc.frontiernet.net (alteon01g.roc.frontiernet.net [66.133.130.237]) by hub.freebsd.org (Postfix) with SMTP id 9779137B404 for ; Thu, 24 Jan 2002 09:00:31 -0800 (PST) Received: (qmail 6375 invoked from network); 24 Jan 2002 17:00:30 -0000 Received: from unknown (HELO blacklamb.mykitchentable.net) ([207.173.227.80]) (envelope-sender ) by relay02.roc.frontiernet.net (qmail-ldap-1.03) with SMTP for ; 24 Jan 2002 17:00:30 -0000 Received: from tagalong (unknown [165.107.42.196]) by blacklamb.mykitchentable.net (Postfix) with SMTP id C3C1BEE5FD; Thu, 24 Jan 2002 09:00:27 -0800 (PST) Message-ID: <012001c1a4f8$9fb5eff0$c42a6ba5@lc.ca.gov> From: "Drew Tomlinson" To: "Brian T.Schellenberger" , , References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> <02012419032304.01209@BAPhD.gihon.org.au> <20020124134552.F16D93F56@i8k.babbleon.org> Subject: Re: A question from a convert from Windows to FreeBSD Date: Thu, 24 Jan 2002 09:00:27 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Brian T.Schellenberger" To: ; Sent: Thursday, January 24, 2002 5:45 AM Subject: Re: A question from a convert from Windows to FreeBSD > to chmod (which means to change permissions, by the way--not sure why it's > called "chmod") or anything else to get it to work for a regular user, and I It's called "chmod" because you are "changing the mode". Although the command will accept arguments like +r and -x, what you are actually doing is changing the numeric mode of a file. In each group, the "r" is worth 4, the "w" worth 2, and the "x" is worth 1. There are more such as the suid bit but these are the basics. So in this file, -rw-r--r-- 1 root wheel 11158 Apr 20 1998 pdf_sec.ps the mode is 644. And in this file, -r-xr-xr-x 1 root wheel 3545 Jan 8 11:30 znew the mode is 555. HTH, Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 9: 4: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fw.tovaris.com (fw-an0.tovaris.com [209.145.84.34]) by hub.freebsd.org (Postfix) with ESMTP id 2511937B416 for ; Thu, 24 Jan 2002 09:03:58 -0800 (PST) Received: from usda.intranet (proxy1.tovaris.com [209.145.84.44]) by fw.tovaris.com (8.11.6/8.11.6) with ESMTP id g0OH3uh48650 for ; Thu, 24 Jan 2002 12:03:56 -0500 (EST) (envelope-from jmalone@tovaris.com) From: "Josh Malone" To: freebsd-questions@FreeBSD.ORG Date: Thu, 24 Jan 2002 12:03:54 -0500 (EST) Message-ID: <20020124115505.L19496-100000@usda.intranet> Subject: Sysinstall hangs resolving IP for ftp install MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset="US-ASCII" Content-Transfer-Encoding: 7BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I recently begin using Baldwin and Saab's excellent 'pxeboot' to bootstrap a custom installation process. After much cussing at it, I finally have it TFTP pulling a (mostly GENERIC) kernel and custom mfsroot and booting into it. The machine then finds my install.cfg in the mfsroot and kicks it off to do an FTP install from our local mirror. However, once sysinstall kicks off the install.cfg, it hangs at the spot of "looking up ftp.intranet" trying to resolve our ftp server. Hitting -C at this point and restarting the installation makes it proceed normally but I'd like to fix this problem. Does anyone have any thoughts on what might cause this? Is sysinstall trying to look up the address before the interface is ready, perhaps? Could our ethernet switches be doing something bad behind our backs? I suppose it's also worth mentioning that sysinstall uses an IP address that is hard-coded into install.cfg. Any thoughts would be appreciated. -Josh Malone -------- In God we trust...everything else we use X.509 --------- Joshua Malone, Systems Administrator Phone: 434-245-5300 x119 Tovaris: The Digital Identity Company Fax: 434-245-5301 www.tovaris.com jmalone@tovaris.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 9: 8:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 1189937B417 for ; Thu, 24 Jan 2002 09:08:09 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16TnM7-0008KA-00 for questions@freebsd.org; Thu, 24 Jan 2002 17:08:07 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 14452118B; Thu, 24 Jan 2002 18:08:06 +0100 (CET) Date: Thu, 24 Jan 2002 18:08:05 +0100 From: Cliff Sarginson To: questions@freebsd.org Subject: Re: email with qmail? or something else that's secure? Message-ID: <20020124170805.GA1213@raggedclown.net> References: <20020124122336.P10869@xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020124122336.P10869@xs4all.nl> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 12:23:36PM +0100, rene@xs4all.nl wrote: > I've taken the big dip into mailhandling, and definately don't want to run > something monolithic as sendmail. I've sorta chosen qmail on good faith and > after seeing it's nicely compartimentalized (main reason).. > > however, now that I read the install manuals, it seems to deviate from > standards quite a whole lot. > > my question: is this a problem, and if so, what are my alternatives? > I've heard of postfix, but haven't look at it in detail yet. > > my demands for my mail-handling software are in order of priority > * reliability Postfix > * security Postfix > * Maildir support Postfix Worth a look at the blurb on www.postfix.org :) -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 9:16:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FE2537B402 for ; Thu, 24 Jan 2002 09:16:53 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16TnUa-000966-00 for questions@freebsd.org; Thu, 24 Jan 2002 17:16:52 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 3DD71118B; Thu, 24 Jan 2002 18:16:51 +0100 (CET) Date: Thu, 24 Jan 2002 18:16:51 +0100 From: Cliff Sarginson To: FBSD Questions Subject: Re: New IBM drive setting problem? Message-ID: <20020124171651.GC1213@raggedclown.net> References: <3C501806.F9DE2049@mitre.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3C501806.F9DE2049@mitre.org> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 09:19:50AM -0500, Jason Andresen wrote: > Joe & Fhe Barbish wrote: > > > > Here is my advice, since you have only one device per motherboard > > ide controller this config should work, this means you have some > > thing incorrect with the hardware. Open up the box and check out > > that the components are plugged in the correct sockets on the > > motherboard, that you are not using a 33 wire ribbon to the hard > > drive, get the mfg and model number off the id plate of the HD and > > look it up on the mfg web page to verify it's 100, there is a visual > > difference in ide ribbons, 33 has bigger wires and 66 has smaller > > wires and 66 of them. I do not know about 100 but it may also have a > > special ribbon. Check with motherboard manufacture web page for a bios, > > flash update and verify that you motherboard model does support ATA/100. > > > > It's time you play detective. > > Sorry, I thought I'd mentioned all of this in the original email: > > The hard drive is an IBM 60GXP 40GB HD (as the probed model number > indicates). It supports up to ATA100. I have one of these disks, it runs FreesBSD/ATA100 without any problems. So I doubt it's the disk. > The cable is an ATA100 compliant (80 conductor) cable. > Hmm. There appears to be a new BIOS on the website, but it only claims > to fix problems with the Athlon XP 2000+. I'll try installing it anyway > to see if that makes a difference. > The Motherboard is a SolTek SL-75DRV2 which according to the webpage > "Supports Ultra ATA 100/66/33". What seems really strange to me is how > the DVD-ROM comes up as ATA66 (that's the maximum it can support) while > the Hard Drive comes up ATA33. > > I'm really stumped on this myself. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 9:17:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from raiden.jasnetworks.net (raiden.jasnetworks.net [65.194.248.251]) by hub.freebsd.org (Postfix) with ESMTP id 8138037B427 for ; Thu, 24 Jan 2002 09:17:24 -0800 (PST) Received: from works ([192.168.0.2]) by raiden.jasnetworks.net (8.11.6/8.11.6) with ESMTP id g0OHHSj02010 for ; Thu, 24 Jan 2002 12:17:29 -0500 (EST) (envelope-from raiden23@netzero.net) Message-Id: <4.2.0.58.20020124121620.009e0100@pop.netzero.net> X-Sender: raiden23@pop.netzero.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Thu, 24 Jan 2002 12:22:51 -0500 To: freebsd-questions@FreeBSD.ORG From: Lord Raiden Subject: Strange routing issue Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ok, here's a weird one I ran into. Not sure how to fix it. Just installed a FreeBSD 4.5 "everything in one box" kind of server (aka it covers everything via one machine rather than several) for a client and for some strange reason it installed fine off the snapshots via FTP and everything was happy hunkey dorrey, until I decided to start updating things. Now I'm getting "no route to host" yet I can ping the gateway fine, and on a matching win2k box next to it I'm surfing and ftp'ing all over the place without a hitch. Now here's the catch. On their site they've got a Novell firewall/proxy server that they absolutely refuse to get rid of. All inbound and outbound traffic goes through that and for security reasons they refuse to abandon it. So I can only assume that I'm hitting the proxy and getting stopped, but if this was true, why did it work fine for the ftp install off of the floppy disks and why is it giving "no route to host" as though the gateway wasn't even connected, yet the same box, on the same hub can get to the internet fine. I swap drives and plop a win2k drive in the same machine and it routes fine. Swap drives (it has a swappable drive bay for quick exchange of operating system drives/data drives) and it's back to the "no route to host". Anyone got any ideas on this? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 9:19:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gye.impsat.net.ec (gye.impsat.net.ec [200.31.30.47]) by hub.freebsd.org (Postfix) with ESMTP id A02AC37B416 for ; Thu, 24 Jan 2002 09:19:36 -0800 (PST) Received: from gye.impsat.net.ec ([200.31.31.182]) by gye.impsat.net.ec (8.10.2+Sun/8.10.2) with SMTP id g0OHEqW06262 for ; Thu, 24 Jan 2002 12:14:58 -0500 (EST) Message-ID: <3C503F76.A9925C3B@gye.impsat.net.ec> Date: Thu, 24 Jan 2002 12:08:06 -0500 From: =?iso-8859-1?Q?Tribol=F3gica?= X-Mailer: Mozilla 4.73 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: freebsd 4.4 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG on superprobe i get: KDENABIO failed can not open video To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 9:28: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from catalyst.sasknow.net (catalyst.sasknow.net [207.195.92.130]) by hub.freebsd.org (Postfix) with ESMTP id AFA4A37B402 for ; Thu, 24 Jan 2002 09:28:01 -0800 (PST) Received: from localhost (ryan@localhost) by catalyst.sasknow.net (8.11.6/8.11.6) with ESMTP id g0OHTJQ43402; Thu, 24 Jan 2002 11:29:19 -0600 (CST) (envelope-from ryan@sasknow.com) X-Authentication-Warning: catalyst.sasknow.net: ryan owned process doing -bs Date: Thu, 24 Jan 2002 11:29:19 -0600 (CST) From: Ryan Thompson X-X-Sender: ryan@catalyst.sasknow.net To: Nicole Kok Cc: freebsd-questions@FreeBSD.ORG Subject: Re: questions about using script In-Reply-To: <20020124150816.16426.qmail@web20105.mail.yahoo.com> Message-ID: <20020124112238.V42409-100000@catalyst.sasknow.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Nicole Kok wrote to freebsd-questions@FreeBSD.ORG: > Hello everybody > > I want to check our ip addressess are valid in the > network > > How can I write script to ping 192.168.0.1 > > 192-168-0-1 & > ping 192.168.0.2 > 192-168-0.2 & > ping 192.168.0.3 > 192-168-0.3 & How about this? :-) Pass in hostname(s) as arguments #!/bin/sh PING="/sbin/ping -q -c 1 -t 2" if [ ! $1 ]; then echo "usage: $0 host ..." 1>&2 exit 1 fi while [ $1 ]; do if $PING $1 >/dev/null 2>&1; then echo "$1 is up" else echo "$1 is down" 1>&2 fi shift done - Ryan -- Ryan Thompson Network Administrator, Accounts SaskNow Technologies - http://www.sasknow.com #106-380 3120 8th St E - Saskatoon, SK - S7H 0W2 Tel: 306-664-3600 Fax: 306-664-1161 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 9:34:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fia168-94.dsl.hccnet.nl (fia168-94.dsl.hccnet.nl [62.251.94.168]) by hub.freebsd.org (Postfix) with ESMTP id DD6C337B400 for ; Thu, 24 Jan 2002 09:34:56 -0800 (PST) Received: by fia168-94.dsl.hccnet.nl (Postfix, from userid 1000) id BD693337; Thu, 24 Jan 2002 18:34:57 +0100 (CET) Content-Type: text/plain; charset="iso-8859-15" From: Simon Siemonsma To: rene@xs4all.nl Subject: Re: email with qmail? or something else that's secure? Date: Thu, 24 Jan 2002 18:34:57 +0100 X-Mailer: KMail [version 1.3.2] References: <20020124122336.P10869@xs4all.nl> In-Reply-To: <20020124122336.P10869@xs4all.nl> Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020124173457.BD693337@fia168-94.dsl.hccnet.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just recently, last weekend, I decided to jump into mailhandling also. After searching the internet I decided for postfix. Basically I wanted the same as you. What made me decide for postfix in the end was, that I understood it was easier to set-up. Actually it was really quit easy. I only decided not to use maildir, because my e-mail reader doesn't support it, and I didn't want an additional program to translate maildir to IMAP. I made the following set-up: postfix as my MTA, fetchmail to fetch my mail and Kmail as my mail reader. It is working fantastic. Groeten, Simon Siemosma On Thursday 24 January 2002 12:23, you wrote: > I've taken the big dip into mailhandling, and definately don't want to run > something monolithic as sendmail. I've sorta chosen qmail on good faith and > after seeing it's nicely compartimentalized (main reason).. > > however, now that I read the install manuals, it seems to deviate from > standards quite a whole lot. > > my question: is this a problem, and if so, what are my alternatives? > I've heard of postfix, but haven't look at it in detail yet. > > my demands for my mail-handling software are in order of priority > * reliability > * security > * Maildir support > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 9:40:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from nebula.anchoragerescue.org (cable-115-7-237-24.anchorageak.net [24.237.7.115]) by hub.freebsd.org (Postfix) with ESMTP id 71CA737B402 for ; Thu, 24 Jan 2002 09:40:07 -0800 (PST) Received: from there (galaxy.anchoragerescue.org [24.237.7.95]) by nebula.anchoragerescue.org (Postfix) with SMTP id 602B62F7; Thu, 24 Jan 2002 08:40:06 -0900 (AKST) Content-Type: text/plain; charset="iso-8859-1" From: Beech Rintoul To: rene@xs4all.nl, questions@freebsd.org Subject: Re: email with qmail? or something else that's secure? Date: Thu, 24 Jan 2002 08:40:06 -0900 X-Mailer: KMail [version 1.3] References: <20020124122336.P10869@xs4all.nl> In-Reply-To: <20020124122336.P10869@xs4all.nl> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020124174006.602B62F7@nebula.anchoragerescue.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday 24 January 2002 02:23 am, rene@xs4all.nl wrote: > I've taken the big dip into mailhandling, and definately don't want to run > something monolithic as sendmail. I've sorta chosen qmail on good faith and > after seeing it's nicely compartimentalized (main reason).. > > however, now that I read the install manuals, it seems to deviate from > standards quite a whole lot. > > my question: is this a problem, and if so, what are my alternatives? > I've heard of postfix, but haven't look at it in detail yet. > > my demands for my mail-handling software are in order of priority > * reliability > * security > * Maildir support > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Postfix! It's very easy to configure, but will handle large volumes with no problems. FreeBSD.org uses postfix, that should tell you something. Cheers, Beech -- ------------------------------------------------------------------- Beech Rintoul - IT Manager - Instructor - akbeech@anchoragerescue.org /"\ ASCII Ribbon Campaign | Anchorage Gospel Rescue Mission \ / - NO HTML/RTF in e-mail | P.O. Box 230510 X - NO Word docs in e-mail | Anchorage, AK 99523-0510 / \ ----------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 9:40:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from stereophonic.noops.org (adsl-63-195-97-84.dsl.snfc21.pacbell.net [63.195.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 4A63937B400 for ; Thu, 24 Jan 2002 09:40:28 -0800 (PST) Received: from localhost (tcannon@localhost) by stereophonic.noops.org (8.11.6/8.11.6) with ESMTP id g0OHeLa33876; Thu, 24 Jan 2002 09:40:21 -0800 (PST) (envelope-from tcannon@noops.org) X-Authentication-Warning: stereophonic.noops.org: tcannon owned process doing -bs Date: Thu, 24 Jan 2002 09:40:21 -0800 (PST) From: Thomas Cannon To: Lord Raiden Cc: Subject: Re: Strange routing issue In-Reply-To: <4.2.0.58.20020124121620.009e0100@pop.netzero.net> Message-ID: <20020124093555.I33619-100000@stereophonic.noops.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just because it can ping the gateway does not mean that it knows to use that machine as the gateway. While it all worked for the download, perhaps your /etc/rc.conf got borked somehow and the default route listing somehow didn't survive a reboot. What does 'netstat -r' say? -tcannon On Thu, 24 Jan 2002, Lord Raiden wrote: > Ok, here's a weird one I ran into. Not sure how to fix it. Just > installed a FreeBSD 4.5 "everything in one box" kind of server (aka it > covers everything via one machine rather than several) for a client and for > some strange reason it installed fine off the snapshots via FTP and > everything was happy hunkey dorrey, until I decided to start updating > things. Now I'm getting "no route to host" yet I can ping the gateway > fine, and on a matching win2k box next to it I'm surfing and ftp'ing all > over the place without a hitch. > > Now here's the catch. On their site they've got a Novell firewall/proxy > server that they absolutely refuse to get rid of. All inbound and outbound > traffic goes through that and for security reasons they refuse to abandon > it. So I can only assume that I'm hitting the proxy and getting stopped, > but if this was true, why did it work fine for the ftp install off of the > floppy disks and why is it giving "no route to host" as though the gateway > wasn't even connected, yet the same box, on the same hub can get to the > internet fine. I swap drives and plop a win2k drive in the same machine > and it routes fine. Swap drives (it has a swappable drive bay for quick > exchange of operating system drives/data drives) and it's back to the "no > route to host". > > Anyone got any ideas on this? > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 9:46:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from shu.shu-oneline.org (host1.shu-paradigm.org [211.6.195.138]) by hub.freebsd.org (Postfix) with SMTP id B803B37B404 for ; Thu, 24 Jan 2002 09:46:06 -0800 (PST) Received: (qmail 25136 invoked by uid 519); 24 Jan 2002 11:50:33 -0000 Delivered-To: neo-shuparadigm@shu-oneline.org Received: (qmail 25130 invoked from network); 24 Jan 2002 11:50:32 -0000 Received: from unknown (HELO po.mdf.co.jp) (hidden-user@202.227.68.21) by shu.shu-oneline.org with SMTP; 24 Jan 2002 11:50:32 -0000 Message-id: Date: Thu, 24 Jan 2002 15:14:16 +0900 Subject: planet project message mail paradigm ascension=?ISO-2022-JP?Q?__=1B$B$3$l$O9-Js$G$9=1B=28J?= ................ To: neo-shuparadigm@shu-oneline.org From: neo@shu-oneline.org (neo@shu-oneline.org) MIME-Version: 1.0 Content-type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG planet project $B$3$l$O9-Js$G$9(J http://www.shu-oneline.org/planet_P.html contact point tel:0176534584:E-mail:shuparadigm@infogeneratorpro.com paradigm work disseminator shu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 9:53: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from carbon.btinternet.com (carbon.btinternet.com [194.73.73.92]) by hub.freebsd.org (Postfix) with ESMTP id 426C637B436; Thu, 24 Jan 2002 09:52:32 -0800 (PST) Received: from host213-122-18-215.btinternet.com ([213.122.18.215] helo=rodson.com) by carbon.btinternet.com with smtp (Exim 3.22 #8) id 16TnwA-0000KP-00; Thu, 24 Jan 2002 17:45:23 +0000 From: "Rodson Universal" To: Subject: Port and Stevedoring Equipment For Sale and Wanted Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Thu, 24 Jan 2002 19:45:01 +0200 Content-Transfer-Encoding: 8bit Message-Id: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Attn : Stevedoring , crane and engineering dept. We buy and sell crawler and telescopic cranes 50-1000 tons Stevedoring equipment Port cranes equipment ,Shipyard equipment Container cranes and equipment Floating grab cranes , heavy lift cranes , dry docks and barges PLEASE CHECK OUR WEBSITE www.rodson.com We are always looking to buy port cranes and ship unloading systems , bagging plants , pneumatic grain unloaders , dry cargo unloaders , screw type unloaders , dry cargo unloading systems , dry powdered cement unloaders , rail mounted and rubber tyred ship-to-shore cranes , container cranes , grab cranes , coal discharging systems , Port pedastal whirley cranes ,container-handling forklifts and reachstackers , terminal tractors and trailers, electro-hydrauylic grabs 10-14 cu meter Please keep us informed of any equipment you have for sale and let us know your port equipment and stevedoring requirements thanks and regards connie sullivan Please reply to: sales@rodson.com RODSON UNIVERSAL INC www.rodson.com Tel +44 1444 412728 Fax +44 1444 415929 If you feel that you have received this e-mail in error or wish to unsubscribe to future mailings, please reply to this e-mail with "remove" in the subject header. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10: 8:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tharmas.rintrah.org (dhcp065-031-016-002.insight.rr.com [65.31.16.2]) by hub.freebsd.org (Postfix) with SMTP id 1CC7C37B402 for ; Thu, 24 Jan 2002 10:08:34 -0800 (PST) Received: (qmail 57325 invoked by uid 1000); 24 Jan 2002 18:11:12 -0000 Date: Thu, 24 Jan 2002 13:11:12 -0500 From: devin-freebsdquestions@rintrah.org To: freebsd-questions@freebsd.org Subject: kmymoney2 fails to build Message-ID: <20020124131112.A42220@tharmas.rintrah.org> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kmymoney keeps failing for me. I'm using the ports cvsuped from last night running on Freebsd 4.5-RC. All the dependencies were installed 3 or 4 days ago from the then current ports, but the build failed then in the same way. I'm stumped. Any ideas? Thanks, --devin attached is the output from 'make install' in /usr/ports/ Script started on Thu Jan 24 12:50:23 2002 # make install ===> Extracting for kmymoney2-0.3.6 >> Checksum OK for kmymoney2-0.3.6.tar.bz2. ===> kmymoney2-0.3.6 depends on executable: gmake - found ===> kmymoney2-0.3.6 depends on executable: autoconf213 - found ===> kmymoney2-0.3.6 depends on shared library: kdecore.4 - found ===> kmymoney2-0.3.6 depends on shared library: qt2.4 - found ===> Patching for kmymoney2-0.3.6 ===> Applying FreeBSD patches for kmymoney2-0.3.6 ===> Configuring for kmymoney2-0.3.6 creating cache ./config.cache checking host system type... i386--freebsd4.5 checking target system type... i386--freebsd4.5 checking build system type... i386--freebsd4.5 checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking whether gmake sets ${MAKE}... yes checking for working aclocal... found checking for working autoconf... found checking for working automake... found checking for working autoheader... found checking for working makeinfo... found checking for a C-Compiler... cc checking whether the C compiler (cc -O -pipe ) works... yes checking whether the C compiler (cc -O -pipe ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether cc accepts -g... yes checking how to run the C preprocessor... cc -E checking for a C++-Compiler... c++ checking whether the C++ compiler (c++ -O -pipe ) works... yes checking whether the C++ compiler (c++ -O -pipe ) is a cross-compiler... no checking whether we are using GNU C++... yes checking whether c++ accepts -g... yes checking whether c++ supports -fno-exceptions... yes checking whether c++ supports -fno-check-new... yes checking whether c++ supports -Wno-long-long... yes checking whether c++ supports -Wnon-virtual-dtor... yes checking whether c++ supports -fno-builtin... yes checking whether c++ supports -fexceptions... yes checking whether c++ supports -frtti... yes checking how to run the C++ preprocessor... c++ -E checking whether c++ supports -frepo... yes checking for ld used by GCC... /usr/libexec/elf/ld checking if the linker (/usr/libexec/elf/ld) is GNU ld... yes checking for /usr/libexec/elf/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognise dependant libraries... pass_all checking for ranlib... ranlib checking for strip... strip checking for Cygwin environment... no checking for mingw32 environment... no updating cache ./config.cache loading cache ./config.cache within ltconfig checking whether -lc should be explicitly linked in... (skipping, using no) no checking for objdir... .libs checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -fno-rtti -fno-exceptions ... yes checking whether the linker (/usr/libexec/elf/ld) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd4.5 ld.so checking command to parse /usr/bin/nm -B output... ok checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for dlopen in -ldl... no checking for dlopen... yes checking for dlfcn.h... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... no creating libtool updating cache ./config.cache loading cache ./config.cache loading cache ./config.cache within ltconfig checking host system type... i386--freebsd4.5 checking build system type... i386--freebsd4.5 ltcf-cxx: with_gcc=yes ; with_gnu_ld=yes checking for objdir... .libs checking for c++ option to produce PIC... -fPIC -DPIC checking if c++ PIC flag -fPIC -DPIC works... yes checking if c++ static flag -static works... yes checking if c++ supports -c -o file.o... yes checking if c++ supports -fno-rtti -fno-exceptions ... yes checking whether the linker (c++) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd4.5 ld.so checking command to parse /usr/bin/nm -B output... ok checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for dlfcn.h... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no appending configuration tag "CXX" to libtool checking for object suffix... o checking for executable suffix... no checking for msgfmt... /usr/local/bin/msgfmt checking for gmsgfmt... /usr/local/bin/msgfmt checking for xgettext... /usr/local/bin/xgettext checking for main in -lcompat... yes checking for crypt in -lcrypt... yes checking for the third argument of getsockname... socklen_t checking for dnet_ntoa in -ldnet... no checking for dnet_ntoa in -ldnet_stub... no checking for inet_ntoa... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for res_init... yes checking for killpg in -lucb... no checking size of int... 4 checking size of long... 4 checking size of char *... 4 checking for dlopen in -ldl... (cached) no checking for shl_unload in -ldld... no checking for extra includes... no checking for extra libs... added checking for libz... -lz checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for IceConnectionNumber in -lICE... yes checking for libXext... yes checking for libpng... -lpng -lz -lm checking for libjpeg6b... no checking for libjpeg... -ljpeg checking for Qt... libraries /usr/X11R6/lib, headers /usr/X11R6/include/qt2 checking for moc... /usr/X11R6/bin/moc2 checking for uic... /usr/X11R6/bin/uic checking for rpath... yes checking for KDE... libraries /usr/local/lib, headers /usr/local/include checking for KDE paths... defaults checking for dcopidl... /usr/local/bin/dcopidl checking for dcopidl2cpp... /usr/local/bin/dcopidl2cpp checking for mcopidl... /usr/local/bin/mcopidl checking for kdb2html... /usr/local/bin/kdb2html checking for artsc-config... /usr/local/bin/artsc-config checking for kde-config... /usr/local/bin/kde-config checking if developer-doc should be compiled... yes checking if doc should be compiled... yes checking if kmymoney2 should be compiled... yes checking if po should be compiled... yes updating cache ./config.cache creating ./config.status creating ./Makefile creating developer-doc/Makefile creating doc/Makefile creating doc/en/Makefile creating doc/images/Makefile creating kmymoney2/Makefile creating kmymoney2/dialogs/Makefile creating kmymoney2/icons/Makefile creating kmymoney2/icons/hicolor/Makefile creating kmymoney2/icons/hicolor/16x16/Makefile creating kmymoney2/icons/hicolor/16x16/actions/Makefile creating kmymoney2/icons/hicolor/22x22/Makefile creating kmymoney2/icons/hicolor/22x22/actions/Makefile creating kmymoney2/mymoney/Makefile creating kmymoney2/pics/Makefile creating kmymoney2/pics/toolbar/Makefile creating kmymoney2/widgets/Makefile creating po/Makefile creating config.h ===> Building for kmymoney2-0.3.6 cd . && gmake -f admin/Makefile.common configure.in ; gmake[1]: Entering directory `/scratch/ports/deskutils/kmymoney2/work/kmymoney2-0.3.6' gmake[1]: Leaving directory `/scratch/ports/deskutils/kmymoney2/work/kmymoney2-0.3.6' cd . && aclocal cd . && automake --foreign --include-deps ./Makefile ./Makefile.am:5: EXTRA_DIST multiply defined in condition TRUE EXTRA_DIST (User, where = 5) = { TRUE => kmymoney2.kdevprj AUTHORS COPYING ChangeLog INSTALL README TODO kmymoney2.lsm kmymoney2.spec readme-overview.txt ChangeLog.original } gmake: *** [Makefile.in] Error 1 *** Error code 2 Stop in /scratch/ports/deskutils/kmymoney2. *** Error code 1 Stop in /scratch/ports/deskutils/kmymoney2. *** Error code 1 Stop in /scratch/ports/deskutils/kmymoney2. *** Error code 1 Stop in /scratch/ports/deskutils/kmymoney2. # exit' > ^C # exit Script done on Thu Jan 24 12:51:05 2002 -- Mathematicians are like Frenchmen: whatever you say to them they translate into their own language, and forthwith it is something entirely different. -- Johann Wolfgang von Goethe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:16: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tharmas.rintrah.org (dhcp065-031-016-002.insight.rr.com [65.31.16.2]) by hub.freebsd.org (Postfix) with SMTP id 1BDCF37B416 for ; Thu, 24 Jan 2002 10:15:55 -0800 (PST) Received: (qmail 57812 invoked by uid 1000); 24 Jan 2002 18:18:34 -0000 Date: Thu, 24 Jan 2002 13:18:34 -0500 From: devin-freebsdquestions@rintrah.org To: Mike Meyer Cc: freebsd-questions@freebsd.org, adriankok2000@yahoo.com.hk Subject: Re: freebsd, openbsd, solaris Message-ID: <20020124131834.A57329@tharmas.rintrah.org> Mail-Followup-To: Mike Meyer , freebsd-questions@freebsd.org, adriankok2000@yahoo.com.hk References: <123874954@toto.iv> <15431.42213.644911.2374@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <15431.42213.644911.2374@guru.mired.org>; from mwm-dated-1011760229.941611@mired.org on Thu, Jan 17, 2002 at 10:30:29PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 17, 2002 at 10:30:29PM -0600, Mike Meyer wrote: > adrian kok types: > > Hello > > Can I put freebsd, openbsd, solaris 8.0 in one > > harddisk? > > I don't think so. Last time I checked, OpenBSD used one partition > table per disk, not one per slice, and the FreeBSD table will screw it > up. However, FreeBSD and Solaris can coexist with no problem. > > > If yes, what is the install sequence? > > I'm not sure it matters. Neither understands the others boots, so you > need to install a boot manager that can deal with them both. GRUB > works. Actually, I was just running a dual boot Solaris/FreeBSD system. The Solaris 8 boot manager booted FreeBSD no problem. FreeBSD choked on Solaris , however. Probably a little late to matter now, though. --devin -- Mathematicians are like Frenchmen: whatever you say to them they translate into their own language, and forthwith it is something entirely different. -- Johann Wolfgang von Goethe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:16:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 61F5437B400 for ; Thu, 24 Jan 2002 10:16:16 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id E65A866D7A; Thu, 24 Jan 2002 10:16:15 -0800 (PST) Date: Thu, 24 Jan 2002 10:16:15 -0800 From: Kris Kennaway To: Edwin Groothuis Cc: "Wilkinson,Alex" , freebsd-questions@freebsd.org Subject: Re: Linux Compat Mode Message-ID: <20020124101615.B52223@xor.obsecurity.org> References: <20020124143542.X42131-100000@squirm.dsto.defence.gov.au> <20020124152722.J823@k7.mavetju.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="pvezYHf7grwyp3Bc" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020124152722.J823@k7.mavetju.org>; from edwin@mavetju.org on Thu, Jan 24, 2002 at 03:27:22PM +1100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --pvezYHf7grwyp3Bc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 24, 2002 at 03:27:22PM +1100, Edwin Groothuis wrote: > On Thu, Jan 24, 2002 at 02:37:16PM +1030, Wilkinson,Alex wrote: > > Whats the best way to tell if a port is going to be run in > > Linux Compatability Mode *before* the port is installed? >=20 > Mostly because it has the linux- prefix, a la www/linux-opera, > print/linux-acrobat or that it is in the category linux (in the > Makefile) Or depends on a linux* port (e.g. linux_base). They all should be in the linux category though...it's a bug if they aren't. Kris --pvezYHf7grwyp3Bc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8UE9vWry0BWjoQKURAtuEAJ4mqQLWoxtAvCW+5BeFvxJHLfdw+gCgnpRb u6PU4sd5tGeFzG+LZd20L2o= =pPtS -----END PGP SIGNATURE----- --pvezYHf7grwyp3Bc-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:17:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 66ADD37B402 for ; Thu, 24 Jan 2002 10:17:24 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 0A85B66B74; Thu, 24 Jan 2002 10:17:24 -0800 (PST) Date: Thu, 24 Jan 2002 10:17:23 -0800 From: Kris Kennaway To: Joe & Fhe Barbish Cc: FBSD Questions Subject: Re: ls command flags Message-ID: <20020124101723.C52223@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="hOcCNbCCxyk/YU74" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from barbish@a1poweruser.com on Thu, Jan 24, 2002 at 12:09:15AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --hOcCNbCCxyk/YU74 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 24, 2002 at 12:09:15AM -0500, Joe & Fhe Barbish wrote: > The /usr/ports/www directory has so many directories=20 > in it that the ls command just scrolls them off the screen.=20 > Is there a -flag to tell ls to show one screen at a time?=20 No, but there's a command: less(1). The UNIX philosophy is to pipe things between small focussed commands instead of adding equivalent capabilities to lots of different programs. Kris --hOcCNbCCxyk/YU74 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8UE+zWry0BWjoQKURAiCDAJ9QQKK5msi6xP+aVi3hQlfLFE/joACgj3PL q8e80NQoNZcNrXOWt5JC/p0= =VjQP -----END PGP SIGNATURE----- --hOcCNbCCxyk/YU74-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:18:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 26C7437B402 for ; Thu, 24 Jan 2002 10:18:23 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id BD65E5D13; Thu, 24 Jan 2002 10:18:22 -0800 (PST) To: Tribológica Cc: questions@freebsd.org Subject: Re: freebsd 4.4 In-reply-to: Your message of "Thu, 24 Jan 2002 12:08:06 EST." <3C503F76.A9925C3B@gye.impsat.net.ec> Date: Thu, 24 Jan 2002 10:18:22 -0800 From: "Kevin Oberman" Message-Id: <20020124181822.BD65E5D13@ptavv.es.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Thu, 24 Jan 2002 12:08:06 -0500 > From: =?iso-8859-1?Q?Tribol=F3gica?= > Sender: owner-freebsd-questions@FreeBSD.ORG > > on superprobe i get: > KDENABIO failed > can not open video Hmmm. That error is the one I associate with the trying to do this without root privs. Are you root when you do this? R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:19:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id E154B37B400 for ; Thu, 24 Jan 2002 10:19:16 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7E49E66B74; Thu, 24 Jan 2002 10:19:16 -0800 (PST) Date: Thu, 24 Jan 2002 10:19:16 -0800 From: Kris Kennaway To: Mark Miller Cc: freebsd-questions@freebsd.org Subject: Re: java in 4.5? Message-ID: <20020124101916.D52223@xor.obsecurity.org> References: <20020123233630.L10541-100000@soda.csua.berkeley.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="BRE3mIcgqKzpedwo" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020123233630.L10541-100000@soda.csua.berkeley.edu>; from joup@bigfoot.com on Wed, Jan 23, 2002 at 11:39:02PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --BRE3mIcgqKzpedwo Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jan 23, 2002 at 11:39:02PM -0800, Mark Miller wrote: >=20 > Hi, >=20 > I saw the newsflash about having a licensed version of a JDK/JRE in > version 4.5. I (unwittingly, don't ask) installed 4.5-RC today, but I > don't see anything relating to java. Does anybody know how this is going > to work? Which version will it be? 1.1.8, or 1.3.1? Sorry if I'm > missing something obvious, but I've really scoured the web for news on > this matter and I've come up quite dry. Sun is dragging its heels in doing whatever it is they need to do to get the FreeBSD port to jump through the Java compliance test hoops. Until that is done we can't include it. Probably that means it won't end up being in 4.5 :-( Kris --BRE3mIcgqKzpedwo Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8UFAjWry0BWjoQKURAuyVAJ0eObhqJvzx2mO8eT42PHX9oaB3AgCg4dKV f1U5GO2prDDkJq+Av8cJgFs= =gDgB -----END PGP SIGNATURE----- --BRE3mIcgqKzpedwo-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:19:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 8787837B400 for ; Thu, 24 Jan 2002 10:19:42 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 0C5AD66B74; Thu, 24 Jan 2002 10:19:42 -0800 (PST) Date: Thu, 24 Jan 2002 10:19:41 -0800 From: Kris Kennaway To: Anatoliy Dmytriyev Cc: freebsd-questions@freebsd.org Subject: Re: downgrade from 4.4 to 3.5 Message-ID: <20020124101941.E52223@xor.obsecurity.org> References: <20020124142029.A97194@plab.ku.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="wchHw8dVAp53YPj8" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020124142029.A97194@plab.ku.dk>; from tolid@plab.ku.dk on Thu, Jan 24, 2002 at 02:20:29PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --wchHw8dVAp53YPj8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 24, 2002 at 02:20:29PM +0100, Anatoliy Dmytriyev wrote: > Hello everybody! >=20 > Please, help me: > How can I do downgrade from FreeBSD 4.4 to FreeBSD 3.5? > I tryed to do cvsup to RELENG_3, but buildworld failed. Do a binary installation of 3.5. Kris --wchHw8dVAp53YPj8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8UFA9Wry0BWjoQKURAk5IAJ4hmZlNYN85jO1tSUqXV01AEbqsHwCeOigM L7ijMEVNImEpyRoMtqREELs= =3SpA -----END PGP SIGNATURE----- --wchHw8dVAp53YPj8-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:21:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.k12us.com (mail.k12us.com [65.112.222.15]) by hub.freebsd.org (Postfix) with SMTP id 57A5437B404 for ; Thu, 24 Jan 2002 10:21:23 -0800 (PST) Received: (qmail 76475 invoked by uid 1001); 24 Jan 2002 18:21:12 -0000 Date: Thu, 24 Jan 2002 13:21:12 -0500 From: Christopher Weimann To: Devdas Bhagat Cc: questions@freebsd.org Subject: Re: email with qmail? or something else that's secure? Message-ID: <20020124132112.A75341@mail.k12us.com> References: <20020124122336.P10869@xs4all.nl> <20020124214100.C91691@rivendell.worldgatein.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020124214100.C91691@rivendell.worldgatein.net>; from devdas@worldgatein.net on Thu, Jan 24, 2002 at 09:41:01PM +0530 X-AntiVirus: scanned for viruses by AMaViS 0.2.1 (http://amavis.org/) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 09:41:01PM +0530, Devdas Bhagat wrote: > > > my demands for my mail-handling software are in order of priority > > * reliability > Postfix yes. > > * security > Postfix yes > > * Maildir support > Postfix, yes > > Responsive author: > Postfix yes. > For what its worth I find qmail to be yes on the first 3 points above and on the last point I have never had a need to find out if the author is reponsive. Qmail just works for me :) I do have a Postfix question though. In qmail I can specify my own custom local delivery program for each virtual domain via .qmail-default. Does Postfix provide similar functionality? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:40:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fia168-94.dsl.hccnet.nl (fia168-94.dsl.hccnet.nl [62.251.94.168]) by hub.freebsd.org (Postfix) with ESMTP id 2162B37B417 for ; Thu, 24 Jan 2002 10:40:05 -0800 (PST) Received: by fia168-94.dsl.hccnet.nl (Postfix, from userid 1000) id 67A66337; Thu, 24 Jan 2002 19:40:06 +0100 (CET) Content-Type: text/plain; charset="iso-8859-15" From: Simon Siemonsma To: freebsd-questions@freebsd.org Subject: Fwd: Re: java in 4.5? Date: Thu, 24 Jan 2002 19:40:05 +0100 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020124184006.67A66337@fia168-94.dsl.hccnet.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday 24 January 2002 08:39, you wrote: > Hi. > > > don't see anything relating to java. Does anybody know how this is going > > to work? Which version will it be? 1.1.8, or 1.3.1? Sorry if I'm > > Java is in the ports. You have to install it. > /usr/posrts/java --> take a look there for your java stuff I think he referred to the fact that FreeBSD is getting an official Java licency from Sun. As far as I know that is delayed and will not be in 4.5. Again as far as I know in the ports you have Linux versions of Java, or some strange construction with a native Java. > Maybe you have to update your ports (cvsup is your friend). > > hth > > Axel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:41: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fia168-94.dsl.hccnet.nl (fia168-94.dsl.hccnet.nl [62.251.94.168]) by hub.freebsd.org (Postfix) with ESMTP id B314337B404 for ; Thu, 24 Jan 2002 10:40:58 -0800 (PST) Received: by fia168-94.dsl.hccnet.nl (Postfix, from userid 1000) id 4BEA63A9; Thu, 24 Jan 2002 19:40:54 +0100 (CET) Content-Type: text/plain; charset="iso-8859-15" From: Simon Siemonsma To: freebsd-questions@freebsd.org Subject: Fwd: Re: sending to postfix slow, more info Date: Thu, 24 Jan 2002 19:40:53 +0100 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020124184054.4BEA63A9@fia168-94.dsl.hccnet.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday 24 January 2002 02:06, you wrote: > FreeBSD 4.4-Rel > > ----------------- > > # postconf mail_version > mail_version = Snapshot-20011127 > > I replaced a BSD/i machine with much faster FreeBSD machine. All ftp > performance sending big files to the fbsd machine appears as fast or faster > than the old machine. > > But sending files with large attachments through postfix is horribly > slower. > > A 65 mb attachment sent through FreeBSD took 35 minutes, then sending the > same attachment through BSD/i (sendmail) took 2 minutes (sender PC and > both bsd's on same LAN, of course). > > The FreeBSD machine is basically idle > > any ideas where to look? why not start to have a look at /var/log/maillog. Just send a message and have a look which new lines are generated in the logfile. At least this should tell you at which step the delay occurs. > Len > > http://MenAndMice.com/DNS-training > http://BIND8NT.MEIway.com : ISC BIND 8.2.4 for NT4 & W2K > http://IMGate.MEIway.com : Build free, hi-perf, anti-abuse mail gateways > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:45: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.webmailer.de (natwar.webmailer.de [192.67.198.70]) by hub.freebsd.org (Postfix) with ESMTP id BE39337B402 for ; Thu, 24 Jan 2002 10:45:03 -0800 (PST) Received: from bear.mmc.private (p50801491.dip.t-dialin.net [80.128.20.145]) by post.webmailer.de (8.9.3/8.8.7) with SMTP id TAA05984 for ; Thu, 24 Jan 2002 19:40:23 +0100 (MET) Content-Type: text/plain; charset="iso-8859-1" From: collins Reply-To: collinsm@surfeu.de To: freebsd-questions@freebsd.org Subject: cvs checkout problem Date: Thu, 24 Jan 2002 19:46:49 +0100 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <02012419464902.03051@bear.mmc.private> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hallo, I'm trying to checkout the /usr/ports with the command: cvs checkout -r RELENG_4_4_0_RELEASE ports The directory /usr/ports is created and the sources are checked out. The trouble is that directly after a subdirectory such as "archivers" gets created and filled with files it's deleted again. So I end up with just the one ports directory /usr/ports/x11-wm at the end of the process. Anybody know what's wrong here. I was able to checkout the /usr/src tree without any problem. Thanks for any tips, Martin. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:48:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web14907.mail.yahoo.com (web14907.mail.yahoo.com [216.136.225.59]) by hub.freebsd.org (Postfix) with SMTP id BC32137B400 for ; Thu, 24 Jan 2002 10:48:54 -0800 (PST) Message-ID: <20020124184854.95199.qmail@web14907.mail.yahoo.com> Received: from [200.208.29.92] by web14907.mail.yahoo.com via HTTP; Thu, 24 Jan 2002 10:48:54 PST Date: Thu, 24 Jan 2002 10:48:54 -0800 (PST) From: nirv one nine nine Subject: bash To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I installed the bash package, and edited /etc/passwd to use /usr/local/bin/bash as the shell for some users, but it did not work. Is there anything else I need to do in order to run bash as my default shell? TIA nirv __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:54:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.bigstudios.com (H185.C214.tor.velocet.net [216.138.214.185]) by hub.freebsd.org (Postfix) with ESMTP id 3C93837B416 for ; Thu, 24 Jan 2002 10:54:08 -0800 (PST) Received: from bigstudios.com([192.168.75.105]) (1379 bytes) by mail.bigstudios.com via sendmail with P:esmtp/R:bind_hosts/T:smtp (sender: ) id for ; Thu, 24 Jan 2002 13:54:07 -0500 (EST) (Smail-3.2.0.111 2000-Feb-17 #1 built 2000-Jul-5) Message-ID: <3C505997.73441432@bigstudios.com> Date: Thu, 24 Jan 2002 13:59:35 -0500 From: Sam Suh X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: nirv one nine nine Cc: freebsd-questions@freebsd.org Subject: Re: bash References: <20020124184854.95199.qmail@web14907.mail.yahoo.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nirv one nine nine wrote: > > Hello, > > I installed the bash package, and edited /etc/passwd to use > /usr/local/bin/bash as the shell for some users, but it did not work. > Is there anything else I need to do in order to run bash as my default > shell? > > TIA > > nirv You never, ever edit /etc/passwd directly. Instead, login as target user and issue chsh command to change shell to bash. If not, use vipw as root and change default shell for target user. The real password file is not /etc/passwd, it is something else. /etc/master.passwd is the one. In fact, you never edit it with vi or something else either. Because, unless you use chsh or vipw, anything you do on master.passwd is not going to be reflected. Please read man page for chsh and vipw. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:54:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 0633637B402 for ; Thu, 24 Jan 2002 10:54:48 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id CA2155D17; Thu, 24 Jan 2002 10:54:44 -0800 (PST) To: Roberto Armenteros Cc: freebsd-questions@freebsd.org Subject: Re: Installing PAO "the utility for PCMCI detection In-reply-to: Your message of "Wed, 23 Jan 2002 23:56:14 PST." <20020124075614.67609.qmail@web13601.mail.yahoo.com> Date: Thu, 24 Jan 2002 10:54:44 -0800 From: "Kevin Oberman" Message-Id: <20020124185444.CA2155D17@ptavv.es.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Wed, 23 Jan 2002 23:56:14 -0800 (PST) > From: Roberto Armenteros > Sender: owner-freebsd-questions@FreeBSD.ORG > > FreeBSD 4.4 did not detect my network pc card "3com > megahertz" from my compaq armada 7400 laptop. > Everything else including X installation went great. I > heard about PAO and the solutions it has. First, is > this the most recomendable way to make it work. > Second, does PAO work on FreeBSD 4.4. Third, what is > the easiest way to configure it with PAO once I have a > running system? I read the PAO manual and followed the > instructions without success. PAO is where PCMCIA support in FreeBSD originated. It has been folded into FreeBSD 4.0 and above and is now obsolete (unless you are running an older version of FreeBSD). If you could provide a bit more information on what is going on (errors, configuration), it would help. Is the system configured for pccard support? You need: pccard_enable="YES" in /etc/rc.conf. I also strongly suggest pccardd_flags="-z". An ifconfig line (either pccard or specific to the interface) will also be required. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:55:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.dra.com (mail.dra.com [192.65.218.159]) by hub.freebsd.org (Postfix) with ESMTP id BC12637B402 for ; Thu, 24 Jan 2002 10:55:03 -0800 (PST) Received: from stlmail.dra.com (stlmail.dra.com [192.65.218.119]) by mail.dra.com (8.9.1/8.9.1) with ESMTP id MAA09716; Thu, 24 Jan 2002 12:55:02 -0600 (CST) Received: by stlmail.dra.com with Internet Mail Service (5.5.2653.19) id ; Thu, 24 Jan 2002 12:54:34 -0600 Message-ID: From: Eric Six To: "'nirv one nine nine'" , freebsd-questions@FreeBSD.ORG Subject: RE: bash Date: Thu, 24 Jan 2002 12:54:34 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Correct me if I am wrong, but /etc/passwd is provided for compatibility. BSD uses the /etc/master.passwd. If you edit this file, that will do it. Or you can do a 'chsh' while logged in as that user and change your shell that way. Cheers, Eric - -----Original Message----- From: nirv one nine nine [mailto:nirv199@yahoo.com] Sent: Thursday, January 24, 2002 12:49 PM To: freebsd-questions@FreeBSD.ORG Subject: bash Hello, I installed the bash package, and edited /etc/passwd to use /usr/local/bin/bash as the shell for some users, but it did not work. Is there anything else I need to do in order to run bash as my default shell? TIA nirv __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 7.0.3 for non-commercial use iQA/AwUBPFBYQMbzOHaBcCrEEQK8AgCg0OrF9uYttaztOyzSlDnkjoluaGUAn3eO aoXfSBlLPWmBDiHRBHCJOFS7 =E1KB -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:56:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from icc.cgu.chel.su (gw.csu.ru [195.54.14.5]) by hub.freebsd.org (Postfix) with ESMTP id 5132137B404 for ; Thu, 24 Jan 2002 10:56:46 -0800 (PST) Received: from mail.cgu.chel.su (mail.cgu.chel.su [195.54.14.68]) by icc.cgu.chel.su (8.11.6/8.11.6) with ESMTP id g0OIurT70266 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified NO) for ; Thu, 24 Jan 2002 23:56:54 +0500 (YEKT) (envelope-from ilia@cgu.chel.su) Received: (from uucp@localhost) by mail.cgu.chel.su (8.11.6/8.11.2) with UUCP id g0OIvEH35688 for questions@FreeBSD.ORG; Thu, 24 Jan 2002 23:57:14 +0500 (YEKT) (envelope-from ilia@cgu.chel.su) Received: from localhost (localhost.cgu.chel.su [127.0.0.1]) by jane.poka.net with ESMTP id g0OIuQh00710 for ; Thu, 24 Jan 2002 23:56:26 +0500 (YEKT) (envelope-from ilia@cgu.chel.su) Date: Thu, 24 Jan 2002 23:56:26 +0500 (YEKT) From: Ilia Chipitsine X-Sender: ilia@jane.poka.net To: questions@FreeBSD.ORG Subject: Kerberos Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear Sirs, what should I do in order to make "su" work together with Kerberos ? (I followed the Handbook, but it doesn't work) Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:57:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.dra.com (mail.dra.com [192.65.218.159]) by hub.freebsd.org (Postfix) with ESMTP id 322BB37B425 for ; Thu, 24 Jan 2002 10:57:31 -0800 (PST) Received: from stlmail.dra.com (stlmail.dra.com [192.65.218.119]) by mail.dra.com (8.9.1/8.9.1) with ESMTP id MAA24304; Thu, 24 Jan 2002 12:57:29 -0600 (CST) Received: by stlmail.dra.com with Internet Mail Service (5.5.2653.19) id ; Thu, 24 Jan 2002 12:57:01 -0600 Message-ID: From: Eric Six To: "'nirv one nine nine'" , freebsd-questions@FreeBSD.ORG Subject: RE: bash Date: Thu, 24 Jan 2002 12:57:01 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 And you should use 'vipw' to edit the master.passwd, otherwise the changes won't be made till reboot? And you risk possible corruption. Eric - -----Original Message----- From: Eric Six [mailto:erics@sirsi.com] Sent: Thursday, January 24, 2002 12:55 PM To: 'nirv one nine nine'; freebsd-questions@FreeBSD.ORG Subject: RE: bash - -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Correct me if I am wrong, but /etc/passwd is provided for compatibility. BSD uses the /etc/master.passwd. If you edit this file, that will do it. Or you can do a 'chsh' while logged in as that user and change your shell that way. Cheers, Eric - - -----Original Message----- From: nirv one nine nine [mailto:nirv199@yahoo.com] Sent: Thursday, January 24, 2002 12:49 PM To: freebsd-questions@FreeBSD.ORG Subject: bash Hello, I installed the bash package, and edited /etc/passwd to use /usr/local/bin/bash as the shell for some users, but it did not work. Is there anything else I need to do in order to run bash as my default shell? TIA nirv __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message - -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 7.0.3 for non-commercial use iQA/AwUBPFBYQMbzOHaBcCrEEQK8AgCg0OrF9uYttaztOyzSlDnkjoluaGUAn3eO aoXfSBlLPWmBDiHRBHCJOFS7 =E1KB - -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 7.0.3 for non-commercial use iQA/AwUBPFBY08bzOHaBcCrEEQKP4QCguhzNTmVC+Q0gKbjz3cFhecZpMtoAoOyW 4LoOInrSqu1MM0olwmb/8Qpj =tg8j -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:58:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.cz (diana.mobil.cz [195.39.16.12]) by hub.freebsd.org (Postfix) with ESMTP id 16F8F37B400 for ; Thu, 24 Jan 2002 10:58:00 -0800 (PST) Received: from ester.mobil.cz (ester.mobil.cz [194.213.62.23]) by mobil.cz (8.11.6/8.11.0) with ESMTP id g0OIvwe08572 for ; Thu, 24 Jan 2002 19:57:58 +0100 Received: from roman.mobil.cz ([10.2.0.89]) by ester.mobil.cz (Lotus Domino Release 5.0.7) with ESMTP id 2002012419552163:12516 ; Thu, 24 Jan 2002 19:55:21 +0100 Received: (from roman@localhost) by roman.mobil.cz (8.11.6/8.11.6) id g0OJ8ap12612 for freebsd-questions@FreeBSD.ORG; Thu, 24 Jan 2002 20:08:36 +0100 (CET) (envelope-from neuhauser@mobil.cz) X-Authentication-Warning: roman.mobil.cz: roman set sender to neuhauser@mobil.cz using -f Date: Thu, 24 Jan 2002 20:08:36 +0100 From: Roman Neuhauser To: freebsd-questions@FreeBSD.ORG Subject: Re: bash Message-ID: <20020124200836.O52103@roman.mobil.cz> Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <20020124184854.95199.qmail@web14907.mail.yahoo.com> Mime-Version: 1.0 In-Reply-To: <20020124184854.95199.qmail@web14907.mail.yahoo.com> User-Agent: Mutt/1.3.23i X-MIMETrack: Itemize by SMTP Server on ester/Mobil(Release 5.0.7 |March 21, 2001) at 01/24/2002 07:55:21 PM, Serialize by Router on ester/Mobil(Release 5.0.7 |March 21, 2001) at 01/24/2002 07:55:27 PM, Serialize complete at 01/24/2002 07:55:27 PM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Thu, 24 Jan 2002 10:48:54 -0800 (PST) > From: nirv one nine nine > Subject: bash > To: freebsd-questions@FreeBSD.ORG > > Hello, > > I installed the bash package, and edited /etc/passwd to use > /usr/local/bin/bash as the shell for some users, but it did not work. > Is there anything else I need to do in order to run bash as my default > shell? man 5 shells -- FreeBSD 4.4-STABLE 8:08PM up 4 days, 2:31, 9 users, load averages: 0.04, 0.04, 0.00 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:58:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from icc.cgu.chel.su (gw.csu.ru [195.54.14.5]) by hub.freebsd.org (Postfix) with ESMTP id BC26237B422; Thu, 24 Jan 2002 10:58:40 -0800 (PST) Received: from mail.cgu.chel.su (mail.cgu.chel.su [195.54.14.68]) by icc.cgu.chel.su (8.11.6/8.11.6) with ESMTP id g0OIwpT70334 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified NO); Thu, 24 Jan 2002 23:58:52 +0500 (YEKT) (envelope-from ilia@cgu.chel.su) Received: (from uucp@localhost) by mail.cgu.chel.su (8.11.6/8.11.2) with UUCP id g0OIxBe35730; Thu, 24 Jan 2002 23:59:11 +0500 (YEKT) (envelope-from ilia@cgu.chel.su) Received: from localhost (localhost.cgu.chel.su [127.0.0.1]) by jane.poka.net with ESMTP id g0OIwSh00731; Thu, 24 Jan 2002 23:58:28 +0500 (YEKT) (envelope-from ilia@cgu.chel.su) Date: Thu, 24 Jan 2002 23:58:28 +0500 (YEKT) From: Ilia Chipitsine X-Sender: ilia@jane.poka.net To: questions@FreeBSD.ORG Cc: ports@FreeBSD.ORG Subject: maildrop & sendmail Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear Sirs, I've just installed maildrop, but it doesn't want work with sendmail. /var/log/maillog: Jan 24 23:30:03 trash maildrop[2818]: You are not a trusted user. Is anybody using maildrop together with sendmail ? Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 10:58:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from maila.telia.com (maila.telia.com [194.22.194.231]) by hub.freebsd.org (Postfix) with ESMTP id 1102D37B402 for ; Thu, 24 Jan 2002 10:58:44 -0800 (PST) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by maila.telia.com (8.11.6/8.11.6) with ESMTP id g0OIwfb19486 for ; Thu, 24 Jan 2002 19:58:41 +0100 (CET) Received: from falcon.midgard.homeip.net (h185n2fls20o913.telia.com [212.181.163.185]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id TAA13536 for ; Thu, 24 Jan 2002 19:58:41 +0100 (CET) Received: (qmail 28704 invoked by uid 1001); 24 Jan 2002 18:58:37 -0000 Date: Thu, 24 Jan 2002 19:58:37 +0100 From: Erik Trulsson To: collinsm@surfeu.de Cc: freebsd-questions@freebsd.org Subject: Re: cvs checkout problem Message-ID: <20020124185837.GA28690@student.uu.se> Mail-Followup-To: collinsm@surfeu.de, freebsd-questions@freebsd.org References: <02012419464902.03051@bear.mmc.private> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <02012419464902.03051@bear.mmc.private> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 07:46:49PM +0100, collins wrote: > Hallo, > > I'm trying to checkout the /usr/ports with the command: > > cvs checkout -r RELENG_4_4_0_RELEASE ports > > The directory /usr/ports is created and the sources are checked out. The > trouble is that directly after a subdirectory such as "archivers" gets > created and filled with files it's deleted again. So I end up with just the > one ports directory /usr/ports/x11-wm at the end of the process. > > Anybody know what's wrong here. I was able to checkout the /usr/src tree > without any problem. You are using the wrong tag for ports. If you really want the 4.4-RELEASE ports tree you should use cvs checkout -r RELEASE_4_4_0 ports instead. (src and ports use different tags. Also remember that the ports tree is not branched so there are no division into -stable and -currrent ports) -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 11: 3:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay02.roc.frontiernet.net (alteon01g.roc.frontiernet.net [66.133.130.237]) by hub.freebsd.org (Postfix) with SMTP id 0751737B416 for ; Thu, 24 Jan 2002 11:03:06 -0800 (PST) Received: (qmail 7431 invoked from network); 24 Jan 2002 19:03:00 -0000 Received: from unknown (HELO blacklamb.mykitchentable.net) ([207.173.227.80]) (envelope-sender ) by relay02.roc.frontiernet.net (qmail-ldap-1.03) with SMTP for ; 24 Jan 2002 19:03:00 -0000 Received: from tagalong (unknown [165.107.42.196]) by blacklamb.mykitchentable.net (Postfix) with SMTP id BE920EE5FD for ; Thu, 24 Jan 2002 11:02:58 -0800 (PST) Message-ID: <01f801c1a509$bd1d3060$c42a6ba5@lc.ca.gov> From: "Drew Tomlinson" To: Subject: Regex Database Help? Date: Thu, 24 Jan 2002 11:02:58 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I followed some of the suggestions at http://www.muine.org/~hoang/postfix.html to tighten up my Postfix MTA. As part of this, I created a file called helo_access where I wish to include helo names that fail reverse DNS lookups that I still wish to allow. The examples showed how to explicitly set the complete name of the server as in this example: # Allow somehost.some.domain /^somehost\.some\.domain$/ OK This works fine. Now what I would like to do is something like this: # Allow allhosts.some.domain /*\.some\.domain$/ OK In other words, allow all hosts that end in some.domain. However, I have tried this different ways without success. I assume this is possible? Can someone help me get the syntax right for this regular expression. From what I know, I would expect the above to work but it doesn't. Thanks, Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 11: 8:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from protactinium.btinternet.com (protactinium.btinternet.com [194.73.73.176]) by hub.freebsd.org (Postfix) with ESMTP id 78B6237B47A; Thu, 24 Jan 2002 11:07:27 -0800 (PST) Received: from host213-122-4-173.btinternet.com ([213.122.4.173] helo=rodson.com) by protactinium.btinternet.com with smtp (Exim 3.22 #8) id 16Tp8U-0002ny-00; Thu, 24 Jan 2002 19:02:13 +0000 From: "Rodson Universal" To: Subject: Port and Stevedoring Equipment For Sale and Wanted Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Thu, 24 Jan 2002 21:01:48 +0200 Content-Transfer-Encoding: 8bit Message-Id: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Attn : Stevedoring , crane and engineering dept. We buy and sell crawler and telescopic cranes 50-1000 tons Stevedoring equipment Port cranes equipment ,Shipyard equipment Container cranes and equipment Floating grab cranes , heavy lift cranes , dry docks and barges PLEASE CHECK OUR WEBSITE www.rodson.com We are always looking to buy port cranes and ship unloading systems , bagging plants , pneumatic grain unloaders , dry cargo unloaders , screw type unloaders , dry cargo unloading systems , dry powdered cement unloaders , rail mounted and rubber tyred ship-to-shore cranes , container cranes , grab cranes , coal discharging systems , Port pedastal whirley cranes ,container-handling forklifts and reachstackers , terminal tractors and trailers, electro-hydrauylic grabs 10-14 cu meter Please keep us informed of any equipment you have for sale and let us know your port equipment and stevedoring requirements thanks and regards connie sullivan Please reply to: sales@rodson.com RODSON UNIVERSAL INC www.rodson.com Tel +44 1444 412728 Fax +44 1444 415929 If you feel that you have received this e-mail in error or wish to unsubscribe to future mailings, please reply to this e-mail with "remove" in the subject header. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 11: 9:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by hub.freebsd.org (Postfix) with ESMTP id E303637B41F for ; Thu, 24 Jan 2002 11:09:05 -0800 (PST) Received: from ninja.amphex.com (ninja.amphex.com [217.13.29.51]) by mail.broadpark.no (Postfix) with SMTP id 62A6E80AE for ; Thu, 24 Jan 2002 20:09:04 +0100 (MET) Date: Thu, 24 Jan 2002 20:09:01 +0100 From: J.S. To: freebsd-questions@freebsd.org Subject: SMS script Message-Id: <20020124200901.79c67029.johann@broadpark.no> X-Mailer: Sylpheed version 0.6.5 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Does anyone know of an SMS script to easily send SMS messages i.e. through everyday.com? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 11:22:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 9D68F37B41C for ; Thu, 24 Jan 2002 11:22:23 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16TpS2-0005CV-00 for questions@FreeBSD.ORG; Thu, 24 Jan 2002 19:22:22 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id EC265118B; Thu, 24 Jan 2002 20:22:21 +0100 (CET) Date: Thu, 24 Jan 2002 20:22:21 +0100 From: Cliff Sarginson To: FBSD Questions Subject: Re: ls command flags Message-ID: <20020124192221.GA3428@raggedclown.net> References: <20020124101723.C52223@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020124101723.C52223@xor.obsecurity.org> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 10:17:23AM -0800, Kris Kennaway wrote: > On Thu, Jan 24, 2002 at 12:09:15AM -0500, Joe & Fhe Barbish wrote: > > The /usr/ports/www directory has so many directories > > in it that the ls command just scrolls them off the screen. > > Is there a -flag to tell ls to show one screen at a time? > > No, but there's a command: less(1). The UNIX philosophy is to pipe > things between small focussed commands instead of adding equivalent > capabilities to lots of different programs. > That's more or less true. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 11:26:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web21204.mail.yahoo.com (web21204.mail.yahoo.com [216.136.131.77]) by hub.freebsd.org (Postfix) with SMTP id E97AF37B402 for ; Thu, 24 Jan 2002 11:26:19 -0800 (PST) Message-ID: <20020124192619.16840.qmail@web21204.mail.yahoo.com> Received: from [24.100.124.207] by web21204.mail.yahoo.com via HTTP; Fri, 25 Jan 2002 03:26:19 CST Date: Fri, 25 Jan 2002 03:26:19 +0800 (CST) From: =?iso-8859-1?q?adrian=20kok?= Subject: Re: freebsd, openbsd, solaris To: devin-freebsdquestions@rintrah.org, Mike Meyer Cc: freebsd-questions@freebsd.org, adriankok2000@yahoo.com.hk In-Reply-To: <20020124131834.A57329@tharmas.rintrah.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear Devin Thank you which one did you install first? Sorry i don't know. What is your meaning about both os? Thank you --- devin-freebsdquestions@rintrah.org wrote: > On Thu, Jan 17, 2002 at 10:30:29PM -0600, Mike Meyer > wrote: > > adrian kok types: > > > Hello > > > Can I put freebsd, openbsd, solaris 8.0 in one > > > harddisk? > > > > I don't think so. Last time I checked, OpenBSD > used one partition > > table per disk, not one per slice, and the FreeBSD > table will screw it > > up. However, FreeBSD and Solaris can coexist with > no problem. > > > > > If yes, what is the install sequence? > > > > I'm not sure it matters. Neither understands the > others boots, so you > > need to install a boot manager that can deal with > them both. GRUB > > works. > > Actually, I was just running a dual boot > Solaris/FreeBSD system. The > Solaris 8 boot manager booted FreeBSD no problem. > FreeBSD choked on > Solaris , however. > > Probably a little late to matter now, though. > > --devin > > -- > Mathematicians are like Frenchmen: whatever you say > to them they > translate into their own language, and forthwith it > is something > entirely different. > -- Johann Wolfgang von Goethe _______________________________________________________________________ Do You Yahoo!? Get your free @yahoo.com.hk address at http://mail.english.yahoo.com.hk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 11:33:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f216.law9.hotmail.com [64.4.9.216]) by hub.freebsd.org (Postfix) with ESMTP id AA4A937B402 for ; Thu, 24 Jan 2002 11:33:49 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 24 Jan 2002 11:33:49 -0800 Received: from 131.107.3.83 by lw9fd.law9.hotmail.msn.com with HTTP; Thu, 24 Jan 2002 19:33:49 GMT X-Originating-IP: [131.107.3.83] From: "Nathan Arun" To: freebsd-questions@freebsd.org Subject: how to join freebsd machine to windows2000 domain? Date: Thu, 24 Jan 2002 19:33:49 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 24 Jan 2002 19:33:49.0720 (UTC) FILETIME=[0C472980:01C1A50E] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have installed FreeBSD 4.4. We have a Windows2000 only network. I'm at loss on how to join this machine to our domain. I read on various internet sites that I need "Samba" for this. So I downloaded the samba binaries from freebsd packages. But I'm having a tough time configuring this. If anyone can point me to tutorial on samba, i would greatly appreciate it. thanks Nathan _________________________________________________________________ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 11:39:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay03.roc.frontiernet.net (alteon01h.roc.frontiernet.net [66.133.130.238]) by hub.freebsd.org (Postfix) with SMTP id A5F2B37B400 for ; Thu, 24 Jan 2002 11:39:18 -0800 (PST) Received: (qmail 20431 invoked from network); 24 Jan 2002 19:39:17 -0000 Received: from unknown (HELO blacklamb.mykitchentable.net) ([207.173.227.80]) (envelope-sender ) by relay03.roc.frontiernet.net (qmail-ldap-1.03) with SMTP for ; 24 Jan 2002 19:39:17 -0000 Received: from tagalong (unknown [165.107.42.196]) by blacklamb.mykitchentable.net (Postfix) with SMTP id 65DFFEE5FD; Thu, 24 Jan 2002 11:39:16 -0800 (PST) Message-ID: <027601c1a50e$cf28b040$c42a6ba5@lc.ca.gov> From: "Drew Tomlinson" To: "Nathan Arun" , References: Subject: Re: how to join freebsd machine to windows2000 domain? Date: Thu, 24 Jan 2002 11:39:16 -0800 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.2600.0000 X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Nathan Arun" To: Sent: Thursday, January 24, 2002 11:33 AM Subject: how to join freebsd machine to windows2000 domain? > I have installed FreeBSD 4.4. We have a Windows2000 only network. I'm at > loss on how to join this machine to our domain. > > I read on various internet sites that I need "Samba" for this. So I > downloaded the samba binaries from freebsd packages. But I'm having a tough > time configuring this. > > If anyone can point me to tutorial on samba, i would greatly appreciate it. Have you tried the docs at http://www.samba.org? Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 11:50:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.aros.net (mail.aros.net [207.173.16.20]) by hub.freebsd.org (Postfix) with ESMTP id 1533037B402 for ; Thu, 24 Jan 2002 11:50:07 -0800 (PST) Received: from devin (firebat.aros.net [207.173.16.36]) by mail.aros.net (8.11.6/8.9.3) with ESMTP id g0OJo6B25446 for ; Thu, 24 Jan 2002 12:50:06 -0700 (MST) From: "Devin Atencio" To: Subject: smbfs Date: Thu, 24 Jan 2002 12:50:36 -0700 Message-ID: <02fa01c1a510$648a0070$0f00000a@devin> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I just recompiled my kernel to the last CVS and enabled SMBFS. I had a few questions regarding the mount_smbfs command. Is the idea with mount_smbfs to only allow me to mount Samba shares? Should I be able to mount say like a Shared Directory on a Windows 2000 Server? __\/__ . / ^ _ \ . |\| (o)(o) |/| #----------------.OOOo--oo--oOOO.-----------# # # # Devin Atencio dreamboy@aros.net # # Sys Admin Dept # #_________________________Oooo._____________# .oooO ( ) ( ) ) / \ ( (_/ \_) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 11:59:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tharmas.rintrah.org (dhcp065-031-016-002.insight.rr.com [65.31.16.2]) by hub.freebsd.org (Postfix) with SMTP id A935D37B41B for ; Thu, 24 Jan 2002 11:59:38 -0800 (PST) Received: (qmail 64683 invoked by uid 1000); 24 Jan 2002 20:02:17 -0000 Date: Thu, 24 Jan 2002 15:02:17 -0500 From: Devin Smith To: adrian kok Cc: freebsd-questions@freebsd.org Subject: Re: freebsd, openbsd, solaris Message-ID: <20020124150217.A64468@tharmas.rintrah.org> Mail-Followup-To: adrian kok , freebsd-questions@freebsd.org References: <20020124131834.A57329@tharmas.rintrah.org> <20020124192619.16840.qmail@web21204.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020124192619.16840.qmail@web21204.mail.yahoo.com>; from adriankok2000@yahoo.com.hk on Fri, Jan 25, 2002 at 03:26:19AM +0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 03:26:19AM +0800, adrian kok wrote: > Dear Devin > > Thank you > > which one did you install first? FreeBSD first, then Solaris. I had a 9 GB drive and split it evenly, with FreeBSD going in the frist 4.5 GB and Solaris going in the second 4.5GB. > > Sorry i don't know. What is your meaning about both > os? I'm sorry, I'm not sure I understand the question... --devin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 12: 9:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from nebula.anchoragerescue.org (cable-115-7-237-24.anchorageak.net [24.237.7.115]) by hub.freebsd.org (Postfix) with ESMTP id 49C2537B402 for ; Thu, 24 Jan 2002 12:09:19 -0800 (PST) Received: from there (galaxy.anchoragerescue.org [24.237.7.95]) by nebula.anchoragerescue.org (Postfix) with SMTP id D18EEA3; Thu, 24 Jan 2002 11:09:17 -0900 (AKST) Content-Type: text/plain; charset="iso-8859-1" From: Beech Rintoul To: collinsm@surfeu.de, collins , freebsd-questions@freebsd.org Subject: Re: cvs checkout problem Date: Thu, 24 Jan 2002 11:09:17 -0900 X-Mailer: KMail [version 1.3] References: <02012419464902.03051@bear.mmc.private> In-Reply-To: <02012419464902.03051@bear.mmc.private> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020124200917.D18EEA3@nebula.anchoragerescue.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday 24 January 2002 09:46 am, collins wrote: > Hallo, > > I'm trying to checkout the /usr/ports with the command: > > cvs checkout -r RELENG_4_4_0_RELEASE ports > > The directory /usr/ports is created and the sources are checked out. The > trouble is that directly after a subdirectory such as "archivers" gets > created and filled with files it's deleted again. So I end up with just the > one ports directory /usr/ports/x11-wm at the end of the process. > > Anybody know what's wrong here. I was able to checkout the /usr/src tree > without any problem. > > Thanks for any tips, > > Martin. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message The only tag that is valid for the ports is current. Do your cvs co without the RELENG_4_4_0_RELEASE tag ie: cvs co -r ports Any other tag will delete all your ports and just leave the directories. Beech -- ------------------------------------------------------------------- Beech Rintoul - IT Manager - Instructor - akbeech@anchoragerescue.org /"\ ASCII Ribbon Campaign | Anchorage Gospel Rescue Mission \ / - NO HTML/RTF in e-mail | P.O. Box 230510 X - NO Word docs in e-mail | Anchorage, AK 99523-0510 / \ ----------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 12:23:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.augustmail.com (ginger.august.net [216.87.129.252]) by hub.freebsd.org (Postfix) with ESMTP id 3A4FB37B400 for ; Thu, 24 Jan 2002 12:23:14 -0800 (PST) Received: from localhost (996 bytes) by mail.augustmail.com via send-mail with P:stdio/R:inet_hosts/T:smtp (sender: ) (ident using unix) id for ; Thu, 24 Jan 2002 14:23:08 -0600 (CST) (Smail-3.2.0.108 1999-Sep-19 #1 built 1999-Oct-11) Message-Id: From: "Bob St.John" To: "questions@FreeBSD.org" Date: Thu, 24 Jan 2002 15:14:52 -0600 (CST) Reply-To: "Bob St.John" X-Mailer: PMMail 2.00.1500 for OS/2 Warp 4.05 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: OEM Agreement Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG We will be releasing a product in the second quarter of the year which supports the ability to run multiple OSs in a virtual machine application. We would like to include FreeBSD in an "OS Pack". I'm not sure if it would be appropriate to enter an OEM agreement. What would be the proper way to pursue this? Regards, Bob Bob St.John Dir, New Business Development Serenity Systems International a Managed Systems company 214 222-3414, ext 101 (outside USA) 888 299-6483, ext 101 (USA only) http://www.Serenity-Systems.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 12:24:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tholian.rsasecurity.com (mail.rsasecurity.com [204.167.112.129]) by hub.freebsd.org (Postfix) with SMTP id 946E737B404 for ; Thu, 24 Jan 2002 12:24:14 -0800 (PST) Received: from sdtihq24.securid.com by tholian.rsasecurity.com via smtpd (for hub.FreeBSD.org [216.136.204.18]) with SMTP; 24 Jan 2002 20:23:44 UT Received: from ebola.securitydynamics.com (ebola.securid.com [192.168.7.4]) by sdtihq24.securid.com (Pro-8.9.3/Pro-8.9.3) with ESMTP id PAA16652 for ; Thu, 24 Jan 2002 15:24:13 -0500 (EST) Received: from spirit.dynas.se (localhost [127.0.0.1]) by ebola.securitydynamics.com (8.10.2+Sun/8.9.1) with SMTP id g0OKO5U09539 for ; Thu, 24 Jan 2002 15:24:06 -0500 (EST) Received: (qmail 16085 invoked from network); 24 Jan 2002 20:24:02 -0000 Received: from explorer.rsa.com (HELO mikko.rsa.com) (10.81.217.59) by spirit.dynas.se with SMTP; 24 Jan 2002 20:24:02 -0000 Received: (from mikko@localhost) by mikko.rsa.com (8.11.6/8.11.6) id g0OKNxv47391; Thu, 24 Jan 2002 12:23:59 -0800 (PST) (envelope-from mikko) Date: Thu, 24 Jan 2002 12:23:59 -0800 (PST) From: Mikko Tyolajarvi Message-Id: <200201242023.g0OKNxv47391@mikko.rsa.com> To: questions@freebsd.org Subject: Re: port Newsgroups: local.freebsd.questions References: <3C4C16CF.18360.13CC36BA@localhost> <20020123180059.8732.qmail@web12508.mail.yahoo.com> X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In local.freebsd.questions you write: >--0-1152659619-1011808859=:8595 >Content-Type: text/plain; charset=us-ascii > lsof -i : i think lsof is a good tool Also, "sockstat" lists all open sockets, together with process, pid and user. And it is in the base system. > Jim McIver wrote: How would tell what port a daemon is running on? >I know that FTP is suppose to use port 21 and 20, but is there a way to >see this? [ html junk deleted ] $.02, /Mikko -- Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 12:30:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from zeno.apeiron.net (adsl-64-162-208-98.dsl.snfc21.pacbell.net [64.162.208.98]) by hub.freebsd.org (Postfix) with ESMTP id 948AA37B416; Thu, 24 Jan 2002 12:30:47 -0800 (PST) Received: (from mainland@localhost) by zeno.apeiron.net (8.11.6/8.11.5) id g0OKUlq82273; Thu, 24 Jan 2002 12:30:47 -0800 (PST) (envelope-from mainland) Date: Thu, 24 Jan 2002 12:30:46 -0800 From: Geoffrey Mainland To: freebsd-questions@freebsd.org Cc: freebsd-ports@freebsd.org Subject: imake-4 build problem and make weirdness Message-ID: <20020124203046.GA82211@apeiron.net> Mail-Followup-To: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.27i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Given a Makefile containing: ${ETC} = /etc all: .if exists(${ETC}/rc.conf) @echo 1 .endif .if exists(/etc/rc.conf) @echo 2 .endif typing make yields: 2 Why doesn't the first 'exists' test succeed? I noticed this when trying to compile imake-4. I have USA_RESIDENT=YES in /etc/make.conf and I have also downloaded Wraphelp.c to /usr/ports/distfiles/xc/Wraphelp.c, yet when I build imake-4 the build process says it can't find Wraphelp.c and sets HasXdmAuth to NO. The test in question is: .if ${HasXdmAuth} == YES .if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES .if !exists(${DISTDIR}/${DIST_SUBDIR}/Wraphelp.c) pre-everything:: @${ECHO_MSG} "You don't have Wraphelp.c: HasXdmAuth disabled." HasXdmAuth= NO .else ... Changing this to: .if ${HasXdmAuth} == YES .if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES .if !exists(/usr/ports/distfiles/xc/Wraphelp.c) pre-everything:: @${ECHO_MSG} "You don't have Wraphelp.c: HasXdmAuth disabled." HasXdmAuth= NO .else ... fixes things. What's the deal here? Thanks, Geoff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 12:38:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tholian.rsasecurity.com (mail.rsasecurity.com [204.167.112.129]) by hub.freebsd.org (Postfix) with SMTP id E1C9137B417 for ; Thu, 24 Jan 2002 12:38:37 -0800 (PST) Received: from sdtihq24.securid.com by tholian.rsasecurity.com via smtpd (for hub.FreeBSD.org [216.136.204.18]) with SMTP; 24 Jan 2002 20:38:08 UT Received: from ebola.securitydynamics.com (ebola.securid.com [192.168.7.4]) by sdtihq24.securid.com (Pro-8.9.3/Pro-8.9.3) with ESMTP id PAA20782 for ; Thu, 24 Jan 2002 15:38:37 -0500 (EST) Received: from spirit.dynas.se (localhost [127.0.0.1]) by ebola.securitydynamics.com (8.10.2+Sun/8.9.1) with SMTP id g0OKcVQ13993 for ; Thu, 24 Jan 2002 15:38:31 -0500 (EST) Received: (qmail 17108 invoked from network); 24 Jan 2002 20:38:29 -0000 Received: from explorer.rsa.com (HELO mikko.rsa.com) (10.81.217.59) by spirit.dynas.se with SMTP; 24 Jan 2002 20:38:29 -0000 Received: (from mikko@localhost) by mikko.rsa.com (8.11.6/8.11.6) id g0OKcQ247487; Thu, 24 Jan 2002 12:38:26 -0800 (PST) (envelope-from mikko) Date: Thu, 24 Jan 2002 12:38:26 -0800 (PST) From: Mikko Tyolajarvi Message-Id: <200201242038.g0OKcQ247487@mikko.rsa.com> To: spindler@dnai.com Cc: questions@freebsd.org Subject: Re: Help! Which NIC driver should I use? Newsgroups: local.freebsd.questions References: <002201c1a482$d31d48a0$6600640a@attbi.com> X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In local.freebsd.questions you write: >This is a multi-part message in MIME format. (Don't do that) >I am attempting a FD/Internet install. >I am stuck on which NIC to use. I have a Compaq with an integrated NIC, = >DEC 21143 - IRQ 10. =20 >Any idea what driver I should use? "dc" most likely. >Thanks [ HTML garbage deleted ] $.02, /Mikko -- Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 12:41:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id 72A9D37B402 for ; Thu, 24 Jan 2002 12:41:49 -0800 (PST) Received: from lungfish.ntlworld.com ([62.253.149.48]) by mta05-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020124204147.IUNS7206.mta05-svc.ntlworld.com@lungfish.ntlworld.com>; Thu, 24 Jan 2002 20:41:47 +0000 Received: from tuatara.goatsucker.org (tuatara.goatsucker.org [192.168.1.6]) by lungfish.ntlworld.com (8.11.3/8.11.3) with ESMTP id g0OKfkn26501; Thu, 24 Jan 2002 20:41:46 GMT (envelope-from scott@tuatara.goatsucker.org) Received: (from scott@localhost) by tuatara.goatsucker.org (8.11.6/8.11.6) id g0OKfSh06827; Thu, 24 Jan 2002 20:41:28 GMT (envelope-from scott) Date: Thu, 24 Jan 2002 20:41:28 +0000 From: Scott Mitchell To: Tom Parquette Cc: freebsd-questions@FreeBSD.ORG Subject: Re: PC not powering up Message-ID: <20020124204128.C294@localhost> References: <3C4E1411.EE93F677@twcny.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C4E1411.EE93F677@twcny.rr.com>; from tparquet@twcny.rr.com on Tue, Jan 22, 2002 at 08:38:25PM -0500 X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 22, 2002 at 08:38:25PM -0500, Tom Parquette wrote: > I have a PC I built with an Antec case and 350W power supply. The > motherboard is a Tyan Tiger MP with two Athlon MP 1800+ processors. > > For some reason, FreeBSD no longer recognizes the APM support. > > Additionally, the machine refuses to power up, when I press the power > button, if it has been off for a while. Example: powered down > overnight. The only way I have found to bring the machine back up is to > unplug the 120V power cord to the machine. > > Has anybody seen anything like this behavior? > Cheers... 350W seems a bit light for a dual processor machine... I have that size PSU in my single Athlon XP 1800+ box. AMD processors in general are quite fussy about the quality of the power you feed them; it wouldn't surprise me if your PSU just couldn't cope with the load. Scott -- =========================================================================== Scott Mitchell | PGP Key ID | "Eagles may soar, but weasels Cambridge, England | 0x54B171B9 | don't get sucked into jet engines" scott.mitchell@mail.com | 0xAA775B8B | -- Anon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 12:47:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by hub.freebsd.org (Postfix) with ESMTP id D14C837B400 for ; Thu, 24 Jan 2002 12:47:27 -0800 (PST) Received: (qmail 18064 invoked from network); 24 Jan 2002 20:47:21 -0000 Received: from unknown (HELO helios.dub.net) ([216.27.176.75]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 24 Jan 2002 20:47:21 -0000 Received: by helios.dub.net (Postfix, from userid 1000) id 70FA3311A; Thu, 24 Jan 2002 12:47:19 -0800 (PST) Date: Thu, 24 Jan 2002 12:47:19 -0800 From: Jim Mock To: Michael Schumacher Cc: freebsd-questions@FreeBSD.ORG Subject: Re: strange question Message-ID: <20020124204718.GA90785@helios.dub.net> Reply-To: mij@soupnazi.org References: <000a01c1a4f0$99921ac0$4e010c0a@mho.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000a01c1a4f0$99921ac0$4e010c0a@mho.com> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 24 Jan 2002 at 09:03:01 -0700, Michael Schumacher wrote: > Is there any way to install freebsd with out a floppy drive and > knowing the cd rom drive can?t beset to be booted from(its not a > option on my laptop)? If there was a way to install freebsd from > windows or from dos that would be great. Yes you can install from a DOS partition, and have been able to do so for as long as I can remember. Please read the handbook's install chapter: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install.html - jim -- jim mock http://soupnazi.org/ | jim@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 12:53:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from root.com (root.com [209.102.106.178]) by hub.freebsd.org (Postfix) with ESMTP id E56AD37B402 for ; Thu, 24 Jan 2002 12:53:17 -0800 (PST) Received: (from dg@localhost) by root.com (8.11.2/8.11.2) id g0OKeUX63136; Thu, 24 Jan 2002 12:40:30 -0800 (PST) (envelope-from dg) Date: Thu, 24 Jan 2002 12:40:30 -0800 From: David Greenman To: "Bob St.John" Cc: "questions@FreeBSD.org" Subject: Re: OEM Agreement Message-ID: <20020124124030.B63107@nexus.root.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from BStJohn@Serenity-Systems.com on Thu, Jan 24, 2002 at 03:14:52PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > >We will be releasing a product in the second quarter of the year which >supports the ability to run multiple OSs in a virtual machine >application. We would like to include FreeBSD in an "OS Pack". > >I'm not sure if it would be appropriate to enter an OEM agreement. What >would be the proper way to pursue this? I don't see a reason to have any agreement. Your company can include FreeBSD in your OS Pack without our permission - it's opensource/freeware afterall. -DG David Greenman Co-founder, The FreeBSD Project - http://www.freebsd.org President, TeraSolutions, Inc. - http://www.terasolutions.com President, Download Technologies, Inc. - http://www.downloadtech.com Pave the road of life with opportunities. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 13: 2:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id B168437B416; Thu, 24 Jan 2002 13:02:21 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id g0OL1JP33047; Thu, 24 Jan 2002 16:01:19 -0500 (EST) (envelope-from alane) Date: Thu, 24 Jan 2002 16:01:19 -0500 From: Alan Eldridge To: Geoffrey Mainland Cc: freebsd-questions@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: imake-4 build problem and make weirdness Message-ID: <20020124210119.GA32380@wwweasel.geeksrus.net> References: <20020124203046.GA82211@apeiron.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020124203046.GA82211@apeiron.net> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 12:30:46PM -0800, Geoffrey Mainland wrote: >Given a Makefile containing: > >${ETC} = /etc That assigns /etc to the variable named "". Aww, geez, make shouldn't take that. PR time. So then ${ETC}/rc.conf = /rc.conf, which probably does not exist. If you do it the right way, though ... [alane ~]$ cat Makefile ETC= /etc all: .if exists(${ETC}/rc.conf) @echo 1 .endif .if exists(/etc/rc.conf) @echo 2 .endif [alane ~]$ make 1 2 >trying to compile imake-4. I have USA_RESIDENT=YES in /etc/make.conf >and I have also downloaded Wraphelp.c to >/usr/ports/distfiles/xc/Wraphelp.c, yet when I build imake-4 the build >process says it can't find Wraphelp.c and sets HasXdmAuth to NO. The Aw shit. You found a bug. [alane ~/FreeBSD/ports/devel/imake-4]$ cvs diff Index: Makefile =================================================================== RCS file: /home/alane/cvsroot/ports/devel/imake-4/Makefile,v retrieving revision 1.16 diff -u -3 -r1.16 Makefile --- Makefile 6 Jan 2002 20:41:44 -0000 1.16 +++ Makefile 24 Jan 2002 20:55:58 -0000 @@ -116,6 +116,8 @@ # InstallXserverSetUID=NO : use Xwrapper. # End of XFree86 configrations +.include + .if ${HasXdmAuth} == YES .if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES .if !exists(${DISTDIR}/${DIST_SUBDIR}/Wraphelp.c) @@ -136,4 +138,4 @@ .endif # USA_RESIDENT .endif # HasXdmAuth -.include +.include [alane ~/FreeBSD/ports/devel/imake-4]$ -- Alan Eldridge Pmmfmffmmfmp mmmpppppffmpmfpmpppff PmpMpmMpp ppfppp MpfpffmppmppMmpFmmMpm mfpmmmmmfpmpmpppff. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 13: 8:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.aros.net (mail.aros.net [207.173.16.20]) by hub.freebsd.org (Postfix) with ESMTP id BA2BD37B416 for ; Thu, 24 Jan 2002 13:08:32 -0800 (PST) Received: from devin ([207.173.16.144]) by mail.aros.net (8.11.6/8.9.3) with ESMTP id g0OL8WB85250 for ; Thu, 24 Jan 2002 14:08:32 -0700 (MST) From: "Devin Atencio" To: Subject: Unable to mount windows machine with smbfs Date: Thu, 24 Jan 2002 14:09:02 -0700 Message-ID: <030f01c1a51b$59afad70$0f00000a@devin> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am trying to get my unix machine to mount my windows machine's shared directory. I notice when I do a mount_smbfs it tries to open port 139 on my windows machine. I did a portscan on my windows machine and I don't show a Port 139 open on my Windows Box. I am able to access the share from another windows box via TCP/IP but unable to get my unix side to see it? Any ideas what I could do? __\/__ . / ^ _ \ . |\| (o)(o) |/| #----------------.OOOo--oo--oOOO.-----------# # # # Devin Atencio dreamboy@aros.net # # Sys Admin Dept # #_________________________Oooo._____________# .oooO ( ) ( ) ) / \ ( (_/ \_) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 13: 9:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.umr.edu (mrelay2.cc.umr.edu [131.151.1.89]) by hub.freebsd.org (Postfix) with ESMTP id A5B4837B400 for ; Thu, 24 Jan 2002 13:09:42 -0800 (PST) Received: from ultra17.cs.umr.edu (ultra17.cs.umr.edu [131.151.89.1]) via ESMTP by mrelay2.cc.umr.edu (8.12.1/) id g0OL9bKN017078; Thu, 24 Jan 2002 15:09:37 -0600 Received: (from thill@localhost) by ultra17.cs.umr.edu (8.12.1/8.12.0.Beta7) id g0OL9bhl016402; Thu, 24 Jan 2002 15:09:37 -0600 (CST) Date: Thu, 24 Jan 2002 15:09:37 -0600 From: Dan Thill To: "Douglas R. Spindler" Cc: freebsd-questions@freebsd.org Subject: Re: Help! Which NIC driver should I use? Message-ID: <20020124150937.A4915@umr.edu> References: <002201c1a482$d31d48a0$6600640a@attbi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.17i In-Reply-To: <002201c1a482$d31d48a0$6600640a@attbi.com>; from spindler@dnai.com on Wed, Jan 23, 2002 at 08:57:13PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > I am attempting a FD/Internet install. > I am stuck on which NIC to use. I have a Compaq with an integrated NIC, > DEC 21143 - IRQ 10. > > Any idea what driver I should use? You should be able to use the de (tulip) driver. If you're going to compile a kernel with it in, the following lines in your kernel config file will do it: # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') However, I'm not familiar with the options to pass if you must set the IRQ manually. -dan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 13:18:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by hub.freebsd.org (Postfix) with ESMTP id 5DF7A37B402 for ; Thu, 24 Jan 2002 13:18:04 -0800 (PST) Received: from ppp6-235.ath.forthnet.gr Bernie_X@smtp-send.myrealbox.com [213.16.153.235] by smtp-send.myrealbox.com with Novell NIMS $Revision: 2.88 $ on Novell NetWare; Thu, 24 Jan 2002 14:18:02 -0700 Date: Thu, 24 Jan 2002 21:05:15 +0200 (EET) From: Bernie X-X-Sender: root@BLAST To: Joe Clarke Cc: Bernie , FreeBSD User Questions List Subject: Re: gnomecore problem... In-Reply-To: <1011855901.477.2.camel@shumai.marcuscom.com> Message-ID: <20020124205611.X184-100000@BLAST> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG thank you so much for your help on this. i did upgrade both pixbuf and gnomecanvas. i'm not sure which one did it, but when i tried gnomecore, it compiled and installed ok. also, glade now compiles ok, just upgraded it, so does xmms, playing orbital right now :-) the only thing i'm getting when trying to do a pkgdb -F after installation is: Cyclic dependencies: gnomecore-1.4.0.4_3 -> gnomecontrolcenter-1.4.0.1 -> (gnomecore-1.4.0.4_3) Unlink which dependency? (? to help): the help isnt very comprehensive on this one and i realy don't want to make a mistake here after all these efforts to make it work... i think that gnomecontrolcenter-1.4.0.1 is the one to unlink. Can you confirm if this is right? Thanks again for all your help. Regards, --Bernie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 13:27:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web14801.mail.yahoo.com (web14801.mail.yahoo.com [216.136.224.217]) by hub.freebsd.org (Postfix) with SMTP id 71CFB37B417 for ; Thu, 24 Jan 2002 13:27:13 -0800 (PST) Message-ID: <20020124212700.51484.qmail@web14801.mail.yahoo.com> Received: from [198.88.119.216] by web14801.mail.yahoo.com via HTTP; Thu, 24 Jan 2002 13:27:00 PST Date: Thu, 24 Jan 2002 13:27:00 -0800 (PST) From: krzysztof Strzelczyk Subject: RE:how to join freebsd machine to windows2000 domain? To: nathan_arun@hotmail.com Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG http://samba.org and click on the documentation link. You should find everything you need there. Cheers -Chris >I have installed FreeBSD 4.4. We have a Windows2000 >only network. I'm at >loss on how to join this machine to our domain. >I read on various internet sites that I need "Samba" >for this. So I >downloaded the samba binaries from freebsd packages. >But I'm having a tough >time configuring this. >If anyone can point me to tutorial on samba, i would >greatly appreciate it. >thanks >Nathan __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 13:28: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from shu.shu-oneline.org (host1.shu-paradigm.org [211.6.195.138]) by hub.freebsd.org (Postfix) with SMTP id CEF1037B41E for ; Thu, 24 Jan 2002 13:27:42 -0800 (PST) Received: (qmail 19084 invoked by uid 519); 24 Jan 2002 11:19:28 -0000 Delivered-To: neo-shuparadigm@shu-oneline.org Received: (qmail 19071 invoked from network); 24 Jan 2002 11:19:26 -0000 Received: from visa.klact.co.jp (210.254.46.33) by shu.shu-oneline.org with SMTP; 24 Jan 2002 11:19:26 -0000 Received: from localhost (localhost.klact.co.jp [127.0.0.1]) by visa.klact.co.jp (8.9.3/3.7W) with ESMTP id UAA02078; Thu, 24 Jan 2002 20:19:22 +0900 (JST) To: neo@shu-oneline.org Cc: neo-shuparadigm@shu-oneline.org, support@jca.apc.org Subject: Re: planet project message mail paradigm ascension =?iso-2022-jp?B?GyRCJDMkbCRPOS1KcyRHJDkbKEI=?= ................ From: Support In-Reply-To: <20020124151405.A9BE.NEO@shu-oneline.org> References: <20020124151405.A9BE.NEO@shu-oneline.org> X-Mailer: Mew version 1.94.2 on Emacs 20.5 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Message-Id: <20020124201920M.yukihiro@klact.co.jp> Date: Thu, 24 Jan 2002 20:19:20 +0900 X-Dispatcher: imput version 20000228(IM140) Lines: 12 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG $B$3$N%"%I%l%9$K%9%Q%`$rAw$i$J$$$G$/$@$5$$!#(B NeoParadigmShift $B$5$s(B: Subject: [support 5853] planet project message mail paradigm ascension $B$3$l$O9-Js$G$9(B ................ Date: Thu, 24 Jan 2002 15:14:16 +0900 > planet project $B$3$l$O9-Js$G$9(B > http://www.shu-oneline.org/planet_P.html > contact point > tel:0176534584:E-mail:shuparadigm@infogeneratorpro.com > paradigm work disseminator shu > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 13:32:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from samuel.interplex.ca (abi.ca [216.18.127.185]) by hub.freebsd.org (Postfix) with ESMTP id CF46537B400 for ; Thu, 24 Jan 2002 13:32:42 -0800 (PST) Received: from interplex.ca (smart-x.ctlc.interplex.ca [209.71.202.73]) by samuel.interplex.ca (8.11.3/8.11.3) with ESMTP id g0OLZ7S10672 for ; Thu, 24 Jan 2002 16:35:07 -0500 (EST) (envelope-from db@interplex.ca) Message-ID: <3C507E51.9060506@interplex.ca> Date: Thu, 24 Jan 2002 16:36:17 -0500 From: Dominic Blais User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.7) Gecko/20020111 X-Accept-Language: en-us MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: losing 1st packet with racoon (IPSEC) Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi! I'm facing 2 problems.. I'm using IPSec with racoon and I always loose the first packet of the connexion.... If I set the connection time to 30 seconds... I loose the 1st packet each time a connexion is done.. So I settled the connection time to 3 days so avoid this problem... The other problem is that if a router goes down and goes back up, it doesn't re-establish the connexion. Is anyone able to fix one or two of those problems? Thanks a lot -- Dominic Blais Administrateur reseau Interplex telecom -=[ http://www.interplex.ca ]=- Email: db@interplex.ca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 13:34:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from carousel.com (carousel.com [216.122.248.176]) by hub.freebsd.org (Postfix) with ESMTP id A5FD137B404 for ; Thu, 24 Jan 2002 13:34:14 -0800 (PST) Received: from [192.168.1.131] ([24.30.124.208]) by carousel.com (8.11.0/8.11.0) with ESMTP id g0OLYCJ61028 for ; Thu, 24 Jan 2002 13:34:12 -0800 (PST) (envelope-from ted@carousel.com) Mime-Version: 1.0 X-Sender: brecarousels@pop.we.mediaone.net Message-Id: Date: Thu, 24 Jan 2002 13:33:56 -0800 To: freebsd-questions@FreeBSD.ORG From: Ted Edwin McDonald Subject: Broken Link Content-Type: multipart/alternative; boundary="============_-1200214445==_ma============" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --============_-1200214445==_ma============ Content-Type: text/plain; charset="us-ascii" ; format="flowed" http://www.FreeBSD.org/projects/newbies.html The Complete FreeBSD by Greg Lehey, published by BSDi. This book assumes minimal UNIX experience and takes the beginner step by step through each stage from installation to everything you need to know to set up and run a FreeBSD system. You also get to understand what you're doing and why. The page listed at the top has a broken link to this book. Best, Ted -- Ted Edwin McDonald Marketing Director/Webmaster Brass Ring Entertainment tel 818-394-6253 fax 818-394-0062 http://Carousel.com --============_-1200214445==_ma============ Content-Type: text/html; charset="us-ascii" Broken Link
http://www.FreeBSD.org/projects/newbies.html

The Complete FreeBSD by Greg Lehey, published by BSDi. This book assumes minimal UNIX experience and takes the beginner step by step through each stage from installation to everything you need to know to set up and run a FreeBSD system. You also get to understand what you're doing and why.

The page listed at the top has a broken link to this book.

Best, Ted
-- 
Ted Edwin McDonald
Marketing Director/Webmaster
Brass Ring Entertainment
tel 818-394-6253
fax 818-394-0062
http://Carousel.com
--============_-1200214445==_ma============-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 14:11:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.strongnet.co.nz (mail.strongnet.co.nz [210.54.142.6]) by hub.freebsd.org (Postfix) with ESMTP id 3E99C37B841 for ; Thu, 24 Jan 2002 14:02:56 -0800 (PST) Received: from wapsolutions.co.nz (port-91-96.fastadsl.net.nz [203.96.91.96]) by mail.strongnet.co.nz (8.11.0/8.9.3) with ESMTP id g0OM0wP07103 for ; Fri, 25 Jan 2002 11:00:58 +1300 Message-ID: <3C508458.1030705@wapsolutions.co.nz> Date: Fri, 25 Jan 2002 11:02:00 +1300 From: Jonathan Chen User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.7) Gecko/20011221 X-Accept-Language: en-us MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Reverse-ptr entry under DNS Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Here in NZ, I've noticed that IP addresses allocated for ADSL connections have odd reverse-ptr entries: eg: > dig -x 203.96.91.96 [...] ;; ANSWER SECTION: 96.91.96.203.in-addr.arpa. 24m1s IN CNAME 96.96-127.91.96.203.in-addr.arpa. ;; AUTHORITY SECTION: 91.96.203.in-addr.arpa. 3d23h24m1s IN NS reliant.netgate.net.nz. 91.96.203.in-addr.arpa. 3d23h24m1s IN NS defiant.netgate.net.nz. If I use: > nslookup -type 203.96.91.96 I eventually get the name associated with the IP. Is it legal to have CNAMEs for in-addr.arpa addresses instead of PTR? I ask this 'cos the freebsd.org mailservers don't seem to think so, and it's refusing to accept email directly from these IPs. Cheers. -- Jonathan Chen "Nyuck, nyuck, nyuck" -- Curly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 14:15: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtprelay7.dc2.adelphia.net (smtprelay7.dc2.adelphia.net [64.8.50.39]) by hub.freebsd.org (Postfix) with ESMTP id E337337B4AC for ; Thu, 24 Jan 2002 14:12:13 -0800 (PST) Received: from there ([63.88.159.67]) by smtprelay7.dc2.adelphia.net (Netscape Messaging Server 4.15) with SMTP id GQGR0700.C17; Thu, 24 Jan 2002 17:12:07 -0500 Content-Type: text/plain; charset="iso-8859-1" From: "Gerald A. Speak" Reply-To: gaspeak@va.prestige.net To: Ted Edwin McDonald Subject: Re: Broken Link Date: Thu, 24 Jan 2002 17:12:05 -0500 X-Mailer: KMail [version 1.3.2] References: In-Reply-To: Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020124221213.E337337B4AC@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I assume you mean this link: http://www.osd.bsdi.com/titles/freebsd/bsdcomp_bkx.phtml On Thursday 24 January 2002 04:33 pm, you wrote: > http://www.FreeBSD.org/projects/newbies.html > > The Complete FreeBSD by Greg Lehey, published by BSDi. This book > assumes minimal UNIX experience and takes the beginner step by step > through each stage from installation to everything you need to know > to set up and run a FreeBSD system. You also get to understand what > you're doing and why. > > The page listed at the top has a broken link to this book. > > Best, Ted To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 14:20:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blade.elitsat.net (blade.elitsat.net [209.239.78.129]) by hub.freebsd.org (Postfix) with ESMTP id E201437B400; Thu, 24 Jan 2002 14:19:54 -0800 (PST) Received: from localhost (amour@localhost) by blade.elitsat.net (8.11.6/8.11.6) with ESMTP id g0OLwM794068; Thu, 24 Jan 2002 23:58:22 +0200 (EET) (envelope-from amour@blade.elitsat.net) Date: Thu, 24 Jan 2002 23:58:21 +0200 (EET) From: Alexander To: , Subject: IPXIP Message-ID: <20020124231006.T93791-100000@blade.elitsat.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a serious question to ask. I have 2 gamehalls. Both of them are on masq. networks. And I need to make them to play games over IPX. for linux there are a lot of demons for ipx routing, but I don't know what are for freebsd. So here is what I did: 1. on both routers I compiled: options IPTUNNEL IPXIP and IPX 2. added the following lines in /etc/rc.conf: ifconfig_rl0_ipx="ipx 0x00000000" # Sample IPX address family entry. ipxgateway_enable="YES" # Set to YES to enable IPX routing. ipxrouted_enable="YES" # Set to YES to run the IPX routing daemon. ipxrouted_flags="" # Flags for IPX routing daemon. 3. did a tunnel over the both routers. on router1: nos-tun -t /dev/tun0 -s 172.100.100.1 -d 172.100.100.2 209.1.1.2 on router2: nos-tun -t /dev/tun0 -s 172.100.100.2 -d 172.100.100.1 209.1.1.1 4. did: on router1: ifconfig rl0 ipx 0x0 ipdst 172.100.100.1 on router2: ifconfig rl0 ipx 0x0 ipdst 172.100.100.2 and the results: on both sides I had interface: ipxip0: flags=11 mtu 1536 ipx 0.XXXXXXXXXX --> 0 but when a user on the one gamehall creates a game (using Starcraft (LAN)) the other gamehall couldn't join. So this means that my configurations didn't work. I tried to change ipdst on both sides to point not to source but dest but this didn't help. If you know how can I make this, please tell me. I've tried to find some documentations about IPXIP or IPXrouted but I found nothing. P.S. I know that there are gameservers for starcraft but I gave it just for example. thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 14:21:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.marketwatchmail.com (mail.marketwatchmail.com [206.146.143.85]) by hub.freebsd.org (Postfix) with SMTP id F245737B41B for ; Thu, 24 Jan 2002 14:20:19 -0800 (PST) Received: (qmail 20179 invoked from network); 24 Jan 2002 23:08:10 -0000 Received: from unknown (HELO jaustadw2k) (206.147.106.71) by mail.marketwatchmail.com with SMTP; 24 Jan 2002 23:08:10 -0000 From: "Jay Austad" To: Subject: routed Date: Thu, 24 Jan 2002 16:20:18 -0600 Message-ID: <54180709DD3FE145917BB165AFE7EFA002E0D388@mspexch2.office.mktw.net> 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 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Does anyone have any experience configuring routed? I just need to be able to tell it the following things: 1. not to listen or advertise on one particular interface (the public interface) 2. Not to advertise a particular network (the public one) 3. And to force it to advertise the network assigned to the lo1 interface (it's actually a tunnel endpoint), I don't think it will by default advertise an address assigned as a loopback. Thanks. Jay To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 14:24:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.k12us.com (mail.k12us.com [65.112.222.15]) by hub.freebsd.org (Postfix) with SMTP id 3958837B404 for ; Thu, 24 Jan 2002 14:24:23 -0800 (PST) Received: (qmail 45157 invoked by uid 1001); 24 Jan 2002 22:24:16 -0000 Date: Thu, 24 Jan 2002 17:24:16 -0500 From: Christopher Weimann To: freebsd-questions@FreeBSD.ORG Subject: Max system memory in FreeBSD Message-ID: <20020124172416.A33829@mail.k12us.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-AntiVirus: scanned for viruses by AMaViS 0.2.1 (http://amavis.org/) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am hoping to convert some Netfinity servers from Win2k to FreeBSD. These boxes have over 8Gb of ram ( I think 16 ). Does FreeBSD handle more than 4Gb yet? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 14:26: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rabble.ca (rabble.ca [205.150.101.79]) by hub.freebsd.org (Postfix) with ESMTP id EB15C37B400 for ; Thu, 24 Jan 2002 14:25:57 -0800 (PST) Received: from sierra (CPE002078d61cac.cpe.net.cable.rogers.com [24.43.64.68]) by rabble.ca (Postfix) with ESMTP id C637B7D5B for ; Thu, 24 Jan 2002 17:25:56 -0500 (EST) Message-ID: <008301c1a526$3fc80d20$6601a8c0@etob1.on.wave.home.com> From: "William Wong" To: Subject: Problem with burncd and Matshita CW-8586 Date: Thu, 24 Jan 2002 17:27:03 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I get the following error using burncd, does anyone have any idea why this is happening? I read an archived message about how an NEC writer wasn't compatible with burncd, but I wanted to make sure. Is there a list of compatible drives for burncd? devbox# burncd -f /dev/acd0c data cd.iso fixate next writeable LBA 0 writing from file cd.iso size 773664 KB only wrote -1 of 32768 bytes burncd: ioctl(CDRIOCCLOSETRACK): Input/output error dmesg: acd0: CD-RW at ata1-master using PIO4 acd0: WRITE_BIG - ILLEGAL REQUEST asc=2c ascq=00 error=04 acd0: SYNCHRONIZE_CACHE - ILLEGAL REQUEST asc=2c ascq=00 error=04 Regards, - Will To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 14:48:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp05.wxs.nl (smtp05.wxs.nl [195.121.6.57]) by hub.freebsd.org (Postfix) with ESMTP id C509A37B400 for ; Thu, 24 Jan 2002 14:48:45 -0800 (PST) Received: from cybertron.kruijff ([213.10.151.186]) by smtp05.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id GQGSP802.3ZF for ; Thu, 24 Jan 2002 23:48:44 +0100 Date: Thu, 24 Jan 2002 23:48:44 +0100 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: Alex X-Priority: 3 (Normal) Message-ID: <17355218880.20020124234844@cybertron.tmfweb.nl> To: freebsd-questions@freebsd.org Subject: Bad bloks, how to discover them MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello , I have a FreeBSD server, that is acting strange. Reboots at freewil and a ping takes as long as 9s to reach my provider and come back. I have noticed some filesystem check come up and i came to wonder, is there any way i can check my whole harddrive for bad bloks? -- Best regards, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 14:53:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay01.connectit.co.za (firewall-1.connectit.co.za [196.14.84.194]) by hub.freebsd.org (Postfix) with ESMTP id CC4BC37B400 for ; Thu, 24 Jan 2002 14:53:11 -0800 (PST) Received: by relay01.connectit.co.za (Postfix, from userid 500) id 70B126FCA3; Thu, 24 Jan 2002 21:30:41 +0200 (SAST) Received: from acenet.co.za (acenet.co.za [196.25.152.246]) by relay01.connectit.co.za (Postfix) with ESMTP id A6A283004E for ; Thu, 24 Jan 2002 21:30:39 +0200 (SAST) Date: Fri, 25 Jan 2002 01:02:20 +0200 Message-Id: <200201250102.AA510656728@acenet.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii From: "Cole" Reply-To: To: Subject: ipsec/racoon problems on freebsd X-Mailer: X-AntiVirus: scanned for viruses by Netralink.com SMTP Server (http://www.netralink.com/) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am having problems with dowloading over ftp on a ppp dialup, with ipsec running racoon using preshared key. about every 15-20 seconds, my downloads drop from about the 4/5k/s to 0k/s and it does this continually if i download, i have tried downloading from the same computer without ipsec, and i have not had a problem, both of the computers are freebsd boxes, i am running freebsd 4.5RC1, but i cant seem to figure out this ipsec dowload problem, i have tried increasing the lifetime values but to no avail, the problem still remains, could someone please reply if they know the possible cause of this problem Cole To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 15: 1: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from snipe.prod.itd.earthlink.net (snipe.mail.pas.earthlink.net [207.217.120.62]) by hub.freebsd.org (Postfix) with ESMTP id 2476237B400 for ; Thu, 24 Jan 2002 15:01:06 -0800 (PST) Received: from sdn-ar-004dcwashp231.dialsprint.net ([206.133.21.247] helo=moo.holy.cow) by snipe.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16Tsrh-0007Jk-00; Thu, 24 Jan 2002 15:01:05 -0800 Received: by moo.holy.cow (Postfix, from userid 1001) id 6FF3350BCF; Thu, 24 Jan 2002 18:03:06 -0500 (EST) Date: Thu, 24 Jan 2002 18:03:06 -0500 From: parv To: Drew Tomlinson Cc: questions@freebsd.org Subject: Re: Regex Database Help? Message-ID: <20020124230306.GA70362@moo.holy.cow> Mail-Followup-To: Drew Tomlinson , questions@freebsd.org References: <01f801c1a509$bd1d3060$c42a6ba5@lc.ca.gov> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <01f801c1a509$bd1d3060$c42a6ba5@lc.ca.gov> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG in message <01f801c1a509$bd1d3060$c42a6ba5@lc.ca.gov>, wrote Drew Tomlinson thusly... ... > # Allow allhosts.some.domain > /*\.some\.domain$/ OK > > In other words, allow all hosts that end in some.domain. However, I > have tried this different ways without success. ... did you try... /some\.domain$/ OK ...which, according to my /usr/local/etc/postfix/sample-access, should work. -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 15: 7:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from green.csi.cam.ac.uk (green.csi.cam.ac.uk [131.111.8.57]) by hub.freebsd.org (Postfix) with ESMTP id 708A837B404 for ; Thu, 24 Jan 2002 15:07:07 -0800 (PST) Received: from [127.0.0.1] (helo=localhost ident=root) by green.csi.cam.ac.uk with esmtp (Exim 3.22 #1) id 16TsxR-0005N9-00; Thu, 24 Jan 2002 23:07:01 +0000 Date: Thu, 24 Jan 2002 23:06:52 +0000 From: AMAKAWA Shuhei To: "Mario Doria" Cc: , Subject: Re: IPF Dropping connections in the middle of a transfer In-Reply-To: <003b01c1a48e$39fabed0$0a00a8c0@Deathstar> References: <003b01c1a48e$39fabed0$0a00a8c0@Deathstar> MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Message-Id: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Wed, 23 Jan 2002 22:18:47 -0600, Mario Doria wrote: > > Hello, > > I'm looking for some help regarding my IPFilter ruleset, as far as I can > tell, it looks OK. The problem is that some remote users when transfering > files with sftp suddenly lose the connection to the server. Other cases are > where tranfering files via FTP (using windows client leechFTP), the > connection times out randomly (always before the timeout in leechFTP). On > both ocations, I haven't been able to reproduce the problem. > > I hope someone can shed some light into this! > > Thanks, > > Mario Doria > madd@tecdigital.net I started to see probably the same problem since November 2001 or something. I suspect some recent change in the FreeBSD tcp code is affecting IP Filter's stateful inspection. sysctl net.inet.tcp.recvspace=32768 mitigates the problem somewhat (default is 65536). (I didn't look at your rules.) -- Shuhei To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 15:10:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from taupo.cs.waikato.ac.nz (taupo.cs.waikato.ac.nz [130.217.250.12]) by hub.freebsd.org (Postfix) with ESMTP id 71B7437B402; Thu, 24 Jan 2002 15:10:25 -0800 (PST) Received: (from joerg@localhost) by taupo.cs.waikato.ac.nz (8.11.3/8.11.1) id g0ON7vQ50869; Fri, 25 Jan 2002 12:07:57 +1300 (NZDT) (envelope-from joerg) Date: Fri, 25 Jan 2002 12:07:57 +1300 From: Joerg Micheel To: John Von Essen Cc: Len Conrad , freebsd-questions@freebsd.org, freebsd-hardware@freebsd.org Subject: Re: 64-bit PCI mobos Message-ID: <20020125120757.X42544@cs.waikato.ac.nz> References: <5.1.0.14.2.20020121002104.02b61ec0@mail.Go2France.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from john@essenz.com on Sun, Jan 20, 2002 at 10:13:18PM -0500 Operating-System: ... powered by FreeBSD Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 20, 2002 at 10:13:18PM -0500, John Von Essen wrote: > I would recommend the TYAN 2518 with ServerWorks chipset. Supports two > 64-bit PCI slots, dual Pentium III, 4 Gb RAM, optional Ultra160 SCSI > onboard. This board works very well with FreeBSD. Earlier versions of this motherboard had some reboot problems, at least with Linux, I believe they have been overcome, partly with a software patch to it, the newer have a BIOS update (I think). Otherwise, very nice board. Joerg -- Joerg B. Micheel Email: WAND and NLANR MOAT Email: The University of Waikato, CompScience Phone: +64 7 8384794 Private Bag 3105 Fax: +64 7 8585095 Hamilton, New Zealand Plan: PMA, TINE and the DAG's To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 15:10:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id 5D92937B417 for ; Thu, 24 Jan 2002 15:10:38 -0800 (PST) Received: from neildesk.neilmcgann.co.uk ([213.107.105.120]) by mta05-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020124231037.MQSX7206.mta05-svc.ntlworld.com@neildesk.neilmcgann.co.uk> for ; Thu, 24 Jan 2002 23:10:37 +0000 Message-Id: <5.1.0.14.0.20020124231104.00a0bc60@pop.ntlworld.com> X-Sender: neil.mcgann@pop.ntlworld.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Thu, 24 Jan 2002 23:11:24 +0000 To: freebsd-questions@FreeBSD.ORG From: Neil McGann Subject: subscribe freebsd-questions Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG subscribe freebsd-questions To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 15:36:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id CD81137B417 for ; Thu, 24 Jan 2002 15:36:51 -0800 (PST) Received: from gateway ([63.70.155.109]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Thu, 24 Jan 2002 18:40:05 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: can Apache_FP run without a real domain web address? Date: Thu, 24 Jan 2002 18:36:44 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I installed apache13-fp today from ports. during first reboot I got this msg. 'could not determine the servers fully qualified domain name, using 127.0.0.1 for server name. Apache not started.' I do not have a real domain name so in hosts file I added the (www domain com) I told apache to use to the IP address of my Nic card. Then rebooted and got a new msg. "local package init: /usr/local/sbin/ apachectl start_FP: httpd could not be started". I don't know if this is still related to the original problem so I am asking can Apache_FP run without a real public domain web address? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 15:45:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web21007.mail.yahoo.com (web21007.mail.yahoo.com [216.136.227.61]) by hub.freebsd.org (Postfix) with SMTP id 5FF6B37B402 for ; Thu, 24 Jan 2002 15:45:49 -0800 (PST) Message-ID: <20020124234549.23631.qmail@web21007.mail.yahoo.com> Received: from [66.3.230.249] by web21007.mail.yahoo.com via HTTP; Thu, 24 Jan 2002 23:45:49 GMT Date: Thu, 24 Jan 2002 23:45:49 +0000 (GMT) From: =?iso-8859-1?q?Matt=20Sykes?= Subject: recompile ports when update kernel/userland? To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tracking 4.4-stable. Should I expect a few ports to be broken after I rebuild the kernel and userland? I guess I don't quite believe that binary compatibility exists in the real world. I know that updating the kernel without updating the base userland can cause problems, so it seems like I should rebuild all my ports. If there is any chance that any port will be broken any percent of the time, I'll just rebuild everything to be safe. Even though a port may appear to be okay without recompilation, it could fail in an unexpected way at some point. But maybe this is not the case? What are your experiences here? --Matt __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 15:47:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.velosystems.net (cx144844-b.pv1.ca.home.com [24.9.137.174]) by hub.freebsd.org (Postfix) with ESMTP id D680237B404 for ; Thu, 24 Jan 2002 15:47:53 -0800 (PST) Received: from win2kads (ms [192.168.1.5]) by mail.velosystems.net (Postfix) with SMTP id 2997150783; Thu, 24 Jan 2002 15:47:50 -0800 (PST) Message-ID: <004701c1a52f$c391e910$0501a8c0@win2kads> From: "Steve Wingate" To: "Joe & Fhe Barbish" , "FBSD Questions" References: Subject: Re: can Apache_FP run without a real domain web address? Date: Thu, 24 Jan 2002 15:35:10 -0800 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.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Joe & Fhe Barbish" To: "FBSD Questions" Sent: Thursday, January 24, 2002 3:36 PM Subject: can Apache_FP run without a real domain web address? > I installed apache13-fp today from ports. > during first reboot I got this msg. > 'could not determine the servers fully qualified domain name, > using 127.0.0.1 for server name. Apache not started.' > > I do not have a real domain name so in hosts file I added the > (www domain com) I told apache to use to the IP address of > my Nic card. Then rebooted and got a new msg. > "local package init: /usr/local/sbin/ apachectl start_FP: > httpd could not be started". > > I don't know if this is still related to the original problem so > I am asking can Apache_FP run without a real public domain web address? Taken verbatim from the apache httpd.conf file: # ServerName allows you to set a host name which is sent back to clients for # your server if it's different than the one the program would get (i.e., use # "www" instead of the host's real name). # # Note: You cannot just invent host names and hope they work. The name you # define here must be a valid DNS name for your host. If you don't understand # this, ask your network administrator. # If your host doesn't have a registered DNS name, enter its IP address here. # You will have to access it by its address (e.g., http://123.45.67.89/) # anyway, and this will make redirections work in a sensible way. # # 127.0.0.1 is the TCP/IP local loop-back address, often named localhost. Your # machine always knows itself by this address. If you use Apache strictly for # local testing and development, you may use 127.0.0.1 as the server name. # #ServerName new.host.name so the answer is yes and I'm doing it on 2 boxes at home. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 16: 0: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from snipe.prod.itd.earthlink.net (snipe.mail.pas.earthlink.net [207.217.120.62]) by hub.freebsd.org (Postfix) with ESMTP id 8433E37B400 for ; Thu, 24 Jan 2002 15:59:59 -0800 (PST) Received: from sdn-ar-004dcwashp231.dialsprint.net ([206.133.21.247] helo=moo.holy.cow) by snipe.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16Ttmg-0000j1-00; Thu, 24 Jan 2002 15:59:59 -0800 Received: by moo.holy.cow (Postfix, from userid 1001) id F057A50BCF; Thu, 24 Jan 2002 19:01:59 -0500 (EST) Date: Thu, 24 Jan 2002 19:01:59 -0500 From: parv To: Matt Sykes Cc: freebsd-questions@freebsd.org Subject: Re: recompile ports when update kernel/userland? Message-ID: <20020125000159.GA71410@moo.holy.cow> Mail-Followup-To: Matt Sykes , freebsd-questions@freebsd.org References: <20020124234549.23631.qmail@web21007.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020124234549.23631.qmail@web21007.mail.yahoo.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG in message <20020124234549.23631.qmail@web21007.mail.yahoo.com>, wrote Matt Sykes thusly... > ... > If there is any chance that any port will be broken any > percent of the time, I'll just rebuild everything to be > safe. Even though a port may appear to be okay without > recompilation, it could fail in an unexpected way at > some point. ... consciously, i have not experienced incompatibility between an already installed ports and newer world. the only problems, sometimes, that i had were whilst building a port after new world w/o newer ports tree. that ... or, i had not been very observant of these kinds of problems. - parv -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 16: 5:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from maile.telia.com (maile.telia.com [194.22.190.16]) by hub.freebsd.org (Postfix) with ESMTP id DC03237B400 for ; Thu, 24 Jan 2002 16:05:38 -0800 (PST) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by maile.telia.com (8.11.6/8.11.6) with ESMTP id g0P05bg11103 for ; Fri, 25 Jan 2002 01:05:37 +0100 (CET) Received: from falcon.midgard.homeip.net (h185n2fls20o913.telia.com [212.181.163.185]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id BAA01924 for ; Fri, 25 Jan 2002 01:05:35 +0100 (CET) Received: (qmail 34322 invoked by uid 1001); 25 Jan 2002 00:05:34 -0000 Date: Fri, 25 Jan 2002 01:05:34 +0100 From: Erik Trulsson To: Matt Sykes Cc: freebsd-questions@freebsd.org Subject: Re: recompile ports when update kernel/userland? Message-ID: <20020125000534.GA34297@student.uu.se> Mail-Followup-To: Matt Sykes , freebsd-questions@freebsd.org References: <20020124234549.23631.qmail@web21007.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020124234549.23631.qmail@web21007.mail.yahoo.com> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 11:45:49PM +0000, Matt Sykes wrote: > > tracking 4.4-stable. > > Should I expect a few ports to be broken after I rebuild > the kernel and userland? I guess I don't quite believe > that binary compatibility exists in the real world. > > I know that updating the kernel without updating the > base userland can cause problems, so it seems like I > should rebuild all my ports. > > If there is any chance that any port will be broken any > percent of the time, I'll just rebuild everything to be > safe. Even though a port may appear to be okay without > recompilation, it could fail in an unexpected way at > some point. > > But maybe this is not the case? > > What are your experiences here? > > --Matt Normally there is no need to rebuild the ports. Binary compatibility is quite good. It is not perfect but fairly close. Ports are actually much more likely to break if you upgrade some ports to the latest version without rebuilding teh rest of them. The Gnome stuff, for example, seems to be extra sensitive to this. It is generally considered a bad idea to upgrade just one part of it. Some ports are a bit more vulnerable than others due to their depending on the internals of the system. ( sysutils/lsof comes to mind ) Even for such ports there normally is no need to rebuild them when you update the system, it is just a slightly higher risk of something going wrong. The only thing you should keep in mind when updating the system with old ports installed is that you should remember to set the COMPATnX variables to 'yes' in /etc/make.conf This will install older versions of various libraries that ports might be linked to in case the version number of the system library has been increased due to an incompatible change. My personal experience is that I have updated my system in steps from 3.2 to 4.5 and I don't think I have ever had any ports break when upgrading the system. (I have rebuild all the ports several times for other reasons, though.) So, while there are no guarantees of nothing ever breaking I don't think it is wort the trouble of reinstalling all the ports just because you upgraded the system. Doing so will almost certainly take more time than finding and fixing any problems that might (but probably won't) occur otherwise. -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 16:14:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mcneil.com (cpe-66-75-176-109.socal.rr.com [66.75.176.109]) by hub.freebsd.org (Postfix) with ESMTP id 68E4C37B41B for ; Thu, 24 Jan 2002 16:14:43 -0800 (PST) Received: from mcneil.com (blue.mcneil.com [66.75.176.109]) by mcneil.com (8.11.6/8.11.6) with ESMTP id g0ONUdp47561 for ; Thu, 24 Jan 2002 15:30:39 -0800 (PST) (envelope-from sean@mcneil.com) Message-ID: <3C509910.4070201@mcneil.com> Date: Thu, 24 Jan 2002 15:30:24 -0800 From: Sean McNeil User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.7) Gecko/20020104 X-Accept-Language: en-us MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: binutils traditional core file support Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, I cvsup'd my sources to the -stable and have a kernel labeled FreeBSD 4.5-RC. I just tried to compile the binutils current cvs and found that the bfd/trad-core.c uses fields in the struct user that do not exist now. u_dsize and u_ssize. I'm not sure if these were supported in previous versions of the kernel, but I suspect that they were as I have a binutil compiled for freebsd that shows trad-core as a supported object format. I configured binutils with configure --enable-targets=all Any information on this would be appreciated. I can work with the binutils people to have this supported correctly if that is what it takes. TIA, Sean To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 16:16:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.the-i-pa.com (mail.the-i-pa.com [151.201.71.132]) by hub.freebsd.org (Postfix) with SMTP id D6F4337B400 for ; Thu, 24 Jan 2002 16:16:38 -0800 (PST) Received: (qmail 41559 invoked from network); 25 Jan 2002 00:20:43 -0000 Received: from unknown (HELO proxy.pt.com) (151.201.71.209) by mail.the-i-pa.com with SMTP; 25 Jan 2002 00:20:43 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Bill Moran Organization: Potential Technology To: freebsd-questions@freebsd.org Subject: Printing problems with KDE Date: Thu, 24 Jan 2002 18:44:04 -0500 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <02012418440402.07381@proxy.pt.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG We've got a little office network that consists of some FreeBSD and some Windows computers. One of the FreeBSD computers acts as a print server. It's running 4.2-R and printing via lpd works fine. Printing through this print server using Samba from the Win stations works fine as well. lpd printing from a FreeBSD workstation (4.3-R) via the newtork works fine as well. But I can't print anything from KDE, either locally (KDE 2.1) or on the remote station (KDE 2.2). I'm guessing that it's a config problem with KDE, but I can't find much in the way of configuration information to tweak. The FreeBSD lpd printing system seems to be set up just dandy, it's a shame KDE isn't using it. Any advice? -- Bill Moran Potential Technology technical services http://www.potentialtech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 16:17:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hsd.com.au (CPE-144-132-42-44.vic.bigpond.net.au [144.132.42.44]) by hub.freebsd.org (Postfix) with ESMTP id 0F5F837B402 for ; Thu, 24 Jan 2002 16:17:10 -0800 (PST) Received: from ariel by hsd.com.au with SMTP (MDaemon.v3.0.1.R) for ; Fri, 25 Jan 2002 11:15:22 +1100 Reply-To: From: "Andrew Cowan" To: "Freebsd-Questions" Subject: Question Regarding FDisk Date: Fri, 25 Jan 2002 11:15:21 +1100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal X-MDaemon-Deliver-To: freebsd-questions@FreeBSD.ORG X-Return-Path: andrew.cowan@hsd.com.au X-MDRcpt-To: freebsd-questions@FreeBSD.ORG Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I was installing 4.4 release for a friend last weekend, and was trying to remember how to create a 'dangerous dedicated' disk. Finally worked out that the 'F' key did the job, but then I studidly marked the partition as active also. After the installation completed, the disk was unbootable, it just kept repeating the press 'F1 - FreeBSD' prompt at me. My questions are: Why doesnt FDisk display the 'F' key option? and why does it allow a D.D. drive to be marked as active, if it will result in an unbootable drive? Finally, I am not sure if this is how I created D.D. Disks in the past. Why was this changed? Cheers, Andrew Cowan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 16:45:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web10006.mail.yahoo.com (web10006.mail.yahoo.com [216.136.130.42]) by hub.freebsd.org (Postfix) with SMTP id 6007D37B404 for ; Thu, 24 Jan 2002 16:45:24 -0800 (PST) Message-ID: <20020125004523.41603.qmail@web10006.mail.yahoo.com> Received: from [68.15.191.99] by web10006.mail.yahoo.com via HTTP; Thu, 24 Jan 2002 16:45:23 PST Date: Thu, 24 Jan 2002 16:45:23 -0800 (PST) From: Tom Kersten Subject: Apache 2.0 install problem... To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all, I don't know what my problem is, but, I am having a hard time installing Apache 2.0 from the ports. Here is what I have done... #cd /usr/ports/www/apache2 #make #cd work/httpd-2_0_28 #./configure --prefix=/usr/local #make #make install During the "make install" I get the libraries installed and after that it seems to stop when it is trying to install the HTML documents, below is the output. What am I doing wrong? I can't seem to find a similar problem under google and am also having a hard time w/ an Apache 2.0 install tutorial. Any tips are appreciated.... Thanks, Thomas Kersten /usr/bin/install -c -m 644 expat.h /usr/local/apache2/include Making install in pcre Making install in os Making install in unix Making install in server Making install in mpm Making install in prefork Making install in modules Making install in aaa Making install in filters Making install in loggers Making install in metadata Making install in http Making install in generators Making install in mappers Making install in support Installing configuration files Installing HTML documents usage: cp [-R [-H | -L | -P]] [-f | -i] [-pv] src target cp [-R [-H | -L | -P]] [-f | -i] [-pv] src1 ... srcN directory *** Error code 64 Stop in /usr/ports/www/apache2/work/httpd-2_0_28. *** Error code 1 __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 17: 1: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from uce55.uchaswv.edu (uce55.uchaswv.edu [12.4.161.9]) by hub.freebsd.org (Postfix) with ESMTP id 0F33337B404 for ; Thu, 24 Jan 2002 17:01:02 -0800 (PST) Received: from there ([172.16.32.103]) by uce55.uchaswv.edu (8.9.3 (PHNE_22672)/8.9.3) with SMTP id UAA10108 for ; Thu, 24 Jan 2002 20:03:57 -0500 (EST) Message-Id: <200201250103.UAA10108@uce55.uchaswv.edu> Content-Type: text/plain; charset="iso-8859-1" From: Nathan Mace To: freebsd-questions@freebsd.org Subject: whereis linprocfs? Date: Thu, 24 Jan 2002 20:00:55 -0500 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG i just installed vmware form the ports tree. but when i try to run it, it says that it needs linprocfs. i can't find it anywhere in the ports tree. how can i get it installed? please cc any replies to me. thanks nathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 17:17:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from intrex.yserver.net (intrex.yserver.net [64.171.237.202]) by hub.freebsd.org (Postfix) with ESMTP id 4C90137B402 for ; Thu, 24 Jan 2002 17:17:53 -0800 (PST) Received: from localhost (admin@localhost) by intrex.yserver.net (8.11.6/8.11.6) with ESMTP id g0P1IuJ50052 for ; Thu, 24 Jan 2002 17:18:56 -0800 (PST) (envelope-from admin@yserver.net) Date: Thu, 24 Jan 2002 17:18:56 -0800 (PST) From: Bennett Tindle To: Subject: IP Interface Fwd. Message-ID: <20020124171754.P50050-100000@intrex.yserver.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have setup 3 other ips other than my primary on nic, and when I run an IRC client using -H ip.ip.ip.ip it uses the primary IP. Someone told me I need to setup forwards for this, but am not sure how... Can anyone help? ---------------------------------------- - Bennett Tindle - admin@yserver.net - - http://www.yserver.net - - FAX: 413-383-5447 - ---------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 17:33:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id C794137B402 for ; Thu, 24 Jan 2002 17:33:29 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16TvF9-0002E1-00 for freebsd-questions@freebsd.org; Fri, 25 Jan 2002 01:33:27 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id DB6DB45FFA; Fri, 25 Jan 2002 02:33:26 +0100 (CET) Date: Fri, 25 Jan 2002 02:33:26 +0100 From: Cliff Sarginson To: freebsd-questions@freebsd.org Subject: Re: Printing problems with KDE Message-ID: <20020125013326.GA1180@raggedclown.net> References: <02012418440402.07381@proxy.pt.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <02012418440402.07381@proxy.pt.com> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 06:44:04PM -0500, Bill Moran wrote: > We've got a little office network that consists of some FreeBSD > and some Windows computers. > One of the FreeBSD computers acts as a print server. It's running > 4.2-R and printing via lpd works fine. Printing through this print server > using Samba from the Win stations works fine as well. lpd printing from > a FreeBSD workstation (4.3-R) via the newtork works fine as well. > But I can't print anything from KDE, either locally (KDE 2.1) or on > the remote station (KDE 2.2). > I'm guessing that it's a config problem with KDE, but I can't find much > in the way of configuration information to tweak. The FreeBSD lpd > printing system seems to be set up just dandy, it's a shame KDE isn't > using it. > Any advice? > -- Look through the menus for something like (off the top of my head) preferences/system/printing manager It's in there somewhere, I used it a couple of days ago (not in a position to run KDE at moment otherwise I would check for you) -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 17:46:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay03.roc.frontiernet.net (alteon01h.roc.frontiernet.net [66.133.130.238]) by hub.freebsd.org (Postfix) with SMTP id 3B9F437B404 for ; Thu, 24 Jan 2002 17:46:52 -0800 (PST) Received: (qmail 21131 invoked from network); 25 Jan 2002 01:46:51 -0000 Received: from unknown (HELO blacklamb.mykitchentable.net) ([207.173.227.80]) (envelope-sender ) by relay03.roc.frontiernet.net (qmail-ldap-1.03) with SMTP for ; 25 Jan 2002 01:46:51 -0000 Received: from tagalong (unknown [165.107.42.196]) by blacklamb.mykitchentable.net (Postfix) with SMTP id C2361EE5FD; Thu, 24 Jan 2002 17:46:49 -0800 (PST) Message-ID: <018a01c1a542$27fe5b10$c42a6ba5@lc.ca.gov> From: "Drew Tomlinson" To: "parv" Cc: References: <01f801c1a509$bd1d3060$c42a6ba5@lc.ca.gov> <20020124230306.GA70362@moo.holy.cow> Subject: Re: Regex Database Help? - SOLVED Date: Thu, 24 Jan 2002 17:46:49 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "parv" To: "Drew Tomlinson" Cc: Sent: Thursday, January 24, 2002 3:03 PM Subject: Re: Regex Database Help? > in message <01f801c1a509$bd1d3060$c42a6ba5@lc.ca.gov>, > wrote Drew Tomlinson thusly... > ... > > # Allow allhosts.some.domain > > /*\.some\.domain$/ OK > > > > In other words, allow all hosts that end in some.domain. However, I > > have tried this different ways without success. > ... > > did you try... > > /some\.domain$/ OK Your suggestion works for my example but I really wanted a finer control as the real servers I were trying to allow started with web, had some number after web, and then .some.domain. I learned (from some private email) that it is a '.', not a '*', that matches everything. Then I added the '*' to quantify the match meaning 0 or more previous characters. So my final expression looked like this: /^web.*\.some\.domain$/ Thanks for your help, Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 18: 0:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tierzero.apana.org.au (sa.apana.org.au [203.14.158.1]) by hub.freebsd.org (Postfix) with ESMTP id B394C37B400 for ; Thu, 24 Jan 2002 18:00:15 -0800 (PST) Received: from BAPhD.gihon.org.au (dialup-13.pasa.apana.org.au [203.14.158.142]) by tierzero.apana.org.au (8.11.1/8.11.1) with SMTP id g0P1xLw97201; Fri, 25 Jan 2002 12:29:22 +1030 (CST) (envelope-from bastill@sa.apana.org.au) Content-Type: text/plain; charset="iso-8859-1" From: Brian Astill Reply-To: bastill@sa.apana.org.au To: "Brian T.Schellenberger" , Subject: Re: A question from a convert from Windows to FreeBSD Date: Fri, 25 Jan 2002 12:29:51 +1030 X-Mailer: KMail [version 1.2] References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> <02012419032304.01209@BAPhD.gihon.org.au> <20020124134552.F16D93F56@i8k.babbleon.org> In-Reply-To: <20020124134552.F16D93F56@i8k.babbleon.org> MIME-Version: 1.0 Message-Id: <02012512295102.01099@BAPhD.gihon.org.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday 25 January 2002 00:15, Brian T.Schellenberger wrote: > I am NOT going to quote all that lot! :-) Thank you for an interesting and helpful response. Nice to know we are on the same side! WinDoze does probe for and assist in the setup of a modem. (It then screws up more often than enough, ..... yuk!) Linux probes for and assists in the setup of a modem, but doesn't screw up afterwards ... Yeh! ) The two efficient FreeBSD install methods are CDROM and network. Most of us newbies will be using CDROM, and immediately thereafter looking to use Internet access via modem and ISP. I am using Linux (RedHat 7.1) now, though I find that a bit hard because of my DOS expertise (hard to learn, when you also have to unlearn). My inclination is to use "real" Un*x ie FreeBSD rather than pseudo Minix/Un*x ie Linux, and that now is the time to switch - before I have TWO systems to unlearn! I havent tried uninstalling Xwrapper and reinstalling. Will have a go at that later. -- Regards, Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 18: 2:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from maila.telia.com (maila.telia.com [194.22.194.231]) by hub.freebsd.org (Postfix) with ESMTP id 02F9737B402 for ; Thu, 24 Jan 2002 18:02:47 -0800 (PST) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by maila.telia.com (8.11.6/8.11.6) with ESMTP id g0P22jb03597 for ; Fri, 25 Jan 2002 03:02:45 +0100 (CET) Received: from falcon.midgard.homeip.net (h185n2fls20o913.telia.com [212.181.163.185]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id DAA21773 for ; Fri, 25 Jan 2002 03:02:45 +0100 (CET) Received: (qmail 34875 invoked by uid 1001); 25 Jan 2002 02:02:44 -0000 Date: Fri, 25 Jan 2002 03:02:43 +0100 From: Erik Trulsson To: Nathan Mace Cc: freebsd-questions@freebsd.org Subject: Re: whereis linprocfs? Message-ID: <20020125020243.GA34809@student.uu.se> Mail-Followup-To: Nathan Mace , freebsd-questions@freebsd.org References: <200201250103.UAA10108@uce55.uchaswv.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200201250103.UAA10108@uce55.uchaswv.edu> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 08:00:55PM -0500, Nathan Mace wrote: > i just installed vmware form the ports tree. but when i try to run it, it > says that it needs linprocfs. i can't find it anywhere in the ports tree. > how can i get it installed? It isn't in the ports tree, but rather in the base system so you don't need to install it, just activate it. Add the following line to /etc/fstab (if it isn't there already) linproc /compat/linux/proc linprocfs rw 0 0 and then issue the command 'mount linproc' See also the linprocfs(5) manpage. -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 18: 3:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tierzero.apana.org.au (sa.apana.org.au [203.14.158.1]) by hub.freebsd.org (Postfix) with ESMTP id 0F91337B41E for ; Thu, 24 Jan 2002 18:02:56 -0800 (PST) Received: from BAPhD.gihon.org.au (dialup-13.pasa.apana.org.au [203.14.158.142]) by tierzero.apana.org.au (8.11.1/8.11.1) with SMTP id g0P22Aw97245 for ; Fri, 25 Jan 2002 12:32:10 +1030 (CST) (envelope-from bastill@sa.apana.org.au) Content-Type: text/plain; charset="iso-8859-1" From: Brian Astill Reply-To: bastill@sa.apana.org.au To: Subject: Re: A question from a convert from Windows to FreeBSD Date: Fri, 25 Jan 2002 12:32:39 +1030 X-Mailer: KMail [version 1.2] References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> <20020124134552.F16D93F56@i8k.babbleon.org> <012001c1a4f8$9fb5eff0$c42a6ba5@lc.ca.gov> In-Reply-To: <012001c1a4f8$9fb5eff0$c42a6ba5@lc.ca.gov> MIME-Version: 1.0 Message-Id: <02012512323903.01099@BAPhD.gihon.org.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday 25 January 2002 03:30, Drew Tomlinson wrote: > ----- Original Message ----- > From: "Brian T.Schellenberger" > To: ; > Sent: Thursday, January 24, 2002 5:45 AM > Subject: Re: A question from a convert from Windows to FreeBSD > > > to chmod (which means to change permissions, by the way--not sure > > why it's called "chmod") or anything else to get it to work for a > > regular user, and I > > It's called "chmod" because you are "changing the mode". Although > the command will accept arguments like +r and -x, what you are > actually doing is changing the numeric mode of a file. In each > group, the "r" is worth 4, the "w" worth 2, and the "x" is worth 1. > There are more such as the suid bit but these are the basics. So in > this file, > > -rw-r--r-- 1 root wheel 11158 Apr 20 1998 pdf_sec.ps > > the mode is 644. And in this file, > > -r-xr-xr-x 1 root wheel 3545 Jan 8 11:30 znew > > the mode is 555. Well I never! Try searching for that in a reference book if you are as ignorant as I am! Thanks very much. -- Regards, Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 18:16:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id BCE8F37B400 for ; Thu, 24 Jan 2002 18:16:04 -0800 (PST) Received: from gateway ([63.70.155.109]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com; Thu, 24 Jan 2002 21:19:22 -0500 From: "Joe & Fhe Barbish" To: Cc: "FBSD Questions" Subject: RE: can Apache_FP run without a real domain web address? Date: Thu, 24 Jan 2002 21:16:01 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal In-Reply-To: <3.0.5.32.20020124182525.01831ca0@mail.sage-american.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Got apache_FP to start. Now I an new to apache so this is what it looks like happened to me. Good thing I started "script" to log all console msgs before I issued the 'make install clean' command. At the end of the install I was asked questions and entered answers. Reading this over I got an idea of what was happening and added to this the msg in the /var/log/httpd.log kind of turned the lights on. My FBSD box did not have a previous apache install. Apache needs to know where he is and uses the hostname=gateway.barbish.com statement from rc.conf to identify where home is. He think this hostname is a real public domain name and tries to do look it up. My firewall allows dns requests out and back in so apache finds that hostname is not a real domain and he stops with the first msg I posted previously. I tried putting www.barbish.com the name I wanted to use for the Apache base server in /usr/local/etc/apache/httpd.conf keyword ServerName. Rebooted got same message. I then added to the /etc/hosts file 10.0.10.2 www.barbish.com where 10.0.10.2 is the private address of my LAN Nic card. Rebooted and this time got past the first msg but got a new msg about not starting FrontPage. Checked out the httpd.log and there was a msg about FrontPage could not find gateway.barbish.com. Changed /etc/hosts entry from www.barbish.com to gateway.barbish.com, rebooted, got msg about not starting FrontPage again, checked httpd.log had msg about mime file not found, so I created it, rebooted and this time it started, or at least I did not get msgs saying it did not start. Did a ps ax and could not see it. How can I tell if it's running? I have users who use win FrontPage 2000 to create web pages and post them to win2000 servers. I want to set up apache_FP to receive one of those FrontPage developed sites for testing. Where can I find documentation on setting up the server for a one page base server and then a second server for fp testing? I am not clear on apache environment. Only one Base server and every thing else are virtual hosts? The httpd.conf comments talk about base server and virtual hosts, that's where I am getting this from. Thanks for your help Joe -----Original Message----- From: jacks@sage-american.com [mailto:jacks@sage-american.com] Sent: Thursday, January 24, 2002 7:25 PM To: Joe & Fhe Barbish Subject: Re: can Apache_FP run without a real domain web address? So, Joe, looks like you can do it with your machine's private IP: http://192.168.0.xx/ or the like Let me know how it works out... I might put on some internal boxes too... At 06:36 PM 1.24.2002 -0500, you wrote: >I installed apache13-fp today from ports. >during first reboot I got this msg. >'could not determine the servers fully qualified domain name, >using 127.0.0.1 for server name. Apache not started.' > >I do not have a real domain name so in hosts file I added the >(www domain com) I told apache to use to the IP address of >my Nic card. Then rebooted and got a new msg. >"local package init: /usr/local/sbin/ apachectl start_FP: >httpd could not be started". > >I don't know if this is still related to the original problem so >I am asking can Apache_FP run without a real public domain web address? > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 18:33: 5 2002 Delivered-To: freebsd-questions@freebsd.org Received: from bedroom1.vagner.com (vsat-148-63-135-179.c2.sb4.mrt.starband.net [148.63.135.179]) by hub.freebsd.org (Postfix) with ESMTP id CECAC37B402 for ; Thu, 24 Jan 2002 18:32:58 -0800 (PST) Received: from there (office1.vagner.com [192.168.0.5]) by bedroom1.vagner.com (8.11.6/8.11.6) with SMTP id g0P2Ypi43536 for ; Thu, 24 Jan 2002 19:35:02 -0700 (MST) (envelope-from george@vagner.com) Message-Id: <200201250235.g0P2Ypi43536@bedroom1.vagner.com> Content-Type: text/plain; charset="iso-8859-1" From: george To: questions@freebsd.org Subject: cdburn daemon? Date: Thu, 24 Jan 2002 19:33:57 -0700 X-Mailer: KMail [version 1.3] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I would like to format a cdrw and have it be able to be written to via some sort of burning daemon? in other words i would like to save files to it via network using samba or shlight. does anything exist like this? thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 18:38:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from encontacto.net (adsl-64-173-182-158.dsl.mtry01.pacbell.net [64.173.182.158]) by hub.freebsd.org (Postfix) with ESMTP id 7229537B402; Thu, 24 Jan 2002 18:38:14 -0800 (PST) Received: (from root@localhost) by encontacto.net (8.11.6/8.11.4) id g0P2e9967429; Thu, 24 Jan 2002 18:40:09 -0800 (PST) (envelope-from eculp@encontacto.net) Received: from 64.173.182.155 ( [64.173.182.155]) as user eculp@EnContacto.Net by Mail.SavvyWorld.Net with HTTP; Thu, 24 Jan 2002 18:40:09 -0800 Message-ID: <1011926409.3c50c5897f129@Mail.SavvyWorld.Net> Date: Thu, 24 Jan 2002 18:40:09 -0800 From: Edwin Culp To: Joerg Micheel Cc: John Von Essen , Len Conrad , freebsd-questions@FreeBSD.ORG, freebsd-hardware@FreeBSD.ORG Subject: Re: 64-bit PCI mobos References: <5.1.0.14.2.20020121002104.02b61ec0@mail.Go2France.com> <20020125120757.X42544@cs.waikato.ac.nz> In-Reply-To: <20020125120757.X42544@cs.waikato.ac.nz> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 4.0-cvs X-Originating-IP: 64.173.182.155 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm using one that I got from John to replace the defective board that came with an fnord server. It's running current dual 1G PIII, 2GB Ram, 1.6TB raid 10, NO PROBLEMS BUT NO PROBLEMS, great board. ed P.S. John Von Essen uses the board on the servers he builds and was kind enough to save my ass after I was ripped off on a server purchase from Fnord Systems in Bellingham, WA. (never buy from those guy's and believe anything that they say and especially don't expect ANY service like replacing a defective motherboard.) I would recommend looking at John's servers. That is where I'll look for my next one. He's proven himself to me. Quoting Joerg Micheel : > On Sun, Jan 20, 2002 at 10:13:18PM -0500, John Von Essen wrote: > > I would recommend the TYAN 2518 with ServerWorks chipset. Supports two > > 64-bit PCI slots, dual Pentium III, 4 Gb RAM, optional Ultra160 SCSI > > onboard. This board works very well with FreeBSD. > > Earlier versions of this motherboard had some reboot problems, at least > with Linux, I believe they have been overcome, partly with a software > patch to it, the newer have a BIOS update (I think). Otherwise, very > nice board. > > Joerg > -- > Joerg B. Micheel Email: > WAND and NLANR MOAT Email: > The University of Waikato, CompScience Phone: +64 7 8384794 > Private Bag 3105 Fax: +64 7 8585095 > Hamilton, New Zealand Plan: PMA, TINE and the DAG's > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hardware" in the body of the message > --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 18:40:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 2DF8437B400 for ; Thu, 24 Jan 2002 18:40:18 -0800 (PST) Received: from gateway ([63.70.155.109]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com; Thu, 24 Jan 2002 21:43:35 -0500 From: "Joe & Fhe Barbish" To: "Joe & Fhe Barbish" Cc: "FBSD Questions" Subject: RE: can Apache_FP run without a real domain web address? Date: Thu, 24 Jan 2002 21:40:13 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal In-Reply-To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I found the answers to my questions all by myself. Just one more reboot took care of it. I got msg saying apache FP started and them I used one of the Winboxs on the LAN behind the FBSD gateway and got into my new installed apache using http://10.0.10.2 The webpage displayed has links to the apache documentation and the FrontPage documentation on this FBSD box. All set. Thanks any way. Joe -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Joe & Fhe Barbish Sent: Thursday, January 24, 2002 9:16 PM To: jacks@sage-american.com Cc: FBSD Questions Subject: RE: can Apache_FP run without a real domain web address? Got apache_FP to start. Now I an new to apache so this is what it looks like happened to me. Good thing I started "script" to log all console msgs before I issued the 'make install clean' command. At the end of the install I was asked questions and entered answers. Reading this over I got an idea of what was happening and added to this the msg in the /var/log/httpd.log kind of turned the lights on. My FBSD box did not have a previous apache install. Apache needs to know where he is and uses the hostname=gateway.barbish.com statement from rc.conf to identify where home is. He think this hostname is a real public domain name and tries to do look it up. My firewall allows dns requests out and back in so apache finds that hostname is not a real domain and he stops with the first msg I posted previously. I tried putting www.barbish.com the name I wanted to use for the Apache base server in /usr/local/etc/apache/httpd.conf keyword ServerName. Rebooted got same message. I then added to the /etc/hosts file 10.0.10.2 www.barbish.com where 10.0.10.2 is the private address of my LAN Nic card. Rebooted and this time got past the first msg but got a new msg about not starting FrontPage. Checked out the httpd.log and there was a msg about FrontPage could not find gateway.barbish.com. Changed /etc/hosts entry from www.barbish.com to gateway.barbish.com, rebooted, got msg about not starting FrontPage again, checked httpd.log had msg about mime file not found, so I created it, rebooted and this time it started, or at least I did not get msgs saying it did not start. Did a ps ax and could not see it. How can I tell if it's running? I have users who use win FrontPage 2000 to create web pages and post them to win2000 servers. I want to set up apache_FP to receive one of those FrontPage developed sites for testing. Where can I find documentation on setting up the server for a one page base server and then a second server for fp testing? I am not clear on apache environment. Only one Base server and every thing else are virtual hosts? The httpd.conf comments talk about base server and virtual hosts, that's where I am getting this from. Thanks for your help Joe -----Original Message----- From: jacks@sage-american.com [mailto:jacks@sage-american.com] Sent: Thursday, January 24, 2002 7:25 PM To: Joe & Fhe Barbish Subject: Re: can Apache_FP run without a real domain web address? So, Joe, looks like you can do it with your machine's private IP: http://192.168.0.xx/ or the like Let me know how it works out... I might put on some internal boxes too... At 06:36 PM 1.24.2002 -0500, you wrote: >I installed apache13-fp today from ports. >during first reboot I got this msg. >'could not determine the servers fully qualified domain name, >using 127.0.0.1 for server name. Apache not started.' > >I do not have a real domain name so in hosts file I added the >(www domain com) I told apache to use to the IP address of >my Nic card. Then rebooted and got a new msg. >"local package init: /usr/local/sbin/ apachectl start_FP: >httpd could not be started". > >I don't know if this is still related to the original problem so >I am asking can Apache_FP run without a real public domain web address? > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 18:43:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 3224937B404 for ; Thu, 24 Jan 2002 18:43:47 -0800 (PST) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) with ESMTP id g0P2hk195517; Thu, 24 Jan 2002 21:43:46 -0500 (EST) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Thu, 24 Jan 2002 21:43:46 -0500 (EST) From: Joe Clarke To: Bernie Cc: FreeBSD User Questions List Subject: Re: gnomecore problem... In-Reply-To: <20020124205611.X184-100000@BLAST> Message-ID: <20020124214252.F95500-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 24 Jan 2002, Bernie wrote: > > > thank you so much for your help on this. > > i did upgrade both pixbuf and gnomecanvas. i'm not sure > which one did it, but when i tried gnomecore, it compiled > and installed ok. > > also, glade now compiles ok, just upgraded it, so does > xmms, playing orbital right now :-) > > the only thing i'm getting when trying to do a pkgdb -F > after installation is: > > Cyclic dependencies: gnomecore-1.4.0.4_3 -> gnomecontrolcenter-1.4.0.1 -> > (gnomecore-1.4.0.4_3) > Unlink which dependency? (? to help): > > the help isnt very comprehensive on this one and i realy don't want to > make a mistake here after all these efforts to make it work... > > i think that gnomecontrolcenter-1.4.0.1 is the one to unlink. Can > you confirm if this is right? I think I saw mention of a cyclic dependency problem with GNOME on gnome@. This might be a problem with portupgrade. What version of portupgrade are you using? Joe > > Thanks again for all your help. > > Regards, > > --Bernie > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 18:45:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns.sond.com.au (ns.sond.com.au [150.101.236.170]) by hub.freebsd.org (Postfix) with ESMTP id 7CC9637B400 for ; Thu, 24 Jan 2002 18:45:50 -0800 (PST) Received: from nick (nick.localdomain [192.168.1.3]) by ns.sond.com.au (8.11.4/8.11.4) with SMTP id g0P2kKK32139; Fri, 25 Jan 2002 13:16:20 +1030 Message-ID: <003e01c1a54a$e1fb24a0$0301a8c0@nick> From: "nik [tm]" To: "Buga" , Subject: 4.4 Install Problem Solved Date: Fri, 25 Jan 2002 13:19:16 +1030 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG found that if I did a (W) to commit the labelling changes ([1] it does strongly recommend not doing this on a first install) that it then formats the root partition fine (and all thereafter) [1] this is because the installer should automatically apply all the changes after a (Q) but before formatting (or so it told me at the time) 'what the hell, write it anyway!' all installed :) nik [tm] ·´¯`·.¸¸..><((((º>.·´¯`·.¸¸.·´¯`·.¸ ><((((º>`·.¸¸.·´¯`·.¸><((((º>`·.¸ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 18:52:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hobbits.brel.com (hobbits.brel.com [203.127.231.61]) by hub.freebsd.org (Postfix) with ESMTP id A0A0C37B400 for ; Thu, 24 Jan 2002 18:52:09 -0800 (PST) Received: by hobbits.brel.com (Postfix, from userid 1001) id 323F7330D; Fri, 25 Jan 2002 10:52:08 +0800 (SGT) Delivered-To: calvinng@hobbits.brel.com Received: from amerasu.brel.com (amerasu.brel.com [203.127.231.51]) by hobbits.brel.com (Postfix) with ESMTP id A4B953335 for ; Fri, 25 Jan 2002 10:48:13 +0800 (SGT) Received: (from calvinng@localhost) by amerasu.brel.com (8.11.6/8.11.6) id g0P2mKd93285 for calvinng@hobbits.brel.com; Fri, 25 Jan 2002 10:48:20 +0800 (SGT) (envelope-from calvinng) Received: from hobbits.brel.com (hobbits.brel.com [203.127.231.61]) by amerasu.brel.com (8.11.6/8.11.6) with ESMTP id g0P2mJx93282 for ; Fri, 25 Jan 2002 10:48:19 +0800 (SGT) (envelope-from calvinng@brel.com) Received: by hobbits.brel.com (Postfix, from userid 1001) id DEC76330D; Fri, 25 Jan 2002 10:48:12 +0800 (SGT) Date: Fri, 25 Jan 2002 10:48:12 +0800 From: Calvin NG To: Questions Cc: Calvin NG Subject: problem with ARP proxy Message-ID: <20020125104812.B68512@brel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Greetings, Quick Question: -------------- I seems to be encountering repeated panics/crash (Fatal Trap 12:page fault while in kernel mode) due to the use of arp proxy. The system is running FreeBSD 4.5-RC cvsup on 24 Jan 2002. Following the FAQ I did a "nm -n kernel | grep ..." and found that the function it points to is "arptfree". And I found this in the source sys/netinet/if_ether.c For the moment I am switching to using static routes on the internal network, and not use proxy arp. If anyone has a similar scenario and is successful, please give some advise. Or anyone with better suggestions, do share it with me, thanks in advance. Of course, if someone in the know can investigate this proxy arp thing a bit, and check if there is a bug, even better. ;-) Background: ---------- I am adding a ADSL connection to a token ring network, and it looks like the following: (ISP) ---- (ADSL modem) -- (Win98) -- (firewall) ---- (token ring network) The (firewall) machine is the one we are interested in, it runs FreeBSD 4.5-RC with IPFirewall, a onboard ethernet (fxp0) connected to the (Win98), and a Olicom card (OC-3137) (oltr0) connected to the internal network. To make the proxy machine transparent to the token ring user, I decided to subnet some IPs from the internal network, and use proxy arp to route the request to the win98 machine, and thus out to the internet. token ring : 10.1.0.0/255.255.0.0 firewall : oltr0 : 10.1.0.250/255.255.0.0 fxp0 : 10.1.0.253/255.255.255.252 ( in addition: arp -s $(win98-hostname) ($oltr:lladdr) pub only ) win98 : 10.1.0.254/255.255.255.252 ( the other interface is connected to the ADSL modem, and this also runs the PPoE (spellling?) client ). Problem: ------- The configuration works, nodes on the token ring network can see the win98 PC, even with the IPfirewall rules enabled. However, the firewall suffer repeated crashes once in a while, when more than 1 internal node tries to connect to the win98 machine through the firewall. Current Solution: ---------------- My initial thought was maybe problem with the IPFirewall or the token ring driver, since this are things I am not that fmailiar with. But I did some search and followed some instructions in the FAQ on troubleshooting, and found that the crash occurs in the function arptfree(). This leads me to think I am having problem with the proxy arp. Actually during the testing, I have less than 5 entries in my arp table when the crashes occurs, and this includes the proxy entry. Anyway, I have removed the proxy arp entry and using static routes on the nodes, and is having relative success for the pass hour or so. Regards, /calvin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 19:18:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.the-i-pa.com (mail.the-i-pa.com [151.201.71.132]) by hub.freebsd.org (Postfix) with SMTP id 0EFC737B404 for ; Thu, 24 Jan 2002 19:18:36 -0800 (PST) Received: (qmail 42265 invoked from network); 25 Jan 2002 03:22:37 -0000 Received: from unknown (HELO proxy.pt.com) (151.201.71.209) by mail.the-i-pa.com with SMTP; 25 Jan 2002 03:22:37 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Bill Moran Organization: Potential Technology To: Brian Astill , Subject: Re: A question from a convert from Windows to FreeBSD Date: Thu, 24 Jan 2002 21:45:57 -0500 X-Mailer: KMail [version 1.2] References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> <012001c1a4f8$9fb5eff0$c42a6ba5@lc.ca.gov> <02012512323903.01099@BAPhD.gihon.org.au> In-Reply-To: <02012512323903.01099@BAPhD.gihon.org.au> MIME-Version: 1.0 Message-Id: <02012421455703.07381@proxy.pt.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday 24 January 2002 21:02, Brian Astill wrote: > On Friday 25 January 2002 03:30, Drew Tomlinson wrote: > > ----- Original Message ----- > > From: "Brian T.Schellenberger" > > > > > to chmod (which means to change permissions, by the way--not sure > > > why it's called "chmod") or anything else to get it to work for a > > > regular user, and I > > > > -r-xr-xr-x 1 root wheel 3545 Jan 8 11:30 znew > > > > the mode is 555. > > Well I never! Try searching for that in a reference book if you are as > ignorant as I am! Thanks very much. From your reaction, I'm guessing you have yet to discover the built-in man pages, since the man page for "chmod" has an excellent explanation. To get at it, simply type "man chmod" at a shell prompt. Use the up/down keys to scroll through and hit "q" when you're done to return to the prompt. Just about anything you want to know about has a man page for it, and they are usually *very* well written. Some interesting places to start: man man man hier man security man tuning -- Bill Moran Potential Technology technical services http://www.potentialtech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 20: 1:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns2.robhughes.com (12-237-138-77.client.attbi.com [12.237.138.77]) by hub.freebsd.org (Postfix) with SMTP id 2E6A837B400 for ; Thu, 24 Jan 2002 20:01:55 -0800 (PST) Received: (qmail 86217 invoked from network); 25 Jan 2002 04:01:16 -0000 Received: from hexch01.robhughes.com (192.168.1.3) by ns2.robhughes.com with SMTP; 25 Jan 2002 04:01:16 -0000 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: dhclient.conf option problem X-MimeOLE: Produced By Microsoft Exchange V6.0.5762.3 Date: Thu, 24 Jan 2002 22:01:53 -0600 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: dhclient.conf option problem Thread-Index: AcGlVPkCi/MHiOZ/Q4Wb2J2CJN2wLw== From: "Robert D. Hughes" To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Has anyone had any luck getting "send dhcp-client-identifier" from = dhclient.conf to actually work? I need to swap out an interface that's = being configured via dhcp, but keep the same IP address. I do not have = access to the dhcp server. Alternatively, I see from the ifconfig man page that there's an option = to specify a different MAC address. Does anyone know if that option is = compatible with dhcp configuration? Thanks, Rob "Great spirits have always encountered violent opposition from mediocre = minds." -- Albert Einstein=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 20: 6:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id D847037B402 for ; Thu, 24 Jan 2002 20:06:31 -0800 (PST) Received: (qmail 40646 invoked by uid 100); 25 Jan 2002 04:06:30 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15440.55750.412749.396047@guru.mired.org> Date: Thu, 24 Jan 2002 22:06:30 -0600 To: rene@xs4all.nl Cc: questions@freebsd.org Subject: Re: backups using tar? In-Reply-To: <91829715@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rene@xs4all.nl types: > Hello. I've got a system that I regularly update with cvsup, then rebuilding > my world and all and in general I'm very happy with this. > > However, backups are a necessity and I've got them down with dump & restore. > > Now, I'd also like to be able to do it with tar. the idea being that instead > of fixing my personal and config files together with my system, I'd be able > to keep them seperate. > > Restoration would then be a matter of installing the latest (desired) branch > of FreeBSD onto a new harddisk, then unpacking the tar file from root under > that. I do that, but take a different approach. > I've found some NetBSD HowTo that has a line on how to accomplish this, but > it doesn't quite do the trick for FreeBSD. > > find / -type f -newer /etc/rc ! \ > \( -name "backup" -or -name "burn" \) \ > -exec tar -rvf $backupfile {} \; > > the problem is that this line includes most of my /usr/ports, /usr/bin/, > practically my complete system. Then I might aswell dump it ;) > > What would I need to tell tar in order not to take any system files, just my > personal files? Please take into account that I cvsup sometimes. How are you defining "your personal files"? Mine all live in /home/mwm, which isn't on /, so dealing with just them is pretty easy. Are you possibly refering to system configuration files? That's a harder problem, and really needs to be dealt with when you install the system. For instance, putting /usr on a separate file system means you can avoid dumping it, which avoids the bulk of the problem. My approach is to keep all the system files in a source control systems - cvs is the popular free one, but I use perforce - and then back that up. So restoration is installing the latest version and tweaking it so I can get to the perforce server, then restoring the system files from that. Best practice is to run mergemaster at that point, and update anything that's changed that was in the cvs/perforce depot. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 20: 8:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sigbus.com (we-24-126-148-218.we.mediaone.net [24.126.148.218]) by hub.freebsd.org (Postfix) with ESMTP id 9C04B37B400; Thu, 24 Jan 2002 20:08:07 -0800 (PST) Received: (from henrich@localhost) by sigbus.com (8.11.1/8.11.1) id g0P47Q670966; Thu, 24 Jan 2002 20:07:26 -0800 (PST) (envelope-from henrich) Date: Thu, 24 Jan 2002 20:07:26 -0800 From: Charles Henrich To: freebsd-questions@freebsd.org, freebsd-multimedia@freebsd.org Subject: MBone/mrouted troubles Message-ID: <20020124200726.B70786@sigbus.com> Mail-Followup-To: freebsd-questions@freebsd.org, freebsd-multimedia@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.2-RELEASE X-PGP-Fingerprint: 1024/F7 FD C7 3A F5 6A 23 BF 76 C4 B8 C9 6E 41 A4 4F X-GPG-Fingerprint: EA4C AB9B 0C38 17C0 AB3F 11DE 41F6 5883 41E7 4F49 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Im trying to setup the simplist of mbone routes. I have two subnets that I want to connect with two freebsd boxes running mrouted. If I look at the output of mrouted -d, they both see each other, and send member reports frequently, and all looks good. If I do a mtrace, it works just fine as well. However, sdr sessions do not seem to propagate, nor does vic sessions. Anyone have any ideas on where I could even begin to look? Thanks! -Crh Charles Henrich henrich@msu.edu http://www.sigbus.com:81/~henrich To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 20:12:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id 3001537B400 for ; Thu, 24 Jan 2002 20:12:18 -0800 (PST) Received: (qmail 40753 invoked by uid 100); 25 Jan 2002 04:12:17 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15440.56097.291605.492416@guru.mired.org> Date: Thu, 24 Jan 2002 22:12:17 -0600 To: J.S. Cc: questions@freebsd.org Subject: Re: SMS script In-Reply-To: <104189222@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG J.S. types: > Does anyone know of an SMS script to easily send SMS messages i.e. through > everyday.com? Try the following: cd /usr/ports make search key=sms http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 20:17:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from pro.net.id (hyperion.pro.net.id [202.150.40.5]) by hub.freebsd.org (Postfix) with SMTP id 769E037B416 for ; Thu, 24 Jan 2002 20:16:48 -0800 (PST) Received: (qmail 40888 invoked from network); 25 Jan 2002 04:13:46 -0000 Received: from unknown (HELO BLUESTAR) (202.150.39.229) by hyperion.pro.net.id with SMTP; 25 Jan 2002 04:13:46 -0000 From: "Thomas Wahyudi" To: Subject: kernel compile fail at linux mod after cvsup Date: Fri, 25 Jan 2002 11:16:38 +0700 Message-ID: <005501c1a557$159727d0$e52796ca@BLUESTAR> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0056_01C1A591.C1F5FFD0" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0056_01C1A591.C1F5FFD0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Hi all, I just cvsup my system from 4.4-STABLE to 4.5-RC everything goes fine but when I compile kernel I got these messages linux_proto.h:485: `linux_sigset_t' undeclared here (not in a function) linux_proto.h:485: syntax error before `)' linux_proto.h:516: syntax error before `*' linux_proto.h:516: syntax error before `linux_stack_t' linux_proto.h:516: syntax error before `linux_stack_t' linux_proto.h:517: syntax error before `linux_stack_t' linux_proto.h:517: `linux_stack_t' undeclared here (not in a function) linux_proto.h:517: syntax error before `)' linux_proto.h:517: `linux_stack_t' undeclared here (not in a function) linux_proto.h:517: syntax error before `)' *** Error code 1 anyone know how to solve it ? ------=_NextPart_000_0056_01C1A591.C1F5FFD0 Content-Type: text/html; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable

Hi all, I just cvsup = my system from 4.4-STABLE to 4.5-RC everything goes fine but when I compile = kernel I got these messages

 

linux_proto.h:485: `linux_sigset_t' undeclared here (not in a = function)

linux_proto.h:485: = syntax error before `)'

linux_proto.h:516: = syntax error before `*'

linux_proto.h:516: = syntax error before `linux_stack_t'

linux_proto.h:516: = syntax error before `linux_stack_t'

linux_proto.h:517: = syntax error before `linux_stack_t'

linux_proto.h:517: `linux_stack_t' undeclared here (not in a = function)

linux_proto.h:517: = syntax error before `)'

linux_proto.h:517: `linux_stack_t' undeclared here (not in a = function)

linux_proto.h:517: = syntax error before `)'

*** Error code = 1

 

anyone know how to = solve it ?

------=_NextPart_000_0056_01C1A591.C1F5FFD0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 20:18:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id 86AB737B400 for ; Thu, 24 Jan 2002 20:18:19 -0800 (PST) Received: from dialup-65.58.45.103.dial1.chicago1.level3.net ([65.58.45.103] helo=pegasus) by gull.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16TxoL-0001f4-00; Thu, 24 Jan 2002 20:17:59 -0800 Message-ID: <000701c1a557$44420640$672d3a41@pegasus> From: "Bob Giesen" To: "Neil McGann" Cc: "freebsd-questions" References: <5.1.0.14.0.20020124231104.00a0bc60@pop.ntlworld.com> Subject: Re: subscribe freebsd-questions Date: Thu, 24 Jan 2002 22:17:55 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Neil, You have to send your message to majordomo@FreeBSD.org in order to be added to the list. Bob ----- Original Message ----- From: "Neil McGann" To: Sent: Thursday, January 24, 2002 5:11 PM Subject: subscribe freebsd-questions > subscribe freebsd-questions > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 20:22: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by hub.freebsd.org (Postfix) with ESMTP id 6C7AD37B400 for ; Thu, 24 Jan 2002 20:21:47 -0800 (PST) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id UAA23595; Thu, 24 Jan 2002 20:21:28 -0800 Message-ID: <3C50DD47.2040805@owt.com> Date: Thu, 24 Jan 2002 20:21:27 -0800 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Thomas Wahyudi Cc: freebsd-questions@FreeBSD.ORG Subject: Re: kernel compile fail at linux mod after cvsup References: <005501c1a557$159727d0$e52796ca@BLUESTAR> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thomas Wahyudi wrote: > Hi all, I just cvsup my system from 4.4-STABLE to 4.5-RC everything goes > fine but when I compile kernel I got these messages > > > > linux_proto.h:485: `linux_sigset_t' undeclared here (not in a function) > > linux_proto.h:485: syntax error before `)' > > linux_proto.h:516: syntax error before `*' > > > anyone know how to solve it ? > This has been covered extensively on the proper list (-stable). For many, the instructions in /usr/src/UPDATING, which you were supposed to read first, solves the problem. Kent -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://users.owt.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 20:27:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from li.xdsl.ne.jp (li.xdsl.ne.jp [211.15.33.132]) by hub.freebsd.org (Postfix) with ESMTP id 56C4837B41E for ; Thu, 24 Jan 2002 20:27:27 -0800 (PST) Received: from Geteway (xdsl046003.061200.metallic.ne.jp [61.200.46.3]) by li.xdsl.ne.jp (Postfix) with SMTP id ACB6F13C187 for ; Fri, 25 Jan 2002 13:27:21 +0900 (JST) From: =?ISO-2022-JP?B?GyRCJCIkKCReJDkkTSRDJEgbKEI=?= To: Subject: =?ISO-2022-JP?B?GyRCIiMkRyQiJCQkTjdoRGpIRyIjJCIkKCReJDkkTSRDGyhC?= =?ISO-2022-JP?B?GyRCJEgiIxsoQg==?= MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-2022-JP" Content-Transfer-Encoding: 7bit Message-Id: <20020125042721.ACB6F13C187@li.xdsl.ne.jp> Date: Fri, 25 Jan 2002 13:27:21 +0900 (JST) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG $B$44uK>$KE:$o$:$3$N%a!<%k$,FO$$$F$7$^$$$^$7$?$i$*; Thu, 24 Jan 2002 21:27:08 -0800 (PST) Received: from there (galaxy.anchoragerescue.org [24.237.7.95]) by nebula.anchoragerescue.org (Postfix) with SMTP id 1C3E7A3; Thu, 24 Jan 2002 20:27:00 -0900 (AKST) Content-Type: text/plain; charset="iso-8859-1" From: Beech Rintoul To: Sean McNeil , freebsd-questions@FreeBSD.ORG Subject: Re: binutils traditional core file support Date: Thu, 24 Jan 2002 20:26:59 -0900 X-Mailer: KMail [version 1.3] References: <3C509910.4070201@mcneil.com> In-Reply-To: <3C509910.4070201@mcneil.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020125052700.1C3E7A3@nebula.anchoragerescue.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday 24 January 2002 02:30 pm, Sean McNeil wrote: > Hi all, > > I cvsup'd my sources to the -stable and have a kernel labeled FreeBSD > 4.5-RC. I just tried to compile the binutils current cvs and found that > the bfd/trad-core.c uses fields in the struct user that do not exist > now. u_dsize and u_ssize. I'm not sure if these were supported in > previous versions of the kernel, but I suspect that they were as I have > a binutil compiled for freebsd that shows trad-core as a supported > object format. I configured binutils with > > configure --enable-targets=all > > Any information on this would be appreciated. I can work with the > binutils people to have this supported correctly if that is what it takes. > > TIA, > Sean > The FreeBSD kernel and userland are not seperate as they are with Linux. Anytime you upgrade you should use src-all in cvs and build both the world and the kernel. Update all your sources and do a make world and a make kernel and finish with mergemaster before you reboot. Cheers, Beech -- ------------------------------------------------------------------- Beech Rintoul - IT Manager - Instructor - akbeech@anchoragerescue.org /"\ ASCII Ribbon Campaign | Anchorage Gospel Rescue Mission \ / - NO HTML/RTF in e-mail | P.O. Box 230510 X - NO Word docs in e-mail | Anchorage, AK 99523-0510 / \ ----------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 21:47:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from uce55.uchaswv.edu (uce55.uchaswv.edu [12.4.161.9]) by hub.freebsd.org (Postfix) with ESMTP id 4A58A37B400 for ; Thu, 24 Jan 2002 21:47:55 -0800 (PST) Received: from there ([172.16.32.103]) by uce55.uchaswv.edu (8.9.3 (PHNE_22672)/8.9.3) with SMTP id AAA14301 for ; Fri, 25 Jan 2002 00:50:46 -0500 (EST) Message-Id: <200201250550.AAA14301@uce55.uchaswv.edu> Content-Type: text/plain; charset="iso-8859-1" From: Nathan Mace To: freebsd-questions@freebsd.org Subject: /dev/vmmon??? Date: Fri, 25 Jan 2002 00:47:46 -0500 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ok, i got vmware to "boot" as in i got linprocfs working, thanks ;) however it's now saying that i need /dev/vmmon. i figure that it is a kernel module and as such will involve using kldload(maybe?) but i've googled for it, and although i found lots of info about /dev/vmmon itself i can't find anything out about how to get it working with freebsd? i've also found some stuff about /dev/vmnet. do i need that also? if so, hopw do i get it? thanks for the help. please cc any replies to me. nathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 21:55:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id 2F86637B400 for ; Thu, 24 Jan 2002 21:55:14 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 46FFE2B825; Fri, 25 Jan 2002 06:55:11 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 608A15BD; Fri, 25 Jan 2002 16:55:04 +1100 (EST) Date: Fri, 25 Jan 2002 16:55:04 +1100 From: Edwin Groothuis To: Nathan Mace Cc: freebsd-questions@freebsd.org Subject: Re: /dev/vmmon??? Message-ID: <20020125165504.L823@k7.mavetju.org> Mail-Followup-To: Edwin Groothuis , Nathan Mace , freebsd-questions@freebsd.org References: <200201250550.AAA14301@uce55.uchaswv.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200201250550.AAA14301@uce55.uchaswv.edu>; from nmace85@yahoo.com on Fri, Jan 25, 2002 at 12:47:46AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 12:47:46AM -0500, Nathan Mace wrote: > ok, i got vmware to "boot" as in i got linprocfs working, thanks ;) however > it's now saying that i need /dev/vmmon. i figure that it is a kernel module > and as such will involve using kldload(maybe?) but i've googled for it, and > although i found lots of info about /dev/vmmon itself i can't find anything > out about how to get it working with freebsd? vmmon (and the whole vmware prerequisites) are started via /usr/local/etc/rc.d/vmware.sh at startup (or during run-time via the invokation of that script) Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 22:15:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.oanet.com (mars.oanet.com [204.209.13.52]) by hub.freebsd.org (Postfix) with ESMTP id 02B4D37B402 for ; Thu, 24 Jan 2002 22:15:45 -0800 (PST) Received: from soralx.home (dialin-207-153-26-27.edm.oa.net [207.153.26.27]) by mail.oanet.com (8.11.5/8.11.5) with SMTP id g0P6Yku26596 for ; Thu, 24 Jan 2002 23:34:52 -0700 Date: Thu, 24 Jan 2002 23:34:52 -0700 Message-Id: <200201250634.g0P6Yku26596@mail.oanet.com> From: soralx@cydem.zp.ua To: freebsd-questions@freebsd.org Subject: 'KILL -9' or 'KILL -11': not strong enough X-Mailer: Sylpheed version 0.7.0claws (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG How can I kill a process with 'ttywai' state? For example: ==='top'=== 5002 root 4 0 2348k 1428k ttywai 0:00 0.00% 0.00% ppp =========== 'kill -9 5002' or 'kill -11 5002' doesn't work. [SorAlx] http://cydem.zp.ua/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 23:10:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from digger1.defence.gov.au (digger1.defence.gov.au [203.5.217.4]) by hub.freebsd.org (Postfix) with ESMTP id BE58637B402 for ; Thu, 24 Jan 2002 23:10:17 -0800 (PST) Received: from dsto-ms2.dsto.defence.gov.au (dsto-ms2.dsto.defence.gov.au [131.185.2.150]) by digger1.defence.gov.au (8.10.1/8.10.1) with ESMTP id g0P79IF09468 for ; Fri, 25 Jan 2002 17:39:18 +1030 (CST) Received: from muttley.dsto.defence.gov.au (unverified) by dsto-ms2.dsto.defence.gov.au (Content Technologies SMTPRS 4.1.5) with ESMTP id for ; Fri, 25 Jan 2002 17:40:06 +1030 Received: from salex001.dsto.defence.gov.au (salex001.dsto.defence.gov.au [131.185.2.9]) by muttley.dsto.defence.gov.au (8.9.3/8.9.3/8.9.3.LMD.990513) with ESMTP id RAA26431 for ; Fri, 25 Jan 2002 17:32:46 +1030 (CST) Received: from pluto2.dsto.defence.gov.au (squirm.dsto.defence.gov.au [131.185.75.211]) by salex001.dsto.defence.gov.au with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id DLRR8FF0; Fri, 25 Jan 2002 17:32:45 +1030 Date: Fri, 25 Jan 2002 17:27:48 +1030 (CST) From: "Wilkinson,Alex" X-X-Sender: wilkinsa@squirm.dsto.defence.gov.au Reply-To: Alex.Wilkinson@dsto.defence.gov.au To: freebsd-questions@freebsd.org Subject: linux-mozilla Message-ID: <20020125172539.U26509-100000@squirm.dsto.defence.gov.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Howdy all, Does anyone know where linux-mozilla puts it Java plugin? I am trying to install the JRE 1.3 plugin and I need to find the old plugin to remove it....but I can't locate it. Anyone had any luck getting the JRE 1.3 plugin working with the linux-mozilla port ? - Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Jan 24 23:40:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from speechpro.com (crt-gw.infopro.spb.su [195.201.254.5]) by hub.freebsd.org (Postfix) with ESMTP id 6041F37B402 for ; Thu, 24 Jan 2002 23:40:45 -0800 (PST) Received: from igorr by sysadm.stc with local (Exim 3.33 #1) id 16U11O-000Ite-00 for freebsd-questions@FreeBSD.ORG; Fri, 25 Jan 2002 10:43:38 +0300 Date: Fri, 25 Jan 2002 10:43:38 +0300 From: Igor Roboul To: freebsd-questions@FreeBSD.ORG Subject: Re: Fwd: Re: java in 4.5? Message-ID: <20020125074338.GB72464@sysadm.stc> Reply-To: igorr@speechpro.com Mail-Followup-To: Igor Roboul , freebsd-questions@FreeBSD.ORG References: <20020124184006.67A66337@fia168-94.dsl.hccnet.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020124184006.67A66337@fia168-94.dsl.hccnet.nl> User-Agent: Mutt/1.3.26i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Jan 24, 2002 at 07:40:05PM +0100, Simon Siemonsma wrote: > I think he referred to the fact that FreeBSD is getting an official Java > licency from Sun. As far as I know that is delayed and will not be in 4.5. > Again as far as I know in the ports you have Linux versions of Java, or some > strange construction with a native Java. Why do you call it "strange"? Native JDK works fine. I have setup Jetty and Tomcat with it. Also I have downloaded J2EE from Sun and it works. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 0:17:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by hub.freebsd.org (Postfix) with ESMTP id 47BBA37B400 for ; Fri, 25 Jan 2002 00:17:29 -0800 (PST) Received: from ppp5-219.ath.forthnet.gr Bernie_X@smtp-send.myrealbox.com [213.16.152.219] by smtp-send.myrealbox.com with Novell NIMS $Revision: 2.88 $ on Novell NetWare; Fri, 25 Jan 2002 01:17:28 -0700 Date: Fri, 25 Jan 2002 08:04:38 +0200 (EET) From: Bernie X-X-Sender: root@BLAST To: Joe Clarke Cc: Bernie , FreeBSD User Questions List Subject: Re: gnomecore problem... In-Reply-To: <20020124214252.F95500-100000@shumai.marcuscom.com> Message-ID: <20020125080206.Y1129-100000@BLAST> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 24 Jan 2002, Joe Clarke wrote: > > > On Thu, 24 Jan 2002, Bernie wrote: > > > > > > > thank you so much for your help on this. > > > > i did upgrade both pixbuf and gnomecanvas. i'm not sure > > which one did it, but when i tried gnomecore, it compiled > > and installed ok. > > > > also, glade now compiles ok, just upgraded it, so does > > xmms, playing orbital right now :-) > > > > the only thing i'm getting when trying to do a pkgdb -F > > after installation is: > > > > Cyclic dependencies: gnomecore-1.4.0.4_3 -> gnomecontrolcenter-1.4.0.1 -> > > (gnomecore-1.4.0.4_3) > > Unlink which dependency? (? to help): > > > > the help isnt very comprehensive on this one and i realy don't want to > > make a mistake here after all these efforts to make it work... > > > > i think that gnomecontrolcenter-1.4.0.1 is the one to unlink. Can > > you confirm if this is right? > > I think I saw mention of a cyclic dependency problem with GNOME on > gnome@. This might be a problem with portupgrade. What version of > portupgrade are you using? pkg_info shown i got this one: portupgrade-20020103 it's recent, but there is a newer in the ports. you think i should upgrade it? > > Joe > > > > > Thanks again for all your help. > > > > Regards, > > > > --Bernie > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 0:29:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 5144A37B416 for ; Fri, 25 Jan 2002 00:29:25 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id B49B266B74; Fri, 25 Jan 2002 00:29:24 -0800 (PST) Date: Fri, 25 Jan 2002 00:29:24 -0800 From: Kris Kennaway To: Christopher Weimann Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Max system memory in FreeBSD Message-ID: <20020125002924.A60646@xor.obsecurity.org> References: <20020124172416.A33829@mail.k12us.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="fUYQa+Pmc3FrFX/N" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020124172416.A33829@mail.k12us.com>; from cweimann@k12hq.com on Thu, Jan 24, 2002 at 05:24:16PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --fUYQa+Pmc3FrFX/N Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 24, 2002 at 05:24:16PM -0500, Christopher Weimann wrote: > I am hoping to convert some Netfinity servers from Win2k=20 > to FreeBSD. These boxes have over 8Gb of ram ( I think 16 ). >=20 > Does FreeBSD handle more than 4Gb yet? No. Kris --fUYQa+Pmc3FrFX/N Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8URdjWry0BWjoQKURAiJmAKCcmhTgi6DomsNOkEoAeAyRsls0PACfdBNR M+S2hGbXRAZRkg2GjoVkTHM= =WAeV -----END PGP SIGNATURE----- --fUYQa+Pmc3FrFX/N-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 0:32:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 035A237B402 for ; Fri, 25 Jan 2002 00:32:24 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 86C2266B74; Fri, 25 Jan 2002 00:32:23 -0800 (PST) Date: Fri, 25 Jan 2002 00:32:23 -0800 From: Kris Kennaway To: Matt Sykes Cc: freebsd-questions@freebsd.org Subject: Re: recompile ports when update kernel/userland? Message-ID: <20020125003223.B60646@xor.obsecurity.org> References: <20020124234549.23631.qmail@web21007.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="V0207lvV8h4k8FAm" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020124234549.23631.qmail@web21007.mail.yahoo.com>; from mattmsykes@yahoo.co.uk on Thu, Jan 24, 2002 at 11:45:49PM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --V0207lvV8h4k8FAm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 24, 2002 at 11:45:49PM +0000, Matt Sykes wrote: >=20 > tracking 4.4-stable. >=20 > Should I expect a few ports to be broken after I rebuild=20 > the kernel and userland? I guess I don't quite believe=20 > that binary compatibility exists in the real world. >=20 > I know that updating the kernel without updating the > base userland can cause problems, so it seems like I > should rebuild all my ports. >=20 > If there is any chance that any port will be broken any > percent of the time, I'll just rebuild everything to be > safe. Even though a port may appear to be okay without > recompilation, it could fail in an unexpected way at > some point. There are only one or two ports which may sometimes break when you upgrade the kernel; they do so because they expect to be able to grovel around inside kernel memory and know where to find things. This may change over time. lsof is the only such port which springs to mind, but there might be others. Every other port will continue to work fine across upgrades; even across multiple versions of FreeBSD providing you install the relevant compatibility libraries. e.g. you can run FreeBSD 2.2.x binaries under 4.x just by installing the compat22 package. Kris --V0207lvV8h4k8FAm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8URgWWry0BWjoQKURAkWfAJ0VSWFCt0sYqFoRkaslGfs7ubtnuACg1jPa aP+lVaZD2TVGVn6Eu8EPVTE= =EGMF -----END PGP SIGNATURE----- --V0207lvV8h4k8FAm-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 0:44:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail6.cybercon.com (mail6.cybercon.com [216.198.199.231]) by hub.freebsd.org (Postfix) with SMTP id 6C19637B400 for ; Fri, 25 Jan 2002 00:44:34 -0800 (PST) Received: (qmail 30481 invoked by uid 1006); 25 Jan 2002 08:44:27 -0000 Date: 25 Jan 2002 08:44:27 -0000 Message-ID: <20020125084427.30480.qmail@mail6.cybercon.com> From: "George E Turner" To: freebsd-questions@FreeBSD.ORG Subject: Convertion program from HTML unicode to Plain Text UTF-8 References: In-Reply-To: X-Mailer: Web mail - http://www.cybercon.com X-IPAddress: 203.162.55.3 X-Sender: get@hvvt.com MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, We are looking for a program that will help to convert Unicode HTML Vietnamese documents into Plain Text UTF-8 Code. It would be ideal if the program would convert all such documents that are in a given folder. Thanks in advance for your help. George Turner get@hvvt.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 1: 8:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from castor.email.si (mail.email.si [193.77.122.6]) by hub.freebsd.org (Postfix) with ESMTP id BEF8D37B402 for ; Fri, 25 Jan 2002 01:08:09 -0800 (PST) Received: from earth (node.066-0.ty.link.si [213.250.43.66]) by castor.email.si (8.11.1/8.11.1) with SMTP id g0P982O12704; Fri, 25 Jan 2002 10:08:02 +0100 Message-ID: <000b01c1a57f$d7bd1f90$0200a8c0@earth> From: "FreeBSD" To: Cc: "FreeBSD Questions" References: <20020124152801.0851A237@sonic.kks.net> Subject: Re: My server is going down !! Date: Fri, 25 Jan 2002 10:08:21 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Poslal FreeBSD: > > I am new in FreeBSD world, but i have configured my server. > > And now i have a problem. My sever stops working. > > From time to time my server in unreachable, but when i make > > ifconfig xl0 down > > ifconfig xl0 up > > then it srats working again ... I dont know why but first i try to fix a > > problem with irq, becouse my video cart and my xl0 network card had the same > > irq. > > I think that this has reduce my problem, because now server stops working > > but then starts without me. But this is still not good. > > What shall i do. What could be wrong. > > > > Server ony stops my internet connection, but my local network is still > > working. > > I dont know if it matters but when i log on to my server via locakl network, > > server always works, but when i am away or ny local mascine in not turned on > > then server stops working and starts ad so on. > > > > I hope that you can help me, or tell me what could be wrong. > > > > Thanks > > > > Hi ! > > Go through your config files. It seems that your dialup device (device that connects > FreeBSD box with outer world) disconnects. This is usually configured this way, when > you only use that computer to establish temporary connection with world (for example > we have small firm that doesn't have hired line, and they use modem to connect to > world, in this case they don't have line open 24h, but server computer connects that > line to internet only when some of emplyees requests access to internet. It goes > without saying that computer has dial-up account and can't be reached from ouside > world. I don't know what type of hardware you use to connect to world, but if your > device is modem (even ADSL) then by default line gets disconnected, you must fo to > your settings and fix this (probbaly under /etc/ppp, but I am not 100% sure)... > > Andy I have a cable connection, so connection should be working all the time. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 2:11:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay1.ntu-kpi.kiev.ua (www.ntu-kpi.kiev.ua [212.111.192.161]) by hub.freebsd.org (Postfix) with ESMTP id 66B1037B402 for ; Fri, 25 Jan 2002 02:11:45 -0800 (PST) Received: from comsys.ntu-kpi.kiev.ua (eth0.comsys.ntu-kpi.kiev.ua [10.0.1.184]) by relay1.ntu-kpi.kiev.ua (Postfix) with ESMTP id 856F42EEDB; Fri, 25 Jan 2002 12:11:38 +0200 (EET) Received: from pm5149 (pm514-9.comsys.ntu-kpi.kiev.ua [10.18.54.109]) by comsys.ntu-kpi.kiev.ua (8.11.6/8.11.6) with SMTP id g0PAE2n53706; Fri, 25 Jan 2002 12:14:02 +0200 (EET) Message-ID: <008401c1a57f$710272a0$6d36120a@comsys.ntukpi.kiev.ua> From: "Andrey Simonenko" To: "Drew Tomlinson" Cc: References: <01f801c1a509$bd1d3060$c42a6ba5@lc.ca.gov.lucky.freebsd.questions> Subject: Re: Regex Database Help? Date: Fri, 25 Jan 2002 12:05:30 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: Drew Tomlinson Newsgroups: lucky.freebsd.questions Sent: Thursday, January 24, 2002 10:03 PM Subject: Regex Database Help? > # Allow somehost.some.domain > /^somehost\.some\.domain$/ OK > > This works fine. Now what I would like to do is something like this: > > # Allow allhosts.some.domain > /*\.some\.domain$/ OK > > In other words, allow all hosts that end in some.domain. However, I > have tried this different ways without success. I assume this is > possible? Can someone help me get the syntax right for this regular > expression. From what I know, I would expect the above to work but it > doesn't. > If it is a POSIX RE, then you should write: /\.some\.domain$/ OK or /.*\.some\.domain$/ OK or /^.*\.some\.domain$/ OK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 2:17:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay1.ntu-kpi.kiev.ua (www.ntu-kpi.kiev.ua [212.111.192.161]) by hub.freebsd.org (Postfix) with ESMTP id 5095737B400 for ; Fri, 25 Jan 2002 02:17:14 -0800 (PST) Received: from comsys.ntu-kpi.kiev.ua (eth0.comsys.ntu-kpi.kiev.ua [10.0.1.184]) by relay1.ntu-kpi.kiev.ua (Postfix) with ESMTP id 843962EEC4; Fri, 25 Jan 2002 12:17:11 +0200 (EET) Received: from pm5149 (pm514-9.comsys.ntu-kpi.kiev.ua [10.18.54.109]) by comsys.ntu-kpi.kiev.ua (8.11.6/8.11.6) with SMTP id g0PAJZn53727; Fri, 25 Jan 2002 12:19:35 +0200 (EET) Message-ID: <009001c1a580$37781ca0$6d36120a@comsys.ntukpi.kiev.ua> From: "Andrey Simonenko" To: "Oleg Sorocean" Cc: References: <200201240513.g0O5D2407938@www.k.ro.lucky.freebsd.questions> Subject: Re: FreeBSD installing problem Date: Fri, 25 Jan 2002 12:11:03 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: Oleg Sorocean Newsgroups: lucky.freebsd.questions Sent: Thursday, January 24, 2002 8:13 AM Subject: FreeBSD installing problem > > [OK] > [Press Enter to continue] > and after thant, dialog too select on wich hard drive i want to > install FreeBSD did not appear installation goes directly > to screen > > Disk name :ad 0 > Disk Geometry .... > Offset > ... Check output of the second and the third screen during the installation process. I think you'll find answers on your questions there. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 2:42:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from shelly.fgg.uni-lj.si (shelly.fgg.uni-lj.si [193.2.92.25]) by hub.freebsd.org (Postfix) with ESMTP id 007CB37B402 for ; Fri, 25 Jan 2002 02:42:19 -0800 (PST) Received: from p4zt (pc99.fgg.uni-lj.si [193.2.92.99]) by shelly.fgg.uni-lj.si (8.11.6/8.11.6) with ESMTP id g0PAgFt10819 for ; Fri, 25 Jan 2002 11:42:17 +0100 (CET) (envelope-from ziga.turk@itc.fgg.uni-lj.si) From: "Ziga Turk" Organization: FGG-IKPIR To: questions@freebsd.org Date: Fri, 25 Jan 2002 11:42:16 +0100 MIME-Version: 1.0 Subject: How to change default crypt method after install Message-ID: <3C514498.15289.ADECD7@localhost> X-mailer: Pegasus Mail for Windows (v4.01) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Installing one of my freeBSD 4.4 systems I guess I must have selected DES as the default crypt method. All other use MD5. I use some date encrypted using the crypt function (in Perl) and it seems to be using DES method. I want it to use MD5. How can I make, in freeBSD 4.4, MD5 as the default crypt method. Not for passwords, but for the crypt() function. In 4.4 the relinking of libcrypt.a is not advised. Thanks! v Ziga -- Ziga Turk, Ph.D., Assoc.Prof. -- University of Ljubljana, KGI-IKPIR-FGG -- Jamova 2, Ljubljana, Slovenia -- http://itc.fgg.uni-lj.si/zturk/ -- tel. +386.1.4768.622, fax. +386.1.4250.693 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 2:43:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from uranus.lan-ks.de (uranus.lan-ks.de [194.45.71.1]) by hub.freebsd.org (Postfix) with ESMTP id A846837B400 for ; Fri, 25 Jan 2002 02:43:20 -0800 (PST) Received: from there (pluto.lan-ks.de [194.45.71.78]) by uranus.lan-ks.de (8.11.6/8.11.5) with SMTP id g0PAeUu28911 for ; Fri, 25 Jan 2002 11:40:30 +0100 (envelope-from evermann@pluto.lan-ks.de) Message-Id: <200201251040.g0PAeUu28911@uranus.lan-ks.de> X-Envelope-To: Content-Type: text/plain; charset="iso-8859-1" From: Norbert Evermann Organization: Privat To: freebsd-questions@freebsd.org Subject: PreRelease4.5 and PAM authenticate and login module? Date: Fri, 25 Jan 2002 11:43:12 +0100 X-Mailer: KMail [version 1.3] MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, anyone know, load the "login module" and setting the "pam authenticate"=20 Permission? -- Norbert E-Mail: evermann@pluto.lan-ks.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 2:54:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail18.bigmailbox.com (mail18.bigmailbox.com [209.132.220.49]) by hub.freebsd.org (Postfix) with ESMTP id 263C737B400 for ; Fri, 25 Jan 2002 02:54:15 -0800 (PST) Received: (from www@localhost) by mail18.bigmailbox.com (8.10.0/8.10.0) id g0PAsET01868; Fri, 25 Jan 2002 02:54:14 -0800 Date: Fri, 25 Jan 2002 02:54:14 -0800 Message-Id: <200201251054.g0PAsET01868@mail18.bigmailbox.com> Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: binary X-Mailer: MIME-tools 4.104 (Entity 4.116) Mime-Version: 1.0 X-Originating-Ip: [216.235.128.20] From: "Joe Blow" To: freebsd-questions@freebsd.org Subject: FreeBSD 4.x - lock ups + reboots Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, This mailing list is my last resort for a hideous problem I've endured for well over a year. I first started experiencing it with FreeBSD 4.2-R. I bought the FreeBSD 4.3-R CDs when they first came out last year, hoping that the problem would disappear. It didn't. I have searched through the freebsd.org problem reports and mailing list arhives, through USENET, and through google.com. Although it seems many other users are experiencing similar problems, solutions have been elusive. [problem description] The system locks up very often. While using X, it appears that the system freezes completely with the keyboard and mouse becoming unresponsive, but this is not the case -- after a brief moment, I can cause a reboot by hitting ENTER twice. My encounters with this same problem outside of X show that a kernel panic message is displayed on the console screen, the disks are synced, and then a prompt appears saying something along the lines of "Press a key on the console to reboot." In my attempts to tackle the issue last year, I compiled a debug kernel and enabled crash dumps to my swap device (swap = 132MB, main memory = 64MB) via the rc.conf 'dumpdev' option. Surprisingly, no crash dumps resulted when the kernel had its next few panics, so I was unable to obtain a backtrace of the code path. The panic message is basically... Fatal trap 12: page fault while in kernel mode [...] ... with the register values and so forth that are meaningless to post here without some kind of backtrace. Is there any reason why I am unable to get crash dumps? The lock ups appear to occur in four main categories: 1. Using X and Netscape to surf the Web. 2. Heavy disk activity (with and without X active), e.g. untarring large tarballs, compiling large code bases, etc. 3. Executing commands such as sockstat, netstat, ps aux, etc. (with and without X active). The access of kernel memory seems relevant here. 4. Executing reboot(8) -- the hang occurs either immediately after typing the command or just after the mounting of filesystems. The lock ups are the exception rather than the rule, and most of the time I can perform the above operations without incurring any punishment. But they still occur too frequently for comfort (on average of 5-6 times daily). I *really* do want to solve this problem and will very much appreciate any help offered. If there are any more details I can provide that will assist in identifying what's going on, please let me know. Also, I will gladly follow any debugging procedures that may help. [hardware/configuration details] My hardware is in excellent condition. dmesg output and a copy of my kernel configuration file are included at the bottom of this post. I use the popular ICH audio driver available at the following URL: http://www.katsurajima.seya.yokohama.jp/ich/ bash-2.05$ kldstat Id Refs Address Size Name 1 4 0xc0100000 1d4818 kernel 2 1 0xc02d5000 9cc0 agp.ko 3 1 0xc093b000 4000 logo_saver.ko 4 1 0xc0940000 12000 linux.ko As you can see above, I have the AGP kernel module loaded at boot time and Linux binary emulation enabled. I use XFree86 4.1.0 with its support for the i815e. bash-2.05$ cat /etc/rc.conf #kern_securelevel_enable="NO" # disabled for X #kern_securelevel="-1" clear_tmp_enable="YES" linux_enable="YES" keyrate="fast" saver="logo" hostname="lucid" inetd_enable="NO" portmap_enable="NO" sendmail_enable="NO" syslogd_enable="NO" cron_enable="NO" usbd_enable="YES" #lpd_enable="NO" # execute manually #moused_enable="NO" # started by usbd [dmesg output] Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.3-RELEASE #0: Sat Dec 8 18:21:03 EST 2001 jason@lucid:/usr/src/sys/compile/MYKERNEL Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 930318475 Hz CPU: Pentium III/Pentium III Xeon/Celeron (930.32-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x686 Stepping = 6 Features=0x383f9ff real memory = 65929216 (64384K bytes) avail memory = 61296640 (59860K bytes) Preloaded elf kernel "kernel" at 0xc02e0000. Preloaded elf module "agp.ko" at 0xc02e009c. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 agp0: mem 0x80500000-0x8057ffff,0x84000000-0x87ffffff irq 9 at device 2.0 on pci0 pcib1: at device 30.0 on pci0 pci1: on pcib1 pci1: (vendor=0x8086, dev=0x2449) at 8.0 irq 10 isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x8c00-0x8c0f at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0x8880-0x889f irq 3 at device 31.2 on pci0 uhci0: (New UHCI DeviceId=0x24428086) usb0: on uhci0 usb0: USB revision 1.0 uhub0: (0x24428086) UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered ukbd0: NOVATEK USB MULTIMEDIA KEYBOARD, rev 1.10/1.10, addr 2, iclass 3/1 kbd0 at ukbd0 ums0: Logitech N48 mouse, rev 1.00/11.01, addr 3, iclass 3/1 ums0: 3 buttons and Z dir. pci0: (vendor=0x8086, dev=0x2443) at 31.3 irq 11 uhci1: port 0x88c0-0x88df irq 10 at device 31.4 on pci0 uhci1: (New UHCI DeviceId=0x24448086) usb1: on uhci1 usb1: USB revision 1.0 uhub1: (0x24448086) UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered pcm0: port 0x8800-0x883f,0x8400-0x84ff irq 11 at device 31.5 on pci0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode lpt0: on ppbus0 lpt0: Interrupt-driven port ad0: 19470MB [39560/16/63] at ata0-master UDMA100 acd0: CDROM at ata1-slave using PIO4 [kernel config file] machine i386 #cpu I386_CPU #cpu I486_CPU #cpu I586_CPU cpu I686_CPU ident MYKERNEL maxusers 32 makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols #options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking #options INET6 #IPv6 communications protocols options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support #options MFS #Memory Filesystem #options MD_ROOT #MD is a potential root device #options NFS #Network Filesystem #options NFS_ROOT #NFS usable as root device, NFS required #options MSDOSFS #MSDOS Filesystem #options CD9660 #ISO 9660 Filesystem #options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] #options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev # To make an SMP kernel, the next two are needed #options SMP # Symmetric MultiProcessor Kernel #options APIC_IO # Symmetric (APIC) I/O device isa #device eisa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 #device fd1 at fdc0 drive 1 # ATA and ATAPI devices #device ata0 at isa? port IO_WD1 irq 14 #device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives #device atapifd # ATAPI floppy drives #device atapist # ATAPI tape drives options ATA_STATIC_ID #Static device numbering # SCSI Controllers #device ahb # EISA AHA1742 family #device ahc # AHA2940 and onboard AIC7xxx devices #device amd # AMD 53C974 (Tekram DC-390(T)) #device isp # Qlogic family #device ncr # NCR/Symbios Logic #device sym # NCR/Symbios Logic (newer chipsets) #options SYM_SETUP_LP_PROBE_MAP=0x40 # Allow ncr to attach legacy NCR devices when # both sym and ncr are configured #device adv0 at isa? #device adw #device bt0 at isa? #device aha0 at isa? #device aic0 at isa? #device ncv # NCR 53C500 #device nsp # Workbit Ninja SCSI-3 #device stg # TMC 18C30/18C50 # SCSI peripherals #device scbus # SCSI bus (required) #device da # Direct Access (disks) #device sa # Sequential Access (tape etc) #device cd # CD #device pass # Passthrough device (direct SCSI access) # RAID controllers interfaced to the SCSI subsystem #device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID #device dpt # DPT Smartcache - See LINT for options! #device mly # Mylex AcceleRAID/eXtremeRAID # RAID controllers #device aac # Adaptec FSA RAID, Dell PERC2/PERC3 #device ida # Compaq Smart RAID #device amr # AMI MegaRAID #device mlx # Mylex DAC960 family #device twe # 3ware Escalade # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 #device psm0 at atkbdc? irq 12 device pcm # ADDED FOR SOUND SUPPORT (ICH DRIVER) device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) #device apm0 at nexus? disable flags 0x20 # Advanced Power Management # PCCARD (PCMCIA) support #device card #device pcic0 at isa? irq 0 port 0x3e0 iomem 0xd0000 #device pcic1 at isa? irq 0 port 0x3e2 iomem 0xd4000 disable # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 #device sio1 at isa? port IO_COM2 irq 3 #device sio2 at isa? disable port IO_COM3 irq 5 #device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer #device plip # TCP/IP over parallel #device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. #device de # DEC/Intel DC21x4x (`Tulip'') #device fxp # Intel EtherExpress PRO/100B (82557, 82558) #device tx # SMC 9432TX (83c170 `EPIC'') #device vx # 3Com 3c590, 3c595 (`Vortex'') #device wx # Intel Gigabit Ethernet Card (`Wiseman'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! #device miibus # MII bus support #device dc # DEC/Intel 21143 and various workalikes #device pcn # AMD Am79C79x PCI 10/100 NICs #device rl # RealTek 8129/8139 #device sf # Adaptec AIC-6915 (`Starfire'') #device sis # Silicon Integrated Systems SiS 900/SiS 7016 #device ste # Sundance ST201 (D-Link DFE-550TX) #device tl # Texas Instruments ThunderLAN #device vr # VIA Rhine, Rhine II #device wb # Winbond W89C840F #device xl # 3Com 3c90x (`Boomerang'', `Cyclone'') # ISA Ethernet NICs. #device ed0 at isa? port 0x280 irq 10 iomem 0xd8000 #device ex #device ep #device fe0 at isa? port 0x300 # Xircom Ethernet #device xe # PRISM I IEEE 802.11b wireless NIC. #device awi # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attachment needed # and resources will always be dynamically assigned by the pccard code. #device wi # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP # mode (the factory default). If you set the switches on your ISA # card for a manually chosen I/O address and IRQ, you must specify # those parameters here. #device an # The probe order of these is presently determined by i386/isa/isa_compat.c. #device ie0 at isa? port 0x300 irq 10 iomem 0xd0000 #device le0 at isa? port 0x300 irq 5 iomem 0xd0000 #device lnc0 at isa? port 0x280 irq 10 drq 0 #device cs0 at isa? port 0x300 #device sn0 at isa? port 0x300 irq 10 # Pseudo devices - the number indicates how many units to allocate. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support # NEEDED TO RESOLVE REFS #pseudo-device sl 1 # Kernel SLIP #pseudo-device ppp 1 # Kernel PPP pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) #pseudo-device md # Memory "disks" #pseudo-device gif 4 # IPv6 and IPv4 tunneling #pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) # The pf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface #device ohci # OHCI PCI->USB interface device usb # USB Bus (required) #device ugen # Generic #device uhid # "Human Interface Devices" device ukbd # Keyboard #device ulpt # Printer #device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse #device uscanner # Scanners # USB Ethernet, requires mii #device aue # ADMtek USB ethernet #device cue # CATC USB ethernet #device kue # Kawasaki LSI USB ethernet ------------------------------------------------------------ This email was sent through the free email service at http://www.anonymous.to/ To report abuse, please visit our website and click 'Contact Us.' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 3: 0:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web11004.mail.yahoo.com (web11004.mail.yahoo.com [216.136.131.54]) by hub.freebsd.org (Postfix) with SMTP id 283A237B404 for ; Fri, 25 Jan 2002 03:00:26 -0800 (PST) Message-ID: <20020125110026.34580.qmail@web11004.mail.yahoo.com> Received: from [202.87.124.10] by web11004.mail.yahoo.com via HTTP; Fri, 25 Jan 2002 03:00:26 PST Date: Fri, 25 Jan 2002 03:00:26 -0800 (PST) From: faisal gillani Subject: directory services for unix To: FreeBSD MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Well i wanted to know what is the most popular or in other words is there any directory services present for Freebsd that i can use to replace active directory in win2000 ? thanks Faisal __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 3:14:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp0.adl1.internode.on.net (smtp0.adl1.internode.on.net [203.16.214.194]) by hub.freebsd.org (Postfix) with ESMTP id E1B5D37B41C for ; Fri, 25 Jan 2002 03:14:08 -0800 (PST) Received: from orac.dodsworth.com.au (ppp477.adelaide.on.net.au [150.101.145.220]) by smtp0.adl1.internode.on.net (8.11.6/8.11.6) with SMTP id g0PBE7a96391 for ; Fri, 25 Jan 2002 21:44:09 +1030 (CST) (envelope-from marcd@internode.on.net) Date: Fri, 25 Jan 2002 21:44:59 +1030 From: Marc Dodsworth To: freebsd-questions@freebsd.org Subject: Spooling outgoing e-mail Message-Id: <20020125214459.414f9e47.marcd@internode.on.net> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i586-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi I have a client who I've put in a FreeBSD system as an internet gateway with 56K dialup. Only one use collects e-mail from their ISP and she uses MS Outlook 2000. I am looking at a better way of doing this so will use fetchmail to retrieve the mail from the ISP which she can then collect from the gateway system. I'm wondering what would be the best way for out going e-mail. They don't have a registered domain otherwise I'd just use Postfix or Sendmail for SMTP (if I pointed the SMTP program to relay via the ISP's mail server would it spool the mail or would it just bet the same effect as talking direct from Outlook to the ISP's mail server). Thanks for any assistance Marc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 3:27:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta5.snfc21.pbi.net (mta5.snfc21.pbi.net [206.13.28.241]) by hub.freebsd.org (Postfix) with ESMTP id 845D637B400 for ; Fri, 25 Jan 2002 03:27:21 -0800 (PST) Received: from blackbox.pacbell.net ([64.166.84.36]) by mta5.snfc21.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GQH00MXSRTKZ0@mta5.snfc21.pbi.net> for questions@FreeBSD.ORG; Fri, 25 Jan 2002 03:27:21 -0800 (PST) Received: (from mikem@localhost) by blackbox.pacbell.net (8.11.6/8.11.6) id g0PBRjX18762; Fri, 25 Jan 2002 03:27:45 -0800 (PST envelope-from mikem) Date: Fri, 25 Jan 2002 03:27:45 -0800 From: Mike Makonnen Subject: Re: directory services for unix In-reply-to: <20020125110026.34580.qmail@web11004.mail.yahoo.com> To: faisal gillani Cc: questions@FreeBSD.ORG Message-id: <200201251127.g0PBRjX18762@blackbox.pacbell.net> MIME-version: 1.0 X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd5.0) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20020125110026.34580.qmail@web11004.mail.yahoo.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 25 Jan 2002 03:00:26 -0800 (PST) faisal gillani wrote: > Well i wanted to know what is the most popular or in > other words is there any directory services present > for Freebsd that i can use to replace active directory > in win2000 ? There's none in the base system, but there are a few LDAP implementations in the Ports tree. cheers, mike makonnen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 3:28: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from erus.dynu.com (evrtwa1-ar7-002-027.vz.dsl.gtei.net [4.61.2.27]) by hub.freebsd.org (Postfix) with ESMTP id 98B7637B400 for ; Fri, 25 Jan 2002 03:27:52 -0800 (PST) Received: from MATRIX (matrix.erus.com [10.0.0.2]) by erus.dynu.com (8.11.6/8.11.6) with SMTP id g0PBRqk01226 for ; Fri, 25 Jan 2002 03:27:52 -0800 (PST) Message-ID: <022101c1a593$5387f880$0200000a@MATRIX> Reply-To: "Sam C. Zamarripa" From: "Sam C. Zamarripa" To: Subject: DHCP & Drops Date: Fri, 25 Jan 2002 03:27:52 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have Verizon DSL which uses DHCP. I am using FreeBSD 4.4-RELEASE-p4 I'm not sure if this is a problem with my setup or Verizon's end, but thought I would ask here first since I'll get quicker responses then from Verizon customer support. Every once in awhile there will be a connection drop. Everything works fine then all of the sudden everything stops. I use NATD for my LAN and I start getting failed to write packet back errors. I do a traceroute to any site and the 1st hop on is nothing but *'s. I have sat and waited up to 5 minutes during these burps and nothing ever seem to come back on its own. I kill -9 dhclient and start it again and I'm back on the net. The last 2 times it burped on me tonight, I didn't wait a second..as soon as it dropped I killed dhclient and restarted and was immediately back on the net. This is why I am maybe wondering if its something with my DHCP setup. I am using all the defaults..just a blank dhclient.conf file. Anyone have any suggestions or comment on this. It will be appreciated. Thanks. Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 4:12: 5 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta6.snfc21.pbi.net (mta6.snfc21.pbi.net [206.13.28.240]) by hub.freebsd.org (Postfix) with ESMTP id CCE2E37B400 for ; Fri, 25 Jan 2002 04:12:02 -0800 (PST) Received: from blackbox.pacbell.net ([64.166.84.36]) by mta6.snfc21.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GQH00GZDTW1JG@mta6.snfc21.pbi.net> for freebsd-questions@freebsd.org; Fri, 25 Jan 2002 04:12:02 -0800 (PST) Received: (from mikem@localhost) by blackbox.pacbell.net (8.11.6/8.11.6) id g0PCCQh18932; Fri, 25 Jan 2002 04:12:26 -0800 (PST envelope-from mikem) Date: Fri, 25 Jan 2002 04:12:26 -0800 From: Mike Makonnen Subject: Re: Spooling outgoing e-mail In-reply-to: <20020125214459.414f9e47.marcd@internode.on.net> To: Marc Dodsworth Cc: freebsd-questions@freebsd.org Message-id: <200201251212.g0PCCQh18932@blackbox.pacbell.net> MIME-version: 1.0 X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd5.0) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20020125214459.414f9e47.marcd@internode.on.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 25 Jan 2002 21:44:59 +1030 Marc Dodsworth wrote: > I am looking at a better way of doing this so will use fetchmail to retrieve the> mail from the ISP which she can then collect from the gateway system. What is better about it? If the current setup works for your user and she has no complaints why make extra work for yourself > > I'm wondering what would be the best way for out going e-mail. They don't have> a registered domain otherwise I'd just use Postfix or Sendmail for SMTP (if I> pointed the SMTP program to relay via the ISP's mail server would it spool the> mail or would it just bet the same effect as talking direct from Outlook to the> ISP's mail server). Look at sendmail's MASQUERADE_AS, masquerade_envelope, and SMART_HOST. This will allow you to send email through the gateway (providing the SMART_HOST will allow the gateway to relay mail through it. If the mail server belongs to the same ISP as the internet connection they usually do). Beware, however, that this now means you have increased the gateway's vulnerability and consequently the amount of work you have to do to secure and maintain the system. cheers, mike makonnen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 5:16:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.the-i-pa.com (mail.the-i-pa.com [151.201.71.132]) by hub.freebsd.org (Postfix) with SMTP id 078AC37B402 for ; Fri, 25 Jan 2002 05:16:43 -0800 (PST) Received: (qmail 44314 invoked from network); 25 Jan 2002 13:20:50 -0000 Received: from unknown (HELO proxy.pt.com) (151.201.71.209) by mail.the-i-pa.com with SMTP; 25 Jan 2002 13:20:50 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Bill Moran Organization: Potential Technology To: "Robert D. Hughes" , Subject: Re: dhclient.conf option problem Date: Fri, 25 Jan 2002 07:44:07 -0500 X-Mailer: KMail [version 1.2] References: In-Reply-To: MIME-Version: 1.0 Message-Id: <02012507440704.07381@proxy.pt.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday 24 January 2002 23:01, Robert D. Hughes wrote: > Has anyone had any luck getting "send dhcp-client-identifier" from > dhclient.conf to actually work? I need to swap out an interface that's > being configured via dhcp, but keep the same IP address. I do not have > access to the dhcp server. Does the DHCP server support this? If the DHCP server in question does not support this, then you can configure the client perfectly and it will never work. > Alternatively, I see from the ifconfig man page that there's an option to > specify a different MAC address. Does anyone know if that option is > compatible with dhcp configuration? Yes, if you change the MAC address it will be a global change to everything on the system. -- Bill Moran Potential Technology technical services http://www.potentialtech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 5:30: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tomts8-srv.bellnexxia.net (tomts8.bellnexxia.net [209.226.175.52]) by hub.freebsd.org (Postfix) with ESMTP id 60B4C37B41C for ; Fri, 25 Jan 2002 05:30:04 -0800 (PST) Received: from d.tracker ([64.231.227.190]) by tomts8-srv.bellnexxia.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20020125132958.DEKH16860.tomts8-srv.bellnexxia.net@d.tracker> for ; Fri, 25 Jan 2002 08:29:58 -0500 Received: (from david@localhost) by d.tracker (8.11.6/8.11.3) id g0PDLjT61762 for questions@freebsd.org; Fri, 25 Jan 2002 08:21:45 -0500 (EST) (envelope-from david) Date: Fri, 25 Jan 2002 08:21:44 -0500 From: David Banning To: questions@freebsd.org Subject: how to read html mail Message-ID: <20020125082144.A61752@sympatico.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is there a way to read html mail? I presently using mutt as my client. Usually I can open it but there us often so much html it is to laborous to see my way through. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 5:36:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from speechpro.com (crt-gw.infopro.spb.su [195.201.254.5]) by hub.freebsd.org (Postfix) with ESMTP id A46BA37B402 for ; Fri, 25 Jan 2002 05:36:05 -0800 (PST) Received: from igorr by sysadm.stc with local (Exim 3.33 #1) id 16U6ZJ-000JVt-00 for freebsd-questions@freebsd.org; Fri, 25 Jan 2002 16:39:01 +0300 Date: Fri, 25 Jan 2002 16:39:01 +0300 From: Igor Roboul To: freebsd-questions@freebsd.org Subject: Re: how to read html mail Message-ID: <20020125133901.GA74984@sysadm.stc> Reply-To: igorr@speechpro.com Mail-Followup-To: Igor Roboul , freebsd-questions@freebsd.org References: <20020125082144.A61752@sympatico.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020125082144.A61752@sympatico.ca> User-Agent: Mutt/1.3.26i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 08:21:44AM -0500, David Banning wrote: > Is there a way to read html mail? I presently using mutt as my client. use ~/.mailcap file: text/html; links %s application/msword; catdoc %s | less image/*; display %s application/pdf; xpdf %s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 5:37:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web.cs.ndsu.nodak.edu (web.cs.ndsu.NoDak.edu [134.129.125.7]) by hub.freebsd.org (Postfix) with ESMTP id 1373437B404; Fri, 25 Jan 2002 05:37:25 -0800 (PST) Received: (from tinguely@localhost) by web.cs.ndsu.nodak.edu (8.11.4/8.11.4) id g0PDbOu29231; Fri, 25 Jan 2002 07:37:24 -0600 (CST) (envelope-from tinguely) Date: Fri, 25 Jan 2002 07:37:24 -0600 (CST) From: mark tinguely Message-Id: <200201251337.g0PDbOu29231@web.cs.ndsu.nodak.edu> To: freebsd-multimedia@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG, henrich@sigbus.com Subject: Re: MBone/mrouted troubles In-Reply-To: <20020124200726.B70786@sigbus.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG could you send the contents of both of your /etc/mrouted.conf and what is the TTL on the vic session? There was a bug discovered in FreeBSD 4.4 in MCAST forwarding when a local session is also went out the tunnel. The UDP checksum was not calculated on the forwarding packet. I do not know when the hardware checksum feature was added to FreeBSD but that may have been FreeBSD 4.2 also. The patch was not picked up in FreeBSD 4.5 (at least it is not in RC1). To look for this bug, perform a tcpdump of the tunnel's contents and you will see UDP checksum errors. If you have this problem, I can give you a simplified version of Bill Fenner's patch. --mark tinguely. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 6:15:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from foo31-249.visit.se (foo31-146.visit.se [62.119.31.146]) by hub.freebsd.org (Postfix) with ESMTP id E41DE37B404 for ; Fri, 25 Jan 2002 06:15:40 -0800 (PST) Received: (from martin@localhost) by foo31-249.visit.se (8.11.6/8.11.6) id g0PEF9d04593; Fri, 25 Jan 2002 15:15:09 +0100 (CET) (envelope-from martin) Date: Fri, 25 Jan 2002 15:15:09 +0100 From: Martin Karlsson To: "Sam C. Zamarripa" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: DHCP & Drops Message-ID: <20020125141509.GA4177@foo31-249.visit.se> Mail-Followup-To: Martin Karlsson , "Sam C. Zamarripa" , freebsd-questions@FreeBSD.ORG References: <022101c1a593$5387f880$0200000a@MATRIX> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <022101c1a593$5387f880$0200000a@MATRIX> User-Agent: Mutt/1.3.27i X-Editor: Vim http://www.vim.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri Jan 25, 2002 at 03:27:52AM -0800, Sam C. Zamarripa wrote: [...snip...] > Every once in awhile there will be a connection > drop. Everything works fine then all of the sudden everything stops. I've got the same problem. > I have sat and waited up to 5 minutes during these burps and nothing ever > seem to come back on its own. I kill -9 dhclient and start it again and I'm > back on the net. The last 2 times it burped on me tonight, I didn't wait a > second..as soon as it dropped I killed dhclient and restarted and was > immediately back on the net. man(5) dhclient.conf contains some interesting stuff; I've tried setting 'retry 30' (as in 30 secs), but that doesn't seem to do the trick. As you point out killing dhclient and starting it again works... until it "dies" again. > This is why I am maybe wondering if its something with my DHCP setup. Hopefully, the grand-master-guru of dhclient have heard our cries for help. It's a pain in the arse, it is. Sorry I couldn't be of help. Cheers -- Martin Karlsson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 6:26:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out0.mx.nwbl.wi.voyager.net (out0.mx.nwbl.wi.voyager.net [169.207.1.78]) by hub.freebsd.org (Postfix) with ESMTP id 37DE937B417 for ; Fri, 25 Jan 2002 06:26:28 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out0.mx.nwbl.wi.voyager.net (8.11.4/8.11.4/1.7) with ESMTP id g0PEQkg06191; Fri, 25 Jan 2002 08:26:46 -0600 (CST) Received: (from dpoland@localhost) by shell.core.com (8.11.6/8.11.6/1.3) id g0PEQQm19063; Fri, 25 Jan 2002 08:26:26 -0600 (CST) Date: Fri, 25 Jan 2002 08:26:26 -0600 From: Doug Poland To: "Wilkinson,Alex" Cc: freebsd-questions@freebsd.org Subject: Re: linux-mozilla Message-ID: <20020125082626.A18241@polands.org> References: <20020125172539.U26509-100000@squirm.dsto.defence.gov.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020125172539.U26509-100000@squirm.dsto.defence.gov.au>; from Alex.Wilkinson@dsto.defence.gov.au on Fri, Jan 25, 2002 at 05:27:48PM +1030 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 05:27:48PM +1030, Wilkinson,Alex wrote: > Howdy all, > > Does anyone know where linux-mozilla puts it Java plugin? > /usr/local/mozilla/plugins > I am trying to install the JRE 1.3 plugin and I need to find the > old plugin to remove it....but I can't locate it. > > Anyone had any luck getting the JRE 1.3 plugin working with the linux-mozilla port ? > no, put if you install the linux-jkd1.3.3 port, you can symlink to it. Check archives on subject: Java plugin for mozilla -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 6:45:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id EB83D37B400 for ; Fri, 25 Jan 2002 06:45:07 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16U7b1-0005KR-00 for freebsd-questions@freebsd.org; Fri, 25 Jan 2002 14:44:51 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id AAE78458D0; Fri, 25 Jan 2002 15:44:46 +0100 (CET) Date: Fri, 25 Jan 2002 15:44:46 +0100 From: Cliff Sarginson To: freebsd-questions@freebsd.org Subject: Re: FreeBSD 4.x - lock ups + reboots Message-ID: <20020125144446.GB2979@raggedclown.net> References: <200201251054.g0PAsET01868@mail18.bigmailbox.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200201251054.g0PAsET01868@mail18.bigmailbox.com> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 02:54:14AM -0800, Joe Blow wrote: > Hi, > > This mailing list is my last resort for a hideous problem I've endured for > well over a year. I first started experiencing it with FreeBSD 4.2-R. I > bought the FreeBSD 4.3-R CDs when they first came out last year, hoping that > the problem would disappear. It didn't. > > I have searched through the freebsd.org problem reports and mailing list > arhives, through USENET, and through google.com. Although it seems many > other users are experiencing similar problems, solutions have been elusive. > > [problem description] > > The system locks up very often. While using X, it appears that the system > freezes completely with the keyboard and mouse becoming unresponsive, but > this is not the case -- after a brief moment, I can cause a reboot by > hitting ENTER twice. My encounters with this same problem outside of X show > that a kernel panic message is displayed on the console screen, the disks > are synced, and then a prompt appears saying something along the lines of > "Press a key on the console to reboot." > > In my attempts to tackle the issue last year, I compiled a debug kernel and > enabled crash dumps to my swap device (swap = 132MB, main memory = 64MB) via > the rc.conf 'dumpdev' option. Surprisingly, no crash dumps resulted when the > kernel had its next few panics, so I was unable to obtain a backtrace of the > code path. > > > > As you can see above, I have the AGP kernel module loaded at boot time and > Linux binary emulation enabled. > I do as well. > I use XFree86 4.1.0 with its support for the i815e. > I cannot solve this but I can add to it, and also add my suspicions. I also have a m/board with i815e chipset, you do not mention which video card you have, mine is a Matrox G450 AGP. I have occasionally (much less often than you have) had a kernel panic. This seems to occur when I have loaded the agp module "by hand" so to speak, rather than as part of the startup procedures. My intuition is that the "agp" module is the problem, since I also get complaints from the kmod_drm module about it when I load that (I have reported the latter problem to the maintainer). I have not been able to create a reproducible scenario though, so I have not reported the "panic" thus far. So my hunch is that it is "agp", but as I say, that remains at the level of suspicion. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 6:45:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from humpty.finadmin.virginia.edu (humpty.finadmin.Virginia.EDU [128.143.87.245]) by hub.freebsd.org (Postfix) with ESMTP id 335F937B402 for ; Fri, 25 Jan 2002 06:45:17 -0800 (PST) Received: (from mrg8n@localhost) by humpty.finadmin.virginia.edu (8.11.6/8.11.6) id g0PEjMa23743; Fri, 25 Jan 2002 09:45:22 -0500 (EST) (envelope-from mrg8n) Date: Fri, 25 Jan 2002 09:45:22 -0500 From: Mike Galvez To: David Banning Cc: questions@FreeBSD.ORG Subject: Re: how to read html mail Message-ID: <20020125094522.A23617@mail.virginia.edu> References: <20020125082144.A61752@sympatico.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020125082144.A61752@sympatico.ca>; from david@skytrackercanada.com on Fri, Jan 25, 2002 at 08:21:44AM -0500 X-Operating-System: FreeBSD UNIX Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have this in my mailcap. You will need to have lynx installed which is in the ports. text/html; lynx -dump %s; copiousoutput; nametemplate=%s.html application/msword; antiword %s; copiousoutput On Fri, Jan 25, 2002 at 08:21:44AM -0500, David Banning wrote: > Is there a way to read html mail? I presently using mutt as my client. > Usually I can open it but there us often so much html it is > to laborous to see my way through. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Michael Galvez Information Technology Specialist III E-Mail: mrg8n@nospam.virginia.edu University of Virginia Office: 434-982-2975 When God endowed human beings with brains, He did not intend to guarantee them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 6:50:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail8.nc.rr.com (fe8.southeast.rr.com [24.93.67.55]) by hub.freebsd.org (Postfix) with ESMTP id 320B137B41B for ; Fri, 25 Jan 2002 06:50:40 -0800 (PST) Received: from i8k.babbleon.org ([66.57.85.154]) by mail8.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Fri, 25 Jan 2002 09:50:39 -0500 Received: by i8k.babbleon.org (Postfix, from userid 111) id 0C1A23F62; Fri, 25 Jan 2002 09:49:34 -0500 (EST) Content-Type: text/plain; charset="iso-8859-15" From: Brian T.Schellenberger To: Martin Karlsson , "Sam C. Zamarripa" Subject: Re: DHCP & Drops Date: Fri, 25 Jan 2002 09:49:33 -0500 X-Mailer: KMail [version 1.3] Cc: freebsd-questions@FreeBSD.ORG References: <022101c1a593$5387f880$0200000a@MATRIX> <20020125141509.GA4177@foo31-249.visit.se> In-Reply-To: <20020125141509.GA4177@foo31-249.visit.se> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020125144934.0C1A23F62@i8k.babbleon.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday 25 January 2002 09:15 am, Martin Karlsson wrote: > On Fri Jan 25, 2002 at 03:27:52AM -0800, Sam C. Zamarripa wrote: > [...snip...] > > > Every once in awhile there will be a connection > > drop. Everything works fine then all of the sudden everything stops. > > I've got the same problem. > > > I have sat and waited up to 5 minutes during these burps and nothing ever > > seem to come back on its own. I kill -9 dhclient and start it again and > > I'm back on the net. The last 2 times it burped on me tonight, I didn't > > wait a second..as soon as it dropped I killed dhclient and restarted and > > was immediately back on the net. Are you back on with the same address as before? If so, I doubt it's dhcp _per_se_ that is causing the trouble; however killing and restarting dhcp does have the effect of dropping the default route and then re-establishing it. I would suspect that the default route is somehow seizing up. Next time it happens do a "netstat -nr" and trying "pinging" your default gateway. PS: I'm assuming from the what you describe here that you are connected directly to the cable madem without a firewall in between, right? (If so I hope you were careful with your machine's setup to not have any ports open . . .) > > man(5) dhclient.conf contains some interesting stuff; I've tried setting > 'retry 30' (as in 30 secs), but that doesn't seem to do the trick. As > you point out killing dhclient and starting it again works... until it > "dies" again. > > > This is why I am maybe wondering if its something with my DHCP setup. > > Hopefully, the grand-master-guru of dhclient have heard our cries for > help. It's a pain in the arse, it is. > > Sorry I couldn't be of help. > > Cheers -- Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org -------> Free Dmitry Sklyarov! (let him go home) <----------- http://www.eff.org http://www.programming-freedom.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 6:54:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from humpty.finadmin.virginia.edu (humpty.finadmin.Virginia.EDU [128.143.87.245]) by hub.freebsd.org (Postfix) with ESMTP id 29A3137B416 for ; Fri, 25 Jan 2002 06:54:27 -0800 (PST) Received: (from mrg8n@localhost) by humpty.finadmin.virginia.edu (8.11.6/8.11.6) id g0PEsYm23791; Fri, 25 Jan 2002 09:54:34 -0500 (EST) (envelope-from mrg8n) Date: Fri, 25 Jan 2002 09:54:34 -0500 From: Mike Galvez To: David Banning Cc: questions@FreeBSD.ORG Subject: Re: how to read html mail Message-ID: <20020125095433.B23617@mail.virginia.edu> References: <20020125082144.A61752@sympatico.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020125082144.A61752@sympatico.ca>; from david@skytrackercanada.com on Fri, Jan 25, 2002 at 08:21:44AM -0500 X-Operating-System: FreeBSD UNIX Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG David, I forgot to mention that you also need to put the following line in your .muttrc : auto_view text/html text/enriched HTH Mike On Fri, Jan 25, 2002 at 08:21:44AM -0500, David Banning wrote: > Is there a way to read html mail? I presently using mutt as my client. > Usually I can open it but there us often so much html it is > to laborous to see my way through. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Michael Galvez Information Technology Specialist III E-Mail: mrg8n@nospam.virginia.edu University of Virginia Office: 434-982-2975 The trouble with a kitten is that When it grows up, it's always a cat -- Ogden Nash. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 7:19: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.the-i-pa.com (mail.the-i-pa.com [151.201.71.132]) by hub.freebsd.org (Postfix) with SMTP id 2863F37B416 for ; Fri, 25 Jan 2002 07:19:01 -0800 (PST) Received: (qmail 45126 invoked from network); 25 Jan 2002 15:23:09 -0000 Received: from unknown (HELO proxy.pt.com) (151.201.71.209) by mail.the-i-pa.com with SMTP; 25 Jan 2002 15:23:09 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Bill Moran Organization: Potential Technology To: Cliff Sarginson , freebsd-questions@freebsd.org Subject: Re: Printing problems with KDE Date: Fri, 25 Jan 2002 09:46:26 -0500 X-Mailer: KMail [version 1.2] References: <02012418440402.07381@proxy.pt.com> <20020125013326.GA1180@raggedclown.net> In-Reply-To: <20020125013326.GA1180@raggedclown.net> MIME-Version: 1.0 Message-Id: <02012509452305.07381@proxy.pt.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday 24 January 2002 20:33, Cliff Sarginson wrote: > On Thu, Jan 24, 2002 at 06:44:04PM -0500, Bill Moran wrote: > > We've got a little office network that consists of some FreeBSD > > and some Windows computers. > > One of the FreeBSD computers acts as a print server. It's running > > 4.2-R and printing via lpd works fine. Printing through this print > > server using Samba from the Win stations works fine as well. lpd printing > > from a FreeBSD workstation (4.3-R) via the newtork works fine as well. > > But I can't print anything from KDE, either locally (KDE 2.1) or on the > > remote station (KDE 2.2). > > I'm guessing that it's a config problem with KDE, but I can't find much > > in the way of configuration information to tweak. The FreeBSD lpd > > printing system seems to be set up just dandy, it's a shame KDE isn't > > using it. > > Any advice? > > Look through the menus for something like (off the top of my head) > > preferences/system/printing manager > > It's in there somewhere, I used it a couple of days ago (not in > a position to run KDE at moment otherwise I would check for you) Thanks for the response, Cliff. I haven't been able to find the settings that you speak of, or any additional settings for that matter. The only setting I've seen so far is to choose the type of print spooler, which I have set to lpd. Any other suggestions? -- Bill Moran Potential Technology technical services http://www.potentialtech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 7:22:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web14604.mail.yahoo.com (web14604.mail.yahoo.com [216.136.224.84]) by hub.freebsd.org (Postfix) with SMTP id 6A9DF37B404 for ; Fri, 25 Jan 2002 07:22:50 -0800 (PST) Message-ID: <20020125152249.55163.qmail@web14604.mail.yahoo.com> Received: from [202.53.253.67] by web14604.mail.yahoo.com via HTTP; Fri, 25 Jan 2002 07:22:49 PST Date: Fri, 25 Jan 2002 07:22:49 -0800 (PST) From: Agus Hariadi Subject: System date time To: questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I have one question about date. why the system date not the same with bios date ? i have a FreeBSD v. 4.4 with AMD Atlhon 1200 Mhz, the system display date & time (with date sintax) can't same with the bios date. Thank's Agoes __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 7:26: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web20109.mail.yahoo.com (web20109.mail.yahoo.com [216.136.226.46]) by hub.freebsd.org (Postfix) with SMTP id A686837B404 for ; Fri, 25 Jan 2002 07:26:06 -0800 (PST) Message-ID: <20020125152603.4269.qmail@web20109.mail.yahoo.com> Received: from [198.135.242.14] by web20109.mail.yahoo.com via HTTP; Fri, 25 Jan 2002 07:26:03 PST Date: Fri, 25 Jan 2002 07:26:03 -0800 (PST) From: FreeBSD Questions Subject: fxp0: SCB timeout errors To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Every few days, my Dell PowerEdge 1550 with integrated dual Intel Pro/100+ NICs (only one of which is plugged in currently) gets VERY slow, with the CPU going to 100% utilized (normally it is around 25-50% utilized) and my "syslogd" process is taking up a lot of processor time, and I get tons of entries in my /var/log/messages file, like this: bob# tail /var/log/messages Jan 23 16:55:12 bob /kernel: fxp0: SCB timeout: 0x70 0x0 0x50 0x0 Jan 23 16:55:12 bob /kernel: fxp0: SCB timeout: 0x80 0x0 0x50 0x0 Jan 23 16:55:13 bob last message repeated 5 times Jan 23 16:55:13 bob /kernel: fxp0: SCB timeout: 0x70 0x0 0x50 0x0 Jan 23 16:55:13 bob /kernel: fxp0: SCB timeout: 0x80 0x0 0x50 0x0 Jan 23 16:55:16 bob last message repeated 29 times Jan 23 16:55:16 bob /kernel: fxp0: SCB timeout: 0x70 0x0 0x50 0x0 Jan 23 16:55:17 bob /kernel: fxp0: SCB timeout: 0x80 0x0 0x50 0x0 Jan 23 16:55:19 bob last message repeated 15 times Jan 23 16:55:19 bob /kernel: fxp0: SCB timeout: 0x70 0x0 0x50 0x0 After a reboot, the system comes up just fine and runs for a few more days without any SCB timeout errors in the log. Then once it happens once, it just gets flooded with these timeouts. Can anyone tell me what might be the problem, or give me some hints on where to start diganosing it? Thanks in advance for your help. Chad __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 7:41: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by hub.freebsd.org (Postfix) with ESMTP id EF6DC37B402 for ; Fri, 25 Jan 2002 07:40:57 -0800 (PST) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id HAA17623; Fri, 25 Jan 2002 07:40:52 -0800 Message-ID: <3C517C84.8030705@owt.com> Date: Fri, 25 Jan 2002 07:40:52 -0800 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Bill Moran Cc: Cliff Sarginson , freebsd-questions@FreeBSD.ORG Subject: Re: Printing problems with KDE References: <02012418440402.07381@proxy.pt.com> <20020125013326.GA1180@raggedclown.net> <02012509452305.07381@proxy.pt.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bill Moran wrote: > On Thursday 24 January 2002 20:33, Cliff Sarginson wrote: > >>On Thu, Jan 24, 2002 at 06:44:04PM -0500, Bill Moran wrote: >> >>>We've got a little office network that consists of some FreeBSD >>>and some Windows computers. >>>One of the FreeBSD computers acts as a print server. It's running >>>4.2-R and printing via lpd works fine. Printing through this print >>>server using Samba from the Win stations works fine as well. lpd printing >>>from a FreeBSD workstation (4.3-R) via the newtork works fine as well. >>>But I can't print anything from KDE, either locally (KDE 2.1) or on the >>>remote station (KDE 2.2). >>>I'm guessing that it's a config problem with KDE, but I can't find much >>>in the way of configuration information to tweak. The FreeBSD lpd >>>printing system seems to be set up just dandy, it's a shame KDE isn't >>>using it. >>>Any advice? >>> >>Look through the menus for something like (off the top of my head) >> >>preferences/system/printing manager >> >>It's in there somewhere, I used it a couple of days ago (not in >>a position to run KDE at moment otherwise I would check for you) >> > > Thanks for the response, Cliff. I haven't been able to find the settings > that you speak of, or any additional settings for that matter. The only > setting I've seen so far is to choose the type of print spooler, which I > have set to lpd. > > Any other suggestions? I had to look because I knew I could print from WordPerfect. The utilities have a "Print Job Administration" and I defined dj1120 from my printcap file as my KDE printer. I open a file and told the advanced editor to print to my W2K server. Since the printcap file for opal, which has a dj970 on it, is almost identical, I would expect it to print there just fine too. Kent > > -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://users.owt.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 7:42:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.the-i-pa.com (mail.the-i-pa.com [151.201.71.132]) by hub.freebsd.org (Postfix) with SMTP id 18A4537B47A for ; Fri, 25 Jan 2002 07:41:56 -0800 (PST) Received: (qmail 45256 invoked from network); 25 Jan 2002 15:46:05 -0000 Received: from unknown (HELO proxy.pt.com) (151.201.71.209) by mail.the-i-pa.com with SMTP; 25 Jan 2002 15:46:05 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Bill Moran Organization: Potential Technology To: Cliff Sarginson , freebsd-questions@freebsd.org Subject: Re: Printing problems with KDE Date: Fri, 25 Jan 2002 10:09:21 -0500 X-Mailer: KMail [version 1.2] References: <02012418440402.07381@proxy.pt.com> <20020125013326.GA1180@raggedclown.net> In-Reply-To: <20020125013326.GA1180@raggedclown.net> MIME-Version: 1.0 Message-Id: <02012510092107.07381@proxy.pt.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday 24 January 2002 20:33, Cliff Sarginson wrote: > On Thu, Jan 24, 2002 at 06:44:04PM -0500, Bill Moran wrote: > > We've got a little office network that consists of some FreeBSD > > and some Windows computers. > > One of the FreeBSD computers acts as a print server. It's running > > 4.2-R and printing via lpd works fine. Printing through this print > > server using Samba from the Win stations works fine as well. lpd printing > > from a FreeBSD workstation (4.3-R) via the newtork works fine as well. > > But I can't print anything from KDE, either locally (KDE 2.1) or on the > > remote station (KDE 2.2). > > I'm guessing that it's a config problem with KDE, but I can't find much > > in the way of configuration information to tweak. The FreeBSD lpd > > printing system seems to be set up just dandy, it's a shame KDE isn't > > using it. > > Any advice? > > -- > > Look through the menus for something like (off the top of my head) > > preferences/system/printing manager > > It's in there somewhere, I used it a couple of days ago (not in > a position to run KDE at moment otherwise I would check for you) For the archives ... The solution was pretty simple. I installed magicfilter from the packages collection, and apparently ghostscript is not a required dependency. Command line printing worked fine because it wasn't using gs as a filter for simple text files, but it seems that KDE prints everything in Postscript. So I installed Ghostscript and all is well. Perhaps a heads-up to the port maintainer is in order, that ghostscript should be a dependency of magicfilter? -- Bill Moran Potential Technology technical services http://www.potentialtech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 7:49:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 9C1F037B404 for ; Fri, 25 Jan 2002 07:49:31 -0800 (PST) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) with ESMTP id g0PFnIw94711; Fri, 25 Jan 2002 10:49:18 -0500 (EST) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 25 Jan 2002 10:49:17 -0500 (EST) From: Joe Clarke To: Bernie Cc: FreeBSD User Questions List Subject: Re: gnomecore problem... In-Reply-To: <20020125080206.Y1129-100000@BLAST> Message-ID: <20020125104912.S80016-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 25 Jan 2002, Bernie wrote: > > > On Thu, 24 Jan 2002, Joe Clarke wrote: > > > > > > > On Thu, 24 Jan 2002, Bernie wrote: > > > > > > > > > > > thank you so much for your help on this. > > > > > > i did upgrade both pixbuf and gnomecanvas. i'm not sure > > > which one did it, but when i tried gnomecore, it compiled > > > and installed ok. > > > > > > also, glade now compiles ok, just upgraded it, so does > > > xmms, playing orbital right now :-) > > > > > > the only thing i'm getting when trying to do a pkgdb -F > > > after installation is: > > > > > > Cyclic dependencies: gnomecore-1.4.0.4_3 -> gnomecontrolcenter-1.4.0.1 -> > > > (gnomecore-1.4.0.4_3) > > > Unlink which dependency? (? to help): > > > > > > the help isnt very comprehensive on this one and i realy don't want to > > > make a mistake here after all these efforts to make it work... > > > > > > i think that gnomecontrolcenter-1.4.0.1 is the one to unlink. Can > > > you confirm if this is right? > > > > I think I saw mention of a cyclic dependency problem with GNOME on > > gnome@. This might be a problem with portupgrade. What version of > > portupgrade are you using? > > > pkg_info shown i got this one: > > portupgrade-20020103 > > it's recent, but there is a newer in the ports. you think i should > upgrade it? Yes. Joe > > > > > > Joe > > > > > > > > Thanks again for all your help. > > > > > > Regards, > > > > > > --Bernie > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 7:55:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mcqueen.wolfsburg.de (pns.wobline.de [212.68.68.5]) by hub.freebsd.org (Postfix) with ESMTP id 1FC0D37B402 for ; Fri, 25 Jan 2002 07:55:03 -0800 (PST) Received: from colt.ncptiddische.net (ppp-124.wobline.de [212.68.69.132]) by mcqueen.wolfsburg.de (8.11.3/8.11.3/tw-20010821) with ESMTP id g0PFsua18270 for ; Fri, 25 Jan 2002 16:54:56 +0100 Received: from tisys.org (poison.ncptiddische.net [192.168.0.5]) by colt.ncptiddische.net (8.11.6/8.11.6) with ESMTP id g0PFt6X19199 for ; Fri, 25 Jan 2002 16:55:06 +0100 (CET) (envelope-from nils@tisys.org) Received: (from nils@localhost) by tisys.org (8.11.6/8.11.6) id g0PFste77951 for freebsd-questions@freebsd.org; Fri, 25 Jan 2002 16:54:55 +0100 (CET) (envelope-from nils) Date: Fri, 25 Jan 2002 16:54:20 +0100 From: Nils Holland To: freebsd-questions@freebsd.org Subject: Stry IRQs Message-ID: <20020125165420.A77931@tisys.org> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-Operating-System: FreeBSD poison.ncptiddische.net 4.5-RC FreeBSD 4.5-RC X-Machine-Uptime: 4:49PM up 6:01, 1 user, load averages: 0.01, 0.08, 0.07 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi folks, well, I noticed the following today: A few years back, I had a HP Deskjet printer connected to a DFI-mobo based AMD K6-2 system. When I printed on that system, I received a lot of "Stray IRQ 7" messages, IRQ 7 being the IRQ assigned to the parallel port. Last year, I moved the printer to a Chaintech-mobo based Athlon system. I used the same cable to connect it and set the parallel port-related settings on that machine the same ways as I set them on my K6-2 machine. Still, I did not receive any more "Stray IRQ" messages on this new system. Today, I moved my printer to an Epox-mobo based Athlon system, again with the same cable and pp-related BIOS settings. And now, who knows why, my stray IRQs are back! I can say that these messages do not have any impact on computer or printer performance, but I'm wondering why they are there on my DFI and Epox boards, but not on my Chaintech board, even though it's the same printer with the same cable and the same parallel port BIOS (and kernel) settings. Any clues? Greetings Nils -- Nils Holland Ti Systems - FreeBSD in Tiddische, Germany http://www.tisys.org * nils@tisys.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 7:56:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-4.ig.com.br (smtp-4.ig.com.br [200.226.132.153]) by hub.freebsd.org (Postfix) with SMTP id BFFC037B428 for ; Fri, 25 Jan 2002 07:56:12 -0800 (PST) Received: (qmail 29252 invoked from network); 25 Jan 2002 15:55:58 -0000 Received: from 200-206-166-221.dsl.telesp.net.br (HELO servidor) (200.206.166.221) by smtp-4.ig.com.br with SMTP; 25 Jan 2002 15:55:58 -0000 Message-ID: <001101c1a5b8$c8ea7a60$0700a8c0@servidor> From: "Agressor" To: , Subject: System Crash with a floppy disk Date: Fri, 25 Jan 2002 13:55:55 -0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I´m using a FreeBSD 4.4 Release and I find a problem using floppy disks. Put a MS-DOS floppy write-protected in the drive, and execute as root this commands. # mount -t msdos /dev/fd0 /mnt/fd0 # cd /mnt/fd0 # ls file1 file2 # mv file* /tmp (Some errors are reported) # ls The system crash now. The mount_msdos command don´t check the write-protection on the disk, and accept mount the disk whitch rw mode. What is the problem??? I made something wrong, but the system would have to tell the error, and not to stop. Thanks and excuse-me by my poor English :) Renato T Sanches - FreeBSD User - Brazil To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 8:17:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.mx.pitdc1.stargate.net (smtp1.mx.pitdc1.stargate.net [206.210.69.141]) by hub.freebsd.org (Postfix) with SMTP id 4E36037B400 for ; Fri, 25 Jan 2002 08:17:24 -0800 (PST) Received: (qmail 57 invoked from network); 24 Jan 2002 23:44:48 -0000 Received: from dap-209-166-135-214.nfas.greensburg-tnt-1.sns234.pa.stargate.net (HELO wastegate.net) (209.166.135.214) by smtp1.mx.pitdc1.stargate.net with SMTP; 24 Jan 2002 23:44:48 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id 979AB48449; Thu, 24 Jan 2002 18:45:14 -0500 (EST) From: "Doug Reynolds" To: "FBSD Questions" , "Joe & Fhe Barbish" Date: Thu, 24 Jan 2002 18:47:18 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: can Apache_FP run without a real domain web address? Message-Id: <20020124234514.979AB48449@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 24 Jan 2002 18:36:44 -0500, Joe & Fhe Barbish wrote: >I installed apache13-fp today from ports. >during first reboot I got this msg. >'could not determine the servers fully qualified domain name, >using 127.0.0.1 for server name. Apache not started.' > >I do not have a real domain name so in hosts file I added the >(www domain com) I told apache to use to the IP address of >my Nic card. Then rebooted and got a new msg. >"local package init: /usr/local/sbin/ apachectl start_FP: >httpd could not be started". > >I don't know if this is still related to the original problem so >I am asking can Apache_FP run without a real public domain web address? try looking in the /var/log/httpd-errors.log that'll give you a hint as why it is not starting now.. you dont need to tell apache to use a certain address. at least i didn't. --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 8:19:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe9.pav2.hotmail.com [64.4.36.113]) by hub.freebsd.org (Postfix) with ESMTP id 7DC2D37B416 for ; Fri, 25 Jan 2002 08:19:38 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 25 Jan 2002 08:19:38 -0800 X-Originating-IP: [199.45.167.74] From: "dseeger" To: Subject: fsck Date: Fri, 25 Jan 2002 07:52:17 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Message-ID: X-OriginalArrivalTime: 25 Jan 2002 16:19:38.0300 (UTC) FILETIME=[15E74FC0:01C1A5BC] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG when running fsck -p I get "NO write Access" and then "unexpected incositancies" is this because of other processes running - or do i really have a permission problem thanks Don To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 8:22:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id 35D7837B402 for ; Fri, 25 Jan 2002 08:22:40 -0800 (PST) Received: (from dan@localhost) by dan.emsphone.com (8.11.6/8.11.6) id g0PGMZC69625; Fri, 25 Jan 2002 10:22:35 -0600 (CST) (envelope-from dan) Date: Fri, 25 Jan 2002 10:22:35 -0600 From: Dan Nelson To: dseeger Cc: freebsd-questions@FreeBSD.ORG Subject: Re: fsck Message-ID: <20020125162235.GP87583@dan.emsphone.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.25i X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In the last episode (Jan 25), dseeger said: > when running fsck -p I get "NO write Access" and then "unexpected > incositancies" > > is this because of other processes running - or do i really have a > permission problem You should only run fsck on unmounted volumes, or read-only volumes in single-user mode. Don't run it after the system has come up. -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 8:25:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id 72EEB37B402 for ; Fri, 25 Jan 2002 08:25:31 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id KAA28055; Fri, 25 Jan 2002 10:25:25 -0600 (CST) Message-Id: <3.0.5.32.20020125102521.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Fri, 25 Jan 2002 10:25:21 -0600 To: "dseeger" , From: jacks@sage-american.com Subject: Re: fsck In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I usually get that error when I haven't booted into single user, #boot -s At 07:52 AM 1.25.2002 -0700, dseeger wrote: >when running fsck -p I get "NO write Access" and then "unexpected >incositancies" > >is this because of other processes running - or do i really have a >permission problem > >thanks > >Don > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 8:27:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.the-i-pa.com (mail.the-i-pa.com [151.201.71.132]) by hub.freebsd.org (Postfix) with SMTP id 9F7B637B400 for ; Fri, 25 Jan 2002 08:27:26 -0800 (PST) Received: (qmail 45646 invoked from network); 25 Jan 2002 16:31:35 -0000 Received: from unknown (HELO proxy.pt.com) (151.201.71.209) by mail.the-i-pa.com with SMTP; 25 Jan 2002 16:31:35 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Bill Moran Organization: Potential Technology To: Dan Nelson Subject: Re: fsck Date: Fri, 25 Jan 2002 10:54:51 -0500 X-Mailer: KMail [version 1.2] Cc: freebsd-questions@FreeBSD.ORG References: <20020125162235.GP87583@dan.emsphone.com> In-Reply-To: <20020125162235.GP87583@dan.emsphone.com> MIME-Version: 1.0 Message-Id: <02012510545108.07381@proxy.pt.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday 25 January 2002 11:22, Dan Nelson wrote: > In the last episode (Jan 25), dseeger said: > > when running fsck -p I get "NO write Access" and then "unexpected > > incositancies" > > > > is this because of other processes running - or do i really have a > > permission problem > > You should only run fsck on unmounted volumes, or read-only volumes in > single-user mode. Don't run it after the system has come up. This question seems to come up rather often. Should fsck refuse to start if it's being run on a mounted volume? Possibly with an error like "Please unmount /dev/ad?s1? before running fsck"? Or is there a reason why such behaviour would be undesirable? -- Bill Moran Potential Technology technical services http://www.potentialtech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 8:32:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from relay05.indigo.ie (relay05.indigo.ie [194.125.133.229]) by hub.freebsd.org (Postfix) with SMTP id 7EE9B37B402 for ; Fri, 25 Jan 2002 08:32:49 -0800 (PST) Received: (qmail 1557 messnum 1197544 invoked from network[194.196.39.50/outbound-pat-address.lotus.co.uk]); 25 Jan 2002 16:32:48 -0000 Received: from outbound-pat-address.lotus.co.uk (HELO localhost.localdomain) (194.196.39.50) by relay05.indigo.ie (qp 1557) with SMTP; 25 Jan 2002 16:32:48 -0000 Content-Type: text/plain; charset="iso-8859-1" From: keithmcd@indigo.ie To: questions@freebsd.org Subject: /usr/libexec/ld-elf.so.1: Shared object "libssl.so.2" not found Date: Fri, 25 Jan 2002 16:30:28 -0500 X-Mailer: KMail [version 1.2] Cc: newbies@freebsd.org MIME-Version: 1.0 Message-Id: <02012516302800.01311@localhost.localdomain> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all , Does anyone out there recognise this error ? /usr/libexec/ld-elf.so.1: Shared object "libssl.so.2" not found I have installed 4.2-release & crypto distribution . What must I do to fix the problem ? Any help / *pointers greatly appreciated . Regards , kmcd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 8:54:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by hub.freebsd.org (Postfix) with ESMTP id 07C7A37B41B; Fri, 25 Jan 2002 08:54:09 -0800 (PST) Received: from localhost (marck@localhost) by woozle.rinet.ru (8.11.6/8.11.6) with ESMTP id g0PGrnF29312; Fri, 25 Jan 2002 19:53:55 +0300 (MSK) (envelope-from marck@rinet.ru) Date: Fri, 25 Jan 2002 19:53:49 +0300 (MSK) From: Dmitry Morozovsky To: David McNett Cc: Petar Forai , , Subject: Re: 4.5/SMP clock drifting In-Reply-To: <20020123225433.GA63096@dazed.slacker.com> Message-ID: <20020125195231.U69684-100000@woozle.rinet.ru> X-NCC-RegID: ru.rinet MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 23 Jan 2002, David McNett wrote: DM> You should instead look at using ntpd (it's in the base install) which DM> will accurately track and account for the hardware drift unlike your DM> ntpdate solution. DM> DM> Set up an /etc/ntp.conf file with: DM> DM> server timeserver1.domain.com DM> server timeserver2.otherdomain.com DM> DM> driftfile /var/run/ntpd.drift Hmm, I think then driftfile will be removed on every reboot, which is not very useful. So, I create it at /var/spool/ntp.drift for our machines Sincerely, D.Marck [DM5020, DM268-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 9: 3:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from dns2.s.bonet.se (dns2.s.bonet.se [212.181.54.3]) by hub.freebsd.org (Postfix) with ESMTP id CEF7C37B416 for ; Fri, 25 Jan 2002 09:03:30 -0800 (PST) Received: from there (as9-2-1.bi.s.bonet.se [217.215.7.177]) by dns2.s.bonet.se (8.11.2/8.9.3) with SMTP id g0PGvJU27597 for ; Fri, 25 Jan 2002 17:57:20 +0100 (CET) (envelope-from peo@intersonic.se) Message-Id: <200201251657.g0PGvJU27597@dns2.s.bonet.se> Content-Type: text/plain; charset="iso-8859-1" From: Per olof Ljungmark Organization: Intersonic AB To: freebsd-questions@FreeBSD.ORG Subject: auth_ldap Date: Fri, 25 Jan 2002 18:03:28 +0100 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Does anybody here know the right procedure for building and installing the auth_ldap Apache module on FreeBSD? If I do a 'make install clean' in the ports tree Apache refuses to start: Cannot load /usr/local/libexec/apache/auth_ldap.so into server: /usr/local/libexec/apache/auth_ldap.so: Undefined symbol "ldap_get_dn" Also, during configuration, I noted the following "no's" from configure: creating cache ./config.cache checking for apxs... apxs checking whether apxs works... yes checking for ber_init in -llber... no < checking for ldap_init in -lldap... no < checking how to run the C preprocessor... cc -E checking for ANSI C header files... yes checking for working const... yes checking for vprintf... yes checking for strdup... yes checking for strerror... yes updating cache ./config.cache creating ./config.status creating Makefile This is FreeBSD 4.5-RC Thanks, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 9: 4:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from io.88.net (209-9-230-109.sdsl.cais.net [209.9.230.109]) by hub.freebsd.org (Postfix) with ESMTP id 4E34737B404 for ; Fri, 25 Jan 2002 09:04:09 -0800 (PST) Received: from zog.net (localhost [127.0.0.1]) by io.88.net (Postfix) with ESMTP id EE7391ED for ; Fri, 25 Jan 2002 17:03:59 +0000 (GMT) Message-ID: <3C519F20.2050609@zog.net> Date: Fri, 25 Jan 2002 18:08:32 +0000 From: John Morgan Salomon User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.7) Gecko/20020113 X-Accept-Language: en-us MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Volume Problems with Crystal CS4281 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi there, I am running FreeBSD 4.4-R on a Thinkpad x20. The beast has a Crystal CS4281 sound card, on which I cannot get the volume beyond "barely audible." The card is detected, there are no timing problems with any format file, I have tried running mpg123 and xmms via esd and oss, as well as SoX/play for .wav and .au. The physical volume controls on the laptop itself, as well as the volume controls on the applications don't change a thing. I have all the requisite devices (pcm and friends) and the following entries in my kernel config: # Sound driver - We think ThinkPad have a Crystal card in them #device pcm0 at isa? irq 10 drq 1 flags 0x0 device pcm # Crystal Semiconductor cards device csa0 /dev/sndstat tells me: FreeBSD Audio Driver (newpcm) Sep 24 2001 02:37:01 Installed devices: pcm0: at memory 0xf4012000 irq 11 (1p/1r/0v channels duplex) I get no syslog errors, no output whatsoever. I guess the system thinks everything is running just fine, as it's able to play sound, however quiet. My entire dmesg output is attached below (yes I know things need a bit of cleaning up) Your kind help and tips are very much appreciated, as I have been trying to figure this out for an age! -John ------ Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.4-RELEASE #7: Tue Oct 9 22:56:12 GMT 2001 root@bolo.zog.net:/usr/src/sys/compile/thinkpad Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (597.41-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 201261056 (196544K bytes) config> di sn0 No such device: sn0 Invalid command or syntax. Type `?' for help. config> di lnc0 No such device: lnc0 Invalid command or syntax. Type `?' for help. config> di ie0 No such device: ie0 Invalid command or syntax. Type `?' for help. config> di fe0 No such device: fe0 Invalid command or syntax. Type `?' for help. config> di ed0 No such device: ed0 Invalid command or syntax. Type `?' for help. config> di cs0 No such device: cs0 Invalid command or syntax. Type `?' for help. config> di bt0 No such device: bt0 Invalid command or syntax. Type `?' for help. config> di aic0 No such device: aic0 Invalid command or syntax. Type `?' for help. config> di aha0 No such device: aha0 Invalid command or syntax. Type `?' for help. config> di adv0 No such device: adv0 Invalid command or syntax. Type `?' for help. config> q avail memory = 191778816 (187284K bytes) Preloaded elf kernel "kernel" at 0xc03fa000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc03fa09c. Pentium Pro MTRR support enabled md0: Malloc disk Using $PIR table, 11 entries at 0xc00fdee0 apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x1800-0x180f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0x1820-0x183f irq 11 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered chip1: port 0x1040-0x104f at device 7.3 on pci0 pcic0: mem 0x50000000-0x50000fff irq 11 at device 8.0 on pci0 pccard0: on pcic0 pcic1: mem 0x50100000-0x50100fff irq 11 at device 8.1 on pci0 pccard1: on pcic1 fxp0: port 0x1840-0x187f mem 0xf4020000-0xf403ffff,0xf4010000-0xf4010fff irq 11 at device 10.0 on pci0 fxp0: Ethernet address 00:10:a4:a6:63:4c inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pci0: (vendor=0x115d, dev=0x000c) at 10.1 irq 11 pcm0: mem 0xf4000000-0xf400ffff,0xf4012000-0xf4012fff irq 11 at device 11.0 on pci0 orm0:
HI folks,
 
I`ve a question about the integration = of some=20 FreeBSD-Features and (or) source code in Mac OS X:
 
Is it in the term the BSD licenses = legal to use=20 those featues in a system, that isn`t Open Source or is distributed = (like OS X)=20 without Source! OK, there are all those Copyright Notices about FreeBSD = in OS X,=20 but does that meet it! I mean, can any development company come and say = "Well,=20 I`d like to use the Ports System in my Closed Source System" or is that=20 restricted?
 
I think, it`s OK, that the Ports have = been ported=20 to Darwin, cause it`s Open Source, but would it be OK, if it would be = ported to=20 OS X?
 
I hope you could help me! And, guys, = fine work=20 you`re doing!
 
Thomas
------=_NextPart_000_004A_01C1A5D3.4A9473D0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 10:12:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.22.40]) by hub.freebsd.org (Postfix) with ESMTP id 35A7637B402 for ; Fri, 25 Jan 2002 10:12:42 -0800 (PST) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.11.3/8.11.3) with ESMTP id g0PICQd101776; Fri, 25 Jan 2002 13:12:26 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <5.1.0.14.0.20020125111830.00a8d828@postoffice.swbell.net> References: <5.1.0.14.0.20020125111830.00a8d828@postoffice.swbell.net> Date: Fri, 25 Jan 2002 13:12:25 -0500 To: "Sean O'Neill" , freebsd-questions@FreeBSD.ORG From: Garance A Drosihn Subject: Re: New to FreeBSD and have a ports availability (subversion) question Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: MIMEDefang 2.3 (www dot roaringpenguin dot com slash mimedefang) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 11:25 AM -0600 1/25/02, Sean O'Neill wrote: >I recently started using FreeBSD 4.4 - so far love it. On this >FreeBSD machine, I want to start playing with Subversion but it >requires libtool 1.4.2. The ports tree is still at 1.3.4_2. But I >noticed in the freebsd-ports mail archive that a patch has been >submitted and closed >for 1.4.2. My cvsup isn't picking anything up for 1.4.2 and CVSWEB is >still showing 1.3.2. > >What am I missing here ? Subversion is still in the early phases of development, and as such it was felt (by the subversion developers) that it was a little too early to have an official port in the freebsd ports tree. If you follow the subversion-development mailing-list, you'll see that there is an unofficial freeBSD port available. Here is a recent message about it: Date: Wed, 16 Jan 2002 19:40:41 -0500 From: Garrett Rooney Subject: Subversion 0.8 FreeBSD port an updated FreeBSD port for Subversion 0.8 is now available, either from the svn repository, or from the usual location at: http://electricjellyfish.net/subversion.tar.gz -- garrett rooney Unix was not designed to stop you from rooneg@electricjellyfish.net doing stupid things, because that would http://electricjellyfish.net/ stop you from doing clever things. I hope this helps. (For those wondering what subversion is, it's meant as an alternative to 'cvs' for source-code management. It looks very promising, imo) -- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 10:15:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tharmas.rintrah.org (dhcp065-031-016-002.insight.rr.com [65.31.16.2]) by hub.freebsd.org (Postfix) with SMTP id 7964637B402 for ; Fri, 25 Jan 2002 10:15:22 -0800 (PST) Received: (qmail 12033 invoked by uid 1000); 25 Jan 2002 18:17:59 -0000 Date: Fri, 25 Jan 2002 13:17:59 -0500 From: devin-freebsdquestions@rintrah.org To: Chris Scott Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD and OS X! Message-ID: <20020125131759.A5099@tharmas.rintrah.org> Mail-Followup-To: Chris Scott , freebsd-questions@freebsd.org References: <004d01c1a5ca$ed2e83f0$49482e3e@aquarius> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <004d01c1a5ca$ed2e83f0$49482e3e@aquarius>; from chris_scott@gmx.de on Fri, Jan 25, 2002 at 07:05:44PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 07:05:44PM +0100, Chris Scott wrote: > HI folks, > > I`ve a question about the integration of some FreeBSD-Features and (or) source code in Mac OS X: > > Is it in the term the BSD licenses legal to use those featues in a system, that isn`t Open Source or is distributed (like OS X) without Source! Yes, it is legal. To piss on it if you want (to steal Theo de Raadt's line). >OK, there are all those Copyright Notices about FreeBSD in OS X, but does that meet it! Perhaps you are thinking of the GPL? (http://www.gnu.org) > I mean, can any development company come and say "Well, I`d like to use the Ports System in my Closed Source System" or is that restricted? Yes. No. > > I think, it`s OK, that the Ports have been ported to Darwin, cause it`s Open Source, but would it be OK, if it would be ported to OS X? Yes. > > I hope you could help me! And, guys, fine work you`re doing! > > Thomas -- Mathematicians are like Frenchmen: whatever you say to them they translate into their own language, and forthwith it is something entirely different. -- Johann Wolfgang von Goethe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 10:40:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web11008.mail.yahoo.com (web11008.mail.yahoo.com [216.136.131.58]) by hub.freebsd.org (Postfix) with SMTP id 44F5B37B400 for ; Fri, 25 Jan 2002 10:40:32 -0800 (PST) Message-ID: <20020125184032.91313.qmail@web11008.mail.yahoo.com> Received: from [202.87.124.10] by web11008.mail.yahoo.com via HTTP; Fri, 25 Jan 2002 10:40:32 PST Date: Fri, 25 Jan 2002 10:40:32 -0800 (PST) From: faisal gillani Subject: Re: directory services for unix To: Mike Makonnen Cc: questions@FreeBSD.ORG In-Reply-To: <200201251127.g0PBRjX18762@blackbox.pacbell.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG can you name a few or the most popular one ? --- Mike Makonnen wrote: > On Fri, 25 Jan 2002 03:00:26 -0800 (PST) > faisal gillani wrote: > > > Well i wanted to know what is the most popular or > in > > other words is there any directory services > present > > for Freebsd that i can use to replace active > directory > > in win2000 ? > > There's none in the base system, but there are a few > LDAP > implementations in the Ports tree. > > > cheers, > mike makonnen __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11: 0:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web21210.mail.yahoo.com (web21210.mail.yahoo.com [216.136.175.253]) by hub.freebsd.org (Postfix) with SMTP id BEBD137B42B for ; Fri, 25 Jan 2002 11:00:15 -0800 (PST) Message-ID: <20020125190013.23955.qmail@web21210.mail.yahoo.com> Received: from [24.100.124.207] by web21210.mail.yahoo.com via HTTP; Sat, 26 Jan 2002 03:00:13 CST Date: Sat, 26 Jan 2002 03:00:13 +0800 (CST) From: =?iso-8859-1?q?adrian=20kok?= Subject: number of users To: questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all What is the best method to know how many users in our servers? If it is from /etc/passwd, how do I count it? Thank you _______________________________________________________________________ Do You Yahoo!? Get your free @yahoo.com.hk address at http://mail.english.yahoo.com.hk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11: 7:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from www.jpecservices.com (ns1.jpecservices.com [209.190.247.104]) by hub.freebsd.org (Postfix) with SMTP id 1C6F737B404 for ; Fri, 25 Jan 2002 11:07:36 -0800 (PST) Received: (qmail 22076 invoked from network); 25 Jan 2002 19:07:35 -0000 Received: from pc36-128.hua.army.mil (HELO admin7) (150.180.36.85) by www.jpecservices.com with SMTP; 25 Jan 2002 19:07:35 -0000 Message-ID: <01ba01c1a5d3$6a89c1e0$5524b496@admin7> Reply-To: "Eric Jones (Contractor)" From: "Eric Jones (Contractor)" To: Subject: Error after installing PHP 4.1.1 --apache+mod_ssl-1.3.22+2.8.5_4 Date: Fri, 25 Jan 2002 12:06:34 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_01B3_01C1A598.BB5FE300" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_01B3_01C1A598.BB5FE300 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hey all, I just compiled and installed PHP 4.1.1 PostGreSQL 7.x TCL 8.3.4 and TK = 8.3.4 on to my server. I'm running the following Freebsd Apache Port: apache+mod_ssl-1.3.22+2.8.5_4 The Apache 1.3 webserver with SSL/TLS functionality My problem is that when I reboot my server or try to start httpd I get = the following error: Cannot load /usr/local/libexec/apache/libphp4.so into server: /usr/local/libexec/apache/libphp4.so: Undefined symbol "X509_free" and when I do a locate X509: su-2.05# locate X509 /usr/src/crypto/openssl/doc/ssl/SSL_get_ex_data_X509_STORE_CTX_idx.pod Also i find this when Greping the /usr/local/libexec/apache directory su-2.05# cd /usr/local/libexec/apache su-2.05# grep X509_free * Binary file libphp4.so matches Binary file libssl.so matches su-2.05#=20 Any ideas? Eric Jones (Contractor) Pager: 520-459-9515 Temp Phone: 520-533-6628 Temp E-mail: hua-eric@jpecservices.com ********************** NOTICE ********************** This e-mail account is being hosted on a=20 server that is NOT on the FT. Huachuca network. This server is not an approved DOD device and is in no way, shape or form associated with the DOD. This e-mail account is not secure and is only in=20 place as a temporary POC. ********************** NOTICE ********************** ------=_NextPart_000_01B3_01C1A598.BB5FE300 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hey all,
 
I just compiled and installed PHP 4.1.1 = PostGreSQL=20 7.x TCL 8.3.4 and TK 8.3.4 on to my server.
 
I'm running the following Freebsd = Apache=20 Port:
 
apache+mod_ssl-1.3.22+2.8.5_4 The Apache 1.3 webserver with=20 SSL/TLS
functionality
My problem is that when I reboot my = server or try=20 to start httpd I get the following error:
 
Cannot load /usr/local/libexec/apache/libphp4.so into=20 server:
/usr/local/libexec/apache/libphp4.so: Undefined symbol=20 "X509_free"

and when I do a locate=20 X509:

su-2.05# locate=20 X509
/usr/src/crypto/openssl/doc/ssl/SSL_get_ex_data_X509_STORE_CTX_id= x.pod
 
Also i find this when Greping the /usr/local/libexec/apache=20 directory
su-2.05# cd /usr/local/libexec/apache
su-2.05# grep X509_free=20 *
Binary file libphp4.so matches
Binary file libssl.so = matches
su-2.05#=20
 
Any ideas?

Eric Jones (Contractor)
Pager: 520-459-9515
Temp Phone:=20 520-533-6628
Temp E-mail: hua-eric@jpecservices.com
 
********************** NOTICE **********************
This e-mail = account=20 is being hosted on a
server that is NOT on the FT. Huachuca = network.
 
This server is not an approved DOD device and
is in no way, = shape or=20 form associated with the
DOD.
 
This e-mail account is not secure and is only in
place as a = temporary=20 POC.
********************** NOTICE=20 **********************
------=_NextPart_000_01B3_01C1A598.BB5FE300-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11:12:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from vvi.com (vvionly.penn.com [208.22.30.250]) by hub.freebsd.org (Postfix) with ESMTP id A526137B402 for ; Fri, 25 Jan 2002 11:12:54 -0800 (PST) Received: from [206.229.112.1] (HELO vvih001) by vvi.com (CommuniGate Pro SMTP 3.5) with ESMTP id 670111; Fri, 25 Jan 2002 14:16:35 -0500 Date: Fri, 25 Jan 2002 14:16:34 -0500 Subject: Re: number of users Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v472) Cc: questions@FreeBSD.ORG To: adrian kok From: Lance Bland In-Reply-To: <20020125190013.23955.qmail@web21210.mail.yahoo.com> Message-Id: <0C288440-11C8-11D6-A67C-0030659A531A@vvi.com> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.472) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday, January 25, 2002, at 02:00 PM, adrian kok wrote: > What is the best method to know how many users in our > servers? Open up the top of the computer, look in and count them. > > If it is from /etc/passwd, how do I count it? Make them go to /tmp/users one at a time and count them as they enter. You shouldn't let users in your computer because they might trip on a wire or something. If you just want to know how many are logged in then "finger" might work. or you might want to use "last", or "ac -p" The answer really depends on what the word "in" means. -lance _______________________________________________ Lance Bland System Administrator at VVI mailto:lance.bland@vvi.com http://www.vvi.com Realtime, bulk and web data reporting and visualization To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11:18:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fia168-94.dsl.hccnet.nl (fia168-94.dsl.hccnet.nl [62.251.94.168]) by hub.freebsd.org (Postfix) with ESMTP id 370B237B400 for ; Fri, 25 Jan 2002 11:18:26 -0800 (PST) Received: by fia168-94.dsl.hccnet.nl (Postfix, from userid 1000) id 4496E68; Fri, 25 Jan 2002 20:18:28 +0100 (CET) Content-Type: text/plain; charset="iso-8859-15" From: Simon Siemonsma To: igorr@speechpro.com Subject: Re: Fwd: Re: java in 4.5? Date: Fri, 25 Jan 2002 20:18:27 +0100 X-Mailer: KMail [version 1.3.2] References: <20020124184006.67A66337@fia168-94.dsl.hccnet.nl> <20020125074338.GB72464@sysadm.stc> In-Reply-To: <20020125074338.GB72464@sysadm.stc> Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020125191828.4496E68@fia168-94.dsl.hccnet.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday 25 January 2002 08:43, you wrote: > On Thu, Jan 24, 2002 at 07:40:05PM +0100, Simon Siemonsma wrote: > > I think he referred to the fact that FreeBSD is getting an official Java > > licency from Sun. As far as I know that is delayed and will not be in > > 4.5. Again as far as I know in the ports you have Linux versions of Java, > > or some strange construction with a native Java. > > Why do you call it "strange"? Native JDK works fine. I have setup > Jetty and Tomcat with it. Also I have downloaded J2EE from Sun and it > works. With ports you normally just type make install in the ports directory and it installs. As far as I understood it is different with the Java port. That is way I used the word strange, because it is different from the other ports. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11:24:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from drex.staff.izr.com (drex.staff.izr.com [195.26.33.16]) by hub.freebsd.org (Postfix) with ESMTP id 5E8CC37B41B for ; Fri, 25 Jan 2002 11:24:46 -0800 (PST) Received: by drex.staff.izr.com (Postfix, from userid 1001) id A8A20337AA; Fri, 25 Jan 2002 19:24:44 +0000 (GMT) Date: Fri, 25 Jan 2002 19:24:44 +0000 From: Mark Drayton To: Lance Bland Cc: adrian kok , questions@FreeBSD.ORG Subject: Re: number of users Message-ID: <20020125192444.A3916@drex.staff.izr.com> References: <20020125190013.23955.qmail@web21210.mail.yahoo.com> <0C288440-11C8-11D6-A67C-0030659A531A@vvi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <0C288440-11C8-11D6-A67C-0030659A531A@vvi.com>; from lbland@vvi.com on Fri, Jan 25, 2002 at 02:16:34PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Lance Bland (lbland@vvi.com) wrote: [..snip..] > If you just want to know how many are logged in then "finger" might > work. or you might want to use "last", or "ac -p" Original poster: these methods will show how many users are currently logged in. The following will tell you have many user accounts you have with a UID > 1000 (ie non-system accounts): grep -v '^#' /etc/passwd | awk -F: '{ if ($3 > 1000) print $0 }' | wc -l eg: === mark@mir:~$ grep -v '^#' /etc/passwd | awk -F: '{ if ($3 > 1000) print $0 }' | wc -l 5 Cheers, -- Mark Drayton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11:32:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r02.mx.aol.com (imo-r02.mx.aol.com [152.163.225.98]) by hub.freebsd.org (Postfix) with ESMTP id D4A6837B404 for ; Fri, 25 Jan 2002 11:32:41 -0800 (PST) Received: from TD790@aol.com by imo-r02.mx.aol.com (mail_out_v31_r1.26.) id y.81.1687a364 (4330); Fri, 25 Jan 2002 14:32:01 -0500 (EST) From: TD790@aol.com Message-ID: <81.1687a364.29830cb1@aol.com> Date: Fri, 25 Jan 2002 14:32:01 EST Subject: Re: 64-bit PCI mobos To: joerg@cs.waikato.ac.nz Cc: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: AOL 5.0 for Windows sub 139 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In a message dated 01/24/2002 6:10:55 PM Eastern Standard Time, joerg@cs.waikato.ac.nz writes: > On Sun, Jan 20, 2002 at 10:13:18PM -0500, John Von Essen wrote: > > I would recommend the TYAN 2518 with ServerWorks chipset. Supports two > > 64-bit PCI slots, dual Pentium III, 4 Gb RAM, optional Ultra160 SCSI > > onboard. This board works very well with FreeBSD. > > Earlier versions of this motherboard had some reboot problems, at least > with Linux, I believe they have been overcome, partly with a software > patch to it, the newer have a BIOS update (I think). Otherwise, very > nice board. > > Tyan doesnt know how to make stable MBs..they all have power problems (one that we used needed 250W otherwise it would reboot). The Supermicro 370DLE also uses the serverworks chipset and is nicely priced. Note that you cant put a 4 port ethernet card in the first 64bit slot however for reasons beyond the scope of this list.. Dennis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11:32:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from vvi.com (vvionly.penn.com [208.22.30.250]) by hub.freebsd.org (Postfix) with ESMTP id ABCB637B402 for ; Fri, 25 Jan 2002 11:32:40 -0800 (PST) Received: from [206.229.112.1] (HELO vvih001) by vvi.com (CommuniGate Pro SMTP 3.5) with ESMTP id 670122; Fri, 25 Jan 2002 14:36:21 -0500 Date: Fri, 25 Jan 2002 14:36:21 -0500 Subject: Re: number of users Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v472) Cc: adrian kok , questions@FreeBSD.ORG To: Mark Drayton From: Lance Bland In-Reply-To: <20020125192444.A3916@drex.staff.izr.com> Message-Id: Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.472) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday, January 25, 2002, at 02:24 PM, Mark Drayton wrote: > Original poster: these methods will show how many users are currently > logged in. no, last and ac -p work from the file: file /var/log/wtmp which accumulates all the login times, past and present. and is for "System Accounting" The user does not have to be logged in to have an entry. -lance _______________________________________________ Lance Bland System Administrator at VVI mailto:lance.bland@vvi.com http://www.vvi.com Realtime, bulk and web data reporting and visualization To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11:36: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.internet.co.nz (mail.internet.co.nz [210.48.22.150]) by hub.freebsd.org (Postfix) with SMTP id 9EA7437B400 for ; Fri, 25 Jan 2002 11:35:51 -0800 (PST) Received: (qmail 7400 invoked by uid 505); 25 Jan 2002 19:34:50 -0000 Received: from g.todd@internet.co.nz by mail.internet.co.nz with qmail-scanner-1.03 (. Clean. Processed in 0.94724 secs); 25 Jan 2002 19:34:50 -0000 Received: from ip-210-48-25-30.asiaonline.net.nz (HELO Hawk) (210.48.25.30) by 0 with SMTP; 25 Jan 2002 19:34:49 -0000 Date: Sat, 26 Jan 2002 08:38:21 +1300 From: Glenn Todd To: "freebsd-questions@FreeBSD.ORG" , Joe Clarke Subject: Re: Cannot start Mozilla (Problem solved) Message-ID: <20020126083821.A536@Hawk.internet.co.nz> Reply-To: g.todd@internet.co.nz References: <20020121211104.A2787@Hawk.internet.co.nz> <20020121105101.N56403-100000@shumai.marcuscom.com> <20020122194457.A442@Hawk.internet.co.nz> <1011682190.27639.3.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit In-Reply-To: <1011682190.27639.3.camel@shumai.marcuscom.com>; from marcus@marcuscom.com on Tue, Jan 22, 2002 at 19:49:49 +1300 X-Mailer: Balsa 1.3.0 Lines: 106 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Joe Your guidance has resolved my problem. Once I removed the Locale settings from my profile Mozilla started as expected. Of note the crrect entry was in /usr/X11R6/lib/mozilla/res/unixcharset.properties, and a check of $LANG after I started Gnome was "en_AU.ISO_8859-1" I do not know where this is being set, however, my system now works so I will leave well enough alone. Thanks for you help Glenn On 2002.01.22 19:49 Joe Clarke wrote: > On Tue, 2002-01-22 at 01:44, Glenn Todd wrote: > > Joe > > > > My locale settings are as follows, they didn't affect the earlier > version > > of mozilla. > > > > > > LC_ALL="en_GB.ISO_8859-1" > > LC_CTYPE="en_GB.ISO_8859-1" > > LANG="en_GB.ISO_8859-1" > > That should be fine in PORTREVISION 2 of Mozilla. However, if you want > to see if you are running into the locale bug, unset all three of the > above variables, and launch Mozilla from the prompt. > > If it starts, you have the locale problem. Verify the following entry > appears in /usr/X11R6/lib/mozilla/res/unixcharset.properties: > > locale.all.en_GB.ISO_8859-1=ISO-8859-1 > > If not, add it, reset your locale variables, then restart Mozilla. If > the entry does appear, you have another problem that we haven't seen > yet. We'll need to do more investigating, and a truss might be needed. > > Joe > > > > > Glenn > > > > > > On 2002.01.22 04:51 Joe Clarke wrote: > > > > > > > > > On Mon, 21 Jan 2002, Glenn Todd wrote: > > > > > > > I have recently updated my ports (portinstall -rR ) > and > > > > have everything in my system as current, but now cannot get Mozilla > to > > > run. > > > > > > > > I can start the initial set up if I remove the .mozilla from my > home > > > > directory however, but cannot get pass the create user as the indow > > > will > > > > not allow me to set or find a directory path for the .mozilla > > > directory. > > > > (it is blank). > > > > > > This could be a problem with your locale setting. What do you have > for > > > LANG or LC_CTYPE? > > > > > > Joe > > > > > > > > > > > As I needed a browser so I resorted to installing galeon. It runs > but > > > its > > > > dialogue windows open with out any text. My guess that I have an > old > > > or > > > > incompatible library somewhere, has anyone experienced a similar > > > situation > > > > and any ideas on the fix. > > > > > > > > Key installs: > > > > > > > > FreeBSD Hawk 4.4-STABLE FreeBSD 4.4-STABLE #0 > > > > mozilla-0.9.7_2,1 > > > > gnome-1.4.1b2_1 > > > > > > > > Glenn > > > > > > > > Wellington, > > > > New Zealand > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11:36:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id CC54937B400 for ; Fri, 25 Jan 2002 11:36:28 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id NAA15924; Fri, 25 Jan 2002 13:36:16 -0600 (CST) Message-Id: <3.0.5.32.20020125133613.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Fri, 25 Jan 2002 13:36:13 -0600 To: Mark Drayton , Lance Bland From: jacks@sage-american.com Subject: Re: number of users Cc: adrian kok , questions@FreeBSD.ORG In-Reply-To: <20020125192444.A3916@drex.staff.izr.com> References: <0C288440-11C8-11D6-A67C-0030659A531A@vvi.com> <20020125190013.23955.qmail@web21210.mail.yahoo.com> <0C288440-11C8-11D6-A67C-0030659A531A@vvi.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ...or if you just want a summary of how many users there are allowed on the system, I have a script. At 07:24 PM 1.25.2002 +0000, Mark Drayton wrote: >Lance Bland (lbland@vvi.com) wrote: > >[..snip..] > >> If you just want to know how many are logged in then "finger" might >> work. or you might want to use "last", or "ac -p" > >Original poster: these methods will show how many users are currently >logged in. The following will tell you have many user accounts you have >with a UID > 1000 (ie non-system accounts): > >grep -v '^#' /etc/passwd | awk -F: '{ if ($3 > 1000) print $0 }' | wc -l > >eg: > >=== mark@mir:~$ grep -v '^#' /etc/passwd | awk -F: '{ if ($3 > 1000) print $0 }' | wc -l > 5 > >Cheers, > >-- > >Mark Drayton > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11:40:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 0434437B400 for ; Fri, 25 Jan 2002 11:40:45 -0800 (PST) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) with ESMTP id g0PJehj94893; Fri, 25 Jan 2002 14:40:43 -0500 (EST) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 25 Jan 2002 14:40:43 -0500 (EST) From: Joe Clarke To: Glenn Todd Cc: "freebsd-questions@FreeBSD.ORG" Subject: Re: Cannot start Mozilla (Problem solved) In-Reply-To: <20020126083821.A536@Hawk.internet.co.nz> Message-ID: <20020125144016.J80016-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 26 Jan 2002, Glenn Todd wrote: > Joe > > Your guidance has resolved my problem. Once I removed the Locale settings > from my profile Mozilla started as expected. Of note the crrect entry was > in /usr/X11R6/lib/mozilla/res/unixcharset.properties, and a check of > $LANG after I started Gnome was "en_AU.ISO_8859-1" I do not know where > this is being set, however, my system now works so I will leave well > enough alone. Good to hear. This problem is being looked into on the Mozilla side, and will probably be fixed in 0.9.9. Joe > > Thanks for you help > > Glenn > > > On 2002.01.22 19:49 Joe Clarke wrote: > > On Tue, 2002-01-22 at 01:44, Glenn Todd wrote: > > > Joe > > > > > > My locale settings are as follows, they didn't affect the earlier > > version > > > of mozilla. > > > > > > > > > LC_ALL="en_GB.ISO_8859-1" > > > LC_CTYPE="en_GB.ISO_8859-1" > > > LANG="en_GB.ISO_8859-1" > > > > That should be fine in PORTREVISION 2 of Mozilla. However, if you want > > to see if you are running into the locale bug, unset all three of the > > above variables, and launch Mozilla from the prompt. > > > > If it starts, you have the locale problem. Verify the following entry > > appears in /usr/X11R6/lib/mozilla/res/unixcharset.properties: > > > > locale.all.en_GB.ISO_8859-1=ISO-8859-1 > > > > If not, add it, reset your locale variables, then restart Mozilla. If > > the entry does appear, you have another problem that we haven't seen > > yet. We'll need to do more investigating, and a truss might be needed. > > > > Joe > > > > > > > > Glenn > > > > > > > > > On 2002.01.22 04:51 Joe Clarke wrote: > > > > > > > > > > > > On Mon, 21 Jan 2002, Glenn Todd wrote: > > > > > > > > > I have recently updated my ports (portinstall -rR ) > > and > > > > > have everything in my system as current, but now cannot get Mozilla > > to > > > > run. > > > > > > > > > > I can start the initial set up if I remove the .mozilla from my > > home > > > > > directory however, but cannot get pass the create user as the indow > > > > will > > > > > not allow me to set or find a directory path for the .mozilla > > > > directory. > > > > > (it is blank). > > > > > > > > This could be a problem with your locale setting. What do you have > > for > > > > LANG or LC_CTYPE? > > > > > > > > Joe > > > > > > > > > > > > > > As I needed a browser so I resorted to installing galeon. It runs > > but > > > > its > > > > > dialogue windows open with out any text. My guess that I have an > > old > > > > or > > > > > incompatible library somewhere, has anyone experienced a similar > > > > situation > > > > > and any ideas on the fix. > > > > > > > > > > Key installs: > > > > > > > > > > FreeBSD Hawk 4.4-STABLE FreeBSD 4.4-STABLE #0 > > > > > mozilla-0.9.7_2,1 > > > > > gnome-1.4.1b2_1 > > > > > > > > > > Glenn > > > > > > > > > > Wellington, > > > > > New Zealand > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11:41:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from c011.snv.cp.net (c011-h005.c011.snv.cp.net [209.228.34.218]) by hub.freebsd.org (Postfix) with SMTP id 8814D37B404 for ; Fri, 25 Jan 2002 11:41:18 -0800 (PST) Received: (cpmta 8540 invoked from network); 25 Jan 2002 11:41:17 -0800 Received: from 209.6.191.48 (HELO Fritz) by smtp.namezero.com (209.228.34.218) with SMTP; 25 Jan 2002 11:41:17 -0800 X-Sent: 25 Jan 2002 19:41:17 GMT Message-ID: <001701c1a5d8$43803840$0301a8c0@uminafamily.com> From: "Christopher J. Umina" To: Subject: Responses? Date: Fri, 25 Jan 2002 14:40:56 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0009_01C1A5AE.4C0541B0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0009_01C1A5AE.4C0541B0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have a FreeBSD 4.1 server and it was shut down incorrectly. I went = through all the file system checks and so on and it boots and mounts the = devices. I then try to login and it works, but the first command I run = at that point stops the server from responding. I can switch ttyv's = with print scrn, but then when I type a login and hit enter it sticks = the same. Anybody ever have this happen to them? If so, what can I do? Thanks ------=_NextPart_000_0009_01C1A5AE.4C0541B0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I have a FreeBSD 4.1 server and it was = shut down=20 incorrectly.  I went through all the file system checks and so on = and it=20 boots and mounts the devices.  I then try to login and it works, = but the=20 first command I run at that point stops the server from = responding.  I can=20 switch ttyv's with print scrn, but then when I type a login and hit = enter it=20 sticks the same.  Anybody ever have this happen to them?  If = so, what=20 can I do?
 
Thanks
 
------=_NextPart_000_0009_01C1A5AE.4C0541B0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11:51:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id BFAD937B400 for ; Fri, 25 Jan 2002 11:51:47 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.11.6/8.11.6) id g0PJpiP80571; Fri, 25 Jan 2002 14:51:44 -0500 (EST) (envelope-from mwlucas) Date: Fri, 25 Jan 2002 14:51:44 -0500 From: Michael Lucas To: Chris Scott Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD and OS X! Message-ID: <20020125145144.A80482@blackhelicopters.org> References: <004d01c1a5ca$ed2e83f0$49482e3e@aquarius> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <004d01c1a5ca$ed2e83f0$49482e3e@aquarius>; from chris_scott@gmx.de on Fri, Jan 25, 2002 at 07:05:44PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Not to push my own work, but here's a link to an article I wrote on this topic: http://www.linux.com/newsitem.phtml?sid=93&aid=7125 We *want* you to steal our code. Please. On Fri, Jan 25, 2002 at 07:05:44PM +0100, Chris Scott wrote: > HI folks, > > I`ve a question about the integration of some FreeBSD-Features and (or) source code in Mac OS X: > > Is it in the term the BSD licenses legal to use those featues in a system, that isn`t Open Source or is distributed (like OS X) without Source! OK, there are all those Copyright Notices about FreeBSD in OS X, but does that meet it! I mean, can any development company come and say "Well, I`d like to use the Ports System in my Closed Source System" or is that restricted? > > I think, it`s OK, that the Ports have been ported to Darwin, cause it`s Open Source, but would it be OK, if it would be ported to OS X? > > I hope you could help me! And, guys, fine work you`re doing! > > Thomas -- Michael Lucas mwlucas@FreeBSD.org, mwlucas@BlackHelicopters.org my FreeBSD column: http://www.oreillynet.com/pub/q/Big_Scary_Daemons http://www.blackhelicopters.org/~mwlucas/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 11:55:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from blade.elitsat.net (blade.elitsat.net [209.239.78.129]) by hub.freebsd.org (Postfix) with ESMTP id 7642637B402 for ; Fri, 25 Jan 2002 11:55:14 -0800 (PST) Received: from localhost (amour@localhost) by blade.elitsat.net (8.11.6/8.11.6) with ESMTP id g0PJt8t21706 for ; Fri, 25 Jan 2002 21:55:08 +0200 (EET) (envelope-from amour@blade.elitsat.net) Date: Fri, 25 Jan 2002 21:55:04 +0200 (EET) From: Alexander To: Subject: When IPXIP is going to be available in the kernel ? Message-ID: <20020125215231.I21689-100000@blade.elitsat.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I saw that in the LINT config IPXIP is "not available" also ip_tun.c in the kernel source is empty :) I cvsuped the latest stable kernel (4.4-S) and it was still not available. Does someone know when this is going to be available ? I heard that it is working on OpenBSD. thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 12: 9: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from stereophonic.noops.org (adsl-63-195-97-84.dsl.snfc21.pacbell.net [63.195.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 4A25D37B400 for ; Fri, 25 Jan 2002 12:08:34 -0800 (PST) Received: from localhost (tcannon@localhost) by stereophonic.noops.org (8.11.6/8.11.6) with ESMTP id g0PK8Wh69148; Fri, 25 Jan 2002 12:08:32 -0800 (PST) (envelope-from tcannon@noops.org) X-Authentication-Warning: stereophonic.noops.org: tcannon owned process doing -bs Date: Fri, 25 Jan 2002 12:08:32 -0800 (PST) From: Thomas Cannon To: "Christopher J. Umina" Cc: Subject: Re: Responses? In-Reply-To: <001701c1a5d8$43803840$0301a8c0@uminafamily.com> Message-ID: <20020125120618.H69049-100000@stereophonic.noops.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG A quasi-longshot, but are your drives full by any chance? Also, you might want to boot up via the live CD, mount your hard-drive, and poke around. Other than a full drive, I can't say what to look for, but hopefully you'll notice something that's amiss. -tcannon On Fri, 25 Jan 2002, Christopher J. Umina wrote: > I have a FreeBSD 4.1 server and it was shut down incorrectly. I went through all the file system checks and so on and it boots and mounts the devices. I then try to login and it works, but the first command I run at that point stops the server from responding. I can switch ttyv's with print scrn, but then when I type a login and hit enter it sticks the same. Anybody ever have this happen to them? If so, what can I do? > > Thanks > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 12:16:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from medusa.oit.pdx.edu (medusa.oit.pdx.edu [131.252.120.41]) by hub.freebsd.org (Postfix) with ESMTP id 0519E37B400; Fri, 25 Jan 2002 12:16:34 -0800 (PST) Received: from freke.odin.pdx.edu (freke.odin.pdx.edu [131.252.120.43]) by medusa.oit.pdx.edu (8.11.6/8.11.6) with ESMTP id g0PKGUF21234; Fri, 25 Jan 2002 12:16:30 -0800 (PST) Received: from localhost (singh@localhost) by freke.odin.pdx.edu (8.11.6/8.11.6) with ESMTP id g0PKGUX18786; Fri, 25 Jan 2002 12:16:30 -0800 (PST) X-Authentication-Warning: freke.odin.pdx.edu: singh owned process doing -bs Date: Fri, 25 Jan 2002 12:16:29 -0800 (PST) From: Harkirat Singh X-X-Sender: To: Cc: Subject: TCP Zero Copy Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello! Does FreeBSD 4.3/4.4 supports TCP Zero copy? If there is some patch available then also please let me know. Regards, Harkirat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 12:25:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.prod.itd.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by hub.freebsd.org (Postfix) with ESMTP id 1463237B402 for ; Fri, 25 Jan 2002 12:25:39 -0800 (PST) Received: from evrtwa1-ar2-4-61-195-225.vz.dsl.gtei.net ([4.61.195.225] helo=cumulus.local) by falcon.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16UCuf-0004rp-00 for freebsd-questions@freebsd.org; Fri, 25 Jan 2002 12:25:29 -0800 Date: Fri, 25 Jan 2002 12:24:44 -0800 From: scott worley To: freebsd-questions Subject: FreeBSD boot loaders? Message-Id: <20020125122444.0b327c4d.folokai@earthlink.net> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.5) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Just moved my main workstation from linux to FreeBSD 4.5RC2. I was comfortable using GRUB on linux but I haven't found good documention on configuring the FreeBSD boot loaders. From the docs freebsd installs something called booteasy which isn't configurable? There are hints of a highly configurable boot loader for freebsd in the docs plus I see files in /boot which have options in them. Where are examples on how it? Most of the docs I've found on the web are about using LILO or NT's boot loader. I can always install the port of grub but it doens't like netbsd which I'm going to load on the same machine. Current setup is: /dev/da0s1 freebsd 4.5 slice(whole disk) /dev/da1s1 linux swap /dev/da1s2 linux /boot (set bootable) /dev/da1s3 linux / /dev/da1s4 empty, future netbsd the partitions on da1 were created after freebsd was installed so booteasy gives me: F1 FreeBSD F5 disk1 disklabel /dev/da1 spits out all the scsi drive info and c: 17783240 0 unused 0 0 # (Cyl. 0 - 1106*) Do freebsd boot manager(s) require disklabels on all disks? thanks, scott folokai@earthlink.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 12:32: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 5ACB037B417 for ; Fri, 25 Jan 2002 12:31:59 -0800 (PST) Received: from gateway ([63.70.155.59]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com for ; Fri, 25 Jan 2002 15:35:19 -0500 From: "Joe & Fhe Barbish" To: "FBSD Questions" Subject: Apache_FP ? Date: Fri, 25 Jan 2002 15:31:55 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Can Apache_FrontPage have both apache web sites and FrontPage web sites in the same base apache server? Is there an admin interface to apache to automate the creation and deletion of web sites? Can Apache_FP have directory based web sites that would be accessed by a url of this type http://www.domain.com/dir_name or http://www.domain.com/tom.index where domain points to the apache server and (dir_name and tom.index) point to the individual web sites inside the Apache server? If so can I see a sample of the definition statements? Will doing a make deinstall on apache port will it also remove all the web site definitions and data? Read all the apache & FrontPage doc's on FBSD. Looking for a how-to-do doc, does anybody know of any? Thanks for you help Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 12:55:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail3.enter.net (mail3.enter.net [63.65.0.23]) by hub.freebsd.org (Postfix) with ESMTP id 6F88537B402 for ; Fri, 25 Jan 2002 12:55:36 -0800 (PST) Received: from arm.enter.net (arm.enter.net [63.65.2.46]) by mail3.enter.net (Postfix) with ESMTP id B18B2D3333 for ; Fri, 25 Jan 2002 15:55:30 -0500 (EST) Date: Fri, 25 Jan 2002 15:52:54 -0500 (EST) From: Armand Sulter To: questions@freebsd.org Subject: pam.conf ,pam_pgsql and solidpop3 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I'm trying to have solidpop3 authenticate using a pgsql database however it will only query the database when the user exists in the password file. my pam.conf reads : spop3d auth required /usr/lib/pam_pgsql.so database=mail user=pgsql table=users user_column=username pwd_column=password expired_column=expired newtok_column=ch_pass debug spop3d account required /usr/lib/pam_pgsql.so database=mail user=pgsql table=users user_column=username pwd_column=password expired_column=expired newtok_column=ch_pass debug it would be great if someone could tell me what i'm forgetting, thanx :) With best regards, Armand Sulter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 13:15: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cell-works.com (cell-works.com [64.220.255.130]) by hub.freebsd.org (Postfix) with ESMTP id 8FBCC37B400 for ; Fri, 25 Jan 2002 13:15:03 -0800 (PST) Received: from localhost (john@localhost) by cell-works.com (8.8.8/8.8.8) with ESMTP id QAA08093 for ; Fri, 25 Jan 2002 16:25:55 -0500 (EST) (envelope-from john@cell-works.com) Date: Fri, 25 Jan 2002 16:25:55 -0500 (EST) From: John Daniel To: questions@FreeBSD.ORG Subject: I am trying to install the cvsup port with out the gui Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG i use to use the cvsup-bin port but I no longer see it. I don't want to install a gui but the default for the cvsup port seems to require a gui. system 4.4r p166 32m How do i tell the port not to install the gui (xfree86, etc)? Is there a switch I have to use to tell make not to use the gui? Do I have to modify the make file? I was looking at the make file and it said I should define \"WITHOUT_X11\" How do i do that? How can i find out what my options are when I install a port? Thanks Jojn ------------------------------------------------------------------------------- "Don't want no trouble , don't start no trouble." -Some actor in some sitcom ------------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 13:18:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from clink.schulte.org (clink.schulte.org [209.134.156.193]) by hub.freebsd.org (Postfix) with ESMTP id 87B4A37B404 for ; Fri, 25 Jan 2002 13:18:45 -0800 (PST) Received: from schulte-laptop.nospam.schulte.org (nb-65.netbriefings.com [209.134.134.65]) by clink.schulte.org (Postfix) with ESMTP id 22EBA24410; Fri, 25 Jan 2002 15:18:44 -0600 (CST) Message-Id: <5.1.0.14.0.20020125151647.03d101c8@pop3s.schulte.org> X-Sender: (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Fri, 25 Jan 2002 15:17:55 -0600 To: John Daniel , questions@FreeBSD.ORG From: Christopher Schulte Subject: Re: I am trying to install the cvsup port with out the gui In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 04:25 PM 1/25/2002 -0500, John Daniel wrote: >i use to use the cvsup-bin port but I no longer see it. I don't want to >install a gui but the default for the cvsup port seems to require a gui. cvsup your ports tree ( if you have a working cvsup ), and install net/cvsup-without-gui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 13:20:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by hub.freebsd.org (Postfix) with ESMTP id DE2AA37B416 for ; Fri, 25 Jan 2002 13:20:14 -0800 (PST) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id NAA05910; Fri, 25 Jan 2002 13:20:10 -0800 Message-ID: <3C51CC0A.2010505@owt.com> Date: Fri, 25 Jan 2002 13:20:10 -0800 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: John Daniel Cc: questions@FreeBSD.ORG Subject: Re: I am trying to install the cvsup port with out the gui References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG John Daniel wrote: > i use to use the cvsup-bin port but I no longer see it. I don't want to > install a gui but the default for the cvsup port seems to require a gui. > > system 4.4r > p166 > 32m > > How do i tell the port not to install the gui (xfree86, etc)? Is there a > switch I have to use to tell make not to use the gui? Do I have to modify > the make file? > > I was looking at the make file and it said I should define \"WITHOUT_X11\" > How do i do that? > > How can i find out what my options are when I install a port? You really should look at the INDEX. There is a versions without-gui. It is "Port: cvsup-without-gui-16.1f". When you cvsup ports-all, you have to update the INDEX. It isn't updated nearly as frequently as the ports are. You can either do a "make index" or run "portsdb -uU". If you are trying to bootstrap your way in, use the 16.1e version on http://people.freebsd.org/~jdp/s1g/ Kent -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://users.owt.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 13:24:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta07-svc.ntlworld.com (mta07-svc.ntlworld.com [62.253.162.47]) by hub.freebsd.org (Postfix) with ESMTP id A4CD937B404 for ; Fri, 25 Jan 2002 13:24:14 -0800 (PST) Received: from neildesk.neilmcgann.co.uk ([213.107.105.120]) by mta01-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020125210002.ZHKJ9422.mta01-svc.ntlworld.com@neildesk.neilmcgann.co.uk> for ; Fri, 25 Jan 2002 21:00:02 +0000 Message-Id: <5.1.0.14.0.20020125204321.00a0f4c0@pop.ntlworld.com> X-Sender: neil.mcgann@pop.ntlworld.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Fri, 25 Jan 2002 21:00:41 +0000 To: freebsd-questions@FreeBSD.ORG From: Neil McGann Subject: UDMA and 100Mbit NIC speed issues Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm seeing a problem with network upload speed using 4.4-Release when the HD is in DMA mode. Basically the same as problem report kern/32338, but the possible fix doesn't work for me. Machine is a ASUS Cuple-vm mobo (VIA PLE133), 400MHz celeron, Netgear FA311 NIC and IBM 60GX 60Gb deskstar on ULTRA100. Network is full-duplex thro a 100Mbit switch. Symptom is ftp upload is very slow in DMA HD mode 5 and much faster in PIO mode. I see up/down of a (approx.) 100Mb file at 50s/29s in PIO and 3m50s/33s in UDMA. I have tried disabling the on-board video, and then using a 3Com 3C905B NIC, but the massive slowdown is the same. I tried a different FA311 in a dual-boot Linux 2.4.x/Win 2K machine with a 40Gb version of the same IBM drive (but a ULTRA66 controller on a 1GHz PIII) and Linux showed _exactly_ the same slow-down symptom as FreeBSD. Win2K didn't slow down - it was faster overall in TCP/IP (40sec/15sec) and MUCH faster in SMB (15sec/15sec). So - what is killing the performance in FreeBSD (and Linux) where Win2K is much faster???? (is w2K doing adaptive disk throttling to maximise network bandwith???) Anyone got suggestions of how to start looking at this? I'm relatively new to freeBSD and very pleased with it overall, but on the same hardware W2K wipes the floor with it on sheer network/disk speed (at least on UDMA/100Mbit). Neil To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 13:31: 5 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.cz (diana.mobil.cz [195.39.16.12]) by hub.freebsd.org (Postfix) with ESMTP id B238137B400 for ; Fri, 25 Jan 2002 13:31:02 -0800 (PST) Received: from ester.mobil.cz (ester.mobil.cz [194.213.62.23]) by mobil.cz (8.11.6/8.11.0) with ESMTP id g0PLV1e09321 for ; Fri, 25 Jan 2002 22:31:01 +0100 Received: from roman.mobil.cz ([10.2.0.89]) by ester.mobil.cz (Lotus Domino Release 5.0.7) with ESMTP id 2002012522282255:293 ; Fri, 25 Jan 2002 22:28:22 +0100 Received: (from roman@localhost) by roman.mobil.cz (8.11.6/8.11.6) id g0PLfg426974 for questions@FreeBSD.ORG; Fri, 25 Jan 2002 22:41:42 +0100 (CET) (envelope-from neuhauser@mobil.cz) X-Authentication-Warning: roman.mobil.cz: roman set sender to neuhauser@mobil.cz using -f Date: Fri, 25 Jan 2002 22:41:42 +0100 From: Roman Neuhauser To: questions@FreeBSD.ORG Subject: Re: I am trying to install the cvsup port with out the gui Message-ID: <20020125224142.A26815@roman.mobil.cz> Mail-Followup-To: questions@FreeBSD.ORG References: Mime-Version: 1.0 In-Reply-To: User-Agent: Mutt/1.3.23i X-MIMETrack: Itemize by SMTP Server on ester/Mobil(Release 5.0.7 |March 21, 2001) at 01/25/2002 10:28:22 PM, Serialize by Router on ester/Mobil(Release 5.0.7 |March 21, 2001) at 01/25/2002 10:28:28 PM, Serialize complete at 01/25/2002 10:28:28 PM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Fri, 25 Jan 2002 16:25:55 -0500 (EST) > From: John Daniel > To: questions@FreeBSD.ORG > Subject: I am trying to install the cvsup port with out the gui > > > How do i tell the port not to install the gui (xfree86, etc)? Is there a > switch I have to use to tell make not to use the gui? Do I have to modify > the make file? > > I was looking at the make file and it said I should define \"WITHOUT_X11\" > How do i do that? > make install -DWITHOUT_GUI or > make install WITHOUT_GUI=yes > How can i find out what my options are when I install a port? > cat Makefile |more -- FreeBSD 4.4-STABLE 10:38PM up 5 days, 5:01, 12 users, load averages: 0.09, 0.06, 0.01 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 13:41: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from leon.amaretti.net (leon.amaretti.net [195.224.53.47]) by hub.freebsd.org (Postfix) with ESMTP id E689A37B400 for ; Fri, 25 Jan 2002 13:41:05 -0800 (PST) Received: from pc-62-30-126-118-cr.blueyonder.co.uk ([62.30.126.118] helo=globalnet.co.uk) by leon.amaretti.net with esmtp (Exim 3.16 #1) id 16UE86-0000Hg-00 for questions@freebsd.org; Fri, 25 Jan 2002 21:43:26 +0000 Message-ID: <3C51D0F7.4B07CD01@globalnet.co.uk> Date: Fri, 25 Jan 2002 21:41:11 +0000 From: John Ekins Reply-To: jre@globalnet.co.uk X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.4-RELEASE i386) X-Accept-Language: en-GB, en MIME-Version: 1.0 To: "questions@freebsd.org" Subject: System crash when trying to write a file on a bad floppy Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I've just had a system crash when trying to write a file on a "bad" floppy. I'm running FreeBSD 4.4-Release and had just copied kern.flp for 4.5-RC3 onto a floppy using dd. I mounted up the floppy without any unusual flags (and certainly not read only) as I wanted to put a boot.config file on there. I typed echo "/boot/loader -h" > /mnt/floppy/boot.config". The write failed, the floppy light stayed on and then suddenly the machine rebooted without warning. Alas I don't have a crash dump as my RAM is bigger than my swap space. I did notice several entries like the following (these were the last) in /var/log/messages after it rebooted: Jan 25 21:15:52 chunky /kernel: fd0c: hard error writing fsbn 16 of 16-18 (ST0 40 ST1 2 ST2 0 cyl 0 hd 0 sec 17) Jan 25 21:15:52 chunky /kernel: fd0c: hard error writing fsbn 56 of 56-63 (ST0 40 ST1 2 ST2 0 cyl 1 hd 1 sec 3) Jan 25 21:15:52 chunky /kernel: fd0c: hard error writing fsbn 64 (ST0 40 ST1 2 ST2 0 cyl 1 hd 1 sec 11) Jan 25 21:15:53 chunky /kernel: fd0c: hard error writing fsbn 16 of 16-18 (ST0 40 ST1 2 ST2 0 cyl 0 hd 0 sec 17) As mentioned, the floppy was not write protected, so I guess it was just faulty. However I was a bit surprised that the machine crashed like this. Has anyone seen any comments on this? Cheers, John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 13:42:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from drone5.qsi.net.nz (drone5-svc-skyt.qsi.net.nz [202.89.128.5]) by hub.freebsd.org (Postfix) with SMTP id 4CC0337B400 for ; Fri, 25 Jan 2002 13:42:20 -0800 (PST) Received: (qmail 80589 invoked by uid 0); 25 Jan 2002 21:42:19 -0000 Received: from unknown (HELO chen.org.nz) ([210.54.19.51]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 25 Jan 2002 21:42:19 -0000 Received: (from jonc@localhost) by chen.org.nz (8.11.6/8.11.6) id g0PLgIS24476; Sat, 26 Jan 2002 10:42:18 +1300 (NZDT) (envelope-from jonc) Date: Sat, 26 Jan 2002 10:42:18 +1300 From: Jonathan Chen To: Agus Hariadi Cc: questions@FreeBSD.ORG Subject: Re: System date time Message-ID: <20020126104218.D24296@grimoire.chen.org.nz> References: <20020125152249.55163.qmail@web14604.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020125152249.55163.qmail@web14604.mail.yahoo.com>; from agushariadi@yahoo.com on Fri, Jan 25, 2002 at 07:22:49AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 07:22:49AM -0800, Agus Hariadi wrote: > Hi, > I have one question about date. > why the system date not the same with bios date ? > i have a FreeBSD v. 4.4 with AMD Atlhon 1200 Mhz, the > system display date & time (with date sintax) can't > same with the bios date. Your BIOS time is set UTC (GMT) time. What this means, is that if you ever take your machine out of your current timezone (or if your timezone rule changes), you don't have change your time (you may have to change local timzone files, though). However, you can change the system to set BIOS time to localtime. Check out tzsetup(8). -- Jonathan Chen ---------------------------------------------------------------------- "If you wish your merit to be known, acknowledge that of other people" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 13:43:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by hub.freebsd.org (Postfix) with ESMTP id 28C4637B400 for ; Fri, 25 Jan 2002 13:43:38 -0800 (PST) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id NAA07385; Fri, 25 Jan 2002 13:43:34 -0800 Message-ID: <3C51D185.2090600@owt.com> Date: Fri, 25 Jan 2002 13:43:33 -0800 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Neil McGann Cc: freebsd-questions@FreeBSD.ORG Subject: Re: UDMA and 100Mbit NIC speed issues References: <5.1.0.14.0.20020125204321.00a0f4c0@pop.ntlworld.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Neil McGann wrote: > I'm seeing a problem with network upload speed using 4.4-Release when > the HD is in DMA mode. Basically the same as problem report kern/32338, > but the possible fix doesn't work for me. > > Machine is a ASUS Cuple-vm mobo (VIA PLE133), 400MHz celeron, Netgear > FA311 NIC and IBM 60GX 60Gb deskstar on ULTRA100. Network is full-duplex > thro a 100Mbit switch. > > Symptom is ftp upload is very slow in DMA HD mode 5 and much faster in > PIO mode. I see up/down of a (approx.) 100Mb file at 50s/29s in PIO and > 3m50s/33s in UDMA. I have an ECS-K7S5A and an Amptron 830LM that have on board ATA-100 and 100Mps networking. I am consistently seeing 11MB/s transfers between the systems. There are usually some shared IRQ such as the AGP and the 1st PCI slot. When I have an AGP video, I don't use the first slot. > > I have tried disabling the on-board video, and then using a 3Com 3C905B > NIC, but the massive slowdown is the same. I tried a different FA311 in > a dual-boot Linux 2.4.x/Win 2K machine with a 40Gb version of the same > IBM drive (but a ULTRA66 controller on a 1GHz PIII) and Linux showed > _exactly_ the same slow-down symptom as FreeBSD. Win2K didn't slow down > - it was faster overall in TCP/IP (40sec/15sec) and MUCH faster in SMB > (15sec/15sec). I don't have a 100MB file but I can transfer the packages for kde-2.2.2, which have a number of 9+MB files and see 11+MB/s on W2K. I don't see a difference in transfer rates on the SiS-735 chipset motherboards. Kent > > So - what is killing the performance in FreeBSD (and Linux) where Win2K > is much faster???? (is w2K doing adaptive disk throttling to maximise > network bandwith???) > > Anyone got suggestions of how to start looking at this? I'm relatively > new to freeBSD and very pleased with it overall, but on the same > hardware W2K wipes the floor with it on sheer network/disk speed (at > least on UDMA/100Mbit). > > Neil > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > . > -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://users.owt.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 13:53: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cell-works.com (cell-works.com [64.220.255.130]) by hub.freebsd.org (Postfix) with ESMTP id A560137B402 for ; Fri, 25 Jan 2002 13:53:00 -0800 (PST) Received: from localhost (john@localhost) by cell-works.com (8.8.8/8.8.8) with ESMTP id RAA08197; Fri, 25 Jan 2002 17:03:52 -0500 (EST) (envelope-from john@cell-works.com) Date: Fri, 25 Jan 2002 17:03:51 -0500 (EST) From: John Daniel To: Kent Stewart Cc: questions@FreeBSD.ORG Subject: Re: I am trying to install the cvsup port with out the gui In-Reply-To: <3C51CC0A.2010505@owt.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I checked the INDEX there isn't one listed without gui. I also did a search for cvsup on the freebsd.org site and only 3 versions of cvsup come up none of them are without gui. i'm going to try the url you gave me i just have to move to a box with lynx. Thanks for you help. John ------------------------------------------------------------------------------- "Don't want no trouble , don't start no trouble." -Some actor in some sitcom ------------------------------------------------------------------------------- On Fri, 25 Jan 2002, Kent Stewart wrote: > > > John Daniel wrote: > > > i use to use the cvsup-bin port but I no longer see it. I don't want to > > install a gui but the default for the cvsup port seems to require a gui. > > > > system 4.4r > > p166 > > 32m > > > > How do i tell the port not to install the gui (xfree86, etc)? Is there a > > switch I have to use to tell make not to use the gui? Do I have to modify > > the make file? > > > > I was looking at the make file and it said I should define \"WITHOUT_X11\" > > How do i do that? > > > > How can i find out what my options are when I install a port? > > > You really should look at the INDEX. There is a versions without-gui. > It is "Port: cvsup-without-gui-16.1f". When you cvsup ports-all, you > have to update the INDEX. It isn't updated nearly as frequently as the > ports are. You can either do a "make index" or run "portsdb -uU". > > If you are trying to bootstrap your way in, use the 16.1e version on > http://people.freebsd.org/~jdp/s1g/ > > Kent > > -- > Kent Stewart > Richland, WA > > mailto:kbstew99@hotmail.com > http://users.owt.com/kstewart/index.html > FreeBSD News http://daily.daemonnews.org/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 13:54:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp3.mx.pitdc1.stargate.net (smtp3.mx.pitdc1.stargate.net [206.210.69.143]) by hub.freebsd.org (Postfix) with SMTP id 54CC337B400 for ; Fri, 25 Jan 2002 13:54:23 -0800 (PST) Received: (qmail 22556 invoked from network); 25 Jan 2002 21:47:18 -0000 Received: from dap-209-166-135-174.nfas.greensburg-tnt-1.sns234.pa.stargate.net (HELO wastegate.net) (209.166.135.174) by smtp3.mx.pitdc1.stargate.net with SMTP; 25 Jan 2002 21:47:18 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id E05724844F; Fri, 25 Jan 2002 16:47:38 -0500 (EST) From: "Doug Reynolds" To: "freebsd-questions@freebsd.org" , "Joe Blow" Date: Fri, 25 Jan 2002 16:49:41 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: <200201251054.g0PAsET01868@mail18.bigmailbox.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: FreeBSD 4.x - lock ups + reboots Message-Id: <20020125214738.E05724844F@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 25 Jan 2002 02:54:14 -0800, Joe Blow wrote: >This mailing list is my last resort for a hideous problem I've endured for >well over a year. I first started experiencing it with FreeBSD 4.2-R. I >bought the FreeBSD 4.3-R CDs when they first came out last year, hoping that >the problem would disappear. It didn't. > >I have searched through the freebsd.org problem reports and mailing list >arhives, through USENET, and through google.com. Although it seems many >other users are experiencing similar problems, solutions have been elusive. >The panic message is basically... > >Fatal trap 12: page fault while in kernel mode >[...] > >... with the register values and so forth that are meaningless to post here >without some kind of backtrace. Is there any reason why I am unable to get >crash dumps? sounds like bad ram to me. try installing and using /usr/ports/sysutils/memtest it helps identify if you ram is bad. --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 14: 7: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mx.pitdc1.stargate.net (smtp2.mx.pitdc1.stargate.net [206.210.69.142]) by hub.freebsd.org (Postfix) with SMTP id 532CB37B404 for ; Fri, 25 Jan 2002 14:07:00 -0800 (PST) Received: (qmail 7652 invoked from network); 25 Jan 2002 22:06:58 -0000 Received: from dap-209-166-135-174.nfas.greensburg-tnt-1.sns234.pa.stargate.net (HELO wastegate.net) (209.166.135.174) by smtp2.mx.pitdc1.stargate.net with SMTP; 25 Jan 2002 22:06:58 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id 454FD4844F; Fri, 25 Jan 2002 17:07:24 -0500 (EST) From: "Doug Reynolds" To: "FBSD Questions" , "Joe & Fhe Barbish" Date: Fri, 25 Jan 2002 17:09:27 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: Apache_FP ? Message-Id: <20020125220724.454FD4844F@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 25 Jan 2002 15:31:55 -0500, Joe & Fhe Barbish wrote: >Can Apache_FrontPage have both apache web sites and FrontPage >web sites in the same base apache server? yes. the root web spawns from the / dir for frontpage. your user accounts go under www.website.com/~username/ it defaults to public_html, if you want to change it, search for userdir under the httpd.conf you can access the root web frontpage or from /usr/local/www/data (i believe). you can't, however, make www.website.com/~username/ accessable by frontpage. you have to ftp the files in. you can also use virtual hosts to point to different directories under the fp structure. >Is there an admin interface to apache to automate the >creation and deletion of web sites? it is: /usr/local/frontpage/version4.0/bin/fpsrvadm.exe >Can Apache_FP have directory based web sites that would be >accessed by a url of this type http://www.domain.com/dir_name or >http://www.domain.com/tom.index where domain points to the >apache server and (dir_name and tom.index) point to the >individual web sites inside the Apache server? If so can I see >a sample of the definition statements? answered above >Will doing a make deinstall on apache port will it also remove >all the web site definitions and data? shouldn't delete anything, but it'll kill the conf. >Read all the apache & FrontPage doc's on FBSD. Looking for a >how-to-do doc, does anybody know of any? none that i found, except for the default docs that apache installs. it will also point to microsofts front pages server extention info page --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 14: 8:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from [208.187.165.9] (mail.lanset.com [208.187.165.9]) by hub.freebsd.org (Postfix) with ESMTP id A11DB37B417 for ; Fri, 25 Jan 2002 14:08:12 -0800 (PST) Received: from placeholder20.lanset.com (unverified [208.187.167.20]) by (Vircom SMTPRS 4.0.179) with ESMTP id for ; Fri, 25 Jan 2002 13:05:50 -0800 Date: Fri, 25 Jan 2002 13:06:13 -0800 (PST) From: damon blom To: questions@freebsd.org Subject: 3C509-TP Ethernet Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG FreeBSD 4.5-RC #4 NEC Pentium III ep0:<#C509-TP EtherLink III> at port 0x300-0x30f irq 10 on isa 0 ep0:No irq! ep0:ep_alloc() failed(6) Installed this older ethernet card. No PnP. Any help? Newbie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 14:11:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 254CD37B402 for ; Fri, 25 Jan 2002 14:11:46 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16UEZU-0004xe-00 for freebsd-questions@freebsd.org; Fri, 25 Jan 2002 22:11:44 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 0FFCB452AA; Fri, 25 Jan 2002 23:11:44 +0100 (CET) Date: Fri, 25 Jan 2002 23:11:43 +0100 From: Cliff Sarginson To: "freebsd-questions@freebsd.org" Subject: Re: FreeBSD 4.x - lock ups + reboots Message-ID: <20020125221143.GA1203@raggedclown.net> References: <200201251054.g0PAsET01868@mail18.bigmailbox.com> <20020125214738.E05724844F@wastegate.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020125214738.E05724844F@wastegate.net> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 04:49:41PM -0500, Doug Reynolds wrote: > On Fri, 25 Jan 2002 02:54:14 -0800, Joe Blow wrote: > > >This mailing list is my last resort for a hideous problem I've endured for > >well over a year. I first started experiencing it with FreeBSD 4.2-R. I > >bought the FreeBSD 4.3-R CDs when they first came out last year, hoping that > >the problem would disappear. It didn't. > > > >I have searched through the freebsd.org problem reports and mailing list > >arhives, through USENET, and through google.com. Although it seems many > >other users are experiencing similar problems, solutions have been elusive. > >The panic message is basically... > > > >Fatal trap 12: page fault while in kernel mode > >[...] > > > >... with the register values and so forth that are meaningless to post here > >without some kind of backtrace. Is there any reason why I am unable to get > >crash dumps? > > sounds like bad ram to me. > > try installing and using /usr/ports/sysutils/memtest > > it helps identify if you ram is bad. > Except his problem is very similar to mine, although much more problematic. And the memory on my system laughs in derision at memtest's attempt to break it :) -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 14:12: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by hub.freebsd.org (Postfix) with ESMTP id BF81437B400 for ; Fri, 25 Jan 2002 14:11:52 -0800 (PST) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id OAA09206; Fri, 25 Jan 2002 14:11:48 -0800 Message-ID: <3C51D824.8070107@owt.com> Date: Fri, 25 Jan 2002 14:11:48 -0800 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: John Daniel Cc: questions@FreeBSD.ORG Subject: Re: I am trying to install the cvsup port with out the gui References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG John Daniel wrote: > I checked the INDEX there isn't one listed without gui. I also did a > search for cvsup on the freebsd.org site and only 3 versions of cvsup > come up none of them are without gui. i'm going to try the url you gave > me i just have to move to a box with lynx. If the cvsup-without-gui doesn't show up and you have done a recent ports-all, you need to cd /usr/ports make index. The date on the non-gui version is 12 January. The last mods to INDEX were made on 6 Jan. If you haven't updated the INDEX on your system, cvsup-without-gui will not show up. Kent > > ------------------------------------------------------------------------------- > > On Fri, 25 Jan 2002, Kent Stewart wrote: > > >> >>John Daniel wrote: >> >> >>>i use to use the cvsup-bin port but I no longer see it. I don't want to >>>install a gui but the default for the cvsup port seems to require a gui. >>> >>>system 4.4r >>>p166 >>>32m >>> >>>How do i tell the port not to install the gui (xfree86, etc)? Is there a >>>switch I have to use to tell make not to use the gui? Do I have to modify >>>the make file? >>> >>>I was looking at the make file and it said I should define \"WITHOUT_X11\" >>>How do i do that? >>> >>>How can i find out what my options are when I install a port? >>> >> >>You really should look at the INDEX. There is a versions without-gui. >>It is "Port: cvsup-without-gui-16.1f". When you cvsup ports-all, you >>have to update the INDEX. It isn't updated nearly as frequently as the >>ports are. You can either do a "make index" or run "portsdb -uU". >> >>If you are trying to bootstrap your way in, use the 16.1e version on >>http://people.freebsd.org/~jdp/s1g/ >> >>Kent >> >>-- >>Kent Stewart >>Richland, WA >> >>mailto:kbstew99@hotmail.com >>http://users.owt.com/kstewart/index.html >>FreeBSD News http://daily.daemonnews.org/ >> >> >> > > > . > > -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://users.owt.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 14:17:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mx.pitdc1.stargate.net (smtp2.mx.pitdc1.stargate.net [206.210.69.142]) by hub.freebsd.org (Postfix) with SMTP id 1083F37B41E for ; Fri, 25 Jan 2002 14:17:47 -0800 (PST) Received: (qmail 24856 invoked from network); 25 Jan 2002 22:16:29 -0000 Received: from dap-209-166-135-174.nfas.greensburg-tnt-1.sns234.pa.stargate.net (HELO wastegate.net) (209.166.135.174) by smtp2.mx.pitdc1.stargate.net with SMTP; 25 Jan 2002 22:16:29 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id A82704844F; Fri, 25 Jan 2002 17:16:59 -0500 (EST) From: "Doug Reynolds" To: "Cliff Sarginson" , "freebsd-questions@freebsd.org" Date: Fri, 25 Jan 2002 17:19:02 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: <20020125221143.GA1203@raggedclown.net> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: FreeBSD 4.x - lock ups + reboots Message-Id: <20020125221659.A82704844F@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 25 Jan 2002 23:11:43 +0100, Cliff Sarginson wrote: >On Fri, Jan 25, 2002 at 04:49:41PM -0500, Doug Reynolds wrote: >> On Fri, 25 Jan 2002 02:54:14 -0800, Joe Blow wrote: >> >> >This mailing list is my last resort for a hideous problem I've endured for >> >well over a year. I first started experiencing it with FreeBSD 4.2-R. I >> >bought the FreeBSD 4.3-R CDs when they first came out last year, hoping that >> >the problem would disappear. It didn't. >> > >> >I have searched through the freebsd.org problem reports and mailing list >> >arhives, through USENET, and through google.com. Although it seems many >> >other users are experiencing similar problems, solutions have been elusive. >> >The panic message is basically... >> > >> >Fatal trap 12: page fault while in kernel mode >> >[...] >> > >> >... with the register values and so forth that are meaningless to post here >> >without some kind of backtrace. Is there any reason why I am unable to get >> >crash dumps? >> >> sounds like bad ram to me. >> >> try installing and using /usr/ports/sysutils/memtest >> >> it helps identify if you ram is bad. >> >Except his problem is very similar to mine, although much more >problematic. >And the memory on my system laughs in derision at memtest's attempt >to break it :) that is always nice... i guess time to break out the DIMM tester. --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 14:18:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fia168-94.dsl.hccnet.nl (fia168-94.dsl.hccnet.nl [62.251.94.168]) by hub.freebsd.org (Postfix) with ESMTP id 9B1E337B404 for ; Fri, 25 Jan 2002 14:18:34 -0800 (PST) Received: by fia168-94.dsl.hccnet.nl (Postfix, from userid 1000) id D409BD7; Fri, 25 Jan 2002 23:18:36 +0100 (CET) Content-Type: text/plain; charset="iso-8859-15" From: Simon Siemonsma To: freebsd-questions@freebsd.org Subject: problems building kde app. Date: Fri, 25 Jan 2002 23:18:36 +0100 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020125221836.D409BD7@fia168-94.dsl.hccnet.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG When trying to build Kmymoney2 from the ports I get the following error: checking for moc... not found configure: error: No Qt meta object compiler (moc) found! Please check whether you installed Qt correctly. You need to have a running moc binary. configure tried to run and the test didn't succeed. If configure shouldn't have tried this one, set the environment variable MOC to the right one before running configure. Can anyone tell me what a MOC is and how I can solve this? Regards, Simon Siemonsma To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 14:20:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.velosystems.net (cx144844-b.pv1.ca.home.com [24.9.137.174]) by hub.freebsd.org (Postfix) with ESMTP id 1D40C37B416 for ; Fri, 25 Jan 2002 14:20:44 -0800 (PST) Received: from win2kads (ms [192.168.1.5]) by mail.velosystems.net (Postfix) with SMTP id 43D6550783 for ; Fri, 25 Jan 2002 14:20:38 -0800 (PST) Message-ID: <001f01c1a5ec$c08c4e50$0501a8c0@win2kads> From: "Steve Wingate" To: "freebsd-questions" Subject: Error building gtkhtml Date: Fri, 25 Jan 2002 14:08:00 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I keep running into this error building gtkhtml 1.0.1 on FreeBSD 4.5-RC cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -I/usr/X11R6/include -I/usr/X11R6/i nclude/gnome-1.0 -I/usr/X11R6/include -DNEED_GNOMESUPPORT_H -I/usr/X11R6/lib /gnome-libs/include -I/usr/local/include/glib12 -I/usr/local/include/orbit-1 .0 -I/usr/X11R6/include/gtk12 -I/usr/local/include -I/usr/X11R6/include/gnom e-1.0 -I/usr/X11R6/include -DNEED_GNOMESUPPORT_H -I/usr/X11R6/lib/gnome-libs /include -I/usr/local/include/glib12 -I/usr/local/include/orbit-1.0 -I/usr/X 11R6/include/gtk12 -I/usr/local/include -I/usr/X11R6/include/gnome-1.0 -I/us r/X11R6/include -DNEED_GNOMESUPPORT_H -I/usr/X11R6/lib/gnome-libs/include -I /usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I /usr/X11R6/include/gdk-pixbuf-1.0 -I/usr/local/include/freetype2 -I/usr/loca l/include/gnome-xml -I/usr/X11R6/include/libglade-1.0 -I/usr/local/include/o rbit-1.0 -DG_LOG_DOMAIN=\"gtkhtml\" -I/usr/X11R6/include -I/usr/X11R6/includ e/gnome-1.0 -DNEED_GNOMESUPPORT_H -I/usr/X11R6/lib/gnome-libs/include -I/usr /X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr /local/include/w3c-libwww -DHAVE_CONFIG_H -DSRCDIR=\".\" -DPREFIX=\"/usr/X11 R6\" -I/usr/local/include -O -pipe -I/usr/X11R6/include -Wall -Wunused -I/us r/X11R6/include/gconf/1 -I/usr/X11R6/include -I/usr/local/include/glib12 -I/ usr/local/include/orbit-1.0 -I/usr/X11R6/include/gtk12 -I/usr/local/include -DGTKHTML_HAVE_GCONF -c htmlengine-edit-cut-and-paste.c -fPIC -DPIC -o .libs/htmlengine-edit-cut-and-paste.lo In file included from /usr/X11R6/include/libgnomeprint/gnome-print-master.h:29, from gtkhtml-private.h:27, from htmlengine-edit-cut-and-paste.c:29: /usr/X11R6/include/libgnomeprint/gnome-print-dialog.h:86: syntax error before `time_t' /usr/X11R6/include/libgnomeprint/gnome-print-dialog.h:91: syntax error before `time_t' gmake[2]: *** [htmlengine-edit-cut-and-paste.lo] Error 1 gmake[2]: Leaving directory `/usr/ports/www/gtkhtml/work/gtkhtml-1.0.1/src' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/www/gtkhtml/work/gtkhtml-1.0.1' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /usr/ports/www/gtkhtml. *** Error code 1 This is preventing me from installing things like galeon. It always stops in the same place. I do have the following installed: jeeves# pkg_info | grep gnome glibwww-0.2_1 A library for people wanting to use libwww with gtk/gnome gnomecanvas-0.14.0 A graphic library for GNOME gnomecontrolcenter-1.4.0.1 Control center for GNOME project gnomedb-0.2.93_3 Provide uniform access to data sources for the GNOME enviro gnomelibs-1.4.1.3 Libraries for GNOME, a GNU desktop environment gnomeprint-0.34 Gnome print support library gnomevfs-1.0.3 GNOME Virtual File System libproplist-0.10.1 Property library for gnome and Window Maker I had it installed prior and I removed/tried to reinstall a bunch of gnome ports trying to get gnumeric 1.x to install. Well I didn't get it to install and now I can't get galeon back. This gnome dependancy stuff is enuff to make a guy wish for Windows 3.1 almost. Anyway, how can I get back to where I was before. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 14:24:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from stargate.clickcom.com (stargate.clickcom.com [209.198.22.4]) by hub.freebsd.org (Postfix) with ESMTP id 5844B37B416 for ; Fri, 25 Jan 2002 14:24:36 -0800 (PST) Received: from fishbowl (calefaction.clickcom.com [209.198.22.19]) by stargate.clickcom.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id DMNPFR8H; Fri, 25 Jan 2002 17:14:49 -0500 Reply-To: From: "John Straiton" To: "'Simon Siemonsma'" Cc: Subject: RE: problems building kde app. Date: Fri, 25 Jan 2002 17:21:32 -0500 Message-ID: <03bc01c1a5ee$a4dcfc70$4116c60a@win2k.clickcom.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal In-Reply-To: <20020125221836.D409BD7@fia168-94.dsl.hccnet.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG moc is part of the Qt that's in x11-toolkits. A lot of time you'll see that this wound up installing a moc2 but not a moc. Find moc (look in /usr/X11R6/bin/) and then try something like make MOC=/usr/X11R6/bin/moc2 or just making a symbolic link (man ln) called moc that points to moc2. Frequently, moc2 can be substituted for moc. Some applications might require that you actually goto trolltech 's website and download a prior version than what /x11-toolkits/qt2 is going to install for you. John Straiton ClickCom, Inc. jks@clickcom.com (704)365-9970x101 > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG] On Behalf Of > Simon Siemonsma > Sent: Friday, January 25, 2002 5:19 PM > To: freebsd-questions@freebsd.org > Subject: problems building kde app. > > > When trying to build Kmymoney2 from the ports I get the > following error: > > checking for moc... not found configure: error: No Qt meta > object compiler > (moc) found! Please check whether you installed Qt correctly. > You need to have a running moc binary. configure tried to run > and the test > didn't succeed. If configure shouldn't have tried this one, set the > environment variable MOC to the right one before running configure. > > Can anyone tell me what a MOC is and how I can solve this? > > Regards, > > Simon Siemonsma > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 14:34: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by hub.freebsd.org (Postfix) with ESMTP id 81E3A37B402 for ; Fri, 25 Jan 2002 14:33:56 -0800 (PST) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id OAA10640; Fri, 25 Jan 2002 14:33:50 -0800 Message-ID: <3C51DD4E.9020202@owt.com> Date: Fri, 25 Jan 2002 14:33:50 -0800 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Simon Siemonsma Cc: freebsd-questions@FreeBSD.ORG Subject: Re: problems building kde app. References: <20020125221836.D409BD7@fia168-94.dsl.hccnet.nl> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Simon Siemonsma wrote: > When trying to build Kmymoney2 from the ports I get the following error: > > checking for moc... not found configure: error: No Qt meta object compiler > (moc) found! Please check whether you installed Qt correctly. > You need to have a running moc binary. configure tried to run and the test > didn't succeed. If configure shouldn't have tried this one, set the > environment variable MOC to the right one before running configure. > > Can anyone tell me what a MOC is and how I can solve this? It is something kde-2.2.2 builds. If it is complaining about it, you probably have some dependancies that are out of date. When I build kde-2, I frequently have to do something like pkg_delete -r(f) png-1.2.1 or pkg_delete -r(f) qt-2.3.1_3 This does a recursive delete of everything that uses that port. Then, when you add kdelibs2-2.2.2_3 and the rest back in, which takes a really long time on the slow machines, you have a working set to deal with. I actually build them and install them as packages on an AMD 1600+ XP and then move the packages to the slower machines so they don't have to do a make. Kent -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://users.owt.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 14:34:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from vms3.rit.edu (vms3.isc.rit.edu [129.21.3.10]) by hub.freebsd.org (Postfix) with ESMTP id 2627237B404 for ; Fri, 25 Jan 2002 14:34:18 -0800 (PST) Received: from sonic.rit.edu ([129.21.10.113]) by ritvax.isc.rit.edu (PMDF V5.2-32 #40294) with ESMTPA id <01KDHVPW66DOE0IICF@ritvax.isc.rit.edu> for freebsd-questions@freebsd.org; Fri, 25 Jan 2002 17:34:16 EST Date: Fri, 25 Jan 2002 17:34:09 -0500 From: Matt Penna Subject: Re: FreeBSD 4.x - lock ups + reboots In-reply-to: <20020125221659.A82704844F@wastegate.net> X-Sender: mdp1261@vmspop.isc.rit.edu To: freebsd-questions@freebsd.org Message-id: <5.1.0.14.2.20020125172313.01e48290@vmspop.isc.rit.edu> MIME-version: 1.0 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Content-type: text/plain; format=flowed; charset=us-ascii Content-transfer-encoding: 7BIT References: <20020125221143.GA1203@raggedclown.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > >> > >> sounds like bad ram to me. > >> > >> try installing and using /usr/ports/sysutils/memtest > >> > >> it helps identify if you ram is bad. > >> > >Except his problem is very similar to mine, although much more > >problematic. > >And the memory on my system laughs in derision at memtest's attempt > >to break it :) > >that is always nice... i guess time to break out the DIMM tester. I think I'll chime in, here. :) Though I've never used memtest, I've never had any other software memory tester tell me anything useful. For hardware diagnostic tools, my very strong recommendation goes to Ultra-X. You can find them at www.uxd.com or www.ultra-x.com (If you type in the latter, don't forget the hyphen or you'll end up at an adult site.) Their products are expensive and aimed at the professional market, so they aren't really intended for someone who has to test memory once on just one machine. A lot of hardware passes through my hands and I maintain a lot of systems, so it was well worth the investment for me. The last card I bought from them, the PhD PCI was about $1200 US last I checked, but I got it for $1000 because I was a previous customer. I've never had their cards fail to identify a memory problem. There are also other diagnostics built in for testing motherboards, CPUs, disk drives of all types, etc. The time and money they've saved me has paid for the test equipment many times over. This sounds a lot like a commercial... Matt -- Matt Penna mdp1261@rit.edu ICQ: 399825 S0ba on AOLIM "The trouble with computers, of course, is that they're very sophisticated idiots." -Dr. Who To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 14:54:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from padu.brownforces.org (padu.brownforces.org [216.43.25.141]) by hub.freebsd.org (Postfix) with ESMTP id 993D337B400 for ; Fri, 25 Jan 2002 14:54:08 -0800 (PST) Received: (from vkulkarn@localhost) by padu.brownforces.org (8.10.1/8.9.3) id g0PMrxa30182 for questions@freebsd.org; Fri, 25 Jan 2002 16:53:59 -0600 (CST) Date: Fri, 25 Jan 2002 16:53:59 -0600 From: Vikram Kulkarni To: questions@freebsd.org Subject: Re: 64-bit PCI mobos Message-ID: <20020125165359.A8597@padu.brownforces.org> Reply-To: Vikram Kulkarni References: <81.1687a364.29830cb1@aol.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.2i In-Reply-To: <81.1687a364.29830cb1@aol.com>; from TD790@aol.com on Fri, Jan 25, 2002 at 02:32:01PM -0500 X-Choosen-Adhesive: Duct Tape Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 02:32:01PM -0500, TD790@aol.com wrote: > > Tyan doesnt know how to make stable MBs..they all have power problems > (one that we used needed 250W otherwise it would reboot). I have never had any trouble with any of the Tyan motherboards I have used... -Vik -- vikram kulkarni Some people are alive only because vkulkarn@uiuc.edu it is illegal to kill them. vkulkarn@brownforces.org -Unknown To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 15:12:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from HAL9000.wox.org (12-232-222-90.client.attbi.com [12.232.222.90]) by hub.freebsd.org (Postfix) with ESMTP id 02F4037B402 for ; Fri, 25 Jan 2002 15:12:29 -0800 (PST) Received: (from dschultz@localhost) by HAL9000.wox.org (8.11.3/8.11.3) id g0PNERC71123; Fri, 25 Jan 2002 15:14:27 -0800 (PST) (envelope-from dschultz) Date: Fri, 25 Jan 2002 15:14:27 -0800 From: David Schultz To: Simon Siemonsma Cc: igorr@speechpro.com, freebsd-questions@FreeBSD.ORG Subject: Re: Fwd: Re: java in 4.5? Message-ID: <20020125151427.A71107@HAL9000.wox.org> Mail-Followup-To: Simon Siemonsma , igorr@speechpro.com, freebsd-questions@FreeBSD.ORG References: <20020124184006.67A66337@fia168-94.dsl.hccnet.nl> <20020125074338.GB72464@sysadm.stc> <20020125191828.4496E68@fia168-94.dsl.hccnet.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020125191828.4496E68@fia168-94.dsl.hccnet.nl>; from simon.freebsd@hccnet.nl on Fri, Jan 25, 2002 at 08:18:27PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Simon Siemonsma : > With ports you normally just type make install in the ports directory and it > installs. As far as I understood it is different with the Java port. That is > way I used the word strange, because it is different from the other ports. That is because Sun has a restrictive license for the source code. The binary package, when it has passed Sun's JCK tests, will not suffer from that problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 15:20:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r10.mx.aol.com (imo-r10.mx.aol.com [152.163.225.106]) by hub.freebsd.org (Postfix) with ESMTP id 83B6337B42B for ; Fri, 25 Jan 2002 15:19:57 -0800 (PST) Received: from TD790@aol.com by imo-r10.mx.aol.com (mail_out_v31_r1.26.) id y.16c.7bc1739 (25306); Fri, 25 Jan 2002 18:19:38 -0500 (EST) From: TD790@aol.com Message-ID: <16c.7bc1739.2983420a@aol.com> Date: Fri, 25 Jan 2002 18:19:38 EST Subject: Re: 64-bit PCI mobos To: vkulkarn@brownforces.org Cc: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: AOL 5.0 for Windows sub 139 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In a message dated 01/25/2002 5:54:33 PM Eastern Standard Time, vkulkarn@brownforces.org writes: > > > > Tyan doesnt know how to make stable MBs..they all have power problems > > (one that we used needed 250W otherwise it would reboot). > > I have never had any trouble with any of the Tyan motherboards I have > used... > Which implies that you have been lucky. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 15:28:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 65FE537B402 for ; Fri, 25 Jan 2002 15:28:44 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C46B566B74; Fri, 25 Jan 2002 15:28:43 -0800 (PST) Date: Fri, 25 Jan 2002 15:28:43 -0800 From: Kris Kennaway To: Ziga Turk Cc: questions@freebsd.org Subject: Re: How to change default crypt method after install Message-ID: <20020125152843.B70000@xor.obsecurity.org> References: <3C514498.15289.ADECD7@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="U+BazGySraz5kW0T" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <3C514498.15289.ADECD7@localhost>; from ziga.turk@itc.fgg.uni-lj.si on Fri, Jan 25, 2002 at 11:42:16AM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --U+BazGySraz5kW0T Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 25, 2002 at 11:42:16AM +0100, Ziga Turk wrote: > Installing one of my freeBSD 4.4 systems I guess I must have selected=20 > DES as the default crypt method. All other use MD5. I use some date=20 > encrypted using the crypt function (in Perl) and it seems to be using=20 > DES method. I want it to use MD5. >=20 > How can I make, in freeBSD 4.4, MD5 as the default crypt method. Not=20 > for passwords, but for the crypt() function. In 4.4 the relinking of=20 > libcrypt.a is not advised. man 5 login.conf Kris --U+BazGySraz5kW0T Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8UeorWry0BWjoQKURAsUQAJ9hboEZK1AE58rwf/dWRQykgcrVggCfXpjl Ph0/093+1qz1In3fFIMDJ4w= =6ran -----END PGP SIGNATURE----- --U+BazGySraz5kW0T-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 15:32:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by hub.freebsd.org (Postfix) with ESMTP id C9AF637B400 for ; Fri, 25 Jan 2002 15:32:43 -0800 (PST) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id PAA14345; Fri, 25 Jan 2002 15:32:38 -0800 Message-ID: <3C51EB15.5070407@owt.com> Date: Fri, 25 Jan 2002 15:32:37 -0800 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Kent Stewart Cc: Neil McGann , freebsd-questions@FreeBSD.ORG Subject: Re: UDMA and 100Mbit NIC speed issues References: <5.1.0.14.0.20020125204321.00a0f4c0@pop.ntlworld.com> <3C51D185.2090600@owt.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Kent Stewart wrote: > > > Neil McGann wrote: > >> I'm seeing a problem with network upload speed using 4.4-Release when >> the HD is in DMA mode. Basically the same as problem report >> kern/32338, but the possible fix doesn't work for me. >> >> Machine is a ASUS Cuple-vm mobo (VIA PLE133), 400MHz celeron, Netgear >> FA311 NIC and IBM 60GX 60Gb deskstar on ULTRA100. Network is >> full-duplex thro a 100Mbit switch. >> >> Symptom is ftp upload is very slow in DMA HD mode 5 and much faster in >> PIO mode. I see up/down of a (approx.) 100Mb file at 50s/29s in PIO >> and 3m50s/33s in UDMA. > > > > I have an ECS-K7S5A and an Amptron 830LM that have on board ATA-100 and > 100Mps networking. I am consistently seeing 11MB/s transfers between the > systems. There are usually some shared IRQ such as the AGP and the 1st > PCI slot. When I have an AGP video, I don't use the first slot. > > >> >> I have tried disabling the on-board video, and then using a 3Com >> 3C905B NIC, but the massive slowdown is the same. I tried a different >> FA311 in a dual-boot Linux 2.4.x/Win 2K machine with a 40Gb version of >> the same IBM drive (but a ULTRA66 controller on a 1GHz PIII) and Linux >> showed _exactly_ the same slow-down symptom as FreeBSD. Win2K didn't >> slow down - it was faster overall in TCP/IP (40sec/15sec) and MUCH >> faster in SMB (15sec/15sec). > > > > > I don't have a 100MB file but I can transfer the packages for kde-2.2.2, > which have a number of 9+MB files and see 11+MB/s on W2K. I don't see a > difference in transfer rates on the SiS-735 chipset motherboards. > > Kent > > >> >> So - what is killing the performance in FreeBSD (and Linux) where >> Win2K is much faster???? (is w2K doing adaptive disk throttling to >> maximise network bandwith???) >> >> Anyone got suggestions of how to start looking at this? I'm relatively >> new to freeBSD and very pleased with it overall, but on the same >> hardware W2K wipes the floor with it on sheer network/disk speed (at >> least on UDMA/100Mbit). Your problem got me curious and I found a copy of the 4.5-rc1.iso, which is 676Mb. When I transfered it from nomad (P-III 450), which is my W2K server, to coral running 4.5-rc, the transfer required 156 seconds. Nomad to opal required 140 seconds. I then ftped it to opal from coral, which is also running 4.5-rc and it required 59 seconds (11.4 MB/s). Transfering it back from opal > coral required a similar amount of time. Nomad to either machine is slower than coral (FreeBSD) to opal (FreeBSD) and I tried it running both FreeBSD and W2K Pro on opal. Nomad is slower all of the time. I am curious what kind of setup you have. Since we are not seeing the same transfer rate between FreeBSD machines, I have to assume you have something configured differently than I do. An ifconfig on coral shows sis0: flags=8843 mtu 1500 inet 192.168.0.17 netmask 0xffffff00 broadcast 192.168.0.255 ether 00:07:95:0b:0c:31 media: Ethernet autoselect (100baseTX ) status: active This is basically a default setup. The only difference on opal is the internal ether address and IP. I have all of my systems hooked up to 10/100 baseT switches and are all running full-duplex. They are on different floors. I have nomad and opal on the same switch and coral is in the basement and on the second switch. Nomad uses an Intel Pro 10/100+ and coral and opal are using the SiS-900 builtin NIC, which was just added to the 4.5 support. Kent -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://users.owt.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 15:33:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta02ps.bigpond.com (mta02ps.bigpond.com [144.135.25.134]) by hub.freebsd.org (Postfix) with ESMTP id 1481837B400 for ; Fri, 25 Jan 2002 15:33:16 -0800 (PST) Received: from MICHAEL2 ([144.135.25.87]) by mta02ps.bigpond.com (Netscape Messaging Server 4.15) with SMTP id GQIPR900.9Q1 for ; Sat, 26 Jan 2002 09:40:21 +1000 Received: from CPE-203-45-56-251.vic.bigpond.net.au ([203.45.56.251]) by psmam07.mailsvc.email.bigpond.com(MailRouter V3.0h 125/1916537); 26 Jan 2002 09:33:12 Message-ID: <004c01c1a5f8$b1dc93e0$2e01a8c0@MICHAEL2> From: "Michael Vince" To: References: <20020125221836.D409BD7@fia168-94.dsl.hccnet.nl> Subject: Re: problems building kde app. Date: Sat, 26 Jan 2002 10:33:29 +1100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I use the KDE precompiled binary packages for FreeBSD from the KDE web site. They have the latest precompiled binaries for 2.2.2 and all the other libraries you need. They work like a charm. ftp://ftp.kde.org/pub/kde/stable/2.2.2/FreeBSD/All ----- Original Message ----- From: "Simon Siemonsma" To: Sent: Saturday, January 26, 2002 9:18 AM Subject: problems building kde app. > When trying to build Kmymoney2 from the ports I get the following error: > > checking for moc... not found configure: error: No Qt meta object compiler > (moc) found! Please check whether you installed Qt correctly. > You need to have a running moc binary. configure tried to run and the test > didn't succeed. If configure shouldn't have tried this one, set the > environment variable MOC to the right one before running configure. > > Can anyone tell me what a MOC is and how I can solve this? > > Regards, > > Simon Siemonsma > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 15:34:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 5E96237B404 for ; Fri, 25 Jan 2002 15:34:45 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id E3FC466B74; Fri, 25 Jan 2002 15:34:33 -0800 (PST) Date: Fri, 25 Jan 2002 15:34:33 -0800 From: Kris Kennaway To: scott worley Cc: freebsd-questions Subject: Re: FreeBSD boot loaders? Message-ID: <20020125153433.C70000@xor.obsecurity.org> References: <20020125122444.0b327c4d.folokai@earthlink.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="Md/poaVZ8hnGTzuv" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020125122444.0b327c4d.folokai@earthlink.net>; from folokai@earthlink.net on Fri, Jan 25, 2002 at 12:24:44PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --Md/poaVZ8hnGTzuv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jan 25, 2002 at 12:24:44PM -0800, scott worley wrote: > Just moved my main workstation from linux to FreeBSD 4.5RC2. I was > comfortable using GRUB on linux but I haven't found good documention > on configuring the FreeBSD boot loaders. You can use GRUB to boot FreeBSD too. > There are hints of a highly configurable boot loader for freebsd in > the docs plus I see files in /boot which have options in them. > Where are examples on how it? This is the third stage boot loader which is only loaded after the first and second stage bootloaders :-) See 'man boot' for more. > I can always install the port of grub but it doens't like netbsd > which I'm going to load on the same machine. Sounds like this is actually a NetBSD question then; but there are also a bunch of other boot loaders which can load FreeBSD. Some of them are in the 'tools' directory on the CD releases (or in the corresponding directory on the FTP sites) and there's also a FAQ about this which you should read at this point. > Do freebsd boot manager(s) require disklabels on all disks? No, but FreeBSD does if you intend to actually mount anything on that disk ;) Kris --Md/poaVZ8hnGTzuv Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8UeuJWry0BWjoQKURAh3fAJoDD3qzs37NfYbR1TQMmDMMLiZfJQCfT1tt dLgHVNQtQpZS9j4JrZXmJAY= =ZltW -----END PGP SIGNATURE----- --Md/poaVZ8hnGTzuv-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 15:35:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 217A737B417; Fri, 25 Jan 2002 15:35:39 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7A1FD66B74; Fri, 25 Jan 2002 15:35:38 -0800 (PST) Date: Fri, 25 Jan 2002 15:35:38 -0800 From: Kris Kennaway To: "keithmcd @ indigo. ie" Cc: questions@freebsd.org, newbies@freebsd.org Subject: Re: /usr/libexec/ld-elf.so.1: Shared object "libssl.so.2" not found Message-ID: <20020125153538.D70000@xor.obsecurity.org> References: <02012516302800.01311@localhost.localdomain> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="sgneBHv3152wZ8jf" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <02012516302800.01311@localhost.localdomain>; from keithmcd@indigo.ie on Fri, Jan 25, 2002 at 04:30:28PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --sgneBHv3152wZ8jf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 25, 2002 at 04:30:28PM -0500, keithmcd @ indigo. ie wrote: > Hi all , >=20 > Does anyone out there recognise this error ? >=20 > /usr/libexec/ld-elf.so.1: Shared object "libssl.so.2" not found >=20 > I have installed 4.2-release & crypto distribution . >=20 > What must I do to fix the problem ? Upgrade to a later release of FreeBSD (4.2 contains libssl.so.1), or use an earlier version of the software which is built for 4.2. kris --sgneBHv3152wZ8jf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8UevKWry0BWjoQKURAmS1AJ9aym4QI1J4sWtqIokGzRMnfhbSsQCgvfru 5jbth7tN9EjaaqqWg0vQc1Y= =PFcS -----END PGP SIGNATURE----- --sgneBHv3152wZ8jf-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 15:40:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.velosystems.net (cx144844-b.pv1.ca.home.com [24.9.137.174]) by hub.freebsd.org (Postfix) with ESMTP id AFB8537B41B for ; Fri, 25 Jan 2002 15:40:11 -0800 (PST) Received: from win2kads (ms [192.168.1.5]) by mail.velosystems.net (Postfix) with SMTP id 09EB150783; Fri, 25 Jan 2002 15:40:10 -0800 (PST) Message-ID: <004d01c1a5f7$dcc77990$0501a8c0@win2kads> From: "Steve Wingate" To: , Cc: References: <16c.7bc1739.2983420a@aol.com> Subject: Re: 64-bit PCI mobos Date: Fri, 25 Jan 2002 15:27:32 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > Tyan doesnt know how to make stable MBs..they all have power problems > > > (one that we used needed 250W otherwise it would reboot). > > > > I have never had any trouble with any of the Tyan motherboards I have > > used... > > > > Which implies that you have been lucky. > Or that the other guy was simply unlucky. My Tyan boards haven't been much trouble either. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 15:50:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id A5EB837B404 for ; Fri, 25 Jan 2002 15:50:42 -0800 (PST) Received: from neildesk.neilmcgann.co.uk ([213.107.105.120]) by mta01-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020125235042.DJOT9422.mta01-svc.ntlworld.com@neildesk.neilmcgann.co.uk>; Fri, 25 Jan 2002 23:50:42 +0000 Message-Id: <5.1.0.14.0.20020125232753.00a2eec0@pop.ntlworld.com> X-Sender: neil.mcgann@pop.ntlworld.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Fri, 25 Jan 2002 23:51:16 +0000 To: Kent Stewart From: Neil McGann Subject: Re: UDMA and 100Mbit NIC speed issues Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <3C51D185.2090600@owt.com> References: <5.1.0.14.0.20020125204321.00a0f4c0@pop.ntlworld.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >At 13:43 25/01/02 -0800, you wrote: Neil McGann wrote: > >I'm seeing a problem with network upload speed using 4.4-Release when the HD is in DMA mode. Basically the same as >problem report kern/32338, but the possible fix doesn't work for me. Machine is a ASUS Cuple-vm mobo (VIA PLE133), >400MHz celeron, Netgear FA311 NIC and IBM 60GX 60Gb deskstar on ULTRA100. Network is full-duplex thro a 100Mbit switch. >Symptom is ftp upload is very slow in DMA HD mode 5 and much faster in PIO mode. I see up/down of a (approx.) 100Mb file at >50s/29s in PIO and 3m50s/33s in UDMA. > >I have an ECS-K7S5A and an Amptron 830LM that have on board ATA-100 and 100Mps networking. I am consistently seeing >11MB/s transfers between the systems. There are usually some shared IRQ such as the AGP and the 1st PCI slot. When I >have an AGP video, I don't use the first slot. Common thread in both my machines is a VT82C686B southbridge. I've carefully selected the slots for no shared net/disk interrupts, but something is really stomping performance on receive. All these 100Mb net cards have comically small buffers, which I guess makes them really sensitive to chip-set parameters and latencies. It's interesting to watch the upload with UDMA disk - the first second-ish of transfers is quick, maybe at the 2Mb/sec rate and then it tapers away to around 450kb/sec. I've got a feeling that would be telling me something important if I knew how the TCP/IP stack worked ;-) Neil To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 15:59:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id 99DBE37B417 for ; Fri, 25 Jan 2002 15:59:51 -0800 (PST) Received: from neildesk.neilmcgann.co.uk ([213.107.105.120]) by mta01-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020125235950.DQRR9422.mta01-svc.ntlworld.com@neildesk.neilmcgann.co.uk>; Fri, 25 Jan 2002 23:59:50 +0000 Message-Id: <5.1.0.14.0.20020125235403.00a1f930@pop.ntlworld.com> X-Sender: neil.mcgann@pop.ntlworld.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sat, 26 Jan 2002 00:00:29 +0000 To: Kent Stewart From: Neil McGann Subject: Re: UDMA and 100Mbit NIC speed issues Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <3C51EB15.5070407@owt.com> References: <5.1.0.14.0.20020125204321.00a0f4c0@pop.ntlworld.com> <3C51D185.2090600@owt.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 15:32 25/01/02 -0800, you wrote: >Kent Stewart wrote: > >I am curious what kind of setup you have. Since we are not seeing the same >transfer rate between FreeBSD machines, I have to assume you have >something configured differently than I do. An ifconfig on coral shows > >sis0: flags=8843 mtu 1500 > inet 192.168.0.17 netmask 0xffffff00 broadcast 192.168.0.255 > ether 00:07:95:0b:0c:31 > media: Ethernet autoselect (100baseTX ) > status: active > >This is basically a default setup. The only difference on opal is the >internal ether address and IP. > >I have all of my systems hooked up to 10/100 baseT switches and are all >running full-duplex. They are on different floors. I have nomad and opal >on the same switch and coral is in the basement and on the second switch. >Nomad uses an Intel Pro 10/100+ and coral and opal are using the SiS-900 >builtin NIC, which was just added to the 4.5 support. ifconfig shows identical parameters to yours, except I have inet6 addresses too (it's an out-of-the-box stock config, I haven't really tweaked it much yet). Does hw.atamodes show you definitely dma? Neil To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 16:36:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail8.nc.rr.com (fe8.southeast.rr.com [24.93.67.55]) by hub.freebsd.org (Postfix) with ESMTP id 2B2D437B404 for ; Fri, 25 Jan 2002 16:36:46 -0800 (PST) Received: from i8k.babbleon.org ([66.57.85.154]) by mail8.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Fri, 25 Jan 2002 18:37:10 -0500 Received: by i8k.babbleon.org (Postfix, from userid 111) id E97A63FE5; Fri, 25 Jan 2002 18:36:15 -0500 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: scott worley , freebsd-questions Subject: Re: FreeBSD boot loaders? Date: Fri, 25 Jan 2002 18:36:15 -0500 X-Mailer: KMail [version 1.3] References: <20020125122444.0b327c4d.folokai@earthlink.net> In-Reply-To: <20020125122444.0b327c4d.folokai@earthlink.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020125233615.E97A63FE5@i8k.babbleon.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You can configure "booteasy" with boot0cfg. See how easy that is? :-) On Friday 25 January 2002 03:24 pm, scott worley wrote: > Hi, > > Just moved my main workstation from linux to FreeBSD 4.5RC2. I was > comfortable using GRUB on linux but I haven't found good documention on > configuring the FreeBSD boot loaders. > > From the docs freebsd installs something called booteasy which isn't > configurable? > > There are hints of a highly configurable boot loader for freebsd in the > docs plus I see files in /boot which have options in them. Where are > examples on how it? > > Most of the docs I've found on the web are about using LILO or NT's boot > loader. > > I can always install the port of grub but it doens't like netbsd which I'm > going to load on the same machine. > > Current setup is: > /dev/da0s1 freebsd 4.5 slice(whole disk) > /dev/da1s1 linux swap > /dev/da1s2 linux /boot (set bootable) > /dev/da1s3 linux / > /dev/da1s4 empty, future netbsd > > the partitions on da1 were created after freebsd was installed so booteasy > gives me: F1 FreeBSD > F5 disk1 > > disklabel /dev/da1 spits out all the scsi drive info and > c: 17783240 0 unused 0 0 # (Cyl. 0 - 1106*) > > Do freebsd boot manager(s) require disklabels on all disks? > > thanks, > scott > folokai@earthlink.net > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org -------> Free Dmitry Sklyarov! (let him go home) <----------- http://www.eff.org http://www.programming-freedom.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 16:39: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from nycsmtp2out.rdc-nyc.rr.com (nycsmtp2out.rdc-nyc.rr.com [24.29.99.227]) by hub.freebsd.org (Postfix) with ESMTP id BA75537B41E for ; Fri, 25 Jan 2002 16:38:58 -0800 (PST) Received: from scottro11.homeunix.net (24-168-24-239.nyc.rr.com [24.168.24.239]) by nycsmtp2out.rdc-nyc.rr.com (8.12.1/Road Runner SMTP Server 1.0) with SMTP id g0Q0c4EE027499; Fri, 25 Jan 2002 19:38:04 -0500 (EST) Date: Fri, 25 Jan 2002 19:47:03 -0500 From: Scott Robbins To: "Brian T.Schellenberger" Cc: folokai@earthlink.net, freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD boot loaders? Message-Id: <20020125194703.12758784.scottro@nyc.rr.com> In-Reply-To: <20020125233615.E97A63FE5@i8k.babbleon.org> References: <20020125122444.0b327c4d.folokai@earthlink.net> <20020125233615.E97A63FE5@i8k.babbleon.org> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.5) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > > > > I can always install the port of grub but it doens't like netbsd which I'm> > going to load on the same machine. > > I was able to boot NetBSD with grub--I just used the rootnoverify (hd0,x) chainloader +1 That worked for me. HTH Scott Robbins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 17: 2:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 06F3E37B402; Fri, 25 Jan 2002 17:02:14 -0800 (PST) To: FreeBSD-questions@FreeBSD.org Subject: How to get best results from FreeBSD-questions Message-Id: <20020126010214.06F3E37B402@hub.freebsd.org> Date: Fri, 25 Jan 2002 17:02:14 -0800 (PST) From: grog@FreeBSD.ORG (Greg Lehey) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG How to get the best results from FreeBSD questions. =================================================== Last update 3 September 1999 This is a regular posting to the FreeBSD questions mailing list. If you got it in answer to a message you sent, it means that the sender thinks that at least one of the following things was wrong with your message: - You left out a subject line, or the subject line was not appropriate. - You formatted it in such a way that it was difficult to read. - You asked more than one unrelated question in one message. - You sent out a message with an incorrect date, time or time zone. - You sent out the same message more than once. - You sent an 'unsubscribe' message to FreeBSD-questions. If you have done any of these things, there is a good chance that you will get more than one copy of this message from different people. Read on, and your next message will be more successful. This document is also available on the web at http://www.lemis.com/questions.html. ===================================================================== Contents: I: Introduction II: How to unsubscribe from FreeBSD-questions III: Should I ask -questions or -hackers? IV: How to submit a question to FreeBSD-questions V: How to answer a question to FreeBSD-questions I: Introduction =============== This is a regular posting aimed to help both those seeking advice from FreeBSD-questions (the "newcomers"), and also those who answer the questions (the "hackers"). Note that the term "hacker" has nothing to do with breaking into other people's computers. The correct term for the latter activity is "cracker", but the popular press hasn't found out yet. The FreeBSD hackers disapprove strongly of cracking security, and have nothing to do with it. In the past, there has been some friction which stems from the different viewpoints of the two groups. The newcomers accused the hackers of being arrogant, stuck-up, and unhelpful, while the hackers accused the newcomers of being stupid, unable to read plain English, and expecting everything to be handed to them on a silver platter. Of course, there's an element of truth in both these claims, but for the most part these viewpoints come from a sense of frustration. In this document, I'd like to do something to relieve this frustration and help everybody get better results from FreeBSD-questions. In the following section, I recommend how to submit a question; after that, we'll look at how to answer one. II: How to unsubscribe from FreeBSD-questions ============================================== When you subscribed to FreeBSD-questions, you got a welcome message from Majordomo@FreeBSD.ORG. In this message, amongst other things, it told you how to unsubscribe. Here's a typical message: Welcome to the freebsd-questions mailing list! If you ever want to remove yourself from this mailing list, you can send mail to "Majordomo@FreeBSD.ORG" with the following command in the body of your email message: unsubscribe freebsd-questions Greg Lehey Here's the general information for the list you've subscribed to, in case you don't already have it: FREEBSD-QUESTIONS User questions This is the mailing list for questions about FreeBSD. You should not send "how to" questions to the technical lists unless you consider the question to be pretty technical. Normally, unsubscribing is even simpler than the message suggests: you don't need to specify your mail ID unless it is different from the one which you specified when you subscribed. If Majordomo replies and tells you (incorrectly) that you're not on the list, this may mean one of two things: 1. You have changed your mail ID since you subscribed. That's where keeping the original message from majordomo comes in handy. For example, the sample message above shows my mail ID as grog@lemis.de. Since then, I have changed it to grog@lemis.com. If I were to try to remove grog@lemis.com from the list, it would fail: I would have to specify the name with which I joined. 2. You're subscribed to a mailing list which is subscribed to FreeBSD-questions. If that's the case, you'll have to figure out which one it is and get your name taken off that one. If you're not sure which one it might be, check the headers of the messages you receive from freebsd-questions: maybe there's a clue there. If you've done all this, and you still can't figure out what's going on, send a message to Postmaster@FreeBSD.org, and he will sort things out for you. Don't send a message to FreeBSD-questions: they can't help you. III: Should I ask -questions, -newbies or -hackers? =================================================== Two mailing lists handle general questions about FreeBSD, FreeBSD-questions and FreeBSD-hackers. In addition, the FreeBSD-newbies list caters specifically for people who are new to FreeBSD and may be having trouble getting used to the environment. In some cases, it's not really clear which group you should ask. The following criteria should help for 99% of all questions, however: If the question is of a general nature, first check whether this isn't a Frequently Asked Question (FAQ). There's a list of these questions at http://www.freebsd.org/FAQ/FAQ.html, and also on your own system (once you've installed it) at /usr/share/doc/FAQ/FAQ.html. Check there, and if you don't find an answer, ask FreeBSD-questions. Examples might be questions about installing FreeBSD or the use of a particular UNIX utility. If you think the question relates to a bug, but you're not sure, or you don't know how to look for it, send the message to FreeBSD-questions. If the question relates to a bug, and you're almost sure that it's a bug (for example, you can pinpoint the place in the code where it happens, and you maybe have a fix), then send the message to FreeBSD-hackers. You should also enter a problem report with the send-pr utility. If the question relates to enhancements to FreeBSD, and you can make suggestions about how to implement them, then send the message to FreeBSD-hackers. If the question is of particularly technical nature, such as implementation details or suggestions for improvements, then send the message to FreeBSD-hackers. If you're new to FreeBSD, and the message is about your own relationship to FreeBSD, send the message to FreeBSD-newbies. There are also a number of other specialized mailing lists, for example FreeBSD-isp, which caters to the interests of ISPs (Internet Service Providers) who run FreeBSD. If you happen to be an ISP, this doesn't mean you should automatically send your questions to FreeBSD-isp. The criteria above still apply, and it's in your interest to stick to them, since you're more likely to get good results that way. IV: How to submit a question ============================= When submitting a question to FreeBSD-questions, consider the following points: 1. Remember that nobody gets paid for answering a FreeBSD question. They do it of their own free will. You can influence this free will positively by submitting a well-formulated question supplying as much relevant information as possible. You can influence this free will negatively by submitting an incomplete, illegible, or rude question. It's perfectly possible to send a message to FreeBSD-questions and not get an answer even if you follow these rules. It's much more possible to not get an answer if you don't. In the rest of this document, we'll look at how to get the most out of your question to FreeBSD-questions. 2. Not everybody who answers FreeBSD questions reads every message: they look at the subject line and decide whether it interests them. Clearly, it's in your interest to specify a subject. ``FreeBSD problem'' or ``Help'' aren't enough. If you provide no subject at all, many people won't bother reading it. If your subject isn't specific enough, the people who can answer it may not read it. 3. Format your message so that it is legible, and PLEASE DON'T SHOUT!!!!!. We appreciate that a lot of people don't speak English as their first language, and we try to make allowances for that, but it's really painful to try to read a message written full of typos or without any line breaks. A lot of badly formatted messages come from bad mailers or badly configured mailers. The following mailers are known to send out badly formatted messages without you finding out about them: Eudora exmh Microsoft Exchange Microsoft Internet Mail Microsoft Outlook Netscape As you can see, the mailers in the Microsoft world are frequent offenders. If at all possible, use a UNIX mailer. If you must use a mailer under Microsoft environments, make sure it is set up correctly. Try not to use MIME: a lot of people use mailers which don't get on very well with MIME. For further information on this subject, check out http://www.lemis.com/email.html. 4. Make sure your time and time zone are set correctly. This may seem a little silly, since your message still gets there, but many of the people you are trying to reach get several hundred messages a day. They frequently sort the incoming messages by subject and by date, and if your message doesn't come before the first answer, they may assume they missed it and not bother to look. 5. Don't include unrelated questions in the same message. Firstly, a long message tends to scare people off, and secondly, it's more difficult to get all the people who can answer all the questions to read the message. 6. Specify as much information as possible. This is a difficult area, and we need to expand on what information you need to submit, but here's a start: If you get error messages, don't say ``I get error messages'', say (for example) ``I get the error message 'No route to host'''. If your system panics, don't say ``My system panicked'', say (for example) ``my system panicked with the message 'free vnode isn't'''. If you have difficulty installing FreeBSD, please tell us what hardware you have. In particular, it's important to know the IRQs and I/O addresses of the boards installed in your machine. If you have difficulty getting PPP to run, describe the configuration. Which version of PPP do you use? What kind of authentication do you have? Do you have a static or dynamic IP address? What kind of messages do you get in the log file? 7. If you don't get an answer immediately, or if you don't even see your own message appear on the list immediately, don't resend the message. Wait at least 24 hours. The FreeBSD mailer offloads messages to a number of subordinate mailers around the world, and sometimes it can take several hours for the mail to get through. And once it gets through, the one person who might know the answer will probably just have gone to bed in his part of the world. 8. If you do all this, and you still don't get an answer, there could be other reasons. For example, the problem is so complicated that nobody knows the answer, or the person who does know the answer was offline. If you don't get an answer after, say, a week, it might help to re-send the message. If you don't get an answer to your second message, though, you're probably not going to get one from this forum. Resending the same message again and again will only make you unpopular. To summarize, let's assume you know the answer to the following question (yes, it's the same one in each case :-). You choose which of these two questions you would be more prepared to answer: Message 1: Subject: (none) I just can't get hits damn silly FereBSD system to workd, and Im really good at this tsuff, but I have never seen anythign sho difficult to install, it jst wont work whatever I try so why don't y9ou guys tell me what I doing wrong. ---------------------------------------------------------------------- Message 2: Subject: Problems installing FreeBSD I've just got the FreeBSD 2.1.5 CD-ROM from Walnut Creek, and I'm having a lot of difficulty installing it. I have a 66 MHz 486 with 16 MB of memory and an Adaptec 1540A SCSI board, a 1.2GB Quantum Fireball disk and a Toshiba 3501XA CD-ROM drive. The installation works just fine, but when I try to reboot the system, I get the message "Missing Operating System". ---------------------------------------------------------------------- V: How to follow up to a question ================================= Often you will want to send in additional information to a question you have already sent. The best way to do this is to reply to your original message. This has three advantages: 1. You include the original message text, so people will know what you're talking about. Don't forget to trim unnecessary text out, though. 2. The text in the subject line stays the same (you did remember to put one in, didn't you?). Many mailers will sort messages by subject. This helps group messages together. 3. The message reference numbers in the header will refer to the previous message. Some mailers, such as mutt, can thread messages, showing the exact relationships between the messages. VI: How to answer a question ============================ Before you answer a question to FreeBSD-questions, consider: 1. A lot of the points on submitting questions also apply to answering questions. Read them. 2. Has somebody already answered the question? The easiest way to check this is to sort your incoming mail by subject: then (hopefully) you'll see the question followed by any answers, all together. If somebody has already answered it, it doesn't automatically mean that you shouldn't send another answer. But it makes sense to read all the other answers first. 3. Do you have something to contribute beyond what has already been said? In general, "Yeah, me too" answers don't help much, although there are exceptions, like when somebody is describing a problem he's having, and he doesn't know whether it's his fault or whether there's something wrong with the hardware or software. If you do send a "me too" answer, you should also include any further relevant information. 4. Are you sure you understand the question? Very frequently, the person who asks the question is confused or doesn't express himself very well. Even with the best understanding of the system, it's easy to send a reply which doesn't answer the question. This doesn't help: you'll leave the person who submitted the question more frustrated or confused than ever. If nobody else answers, and you're not too sure either, you can always ask for more information. 5. Are you sure your answer is correct? If not, wait a day or so. If nobody else comes up with a better answer, you can still reply and say, for example, "I don't know if this is correct, but since nobody else has replied, why don't you try replacing your ATAPI CD-ROM with a frog?". 6. Unless there's a good reason to do otherwise, reply to the sender and to FreeBSD-questions. Many people on the FreeBSD-questions are "lurkers": they learn by reading messages sent and replied to by others. If you take a message which is of general interest off the list, you're depriving these people of their information. Be careful with group replies; lots of people send messages with hundreds of CCs. If this is the case, be sure to trim the Cc: lines appropriately. 7. Include relevant text from the original message. Trim it to the minimum, but don't overdo it. It should still be possible for somebody who didn't read the original message to understand what you're talking about. 8. Use some technique to identify which text came from the original message, and which text you add. I personally find that prepending ``> '' to the original message works best. Leaving white space after the ``> '' and leave empty lines between your text and the original text both make the result more readable. 9. Put your response in the correct place (after the text to which it replies). It's very difficult to read a thread of responses where each reply comes before the text to which it replies. 10. Most mailers change the subject line on a reply by prepending a text such as ``Re: ''. If your mailer doesn't do it automatically, you should do it manually. 11. If the submitter didn't abide by format conventions (lines too long, inappropriate subject line), please fix it. In the case of an incorrect subject line (such as ``HELP!!??''), change the subject line to (say) ``Re: Difficulties with sync PPP (was: HELP!!??)''. That way other people trying to follow the thread will have less difficulty following it. In such cases, it's appropriate to say what you did and why you did it, but try not to be rude. If you find you can't answer without being rude, don't answer. If you just want to reply to a message because of its bad format, just reply to the submitter, not to the list. You can just send him this message in reply, if you like. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 17: 3:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id EDC7E37B417; Fri, 25 Jan 2002 17:02:14 -0800 (PST) To: FreeBSD-questions@FreeBSD.org Subject: "The Complete FreeBSD", third edition: errata and addenda Message-Id: <20020126010214.EDC7E37B417@hub.freebsd.org> Date: Fri, 25 Jan 2002 17:02:14 -0800 (PST) From: grog@FreeBSD.ORG (Greg Lehey) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Errata and addenda for the Complete FreeBSD, third edition Last revision: 2 August 1999 The trouble with books is that you can't update them the way you can a web page or any other online documentation. The result is that most leading edge computer books are out of date almost before they are printed. Unfortunately, ``The Complete FreeBSD'', published by Walnut Creek, is no exception. In- evitably, a number of bugs and changes have surfaced. The following is a list of modifications which go beyond simple typos. They relate to the third edition, formatted on 17 May 1999. You'll find this information on page iv (the page before the beginning of the Table of Contents). See the end of this document for instructions on how to find the errata for an older version. You can get the current document in four forms: o A PostScript version, suitable for printing out, at ftp://ftp.lemis.com/pub/cfbsd/errata-3.ps. See page 302 of the third edition to find out how to print out PostScript. If at all possible, please take this document: it's closest to the original text. Be careful selecting this file with a web browser: it is often impossible to reload the document, and you may see a previously cached version. o An enhanced ASCII version at ftp://ftp.lemis.com/pub/cfbsd/errata-3.txt. When viewed with more or less, this version will show some highlighting and underlining. It's not suitable for direct viewing. o An ASCII-only version at ftp://ftp.lemis.com/pub/cfbsd/errata-3.ascii. This version is posted every week to the FreeBSD-questions mailing list. Only take this version if you have real problems with PostScript: I can't be sure that the lack of different fonts won't confuse the meaning. o A web version at http://www.lemis.com/errata-3.html. All these modifications have been applied to the ongoing source text of the book, so if you buy a later edition, they will be in it as well. If you find a Page 1 The Complete FreeBSD bug or a suspected bug in the book, please contact me at Page ii _______ The instructions on page ii (opposite the title page) tell you to look at ftp://ftp.lemis.com/pub/cfbsd/errata-2 for the errata list. That's wrong. Look at this list. Pages 190 and 191 _________________ The description is not very clear about which text appears when booting from floppy for initial install, and which appears when booting normally. The procedure is very similar, but there are some differences. Add the following text after the heading Boot messages: You'll boot your system in at least two different ways: initially you'll boot from floppy or CD-ROM in order to install the system. Later, after the system is installed, you'll boot from hard disk. The procedure is almost identical, so we'll look at both versions in the following examples. Replace the text from the middle of page 191 with: If you're booting from 1.44 MB floppies, you will then see: Please insert MFS root floppy and press enter: When you insert the MFS root floppy and press Enter, you see more twirling batons, then the UserConfig screen appears. UserConfig: Modifying the boot configuration ____________________________________________ After the kernel has been loaded, the following screen will appear if you are installing the system, or if you have requested it with the -c option to the boot loader: Page 206 ________ The bottom two lines on this page should be in bold constant font, indicating that this is input for your /etc/rc.config file Page 2 Errata and addenda for the Complete FreeBSD, third edition nfs_client_enable="YES" # This host is an NFS client (or NO). nfs_server_enable="YES" # This host is an NFS server (or NO). Page 265 ________ The example on the second half of the page refers to the old SCSI driver. The scsi program is no longer available in FreeBSD 3.x. Instead, use the camcontrol program. Replace the text with:. Modern disks make provisions for recovering from such errors by allocating an alternate sector for the data. IDE drives do this automatically, but with SCSI drives you have the option of enabling or disabling reallocation. Usually it is turned on when you buy them, but occasionally it is not. When installing a new disk, you should check that the parameters ARRE (Auto Read Reallocation Enable) and AWRE (Auto Write Reallocation Enable) are turned on. For example, to check and set the values for disk da1, you would enter: # camcontrol modepage da1 -m 1 -e -P 3 # scsi -f /dev/rda1c -m 1 -e -P 3 This command will start up your favourite editor (either the one specified in the EDITOR environment variable, or vi by default) with the following data: AWRE (Auto Write Reallocation Enbld): 0 ARRE (Auto Read Reallocation Enbld): 1 TB (Transfer Block): 0 RC (Read Continuous): 0 EER (Enable Early Recovery): 0 PER (Post Error): 0 DTE (Disable Transfer on Error): 0 DCR (Disable Correction): 0 Read Retry Count: 16 Correction Span: 41 Head Offset Count: 0 Data Strobe Offset Count: 0 Write Retry Count: 16 Recovery Time Limit: 0 The values for AWRE and ARRE should both be 1. If they aren't, as in this case, where AWRE is 0, change the data with the editor, save it, and exit. The camcontrol program will write the data back to the disk and enable the option. Page 3 The Complete FreeBSD Page 331 ________ The description of the config refers to the SCSI drive sd0. This is the old name; in FreeBSD version 3, SCSI drives are called da, so this reference should be da0. Thanks to Francisco Reyes for pointing out this problem. Page 362 ________ Replace the text at the top of the page with: Next, change to the build directory and build the kernel: # cd ../../compile/FREEBIE # make depend # make The make depend is needed even if the directory has just been created: apart from creating dependency information, it also creates some files needed for the build. Thanks to Mark Ovens for drawing this to my attention, and to Francisco Reyes and Bill Fumerola for pointing out that it still wasn't fixed in the third edition. Page 409 ________ The information on setting the default routers specified the wrong end of the PPP links in some places. It should always be the ``far'' end of the link. Replace the second example on page 409, and the text following it, with this text: defaultrouter="139.130.136.129" # Set to default gateway (or NO). static_routes="" # Set to static route list (or leave empty). gateway_enable="YES" # Set to YES if this host will be a gateway. This is the normal way to set the default route on a point-to-point interface. In fact, for PPP you don't need to specify the default address: the PPP packages will set it for you when the link comes up. This makes it possible to Page 4 Errata and addenda for the Complete FreeBSD, third edition set default routes when you're forced to use dynamic IP addresses, where you don't know the address at this point. We'll see how PPP does this on page 446. In the first example on page 410, the sixth example on page 412 and the second example on page 413, replace the defaultrouter definition with: defaultrouter="139.130.237.65" # Set to default gateway (or NO). Thanks to Andreas Longwitz for pointing out this error. Getting errata for older editions of the book _____________________________________________ There have been a total of five different versions of ``The Complete FreeBSD''. The most accurate way to distinguish them is by the format date, which you'll find at the bottom of page iv (the page before the beginning of the Table of Contents) in all versions of the book. 1. The first was titled ``Installing and running FreeBSD'', and was formatted on 24 February 1996. No errata list exists for this book. 2. For the first edition (19 July 1996), get ftp://ftp.lemis.com/pub/cfbsd/er- rata-1. This same file is also available via the web link http://www.lemis.com/errata-1. I am no longer updating this errata list. 3. The list for the second edition (16 December 1997) is available in four forms: o A PostScript version, suitable for printing out, at ftp://ftp.lemis.com/pub/cfbsd/errata-2.ps. See page 222 of the second edition to find out how to print out PostScript. If at all possible, please take this document: it's closest to the original text. Be careful selecting this file with a web browser: it is often impossible to reload the document, and you may see a previously cached version. o An enhanced ASCII version at ftp://ftp.lemis.com/pub/cfbsd/errata-2.txt. When viewed with more or less, this version will show some highlighting and underlining. It's not suitable for direct viewing. o An ASCII-only version at ftp://ftp.lemis.com/pub/cfbsd/errata-2.ascii. This version is posted every week to the FreeBSD-questions mailing list. Only Page 5 Getting errata for older editions of the book take this version if you have real problems with PostScript: I can't be sure that the lack of different fonts won't confuse the meaning. o A web version at http://www.lemis.com/errata-2.html. 4. The revised second edition was formatted on 11 February 1999. As the name suggests, it's not a complete new edition: in fact, only three chapters are different: o The chapter ``Setting up X11'' has been brought up to date. o Appendix D (``Contents of the Ports Collection'') has been replaced by two appendixes, ``Errata and Addenda'' (the errata list up to date at the time) and ``FreeBSD 3.0'', which describes the differences between FreeBSD 2.x and FreeBSD 3.x. There is no separate errata list for this book. Refer to the second edition errata list. 5. The current, third edition, formatted on 17 May 1999. This is the correct list for this edition. Page 6 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 17: 4:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 3BB0437B416; Fri, 25 Jan 2002 17:02:14 -0800 (PST) To: FreeBSD-questions@FreeBSD.org Subject: "The Complete FreeBSD", second edition: errata and addenda Message-Id: <20020126010214.3BB0437B416@hub.freebsd.org> Date: Fri, 25 Jan 2002 17:02:14 -0800 (PST) From: grog@FreeBSD.ORG (Greg Lehey) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Errata and addenda for the Complete FreeBSD, second edition Last revision: 21 June 1999 The trouble with books is that you can't update them the way you can a web page or any other online documentation. The result is that most leading edge computer books are out of date almost before they are printed. Unfortunately, ``The Complete FreeBSD'', published by Walnut Creek, is no exception. In- evitably, a number of bugs and changes have surfaced. The following is a list of modifications which go beyond simple typos. They relate to the second edition, formatted on 16 December 1997. If you have this book, please check this list. If you have the first edition of 19 July 1996, please check ftp://ftp.lemis.com/pub/cfbsd/errata-1. This same file is also available via the web link http://www.lemis.com/. This list is available in four forms: o A PostScript version, suitable for printing out, at ftp://ftp.lemis.com/pub/cfbsd/errata-2.ps. See page 222 of the book to find out how to print out PostScript. If at all possible, please take this document: it's closest to the original text. Be careful selecting this file with a web browser: it is often impossible to reload the document, and you may see a previously cached version. o An enhanced ASCII version at ftp://ftp.lemis.com/pub/cfbsd/errata-2.txt. When viewed with more or less, this version will show some highlighting and underlining. It's not suitable for direct viewing. o An ASCII-only version at ftp://ftp.lemis.com/pub/cfbsd/errata-2.ascii. This version is posted every week to the FreeBSD-questions mailing list. Only take this version if you have real problems with PostScript: I can't be sure that the lack of different fonts won't confuse the meaning. o A web version at http://www.lemis.com/errata-2.html. All these modifications have been applied to the ongoing source text of the book, so if you buy a later edition, they will be in it as well. If you find a Page 1 The Complete FreeBSD bug or a suspected bug in the book, please contact me at General changes _______________ o In a number of places, I suggest the use of the following command to find process information: $ ps aux | grep foo Unfortunately, ps is sensitive to the column width of the terminal emulator upon which it is working. This command usually works fine on a relatively wide xterm, but if you're running on an 80-column terminal, it may truncate exactly the information you're looking for, so you end up with no output. You can fix that with the w option: $ ps waux | grep foo Thanks to Sue Blake for this information Location of the sample files ____________________________ On the 2.2.5 CD-ROM only, the location of the sample files does not match the specifications in the book (/book on the first CD-ROM). The 2.2.5 CD-ROM came out before the book, and it contains the files on the third (repository) CD-ROM as a single gzipped tar file /xperimnt/cfbsd/cfbsd.tar.gz. It contains the following files: drwxr-xr-x jkh/jkh 0 Oct 17 13:01 1997 cfbsd/ drwxr-xr-x jkh/jkh 0 Oct 17 13:01 1997 cfbsd/mutt/ -rw-r--r-- jkh/jkh 352 Oct 15 15:21 1997 cfbsd/mutt/.mail_aliases -rw-r--r-- jkh/jkh 9394 Oct 15 15:22 1997 cfbsd/mutt/.muttrc drwxr-xr-x jkh/jkh 0 Oct 17 14:02 1997 cfbsd/scripts/ -rw-r--r-- jkh/jkh 18281 Oct 16 16:52 1997 cfbsd/scripts/.fvwm2rc -rwxr-xr-x jkh/jkh 1392 Oct 17 12:54 1997 cfbsd/scripts/install-desktop -rw-r--r-- jkh/jkh 296 Oct 17 12:35 1997 cfbsd/scripts/.xinitrc -rwxr-xr-x jkh/jkh 622 Oct 17 13:51 1997 cfbsd/scripts/install-rcfiles -rw-r--r-- jkh/jkh 1133 Oct 17 13:00 1997 cfbsd/scripts/Uutry -rw-r--r-- jkh/jkh 1028 Oct 17 14:02 1997 cfbsd/scripts/README drwxr-xr-x jkh/jkh 0 Oct 18 19:32 1997 cfbsd/docs/ -rw-r--r-- jkh/jkh 199111 Oct 16 14:29 1997 cfbsd/docs/packages.txt Page 2 Errata and addenda for the Complete FreeBSD, second edition -rw-r--r-- jkh/jkh 189333 Oct 16 14:28 1997 cfbsd/docs/packages-by-category.txt -rw-r--r-- jkh/jkh 188108 Oct 16 14:29 1997 cfbsd/docs/packages.ps -rw-r--r-- jkh/jkh 226439 Oct 16 14:27 1997 cfbsd/docs/packages-by-category.ps -rw-r--r-- jkh/jkh 788 Oct 16 15:01 1997 cfbsd/README -rw-r--r-- jkh/jkh 248 Oct 17 11:52 1997 cfbsd/errata To extract one of these files, say cfbsd/docs/packages.txt, and assuming you have the CD-ROM mounted as /cdrom, enter: # cd /usr/share/doc # tar xvzf /cdrom/xperimnt/cfbsd/cfbsd.tar.gz cfbsd/docs/packages.txt See page 209 for more information on using tar. These files are an early version of what is described in the book. I'll put up some updated versions on ftp://ftp.lemis.com/ in the near future. Thanks to Frank McCormick for drawing this to my attention. Chapter 8: Setting up X11 _________________________ For FreeBSD 2.2.7, this chapter has changed sufficiently to make it impractical to distribute errata. You can download the PostScript version from ftp://www.lemis.com/pub/cfbsd/xsetup.ps, or the ASCII version from ftp://www.lemis.com/pub/cfbsd/xsetup.txt. No HTML version is available. Page xxxiv __________ Before the discussion of the shell prompts in the middle of the page, add: In this book, I recommend the use of the Bourne shell or one of its descendents (sh, bash, pdksh, ksh or zsh). With the exception of sh, they are all in the Ports Collection. I personally use the bash shell. This is a personal preference, and a recommendation, but it's not the standard shell. The standard BSD shell is the C shell (csh), which has a fuller- featured descendent tcsh. In particular, the standard installation sets the root user up with a csh. See page 152 (in this errata) for details of how to change the shell. Page 3 General changes Page 11: Reading the handbook _____________________________ The CD-ROM now includes Netscape. Replace the last paragraph on the page and the example on the following page with: If you're running X, you can use a browser like netscape to read the handbook. If you don't have X running yet, use lynx. Both of these programs are included on the CD-ROM. To install them, enter: # pkg_add /cdrom/packages/All/netscape-communicator-4.5.tgz or # pkg_add /cdrom/packages/All/lynx-2.8.1.1.tgz The numbers after the name (4.5 and 2.8.1.1) may change after this book has been printed. Use ls to list the names if you can't find these particular versions. Note that lynx is not a complete substitute for netscape: since it is text- only, it is not capable of displaying the large majority of web pages correctly. It will suffice for reading most of the handbook, however. Thanks to Stuart Henderson and for drawing this to my attention. Page 12: Printing the handbook ______________________________ The instructions for formatting the handbook are obsolete. Replace the section starting Alternatively, you can print out the handbook with the following text: Alternatively, you can print out the handbook. You need to have the documentation sources (/usr/doc) installed on your system. You can find them on the second CD-ROM in the directory of the same name. To install them, first mount your CD-ROM (see page 175). Then enter: $ cd /cdrom/usr/doc/handbook $ mkdir -p /usr/doc/handbook you may need to be root for this operation $ cp -pr * /usr/doc/handbook You have a choice of formats for the output: o ascii will give you plain 7-bit ASCII output, suitable for reading on a character-mode terminal. Page 4 Errata and addenda for the Complete FreeBSD, second edition o html will give you HTML output, suitable for browsing with a web browser. o latex will give you LATEX format, suitable for further processing with TEX and LATEX. o ps will give you PostScript output, probably the best choice for printing. o roff will give you output in troff source. You can process this output with nroff or troff, but it's currently not very polished. LATEX output is a better choice if you want to process it further. Once you have decided your format, use make to create the document. For example, if you decide on PostScript format, you would enter: $ make FORMATS=ps This creates a file handbook.ps which you can then print to a PostScript printer or with the aid of ghostscript (see page 222). Thanks to Bob Beer for drawing this to my attention. Page 45: Preparing floppies for installation _____________________________________________ Replace the paragraph below the list of file names (in the middle of the page) with: The floppy set should contain the file bin.inf and the ones whose names start with bin. followed by two letters. These other files are all 240640 bytes long, except for the final one which is usually shorter. Use the MS-DOS COPY program to copy as many files as will fit onto each disk (5 or 6) until you've got all the distributions you want packed up in this fashion. Copy each distribution into subdirectory corresponding to the base name--for example, copy the bin distribution to the files A:\BIN\BIN.INF, A:\BIN\BIN.AA and so on. Page 80 and 81 ______________ In a couple of examples, the FreeBSD partition is shown as type 164. It should be 165. Thanks to an unknown contributer for this correction (sorry, I lost your name). Page 5 General changes Page 88: setting up for dumping _______________________________ The example mentions a variable savecore in /etc/rc.conf. This variable is no longer used--it's enough to set the variable dumpdev. Page 92 _______ At the end of the section How to install a package add the text: Alternatively, you can install packages from the /stand/sysinstall Final Configuration Menu. We saw this menu on page in figure 4-14 on page 71. When you start sysinstall from the command line, you get to this menu by selecting Index, and then selecting Configure. Page 93 _______ Before the heading Install ports from the first CD-ROM add: Install ports when installing the system ________________________________________ The file ports/ports.tgz on the first CD-ROM is a tar archive containing all the ports. You can install it with the base system if you select the Custom distribution and include the ports collection. If you didn't install them at the time, use the following method to install them all (about 40 MB). Make sure your CD-ROM is mounted (in this example on /cdrom), and enter: Page 96 _______ Replace the example at the top of the page with: Instead, do: # cd /cd4/ports/distfiles # mkdir -p /usr/ports/distfiles make sure you have a distfiles directory # for i in *; do > ln -s /cd4/ports/distfiles/$i /usr/ports/distfiles/$i > done Page 6 Errata and addenda for the Complete FreeBSD, second edition If you're using csh or tcsh, enter: # cd /cd4/ports/distfiles # mkdir -p /usr/ports/distfiles make sure you have a distfiles directory # foreach i (*) ? ln -s /cd4/ports/distfiles/$i /usr/ports/distfiles/$i ? end Thanks to Christopher Raven and Francois Jacques for drawing this to my attention. Page 104 ________ The examples at the bottom of the page and the top of the next page specify the wrong directory (/usr). It should be /usr/X11R6. Replace the examples with: For a full install, choose /cdrom/dists/XF86331/X331*.tgz. If you are using sh, enter: # cd /usr/X11R6 # for i in /cdrom/dists/XF86331/X331*.tgz; do # tar xzf $i # done If you are using csh, enter: % cd /usr/X11R6 % foreach i (/cdrom/dists/XF86331/X331*.tgz) % tar xzf $i % end For a minimal installation, first choose a server archive corresponding to your VGA board. If table 8-2 on page 103 doesn't give you enough information, check the server man pages, starting on page 1545, which list the VGA chip sets supported by each server. For example, if you have an ET4000 based board you will use the XF86_SVGA server. In this case you would enter: # cd /usr/X11R6 # tar xzf /cdrom/dists/XF86331/X331SVGA.tgz substitute your server name here # for i in bin fnts lib xicf; do # tar xzf /cdrom/dists/XF86331/X331$i.tgz # done Page 7 Install ports when installing the system If you are using csh, enter: % cd /usr/X11R6 % tar xzf /cdrom/dists/XF86331/X331SVGA.tgz substitute your server name here % foreach i (bin fnts lib xicf) % tar xzf /cdrom/dists/XF86331/$i % end Thanks to Manuel Enrique Garcia Cuesta for pointing out this one. Page 128 ________ Replace the complete text below the example with the following: These values are defaults, and many are either incorrect for FreeBSD (for example the device name /dev/com1) or do not apply at all (for example Xqueue). If you are configuring manually, select one Protocol and one Device entry from the following selection. If you must use a two-button mouse, uncomment the keyword Emulate3Buttons--in this mode, pressing both mouse buttons simultane- ously within Emulate3Timeout milliseconds causes the server to report a middle button press. Section "Pointer" Protocol "Microsoft" for Microsoft protocol mice Protocol "MouseMan" for Logitech mice Protocol "PS/2" for a PS/2 mouse Protocol "Busmouse" for a bus mouse Device "/dev/ttyd0" for a mouse on the first serial port Device "/dev/ttyd1" for a mouse on the second serial port Device "/dev/ttyd2" for a mouse on the third serial port Device "/dev/ttyd3" for a mouse on the fourth serial port Device "/dev/psm0" for a PS/2 mouse Device "/dev/mse0" for a bus mouse Emulate3Buttons only for a two-button mouse EndSection You'll notice that the protocol name does not always match the manufacturer's Page 8 Errata and addenda for the Complete FreeBSD, second edition name. In particular, the Logitech protocol only applies to older Logitech mice. The newer ones use either the MouseMan or Microsoft protocols. Nearly all modern serial mice run one of these two protocols, and most run both. If you are using a bus mouse or a PS/2 mouse, make sure that the device driver is included in the kernel. The GENERIC kernel contains drivers for both mice, but the PS/2 driver is disabled. Use UserConfig (see page 50) to enable it. Page 140 ________ Just before the paragraph The super user add the following paragraph: If you do manage to lose the root password, all may not be lost. Reboot the machine to single user mode (see page 157), and enter: # mount -u / mount root file system read/write # mount /usr mount /usr file system (if separate) # passwd root change the password for root Enter new password: Enter password again: # ^D enter ctrl-D to continue with startup If you have a separate /usr file system (the normal case), you need to mount it as well, since the passwd program is in the directory /usr/bin. Note that you should explicitly state the name root: in single user mode, the system doesn't have the concept of user IDs. Page 148 ________ Replace the text at the top of the page with: Modern shells supply command line editing which resembles the editors vi or Emacs. In bash, sh, ksh, and zsh you can make the choice by entering Page 152 ________ After figure 10-8, add the following text: It would be tedious for every user to put settings in their private initialization files, so the shells also read a system-wide default file. For the Bourne shell family, it is /etc/profile, while the C shell family has three Page 9 Install ports when installing the system files: /etc/csh.login to be executed on login, /etc/csh.cshrc to be executed when a new shell is started after you log in, and /etc/csh.logout to be executed when you stop a shell. The start files are executed before the corresponding individual files. In addition, login classes (page 141) offer another method of setting environment variables at a global level. Changing your shell ___________________ The FreeBSD installation gives root a C shell, csh. This is the traditional Berkeley shell, but it has a number of disadvantages: command line editing is very primitive, and the script language is significantly different from that of the Bourne shell, which is the de facto standard for shell scripts: if you stay with the C shell, you may still need to understand the Bourne shell. The latest version of the Bourne shell sh also includes some command line editing. See page 148 for details of how to enable it. You can get better command line editing with tcsh, in the Ports Collection. You can get both better command line editing and Bourne shell syntax with bash, also in the Ports Collection. If you have root access, you can use vipw to change your shell, but there's a more general way: use chsh (Change Shell). Simply run the program. It starts your favourite editor (as defined by the EDITOR environment variable). Here's an example before: #Changing user database information for velte. Shell: /bin/csh Full Name: Jack Velte Location: Office Phone: Home Phone: You can change anything after the colons. For example, you might change this to: #Changing user database information for velte. Shell: /usr/local/bin/bash Full Name: Jack Velte Location: On the road Office Phone: +1-408-555-1999 Home Phone: Page 10 Errata and addenda for the Complete FreeBSD, second edition chsh checks and updates the password files when you save the modifications and exit the editor. The next time you log in, you get the new shell. chsh tries to ensure you don't make any mistakes--for example, it won't let you enter the name of a shell which isn't mentioned in the file /etc/shells--but it's a very good idea to check the shell before logging out. You can try this with su, which you normally use to become super user: bumble# su velte Password: su-2.00$ note the new prompt There are a couple of problems in using tcsh or bash as a root shell: o The shell for root must be on the root file system, otherwise it will not work in single user mode. Unfortunately, most ports of shells put the shell in the directory /usr/local/bin, which is almost never on the root file system. o Most shells are dynamically linked: they rely on library routines in files such as /usr/lib/libc.a. These files are not available in single user mode, so the shells won't work. You can solve this problem by creating statically linked versions of the shell, but this requires programming experience beyond the scope of this book. If you can get hold of a statically linked version, perform the following steps to install it: o Copy the shell to /bin, for example: # cp /usr/local/bin/bash /bin o Add the name of the shell to /etc/shells, in this example the line in bold print: # List of acceptable shells for chpass(1). # Ftpd will not allow users to connect who are not using # one of these shells. /bin/sh /bin/csh /bin/bash You can then change the shell for root as described above. Page 11 Install ports when installing the system Thanks to Lars Koller for drawing this to my attention. Page 160 ________ Replace the text at the fourth bullet with the augmented text: The second-level boot locates the kernel, by default the file /kernel on the root file system, and loads it into memory. It prints the Boot: prompt at this point so that you can influence this choice--see the man page on page 579 for more details of what you can enter at this prompt. Page 169 ________ Replace the last paragraph on the page with: The standard solution for these problems is to relocate the /tmp file system to a different directory, say /usr/tmp, and create a symbolic link from /usr/tmp to /tmp--see Chapter 4, Installing FreeBSD, page 72, for more details. Thanks to Charlie Sorsby for drawing this to my attention. Page 176 ________ Add the following paragraph Unmounting file systems When you mount a file system, the system assumes it is going to stay there, and in the interests of efficiency it delays writing data back to the file system. This is the same effect we discussed on page 158. As a result, if you want to stop using a file system, you need to tell the system about it. You do this with the umount command. Note the spelling--there's no n in the command name. You need to do this even with read-only media such as CD-ROMs: the system assumes it can access the data from a mounted file system, and it gets quite unhappy if it can't. Where possible, it locks removable media so that you can't remove them from the device until you unmount them. Using umount is straightforward: just tell it what to unmount, either the device name or the directory name. For example, to unmount the CD-ROM we Page 12 Errata and addenda for the Complete FreeBSD, second edition mounted in the example above, you could enter one of these commands: # umount /dev/cd1a # umount /cd1 Before unmounting a file system, umount checks that nobody is using it. If somebody is using it, it will refuse to unmount it with a message like umount: /cd1: Device busy. This message often occurs because you have changed your directory to a directory on the file system you want to remove. For example (which also shows the usefulness of having directory names in the prompt): === root@freebie (/dev/ttyp2) /cd1 16 -> umount /cd1 umount: /cd1: Device busy === root@freebie (/dev/ttyp2) /cd1 17 -> cd === root@freebie (/dev/ttyp2) ~ 18 -> umount /cd1 === root@freebie (/dev/ttyp2) ~ 19 -> Thanks to Ken Deboy for pointing out this omission. Page 180 ________ The example in the middle of the page should read: For example, to generate a second set of 32 pseudo-terminals, enter: # cd /dev # ./MAKEDEV pty1 You can generate up to 256 pseudo-terminals. They are named ttyp0 through ttypv, ttyq0 through ttyqv, ttyr0 through ttyrv, ttys0 through ttysv, ttyP0 through ttyPv, ttyQ0 through ttyQv, ttyR0 through ttyRv and ttyS0 through ttySv. To create each set of 32 terminals, use the number of the set: the first set is pty0, and the eighth set is pty7. Note that some processes, such as xterm, only look at ttyp0 through ttysv. Thanks to Karl Wagner for pointing out this error. Page 197, first line ____________________ The text of the first full sentence reads: Page 13 Install ports when installing the system The first name, up the the symbol, is the label. In fact, it should read: The first name, up to the | symbol, is the label. Page 208, middle of page ________________________ The example shows the file name /dev/rst0 when using the Bourne shell, and /dev/nrst0 when using C shell and friends. This is inconsistent; use /dev/nrst0 with any shell if you want a non-rewinding tape, or /dev/rst0 if you want a rewinding tape. Thanks to Norman C Rice for pointing out this one. Page 219 ________ Before the section Testing the spooler add the following section: As we saw above, the line printer daemon lpd is responsible for printing spooled jobs. By default it isn't started at boot time. If you're root, you can start it by name: # lpd Normally, however, you will want it to be started automatically when the system starts up. You do this by setting the variable lpd_enable in /etc/rc.conf: lpd_enable="YES" # Run the line printer daemon See page for more details of /etc/rc.conf. Another line in /etc/rc.conf refers to the line printer daemon: lpd_flags="" # Flags to lpd (if enabled). You don't normally need to change this line. See the man page for lpd for details of the flags. Thanks to Tommy G. James for bringing this to my attention. Page 14 Errata and addenda for the Complete FreeBSD, second edition Page 231 ________ Replace the first line of the example with: xhost presto bumble gw The original version allowed anybody on the Internet to access your system. Thanks to Jerry Dunham for drawing this one to my attention. Page 237 ________ In the section Installing the sample desktop, replace the first paragraph with: You'll find all the files described in this chapter on the first CD-ROM (Installation CD-ROM) in the directory /book. Remember that you must mount the CD-ROM before you can access the files--see page 175 for further details. The individual scripts are in the directory /book/scripts, but you'll probably find it easier to install them with the script install-desktop: Thanks to Chris Kaiser for drawing this to my attention. Page 242 ________ The instructions for extracting the source files from CD-ROM in the middle of page 242 are incorrect. You'll find the kernel sources on the first CD-ROM in the directory /src. Replace the example with: # mkdir -p /usr/src/sys # ln -s /usr/src/sys /sys # cd / # cat /cdrom/src/ssys.[a-d]* | tar xzvf - Thanks to Raymond Noel , Suttipan Limanond and Satwant for finding this one in several small slices. Page 15 Install ports when installing the system Page 257 ________ Replace the paragraph Berkeley Packet Filter with: pseudo-device bpfilter ______________________ The Berkeley Packet Filter (bpf) allows you to capture packets crossing a network interface to disk or to examine them with the tcpdump program. Note that this capability represents a significant compromise of network security. The number after bpfilter is the number of concurrent processes that can use the facility. Not all network interfaces support bpf. In order to use the Berkeley Packet Filter, you must also create the device nodes /dev/bpf0 to /dev/bpf3 (if you're using the default number 4). Current- ly, MAKEDEV doesn't help much--you need to create each device separately: # cd /dev # ./MAKEDEV bpf0 # ./MAKEDEV bpf1 # ./MAKEDEV bpf2 # ./MAKEDEV bpf3 Thanks to Christopher Raven for drawing this to my attention. Page 264 ________ In the list of disk driver flags, add: o Bit 12 (0x1000) enables LBA (logical block addressing mode). If this bit is not set, the driver accesses the disk in CHS (cylinder/head/sector) mode. o In CHS mode, if bits 11 to 8 are not equal to 0, they specify the number of heads to assume (between 1 and 15). The driver recalculates the number of cylinders to make up the total size of the disk. Page 16 Errata and addenda for the Complete FreeBSD, second edition Page 273, ``Building the kernel'' _________________________________ Replace the example with: Next, change to the build directory and build the kernel: # cd ../../compile/FREEBIE # make depend # make The make depend is needed even if the directory has just been created: apart from creating dependency information, it also creates some files needed for the build. Thanks to Mark Ovens for drawing this to my attention. Page 283, ``Creating the source tree'' ______________________________________ Add a third point to what you need to know: 3. Possibly, the date of the last update that you want to be included in the checkout. If you specify this date, cvs ignores any more recent updates. This option is often useful when somebody discovers a recently introduced bug in -CURRENT: you check out the modules as they were before the bug was introduced. You specify the date with the -D option, for example -D "10 December 1997". Page 285, after the second example. ___________________________________ Add the text: If you need to check out an older version, for example if there are problems with the most recent version of -CURRENT, you could enter: # cvs co -D "10 December 1997" src/sys This command checks out the kernel sources as of 10 December 1997. Page 17 Install ports when installing the system Page 294 ________ Add the following section: Problems executing Linux binaries _________________________________ One of the problems with the ELF format used by more recent Linux binaries is that they usually contain no information to identify them as Linux binaries. They might equally well be BSD/OS or UnixWare binaries. That's not really a problem at this point, since the only ELF format that FreeBSD 3.2 understands is Linux, but FreeBSD-CURRENT recognizes a native FreeBSD ELF format as well, and of course that's the default. If you want to run a Linux ELF binary on such a system, you must brand the executable using the program brandelf. For example, to brand the StarOffice program swriter3, you would enter: # brandelf -t linux /usr/local/StarOffice-3.1/linux-x86/bin/swriter3 Thanks to Dan Busarow for bringing this to my attention. Page 364, middle of page ________________________ Change the text from: The names MYADDR and HISADDR are keywords which represent the addresses at each end of the link. They must be written as shown, though they may be in lower case. to The names MYADDR and HISADDR are keywords which represent the addresses at each end of the link. They must be written as shown, though newer versions of ppp allow you to write them in lower case. Thanks to Mark S. Reichman for this correction. Page 368 ________ Replace the paragraph after the second example with: In FreeBSD version 3.0 and later, specify the options PPP_BSDCOMP and Page 18 Errata and addenda for the Complete FreeBSD, second edition PPP_DEFLATE to enable two kinds of compression. You'll also need to specify the corresponding option in Kernel PPP's configuration file. These options are not available in FreeBSD version 2. Thanks to Brian Somers for this information. Page 397 ________ In the section ``Nicknames'', the example should read: www IN CNAME freebie ftp IN CNAME presto In other words, there should be a space between CNAME and the system name. Page 422 ________ Replace the text above the example with: tcpdump is a program which monitors a network interface and displays selected information which passes through it. It uses the Berkeley Packet Filter (bpf), an optional component of the kernel. It is not included in the GENERIC kernel: see page 257 for information on how to configure it. If you don't configure the Berkeley Packet Filter, you will get a message like tcpdump: /dev/bpf0: device not configured If you forget to create the devices for bpf, you will get a message like: tcpdump: /dev/bpf0: No such file or directory Since tcpdump poses a potential security problem, you must be root in order to run it. The simplest way to run it is without any parameters. This will cause tcpdump to monitor and display all traffic on the first active network interface, normally Ethernet: Thanks to Christopher Raven for drawing this to my attention. Page 19 Install ports when installing the system Page 423 ________ The description at the top of the page incorrectly uses the term IP address instead of Ethernet address. In addition, a page number reference is incorrect. Replace the paragraph with: o Line 1 shows an ARP request: system presto is looking for the Ethernet address of wait. It would appear that wait is currently not responding, since there is no reply. o Line 2 is not an IP message at all. tcpdump shows the Ethernet addresses and the beginning of the packet. We don't consider this kind of request in this book. o Line 3 is a broadcast ntp message. We looked at ntp on page 160. o Line 4 is another attempt by presto to find the IP address of wait. o Line 5 is a broadcast message from bumble on the rwho port, giving information about its current load averages and how long it has been up. See the man page for rwho on page 1167 for more information. o Line 6 is from a TCP connection between port 6000 on freebie and port 1089 on presto. It is sending 384 bytes (with the sequence numbers 536925467 to 536925851; see page 305), and is acknowledging that the last byte it received from presto had the sequence number 325114346. The window size is 17280. o Line 7 is another ARP request. presto is looking for the Ethernet address of freebie. How can that happen? We've just seen that they have a TCP connection. In fact, ARP information expires after 20 minutes. It's quite possible that all connections between presto and freebie have been dormant for this period, so presto needs to find freebie's IP address again. o Line 8 is the ARP reply from freebie to presto giving its Ethernet address. o Line 9 shows a reply from presto on the connection to freebie that we saw on line 6. It acknowledges the data up to sequence number 536925851, but doesn't send any itself. o Line 10 shows another 448 bytes of data from freebie to presto, and acknowledging the same sequence number from presto as in line 6. Thanks to Sergei S. Laskavy for drawing this to my Page 20 Errata and addenda for the Complete FreeBSD, second edition attention. Page 450: anonymous ftp _______________________ Replace the paragraph starting with Create a user ftp: Create a user ftp, with the anonymous ftp directory as the home directory and the shell /dev/null. Using /dev/null as the shell makes it impossible to log in as user ftp, but does not interfere with the use of anonymous ftp. ftp can be a member of group bin, or you can create a new group ftp by adding the group to /etc/group. See page 138 for more details of adding users, and the man page on page 805 for adding groups. Thanks to Mark S. Reichman for drawing this to my attention. Page 466, before the ps example _______________________________ Add another bullet: o Finally, you may find it convenient to let some other system handle all your mail delivery for you: you just send anything you can't deliver locally to this other host, which sendmail calls a smart host. This is particularly convenient if you send your mail with UUCP. To tell sendmail to use a smart host (in our case, mail.example.net), find the following line in sendmail.cf: # "Smart" relay host (may be null) DS Change it to: # "Smart" relay host (may be null) DSmail.example.net Page 478, ``Running Apache'' ____________________________ The text describes the location of the server as /usr/local/www/server/httpd. This appears to depend on where you get the port from. Some people report the file being at the more likely location /usr/local/sbin/httpd (though note the Page 21 Install ports when installing the system directory sbin, not bin). Check both locations if you run into trouble. Thanks to Sue Blake for this information. Page 492 ________ Replace references to nmdb with nmbd. Page 493 ________ Replace the last paragraph on the page with: socket options is hardly mentioned in the documentation, but it's very important: many Microsoft implementations of TCP/IP are inefficient and establish a new TCP more often than necessary. Select the socket options TCP_NODELAY and IPTOS_LOWDELAY, which can speed up the response time of such applications by over 95%. Page 22 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 17:44:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r05.mx.aol.com (imo-r05.mx.aol.com [152.163.225.101]) by hub.freebsd.org (Postfix) with ESMTP id E113037B404 for ; Fri, 25 Jan 2002 17:44:12 -0800 (PST) Received: from TD790@aol.com by imo-r05.mx.aol.com (mail_out_v31_r1.26.) id w.f9.16537b9d (16782); Fri, 25 Jan 2002 20:44:04 -0500 (EST) From: TD790@aol.com Message-ID: Date: Fri, 25 Jan 2002 20:44:04 EST Subject: Re: 64-bit PCI mobos To: steve@velosystems.net Cc: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: AOL 5.0 for Windows sub 139 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In a message dated 01/25/2002 6:40:30 PM Eastern Standard Time, steve@velosystems.net writes: > > > > Which implies that you have been lucky. > > > > Or that the other guy was simply unlucky. My Tyan boards haven't been much > trouble either. > Have you tried to run them with 180watt power supplies? Or in a humid environment? The problems are well-known and have nothing to do with "luck". At least they admit it...they took back about 70 MBs from us without boxes or accessories. db To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 17:53:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from filer4.isc.rit.edu (filer4.isc.rit.edu [129.21.2.228]) by hub.freebsd.org (Postfix) with ESMTP id 6DE9237B404 for ; Fri, 25 Jan 2002 17:53:11 -0800 (PST) Received: from there ("port 2529"@[129.21.149.81]) by osfmail.rit.edu (PMDF V6.0-24 #36986) with SMTP id <0GQI0028XVW8VR@osfmail.rit.edu> for questions@freebsd.org; Fri, 25 Jan 2002 20:52:56 -0500 (EST) Date: Fri, 25 Jan 2002 20:52:58 -0500 From: Alex Ranaldi Subject: unlinking open files To: questions@freebsd.org Message-id: <0GQI0028YVW8VR@osfmail.rit.edu> MIME-version: 1.0 X-Mailer: KMail [version 1.3] Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all, From what I understand, if a file is open and deleted by the user (ie. an apache log) problems will arise. For example, du and df will not display the same value, as the kernel cannot free an open file. Even killing the process using the file (in this case, Apache) will not help. Only a reboot seems to solve the problem. I'm new to FreeBSD & Unix in general, but I was wondering why the user is not warned before deleting a file that is in use. This seems like a rather trivial thing to do, although I'm probably wrong. Any insight into this would be appreciated. Thanks, Alex Ranaldi axr7993@rit.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 17:57:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id 8D26E37B402 for ; Fri, 25 Jan 2002 17:57:17 -0800 (PST) Received: (qmail 50592 invoked by uid 100); 26 Jan 2002 01:57:12 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15442.3320.475484.557084@guru.mired.org> Date: Fri, 25 Jan 2002 19:57:12 -0600 To: questions@freebsd.org Subject: Canon BJC-1000 X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Someone just gave me a Canon BJC-1000, and I'm hoping that someone here has experience with that creature and FreeBSD. In particular, I saw a bunch of commits to the port tree of softtware that did photo-quality rendering with various printers, but can't seem to find any of that software now. Can I get reasonable color prints out of the thing with FreeBSD, or should I use it as ballast? Thanx, http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 18:16:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by hub.freebsd.org (Postfix) with ESMTP id BF3AD37B402 for ; Fri, 25 Jan 2002 18:16:51 -0800 (PST) Disposition-notification-to: dnpowers@swbell.net Received: from daveabit ([208.191.105.22]) by mta4.rcsntx.swbell.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with SMTP id <0GQI008G0X026B@mta4.rcsntx.swbell.net> for questions@freebsd.org; Fri, 25 Jan 2002 20:16:50 -0600 (CST) Date: Fri, 25 Jan 2002 20:17:30 -0600 From: David Powers Subject: RE: 3C509-TP Ethernet In-reply-to: To: 'damon blom' , questions@freebsd.org Message-id: <00b801c1a60f$9bb05770$0401a8c0@daveabit> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Have any other devices running on IRQ 10, usb or anything of the such. -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of damon blom Sent: Friday, January 25, 2002 3:06 PM To: questions@freebsd.org Subject: 3C509-TP Ethernet FreeBSD 4.5-RC #4 NEC Pentium III ep0:<#C509-TP EtherLink III> at port 0x300-0x30f irq 10 on isa 0 ep0:No irq! ep0:ep_alloc() failed(6) Installed this older ethernet card. No PnP. Any help? Newbie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 18:25: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id 1A93F37B400 for ; Fri, 25 Jan 2002 18:25:05 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 4274D2B82F; Sat, 26 Jan 2002 03:25:00 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 487FD151; Sat, 26 Jan 2002 13:24:52 +1100 (EST) Date: Sat, 26 Jan 2002 13:24:52 +1100 From: Edwin Groothuis To: Alex Ranaldi Cc: questions@freebsd.org Subject: Re: unlinking open files Message-ID: <20020126132452.M823@k7.mavetju.org> References: <0GQI0028YVW8VR@osfmail.rit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <0GQI0028YVW8VR@osfmail.rit.edu>; from axr7993@rit.edu on Fri, Jan 25, 2002 at 08:52:58PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 08:52:58PM -0500, Alex Ranaldi wrote: > >From what I understand, if a file is open and deleted by the user (ie. an > apache log) problems will arise. For example, du and df will not display the > same value, as the kernel cannot free an open file. Even killing the process > using the file (in this case, Apache) will not help. Only a reboot seems to > solve the problem. It's not a bug, it's a feature. There is a difference between what the filesystem-part of the kernel (here after refered to as 'the kernel') knows and what is shows. If you open a file, the reference-count on that file will be increased by one. If you close it, it will be decreased by one. Say a normal file, unopened by anything, has a reference-count of 1. If you remove the file (unlink it), it gets removed from the directory index and the reference-count is decreased by one. If no other applications have opened this file, the reference-count is zero and there is nobody else using this file, the contents on disk can be removed now. If the reference-count would have been non-zero, which means somebody else was using this file, the contents on disk cannot be removed yet. After all, somebody else is using it! A good example of these situations are: - removing big files in /var/log, created by syslog - removable file-systems (i.e. CD's) If you remove a file from the directory index, it means you can regenerate a file with the same name. For what "ls" shows to you, it's the same file (not really true but close enough). For what the kernel knows, it's a different file. To see which applications are using a file you want to remove, install sysutils/lsof from the ports-collection: [~] edwin@k7>lsof -u edwin | grep access httpd-php 2778 edwin 19w VREG 116,131077 3585930 381204 /usr/home/www/log/access_log Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 18:31:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by hub.freebsd.org (Postfix) with ESMTP id 6E20637B400 for ; Fri, 25 Jan 2002 18:31:08 -0800 (PST) Received: from ppp1-222.ath.forthnet.gr Bernie_X@smtp-send.myrealbox.com [213.16.148.222] by smtp-send.myrealbox.com with Novell NIMS $Revision: 2.88 $ on Novell NetWare; Fri, 25 Jan 2002 19:31:05 -0700 Date: Sat, 26 Jan 2002 02:18:16 +0200 (EET) From: Bernie X-X-Sender: root@BLAST To: freebsd-questions@FreeBSD.ORG Subject: shells confusion Message-ID: <20020126020430.P175-100000@BLAST> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi, i'm planning to learn shell programming but i'm not sure on which one to choose... i've been reading in the 'FreeBSD unleashed' that people wanting to do shell programming should stay away from c-shell as it's realy good for interactive, but very bad for scripts. is this true? also, looking into the scripts in /etc, i see a line on the top saying 'bin/sh'. so are they all written in 'sh' and not csh ? if so, why freebsd comes with csh as default? also, why single user mode proposes /bin/sh as default? is there any particular reason for it? i'm a bit confused on which shell to pick from programming. also i've been thinking of perl, but for the moment i think i've got to learn at least how to do basic shell programming, not only to write programs, but also to understand scrips that come with the system. but the question is 'which shell' ... any advice on this matter will be appreciated. Regards --Bernie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 18:31:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from radwaste.oaep.go.th (ppp38.modem56.actconnect.net [203.155.127.38]) by hub.freebsd.org (Postfix) with ESMTP id CE5EF37B402 for ; Fri, 25 Jan 2002 18:31:22 -0800 (PST) Received: (from pirat@localhost) by radwaste.oaep.go.th (8.11.6/8.11.3) id g0Q2pSD00429 for questions@FreeBSD.ORG; Sat, 26 Jan 2002 09:51:28 +0700 (ICT) (envelope-from pirat@access.inet.co.th) X-Authentication-Warning: radwaste.oaep.go.th: pirat set sender to pirat@access.inet.co.th using -f Date: Sat, 26 Jan 2002 09:51:23 +0700 From: pirat To: questions@FreeBSD.ORG Subject: ppp -nat ISP does not work Message-ID: <20020126095122.A408@radwaste.oaep.go.th> Mail-Followup-To: pirat , questions@FreeBSD.ORG Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="17pEHd4RhPHOinZp" Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD-4.4 STABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline hi sirs, very apologize for distrubing the list but i face a very strange problem with user mode ppp. the situation is this. i write a ppp.conf script for some isp and use that script to dialup without any problem. now that i change to a new isp, it costs me about 3000 baht per month without disconnecting, and i change the script accordingly. strange very strange, it does not work any more when i fireup ppp -nat makham #ppp -nat makham ppp on Makham>dial Ppp on Makham> ppp on Makham> well, since i have paid for that, i enter interactive mode or terminal mode ppp on Makham>term (some texts) ath OK atz OK at&f OK atdt028070707 Username: makham Password: ***** PPP on Makham> it works ! i try a number of variations in changing /etc/ppp/ppp.conf for label makham but fial. so what is a secret in my case. would the list please finds out any hints for me to use the script instead of entering terminal mode. in an attachment is parts of /etc/ppp/ppp.conf that i use and also log file for ppp.log please cc to me since i do not subscribe to the list. thanks in advance. with best regards, psr --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="PPP.ACT-error" here is parts of /etc/ppp/ppp.conf makham: allow users pnt pirat proj-A set phone "4711" set authkey XXXXX set authname XXXXX accept pap enable pap set login set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 delete ALL add default HISADDR #tail -80 /var/log/ppp.log Jan 26 09:24:58 ppp[385]: tun0: Chat: Received: ATE1Q0 Jan 26 09:24:58 ppp[385]: tun0: Chat: Received: OK Jan 26 09:24:58 ppp[385]: tun0: Chat: Send: ATL1M1DT028070707 Jan 26 09:25:00 ppp[385]: tun0: Chat: Expect(40): CONNECT Jan 26 09:25:31 ppp[385]: tun0: Chat: Received: ATL1M1DT028070707 Jan 26 09:25:31 ppp[385]: tun0: Chat: Received: CONNECT 31200/ARQ Jan 26 09:25:31 ppp[385]: tun0: Phase: deflink: dial -> carrier Jan 26 09:25:32 ppp[385]: tun0: Phase: deflink: /dev/cuaa2: CD detected Jan 26 09:25:32 ppp[385]: tun0: Phase: deflink: carrier -> login Jan 26 09:25:32 ppp[385]: tun0: Phase: deflink: login -> lcp Jan 26 09:25:32 ppp[385]: tun0: LCP: FSM: Using "deflink" as a transport Jan 26 09:25:32 ppp[385]: tun0: LCP: deflink: State change Initial --> Closed Jan 26 09:25:32 ppp[385]: tun0: LCP: deflink: State change Closed --> Stopped Jan 26 09:25:33 ppp[385]: tun0: LCP: deflink: LayerStart Jan 26 09:25:33 ppp[385]: tun0: LCP: deflink: SendConfigReq(1) state = Stopped Jan 26 09:25:33 ppp[385]: tun0: LCP: ACFCOMP[2] Jan 26 09:25:33 ppp[385]: tun0: LCP: PROTOCOMP[2] Jan 26 09:25:33 ppp[385]: tun0: LCP: ACCMAP[6] 0x00000000 Jan 26 09:25:33 ppp[385]: tun0: LCP: MRU[4] 1500 Jan 26 09:25:33 ppp[385]: tun0: LCP: MAGICNUM[6] 0x2aa5d75a Jan 26 09:25:33 ppp[385]: tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) Jan 26 09:25:33 ppp[385]: tun0: LCP: deflink: State change Stopped --> Req-Sent Jan 26 09:25:36 ppp[385]: tun0: LCP: deflink: SendConfigReq(1) state = Req-Sent Jan 26 09:25:36 ppp[385]: tun0: LCP: ACFCOMP[2] Jan 26 09:25:36 ppp[385]: tun0: LCP: PROTOCOMP[2] Jan 26 09:25:36 ppp[385]: tun0: LCP: ACCMAP[6] 0x00000000 Jan 26 09:25:36 ppp[385]: tun0: LCP: MRU[4] 1500 Jan 26 09:25:36 ppp[385]: tun0: LCP: MAGICNUM[6] 0x2aa5d75a Jan 26 09:25:36 ppp[385]: tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) Jan 26 09:25:36 ppp[385]: tun0: LCP: deflink: RecvConfigAck(1) state = Req-Sent Jan 26 09:25:36 ppp[385]: tun0: LCP: deflink: State change Req-Sent --> Ack-Rcvd Jan 26 09:25:37 ppp[385]: tun0: LCP: deflink: RecvConfigReq(194) state = Ack-Rcvd Jan 26 09:25:37 ppp[385]: tun0: LCP: ACCMAP[6] 0x000a0000 Jan 26 09:25:37 ppp[385]: tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) Jan 26 09:25:37 ppp[385]: tun0: LCP: MAGICNUM[6] 0x860957b5 Jan 26 09:25:37 ppp[385]: tun0: LCP: PROTOCOMP[2] Jan 26 09:25:37 ppp[385]: tun0: LCP: ACFCOMP[2] Jan 26 09:25:37 ppp[385]: tun0: LCP: MRRU[4] 1524 Jan 26 09:25:37 ppp[385]: tun0: LCP: ENDDISC[12] Local Addr: cc_as5300 Jan 26 09:25:37 ppp[385]: tun0: LCP: deflink: SendConfigRej(194) state = Ack-Rcvd Jan 26 09:25:37 ppp[385]: tun0: LCP: MRRU[4] 1524 Jan 26 09:25:38 ppp[385]: tun0: LCP: deflink: RecvConfigReq(195) state = Ack-Rcvd Jan 26 09:25:38 ppp[385]: tun0: LCP: ACCMAP[6] 0x000a0000 Jan 26 09:25:38 ppp[385]: tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) Jan 26 09:25:38 ppp[385]: tun0: LCP: MAGICNUM[6] 0x860957b5 Jan 26 09:25:38 ppp[385]: tun0: LCP: PROTOCOMP[2] Jan 26 09:25:38 ppp[385]: tun0: LCP: ACFCOMP[2] Jan 26 09:25:38 ppp[385]: tun0: LCP: ENDDISC[12] Local Addr: cc_as5300 Jan 26 09:25:38 ppp[385]: tun0: LCP: deflink: SendConfigAck(195) state = Ack-Rcvd Jan 26 09:25:38 ppp[385]: tun0: LCP: ACCMAP[6] 0x000a0000 Jan 26 09:25:38 ppp[385]: tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) Jan 26 09:25:38 ppp[385]: tun0: LCP: MAGICNUM[6] 0x860957b5 Jan 26 09:25:38 ppp[385]: tun0: LCP: PROTOCOMP[2] Jan 26 09:25:38 ppp[385]: tun0: LCP: ACFCOMP[2] Jan 26 09:25:38 ppp[385]: tun0: LCP: ENDDISC[12] Local Addr: cc_as5300 Jan 26 09:25:38 ppp[385]: tun0: LCP: deflink: State change Ack-Rcvd --> Opened Jan 26 09:25:38 ppp[385]: tun0: LCP: deflink: LayerUp Jan 26 09:25:38 ppp[385]: tun0: Phase: bundle: Authenticate Jan 26 09:25:38 ppp[385]: tun0: Phase: deflink: his = PAP, mine = PAP Jan 26 09:25:38 ppp[385]: tun0: Phase: Pap Output: makham ******** Jan 26 09:25:41 ppp[385]: tun0: Phase: Pap Output: makham ******** Jan 26 09:25:41 ppp[385]: tun0: Phase: Pap Input: SUCCESS () Jan 26 09:26:38 ppp[385]: tun0: Phase: deflink: HDLC errors -> FCS: 2, ADDR: 0, COMD: 0, PROTO: 0 Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: RecvTerminateReq(196) state = Opened Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: LayerDown Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: SendTerminateAck(196) state = Opened Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: State change Opened --> Stopping Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: Carrier lost Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: State change Stopping --> Starting Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: LayerFinish Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: State change Starting --> Initial Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: Disconnected! Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: lcp -> logout Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: Disconnected! Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: logout -> hangup Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: Connect time: 151 secs: 880 octets in, 274 octets out Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: : 14 packets in, 7 packets out Jan 26 09:27:28 ppp[385]: tun0: Phase: total 7 bytes/sec, peak 163 bytes/sec on Sat Jan 26 09:27:28 2002 Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: hangup -> closed Jan 26 09:27:28 ppp[385]: tun0: Phase: bundle: Dead --17pEHd4RhPHOinZp-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 18:45:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f175.law11.hotmail.com [64.4.17.175]) by hub.freebsd.org (Postfix) with ESMTP id 9664137B402 for ; Fri, 25 Jan 2002 18:45:10 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 25 Jan 2002 18:45:10 -0800 Received: from 68.6.89.248 by lw11fd.law11.hotmail.msn.com with HTTP; Sat, 26 Jan 2002 02:45:10 GMT X-Originating-IP: [68.6.89.248] From: "Charles Burns" To: questions@freebsd.org Subject: Re: shells confusion Date: Fri, 25 Jan 2002 19:45:10 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 26 Jan 2002 02:45:10.0422 (UTC) FILETIME=[78CAA360:01C1A613] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >i'm planning to learn shell programming but i'm not sure >on which one to choose... > >i've been reading in the 'FreeBSD unleashed' that people >wanting to do shell programming should stay away from >c-shell as it's realy good for interactive, but very bad >for scripts. is this true? > >also, looking into the scripts in /etc, i see a line on the >top saying 'bin/sh'. so are they all written in 'sh' and >not csh ? if so, why freebsd comes with csh as default? > >also, why single user mode proposes /bin/sh as default? >is there any particular reason for it? > >i'm a bit confused on which shell to pick from programming. >also i've been thinking of perl, but for the moment i think >i've got to learn at least how to do basic shell programming, >not only to write programs, but also to understand scrips that >come with the system. > >but the question is 'which shell' ... > >any advice on this matter will be appreciated. By far "BASh" (Bourne Again Shell) is the most popular Unix shell, especially in Linux. BASh is compatible with Sh as well, so learning Sh scripting will work in BASh. Sh is also by far the most common shell to script for, as pretty much every Unix OS has a shell that will run Sh scripts. I would probably recommend learning Sh/BASh scripting. BASh has some features that Sh generally does not, but you can do most anything without them. Sh is also a very powerful scripting language, for example I have a full x86 assembler on my system written in pure Sh script. As to why Sh is default, I have heard reasons like, "It uses less memory", "It uses less disk space", "most scripts are written for Sh specifically", etc. As far as compelling reasons why the ancient, horrible shell is still default, I have heard none. Charles Burns _________________________________________________________________ Chat with friends online, try MSN Messenger: http://messenger.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 18:52:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from vms3.rit.edu (vms3.isc.rit.edu [129.21.3.10]) by hub.freebsd.org (Postfix) with ESMTP id AA5F737B402 for ; Fri, 25 Jan 2002 18:52:29 -0800 (PST) Received: from sonic.rit.edu ([129.21.10.162]) by ritvax.isc.rit.edu (PMDF V5.2-32 #40294) with ESMTPA id <01KDI4QZ4EIEDWPA0O@ritvax.isc.rit.edu> for questions@freebsd.org; Fri, 25 Jan 2002 21:52:27 EST Date: Fri, 25 Jan 2002 21:52:22 -0500 From: Matt Penna Subject: Re: 3C509-TP Ethernet In-reply-to: X-Sender: mdp1261@vmspop.isc.rit.edu To: questions@freebsd.org Cc: damon blom Message-id: <5.1.0.14.2.20020125214653.035803d0@vmspop.isc.rit.edu> MIME-version: 1.0 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Content-type: text/plain; format=flowed; charset=us-ascii Content-transfer-encoding: 7BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 01:06 PM 1/25/02 -0800, damon blom wrote: >FreeBSD 4.5-RC #4 NEC Pentium III >ep0:<#C509-TP EtherLink III> at port 0x300-0x30f irq 10 on isa 0 >ep0:No irq! >ep0:ep_alloc() failed(6) > > Installed this older ethernet card. No PnP. Damon, I haven't seen this specific error, but did you configure the card using 3COM's DOS utility? 3c5x9cfg.exe, I believe it is. You can download it from their web site as part of the Etherdisk driver set. You need to run this utility from DOS to configure the card - booting from a diskette is fine - and make sure the card isn't set so it conflicts with anything in your system. You can set the IRQ, media options and various other things using this utility, including disabling PnP on the card if you need to. This should hopefully solve the problem for you. If already did this after you installed the card, I'm afraid I can't help. :/ Matt -- Matt Penna mdp1261@rit.edu ICQ: 399825 S0ba on AOLIM "The trouble with computers, of course, is that they're very sophisticated idiots." -Dr. Who To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 18:57:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web13408.mail.yahoo.com (web13408.mail.yahoo.com [216.136.175.66]) by hub.freebsd.org (Postfix) with SMTP id 0046A37B404 for ; Fri, 25 Jan 2002 18:57:24 -0800 (PST) Message-ID: <20020126025724.2341.qmail@web13408.mail.yahoo.com> Received: from [67.202.28.217] by web13408.mail.yahoo.com via HTTP; Fri, 25 Jan 2002 18:57:24 PST Date: Fri, 25 Jan 2002 18:57:24 -0800 (PST) From: Andrew Gould Subject: Re: Canon BJC-1000 To: Mike Meyer , questions@freebsd.org In-Reply-To: <15442.3320.475484.557084@guru.mired.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Mike, The url below has some driver info for the Canon BJC-1000. The website is geared towards Linux; but I'm under the impression that printing issues are pretty much the same for FreeBSD and Linux. (Please correct me if I'm mistaken.) http://www.linuxprinting.org/show_printer.cgi?recnum=139017 Best of luck, Andrew Gould --- Mike Meyer wrote: > Someone just gave me a Canon BJC-1000, and I'm > hoping that someone > here has experience with that creature and FreeBSD. > In particular, I > saw a bunch of commits to the port tree of softtware > that did > photo-quality rendering with various printers, but > can't seem to find > any of that software now. Can I get reasonable color > prints out of the > thing with FreeBSD, or should I use it as ballast? > > Thanx, > -- > Mike Meyer > http://www.mired.org/home/mwm/ > Independent WWW/Perforce/FreeBSD/Unix consultant, > email for more information. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 18:58: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from drone4.qsi.net.nz (drone4-svc-skyt.qsi.net.nz [202.89.128.4]) by hub.freebsd.org (Postfix) with SMTP id A846037B41B for ; Fri, 25 Jan 2002 18:57:58 -0800 (PST) Received: (qmail 57068 invoked by uid 0); 26 Jan 2002 02:58:13 -0000 Received: from unknown (HELO chen.org.nz) ([210.54.19.51]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 26 Jan 2002 02:58:13 -0000 Received: (from jonc@localhost) by chen.org.nz (8.11.6/8.11.6) id g0Q2vtY25193; Sat, 26 Jan 2002 15:57:55 +1300 (NZDT) (envelope-from jonc) Date: Sat, 26 Jan 2002 15:57:55 +1300 From: Jonathan Chen To: Alex Ranaldi Cc: questions@FreeBSD.ORG Subject: Re: unlinking open files Message-ID: <20020126155755.A25091@grimoire.chen.org.nz> References: <0GQI0028YVW8VR@osfmail.rit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <0GQI0028YVW8VR@osfmail.rit.edu>; from axr7993@rit.edu on Fri, Jan 25, 2002 at 08:52:58PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 08:52:58PM -0500, Alex Ranaldi wrote: > Hello all, > > Even killing the process > using the file (in this case, Apache) will not help. Only a reboot seems to > solve the problem. Nope. Once you kill the last process holding the file open, the resource is reclaimed by the O/S. You don't have to reboot - we're not Windows. -- Jonathan Chen ---------------------------------------------------------------------- "Beer. Now there's a temporary solution." - Homer Simpson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 19:18:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from uclink4.berkeley.edu (uclink4.Berkeley.EDU [128.32.25.39]) by hub.freebsd.org (Postfix) with ESMTP id 0824B37B400 for ; Fri, 25 Jan 2002 19:18:12 -0800 (PST) Received: from uclink.berkeley.edu (u16-158.UNEX.Berkeley.EDU [169.229.16.158]) by uclink4.berkeley.edu (8.11.4/8.11.4) with ESMTP id g0Q3IBn20199 for ; Fri, 25 Jan 2002 19:18:11 -0800 (PST) Message-ID: <3C521E87.4004D3C8@uclink.berkeley.edu> Date: Fri, 25 Jan 2002 19:12:07 -0800 From: John Kelly Reply-To: jmkelly@ieee.org X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD-questions@FreeBSD.org Subject: new install, trying to get Xircom PC card to work Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I've got FreeBSD 4.4-release running on a Dell Latitude laptop with a Xircom RealPort CardBus Ethernet 10/100+Modem 56 (RBEM56G-100) PC card in it, and I can't figure out how to get the card to wake up. Card services seems to be running okay, it sees that a card has been inserted, but the system comes up with no Ethernet device. I found the source for the right driver, xe, but when I try to compile xe.c I get an error: "if_xe.c:138: card_if.h: No such file or directory." Beyond that, I'm having a hard time figuring out how to integrate the xe driver with the kernel even if I could manage to compile it. I've tried RTFMing, but haven't seemed to find the right page yet. All help will be appreciated. --jk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 19:20: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id 0F76937B416 for ; Fri, 25 Jan 2002 19:20:00 -0800 (PST) Received: (qmail 51408 invoked by uid 100); 26 Jan 2002 03:19:58 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15442.8286.420762.367881@guru.mired.org> Date: Fri, 25 Jan 2002 21:19:58 -0600 To: =?iso-8859-1?q?Matt=20Sykes?= , Kris Kennaway , questions@freebsd.org Subject: Re: recompile ports when update kernel/userland? In-Reply-To: <108067245@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Kris Kennaway types: > > Should I expect a few ports to be broken after I rebuild=20 > > the kernel and userland? I guess I don't quite believe=20 > > that binary compatibility exists in the real world. > There are only one or two ports which may sometimes break when you > upgrade the kernel; they do so because they expect to be able to > grovel around inside kernel memory and know where to find things. > This may change over time. lsof is the only such port which springs > to mind, but there might be others. I think the count is higher than one or two. cdrecord - now cdrtools - has broken in the past. However, I'd be surprised if more than one or two broke across any upgrade that stretch across more than one release other than a .0 one. As it is, I've run packages built for 3.x on a 5-current system, with little problem. I don't recommend it as a practice, though. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 19:25:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 832FA37B404 for ; Fri, 25 Jan 2002 19:25:38 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id E490166EF1; Fri, 25 Jan 2002 19:25:31 -0800 (PST) Date: Fri, 25 Jan 2002 19:25:31 -0800 From: Kris Kennaway To: Mike Meyer Cc: Matt Sykes , Kris Kennaway , questions@freebsd.org Subject: Re: recompile ports when update kernel/userland? Message-ID: <20020125192531.A72457@xor.obsecurity.org> References: <108067245@toto.iv> <15442.8286.420762.367881@guru.mired.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="qMm9M+Fa2AknHoGS" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <15442.8286.420762.367881@guru.mired.org>; from mwm-dated-1012447198.6e7be9@mired.org on Fri, Jan 25, 2002 at 09:19:58PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --qMm9M+Fa2AknHoGS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 25, 2002 at 09:19:58PM -0600, Mike Meyer wrote: > Kris Kennaway types: > > > Should I expect a few ports to be broken after I rebuild=3D20 > > > the kernel and userland? I guess I don't quite believe=3D20 > > > that binary compatibility exists in the real world. > > There are only one or two ports which may sometimes break when you > > upgrade the kernel; they do so because they expect to be able to > > grovel around inside kernel memory and know where to find things. > > This may change over time. lsof is the only such port which springs > > to mind, but there might be others. >=20 > I think the count is higher than one or two. cdrecord - now cdrtools - > has broken in the past. However, I'd be surprised if more than one or > two broke across any upgrade that stretch across more than one release > other than a .0 one. Well, my point was that out of 6500 ports the overwhelming majority (100%-epsilon) won't care and will continue to work fine. Kris --qMm9M+Fa2AknHoGS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8UiGrWry0BWjoQKURAq9DAJsGWOG7rJ2E5nhvsTeQgxSe2v+TbQCeNAQJ wzVTPIaEIhfnsSaPjahQDtw= =c1GN -----END PGP SIGNATURE----- --qMm9M+Fa2AknHoGS-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 19:26: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id E200737B41D for ; Fri, 25 Jan 2002 19:25:54 -0800 (PST) Received: (qmail 51486 invoked by uid 100); 26 Jan 2002 03:25:53 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15442.8640.904013.970225@guru.mired.org> Date: Fri, 25 Jan 2002 21:25:52 -0600 To: "Andrew Cowan" Cc: questions@freebsd.org Subject: Re: Question Regarding FDisk In-Reply-To: <23118739@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Andrew Cowan types: > I was installing 4.4 release for a friend last > weekend, and was trying to remember how to > create a 'dangerous dedicated' disk. Finally > worked out that the 'F' key did the job, but > then I studidly marked the partition as active > also. > My questions are: Why doesnt FDisk display the > 'F' key option? To keep people from creating DD disks unless they really need them and know what they are doing. DD disks can create unusual problems in some environments, and their use is discouraged except on systems that won't work on disks with a real DOS partition table. > and why does it allow a D.D. drive to be marked as active if it will > result in an unbootable drive? Because it can't know you aren't going to install something to boot the system. Marking the partition as active doesn't cause a problem. > Finally, I am not sure if this is how I created > D.D. Disks in the past. Why was this changed? To keep people from creating DD disks unless they really need them and know what they are doing. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 19:30:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tierzero.apana.org.au (sa.apana.org.au [203.14.158.1]) by hub.freebsd.org (Postfix) with ESMTP id 9741437B404 for ; Fri, 25 Jan 2002 19:30:40 -0800 (PST) Received: from BAPhD.gihon.org.au (dialup-8.pasa.apana.org.au [203.14.158.137]) by tierzero.apana.org.au (8.11.1/8.11.1) with SMTP id g0Q3Ttw02671 for ; Sat, 26 Jan 2002 13:59:55 +1030 (CST) (envelope-from bastill@sa.apana.org.au) Content-Type: text/plain; charset="iso-8859-1" From: Brian Astill Reply-To: bastill@sa.apana.org.au To: Subject: Re: A question from a convert from Windows to FreeBSD Date: Sat, 26 Jan 2002 14:00:24 +1030 X-Mailer: KMail [version 1.2] References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> <02012512323903.01099@BAPhD.gihon.org.au> <02012421455703.07381@proxy.pt.com> In-Reply-To: <02012421455703.07381@proxy.pt.com> MIME-Version: 1.0 Message-Id: <02012614002402.01182@BAPhD.gihon.org.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday 25 January 2002 13:15, Bill Moran wrote: > From your reaction, I'm guessing you have yet to discover the > built-in man pages I had a recent problem of somehow not being able to enter my system as user. I needed to change the me-as-user password and thought I would need to know the password FreeBSD was already holding in order to do this. I searched the man pages for passwd ypasswd etc etc, but NOWHERE could I find anything that told me how to make the change without knowing the existing password. When I asked on this list, the answer was somewhat embarrassing . However, what I am saying is that the simple sentence "passwords can be changed by root without knowledge of a users existing password" was simply not there on any man page - heaps and heaps of well-written detail I did not need, was. So just RTFM isn't any kind of solution for a newbie, who is likely to suffer information overload and STILL not find a solution to his or her problem. > Some > interesting places to start: > man man > man hier > man security > man tuning Will have a look at these. -- Regards, Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 19:33:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id A9B3137B404 for ; Fri, 25 Jan 2002 19:33:11 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16UJaY-000A30-00 for questions@freebsd.org; Sat, 26 Jan 2002 03:33:10 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 6A5C6452B8; Sat, 26 Jan 2002 04:33:09 +0100 (CET) Date: Sat, 26 Jan 2002 04:33:09 +0100 From: Cliff Sarginson To: questions@freebsd.org Subject: Re: unlinking open files Message-ID: <20020126033309.GB1290@raggedclown.net> References: <0GQI0028YVW8VR@osfmail.rit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <0GQI0028YVW8VR@osfmail.rit.edu> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 08:52:58PM -0500, Alex Ranaldi wrote: > Hello all, > > >From what I understand, if a file is open and deleted by the user (ie. an > apache log) problems will arise. For example, du and df will not display the > same value, as the kernel cannot free an open file. Even killing the process > using the file (in this case, Apache) will not help. Only a reboot seems to > solve the problem. > No that cannot be the case that you have to reboot to reclaim the space. If it is then you are the proud owner of an OS bug. But I do doubt this. It is a sometimes used programming practise to open a scratch file for some purpose and then immediately unlink it, this ensures any space it will take up is freed should the process die in error, or forget to unlink it before exiting. > I'm new to FreeBSD & Unix in general, but I was wondering why the user is not > warned before deleting a file that is in use. This seems like a rather > trivial thing to do, although I'm probably wrong. > > Any insight into this would be appreciated. > Mmm, this is to do with the way the file-system works. When you "delete" a file, you really decrement a count called the "link count" on a file, this is an entry in the inode (index node) for that file. This is because a file can have many links (read that as directory entries that all point to the same inode). When the file is closed if the link count is zero then the space is reclaimed. However it would not be so smart of the kernel to go cleaning that space up when some other process has that file open. The problem is that the file, no longer having a link count is invisible, or if it is apparently visible under the same name then it is in fact a new file with the same name as the "old" one. Having said all of that, this behaviour is confusing until you know about it (and even then is a pain). Perhaps it is somewhat suprising that no-one has thought of putting an optional switch in "rm" to check this out, although I do not see how it could be done reliably (between the time of checking the open status of a file, and the reporting of that status, the situation may have changed). Also purists would argue that it is outside of "rm's" remit to do so anyway. Statistically speaking I would say this must be a FAQ, that I don't believes appears in a FAQ, although any book on Unix should somewhere explain it (possibly less opaquely than I have managed above). -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 19:35:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id 5EACB37B402 for ; Fri, 25 Jan 2002 19:35:31 -0800 (PST) Received: (qmail 51610 invoked by uid 100); 26 Jan 2002 03:35:30 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15442.9218.203200.144669@guru.mired.org> Date: Fri, 25 Jan 2002 21:35:30 -0600 To: scott worley Cc: questions@freebsd.org Subject: Re: FreeBSD boot loaders? In-Reply-To: <38420453@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG scott worley types: > Just moved my main workstation from linux to FreeBSD 4.5RC2. I was comfortable using GRUB on linux but I haven't found good documention on configuring the FreeBSD boot loaders. Please insert newlines in your outgoing mail; long lines are hard to read for RFC compliant mailers. The info docs that come with grub tell you exactly how to boot FreeBSD from BIOS disk 0. > /dev/da0s1 freebsd 4.5 slice(whole disk) It looks like that's what you've got, unless you've got IDE disks you aren't telling us about. Cut-n-pasted from the docs: grub> root (hd0,a) grub> kernel /boot/loader grub> boot http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 19:42:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from apollo.pwhsnet.com (adsl-64-164-36-143.dsl.scrm01.pacbell.net [64.164.36.143]) by hub.freebsd.org (Postfix) with ESMTP id B614E37B400 for ; Fri, 25 Jan 2002 19:42:33 -0800 (PST) Received: from zeus (patrick@zeus [192.168.0.35] (may be forged)) by apollo.pwhsnet.com (8.11.6/8.11.6) with SMTP id g0Q3fbk00197 for ; Fri, 25 Jan 2002 19:41:38 -0800 (PST) (envelope-from patrick@pwhsnet.com) From: Patrick Fish (patrick@pwhsnet.com) Message-ID: <008501c1a61b$1be22da0$2300a8c0@zeus> To: Subject: 4.4-RELEASE to 4.4-STABLE Date: Fri, 25 Jan 2002 19:39:49 -0800 Organization: PWHS Networks MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0082_01C1A5D8.0D602BD0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0082_01C1A5D8.0D602BD0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I just upgraded my 4.4-RELEASE system to 4.4-STABLE via cvsup, after = 'make world' i rebooted, logged back in, and: apollo% uname -a FreeBSD apollo.pwhsnet.com 4.4-RELEASE FreeBSD 4.4-RELEASE #2: Fri Jan = 25 17:50:19 PST 2002 = patrick@apollo.pwhsnet.com:/usr/src/sys/compile/PWHSNET i386 -- Patrick Fish - patrick@pwhsnet.com PWHS Networks - http://www.pwhsnet.com ------=_NextPart_000_0082_01C1A5D8.0D602BD0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I just upgraded my 4.4-RELEASE system = to 4.4-STABLE=20 via cvsup, after 'make world' i rebooted, logged back in, = and:
 

apollo% uname -a
FreeBSD = apollo.pwhsnet.com=20 4.4-RELEASE FreeBSD 4.4-RELEASE #2: Fri Jan 25 17:50:19 PST=20 2002     p= atrick@apollo.pwhsnet.com:/usr/src/sys/compile/PWHSNET =20 i386

--
Patrick Fish -
patrick@pwhsnet.com
PWHS Networks -=20 http://www.pwhsnet.com
 
 
------=_NextPart_000_0082_01C1A5D8.0D602BD0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 19:47:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id CB07037B402 for ; Fri, 25 Jan 2002 19:47:53 -0800 (PST) Received: (from dan@localhost) by dan.emsphone.com (8.11.6/8.11.6) id g0Q3lgE01209; Fri, 25 Jan 2002 21:47:42 -0600 (CST) (envelope-from dan) Date: Fri, 25 Jan 2002 21:47:37 -0600 From: Dan Nelson To: Patrick Fish Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 4.4-RELEASE to 4.4-STABLE Message-ID: <20020126034737.GC2219@dan.emsphone.com> References: <008501c1a61b$1be22da0$2300a8c0@zeus> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <008501c1a61b$1be22da0$2300a8c0@zeus> User-Agent: Mutt/1.3.25i X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In the last episode (Jan 25), Patrick Fish said: > I just upgraded my 4.4-RELEASE system to 4.4-STABLE via cvsup, after > 'make world' i rebooted, logged back in, and: > > apollo% uname -a > FreeBSD apollo.pwhsnet.com 4.4-RELEASE FreeBSD 4.4-RELEASE #2: Fri Jan 25 17:50:19 PST 2002 patrick@apollo.pwhsnet.com:/usr/src/sys/compile/PWHSNET i386 Build a new kernel, too. -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 19:48:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from bedroom1.vagner.com (vsat-148-63-135-179.c2.sb4.mrt.starband.net [148.63.135.179]) by hub.freebsd.org (Postfix) with ESMTP id 28E0737B41B for ; Fri, 25 Jan 2002 19:48:35 -0800 (PST) Received: from there (office1.vagner.com [192.168.0.5]) by bedroom1.vagner.com (8.11.6/8.11.6) with SMTP id g0Q3neW00729; Fri, 25 Jan 2002 20:49:44 -0700 (MST) (envelope-from george@vagner.com) Message-Id: <200201260349.g0Q3neW00729@bedroom1.vagner.com> Content-Type: text/plain; charset="iso-8859-1" From: george To: Matt Penna , questions@FreeBSD.ORG Subject: Re: 3C509-TP Ethernet Date: Fri, 25 Jan 2002 20:48:22 -0700 X-Mailer: KMail [version 1.3] Cc: damon blom References: <5.1.0.14.2.20020125214653.035803d0@vmspop.isc.rit.edu> In-Reply-To: <5.1.0.14.2.20020125214653.035803d0@vmspop.isc.rit.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mine wont work unless i set my bios to legasy mode for the irq that is detected. On Friday 25 January 2002 07:52 pm, Matt Penna wrote: > At 01:06 PM 1/25/02 -0800, damon blom wrote: > >FreeBSD 4.5-RC #4 NEC Pentium III > >ep0:<#C509-TP EtherLink III> at port 0x300-0x30f irq 10 on isa 0 > >ep0:No irq! > >ep0:ep_alloc() failed(6) > > > > Installed this older ethernet card. No PnP. > > Damon, > > I haven't seen this specific error, but did you configure the card using > 3COM's DOS utility? 3c5x9cfg.exe, I believe it is. > > You can download it from their web site as part of the Etherdisk driver > set. You need to run this utility from DOS to configure the card - booting > from a diskette is fine - and make sure the card isn't set so it conflicts > with anything in your system. You can set the IRQ, media options and > various other things using this utility, including disabling PnP on the > card if you need to. > > This should hopefully solve the problem for you. If already did this after > you installed the card, I'm afraid I can't help. :/ > > Matt -- FreeBSD...Real Unix...not a clone. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 19:57:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 0206137B416 for ; Fri, 25 Jan 2002 19:57:00 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16UJxa-000Bx8-00 for freebsd-questions@FreeBSD.ORG; Sat, 26 Jan 2002 03:56:59 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 96438452B8; Sat, 26 Jan 2002 04:56:58 +0100 (CET) Date: Sat, 26 Jan 2002 04:56:58 +0100 From: Cliff Sarginson To: freebsd-questions@FreeBSD.ORG Subject: Re: shells confusion Message-ID: <20020126035658.GC1290@raggedclown.net> References: <20020126020430.P175-100000@BLAST> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020126020430.P175-100000@BLAST> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 02:18:16AM +0200, Bernie wrote: > > hi, > > i'm planning to learn shell programming but i'm not sure > on which one to choose... > > i've been reading in the 'FreeBSD unleashed' that people > wanting to do shell programming should stay away from > c-shell as it's realy good for interactive, but very bad > for scripts. is this true? Yes and Yes. > also, looking into the scripts in /etc, i see a line on the > top saying 'bin/sh'. so are they all written in 'sh' and > not csh ? if so, why freebsd comes with csh as default? > /bin/sh is the Unix common denominator of shells, so scripts get written in it. They are not written in csh, because as stated csh script is unusable for all practical purposes. You will be opening up another war here on the subject of which shell should be the default user/root shell. You may notice that "root" has two entries on the system, one as "root" with csh as it's shell, and one as "toor" with sh as it's shell. By the way, csh = tcsh on FreeBSD, I don't know if there is a "pure" csh around anymore. The huge difference between csh as was, and tcsh, being that tcsh is usable (ducks). > also, why single user mode proposes /bin/sh as default? > is there any particular reason for it? > Well it is probably true to say that most (all) Unix users know /bin/sh, not all of them know csh. Again it is the lowest common denominator I guess is the reasoning here. > i'm a bit confused on which shell to pick from programming. > also i've been thinking of perl, but for the moment i think > i've got to learn at least how to do basic shell programming, > not only to write programs, but also to understand scrips that > come with the system. > Leave perl alone for now and learn shell programming. There are a few shells that are super-sets of /bin/sh, notably the Korn shell and the Bash shell. Bash is the one I would personally advise you to use. You need to install it from the ports first. > but the question is 'which shell' ... > > any advice on this matter will be appreciated. > In summary, *not* the csh for scripts. Learn sh for scripts. Use bash or tcsh for your day to day interactive use. I think most people will give you more or less the same advice, the choice of tcsh or bash will mostly depend on their personal Unix backgrounds as much as anything else. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 20:11:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 0647737B404 for ; Fri, 25 Jan 2002 20:11:42 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16UKBp-0002U5-00 for freebsd-questions@FreeBSD.ORG; Sat, 26 Jan 2002 04:11:41 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 9AEFD452B8; Sat, 26 Jan 2002 05:11:40 +0100 (CET) Date: Sat, 26 Jan 2002 05:11:40 +0100 From: Cliff Sarginson To: freebsd-questions@FreeBSD.ORG Subject: Re: A question from a convert from Windows to FreeBSD Message-ID: <20020126041140.GD1290@raggedclown.net> References: <0ffe01c1a371$661d1b20$6600640a@attbi.com> <02012512323903.01099@BAPhD.gihon.org.au> <02012421455703.07381@proxy.pt.com> <02012614002402.01182@BAPhD.gihon.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <02012614002402.01182@BAPhD.gihon.org.au> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 02:00:24PM +1030, Brian Astill wrote: > On Friday 25 January 2002 13:15, Bill Moran wrote: > > > From your reaction, I'm guessing you have yet to discover the > > built-in man pages > > I had a recent problem of somehow not being able to enter my system as > user. I needed to change the me-as-user password and thought I would > need to know the password FreeBSD was already holding in order to do > this. I searched the man pages for passwd ypasswd etc etc, but NOWHERE > could I find anything that told me how to make the change without > knowing the existing password. > When I asked on this list, the answer was somewhat embarrassing . > > However, what I am saying is that the simple sentence "passwords can be > changed by root without knowledge of a users existing password" was > simply not there on any man page - heaps and heaps of well-written > detail I did not need, was. > > So just RTFM isn't any kind of solution for a newbie, who is likely to > suffer information overload and STILL not find a solution to his or her > problem. > Mmm. The man page should contain this sentence, you are correct. Man pages are minimalist, in the sense that they are supposed to be a concise, but complete, summary of something (they are not much use as teaching aids generally). If this is not stated on the man page then it should be, since the man page without it is incomplete. I think as a general point you can safely assume that anything that may need to be done can be done by root if it cannot be done by an ordinary user. Anyway, long live manual pages, just keep them complete. We should be glad FreeBSD has not yet taken to the eccentric and perverse decision made by the GNU people to try and replace them with the appalling "info" interface. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 20:22: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hydrogen.kimptongroup.com (kimpton-sjdc-199-114.digisle.net [167.216.199.114]) by hub.freebsd.org (Postfix) with SMTP id 3A88A37B41B for ; Fri, 25 Jan 2002 20:21:56 -0800 (PST) Received: (qmail 5059 invoked by uid 88); 26 Jan 2002 04:41:35 -0000 Message-ID: <20020126044135.5058.qmail@hydrogen.kimptongroup.com> From: "vanbo" To: freebsd-questions@freebsd.org Subject: BIOS Hibernation and FreeBSD 4.4 Date: Sat, 26 Jan 2002 04:41:35 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG OK, I have dug through the archives of both linux and freebsd lists trying to figure this one out, so hopefully somebody here will have an answer to this one... I want to be able to use my IBM Thinkpad T21 BIOS's "Suspend to Disk" aka Hibernation feature for FreeBSD. I have tried many things to get this to work, but I am always left with the same situation. You press the function key and the suspend to disk and nothing happens. No beeps, no lights, just acts like I never pushed it. Here is what I have tried with results: 1) Created a hibernation file with Phoenix's phdisk.exe utility on the MSDOS partition (slice 1) - this works fine if I boot off a DOS disk, but does not work when I boot into FreeBSD. Win2k also does not work (with bios hibernation works with Win2ks built-in hibernation) 2) Created a hibernation partition (type 160?) with the phdisk.exe utility and again works off a DOS floppy but not in Win2k or FreeBSD. The utility put the partition as slice 4 at the end of the drive. 3) Removed FreeBSD, removed hibernation partition, moved MSDOS partition forward on the drive with Partition Magic, then used phdisk.exe to recreate the hibernation partition. This put the partition at the beginning of the drive but again was slice 4 in boot record. Installed FreeBSD, again will not suspend to disk in FreeBSD or Win2k. At this point I am stumpted. It works from MSDOS (and Windows NT and Windows 9x and possibly Redhat Linux as my coworkers can use the BIOS suspend to disk) but it does not seem to work under Win2k or FreeBSD. I know that Win2k and FreeBSD only use the BIOS to boot, could it be that once booted the two don't pass all the functions to the bios? I can hit function suspend on the keyboard and FreeBSD will suspend (and resume) without a hitch (win2k also), its just the hibernation that gets ignored. I will gladly try patches or any other helpful ideas, but responses should be sent to my email as I am not subscribed to the list. VANBO To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 20:23:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from apollo.pwhsnet.com (adsl-64-164-36-143.dsl.scrm01.pacbell.net [64.164.36.143]) by hub.freebsd.org (Postfix) with ESMTP id 131F537B400 for ; Fri, 25 Jan 2002 20:23:07 -0800 (PST) Received: from zeus (patrick@zeus [192.168.0.35] (may be forged)) by apollo.pwhsnet.com (8.11.6/8.11.6) with SMTP id g0Q4Ksk28727; Fri, 25 Jan 2002 20:20:54 -0800 (PST) (envelope-from patrick@pwhsnet.com) From: Patrick Fish (patrick@pwhsnet.com) Message-ID: <008d01c1a620$984e09e0$2300a8c0@zeus> To: "Dan Nelson" Cc: References: <008501c1a61b$1be22da0$2300a8c0@zeus> <20020126034737.GC2219@dan.emsphone.com> Subject: Re: 4.4-RELEASE to 4.4-STABLE Date: Fri, 25 Jan 2002 20:19:06 -0800 Organization: PWHS Networks MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alright, but when i type 'make', In file included from linux_sysent.c:14: linux_proto.h:57: syntax error before `linux_time_t' linux_proto.h:57: `linux_time_t' undeclared here (not in a function) linux_proto.h:57: syntax error before `)' linux_proto.h:57: `linux_time_t' undeclared here (not in a function) linux_proto.h:57: syntax error before `)' linux_proto.h:156: syntax error before `linux_handler_t' linux_proto.h:156: `linux_handler_t' undeclared here (not in a function) linux_proto.h:156: `linux_handler_t' undeclared here (not in a function) linux_proto.h:184: syntax error before `linux_dev_t' linux_proto.h:184: `linux_dev_t' undeclared here (not in a function) linux_proto.h:184: `linux_dev_t' undeclared here (not in a function) linux_proto.h:189: syntax error before `linux_osigaction_t' linux_proto.h:189: `linux_osigaction_t' undeclared here (not in a function) linux_proto.h:189: syntax error before `)' linux_proto.h:189: `linux_osigaction_t' undeclared here (not in a function) linux_proto.h:189: syntax error before `)' linux_proto.h:190: syntax error before `linux_osigaction_t' linux_proto.h:190: `linux_osigaction_t' undeclared here (not in a function) linux_proto.h:190: syntax error before `)' linux_proto.h:190: `linux_osigaction_t' undeclared here (not in a function) linux_proto.h:190: syntax error before `)' linux_proto.h:196: syntax error before `linux_osigset_t' linux_proto.h:196: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:196: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:200: syntax error before `linux_osigset_t' linux_proto.h:200: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:200: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:201: syntax error before `linux_osigset_t' linux_proto.h:201: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:201: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:204: syntax error before `linux_osigset_t' linux_proto.h:204: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:204: syntax error before `)' linux_proto.h:204: `linux_osigset_t' undeclared here (not in a function) linux_proto.h:204: syntax error before `)' linux_proto.h:216: syntax error before `linux_gid_t' linux_proto.h:216: `linux_gid_t' undeclared here (not in a function) linux_sysent.c:21: sizeof applied to an incomplete type linux_sysent.c:21: warning: built-in function `exit' used without declaration linux_sysent.c:21: warning: cast discards qualifiers from pointer target type *** Error code 1 Stop in /usr/src/sys/modules/linux. *** Error code 1 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/src/sys/compile/PWHSNET. apollo# ....Any ideas? -- Patrick Fish - patrick@pwhsnet.com PWHS Networks - http://www.pwhsnet.com ----- Original Message ----- From: "Dan Nelson" To: "Patrick Fish" Cc: Sent: Friday, January 25, 2002 7:47 PM Subject: Re: 4.4-RELEASE to 4.4-STABLE > In the last episode (Jan 25), Patrick Fish said: > > I just upgraded my 4.4-RELEASE system to 4.4-STABLE via cvsup, after > > 'make world' i rebooted, logged back in, and: > > > > apollo% uname -a > > FreeBSD apollo.pwhsnet.com 4.4-RELEASE FreeBSD 4.4-RELEASE #2: Fri Jan 25 17:50:19 PST 2002 patrick@apollo.pwhsnet.com:/usr/src/sys/compile/PWHSNET i386 > > Build a new kernel, too. > > -- > Dan Nelson > dnelson@allantgroup.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 20:30: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id 39F6A37B404 for ; Fri, 25 Jan 2002 20:30:02 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 93BF766EF3; Fri, 25 Jan 2002 20:29:59 -0800 (PST) Date: Fri, 25 Jan 2002 20:29:59 -0800 From: Kris Kennaway To: Patrick Fish Cc: Dan Nelson , freebsd-questions@FreeBSD.ORG Subject: Re: 4.4-RELEASE to 4.4-STABLE Message-ID: <20020125202959.A73164@xor.obsecurity.org> References: <008501c1a61b$1be22da0$2300a8c0@zeus> <20020126034737.GC2219@dan.emsphone.com> <008d01c1a620$984e09e0$2300a8c0@zeus> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="gBBFr7Ir9EOA20Yy" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <008d01c1a620$984e09e0$2300a8c0@zeus>; from patrick@pwhsnet.com on Fri, Jan 25, 2002 at 08:19:06PM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --gBBFr7Ir9EOA20Yy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jan 25, 2002 at 08:19:06PM -0800, Patrick Fish wrote: > Alright, but when i type 'make', You're missing steps in the upgrade procedure. One of the earliest steps is to read /usr/src/UPDATING. The full procedure is documented in teh handbook, which you should read at this point. Kris --gBBFr7Ir9EOA20Yy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8UjDHWry0BWjoQKURAhY0AJsHhQKcJTNAvHeDwFi+UbZjvbnQowCeN0+0 H9m55ARii4ZZnsEFto2BIiM= =afpo -----END PGP SIGNATURE----- --gBBFr7Ir9EOA20Yy-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 21:19: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web10003.mail.yahoo.com (web10003.mail.yahoo.com [216.136.130.39]) by hub.freebsd.org (Postfix) with SMTP id AFD2F37B416 for ; Fri, 25 Jan 2002 21:19:04 -0800 (PST) Message-ID: <20020126051904.82242.qmail@web10003.mail.yahoo.com> Received: from [68.15.191.99] by web10003.mail.yahoo.com via HTTP; Fri, 25 Jan 2002 21:19:04 PST Date: Fri, 25 Jan 2002 21:19:04 -0800 (PST) From: Tom Kersten Subject: really easy java question.... To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all, I have installed linux-jdk-1.3.1 from on FreeBSD 4.4 from the ports. When I try to type "java" or "javac" it doesn't find the commmand...I can type the complete path (/usr/local/jdxxxx/bin/javac ...or ../java) and it works. I have added /usr/local/linux-jdkxxx/bin to my path in my .cshrc file but still no luck...what's the deal??? Thomas __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 21:27:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from out0.mx.nwbl.wi.voyager.net (out0.mx.nwbl.wi.voyager.net [169.207.1.78]) by hub.freebsd.org (Postfix) with ESMTP id AE06E37B400 for ; Fri, 25 Jan 2002 21:27:26 -0800 (PST) Received: from shell.core.com (IDENT:2525@shell.voyager.net [169.207.1.89]) by out0.mx.nwbl.wi.voyager.net (8.11.4/8.11.4/1.7) with ESMTP id g0Q5Rkg76360 for ; Fri, 25 Jan 2002 23:27:46 -0600 (CST) Received: from localhost (raiden@localhost) by shell.core.com (8.11.6/8.11.6/1.3) with ESMTP id g0Q5RP320086 for ; Fri, 25 Jan 2002 23:27:25 -0600 (CST) Date: Fri, 25 Jan 2002 23:27:25 -0600 (CST) From: Steven Lake X-X-Sender: raiden@shell.core.com To: freebsd-questions@FreeBSD.ORG Subject: Start/stop services Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ok, stupid question. How do you stop and restart services? Examples are like sendmail, Qmail, apache, mySQL? Sorry for the newbie question all. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 21:34:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tomts6-srv.bellnexxia.net (tomts6.bellnexxia.net [209.226.175.26]) by hub.freebsd.org (Postfix) with ESMTP id B9BE637B402 for ; Fri, 25 Jan 2002 21:34:43 -0800 (PST) Received: from d.tracker ([64.231.226.71]) by tomts6-srv.bellnexxia.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20020126053442.KFOD2219.tomts6-srv.bellnexxia.net@d.tracker> for ; Sat, 26 Jan 2002 00:34:42 -0500 Received: (from david@localhost) by d.tracker (8.11.6/8.11.3) id g0Q5QVZ00627 for questions@freebsd.org; Sat, 26 Jan 2002 00:26:31 -0500 (EST) (envelope-from david) Date: Sat, 26 Jan 2002 00:26:30 -0500 From: David Banning To: questions@freebsd.org Subject: what process runs network? Message-ID: <20020126002630.A618@sympatico.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I changing some of the addresses in /etc/hosts and changing some ip numbers of networked computers in the office. I know I have to restart samba but what other process do I kill and then restart without powering down (and restarting) the main box? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 21:37: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id 6598037B402 for ; Fri, 25 Jan 2002 21:37:01 -0800 (PST) Received: (qmail 56672 invoked by uid 100); 26 Jan 2002 05:37:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15442.16508.192099.626294@guru.mired.org> Date: Fri, 25 Jan 2002 23:37:00 -0600 To: Andrew Gould Cc: questions@freebsd.org Subject: Re: Canon BJC-1000 In-Reply-To: <20020126025724.2341.qmail@web13408.mail.yahoo.com> References: <15442.3320.475484.557084@guru.mired.org> <20020126025724.2341.qmail@web13408.mail.yahoo.com> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG [Context recovered from top posting.] Andrew Gould types: > --- Mike Meyer > > Someone just gave me a Canon BJC-1000, and I'm hoping that someone > > here has experience with that creature and FreeBSD. In particular, > > I saw a bunch of commits to the port tree of softtware that did > > photo-quality rendering with various printers, but can't seem to > > find any of that software now. Can I get reasonable color prints out > > of the thing with FreeBSD, or should I use it as ballast? > The url below has some driver info for the Canon > BJC-1000. The website is geared towards Linux; but > I'm under the impression that printing issues are > pretty much the same for FreeBSD and Linux. (Please > correct me if I'm mistaken.) > > http://www.linuxprinting.org/show_printer.cgi?recnum=139017 Yes, printing issues are pretty much the same. That told me which drivers to use for this printer, and checking the ghostscript ports shows that it already includes a couple of the appropriate drivers, if I turn them on. Thanks, http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 21:45: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web.cs.ndsu.nodak.edu (web.cs.ndsu.NoDak.edu [134.129.125.7]) by hub.freebsd.org (Postfix) with ESMTP id 9739037B404; Fri, 25 Jan 2002 21:44:53 -0800 (PST) Received: (from tinguely@localhost) by web.cs.ndsu.nodak.edu (8.11.4/8.11.4) id g0Q5ioC34521; Fri, 25 Jan 2002 23:44:50 -0600 (CST) (envelope-from tinguely) Date: Fri, 25 Jan 2002 23:44:50 -0600 (CST) From: mark tinguely Message-Id: <200201260544.g0Q5ioC34521@web.cs.ndsu.nodak.edu> To: finlayson@live.com, tinguely@web.cs.ndsu.nodak.edu Subject: Re: MBone/mrouted troubles Cc: freebsd-multimedia@freebsd.org, freebsd-questions@freebsd.org In-Reply-To: <4.3.1.1.20020125211645.00c7e3a0@localhost> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I got a request for Bill Fenner's UDP checksum fix for multicast forwarding. And thought other would like it too. This patch is relative to FreeBSD 4.5RC1's sys/netinet/ip_output.c. The offsets will differ slightly on FreeBSD 4.4 : --- ip_output.c.orig Fri Dec 28 04:08:33 2001 +++ ip_output.c Fri Jan 25 09:23:21 2002 @@ -350,6 +350,16 @@ */ if (!rsvp_on) imo = NULL; + /* + * XXX + * delayed checksums are not currently + * compatible with IP multicast routing. + */ + if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) { + in_delayed_cksum(m); + m->m_pkthdr.csum_flags &= + ~CSUM_DELAY_DATA; + } if (ip_mforward(ip, ifp, m, imo) != 0) { m_freem(m); goto done; @@ -1887,6 +1897,17 @@ register struct ip *ip; struct mbuf *copym; + /* + * XXX + * delayed checksums are not currently + * compatible with IP multicast routing. + * Can't do this on copym because it may + * be shared. + */ + if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) { + in_delayed_cksum(m); + m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA; + } copym = m_copy(m, 0, M_COPYALL); if (copym != NULL && (copym->m_flags & M_EXT || copym->m_len < hlen)) copym = m_pullup(copym, hlen); @@ -1927,12 +1948,6 @@ copym->m_pkthdr.rcvif = ifp; ip_input(copym); #else - /* if the checksum hasn't been computed, mark it as valid */ - if (copym->m_pkthdr.csum_flags & CSUM_DELAY_DATA) { - copym->m_pkthdr.csum_flags |= - CSUM_DATA_VALID | CSUM_PSEUDO_HDR; - copym->m_pkthdr.csum_data = 0xffff; - } if_simloop(ifp, copym, dst->sin_family, 0); #endif } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 21:49:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id EC10C37B402 for ; Fri, 25 Jan 2002 21:49:05 -0800 (PST) Received: (qmail 65353 invoked by uid 100); 26 Jan 2002 05:49:02 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15442.17229.937600.658651@guru.mired.org> Date: Fri, 25 Jan 2002 23:49:01 -0600 To: Bernie Cc: questions@freebsd.org Subject: Re: shells confusion In-Reply-To: <947431@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bernie types: > i'm planning to learn shell programming but i'm not sure > on which one to choose... > > i've been reading in the 'FreeBSD unleashed' that people > wanting to do shell programming should stay away from > c-shell as it's realy good for interactive, but very bad > for scripts. is this true? Yes. However, some of the more serious problems have been fixed in the variants. > also, looking into the scripts in /etc, i see a line on the > top saying 'bin/sh'. so are they all written in 'sh' and > not csh ? if so, why freebsd comes with csh as default? Because csh is better for interactive use than sh. > also, why single user mode proposes /bin/sh as default? > is there any particular reason for it? Probably because no one has bothered to change it. > i'm a bit confused on which shell to pick from programming. > also i've been thinking of perl, but for the moment i think > i've got to learn at least how to do basic shell programming, > not only to write programs, but also to understand scrips that > come with the system. I'd agree with that, as Perl scripts often invoke commands, and one of the design goals was to make it easy for shell programmers to learn. It's not clear the latter is a *good* thing, but that's a different thread. > but the question is 'which shell' ... Unix shells fall into three different classes: sh and variants, csh and variants, and "other". As Charles pointed out, bash is by far the most popular shell for interactive use. It picks up most of the nice interactive features of csh, along with features from variants of csh and sh. However, not all systems come with bash, though they all come with an sh variant. An sh script should work fine in bash, but not necessarily the reverse, because of the extra features. Which leads to the conclusion: learn sh for scripting. It will be applicable on all Unix systems, and everything you learn will be applicable in bash, though there may be quicker or easier ways to do certain things. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 22: 7:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web10007.mail.yahoo.com (web10007.mail.yahoo.com [216.136.130.43]) by hub.freebsd.org (Postfix) with SMTP id 7BB8D37B400 for ; Fri, 25 Jan 2002 22:07:25 -0800 (PST) Message-ID: <20020126060725.30871.qmail@web10007.mail.yahoo.com> Received: from [68.15.191.99] by web10007.mail.yahoo.com via HTTP; Fri, 25 Jan 2002 22:07:25 PST Date: Fri, 25 Jan 2002 22:07:25 -0800 (PST) From: Tom Kersten Subject: Re: really easy java question.... To: David Banning , freebsd-questions@freebsd.org In-Reply-To: <20020126003136.A631@sympatico.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --- David Banning wrote: > On Fri, Jan 25, 2002 at 09:19:04PM -0800, Tom > Kersten wrote: > > Hello all, > > > > I have installed linux-jdk-1.3.1 from on FreeBSD > 4.4 > > from the ports. When I try to type "java" or > "javac" > > it doesn't find the commmand...I can type the > complete > > path (/usr/local/jdxxxx/bin/javac ...or ../java) > and > > it works. I have added /usr/local/linux-jdkxxx/bin > to > > my path in my .cshrc file but still no > luck...what's > > the deal??? > > You sure you are running csh? > Check /etc/passwd to double check what shell you are > running... > yep.... --/etc/passwd clipped----- thomas:*:****:*****:Thomas:/home/thomas:/bin/csh -----clipped--------- any other ideas? Thomas __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 22: 9:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id 06DB537B402 for ; Fri, 25 Jan 2002 22:09:37 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id D78D82B82F; Sat, 26 Jan 2002 07:09:12 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id E9AF5151; Sat, 26 Jan 2002 17:08:34 +1100 (EST) Date: Sat, 26 Jan 2002 17:08:34 +1100 From: Edwin Groothuis To: Bernie Cc: freebsd-questions@FreeBSD.ORG Subject: Re: shells confusion Message-ID: <20020126170834.N823@k7.mavetju.org> Mail-Followup-To: Edwin Groothuis , Bernie , freebsd-questions@FreeBSD.ORG References: <20020126020430.P175-100000@BLAST> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020126020430.P175-100000@BLAST>; from Bernie_X@myrealbox.com on Sat, Jan 26, 2002 at 02:18:16AM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 02:18:16AM +0200, Bernie wrote: > i'm planning to learn shell programming but i'm not sure > on which one to choose... Try the Bourne shell /bin/sh for a special reason: it's available on all unix-systems so your scripts will run under all unix-variants. > also, looking into the scripts in /etc, i see a line on the > top saying 'bin/sh'. so are they all written in 'sh' and > not csh ? if so, why freebsd comes with csh as default? csh is the Berkeley UNIX C shell, that's why :-) > also, why single user mode proposes /bin/sh as default? > is there any particular reason for it? Well, it asks you which shell you want and it proposes /bin/sh. If you have to boot your machine in single user then only the root filesystem is mounted. So the shell (and all its libraries if it's not staticly linked) must be in that file-system. Furthermore, as before, it's the default unix-shell, it's available everywhere. Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 22: 9:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id 9831137B402 for ; Fri, 25 Jan 2002 22:09:47 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 69B782B82F; Sat, 26 Jan 2002 07:09:39 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id AD3A11A4; Sat, 26 Jan 2002 17:09:16 +1100 (EST) Date: Sat, 26 Jan 2002 17:09:16 +1100 From: Edwin Groothuis To: Steven Lake Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Start/stop services Message-ID: <20020126170916.O823@k7.mavetju.org> Mail-Followup-To: Edwin Groothuis , Steven Lake , freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from raiden@shell.core.com on Fri, Jan 25, 2002 at 11:27:25PM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Jan 25, 2002 at 11:27:25PM -0600, Steven Lake wrote: > Ok, stupid question. How do you stop and restart services? > Examples are like sendmail, Qmail, apache, mySQL? Sorry for the newbie > question all. Thanks. A couple of them are done via scripts in /usr/local/etc/rc.d Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 22:53:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.vrx.net (vrx.net [216.13.126.22]) by hub.freebsd.org (Postfix) with ESMTP id 261EC37B402 for ; Fri, 25 Jan 2002 22:53:19 -0800 (PST) Received: from [192.168.1.3] (bgp493665bgs.verona01.nj.comcast.net [68.37.210.153]) by ns1.vrx.net (Postfix) with ESMTP id 5F369D33C for ; Sat, 26 Jan 2002 01:53:16 -0500 (EST) Mime-Version: 1.0 X-Sender: alvaro@199.166.24.1 Message-Id: Date: Sat, 26 Jan 2002 01:52:23 -0500 To: freebsd-questions@freebsd.org From: Alvaro Gil Subject: Silly question. How to install ports. Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am having trouble installing ports. I am trying to update apache to 1.3.22. I downloaded the tarball and did a pkg_add apacheblabla.tar. it made a new group called www and quit. Is this how one usually installs ports? How do you install a port in the ports directory or if its not in a tarball? I know this info is online somewhere but I cannot seem to find it right now. Thanks. -- ____________________________________________ Alvaro Gil http://www.AlvaroGil.com '84 Volvo 242 Turbo (Silver) 13 psi '97 Leopard Gecko (White, Yellow, Black) NJIT Mechanical Engineering Student ____________________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 22:59:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by hub.freebsd.org (Postfix) with ESMTP id 74DC237B400 for ; Fri, 25 Jan 2002 22:59:09 -0800 (PST) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id WAA02973; Fri, 25 Jan 2002 22:58:35 -0800 Message-ID: <3C52539A.3090704@owt.com> Date: Fri, 25 Jan 2002 22:58:34 -0800 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 To: Neil McGann Cc: freebsd-questions@FreeBSD.ORG Subject: Re: UDMA and 100Mbit NIC speed issues References: <5.1.0.14.0.20020125204321.00a0f4c0@pop.ntlworld.com> <3C51D185.2090600@owt.com> <5.1.0.14.0.20020125235403.00a1f930@pop.ntlworld.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Neil McGann wrote: > At 15:32 25/01/02 -0800, you wrote: > >> Kent Stewart wrote: >> >> I am curious what kind of setup you have. Since we are not seeing the >> same transfer rate between FreeBSD machines, I have to assume you have >> something configured differently than I do. An ifconfig on coral shows >> >> sis0: flags=8843 mtu 1500 >> inet 192.168.0.17 netmask 0xffffff00 broadcast 192.168.0.255 >> ether 00:07:95:0b:0c:31 >> media: Ethernet autoselect (100baseTX ) >> status: active >> >> This is basically a default setup. The only difference on opal is the >> internal ether address and IP. >> >> I have all of my systems hooked up to 10/100 baseT switches and are >> all running full-duplex. They are on different floors. I have nomad >> and opal on the same switch and coral is in the basement and on the >> second switch. Nomad uses an Intel Pro 10/100+ and coral and opal are >> using the SiS-900 builtin NIC, which was just added to the 4.5 support. > > > ifconfig shows identical parameters to yours, except I have inet6 > addresses too (it's an out-of-the-box stock config, I haven't really > tweaked it much yet). > > Does hw.atamodes show you definitely dma? On coral hw.atamodes: dma,---,pio,---,dma,---,dma,---, on opal hw.atamodes: dma,dma,dma,dma, This also covers the arrangement. Coral has each HD on it's own controler. The pio mode is the TDK CD-R/RW writer. The last two are on a Promise Ultra-100. Opal has 3 HDs and a UDMA-66 DVD on the 2 standard controllers on the SiS-735 based mb. FWIW, opal will do a buildworld in 957.195u 263.416s 21:11.71 95.9% 1366+1576k 11744+3435io 3031pf+0w and coral does it in 960.366u 264.268s 22:09.61 92.1% 1360+1563k 44724+3406io 3013pf+0w Each of them have /usr/obj and /usr/src on different partitions on differen HDs from / & /usr. The fact that opal will finish almost a minute faster was kind of surprising. I had also tested doing buildworlds with a no -j to -j6, in steps of 2, and the no -j was the fastest wall clock time on both systems and -j2 was the slowest. Around -j4 the wall clock time started increasing. I had 3C905 on one and an Intel Pro 10/100+ on the other and when Bill Paul made the SiS-900 work, it was fastest on both machines. I was building ports on the two AMD 1600's and moving the distfiles and the packages to the slower machines. Before the SiS-900 worked the larger memory cache on the Intel always seemed to be 1-2MB/s faster than the 3C905xs. -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://users.owt.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 23: 5:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fedde.littleton.co.us (cfedde.dsl.frii.net [216.17.139.141]) by hub.freebsd.org (Postfix) with ESMTP id E8A9A37B400 for ; Fri, 25 Jan 2002 23:05:01 -0800 (PST) Received: from fedde.littleton.co.us (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.6/8.11.4) with ESMTP id g0Q74u864537; Sat, 26 Jan 2002 00:04:56 -0700 (MST) Message-Id: <200201260704.g0Q74u864537@fedde.littleton.co.us> To: bastill@sa.apana.org.au Cc: freebsd-questions@FreeBSD.ORG Subject: Re: A question from a convert from Windows to FreeBSD In-Reply-To: <02012614002402.01182@BAPhD.gihon.org.au> From: Chris Fedde Date: Sat, 26 Jan 2002 00:04:56 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 26 Jan 2002 14:00:24 +1030 Brian Astill wrote: +------------------ | On Friday 25 January 2002 13:15, Bill Moran wrote: | | > From your reaction, I'm guessing you have yet to discover the | > built-in man pages | | I had a recent problem of somehow not being able to enter my system as | user. I needed to change the me-as-user password and thought I would | need to know the password FreeBSD was already holding in order to do | this. I searched the man pages for passwd ypasswd etc etc, but NOWHERE | could I find anything that told me how to make the change without | knowing the existing password. | When I asked on this list, the answer was somewhat embarrassing . | | However, what I am saying is that the simple sentence "passwords can be | changed by root without knowledge of a users existing password" was | simply not there on any man page - heaps and heaps of well-written | detail I did not need, was. +------------------ But the manual page says this in the the first paragraph... Passwd changes the user's local, Kerberos, or NIS password. If the user is not the super-user, passwd first prompts for the current password and will not continue unless the correct password is entered. The second sentence seems to be just another way of saying exactly what you say was missing from the page. Maybe I've been reading these things for too long, but it seems clear to me. Negative logic can be confusing. And maybe this needs some cleaning up. You might want to submit a patch to the FreeBSD Documentation project. -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 23:13:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fedde.littleton.co.us (cfedde.dsl.frii.net [216.17.139.141]) by hub.freebsd.org (Postfix) with ESMTP id 3A52037B400 for ; Fri, 25 Jan 2002 23:13:12 -0800 (PST) Received: from fedde.littleton.co.us (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.6/8.11.4) with ESMTP id g0Q7D8864592; Sat, 26 Jan 2002 00:13:08 -0700 (MST) Message-Id: <200201260713.g0Q7D8864592@fedde.littleton.co.us> To: Alvaro Gil Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Silly question. How to install ports. In-Reply-To: From: Chris Fedde Date: Sat, 26 Jan 2002 00:13:08 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 26 Jan 2002 01:52:23 -0500 Alvaro Gil wrote: +------------------ | I am having trouble installing ports. I am trying to update apache | to 1.3.22. I downloaded the tarball and did a pkg_add | apacheblabla.tar. it made a new group called www and quit. | | Is this how one usually installs ports? How do you install a port in | the ports directory or if its not in a tarball? I know this info is | online somewhere but I cannot seem to find it right now. | | Thanks. +------------------ If you are talking about a package tarball then what you did should have worked. If you are talking ports as in /usr/ports. Then cd to the directory containing the target and do "make install" as root. then sit back and watch the ftp and compiler messages fly. If you are talking about a package and you are running a -release system then you might want to use the /stand/sysinstall application configure>>packages>>Install from an FTP server If you are talking about a source tarball then gzcat blabal.tar.gz | ar -xvf - cd blabla ./configure make make install Good Luck! -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 23:27:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.mx.pitdc1.stargate.net (smtp1.mx.pitdc1.stargate.net [206.210.69.141]) by hub.freebsd.org (Postfix) with SMTP id 2120E37B417 for ; Fri, 25 Jan 2002 23:27:28 -0800 (PST) Received: (qmail 29391 invoked from network); 26 Jan 2002 07:27:16 -0000 Received: from dap-209-166-136-233.nfas.greensburg-tnt-1.sns234.pa.stargate.net (HELO wastegate.net) (209.166.136.233) by smtp1.mx.pitdc1.stargate.net with SMTP; 26 Jan 2002 07:27:16 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id C8C704844F; Sat, 26 Jan 2002 02:27:49 -0500 (EST) From: "Doug Reynolds" To: "freebsd-questions@FreeBSD.ORG" , "Patrick Fish (patrick@pwhsnet.com)" Date: Sat, 26 Jan 2002 02:29:51 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: <008501c1a61b$1be22da0$2300a8c0@zeus> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: 4.4-RELEASE to 4.4-STABLE Message-Id: <20020126072749.C8C704844F@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 25 Jan 2002 19:39:49 -0800, Patrick Fish (patrick@pwhsnet.com) wrote: >I just upgraded my 4.4-RELEASE system to 4.4-STABLE via cvsup, after 'make world' i rebooted, logged back in, and: > > >apollo% uname -a >FreeBSD apollo.pwhsnet.com 4.4-RELEASE FreeBSD 4.4-RELEASE #2: Fri Jan 25 17:50:19 PST 2002 patrick@apollo.pwhsnet.com:/usr/src/sys/compile/PWHSNET i386 when you did a make world, that only upgraded the userland. the uname displays the kernel. to update the kernel do: make kernel reboot (give you the GENERIC kernel) or make kernel KERNCONF=yourkernelconf reboot the proper way should be something similar to this: cvsup make buildworld make kernel KERNCONF=yourkernelconf reboot boot single user mode by hitting the space and typing boot -s and enter. hit enter when it asks you for the shell; then: fsck -p umount -a mount -a make installworld mergemaster reboot that'll up you to the latest. (btw, if anyone sees any safely problems with this order, lemme know, seems totally redundant) --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 23:42:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailg.telia.com (mailg.telia.com [194.22.194.26]) by hub.freebsd.org (Postfix) with ESMTP id B64AA37B400 for ; Fri, 25 Jan 2002 23:42:23 -0800 (PST) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by mailg.telia.com (8.11.6/8.11.6) with ESMTP id g0Q7gMH24087 for ; Sat, 26 Jan 2002 08:42:22 +0100 (CET) Received: from falcon.midgard.homeip.net (h185n2fls20o913.telia.com [212.181.163.185]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id IAA24822 for ; Sat, 26 Jan 2002 08:42:21 +0100 (CET) Received: (qmail 43326 invoked by uid 1001); 26 Jan 2002 07:42:20 -0000 Date: Sat, 26 Jan 2002 08:42:20 +0100 From: Erik Trulsson To: Doug Reynolds Cc: "freebsd-questions@FreeBSD.ORG" , "Patrick Fish (patrick@pwhsnet.com)" Subject: Re: 4.4-RELEASE to 4.4-STABLE Message-ID: <20020126074219.GA43298@student.uu.se> Mail-Followup-To: Doug Reynolds , "freebsd-questions@FreeBSD.ORG" , "Patrick Fish (patrick@pwhsnet.com)" References: <008501c1a61b$1be22da0$2300a8c0@zeus> <20020126072749.C8C704844F@wastegate.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020126072749.C8C704844F@wastegate.net> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 02:29:51AM -0500, Doug Reynolds wrote: > > cvsup > > make buildworld > make kernel KERNCONF=yourkernelconf > reboot > boot single user mode by hitting the space and typing boot -s and > enter. hit enter when it asks you for the shell; then: > fsck -p > umount -a This umount seems quite unnecessary since if you just rebooted into single-user mode the only thing mounted will be / which is mounted read-only. OTOH one thing you probably do want here instead is swapon -a to make sure that any swapspace you have can be used. (I once forgot that on a memory-poor machine. The installworld died halfway through with an out-of-memory error.) > mount -a > > make installworld > mergemaster > reboot > > that'll up you to the latest. > > (btw, if anyone sees any safely problems with this order, lemme know, > seems totally redundant) Redundant? No. You can usually skip the 'reboot into single-user mode' part without any ill-effects but that is about it. -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Jan 25 23:44:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from stereophonic.noops.org (adsl-63-195-97-84.dsl.snfc21.pacbell.net [63.195.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 6A53437B402 for ; Fri, 25 Jan 2002 23:44:12 -0800 (PST) Received: from localhost (tcannon@localhost) by stereophonic.noops.org (8.11.6/8.11.6) with ESMTP id g0Q7i2883010; Fri, 25 Jan 2002 23:44:02 -0800 (PST) (envelope-from tcannon@noops.org) X-Authentication-Warning: stereophonic.noops.org: tcannon owned process doing -bs Date: Fri, 25 Jan 2002 23:44:02 -0800 (PST) From: Thomas Cannon To: Tom Kersten Cc: David Banning , Subject: Re: really easy java question.... In-Reply-To: <20020126060725.30871.qmail@web10007.mail.yahoo.com> Message-ID: <20020125234122.R82850-100000@stereophonic.noops.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > You sure you are running csh? > > Check /etc/passwd to double check what shell you are > > running... > > > > yep.... > --/etc/passwd clipped----- > thomas:*:****:*****:Thomas:/home/thomas:/bin/csh > I am curious as to why you starred out your UID and GID. But anyway, when you do an 'echo $SHELL' what does it say? And if you run 'echo $PATH' does it show the path you'd expect? -tcannon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 0: 1:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from nycsmtp2out.rdc-nyc.rr.com (nycsmtp2out.rdc-nyc.rr.com [24.29.99.227]) by hub.freebsd.org (Postfix) with ESMTP id E1C6A37B422 for ; Sat, 26 Jan 2002 00:01:08 -0800 (PST) Received: from scott1.homeunix.net (24-168-24-239.nyc.rr.com [24.168.24.239]) by nycsmtp2out.rdc-nyc.rr.com (8.12.1/Road Runner SMTP Server 1.0) with SMTP id g0Q80EEE004826; Sat, 26 Jan 2002 03:00:14 -0500 (EST) Date: Sat, 26 Jan 2002 06:33:24 -0500 From: Scott Robbins To: Erik Trulsson Cc: mav@wastegate.net, freebsd-questions@FreeBSD.ORG, patrick@pwhsnet.com Subject: Re: 4.4-RELEASE to 4.4-STABLE Message-Id: <20020126063324.182bf5d9.scottro@nyc.rr.com> In-Reply-To: <20020126074219.GA43298@student.uu.se> References: <008501c1a61b$1be22da0$2300a8c0@zeus> <20020126072749.C8C704844F@wastegate.net> <20020126074219.GA43298@student.uu.se> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.5) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 26 Jan 2002 08:42:20 +0100 Erik Trulsson wrote: > On Sat, Jan 26, 2002 at 02:29:51AM -0500, Doug Reynolds wrote: > > > > cvsup > > > > make buildworld > > make kernel KERNCONF=yourkernelconf > Here's where I see a potential problem. From time to time, there are changes in GENERIC, and after a couple of failed builds, I now do the following. Before doing cvsup I copy GENERIC to GENERIC.bak. Afterwards, I'll do diff GENERIC GENERIC.bak and if there are changes, then I copy GENERIC over to my originally named SCOTT1 kernel and redo it. (I'll also check any options I've added against LINT--for example, until recently dev pcm0 was fine, now, it seems one should add at isa? irqX drqX flags 0x0) If the diff shows no changes after cvsup, I buildworld then check it again (not sure if that's necessary, but it only takes a few seconds). Assuming diff shows no changes, then I'll do the make buildkernel KERNCONF=SCOTT1 Did a cvsup tonight, actually, and there were a couple of minor changes since I last did it. Hope this is of use--let me point out that I'm relatively new to FreeBSD and may perhaps be wasting people's time, but blithely ignoring the handbook's suggestions and skipping the build and install of GENERIC did cost me a copy of failed compilations. Scott Robbins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 0: 2:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail8.nc.rr.com (fe8.southeast.rr.com [24.93.67.55]) by hub.freebsd.org (Postfix) with ESMTP id 275CC37B404 for ; Sat, 26 Jan 2002 00:02:21 -0800 (PST) Received: from i8k.babbleon.org ([66.57.85.154]) by mail8.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Sat, 26 Jan 2002 02:05:54 -0500 Received: by i8k.babbleon.org (Postfix, from userid 111) id A3D7F3FE5; Sat, 26 Jan 2002 02:04:46 -0500 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: Alvaro Gil , freebsd-questions@FreeBSD.ORG Subject: Re: Silly question. How to install ports. Date: Sat, 26 Jan 2002 02:04:46 -0500 X-Mailer: KMail [version 1.3] References: In-Reply-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020126070446.A3D7F3FE5@i8k.babbleon.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Saturday 26 January 2002 01:52 am, Alvaro Gil wrote: > I am having trouble installing ports. I am trying to update apache > to 1.3.22. I downloaded the tarball and did a pkg_add > apacheblabla.tar. it made a new group called www and quit. > > Is this how one usually installs ports? How do you install a port in > the ports directory or if its not in a tarball? I know this info is > online somewhere but I cannot seem to find it right now. Well, the usual way to install a port is: cd /usr/ports/*/portname make install If that is the older version, then you do make deinstall cd /usr/ports/*/cvsup make install cd /usr/ports cp /usr/share/examples/cvsup/ports-supfile mysup edit mysup to pick the server to use cvsup and *then* cd /usr/ports/*/portname make install You pkg_add a *package* (thus the name), not a *port*; you can get packages from the freebsd.org website. There's lots more info in the FreeBSD handbook. You should check it out. > > Thanks. -- Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org -------> Free Dmitry Sklyarov! (let him go home) <----------- http://www.eff.org http://www.programming-freedom.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 0:29:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Mail6.nc.rr.com (fe6.southeast.rr.com [24.93.67.53]) by hub.freebsd.org (Postfix) with ESMTP id 6570A37B404 for ; Sat, 26 Jan 2002 00:29:40 -0800 (PST) Received: from i8k.babbleon.org ([66.57.85.154]) by Mail6.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Sat, 26 Jan 2002 02:02:28 -0500 Received: by i8k.babbleon.org (Postfix, from userid 111) id C8FD93FE5; Sat, 26 Jan 2002 02:01:14 -0500 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: Cliff Sarginson , freebsd-questions@FreeBSD.ORG Subject: Re: shells confusion Date: Sat, 26 Jan 2002 02:01:14 -0500 X-Mailer: KMail [version 1.3] References: <20020126020430.P175-100000@BLAST> <20020126035658.GC1290@raggedclown.net> In-Reply-To: <20020126035658.GC1290@raggedclown.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020126070114.C8FD93FE5@i8k.babbleon.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday 25 January 2002 10:56 pm, Cliff Sarginson wrote: > On Sat, Jan 26, 2002 at 02:18:16AM +0200, Bernie wrote: > > hi, > > > > i'm planning to learn shell programming but i'm not sure > > on which one to choose... > > > > i've been reading in the 'FreeBSD unleashed' that people > > wanting to do shell programming should stay away from > > c-shell as it's realy good for interactive, but very bad > > for scripts. is this true? > > Yes and Yes. I would not agree with this at all. I find csh much more readable/sensible than /bin/sh for interactive use. Spaces don't matter; if statements are vastly more readable, etc. Now for really complex "shell" programming I use perl, but C shell is, IMHO, a lot easier to write and read than /bin/sh. There *is* one severe problem with csh that I know of: the quoting rules are just plain broken; if you get into nested quotes things get screwy quickly. I work around this with set Q = "'" set QQ = '"' set $S = '$' at the top of my scripts, but I freely admit that it is completely stupid that I should have to do so, but writing if ($a > 4) then echo "$a is greater than 4" endif vs. if [[eval $a > 4]];; echo "$a just tell me that's more readable. I dare you." fi (or whatever--the syntax is inexact) it just seems to be to be no contest: csh wins, hands-down. Plus the convenience of if ($a =~ foo*) vs. (as far as I can tell) having to do a switch just for string tests -- again, csh is the scripting shell for me. EXCEPT that on non-BSD systems, csh isn't necessarily always avaialble. Other than that, when push comes to shove, this is more a matter of personal opinion than any inherent superiority of one shell over another. (Well, bash or zsh, which postdate /bin/sh and csh might be better and of course tcsh is better than original csh . . . but /bin/sh is really terrible for scripting if you ask me, never mind that it's widely used.) > > also, looking into the scripts in /etc, i see a line on the > > top saying 'bin/sh'. so are they all written in 'sh' and > > not csh ? if so, why freebsd comes with csh as default? > > /bin/sh is the Unix common denominator of shells, so scripts > get written in it. They are not written in csh, because as > stated csh script is unusable for all practical purposes. unusable??????? What on earch are you talking about? I have many dozens of quite usable csh scripts. And they are readable, too. > > You will be opening up another war here on the subject > of which shell should be the default user/root shell. > You may notice that "root" has two entries on the system, > one as "root" with csh as it's shell, and one as "toor" > with sh as it's shell. > > By the way, csh = tcsh on FreeBSD, I don't know if there > is a "pure" csh around anymore. The huge difference between > csh as was, and tcsh, being that tcsh is usable (ducks). The main difference is the interactive history. Lots of other bells & whistles, but csh was usable, too. A huge, huge improvement for both interactive and scripted use over the original /bin/sh. > In summary, *not* the csh for scripts. > Learn sh for scripts. I agree that you might have to (unfortunately) learn a mininum of sh for scripts, because the vast majority of scripts are written in it, but it's definately a matter of opinion whether they *should* be written in it. > Use bash or tcsh for your day to day interactive use. > > I think most people will give you more or less the same > advice, the choice of tcsh or bash will mostly depend on > their personal Unix backgrounds as much as anything else. -- Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org -------> Free Dmitry Sklyarov! (let him go home) <----------- http://www.eff.org http://www.programming-freedom.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 1: 2:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp04.retemail.es (smtp04.iddeo.es [62.81.186.14]) by hub.freebsd.org (Postfix) with ESMTP id C810037B417 for ; Sat, 26 Jan 2002 01:02:20 -0800 (PST) Received: from conway.localdomain ([62.174.25.77]) by smtp04.retemail.es (InterMail vM.5.01.03.02 201-253-122-118-102-20010403) with SMTP id <20020126090218.GKCN673.smtp04.retemail.es@conway.localdomain> for ; Sat, 26 Jan 2002 10:02:18 +0100 Date: Sat, 26 Jan 2002 10:04:11 +0100 From: F.Xavier Noria To: freebsd-questions@freebsd.org Subject: Re: really easy java question.... Message-Id: <20020126100411.0522c546.fxn@retemail.es> In-Reply-To: <20020126051904.82242.qmail@web10003.mail.yahoo.com> References: <20020126051904.82242.qmail@web10003.mail.yahoo.com> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 25 Jan 2002 21:19:04 -0800 (PST) Tom Kersten wrote: : I have installed linux-jdk-1.3.1 from on FreeBSD 4.4 : from the ports. When I try to type "java" or "javac" : it doesn't find the commmand...I can type the complete : path (/usr/local/jdxxxx/bin/javac ...or ../java) and : it works. I have added /usr/local/linux-jdkxxx/bin to : my path in my .cshrc file but still no luck...what's : the deal??? Perhaps it has to do with shell's own hash? Once echo $PATH confirms that the directory is actually in $PATH, does csh find the executables after running rehash(1)? -- fxn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 1:15:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id D30AC37B416 for ; Sat, 26 Jan 2002 01:15:47 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16UOw6-0002BW-00 for freebsd-questions@FreeBSD.ORG; Sat, 26 Jan 2002 09:15:46 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id B61BC452B8; Sat, 26 Jan 2002 10:15:45 +0100 (CET) Date: Sat, 26 Jan 2002 10:15:45 +0100 From: Cliff Sarginson To: freebsd-questions@FreeBSD.ORG Subject: Re: shells confusion Message-ID: <20020126091545.GA1022@raggedclown.net> References: <20020126020430.P175-100000@BLAST> <20020126035658.GC1290@raggedclown.net> <20020126070114.C8FD93FE5@i8k.babbleon.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020126070114.C8FD93FE5@i8k.babbleon.org> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 02:01:14AM -0500, Brian T. Schellenberger wrote: > On Friday 25 January 2002 10:56 pm, Cliff Sarginson wrote: > > On Sat, Jan 26, 2002 at 02:18:16AM +0200, Bernie wrote: > > > hi, > > > > > > i'm planning to learn shell programming but i'm not sure > > > on which one to choose... > > > > > > i've been reading in the 'FreeBSD unleashed' that people > > > wanting to do shell programming should stay away from > > > c-shell as it's realy good for interactive, but very bad > > > for scripts. is this true? > > > > Yes and Yes. > > I would not agree with this at all. I find csh much more readable/sensible > than /bin/sh for interactive use. i (I guess you mean this the other way around, that you think cshell is superior for scripting as well..otherwise the rest of your mail does not make a lot of sense.) > Spaces don't matter; if statements are > vastly more readable, etc. > You are in a very, very tiny minority if you think csh is superior for shell scripting. It may be "better" from some theoretical point of view, but from a practical point of view it is a nightmare for most people. From the point of view of the person's general Unix education I would tell him that cshell scripting is a backwater, and is never likely to be any other way. It is a dodo. But let's not argue about it. I have worked in many different Unix environments, often where the majority of people used tcsh for interactive use. I don't recall any of them regarding it as a serious contender for writing general scripts in. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 1:34:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fia168-94.dsl.hccnet.nl (fia168-94.dsl.hccnet.nl [62.251.94.168]) by hub.freebsd.org (Postfix) with ESMTP id A7F8037B400 for ; Sat, 26 Jan 2002 01:34:46 -0800 (PST) Received: by fia168-94.dsl.hccnet.nl (Postfix, from userid 1000) id 145EF1AB; Sat, 26 Jan 2002 10:34:50 +0100 (CET) From: Simon Siemonsma To: freebsd-questions@freebsd.org Subject: Fwd: Problems with xdm when building KDE base Date: Sat, 26 Jan 2002 10:34:49 +0100 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="------------Boundary-00=_1AHJEIEVNU4JSMPM9DHI" Message-Id: <20020126093450.145EF1AB@fia168-94.dsl.hccnet.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --------------Boundary-00=_1AHJEIEVNU4JSMPM9DHI Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 8bit I saw that the end of the script output was missing from my pdf file. I did post a message to kde to report this fact and the cause of it. Here the part wich conserns making kdm. Sorry for the inconvienence Simon Siemonsma When trying to update Kdebase with portupgrade I get a problem. The most interesting of the screen output is below. The complete screen output is in the attached pdf. To me it looks it has problems when making kdm. Something with xdm. That is all I undersand from it. Can someone please help me. Regards, Simon Siemonsma mkdir .libs cc -DCSRG_BASED -DTCPCONN -DUNIXCONN -DOSMAJORVERSION=4 -DOSMINORVERSION=4 -DHASXDMAUTH -DFRAGILE_DEV_MEM -DBSD44SOCKETS -DUSE_SYSLOG -DUSE_PAM -DXDMCP -DNDEBUG -O2 -O -pipe -o kdm access.o auth.o choose.o client.o daemon.o dm.o dpylist.o error.o file.o genauth.o krb5auth.o mitauth.o netaddr.o policy.o process.o protodpy.o reset.o resource.o rpcauth.o server.o session.o socket.o streams.o util.o xdmauth.o xdmcp.o -L/usr/X11R6/lib -L/usr/local/lib -lX11 -lXau -lXdmcp -lpam -lutil -Wl,--rpath -Wl,/usr/local/lib -Wl,--rpath -Wl,/usr/X11R6/lib auth.o: In function `MakeServerAuthFile': auth.o(.text+0x400): warning: mktemp() possibly used unsafely; consider using mkstemp() genauth.o: In function `InitXdmcpWrapper': genauth.o(.text+0x1da): undefined reference to `_XdmcpWrapperToOddParity' genauth.o: In function `GenerateAuthData': genauth.o(.text+0x254): undefined reference to `_XdmcpAuthSetup' genauth.o(.text+0x27d): undefined reference to `_XdmcpAuthDoIt' xdmauth.o: In function `XdmGetXdmcpAuth': xdmauth.o(.text+0x2a1): undefined reference to `XdmcpWrap' xdmauth.o: In function `XdmCheckAuthentication': xdmauth.o(.text+0x5d8): undefined reference to `XdmcpUnwrap' xdmauth.o(.text+0x61b): undefined reference to `XdmcpWrap' gmake[3]: *** [kdm] Error 1 gmake[3]: Leaving directory `/usr/ports/x11/kdebase2/work/kdebase-2.2.2/kdm/backend' ------------------------------------------------------- --------------Boundary-00=_1AHJEIEVNU4JSMPM9DHI Content-Type: application/pdf; name="print.pdf" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="print.pdf" JVBERi0xLjIKJcfsj6IKNiAwIG9iago8PC9MZW5ndGggNyAwIFIvRmlsdGVyIC9GbGF0ZURlY29k ZT4+CnN0cmVhbQp4nK1WXXOjNhR951foLd3OGCQhgejMPjg29aaN7cSQbTqdToqx4rAG5AXc3fz7 XvEVG7Jv9Qe6uj4650r33rGwSRDW73aMM+OrYW0Y2pcGQXv4JgZGhJgEex7iHnNMx0WCYWEKDxXS eP7ZuIclfxhUYCQwxiirTWZjlBrccS/MGpAaL0bes1PBTMYYYhQohUDcFrWGy13btO1WAwP6KyJ1 qN0QZ+g6hGA9cJiOA2vCZwObnnAdyhsgAlKm2V23UQkzQBDmOoyjMDZ+WkaHJN+jKE1RkqPDLkP7 LDrIv+jfvyA/r2Shf90lhYwrVbyif6xTWVhHVVSl9Z0Q67CT26iU1PqmikM3m1AT3jDLrj6EX4wu hPBWS9uccvaO9DaKDzLftfL2/yJvtaRXH64MwkwKryYK6lGHNVFY2yS3yhdkmhZ80mRbKZWiySRT O/kxTfIDimM0mc+CzeLpehr4c5iEs7vZerUC62F189ia62A5/W29+exvgpv16iMDTaw37nluLVQj blZnCFj0aRo8zpfTh/ATTH7dTBc3t/7T3P/8tPSX4LkO5owF69nvfhhotcB/Cv4MbteLmpwICjXS kuvf7qZ6ERDO7mBczf3rhwWarCl80eSYHCWa3NYn+EjIxtGb7RypiqP0B44NuvTU2phwj7tOI94i zlh/6DnjVXW5RXEsy9JUKDpVLzDEL0qVUhtpIvMKjF0kM5VrIzNVI8654zmkFt8dX9Ok1DhZFKqA 8TlJ9fq9zFvKQ7HlrZklVWvlsop2O40/qjSJX7VRqDYWsCoFzGAWspRVM6pTEcsuBOYR125CKI5x S1rK4l9Z1EZZJnXQpYIS1ARlVcgo0+ynKklh+L7L2mVgxUcYJykcmH5GJ/3UXhiPUQZPvQiUL5sJ c+Z6dQxq++VYyLpeuxNtagQL6okRpNbt6HjDhgWUKnGH2C4hHdr2WnGoAGqP0G3WhtwOwQ53hugu tUNu7AlB2gY9h2cjYkJs5oz21xdFf2Jt32PGCRmi28IZMmNbeKP9NcU1oMXcZa4YhdtXYJMJKmx7 dAJvtTmUZw5hI/m+focRCIdhb5S7vsiH5LY9irZrg1EuXOqycS76ZhlSv7vNt4YaBE5sSPQQ3fbc mFmM47joywtm4lB3FEjfq01OOBaj4umaeFjCjHiM0DG67XSA+yG6v7gNkP42QJsrwKVZA7rbANwE 6n8oir7BbGFQl5uccw2C2wcBIrhB1FbnSY2gR3W3hzdU5zlHvXEN12nUkP99rnvjP0pdhRBlbmRz dHJlYW0KZW5kb2JqCjcgMCBvYmoKOTU0CmVuZG9iagoxMCAwIG9iago8PC9SNAo0IDAgUj4+CmVu ZG9iagoxMSAwIG9iago8PC9SOQo5IDAgUj4+CmVuZG9iagoxMyAwIG9iago8PC9MZW5ndGggMTQg MCBSL0ZpbHRlciAvRmxhdGVEZWNvZGU+PgpzdHJlYW0KeJzVVtt22jgUffdX6C2XGYwl3zNrHghQ SieBBDtNZjVdibBF4uJbZZOEv58jyzaEkLYzb2Mv0JG0zz5bRxdLUzHSxFuXQaJ8Vy7hd60QR0OO pmkoqUxD11CsmJb9yqwAsfKopMp3hCumpggSdOor3ZkLDaplWTbyF4qmuo5tEVMCEXFUAx5k27pq mhbyE0Bg3dRtjPxAOczm33LO4ihdoiILlqxUsyP/m9K4+WcA1xzHwPobeMkZTQrAHwhKTXfcN5hV GcUNALsWdnYBL2FCV+VjjdEN29X2YYJczVAQoM6g781Gd6c9bziAit+/6E8nE7CuJuOb2px6571P 09nn4cwbTyd/GsCMDZXAI0cDw3JduwpSgceTLTD4f+x5N4Pz3pX/ESofZr3R+Gx4Nxh+vjsfnkPL qTcwDG/a/2voeyKwN7zz/vbOpqM6DYZl1tyi66InfICvfwHlZDA8vRqhzpTAD3XyKGeok6FlmCAa BKyAZCKZDhQ8ZlnBhBFHLIVZQSFlSZYKI6nTpcGEQlKrcGG+jqNC4BjnGYdyEcXC/4GlNeWSz83a TKKytlJW0jAU+DyLo2AtDJ7VWsAqM2AGk7NCrA1RZisesEaCYxHbIJUEngc1acH4E+OVURRRJbpZ XJtlUy+OzRJoJ7pz1l0VvHuD8czqxtG8aYizgMayIYZOKcDVXEMmPL6hK9EjWKDMaQL/IgjqXMe/ dzo8p+VjZe+y7eveRJfqTtA4RYtVGpQwIDnXRCdEZv/+nC6ZV426B+gPkPqDk9rx9lAt2Uv5m/Zi aNrt0Ql6pjyN0ocTlCxLluS3h7dHkHxI1Dxeo1XBQrRKC7pg8foPFGRpEYWMQzu4gEfRuNQSTN2V Etp5fiUU3Y/TqKxScs1pnjMOulroRhoOqZC2SkO2iFKQwNmCcZYGDJX1/jUxMVw52rttQj+bhuEF 5VG5PkDvqRixlHFaMpGdAS3pfhXENF6pkIEtXcMy8LYoVKsQjB4rV/nBXkY7fH9c2xSDbFwebNai kC+j245tyB29GQ14jVjZ+sJgWset0BT/KHSbwr1RHYwt623U/iMLliIkHAlRQEX7/uBm6Pw0+FX6 LMLLgIZBNLmN97BZeP5rQwGu6sth6vKs1bHuEvlVeEhgi3zRv56g4+Nj9AXOvK9oKI4q+Eht+s4Y fRILPYw4C8qMr3dPb2xgh0ih99U+zTNeFt0XjLvLkM1pwUj3OePLptYhKrxQS7pzCkdQGrYidVtS Egc+nXhLJGlE0jjugI4VL6IntiuX/FCu3sh1DNP9L3JbmYZTyySa65hbMvEvycT7ZKJ/IWYjpNZh m3Dob3TsE9Gh7eySdk3US8I2tTrbwk+CgixkFdK0VMdx62sHcbFTJ88rsxxFKXpHtrqj8f0g+P8S 5KfpEkGGPrp8dZnE7WWSyBvka7MCyMskRpFCqo1F0DPURgpMLFwRTQHCcF0DIriAVlbTEiteizJA peM4W6imZRu14dr1E6hd/v1cl8o/FAZEeWVuZHN0cmVhbQplbmRvYmoKMTQgMCBvYmoKMTEzMgpl bmRvYmoKMTUgMCBvYmoKPDwvUjkKOSAwIFI+PgplbmRvYmoKMTcgMCBvYmoKPDwvTGVuZ3RoIDE4 IDAgUi9GaWx0ZXIgL0ZsYXRlRGVjb2RlPj4Kc3RyZWFtCniclVK7ctswEOzxFZvKkjMCAZjgI0WK ZJw0aWQzkyJKAYmQzIgkaJCynL/38SFF9qQJMRwAh73dxeEElxD9mOZNxR7Zkv4fTCUCcZoKVMMy VAIl01H8ajkASvbAavYIOTCdpk2FTxkL7lIK8CiKYmRbJniaxJHSIxAq4SF9iMOQK6WQVYQQKpWJ TpFt2Oy+cw2KGsGh9UHjfNcGz1IG+9yuTWsVn2e/2UiC7Bvl3sRaxHJIvb6+xq33zmPjcgs5vyLL PEnSEflfKlejiB5TZSK1jiYRfHZVZeocW1OUNv+AyuztKSE8aYU6iUetxWLxEXe27Zwv6h26BwtX 5niyvi1cDSL8UjwP4aJuO1OWpuvjjXfr0lbolTr/B2Zniprj5/cmJ8BE1Ox3+Xq4yJPxQb4OKADO ORaIE/IkhyqryZSW9BSDp8Zs9mZnW2zdgfhXs4XAe7magyN3tf3Vu8qIf+vK0h17tXPG0XqL2nUn tzYHVfzQ7LzJbU+Fd7isJbkg6fRGSTXWYzWbjhaK0yDR1Wzigu2fbzWnnNsMy4u+TIQ496Ucm/H1 cgCMfSlRMDXcW+FIu69MxZprrXsQHYRERL0suZTnSMnuzyjqdi5keoE6RS5Rf7ne5vWot/z/5lqy FxOn5B5lbmRzdHJlYW0KZW5kb2JqCjE4IDAgb2JqCjQ4NAplbmRvYmoKMTkgMCBvYmoKPDwvUjkK OSAwIFI+PgplbmRvYmoKNSAwIG9iago8PC9UeXBlL1BhZ2UvTWVkaWFCb3ggWzAgMCA1OTUgODQy XQovUm90YXRlIDAvUGFyZW50IDMgMCBSCi9SZXNvdXJjZXM8PC9Qcm9jU2V0Wy9QREYgL1RleHRd Ci9FeHRHU3RhdGUgMTAgMCBSCi9Gb250IDExIDAgUgo+PgovQ29udGVudHMgNiAwIFIKPj4KZW5k b2JqCjEyIDAgb2JqCjw8L1R5cGUvUGFnZS9NZWRpYUJveCBbMCAwIDU5NSA4NDJdCi9Sb3RhdGUg MC9QYXJlbnQgMyAwIFIKL1Jlc291cmNlczw8L1Byb2NTZXRbL1BERiAvVGV4dF0KL0ZvbnQgMTUg MCBSCj4+Ci9Db250ZW50cyAxMyAwIFIKPj4KZW5kb2JqCjE2IDAgb2JqCjw8L1R5cGUvUGFnZS9N ZWRpYUJveCBbMCAwIDU5NSA4NDJdCi9Sb3RhdGUgMC9QYXJlbnQgMyAwIFIKL1Jlc291cmNlczw8 L1Byb2NTZXRbL1BERiAvVGV4dF0KL0ZvbnQgMTkgMCBSCj4+Ci9Db250ZW50cyAxNyAwIFIKPj4K ZW5kb2JqCjMgMCBvYmoKPDwgL1R5cGUgL1BhZ2VzIC9LaWRzIFsKNSAwIFIKMTIgMCBSCjE2IDAg UgpdIC9Db3VudCAzCj4+CmVuZG9iagoxIDAgb2JqCjw8L1R5cGUgL0NhdGFsb2cgL1BhZ2VzIDMg MCBSCj4+CmVuZG9iago0IDAgb2JqCjw8L1R5cGUvRXh0R1N0YXRlL05hbWUvUjQvVFIvSWRlbnRp dHk+PgplbmRvYmoKOSAwIG9iago8PC9TdWJ0eXBlL1R5cGUxL0Jhc2VGb250L0hlbHZldGljYS9U eXBlL0ZvbnQvTmFtZS9SOS9FbmNvZGluZyAyMCAwIFI+PgplbmRvYmoKMjAgMCBvYmoKPDwvVHlw ZS9FbmNvZGluZy9EaWZmZXJlbmNlc1sKMzkvcXVvdGVzaW5nbGUKOTYvZ3JhdmVdPj4KZW5kb2Jq CjggMCBvYmoKPDwvVHlwZS9Gb250RGVzY3JpcHRvci9Gb250TmFtZS9IZWx2ZXRpY2E+PgplbmRv YmoKMiAwIG9iago8PC9Qcm9kdWNlciAoR05VIEdob3N0c2NyaXB0IDYuNTIpCj4+ZW5kb2JqCnhy ZWYKMCAyMQowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDM1MDAgMDAwMDAgbiAKMDAwMDAwMzgy MiAwMDAwMCBuIAowMDAwMDAzNDI3IDAwMDAwIG4gCjAwMDAwMDM1NDggMDAwMDAgbiAKMDAwMDAw Mjk3OSAwMDAwMCBuIAowMDAwMDAwMDE1IDAwMDAwIG4gCjAwMDAwMDEwMzkgMDAwMDAgbiAKMDAw MDAwMzc2MyAwMDAwMCBuIAowMDAwMDAzNjAzIDAwMDAwIG4gCjAwMDAwMDEwNTggMDAwMDAgbiAK MDAwMDAwMTA4OCAwMDAwMCBuIAowMDAwMDAzMTM5IDAwMDAwIG4gCjAwMDAwMDExMTggMDAwMDAg biAKMDAwMDAwMjMyMiAwMDAwMCBuIAowMDAwMDAyMzQzIDAwMDAwIG4gCjAwMDAwMDMyODMgMDAw MDAgbiAKMDAwMDAwMjM3MyAwMDAwMCBuIAowMDAwMDAyOTI5IDAwMDAwIG4gCjAwMDAwMDI5NDkg MDAwMDAgbiAKMDAwMDAwMzY5MCAwMDAwMCBuIAp0cmFpbGVyCjw8IC9TaXplIDIxIC9Sb290IDEg MCBSIC9JbmZvIDIgMCBSCj4+CnN0YXJ0eHJlZgozODc0CiUlRU9GCg== --------------Boundary-00=_1AHJEIEVNU4JSMPM9DHI-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 1:36:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from foo31-249.visit.se (foo31-146.visit.se [62.119.31.146]) by hub.freebsd.org (Postfix) with ESMTP id 561D737B400 for ; Sat, 26 Jan 2002 01:36:31 -0800 (PST) Received: (from martin@localhost) by foo31-249.visit.se (8.11.6/8.11.6) id g0PGS0V48130; Fri, 25 Jan 2002 17:28:00 +0100 (CET) (envelope-from martin) Date: Fri, 25 Jan 2002 17:28:00 +0100 From: Martin Karlsson To: "Brian T.Schellenberger" Cc: freebsd-questions@freebsd.org Subject: Re: DHCP & Drops Message-ID: <20020125162800.GC5291@foo31-249.visit.se> Mail-Followup-To: Martin Karlsson , "Brian T.Schellenberger" , freebsd-questions@freebsd.org References: <022101c1a593$5387f880$0200000a@MATRIX> <20020125141509.GA4177@foo31-249.visit.se> <20020125144934.0C1A23F62@i8k.babbleon.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <20020125144934.0C1A23F62@i8k.babbleon.org> User-Agent: Mutt/1.3.27i X-Editor: Vim http://www.vim.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri Jan 25, 2002 at 09:49:33AM -0500, Brian T.Schellenberger wrote: > Next time it happens do a "netstat -nr" and trying "pinging" your default > gateway. 'netstat -r' shows nothing, and pinging the gateway == 0 packets received, 100% packet loss -- Martin Karlsson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 1:38:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from obsecurity.dyndns.org (adsl-63-207-60-131.dsl.lsan03.pacbell.net [63.207.60.131]) by hub.freebsd.org (Postfix) with ESMTP id E065A37B400 for ; Sat, 26 Jan 2002 01:38:31 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 6049466D7A; Sat, 26 Jan 2002 01:38:23 -0800 (PST) Date: Sat, 26 Jan 2002 01:38:23 -0800 From: Kris Kennaway To: David Banning Cc: questions@freebsd.org Subject: Re: what process runs network? Message-ID: <20020126013822.A76536@xor.obsecurity.org> References: <20020126002630.A618@sympatico.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="x+6KMIRAuhnl3hBn" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020126002630.A618@sympatico.ca>; from david@skytrackercanada.com on Sat, Jan 26, 2002 at 12:26:30AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --x+6KMIRAuhnl3hBn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jan 26, 2002 at 12:26:30AM -0500, David Banning wrote: >=20 > I changing some of the addresses in /etc/hosts and changing some ip > numbers of networked computers in the office. >=20 > I know I have to restart samba but what other process do I kill and > then restart without powering down (and restarting) the main box?=20 You don't have to restart anything, whatsoever. This isn't Windows. Kris --x+6KMIRAuhnl3hBn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8UnkOWry0BWjoQKURAv17AKCkOeTUXKIcrDwXjG0zeT9lSmw+NACfSiAl 5pmt37RnKSKIw5Or0+gwZ+o= =79G5 -----END PGP SIGNATURE----- --x+6KMIRAuhnl3hBn-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 1:40:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id 22D9637B402 for ; Sat, 26 Jan 2002 01:40:31 -0800 (PST) Received: (qmail 67664 invoked by uid 100); 26 Jan 2002 09:39:55 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15442.31083.38416.165777@guru.mired.org> Date: Sat, 26 Jan 2002 03:39:55 -0600 To: questions@freebsd.org Subject: Olympus Digital Color Printer P-300U X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The question about the Canon worked so well, I figured I'll try this one. Anybody have any advice on making the printer named in the subject line work with FreeBSD? Thanx, http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 1:48:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fia168-94.dsl.hccnet.nl (fia168-94.dsl.hccnet.nl [62.251.94.168]) by hub.freebsd.org (Postfix) with ESMTP id 128C237B400 for ; Sat, 26 Jan 2002 01:48:52 -0800 (PST) Received: by fia168-94.dsl.hccnet.nl (Postfix, from userid 1000) id 8F86A1AB; Sat, 26 Jan 2002 10:48:54 +0100 (CET) Content-Type: text/plain; charset="iso-8859-15" From: Simon Siemonsma To: Subject: Re: problems building kde app. Date: Sat, 26 Jan 2002 10:48:54 +0100 X-Mailer: KMail [version 1.3.2] References: <03bc01c1a5ee$a4dcfc70$4116c60a@win2k.clickcom.com> In-Reply-To: <03bc01c1a5ee$a4dcfc70$4116c60a@win2k.clickcom.com> Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020126094854.8F86A1AB@fia168-94.dsl.hccnet.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday 25 January 2002 23:21, you wrote: > moc is part of the Qt that's in x11-toolkits. A lot of time you'll see > that this wound up installing a moc2 but not a moc. > > Find moc (look in /usr/X11R6/bin/) and then try something like > make MOC=/usr/X11R6/bin/moc2 > > or just making a symbolic link (man ln) called moc that points to moc2. I make a soft link and it did the trick, thanks. Now I get another error: /usr/libexec/elf/ld: cannot find -lqt Any idears? > > Frequently, moc2 can be substituted for moc. Some applications might > require that you actually goto trolltech 's website and download a prior > version than what /x11-toolkits/qt2 is going to install for you. > > John Straiton > ClickCom, Inc. > jks@clickcom.com > (704)365-9970x101 > > > -----Original Message----- > > From: owner-freebsd-questions@FreeBSD.ORG > > [mailto:owner-freebsd-questions@FreeBSD.ORG] On Behalf Of > > Simon Siemonsma > > Sent: Friday, January 25, 2002 5:19 PM > > To: freebsd-questions@freebsd.org > > Subject: problems building kde app. > > > > > > When trying to build Kmymoney2 from the ports I get the > > following error: > > > > checking for moc... not found configure: error: No Qt meta > > object compiler > > (moc) found! Please check whether you installed Qt correctly. > > You need to have a running moc binary. configure tried to run > > and the test > > didn't succeed. If configure shouldn't have tried this one, set the > > environment variable MOC to the right one before running configure. > > > > Can anyone tell me what a MOC is and how I can solve this? > > > > Regards, > > > > Simon Siemonsma > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 1:49:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id 033D137B404 for ; Sat, 26 Jan 2002 01:49:36 -0800 (PST) Received: from dialup-209.245.132.233.dial1.sanjose1.level3.net ([209.245.132.233] helo=blossom.cjclark.org) by gull.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16UPSj-0001iM-00; Sat, 26 Jan 2002 01:49:29 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g0Q9nO916438; Sat, 26 Jan 2002 01:49:24 -0800 (PST) (envelope-from cjc) Date: Sat, 26 Jan 2002 01:49:24 -0800 From: "Crist J. Clark" To: "Brian T.Schellenberger" Cc: Cliff Sarginson , freebsd-questions@FreeBSD.ORG Subject: Re: shells confusion Message-ID: <20020126014924.I14394@blossom.cjclark.org> References: <20020126020430.P175-100000@BLAST> <20020126035658.GC1290@raggedclown.net> <20020126070114.C8FD93FE5@i8k.babbleon.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020126070114.C8FD93FE5@i8k.babbleon.org>; from bts@babbleon.org on Sat, Jan 26, 2002 at 02:01:14AM -0500 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 02:01:14AM -0500, Brian T.Schellenberger wrote: > On Friday 25 January 2002 10:56 pm, Cliff Sarginson wrote: > > On Sat, Jan 26, 2002 at 02:18:16AM +0200, Bernie wrote: > > > hi, > > > > > > i'm planning to learn shell programming but i'm not sure > > > on which one to choose... > > > > > > i've been reading in the 'FreeBSD unleashed' that people > > > wanting to do shell programming should stay away from > > > c-shell as it's realy good for interactive, but very bad > > > for scripts. is this true? > > > > Yes and Yes. > > I would not agree with this at all. I find csh much more readable/sensible > than /bin/sh for interactive use. Spaces don't matter; if statements are > vastly more readable, etc. > > Now for really complex "shell" programming I use perl, but C shell is, IMHO, > a lot easier to write and read than /bin/sh. Ack! > There *is* one severe problem with csh that I know of: the quoting rules are > just plain broken; if you get into nested quotes things get screwy quickly. > I work around this with > > set Q = "'" > set QQ = '"' > set $S = '$' > > at the top of my scripts, but I freely admit that it is completely stupid > that I should have to do so, but writing > > if ($a > 4) then > echo "$a is greater than 4" > endif > > vs. > > if [[eval $a > 4]];; > echo "$a just tell me that's more readable. I dare you." > fi > > (or whatever--the syntax is inexact) it just seems to be to be no contest: > csh wins, hands-down. Uh, if [ $a -gt 4 ]; then echo "$a is greater than 4. This is quite readable." fi > Plus the convenience of > > if ($a =~ foo*) > > vs. (as far as I can tell) having to do a switch just for string tests -- > again, csh is the scripting shell for me. if expr "$a" : 'foo.*' >/dev/null; then The thing is that sh(1) can do a ton of stuff csh(1) simply cannot. Try to do this, command 2>err.file In csh(1). Or try, command1 | while read WORD REST; do ... done | command2 In csh(1). [snip] > > /bin/sh is the Unix common denominator of shells, so scripts > > get written in it. They are not written in csh, because as > > stated csh script is unusable for all practical purposes. > > unusable??????? What on earch are you talking about? > > I have many dozens of quite usable csh scripts. And they are readable, too. There are just so many things you simply cannot do in any sane way with csh(1) like the few I eluded to above. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 1:52:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.prod.itd.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by hub.freebsd.org (Postfix) with ESMTP id 6DFEF37B404 for ; Sat, 26 Jan 2002 01:52:37 -0800 (PST) Received: from dialup-209.245.132.233.dial1.sanjose1.level3.net ([209.245.132.233] helo=blossom.cjclark.org) by falcon.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16UPVb-0003hI-00; Sat, 26 Jan 2002 01:52:28 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g0Q9qP916460; Sat, 26 Jan 2002 01:52:25 -0800 (PST) (envelope-from cjc) Date: Sat, 26 Jan 2002 01:52:25 -0800 From: "Crist J. Clark" To: Edwin Groothuis Cc: Alex Ranaldi , questions@FreeBSD.ORG Subject: Re: unlinking open files Message-ID: <20020126015225.J14394@blossom.cjclark.org> References: <0GQI0028YVW8VR@osfmail.rit.edu> <20020126132452.M823@k7.mavetju.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020126132452.M823@k7.mavetju.org>; from edwin@mavetju.org on Sat, Jan 26, 2002 at 01:24:52PM +1100 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 01:24:52PM +1100, Edwin Groothuis wrote: [snip] > To see which applications are using a file you want to remove, > install sysutils/lsof from the ports-collection: > [~] edwin@k7>lsof -u edwin | grep access > httpd-php 2778 edwin 19w VREG 116,131077 3585930 381204 /usr/home/www/log/access_log Or just use fstat(1) which is part of FreeBSD. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 1:53: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from myethome.com (u172-43.u203-203.giga.net.tw [203.203.172.43]) by hub.freebsd.org (Postfix) with SMTP id 7DF6C37B400; Sat, 26 Jan 2002 01:49:00 -0800 (PST) From: vip_d@jton.con.tw To: vip_3@hinet.met Subject: ´£«e´À±zªº±¡¤H·Ç³Æ¤@¥÷¶q¨­­q§@ªºÂ§ª«! (¤w±½¬r) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_1f1BvkW7JmhWSz416A" X-Priority: 3 X-MSMail-Priority: Normal Message-Id: <20020126094900.7DF6C37B400@hub.freebsd.org> Date: Sat, 26 Jan 2002 01:49:00 -0800 (PST) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_1f1BvkW7JmhWSz416A Content-Type: multipart/alternative; boundary="----=_NextPart_1f1BvkW7JmhWSz416AAA" ------=_NextPart_1f1BvkW7JmhWSz416AAA Content-Type: text/plain; Content-Transfer-Encoding: quoted-printable ****=B1=A1=A4H=B8`=B1j=A5=B4=BC=F6=AA=F9=B0=D3=AB~**** =B4=A3=BF=F4=B1z=A4=B5=A6~=AA=BA=B1=A1=A4H=B8`=AD=E8=A6n=ACO=A4j=A6~=AA=EC=A4T =A5=BB=BA=F4=A7Y=A4=E9=B0_=B6}=A9l=B1=B5=A8=FC=B9w=AC=F9=B1=A1=A4H=C2=A7=AA=AB! =A8=C3=B7=C7=B3=C6=A6n=C2=A7=ADn=B0e=B5=B9=B1z!! =3D=3D=3D=3D=3D=3D=AFk=B7R=B1z=AA=BA=B1=A1=A4H=3D=3D=3D=3D=3D=3D=3D =A7=D6=A5=B4=B6}=AA=FE=A5[=C0=C9=AE=D7,=B4=A3=ABe=B4=C0=B1z=AA=BA=B1=A1=A4H=B7=C7=B3=C6=A4@=A5=F7=B6q=A8=AD=ADq=A7@=AA=BA=C2=A7=AA=AB! http://sexbox.ohbi.net/ =A5=BB=BA=F4=AF=B8=B6i=A4f=B6W=B9L1000=BA=D8=BA=EB=AB~=A4=CE=A8k=A4k=A7=C9=B2=C4=A4=A7=B6=A1=A5=CE=AB~! =AC=FC=C4R=B1=A1=A4H=C1=CA=AA=AB=BA=F4,=B7P=C1=C2=B1z=AA=BA=A5=FA=C1{,=AF=AC=B1z=A6=B3=AD=D3=AC=FC=A6n=AA=BA=A4@=A4=D1 ------=_NextPart_1f1BvkW7JmhWSz416AAA-- ------=_NextPart_1f1BvkW7JmhWSz416A Content-Type: application/octet-stream; name="C:\My Documents\sexbox\sexbox.htm" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="sexbox.htm" PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT6s/MRSsaGkSMHKqqu69DwvdGl0bGU+DQo8bWV0YSBodHRw LWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1iaWc1Ij4N CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQo8IS0tDQouYTkgeyAgZm9udC1mYW1pbHk6ICK3c7LT qfrF6SI7IGZvbnQtc2l6ZTogOXB0fQ0KLS0+DQo8L3N0eWxlPg0KPC9oZWFkPg0KDQo8Ym9keSBi Z2NvbG9yPSIjRkZGRkZGIiBsZWZ0bWFyZ2luPSIwIiB0b3BtYXJnaW49IjAiIG1hcmdpbndpZHRo PSIwIiBtYXJnaW5oZWlnaHQ9IjAiPg0KPGNlbnRlcj4NCiAgPHRhYmxlIHdpZHRoPSI1MDAiIGJv cmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIxIiBjbGFzcz0iYTkiPg0KICAg IDx0ciBhbGlnbj0iY2VudGVyIiBiZ2NvbG9yPSIjRkZGRkZGIj4gDQogICAgICA8dGQ+PGEgaHJl Zj0iaHR0cDovL3NleGJveC5vaGJpLm5ldC8iPjxpbWcgc3JjPSJodHRwOi8vaG9tZS5raW1vLmNv bS50dy9zdXBlcnN1cGVyODYvc2V4Ym94L3NvZ29fbG9nby5naWYiIHdpZHRoPSIzNTIiIGhlaWdo dD0iNzAiIGJvcmRlcj0iMCI+PC9hPjxicj4NCiAgICAgICAgPHRhYmxlIHdpZHRoPSI1MDAiIGJv cmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIj4NCiAgICAgICAgICA8dHIg Ymdjb2xvcj0iI0ZGRTZGRSI+IA0KICAgICAgICAgICAgPHRkIGJnY29sb3I9IiNGRjk5Q0MiPiZu YnNwOzwvdGQ+DQogICAgICAgICAgPC90cj4NCiAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPHRh YmxlIHdpZHRoPSI1MDAiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIw IiBjbGFzcz0iYTkiIGJnY29sb3I9IiNGRkZGRkYiPg0KICAgICAgICAgIDx0cj4NCiAgICAgICAg ICAgIDx0ZD4NCiAgICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjEi IGNlbGxwYWRkaW5nPSIyIiBjbGFzcz0iYTkiIHdpZHRoPSI1MDAiPg0KICAgICAgICAgICAgICAg IDx0ciBiZ2NvbG9yPSIjREREREZGIiBhbGlnbj0iY2VudGVyIiBjbGFzcz0iYTkiPiANCiAgICAg ICAgICAgICAgICAgIDx0ZCBjbGFzcz0iYTkiIHdpZHRoPSIxMTMiPjxhIGhyZWY9Imh0dHA6Ly9z ZXhib3gub2hiaS5uZXQvc2hvd3Jvb20vdmlldy5waHA/Qz01MzYiPjxpbWcgc3JjPSJodHRwOi8v dXMuZjEueWFob29mcy5jb20vdXNlcnMvNjhkYzI1ZTgvYmMvc2V4Ym94L3BhNDhzLmpwZz9iY09j Q2s4QVVRaDE3MGFZIiB3aWR0aD0iODAiIGhlaWdodD0iNjQiIGJvcmRlcj0iMCI+PC9hPjwvdGQ+ DQogICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjE0MyI+PGEgaHJlZj0iaHR0cDovL3NleGJv eC5vaGJpLm5ldC9zaG93cm9vbS92aWV3LnBocD9DPTU3NiI+PGltZyBzcmM9Imh0dHA6Ly9ob21l LmtpbW8uY29tLnR3L3N1cGVyc3VwZXI4Ni9zZXhib3gvRkc1MjRfQV9TLmpwZyIgd2lkdGg9Ijgw IiBoZWlnaHQ9IjgwIiBib3JkZXI9IjAiPjwvYT48L3RkPg0KICAgICAgICAgICAgICAgICAgPHRk IHdpZHRoPSIxMDYiPjxhIGhyZWY9Imh0dHA6Ly9zZXhib3gub2hiaS5uZXQvc2hvd3Jvb20vdmll dy5waHA/Qz05MSI+PGltZyBzcmM9Imh0dHA6Ly91cy5mMS55YWhvb2ZzLmNvbS91c2Vycy82OGRj MjVlOC9iYy9zZXhib3gvQzMwMF9BX3MuanBnP2JjT2NDazhBcENfUXNYTlgiIHdpZHRoPSI4MCIg aGVpZ2h0PSI4NCIgYm9yZGVyPSIwIj48L2E+PC90ZD4NCiAgICAgICAgICAgICAgICAgIDx0ZCB3 aWR0aD0iMTE3Ij48YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcu cGhwP0M9MTQ3Ij48aW1nIHNyYz0iaHR0cDovL2hvbWUua2ltby5jb20udHcvc3VwZXJzdXBlcjg2 L3NleGJveC9sYjI1NnMuanBnIiB3aWR0aD0iODAiIGhlaWdodD0iODAiIGJvcmRlcj0iMCI+PC9h PjwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8dHIgYmdjb2xv cj0iI0ZGRkZGRiIgYWxpZ249ImNlbnRlciI+IA0KICAgICAgICAgICAgICAgICAgPHRkIHdpZHRo PSIxMTMiPg0KICAgICAgICAgICAgICAgICAgICA8cD48YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9o YmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9NTM2Ij6+ULvuuUMtrGaqTCANCiAgICAgICAgICAg ICAgICAgICAgICDBs6++q6w8L2E+PC9wPg0KICAgICAgICAgICAgICAgICAgICA8cD48YSBocmVm PSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9NTM2Ij6vU73moUcg DQogICAgICAgICAgICAgICAgICAgICAgMTYwpLg8L2E+PC9wPg0KICAgICAgICAgICAgICAgICAg PC90ZD4NCiAgICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iYTkiIHdpZHRoPSIxNDMiPjxhIGhy ZWY9Imh0dHA6Ly9zZXhib3gub2hiaS5uZXQvc2hvd3Jvb20vdmlldy5waHA/Qz01NzYiPqz8sOqt 7LjLtmmkZqRrqcqm27yiv8c8YnI+DQogICAgICAgICAgICAgICAgICAgIK9TveahRyA2OTmkuDwv YT48L3RkPg0KICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSIxMDYiPg0KICAgICAgICAgICAg ICAgICAgICA8cD48YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcu cGhwP0M9OTEiPqTppbuzeqn6qvi49bNKPC9hPjwvcD4NCiAgICAgICAgICAgICAgICAgICAgPHA+ PGEgaHJlZj0iaHR0cDovL3NleGJveC5vaGJpLm5ldC9zaG93cm9vbS92aWV3LnBocD9DPTkxIj6v U73moUcgDQogICAgICAgICAgICAgICAgICAgICAgMTgwpLg8L2E+PC9wPg0KICAgICAgICAgICAg ICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iMTE3Ij48YSBocmVmPSJo dHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9MTQ3Ij5MQjI1Ni2sS6Sn pGsopGopPGJyPg0KICAgICAgICAgICAgICAgICAgICCvU73moUcgNjUwpLg8L2E+PC90ZD4NCiAg ICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgIDx0ciBiZ2NvbG9yPSIjRkZGRkND IiBhbGlnbj0iY2VudGVyIj4gDQogICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjExMyI+PGEg aHJlZj0iaHR0cDovL3NleGJveC5vaGJpLm5ldC9zaG93cm9vbS92aWV3LnBocD9DPTY0Ij48aW1n IHNyYz0iaHR0cDovL3VzLmYxLnlhaG9vZnMuY29tL3VzZXJzLzY4ZGMyNWU4L2JjL3NleGJveC9m czQxNnMuanBnP2JjT2NDazhBQ2htWVAzcE0iIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgYm9yZGVy PSIwIj48L2E+PC90ZD4NCiAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iMTQzIj48YSBocmVm PSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9NjcyIj48aW1nIHNy Yz0iaHR0cDovL2hvbWUua2ltby5jb20udHcvc3VwZXJzdXBlcjg2L3NleGJveC9GMjAxX0Ffcy5q cGciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgYm9yZGVyPSIwIj48L2E+PC90ZD4NCiAgICAgICAg ICAgICAgICAgIDx0ZCB3aWR0aD0iMTA2Ij48YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0 L3Nob3dyb29tL3ZpZXcucGhwP0M9MjgzIj48aW1nIHNyYz0iaHR0cDovL3VzLmYxLnlhaG9vZnMu Y29tL3VzZXJzLzY4ZGMyNWU4L2JjL3NleGJveC9tMjE3cy5qcGc/YmNPY0NrOEE5RUt6R3c1VCIg d2lkdGg9IjgwIiBoZWlnaHQ9IjgwIiBib3JkZXI9IjAiPjwvYT48L3RkPg0KICAgICAgICAgICAg ICAgICAgPHRkIHdpZHRoPSIxMTciPjxhIGhyZWY9Imh0dHA6Ly9zZXhib3gub2hiaS5uZXQvc2hv d3Jvb20vdmlldy5waHA/Qz0xMjMiPjxpbWcgc3JjPSJodHRwOi8vdXMuZjEueWFob29mcy5jb20v dXNlcnMvNjhkYzI1ZTgvYmMvc2V4Ym94L2IxMTRzLmpwZz9iY09jQ2s4QVFWaDNNbldIIiB3aWR0 aD0iODAiIGhlaWdodD0iODAiIGJvcmRlcj0iMCI+PC9hPjwvdGQ+DQogICAgICAgICAgICAgICAg PC90cj4NCiAgICAgICAgICAgICAgICA8dHIgYmdjb2xvcj0iI0ZGRkZGRiIgYWxpZ249ImNlbnRl ciI+IA0KICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSIxMTMiPg0KICAgICAgICAgICAgICAg ICAgICA8cD48YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhw P0M9NjQiPqdOpfrF3KfOwHMgDQogICAgICAgICAgICAgICAgICAgICAgKLVMuXGwyik8L2E+PC9w Pg0KICAgICAgICAgICAgICAgICAgICA8cD48YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0 L3Nob3dyb29tL3ZpZXcucGhwP0M9NjQiPq9TveY6NDkwpLg8L2E+PC9wPg0KICAgICAgICAgICAg ICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iMTQzIj48YSBocmVmPSJo dHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9NjcyIj6t7LjLtmmkZrlH r3Wm173ot1CkaqbRpEfF3KfOwHM8YnI+DQogICAgICAgICAgICAgICAgICAgIK9TveahRyA1ODAg pLg8YnI+DQogICAgICAgICAgICAgICAgICAgIDwvYT4gPC90ZD4NCiAgICAgICAgICAgICAgICAg IDx0ZCB3aWR0aD0iMTA2Ij4NCiAgICAgICAgICAgICAgICAgICAgPHA+PGEgaHJlZj0iaHR0cDov L3NleGJveC5vaGJpLm5ldC9zaG93cm9vbS92aWV3LnBocD9DPTI4MyI+rPyw6ldFVCANCiAgICAg ICAgICAgICAgICAgICAgICC87bfGskc8L2E+PC9wPg0KICAgICAgICAgICAgICAgICAgICA8cD48 YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9MjgzIj6v U73mOjQ5MKS4PC9hPjwvcD4NCiAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg ICAgICA8dGQgd2lkdGg9IjExNyI+IA0KICAgICAgICAgICAgICAgICAgICA8cD48YSBocmVmPSJo dHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9MTIzIj6k6aW7qN+ka62m PC9hPjwvcD4NCiAgICAgICAgICAgICAgICAgICAgPHA+PGEgaHJlZj0iaHR0cDovL3NleGJveC5v aGJpLm5ldC9zaG93cm9vbS92aWV3LnBocD9DPTEyMyI+r1O95joxNjUwpLg8L2E+PC9wPg0KICAg ICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAg ICAgIDwvdGFibGU+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICAgIDwvdHI+DQogICAgICAg IDwvdGFibGU+DQogICAgICA8L3RkPg0KICAgIDwvdHI+DQogIDwvdGFibGU+DQogIDx0YWJsZSB3 aWR0aD0iNTAwIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCI+DQog ICAgPHRyIGJnY29sb3I9IiNGRkU2RkUiPiANCiAgICAgIDx0ZCBiZ2NvbG9yPSIjRkY5OUNDIj4m bmJzcDs8L3RkPg0KICAgIDwvdHI+DQogIDwvdGFibGU+DQo8L2NlbnRlcj4NCjwvYm9keT4NCjwv aHRtbD4NCg== ------=_NextPart_1f1BvkW7JmhWSz416A-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 2:12: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id 2E88637B417 for ; Sat, 26 Jan 2002 02:11:55 -0800 (PST) Received: (qmail 27288 invoked from network); 26 Jan 2002 11:11:53 +0100 Received: from bb-62-5-36-29.bb.tninet.se (HELO there) (62.5.36.29) by mail.telenordia.se with SMTP; 26 Jan 2002 11:11:53 +0100 Content-Type: text/plain; charset="iso-8859-1" From: Mark Rowlands To: jmkelly@ieee.org, John Kelly , FreeBSD-questions@FreeBSD.ORG Subject: Re: new install, trying to get Xircom PC card to work Date: Sat, 26 Jan 2002 11:11:51 +0100 X-Mailer: KMail [version 1.3.2] References: <3C521E87.4004D3C8@uclink.berkeley.edu> In-Reply-To: <3C521E87.4004D3C8@uclink.berkeley.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020126101155.2E88637B417@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Saturday 26 January 2002 4:12 am, John Kelly wrote: > Hello, > > I've got FreeBSD 4.4-release running on a Dell Latitude laptop with a > Xircom RealPort CardBus Ethernet 10/100+Modem 56 (RBEM56G-100) PC card > in it, and I can't figure out how to get the card to wake up. Card > services seems to be running okay, it sees that a card has been > inserted, but the system comes up with no Ethernet device. > > I found the source for the right driver, xe, but when I try to compile > xe.c I get an error: "if_xe.c:138: card_if.h: No such file or > directory." > > Beyond that, I'm having a hard time figuring out how to integrate the xe > driver with the kernel even if I could manage to compile it. I've tried > RTFMing, but haven't seemed to find the right page yet. All help will be > appreciated. > unless I am mistaken, support for cardbus is not yet incorporated in 4.x, it is due for inclusion in 5.0 see http://users.uk.freebsd.org/~scott/xe_drv/ -- What color is a chameleon on a mirror? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 2:25:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from speechpro.com (crt-gw.infopro.spb.su [195.201.254.5]) by hub.freebsd.org (Postfix) with ESMTP id 6700837B402 for ; Sat, 26 Jan 2002 02:25:36 -0800 (PST) Received: from igorr by sysadm.stc with local (Exim 3.33 #1) id 16UQ4h-0002Rb-00 for freebsd-questions@FreeBSD.ORG; Sat, 26 Jan 2002 13:28:43 +0300 Date: Sat, 26 Jan 2002 13:28:43 +0300 From: Igor Roboul To: freebsd-questions@FreeBSD.ORG Subject: Re: shells confusion Message-ID: <20020126102843.GA8522@sysadm.stc> Reply-To: igorr@speechpro.com Mail-Followup-To: Igor Roboul , freebsd-questions@FreeBSD.ORG References: <20020126020430.P175-100000@BLAST> <20020126035658.GC1290@raggedclown.net> <20020126070114.C8FD93FE5@i8k.babbleon.org> <20020126091545.GA1022@raggedclown.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020126091545.GA1022@raggedclown.net> User-Agent: Mutt/1.3.26i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 10:15:45AM +0100, Cliff Sarginson wrote: > view, but from a practical point of view it is a nightmare for most > people. I write most of my shell scripts in csh. Becuse I use it for interractive use and I feel myself much comfortable with csh. If I need write some script which I can't easy implement in csh then I use perl. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 2:54: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id CC2A837B416 for ; Sat, 26 Jan 2002 02:54:01 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16UQTA-000DFc-00 for freebsd-questions@FreeBSD.ORG; Sat, 26 Jan 2002 10:54:00 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id D5A3F454AD; Sat, 26 Jan 2002 11:53:59 +0100 (CET) Date: Sat, 26 Jan 2002 11:53:59 +0100 From: Cliff Sarginson To: freebsd-questions@FreeBSD.ORG Subject: Re: shells confusion Message-ID: <20020126105359.GA1005@raggedclown.net> References: <20020126020430.P175-100000@BLAST> <20020126035658.GC1290@raggedclown.net> <20020126070114.C8FD93FE5@i8k.babbleon.org> <20020126091545.GA1022@raggedclown.net> <20020126102843.GA8522@sysadm.stc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020126102843.GA8522@sysadm.stc> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 01:28:43PM +0300, Igor Roboul wrote: > On Sat, Jan 26, 2002 at 10:15:45AM +0100, Cliff Sarginson wrote: > > view, but from a practical point of view it is a nightmare for most > > people. > I write most of my shell scripts in csh. Becuse I use it for > interractive use and I feel myself much comfortable with csh. These two uses are seperate issues. Tcsh is fine and dandy interactively. > If I need write some script which I can't easy implement in csh then > I use perl. > Well, of course people can use what they like ! I suppose you could just learn perl, I guess it does everything. However, a non-working knowledge of sh scripting is a drawback in the Unix world. This is just a fact. I have very rarely seen it used for system purposes on any of the Unix systems I have worked on -- except perhaps on Ultrix, but then Ultrix was a Unix system that never should have seen the light of day anyway :) The person was asking for advice. I seriously think that it is perverse to advise him if he is going to learn shell-scripting to learn csh script. -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 3: 0:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.telecom.sk (mail1.telecom.sk [213.81.152.3]) by hub.freebsd.org (Postfix) with ESMTP id D260537B400 for ; Sat, 26 Jan 2002 03:00:07 -0800 (PST) Received: from nt (telecom-213-168-111.telecom.sk [213.81.168.111]) by mail1.telecom.sk (8.9.3/8.9.3) with SMTP id LAA14510 for ; Sat, 26 Jan 2002 11:53:11 +0100 (MET) Message-ID: <001201c1a64b$9b763d60$6fa851d5@nt.hanes.sk> From: "Dusan Hanes" To: Subject: Soundblaster recording settings Date: Sat, 26 Jan 2002 10:26:53 +0100 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 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, folks, does anybody know about a simple way or utility making it possible to setup sound recording parameters (namely sampling frequency and mono/stereo mode) in FreeBSD? Or do I have to write some C-code to modify the poor default of 8000Hz/mono? Thanks Dusan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 3:13: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from deckard.addix.net (deckard.addix.net [194.64.167.10]) by hub.freebsd.org (Postfix) with ESMTP id 198F437B41B for ; Sat, 26 Jan 2002 03:13:05 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by deckard.addix.net (8.11.6/8.11.6) with ESMTP id g0QBBdY49720 for ; Sat, 26 Jan 2002 12:11:40 +0100 (CET) (envelope-from ohoyer@deckard.addix.net) Date: Sat, 26 Jan 2002 12:11:39 +0100 (CET) From: Olaf Hoyer To: Subject: Alternate logfile for log_in_vain Message-ID: <20020126120912.S49715-100000@deckard.addix.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hallo! Well, I have a FreeBSD 4.4-R box running, and I just activated the options log_in_vain via sysctl. Ok, it does what it is intended to do, but it clobbers up my /var/log/messages. In which way might I redirect those output to, say, /var/log/log_in_vain? Any way to do it via some syslog entry? TIA Olaf -- Olaf Hoyer ohoyer@deckard.addix.net Liebe und Hass sind nicht blind, aber geblendet von dem Feuer, dass sie selbst in sich tragen. (Nietzsche) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 3:46:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sonic.kks.net (sonic.kks.net [213.161.0.18]) by hub.freebsd.org (Postfix) with ESMTP id 6F5E037B402 for ; Sat, 26 Jan 2002 03:46:10 -0800 (PST) Received: from voyager.kksonline.com (5-51.ro.cable.kks.net [213.161.5.51]) by sonic.kks.net (Postfix) with ESMTP id 31BE7220 for ; Sat, 26 Jan 2002 12:46:14 +0100 (CET) Message-Id: <5.0.2.1.0.20020126123026.02869d80@213.161.0.10> X-Sender: arozman@ 213.161.0.10 X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Sat, 26 Jan 2002 12:36:01 +0100 To: From: Aleksander Rozman - Andy Subject: RE: VMWare guest (Win2000) network trouble In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 21.1.2002, Aaron Spilman wrote: >You said that you used the "same settings in Windows 2000". >Did you give both machines the same ip address? > >Even though your vm system shares the same nic as the host they should >each have their own address. Hi ! It depends what kind of network sollution you use. You can use same address by using VNet NAT, or you can use Host only option (to make your box available inside your private network, or you can use normal way, by allowing FreeBSD to set it's own address. Version 3 supports all this options, and I know that Version 2.04 also supports some of them. HostOnlyAddress is not right configuration....if you have vmare running on windows, this option will make your vmware available only to your windows box, not to other machines. You must use Bridged network if you have any IP spare on your network, if you have DHCP, let vmware handle it, if you dont have any IP to spare use NAT, but your vmware OS won't be available from outside. Andy >--Aaron > >-----Original Message----- >From: Alexander S.Volchenkov [mailto:volax@uh.ru] >Sent: Tuesday, January 15, 2002 3:56 AM >To: freebsd-questions@freebsd.org >Subject: VMWare guest (Win2000) network trouble > >Hi all! > >I've just installed VMWare 2.04 into FreeBSD 4.4 RELEASE box and setup >Windows 2000 Server as guest operation system for VMWare. >I've also setup networking support for my guest OS and gives an IP >address >to it. > >in /etc/vmware/config: > >vmnet1.HostOnlyAddress = "192.168.0.10" >vmnet1.HostOnlyNetMask = "255.255.255.0" > >and same settings in Windows 2000 networking settings. > >Default gateway for my office network is 192.168.0.1, this is the >machine >with VMWare installed. > >Guest Windows works fine (all networking) until first reboot. >After first reboot my poor Windows see only local network and can't ping >outside it (like other machines do). Firewall is not enabled at all. > >Here is my ifconfig output: > >rl0: flags=8943 mtu 1500 > inet 192.168.0.1 netmask 0xffffff00 broadcast 192.168.0.255 > ether 00:c0:26:2c:87:78 > media: Ethernet autoselect (100baseTX) > status: active >lo0: flags=8049 mtu 16384 > inet 127.0.0.1 netmask 0xff000000 >ppp0: flags=8051 mtu 1514 > inet 217.XX.XXX.XX --> 10.3.45.2 netmask 0xffffff00 >vmnet1: flags=8843 mtu 1500 > inet 192.168.0.10 netmask 0xffffff00 broadcast 192.168.0.255 > ether 00:bd:ff:03:00:01 > >What may I doing wrong? Please help! > >Thanks, > >-- >Alexander S. Volchenkov >mailto:volax@uh.ru >http://www.uh.ru/ > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message ************************************************************************** * Aleksander Rozman - Andy * Fandoms: E2:EA, SAABer, Trekkie, Earthie * * andy@kksonline.com * Sentinel, BH 90210, True's Trooper, * * andy@atechnet.dhs.org * Heller's Angel, Questie, Legacy, PO5, * * Maribor, Slovenia (Europe) * Profiler, Buffy (Slayerete), Pretender * * ICQ-UIC: 4911125 ********************************************* * PGP key available * http://www.atechnet.dhs.org/~andy/ * ************************************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 3:55:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from drex.staff.izr.com (drex.staff.izr.com [195.26.33.16]) by hub.freebsd.org (Postfix) with ESMTP id 819EB37B402 for ; Sat, 26 Jan 2002 03:55:33 -0800 (PST) Received: by drex.staff.izr.com (Postfix, from userid 1001) id 4F62C337AA; Sat, 26 Jan 2002 11:55:31 +0000 (GMT) Date: Sat, 26 Jan 2002 11:55:31 +0000 From: Mark Drayton To: Lance Bland Cc: adrian kok , questions@FreeBSD.ORG Subject: Re: number of users Message-ID: <20020126115531.A10993@drex.staff.izr.com> References: <20020125192444.A3916@drex.staff.izr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from lbland@vvi.com on Fri, Jan 25, 2002 at 02:36:21PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Lance Bland (lbland@vvi.com) wrote: > > On Friday, January 25, 2002, at 02:24 PM, Mark Drayton wrote: > > > Original poster: these methods will show how many users are > > currently logged in. > > no, > > last and ac -p work from the file: file /var/log/wtmp which > accumulates all the login times, past and present. and is for "System > Accounting" The user does not have to be logged in to have an entry. Yes, you are right. What I should have said was these tools only deal with users that are logged in or have logged in at sometime. They won't count the number of user accounts on a system. -- Mark Drayton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 4:21:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fia168-94.dsl.hccnet.nl (fia168-94.dsl.hccnet.nl [62.251.94.168]) by hub.freebsd.org (Postfix) with ESMTP id A90CD37B402 for ; Sat, 26 Jan 2002 04:21:05 -0800 (PST) Received: by fia168-94.dsl.hccnet.nl (Postfix, from userid 1000) id E777D1AB; Sat, 26 Jan 2002 13:21:08 +0100 (CET) Content-Type: text/plain; charset="iso-8859-15" From: Simon Siemonsma To: devin-freebsdquestions@rintrah.org Subject: Re: kmymoney2 fails to build Date: Sat, 26 Jan 2002 13:21:08 +0100 X-Mailer: KMail [version 1.3.2] References: <20020124131112.A42220@tharmas.rintrah.org> In-Reply-To: <20020124131112.A42220@tharmas.rintrah.org> Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020126122108.E777D1AB@fia168-94.dsl.hccnet.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG When I try to build kmymoney2 on my system I get different messages at the point where you get your problems. See attached Kword file. It seems like you do have autoconf, which I seem not to have and because of that my installation succeeds in getting a few step further than yours. Just compare and see if it helps you. Simon Siemonsma On Thursday 24 January 2002 19:11, you wrote: > kmymoney keeps failing for me. I'm using the ports cvsuped from > last night running on Freebsd 4.5-RC. All the dependencies were > installed 3 or 4 days ago from the then current ports, but > the build failed then in the same way. I'm stumped. > > Any ideas? > > Thanks, > --devin > > > > attached is the output from 'make install' in /usr/ports/ > > Script started on Thu Jan 24 12:50:23 2002 > # make install > ===> Extracting for kmymoney2-0.3.6 > > >> Checksum OK for kmymoney2-0.3.6.tar.bz2. > > ===> kmymoney2-0.3.6 depends on executable: gmake - found > ===> kmymoney2-0.3.6 depends on executable: autoconf213 - found > ===> kmymoney2-0.3.6 depends on shared library: kdecore.4 - found > ===> kmymoney2-0.3.6 depends on shared library: qt2.4 - found > ===> Patching for kmymoney2-0.3.6 > ===> Applying FreeBSD patches for kmymoney2-0.3.6 > ===> Configuring for kmymoney2-0.3.6 > creating cache ./config.cache > checking host system type... i386--freebsd4.5 > checking target system type... i386--freebsd4.5 > checking build system type... i386--freebsd4.5 > checking for a BSD compatible install... /usr/bin/install -c -o root -g > wheel checking whether build environment is sane... yes > checking whether gmake sets ${MAKE}... yes > checking for working aclocal... found > checking for working autoconf... found > checking for working automake... found > checking for working autoheader... found > checking for working makeinfo... found > checking for a C-Compiler... cc > checking whether the C compiler (cc -O -pipe ) works... yes > checking whether the C compiler (cc -O -pipe ) is a cross-compiler... no > checking whether we are using GNU C... yes > checking whether cc accepts -g... yes > checking how to run the C preprocessor... cc -E > checking for a C++-Compiler... c++ > checking whether the C++ compiler (c++ -O -pipe ) works... yes > checking whether the C++ compiler (c++ -O -pipe ) is a cross-compiler... > no checking whether we are using GNU C++... yes > checking whether c++ accepts -g... yes > checking whether c++ supports -fno-exceptions... yes > checking whether c++ supports -fno-check-new... yes > checking whether c++ supports -Wno-long-long... yes > checking whether c++ supports -Wnon-virtual-dtor... yes > checking whether c++ supports -fno-builtin... yes > checking whether c++ supports -fexceptions... yes > checking whether c++ supports -frtti... yes > checking how to run the C++ preprocessor... c++ -E > checking whether c++ supports -frepo... yes > checking for ld used by GCC... /usr/libexec/elf/ld > checking if the linker (/usr/libexec/elf/ld) is GNU ld... yes > checking for /usr/libexec/elf/ld option to reload object files... -r > checking for BSD-compatible nm... /usr/bin/nm -B > checking whether ln -s works... yes > checking how to recognise dependant libraries... pass_all > checking for ranlib... ranlib > checking for strip... strip > checking for Cygwin environment... no > checking for mingw32 environment... no > updating cache ./config.cache > loading cache ./config.cache within ltconfig > checking whether -lc should be explicitly linked in... (skipping, using no) > no checking for objdir... .libs > checking for cc option to produce PIC... -fPIC -DPIC > checking if cc PIC flag -fPIC -DPIC works... yes > checking if cc static flag -static works... yes > checking if cc supports -c -o file.o... yes > checking if cc supports -fno-rtti -fno-exceptions ... yes > checking whether the linker (/usr/libexec/elf/ld) supports shared > libraries... yes checking how to hardcode library paths into programs... > immediate > checking whether stripping libraries is possible... yes > checking dynamic linker characteristics... freebsd4.5 ld.so > checking command to parse /usr/bin/nm -B output... ok > checking if libtool supports shared libraries... yes > checking whether to build shared libraries... yes > checking whether to build static libraries... no > checking for dlopen in -ldl... no > checking for dlopen... yes > checking for dlfcn.h... yes > checking whether a program can dlopen itself... yes > checking whether a statically linked program can dlopen itself... no > creating libtool > updating cache ./config.cache > loading cache ./config.cache > loading cache ./config.cache within ltconfig > checking host system type... i386--freebsd4.5 > checking build system type... i386--freebsd4.5 > ltcf-cxx: with_gcc=yes ; with_gnu_ld=yes > checking for objdir... .libs > checking for c++ option to produce PIC... -fPIC -DPIC > checking if c++ PIC flag -fPIC -DPIC works... yes > checking if c++ static flag -static works... yes > checking if c++ supports -c -o file.o... yes > checking if c++ supports -fno-rtti -fno-exceptions ... yes > checking whether the linker (c++) supports shared libraries... yes > checking how to hardcode library paths into programs... immediate > checking whether stripping libraries is possible... yes > checking dynamic linker characteristics... freebsd4.5 ld.so > checking command to parse /usr/bin/nm -B output... ok > checking if libtool supports shared libraries... yes > checking whether to build shared libraries... yes > checking whether to build static libraries... no > checking for dlfcn.h... (cached) yes > checking whether a program can dlopen itself... (cached) yes > checking whether a statically linked program can dlopen itself... (cached) > no appending configuration tag "CXX" to libtool > checking for object suffix... o > checking for executable suffix... no > checking for msgfmt... /usr/local/bin/msgfmt > checking for gmsgfmt... /usr/local/bin/msgfmt > checking for xgettext... /usr/local/bin/xgettext > checking for main in -lcompat... yes > checking for crypt in -lcrypt... yes > checking for the third argument of getsockname... socklen_t > checking for dnet_ntoa in -ldnet... no > checking for dnet_ntoa in -ldnet_stub... no > checking for inet_ntoa... yes > checking for connect... yes > checking for remove... yes > checking for shmat... yes > checking for res_init... yes > checking for killpg in -lucb... no > checking size of int... 4 > checking size of long... 4 > checking size of char *... 4 > checking for dlopen in -ldl... (cached) no > checking for shl_unload in -ldld... no > checking for extra includes... no > checking for extra libs... added > checking for libz... -lz > checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include > checking for IceConnectionNumber in -lICE... yes > checking for libXext... yes > checking for libpng... -lpng -lz -lm > checking for libjpeg6b... no > checking for libjpeg... -ljpeg > checking for Qt... libraries /usr/X11R6/lib, headers /usr/X11R6/include/qt2 > checking for moc... /usr/X11R6/bin/moc2 > checking for uic... /usr/X11R6/bin/uic > checking for rpath... yes > checking for KDE... libraries /usr/local/lib, headers /usr/local/include > checking for KDE paths... defaults > checking for dcopidl... /usr/local/bin/dcopidl > checking for dcopidl2cpp... /usr/local/bin/dcopidl2cpp > checking for mcopidl... /usr/local/bin/mcopidl > checking for kdb2html... /usr/local/bin/kdb2html > checking for artsc-config... /usr/local/bin/artsc-config > checking for kde-config... /usr/local/bin/kde-config > checking if developer-doc should be compiled... yes > checking if doc should be compiled... yes > checking if kmymoney2 should be compiled... yes > checking if po should be compiled... yes > updating cache ./config.cache > creating ./config.status > creating ./Makefile > creating developer-doc/Makefile > creating doc/Makefile > creating doc/en/Makefile > creating doc/images/Makefile > creating kmymoney2/Makefile > creating kmymoney2/dialogs/Makefile > creating kmymoney2/icons/Makefile > creating kmymoney2/icons/hicolor/Makefile > creating kmymoney2/icons/hicolor/16x16/Makefile > creating kmymoney2/icons/hicolor/16x16/actions/Makefile > creating kmymoney2/icons/hicolor/22x22/Makefile > creating kmymoney2/icons/hicolor/22x22/actions/Makefile > creating kmymoney2/mymoney/Makefile > creating kmymoney2/pics/Makefile > creating kmymoney2/pics/toolbar/Makefile > creating kmymoney2/widgets/Makefile > creating po/Makefile > creating config.h > ===> Building for kmymoney2-0.3.6 > cd . && gmake -f admin/Makefile.common configure.in ; > gmake[1]: Entering directory > `/scratch/ports/deskutils/kmymoney2/work/kmymoney2-0.3.6' gmake[1]: Leaving > directory `/scratch/ports/deskutils/kmymoney2/work/kmymoney2-0.3.6' cd . && > aclocal > cd . && automake --foreign --include-deps ./Makefile > ./Makefile.am:5: EXTRA_DIST multiply defined in condition TRUE > > EXTRA_DIST (User, where = 5) = > { > TRUE => kmymoney2.kdevprj AUTHORS COPYING ChangeLog INSTALL README TODO > kmymoney2.lsm kmymoney2.spec readme-overview.txt ChangeLog.original } > gmake: *** [Makefile.in] Error 1 > *** Error code 2 > > Stop in /scratch/ports/deskutils/kmymoney2. > *** Error code 1 > > Stop in /scratch/ports/deskutils/kmymoney2. > *** Error code 1 > > Stop in /scratch/ports/deskutils/kmymoney2. > *** Error code 1 > > Stop in /scratch/ports/deskutils/kmymoney2. > # exit' > > > ^C > > # exit > > Script done on Thu Jan 24 12:51:05 2002 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 5: 5:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com [62.253.162.42]) by hub.freebsd.org (Postfix) with ESMTP id 248D537B402 for ; Sat, 26 Jan 2002 05:05:44 -0800 (PST) Received: from lungfish.ntlworld.com ([62.253.154.186]) by mta02-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020126130542.ECZX8848.mta02-svc.ntlworld.com@lungfish.ntlworld.com>; Sat, 26 Jan 2002 13:05:42 +0000 Received: from tuatara.goatsucker.org (tuatara.goatsucker.org [192.168.1.6]) by lungfish.ntlworld.com (8.11.3/8.11.3) with ESMTP id g0QD5en33391; Sat, 26 Jan 2002 13:05:40 GMT (envelope-from scott@tuatara.goatsucker.org) Received: (from scott@localhost) by tuatara.goatsucker.org (8.11.6/8.11.6) id g0QD57R05247; Sat, 26 Jan 2002 13:05:07 GMT (envelope-from scott) Date: Sat, 26 Jan 2002 13:05:06 +0000 From: Scott Mitchell To: Mark Rowlands Cc: jmkelly@ieee.org, John Kelly , FreeBSD-questions@FreeBSD.ORG Subject: Re: new install, trying to get Xircom PC card to work Message-ID: <20020126130506.A296@localhost> References: <3C521E87.4004D3C8@uclink.berkeley.edu> <20020126101155.2E88637B417@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020126101155.2E88637B417@hub.freebsd.org>; from fuc952d@tninet.se on Sat, Jan 26, 2002 at 11:11:51AM +0100 X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 11:11:51AM +0100, Mark Rowlands wrote: > On Saturday 26 January 2002 4:12 am, John Kelly wrote: > > Hello, > > > > I've got FreeBSD 4.4-release running on a Dell Latitude laptop with a > > Xircom RealPort CardBus Ethernet 10/100+Modem 56 (RBEM56G-100) PC card > > in it, and I can't figure out how to get the card to wake up. Card > > services seems to be running okay, it sees that a card has been > > inserted, but the system comes up with no Ethernet device. > > > > I found the source for the right driver, xe, but when I try to compile > > xe.c I get an error: "if_xe.c:138: card_if.h: No such file or > > directory." > > > > Beyond that, I'm having a hard time figuring out how to integrate the xe > > driver with the kernel even if I could manage to compile it. I've tried > > RTFMing, but haven't seemed to find the right page yet. All help will be > > appreciated. > > > > unless I am mistaken, support for cardbus is not yet incorporated in 4.x, it > is due for inclusion in 5.0 Correct. if_xe doesn't support any CardBus devices anyway -- Xircom used entirely different hardware for their CardBus offerings. I believe that some of them do work on -CURRENT, though. As an aside, if_xe is in the GENERIC kernel these days, so there's no need to compile anything to get it to work, assuming you have a supported card. Cheers, Scott -- =========================================================================== Scott Mitchell | PGP Key ID | "Eagles may soar, but weasels Cambridge, England | 0x54B171B9 | don't get sucked into jet engines" scott.mitchell@mail.com | 0xAA775B8B | -- Anon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 5:45:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from barry.mail.mindspring.net (barry.mail.mindspring.net [207.69.200.25]) by hub.freebsd.org (Postfix) with ESMTP id 1356C37B400 for ; Sat, 26 Jan 2002 05:45:50 -0800 (PST) Received: from user-37kapf9.dialup.mindspring.com ([207.69.101.233] helo=mr-p.protolan) by barry.mail.mindspring.net with esmtp (Exim 3.33 #1) id 16UT9Q-0006Pu-00 for freebsd-questions@FreeBSD.ORG; Sat, 26 Jan 2002 08:45:49 -0500 Date: Sat, 26 Jan 2002 08:49:57 -0500 From: "Marko" X-Mailer: The Bat! (v1.53d) Personal Reply-To: Anikin X-Priority: 3 (Normal) Message-ID: <126127242064.20020126084957@mindspring.com> To: freebsd-questions@FreeBSD.ORG Subject: natd UDP errors with PPP demand dial MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, My question as concerning the popular "netd[pid] failed to write packet back [Permission denied]" message I get. The machine is FreeBSD 4.3R. It connects to the Internet through a PPP demand dial link. Natd is in dynamic mode. The rules seem to be ok, and packet filtering is working great. The natd errors log right at the end of the PPP link setup. Their cause from the security log is this: Jan 25 19:37:45 PROTODOG /kernel: ipfw: 65000 Deny UDP 207.69.102.30:53 207.69.99.196:1909 out via tun0 Jan 25 19:37:45 PROTODOG /kernel: ipfw: 65000 Deny UDP 207.69.102.30:41755 207.69.99.196:1909 out via tun0 Jan 25 19:37:45 PROTODOG /kernel: ipfw: 65000 Deny UDP 207.69.102.30:53 207.69.99.196:1909 out via tun0 Jan 25 19:37:45 PROTODOG /kernel: ipfw: 65000 Deny UDP 207.69.102.30:41755 207.69.99.196:1909 out via tun0 Jan 25 19:37:45 PROTODOG /kernel: ipfw: 65000 Deny UDP 207.69.102.30:53 207.69.99.196:1909 out via tun0 Jan 25 21:11:45 PROTODOG /kernel: ipfw: 65000 Deny UDP 207.69.101.242:53 207.69.102.30:2138 out via tun0 Jan 25 21:11:45 PROTODOG /kernel: ipfw: 65000 Deny UDP 207.69.101.242:53 207.69.102.30:2144 out via tun0 Jan 25 21:11:45 PROTODOG /kernel: ipfw: 65000 Deny UDP 207.69.101.242:53 207.69.102.30:2144 out via tun0 There are 2 PPP sessions depicted. During the first, the machine had the 207.69.102.30 IP, during the second - 207.69.101.242. As you can see, it tries to send something via UDP to an IP it held during the previous ppp session. Of course, those attempts run into the ipfw rules causing the natd error, and get rejected as they should be. Some packets originate from very high ports, but there are always some from port 53 on my machine. Named is not running on it. Tcpdump doesn't show much useful stuff. I think it's because the packets never make it to the interface. The packets don't come from my private network either because I have the internal interface shut off to most UDP traffic. DNS queries are directed at particular servers and work fine. The problem packets originate on the firewall machine. My questions are: How do I find out what the machine is trying to send in those rejected UDP packets. Is there something I can change in the machine configuration to prevent the errors. (I have ruled out opening UDP outbound rules and bombarding machines on my previous IP's with nonsense.) Thank you for any input YOU might have. Marko To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 6: 1:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from db.nexgen.com (db.nexgen.com [66.92.98.149]) by hub.freebsd.org (Postfix) with SMTP id 5066137B404 for ; Sat, 26 Jan 2002 06:01:33 -0800 (PST) Received: (qmail 15070 invoked from network); 26 Jan 2002 14:01:22 -0000 Received: from localhost.nexgen.com (HELO noc) (root@127.0.0.1) by localhost.nexgen.com with SMTP; 26 Jan 2002 14:01:22 -0000 Message-ID: <003401c1a671$e7801250$faa0b542@noc> From: "alexus" To: Subject: out of swap space Date: Sat, 26 Jan 2002 09:01:08 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi is there a way to increase size of swap space? i have 512mb of ram and 512mb of swap space i had 256mb of ram before so i created 512mb of swap space now i put another 256mb in and i'm still running out of space so i was asking if there is a way to increase size of swap space? this is live server and i can't afford for it to be down, so place no suggestions like partion magic.. this is so windowish:) unless thats the only one solution then i might consider.. and yes i'm going to put more physical memory, but i still would like to know if there is a way to increase swap size thank you in advance To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 6:20:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fia168-94.dsl.hccnet.nl (fia168-94.dsl.hccnet.nl [62.251.94.168]) by hub.freebsd.org (Postfix) with ESMTP id D299437B41B for ; Sat, 26 Jan 2002 06:20:40 -0800 (PST) Received: by fia168-94.dsl.hccnet.nl (Postfix, from userid 1000) id AED311FE; Sat, 26 Jan 2002 15:20:43 +0100 (CET) Content-Type: text/plain; charset="iso-8859-15" From: Simon Siemonsma To: Subject: Re: problems building kde app. Date: Sat, 26 Jan 2002 15:20:43 +0100 X-Mailer: KMail [version 1.3.2] References: <03bc01c1a5ee$a4dcfc70$4116c60a@win2k.clickcom.com> In-Reply-To: <03bc01c1a5ee$a4dcfc70$4116c60a@win2k.clickcom.com> Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020126142043.AED311FE@fia168-94.dsl.hccnet.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks, it is solved now. My next problem was also some symbolic link. Simon Siemonsma On Friday 25 January 2002 23:21, you wrote: > moc is part of the Qt that's in x11-toolkits. A lot of time you'll see > that this wound up installing a moc2 but not a moc. > > Find moc (look in /usr/X11R6/bin/) and then try something like > make MOC=/usr/X11R6/bin/moc2 > > or just making a symbolic link (man ln) called moc that points to moc2. > > Frequently, moc2 can be substituted for moc. Some applications might > require that you actually goto trolltech 's website and download a prior > version than what /x11-toolkits/qt2 is going to install for you. > > John Straiton > ClickCom, Inc. > jks@clickcom.com > (704)365-9970x101 > > > -----Original Message----- > > From: owner-freebsd-questions@FreeBSD.ORG > > [mailto:owner-freebsd-questions@FreeBSD.ORG] On Behalf Of > > Simon Siemonsma > > Sent: Friday, January 25, 2002 5:19 PM > > To: freebsd-questions@freebsd.org > > Subject: problems building kde app. > > > > > > When trying to build Kmymoney2 from the ports I get the > > following error: > > > > checking for moc... not found configure: error: No Qt meta > > object compiler > > (moc) found! Please check whether you installed Qt correctly. > > You need to have a running moc binary. configure tried to run > > and the test > > didn't succeed. If configure shouldn't have tried this one, set the > > environment variable MOC to the right one before running configure. > > > > Can anyone tell me what a MOC is and how I can solve this? > > > > Regards, > > > > Simon Siemonsma > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 6:24:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.broadpark.no (217-13-4-9.dd.nextgentel.com [217.13.4.9]) by hub.freebsd.org (Postfix) with ESMTP id 6F59D37B404 for ; Sat, 26 Jan 2002 06:24:40 -0800 (PST) Received: from ninja.amphex.com (ninja.amphex.com [217.13.29.51]) by mail.broadpark.no (Postfix) with SMTP id C32137D07 for ; Sat, 26 Jan 2002 15:24:38 +0100 (MET) Date: Sat, 26 Jan 2002 15:24:37 +0100 From: J.S. To: freebsd-questions@freebsd.org Subject: /nonexistent and /sbin/nologin Message-Id: <20020126152437.27005e8f.johann@broadpark.no> X-Mailer: Sylpheed version 0.6.5 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG What's the difference between them? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 6:28: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.broadpark.no (217-13-4-9.dd.nextgentel.com [217.13.4.9]) by hub.freebsd.org (Postfix) with ESMTP id 8983837B400 for ; Sat, 26 Jan 2002 06:28:00 -0800 (PST) Received: from ninja.amphex.com (ninja.amphex.com [217.13.29.51]) by mail.broadpark.no (Postfix) with SMTP id 9C2F67DBE for ; Sat, 26 Jan 2002 15:27:59 +0100 (MET) Date: Sat, 26 Jan 2002 15:27:55 +0100 From: J.S. To: freebsd-questions@freebsd.org Subject: rc.local? crontab? what? Message-Id: <20020126152755.3bc451ec.johann@broadpark.no> X-Mailer: Sylpheed version 0.6.5 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi. I'm in the process of setting up an additional ftpd on my server (openftpd.org), which has been installed in user ftpd's home directory. The user ftpd has a nonexistent shell. How can I get it loaded at startup? I tried putting: su ftpd -c /usr/home/ftpd/openftpd/sbin/ftpd in /etc/rc.local, but I heard that doesn't work now that I removed ftpd's shell. Anyone? Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 6:51:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mta07-svc.ntlworld.com (mta07-svc.ntlworld.com [62.253.162.47]) by hub.freebsd.org (Postfix) with ESMTP id 377F637B402 for ; Sat, 26 Jan 2002 06:51:23 -0800 (PST) Received: from lungfish.ntlworld.com ([62.253.153.123]) by mta07-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020126145121.SIL6966.mta07-svc.ntlworld.com@lungfish.ntlworld.com>; Sat, 26 Jan 2002 14:51:21 +0000 Received: from tuatara.goatsucker.org (tuatara.goatsucker.org [192.168.1.6]) by lungfish.ntlworld.com (8.11.3/8.11.3) with ESMTP id g0QEpIn33632; Sat, 26 Jan 2002 14:51:18 GMT (envelope-from scott@tuatara.goatsucker.org) Received: (from scott@localhost) by tuatara.goatsucker.org (8.11.6/8.11.6) id g0QEp4Z05947; Sat, 26 Jan 2002 14:51:04 GMT (envelope-from scott) Date: Sat, 26 Jan 2002 14:51:04 +0000 From: Scott Mitchell To: "J.S." Cc: freebsd-questions@FreeBSD.ORG Subject: Re: /nonexistent and /sbin/nologin Message-ID: <20020126145104.B296@localhost> References: <20020126152437.27005e8f.johann@broadpark.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020126152437.27005e8f.johann@broadpark.no>; from johann@broadpark.no on Sat, Jan 26, 2002 at 03:24:37PM +0100 X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 03:24:37PM +0100, J.S. wrote: > What's the difference between them? /sbin/nologin is a program -- 'man nologin' to find out what it does. /nonexistent is a directory that, erm, doesn't exist. Unless you went and created it, of course. They're often used as the shell and home directory, respectively, of users that aren't allowed to log in. Scott -- =========================================================================== Scott Mitchell | PGP Key ID | "Eagles may soar, but weasels Cambridge, England | 0x54B171B9 | don't get sucked into jet engines" scott.mitchell@mail.com | 0xAA775B8B | -- Anon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 6:52:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp014.mail.yahoo.com (smtp014.mail.yahoo.com [216.136.173.58]) by hub.freebsd.org (Postfix) with SMTP id 9711337B48F for ; Sat, 26 Jan 2002 06:52:00 -0800 (PST) Received: from dsl254-081-103.nyc1.dsl.speakeasy.net (HELO yahoo.com) (216.254.81.103) by smtp.mail.vip.sc5.yahoo.com with SMTP; 26 Jan 2002 14:52:00 -0000 Message-ID: <3C52C286.8070609@yahoo.com> Date: Sat, 26 Jan 2002 09:51:50 -0500 From: Christian Sauer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.3) Gecko/20020114 X-Accept-Language: en-us MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: question about /etc/periodic.conf Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all, I recently wrote a shell script that does a cvsup for my ports tree, and I put the script in the /etc/periodic/weekly folder. I decided to follow suit with the other periodic scripts and added to the top of mine: if [ -r /etc/defaults/periodic.conf ] then . /etc/defaults/periodic.conf source_periodic_confs fi so I could control my script through the conf files. Instead of editing any of the confs in /etc/defaults/, I created /etc/periodic.conf which /etc/defaults/periodic.conf lists as a local override file. I only put the options for my script in /etc/periodic.conf and left everything else to run on the defaults. problem is, now when the periodic jobs kick off, I keep getting "YES: not found" listed in the log files that are mailed to me. any ideas? -Christian _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 7:40:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id 90FF837B402 for ; Sat, 26 Jan 2002 07:40:32 -0800 (PST) Received: (qmail 15051 invoked by uid 0); 26 Jan 2002 15:40:31 -0000 Received: from tk212017108240.univie.teleweb.at (HELO Deadcell.ANT) (212.17.108.240) by mail.gmx.net (mp020-rz3) with SMTP; 26 Jan 2002 15:40:31 -0000 Received: (from ant@localhost) by Deadcell.ANT (8.11.6/8.11.6) id g0QFeRR07212; Sat, 26 Jan 2002 16:40:27 +0100 (CET) (envelope-from ant) Date: Sat, 26 Jan 2002 16:40:27 +0100 From: Andreas Ntaflos To: Olaf Hoyer Cc: freebsd-questions@freebsd.org Subject: Re: Alternate logfile for log_in_vain Message-ID: <20020126164027.A1564@Deadcell.ANT> Mail-Followup-To: Olaf Hoyer , freebsd-questions@freebsd.org References: <20020126120912.S49715-100000@deckard.addix.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020126120912.S49715-100000@deckard.addix.net>; from ohoyer@deckard.addix.net on Sat, Jan 26, 2002 at 12:11:39PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 12:11:39PM +0100, Olaf Hoyer wrote: > > Well, I have a FreeBSD 4.4-R box running, and I just activated the options > log_in_vain via sysctl. > > Ok, it does what it is intended to do, but it clobbers up my > /var/log/messages. > > In which way might I redirect those output to, say, /var/log/log_in_vain? > > Any way to do it via some syslog entry? > Well I am not sure if there is a specific facility for log_in_vain, but you could, and should, log any kernel messages (and log_in_vain messages come from the kernel) to a specific file, kinda like this in syslog.conf: kern.* /var/log/kern.log #put kernel log stuff to kern.log kern.none /var/log/messages #don't log kernek stuff to messages That's all I can think of, but specifically logging log_in_vain would be more desireable. regards -- Andreas "ant" Ntaflos ntaflos.andreas@gmx.net Vienna, AUSTRIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 7:49:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.mail.pas.earthlink.net [207.217.120.50]) by hub.freebsd.org (Postfix) with ESMTP id B763A37B41B for ; Sat, 26 Jan 2002 07:49:07 -0800 (PST) Received: from dialup-63.208.65.171.dial1.chicago1.level3.net ([63.208.65.171] helo=pegasus) by avocet.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16UV4Y-0002gn-00; Sat, 26 Jan 2002 07:48:54 -0800 Message-ID: <002501c1a680$f4eecd00$ab41d03f@pegasus> From: "Bob Giesen" To: "Steve Wingate" , , Cc: References: <16c.7bc1739.2983420a@aol.com> <004d01c1a5f7$dcc77990$0501a8c0@win2kads> Subject: Re: 64-bit PCI mobos Date: Sat, 26 Jan 2002 09:48:51 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MIMEOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG FWIW, I've been using a Tyan Trinity KT for a little over a year, now... so far, so good -- no trouble, yet. (I've ben pretty lucky w/ mobos over the years -- just went to the store and bought one with the features I wanted, and asked the salesperson or tech for a thumbs-up or -down on quality. Haven't had one fail me, yet [knocking on virtual wood].... Of course, I jukls.ej. a98 3fasd0fj. s;ulk/.d asdf ads'fu098 ds ;-) Just kidding. ----- Original Message ----- From: "Steve Wingate" To: ; Cc: Sent: Friday, January 25, 2002 5:27 PM Subject: Re: 64-bit PCI mobos > > > > > Tyan doesnt know how to make stable MBs..they all have power problems > > > > (one that we used needed 250W otherwise it would reboot). > > > > > > I have never had any trouble with any of the Tyan motherboards I have > > > used... > > > > > > > Which implies that you have been lucky. > > > > Or that the other guy was simply unlucky. My Tyan boards haven't been much > trouble either. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:11: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.mail.pas.earthlink.net [207.217.120.50]) by hub.freebsd.org (Postfix) with ESMTP id 709A137B400 for ; Sat, 26 Jan 2002 08:11:01 -0800 (PST) Received: from dialup-63.214.213.159.dial1.philadelphia1.level3.net ([63.214.213.159] helo=sparky) by avocet.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16UVPv-0005xq-00; Sat, 26 Jan 2002 08:11:00 -0800 From: Jud To: freebsd-questions@freebsd.org, Tom Kersten Date: Sat, 26 Jan 2002 11:11:28 -0500 X-Priority: 3 (Normal) In-Reply-To: <20020126051904.82242.qmail@web10003.mail.yahoo.com> Message-Id: Subject: Re: really easy java question.... MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Mailer: Opera 6.01 build 1029 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 1/26/2002 12:19:04 AM, Tom Kersten wrote: >Hello all, > >I have installed linux-jdk-1.3.1 from on FreeBSD 4.4 >from the ports. When I try to type "java" or "javac" >it doesn't find the commmand...I can type the complete >path (/usr/local/jdxxxx/bin/javac ...or ../java) and >it works. I have added /usr/local/linux-jdkxxx/bin to >my path in my .cshrc file but still no luck...what's >the deal??? If you want to use an installed port before restarting (without entering the entire path), as root type "rehash" (no quotes) at the prompt and enter/return. Jud To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:11:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.mail.pas.earthlink.net [207.217.120.50]) by hub.freebsd.org (Postfix) with ESMTP id 1DE8137B41B for ; Sat, 26 Jan 2002 08:11:06 -0800 (PST) Received: from dialup-63.208.65.171.dial1.chicago1.level3.net ([63.208.65.171] helo=pegasus) by avocet.prod.itd.earthlink.net with smtp (Exim 3.33 #1) id 16UVQ0-00063D-00; Sat, 26 Jan 2002 08:11:05 -0800 Message-ID: <004301c1a684$0de9bb00$ab41d03f@pegasus> From: "Bob Giesen" To: "Bernie" , "freebsd-questions" References: <20020126020430.P175-100000@BLAST> Subject: Re: shells confusion Date: Sat, 26 Jan 2002 10:11:02 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MIMEOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG For scripting, the most logical choice to learn first is the Bourne shell (/bin/sh on most systems). As you've noted, the vast majority of existing scripts that are supplied with systems are written in Bourne, so you will have little trouble translating what you learn to all those examples that you have available to you. Also, should you desire to modify any of those scripts, you will be less likely to break them through syntax errors. (Notice the "#!/bin/sh" at the tops of those scripts? The leading "#!" tells the invoking shell to run the script in a subshell of the following command (/bin/sh, in this case). So, if you were to insert something from ksh (Korn Shell), e.g., that /bin/sh doesn't understand, the script will fail.) Once you're comfortable with sh, you'll want to consider looking at the other shells -- especially if you work at the command line a lot and/or do a lot of scripting. Most other popular UNIX command shells (ksh, bash, zsh) are mostly supersets of the Bourne shell, so you will find it very easy to take advantage of their extended features after you've learned Bourne. It is a natural progression. However, should you learn one of those whiz-bang shells, first, you may find dealing with Bourne-shell scripts a bit more frustrating when you find that you have to take into account its limitations. ----- Original Message ----- From: "Bernie" To: Sent: Friday, January 25, 2002 6:18 PM Subject: shells confusion > > hi, > > i'm planning to learn shell programming but i'm not sure > on which one to choose... > > i've been reading in the 'FreeBSD unleashed' that people > wanting to do shell programming should stay away from > c-shell as it's realy good for interactive, but very bad > for scripts. is this true? > > also, looking into the scripts in /etc, i see a line on the > top saying 'bin/sh'. so are they all written in 'sh' and > not csh ? if so, why freebsd comes with csh as default? > > also, why single user mode proposes /bin/sh as default? > is there any particular reason for it? > > i'm a bit confused on which shell to pick from programming. > also i've been thinking of perl, but for the moment i think > i've got to learn at least how to do basic shell programming, > not only to write programs, but also to understand scrips that > come with the system. > > but the question is 'which shell' ... > > any advice on this matter will be appreciated. > > > Regards > > --Bernie > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:13: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from pf39.warszawa.sdi.tpnet.pl (pf39.warszawa.sdi.tpnet.pl [213.25.209.39]) by hub.freebsd.org (Postfix) with ESMTP id 41E8937B416; Sat, 26 Jan 2002 08:12:49 -0800 (PST) Received: (from zaks@localhost) by pf39.warszawa.sdi.tpnet.pl (8.11.6/8.11.6) id g0QGCnu18259; Sat, 26 Jan 2002 17:12:49 +0100 (CET) (envelope-from zaks) From: Slawek Zak To: Brian Somers Cc: freebsd-net@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: PPP callback and SecurID References: <200201241310.g0ODAOl49131@hak.lan.Awfulhak.org> Content-MD5: ac4f41bd8e61d62aedb2e318bd2744bd Date: Sat, 26 Jan 2002 17:12:49 +0100 In-Reply-To: <200201241310.g0ODAOl49131@hak.lan.Awfulhak.org> (Brian Somers's message of "Thu, 24 Jan 2002 13:10:24 +0000") Message-ID: <874rl93xby.fsf@pf39.warszawa.sdi.tpnet.pl> Lines: 37 User-Agent: Gnus/5.090005 (Oort Gnus v0.05) XEmacs/21.5 (asparagus, i386-unknown-freebsd4.4) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 24 Jan 2002, Brian Somers uttered the following: > You could probably ``set cd off'' to get the desired effect. > Alternatively, configure your machine to be able to receive incoming > connections and let the initial ppp session drop when the peer hangs > up. Okay. I've found a way to solve this. Below is the relevant section from my ppp.conf. callback: disable pap disable chap set speed 57600 set phone XXXXXXX set server /var/run/ppp-sock-%d ppp 177 set cd off set device /dev/cuaa1 allow users * set dial "ABORT BUSY ABORT NO\\sCARRIER \ TIMEOUT 10 \"\" ATZ OK ATDT\\T \ TIMEOUT 40 CONNECT" set login "TIMEOUT 5 sername: XXXX \ PASSCODE: \"!/usr/X11R6/bin/ssh-askpass\" \ TIMEOUT 15 Callback \"\" NO\\sCARRIER \"\" \ TIMEOUT 60 RING ATA CONNECT" There is an example in ppp.conf.sample which helped me to find the correct login chat string. Crucial parts are the cd off and disconnect in login chat. Running getty is not necessary in this case. Thanks to Joe Barbish, for helping me. /S -- hundred-and-one symptoms of being an internet addict: 4. Your eyeglasses have a web site burned in on them. * Suavek Zak / PGP: finger://zaks@prioris.mini.pw.edu.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:20:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from imo-m02.mx.aol.com (imo-m02.mx.aol.com [64.12.136.5]) by hub.freebsd.org (Postfix) with ESMTP id 8C42337B400 for ; Sat, 26 Jan 2002 08:20:08 -0800 (PST) Received: from TD790@aol.com by imo-m02.mx.aol.com (mail_out_v31_r1.26.) id i.43.58ae011 (4331); Sat, 26 Jan 2002 11:19:46 -0500 (EST) From: TD790@aol.com Message-ID: <43.58ae011.29843121@aol.com> Date: Sat, 26 Jan 2002 11:19:45 EST Subject: Re: 64-bit PCI mobos To: burnscharlesn@hotmail.com Cc: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: AOL 5.0 for Windows sub 138 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In a message dated 1/25/02 9:09:47 PM Eastern Standard Time, burnscharlesn@hotmail.com writes: > >Have you tried to run them with 180watt power supplies? Or in a humid > >environment? The problems are well-known and have nothing to do with > >"luck". > >At least they admit it...they took back about 70 MBs from us without boxes > >or > >accessories. > > Can you really blame a motherboard when the system is using such a minimal > power supply? Extremely low wattage power supplies are often made with lower > > quality parts as well, as what reason is there to get such a wimpy PS other > than price? > If the Tyan boards malfunctioned in humid conditions whereas other boards > worked well, that is certainly not forgivable (though none of the Tyan > boards that I have used have had such problems). > The 810/815 chipset specs should require less 150watts with a single IDE drive, as ALL other MBs of similar design function well. Most 1U systems have such "wimpy" power supplies (150 is common), so I guess your "world" is different than mine. I have to remember what list this is after all :-) We already, in this thread, have 2 noted "flaws" in MBs from a single company (not random occurances, but known and similar design problems), yet you'll argue (with no technical understanding of the subject) that there are no problems because you havent experienced them. Why? db To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:33:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from postfix1-2.free.fr (postfix1-2.free.fr [213.228.0.130]) by hub.freebsd.org (Postfix) with ESMTP id 49D1637B416 for ; Sat, 26 Jan 2002 08:33:51 -0800 (PST) Received: from localhost (lille-1-a7-1-223.dial.proxad.net [62.147.1.223]) by postfix1-2.free.fr (Postfix) with SMTP id 2F5F7AB5C0 for ; Sat, 26 Jan 2002 17:33:50 +0100 (CET) Date: Sat, 26 Jan 2002 17:33:43 +0100 From: Eric MC To: freebsd-questions@FreeBSD.ORG Subject: subscribe Message-Id: <20020126173343.5f6fb913.eric.m.c.declerck@free.fr> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i586-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:37:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id DA79737B400 for ; Sat, 26 Jan 2002 08:37:38 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id KAA04773; Sat, 26 Jan 2002 10:37:31 -0600 (CST) Message-Id: <3.0.5.32.20020126103726.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Sat, 26 Jan 2002 10:37:26 -0600 To: "Doug Reynolds" , "FBSD Questions" , "Joe & Fhe Barbish" From: jacks@sage-american.com Subject: Re: Apache_FP ? In-Reply-To: <20020125220724.454FD4844F@wastegate.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "....you can't, however, make www.website.com/~username/ accessable by frontpage. you have to ftp the files in...." This is not true. I make www.website.com/websitedir using FrontPage all the time (for 5 years) now. They are "subwebs" or "child webs". I have one main website with about 20 subwebs. Some are open and some require logins. After creating a "new web" off of the main domain, you ask FPage to "list webs" under www.website and it will show all its children or subwebs separately... all of which may have separate logins for admin, authoring or whatever. They may be "protected webs" that require a login to enter and browse or may be open to all. During creation (or even afterwards) in "tools/permissions" you can tell it to have "unique permissions" or have it the same as the root. At 05:09 PM 1.25.2002 -0500, Doug Reynolds wrote: >On Fri, 25 Jan 2002 15:31:55 -0500, Joe & Fhe Barbish wrote: > >>Can Apache_FrontPage have both apache web sites and FrontPage >>web sites in the same base apache server? > >yes. the root web spawns from the / dir for frontpage. > >your user accounts go under www.website.com/~username/ > >it defaults to public_html, if you want to change it, search for >userdir under the httpd.conf > >you can access the root web frontpage or from /usr/local/www/data (i >believe). > >you can't, however, make www.website.com/~username/ accessable by >frontpage. you have to ftp the files in. > >you can also use virtual hosts to point to different directories under >the fp structure. > >>Is there an admin interface to apache to automate the >>creation and deletion of web sites? > >it is: > >/usr/local/frontpage/version4.0/bin/fpsrvadm.exe > >>Can Apache_FP have directory based web sites that would be >>accessed by a url of this type http://www.domain.com/dir_name or >>http://www.domain.com/tom.index where domain points to the >>apache server and (dir_name and tom.index) point to the >>individual web sites inside the Apache server? If so can I see >>a sample of the definition statements? > >answered above > >>Will doing a make deinstall on apache port will it also remove >>all the web site definitions and data? > >shouldn't delete anything, but it'll kill the conf. > >>Read all the apache & FrontPage doc's on FBSD. Looking for a >>how-to-do doc, does anybody know of any? > >none that i found, except for the default docs that apache installs. >it will also point to microsofts front pages server extention info page >--- >doug reynolds | the maverick | mav@wastegate.net > >PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:42:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fedde.littleton.co.us (cfedde.dsl.frii.net [216.17.139.141]) by hub.freebsd.org (Postfix) with ESMTP id 55ECF37B400 for ; Sat, 26 Jan 2002 08:42:32 -0800 (PST) Received: from fedde.littleton.co.us (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.6/8.11.4) with ESMTP id g0QGgT868534; Sat, 26 Jan 2002 09:42:29 -0700 (MST) Message-Id: <200201261642.g0QGgT868534@fedde.littleton.co.us> To: "alexus" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: out of swap space In-Reply-To: <003401c1a671$e7801250$faa0b542@noc> From: Chris Fedde Date: Sat, 26 Jan 2002 09:42:29 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 26 Jan 2002 09:01:08 -0500 "alexus" wrote: +------------------ | hi | | is there a way to increase size of swap space? | | i have 512mb of ram and 512mb of swap space | | i had 256mb of ram before so i created 512mb of swap space | now i put another 256mb in and i'm still running out of space | | so i was asking if there is a way to increase size of swap space? +------------------ You want to spread your swap over all the drives in the box. So allocate one or more partitions on each drive. The rule of thumb that swap should be twice the size of ram. But on a busy server you want enough ram to avoid swapping at all. It is posible to configure swap in a file by using a combination of vnconfig and swapon but swap configured this way is much slower than raw partition swap. Good Luck -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:44:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from catalyst.sasknow.net (catalyst.sasknow.net [207.195.92.130]) by hub.freebsd.org (Postfix) with ESMTP id BE55637B402 for ; Sat, 26 Jan 2002 08:44:51 -0800 (PST) Received: from localhost (ryan@localhost) by catalyst.sasknow.net (8.11.6/8.11.6) with ESMTP id g0QGjtD64452; Sat, 26 Jan 2002 10:45:56 -0600 (CST) (envelope-from ryan@sasknow.com) X-Authentication-Warning: catalyst.sasknow.net: ryan owned process doing -bs Date: Sat, 26 Jan 2002 10:45:55 -0600 (CST) From: Ryan Thompson X-X-Sender: ryan@catalyst.sasknow.net To: alexus Cc: freebsd-questions@FreeBSD.ORG Subject: Re: out of swap space In-Reply-To: <003401c1a671$e7801250$faa0b542@noc> Message-ID: <20020126102130.C59495-100000@catalyst.sasknow.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alexus wrote to freebsd-questions@FreeBSD.ORG: > hi > > is there a way to increase size of swap space? > > i have 512mb of ram and 512mb of swap space > > i had 256mb of ram before so i created 512mb of swap space now i put > another 256mb in and i'm still running out of space Suggestion #1: If you can reduce the memory consumption of your system, that should be your first task. Make sure you don't have any processes that are eating/leaking memory. Is it better after a reboot, and gradually winds down to a crash? > so i was asking if there is a way to increase size of swap space? > > this is live server and i can't afford for it to be down, so place > no suggestions like partion magic.. this is so windowish:) unless > thats the only one solution then i might consider.. Suggestion #2: Using your existing drives, you WILL need to mess with filesystems. If you have any slices which you are NOT using, or are not using nearly to capacity, you can move all those files to another filesystem, symlink things appropriately, and use the slice for swap (swapon(8), disklabel(8)). If the slice is adjacent to an existing swap partition, use disklabel(8) (or /stand/sysinstall, for the uninitiated). You'll probably want to do some of this in single-user mode, but your total downtime shouldn't be that significant. > and yes i'm going to put more physical memory, but i still would > like to know if there is a way to increase swap size Suggestion #3: Add another disk and use it as a new swap device. To do this with only 45 seconds of downtime, add the entry to /etc/fstab before you shut down, pop the drive in, and turn the power on. If you have any hot swap bays, this isn't even an issue. :-) Suggestion #4: Share the load with another machine. > thank you in advance I'm currently building a router/firewall/proxy for a client, using FreeBSD 3.5 on a 486DX/2-66 that they supplied with 3072K + 640K + 256K = 3968K RAM, and a 180MB HDD. After getting the kernel ~1MB, disabling almost everything on boot (ps -ax | wc = 9 :-), it is soon to be serving an entire floor of office machines. So, what is it you can't do with several orders of magnitude more memory than that? :-) - Ryan -- Ryan Thompson Network Administrator, Accounts SaskNow Technologies - http://www.sasknow.com #106-380 3120 8th St E - Saskatoon, SK - S7H 0W2 Tel: 306-664-3600 Fax: 306-664-1161 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:45: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp3.mx.pitdc1.stargate.net (smtp3.mx.pitdc1.stargate.net [206.210.69.143]) by hub.freebsd.org (Postfix) with SMTP id 3799B37B416 for ; Sat, 26 Jan 2002 08:44:56 -0800 (PST) Received: (qmail 12477 invoked from network); 26 Jan 2002 16:31:11 -0000 Received: from dap-216-151-64-222.nfas.greensburg-tnt-2.sns234.pa.stargate.net (HELO wastegate.net) (216.151.64.222) by smtp3.mx.pitdc1.stargate.net with SMTP; 26 Jan 2002 16:31:11 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id 678734844F; Sat, 26 Jan 2002 11:31:39 -0500 (EST) From: "Doug Reynolds" To: "Erik Trulsson" Cc: "freebsd-questions@FreeBSD.ORG" , "Patrick Fish (patrick@pwhsnet.com)" Date: Sat, 26 Jan 2002 11:33:40 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: <20020126074219.GA43298@student.uu.se> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: 4.4-RELEASE to 4.4-STABLE Message-Id: <20020126163139.678734844F@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 26 Jan 2002 08:42:20 +0100, Erik Trulsson wrote: >On Sat, Jan 26, 2002 at 02:29:51AM -0500, Doug Reynolds wrote: >> >> cvsup >> >> make buildworld >> make kernel KERNCONF=yourkernelconf >> reboot >> boot single user mode by hitting the space and typing boot -s and >> enter. hit enter when it asks you for the shell; then: >> fsck -p >> umount -a >This umount seems quite unnecessary since if you just rebooted into >single-user mode the only thing mounted will be / which is mounted >read-only. OTOH one thing you probably do want here instead is >swapon -a >to make sure that any swapspace you have can be used. >(I once forgot that on a memory-poor machine. The installworld died > halfway through with an out-of-memory error.) I thought / was readonly until you fsck'd and remountd it. swapon -a would be good, although my machine has 256megs >> mount -a >> >> make installworld >> mergemaster >> reboot >> >> that'll up you to the latest. >> >> (btw, if anyone sees any safely problems with this order, lemme know, >> seems totally redundant) > >Redundant? No. You can usually skip the 'reboot into single-user mode' >part without any ill-effects but that is about it. however, if you just shutdown now, you wont be able to test the kernel before you install the userland. and everyone claims it is hard to go back to the old userland after you commit it. on my system, since it isn't production or anything, i'd probably just do it all in multi-user mode just to see if i could break it. :) --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:48: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.mx.pitdc1.stargate.net (smtp1.mx.pitdc1.stargate.net [206.210.69.141]) by hub.freebsd.org (Postfix) with SMTP id BA03337B402 for ; Sat, 26 Jan 2002 08:48:03 -0800 (PST) Received: (qmail 22050 invoked from network); 26 Jan 2002 16:48:02 -0000 Received: from dap-216-151-64-222.nfas.greensburg-tnt-2.sns234.pa.stargate.net (HELO wastegate.net) (216.151.64.222) by smtp1.mx.pitdc1.stargate.net with SMTP; 26 Jan 2002 16:48:02 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id 99B5948449; Sat, 26 Jan 2002 11:48:37 -0500 (EST) From: "Doug Reynolds" To: "FBSD Questions" , "jacks@sage-american.com" , "Joe & Fhe Barbish" Date: Sat, 26 Jan 2002 11:50:38 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: <3.0.5.32.20020126103726.01831ca0@mail.sage-american.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: Apache_FP ? Message-Id: <20020126164837.99B5948449@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 26 Jan 2002 10:37:26 -0600, jacks@sage-american.com wrote: >"....you can't, however, make www.website.com/~username/ accessable by >frontpage. you have to ftp the files in...." > >This is not true. I make www.website.com/websitedir using FrontPage all the >time (for 5 years) now. They are "subwebs" or "child webs". I have one main >website with about 20 subwebs. Some are open and some require logins. > >After creating a "new web" off of the main domain, you ask FPage to "list >webs" under www.website and it will show all its children or subwebs >separately... all of which may have separate logins for admin, authoring or >whatever. They may be "protected webs" that require a login to enter and >browse or may be open to all. During creation (or even afterwards) in >"tools/permissions" you can tell it to have "unique permissions" or have it >the same as the root. that is what I said, even though I wasn't a 100% clear on www.website.com/dir/ which is a sub web, and i said you can also point different hostnames to it. like my www.rebel.tj points to the wastegate.net/mav/ directory. however, you can't have the www.website.com/~username/ work under frontpage. you can have www.website.com/username/, but you have to set that up though the fpsvradm.exe, whereis the /~username/, all the user has to do is upload there page to the web directory. --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:49:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fedde.littleton.co.us (cfedde.dsl.frii.net [216.17.139.141]) by hub.freebsd.org (Postfix) with ESMTP id 585F137B416 for ; Sat, 26 Jan 2002 08:49:08 -0800 (PST) Received: from fedde.littleton.co.us (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.6/8.11.4) with ESMTP id g0QGn6868633; Sat, 26 Jan 2002 09:49:06 -0700 (MST) Message-Id: <200201261649.g0QGn6868633@fedde.littleton.co.us> To: Christian Sauer Cc: freebsd-questions@FreeBSD.ORG Subject: Re: question about /etc/periodic.conf In-Reply-To: <3C52C286.8070609@yahoo.com> From: Chris Fedde Date: Sat, 26 Jan 2002 09:49:06 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 26 Jan 2002 09:51:50 -0500 Christian Sauer wrote: +------------------ | problem is, now when the periodic jobs kick off, I keep getting "YES: | not found" listed in the log files that are mailed to me. +------------------ Sounds like somehow your script is trying to run the word "YES" as a command. There is a command /usr/bin/yes but I don't expect that is what you want ether. Maybe if you post your scripts we can help locate the problem. -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:55: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from Mail6.nc.rr.com (fe6.southeast.rr.com [24.93.67.53]) by hub.freebsd.org (Postfix) with ESMTP id 25AF337B400 for ; Sat, 26 Jan 2002 08:54:55 -0800 (PST) Received: from i8k.babbleon.org ([66.57.85.154]) by Mail6.nc.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Sat, 26 Jan 2002 11:54:52 -0500 Received: by i8k.babbleon.org (Postfix, from userid 111) id 673824009; Sat, 26 Jan 2002 11:53:38 -0500 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Brian T.Schellenberger To: "alexus" , Subject: Re: out of swap space Date: Sat, 26 Jan 2002 11:53:37 -0500 X-Mailer: KMail [version 1.3] References: <003401c1a671$e7801250$faa0b542@noc> In-Reply-To: <003401c1a671$e7801250$faa0b542@noc> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20020126165338.673824009@i8k.babbleon.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Saturday 26 January 2002 09:01 am, alexus wrote: > hi > > is there a way to increase size of swap space? Well, that depends on whether you have space that you aren't using. You don't have to actually increase the size of the swap partition since you can have more than one swap device active. However, you do have to somehow wind up with some disk space that you can convert to swap. It need not be a seperate physical partition (slice); indeed, it's usually not. So if you have a FreeBSD partition that isn't full, you might be able to split it. For example, if you have /var in a separate partition, and you have enough space for the /var files in / or /usr, you could move them there (and if you move them to /usr, set up a symbolic link from /var to /usr/var), and then convert /var to a swap partition. Once you convert it to a swap parition and mark it as such in /etc/fstab, it will be automatically mounted as swap space next time you reboot and can be added immediately with swapon for the current boot. > > i have 512mb of ram and 512mb of swap space > > i had 256mb of ram before so i created 512mb of swap space > now i put another 256mb in and i'm still running out of space > > so i was asking if there is a way to increase size of swap space? > > this is live server and i can't afford for it to be down, so place no > suggestions like partion magic.. this is so windowish:) > unless thats the only one solution then i might consider.. > > and yes i'm going to put more physical memory, but i still would like to > know if there is a way to increase swap size > > thank you in advance > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) Brian, the man from Babble-On . . . . bts@babbleon.org (personal) http://www.babbleon.org -------> Free Dmitry Sklyarov! (let him go home) <----------- http://www.eff.org http://www.programming-freedom.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 8:55:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp3.mx.pitdc1.stargate.net (smtp3.mx.pitdc1.stargate.net [206.210.69.143]) by hub.freebsd.org (Postfix) with SMTP id 249E837B416 for ; Sat, 26 Jan 2002 08:55:40 -0800 (PST) Received: (qmail 7835 invoked from network); 26 Jan 2002 16:43:42 -0000 Received: from dap-216-151-64-222.nfas.greensburg-tnt-2.sns234.pa.stargate.net (HELO wastegate.net) (216.151.64.222) by smtp3.mx.pitdc1.stargate.net with SMTP; 26 Jan 2002 16:43:42 -0000 Received: from mother.wastegate.net (mother.wg.local [192.168.1.2]) by wastegate.net (Postfix) with SMTP id 299B148449; Sat, 26 Jan 2002 11:44:17 -0500 (EST) From: "Doug Reynolds" To: "burnscharlesn@hotmail.com" , "TD790@aol.com" Cc: "questions@freebsd.org" Date: Sat, 26 Jan 2002 11:46:18 -0500 Reply-To: "Doug Reynolds" X-Mailer: PMMail 2000 Professional (2.20.2380) For Windows 98 (4.10.2222) In-Reply-To: <43.58ae011.29843121@aol.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: 64-bit PCI mobos Message-Id: <20020126164417.299B148449@wastegate.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 26 Jan 2002 11:19:45 EST, TD790@aol.com wrote: >In a message dated 1/25/02 9:09:47 PM Eastern Standard Time, >burnscharlesn@hotmail.com writes: > >> >Have you tried to run them with 180watt power supplies? Or in a humid >> >environment? The problems are well-known and have nothing to do with >> >"luck". >> >At least they admit it...they took back about 70 MBs from us without >boxes >> >or >> >accessories. >> >> Can you really blame a motherboard when the system is using such a minimal >> power supply? Extremely low wattage power supplies are often made with >lower >> >> quality parts as well, as what reason is there to get such a wimpy PS >other >> than price? >> If the Tyan boards malfunctioned in humid conditions whereas other boards >> worked well, that is certainly not forgivable (though none of the Tyan >> boards that I have used have had such problems). >> > >The 810/815 chipset specs should require less 150watts with a single IDE >drive, as ALL other MBs of similar design function well. Most 1U systems have >such "wimpy" power supplies (150 is common), so I guess your "world" is >different than mine. I have to remember what list this is after all :-) > >We already, in this thread, have 2 noted "flaws" in MBs from a single company >(not random occurances, but known and similar design problems), yet you'll >argue (with no technical understanding of the subject) that there are no >problems because you havent experienced them. Why? this is why I have an abit board with a 400 watt power supply. --- doug reynolds | the maverick | mav@wastegate.net PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 9: 7:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fedde.littleton.co.us (cfedde.dsl.frii.net [216.17.139.141]) by hub.freebsd.org (Postfix) with ESMTP id 2D98E37B417 for ; Sat, 26 Jan 2002 09:07:53 -0800 (PST) Received: from fedde.littleton.co.us (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.6/8.11.4) with ESMTP id g0QH7i868723; Sat, 26 Jan 2002 10:07:44 -0700 (MST) Message-Id: <200201261707.g0QH7i868723@fedde.littleton.co.us> To: Ryan Thompson Cc: alexus , freebsd-questions@FreeBSD.ORG Subject: Re: out of swap space In-Reply-To: <20020126102130.C59495-100000@catalyst.sasknow.net> From: Chris Fedde Date: Sat, 26 Jan 2002 10:07:44 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 26 Jan 2002 10:45:55 -0600 (CST) Ryan Thompson wrote: +------------------ | I'm currently building a router/firewall/proxy for a client, using | FreeBSD 3.5 on a 486DX/2-66 that they supplied with 3072K + 640K + | 256K = 3968K RAM, and a 180MB HDD. After getting the kernel ~1MB, | disabling almost everything on boot (ps -ax | wc = 9 :-), it is soon | to be serving an entire floor of office machines. So, what is it you | can't do with several orders of magnitude more memory than that? :-) +------------------ To get a really small configuration take a look at the picobsd stuff in /usr/src/release/picobsd. With 4.4-stable I was able to get a 1.2M floppy that booted a fully usable command line router that included telnetd, natd and tcpdump. -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 9:16: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from catalyst.sasknow.net (catalyst.sasknow.net [207.195.92.130]) by hub.freebsd.org (Postfix) with ESMTP id 3DF3037B402 for ; Sat, 26 Jan 2002 09:16:04 -0800 (PST) Received: from localhost (ryan@localhost) by catalyst.sasknow.net (8.11.6/8.11.6) with ESMTP id g0QHHKo64679; Sat, 26 Jan 2002 11:17:20 -0600 (CST) (envelope-from ryan@sasknow.com) X-Authentication-Warning: catalyst.sasknow.net: ryan owned process doing -bs Date: Sat, 26 Jan 2002 11:17:20 -0600 (CST) From: Ryan Thompson X-X-Sender: ryan@catalyst.sasknow.net To: Chris Fedde Cc: freebsd-questions@FreeBSD.ORG Subject: Small installation [was Re: out of swap space] In-Reply-To: <200201261707.g0QH7i868723@fedde.littleton.co.us> Message-ID: <20020126110937.D64614-100000@catalyst.sasknow.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Chris Fedde wrote to Ryan Thompson: > On Sat, 26 Jan 2002 10:45:55 -0600 (CST) Ryan Thompson wrote: > +------------------ > | I'm currently building a router/firewall/proxy for a client, using > | FreeBSD 3.5 on a 486DX/2-66 that they supplied with 3072K + 640K + > | 256K = 3968K RAM, and a 180MB HDD. After getting the kernel ~1MB, > | disabling almost everything on boot (ps -ax | wc = 9 :-), it is soon > | to be serving an entire floor of office machines. So, what is it you > | can't do with several orders of magnitude more memory than that? :-) > +------------------ > > To get a really small configuration take a look at the picobsd stuff > in /usr/src/release/picobsd. With 4.4-stable I was able to get a > 1.2M floppy that booted a fully usable command line router that > included telnetd, natd and tcpdump. Disk space isn't the issue. It's a roomy 180MB. RAM is the issue, and PicoBSD uses mfs to overcome the disk space issue (to fit on a floppy, etc), which would really be quite counterproductive in this case. - Ryan -- Ryan Thompson Network Administrator, Accounts SaskNow Technologies - http://www.sasknow.com #106-380 3120 8th St E - Saskatoon, SK - S7H 0W2 Tel: 306-664-3600 Fax: 306-664-1161 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 9:24:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web10008.mail.yahoo.com (web10008.mail.yahoo.com [216.136.130.44]) by hub.freebsd.org (Postfix) with SMTP id 012DD37B402 for ; Sat, 26 Jan 2002 09:24:24 -0800 (PST) Message-ID: <20020126172423.21124.qmail@web10008.mail.yahoo.com> Received: from [68.15.191.99] by web10008.mail.yahoo.com via HTTP; Sat, 26 Jan 2002 09:24:23 PST Date: Sat, 26 Jan 2002 09:24:23 -0800 (PST) From: Tom Kersten Subject: Re: really easy java question.... To: Jud , freebsd-questions@freebsd.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --- Jud wrote: > 1/26/2002 12:19:04 AM, Tom Kersten > > wrote: > > >Hello all, > > > >I have installed linux-jdk-1.3.1 from on FreeBSD > 4.4 > >from the ports. When I try to type "java" or > "javac" > >it doesn't find the commmand...I can type the > complete > >path (/usr/local/jdxxxx/bin/javac ...or ../java) > and > >it works. I have added /usr/local/linux-jdkxxx/bin > to > >my path in my .cshrc file but still no > luck...what's > >the deal??? > > If you want to use an installed port before > restarting (without entering > the entire path), as root type "rehash" (no quotes) > at the prompt and > enter/return. I have tried the rehash script and restarting...same results...no luck...any other ideas?? Thomas > > Jud > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 9:29:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web10004.mail.yahoo.com (web10004.mail.yahoo.com [216.136.130.40]) by hub.freebsd.org (Postfix) with SMTP id 77BCF37B402 for ; Sat, 26 Jan 2002 09:29:14 -0800 (PST) Message-ID: <20020126172914.84527.qmail@web10004.mail.yahoo.com> Received: from [68.15.191.99] by web10004.mail.yahoo.com via HTTP; Sat, 26 Jan 2002 09:29:14 PST Date: Sat, 26 Jan 2002 09:29:14 -0800 (PST) From: Tom Kersten Subject: Re: really easy java question.... To: Aleksander Rozman - Andy , freebsd-questions@freebsd.org In-Reply-To: <5.0.2.1.0.20020126122416.028e2000@213.161.0.10> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --- Aleksander Rozman - Andy wrote: > At 26.1.2002, you wrote: > >Hello all, > > > >I have installed linux-jdk-1.3.1 from on FreeBSD > 4.4 > >from the ports. When I try to type "java" or > "javac" > >it doesn't find the commmand...I can type the > complete > >path (/usr/local/jdxxxx/bin/javac ...or ../java) > and > >it works. I have added /usr/local/linux-jdkxxx/bin > to > >my path in my .cshrc file but still no > luck...what's > >the deal??? > > > > > >Thomas > > Easy question, easy answer. > 1. Install JDK from Linux (you must have Linux > support activated) > 2. Set path to Linux JDK > 3. Install > I think I have done all of this. As I said, I have installed linux-jdk1.3.1. It installed fine. Linux support is activated. I added the absolute path to my path variable in .cshrc and typed "rehash" and restarted. The commands "javac" and "java" still do not work unless I type the complete pathname (eg.-/usr/local/linux-jdk1.3.1/bin/javac) + filename ....then it works fine. But, I do not want to have to do that every time I compile a java program. Any idea what is going wrong? Thomas > If you have problems you will probably need to > compile everything by hand > (by reading instructions provided with patch file). > > Andy > > >__________________________________________________ > >Do You Yahoo!? > >Great stuff seeking new owners in Yahoo! Auctions! > >http://auctions.yahoo.com > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-questions" in the body of > the message > > ************************************************************************** > * Aleksander Rozman - Andy * Fandoms: E2:EA, > SAABer, Trekkie, Earthie * > * andy@kksonline.com * Sentinel, BH 90210, > True's Trooper, * > * andy@atechnet.dhs.org * Heller's Angel, > Questie, Legacy, PO5, * > * Maribor, Slovenia (Europe) * Profiler, Buffy > (Slayerete), Pretender * > * ICQ-UIC: 4911125 > ********************************************* > * PGP key available * > http://www.atechnet.dhs.org/~andy/ * > ************************************************************************** > __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 9:31:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id 5F5E637B402 for ; Sat, 26 Jan 2002 09:31:24 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id LAA06897; Sat, 26 Jan 2002 11:31:01 -0600 (CST) Message-Id: <3.0.5.32.20020126113059.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Sat, 26 Jan 2002 11:30:59 -0600 To: "Doug Reynolds" , "FBSD Questions" , "Joe & Fhe Barbish" From: jacks@sage-american.com Subject: Re: Apache_FP ? In-Reply-To: <20020126164837.99B5948449@wastegate.net> References: <3.0.5.32.20020126103726.01831ca0@mail.sage-american.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks, Doug. I think the confusion is that the original poster's question was unclear in that his "user" example is not the usual structure, i.e., "tom.index" "...Can Apache_FP have directory based web sites that would be accessed by a url of this type http://www.domain.com/dir_name or http://www.domain.com/tom.index where domain points to the apache server and (dir_name and tom.index)..." ...further top the "index" though, each subweb can have an index.html and be reached by: www.website.com/tom/ ...or: www.website.com/tom/tom.html ...and so on... But, Doug, I believe your clarification is correct about the user's home directory & FPage. At 11:50 AM 1.26.2002 -0500, Doug Reynolds wrote: >On Sat, 26 Jan 2002 10:37:26 -0600, jacks@sage-american.com wrote: > >>"....you can't, however, make www.website.com/~username/ accessable by >>frontpage. you have to ftp the files in...." >> >>This is not true. I make www.website.com/websitedir using FrontPage all the >>time (for 5 years) now. They are "subwebs" or "child webs". I have one main >>website with about 20 subwebs. Some are open and some require logins. >> >>After creating a "new web" off of the main domain, you ask FPage to "list >>webs" under www.website and it will show all its children or subwebs >>separately... all of which may have separate logins for admin, authoring or >>whatever. They may be "protected webs" that require a login to enter and >>browse or may be open to all. During creation (or even afterwards) in >>"tools/permissions" you can tell it to have "unique permissions" or have it >>the same as the root. > >that is what I said, even though I wasn't a 100% clear on >www.website.com/dir/ which is a sub web, and i said you can also point >different hostnames to it. like my www.rebel.tj points to the >wastegate.net/mav/ directory. > >however, you can't have the www.website.com/~username/ work under >frontpage. you can have www.website.com/username/, but you have to set >that up though the fpsvradm.exe, whereis the /~username/, all the user >has to do is upload there page to the web directory. > >--- >doug reynolds | the maverick | mav@wastegate.net > >PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB > > > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 9:36:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web10001.mail.yahoo.com (web10001.mail.yahoo.com [216.136.130.37]) by hub.freebsd.org (Postfix) with SMTP id 22F8C37B404 for ; Sat, 26 Jan 2002 09:36:41 -0800 (PST) Message-ID: <20020126173640.35294.qmail@web10001.mail.yahoo.com> Received: from [68.15.191.99] by web10001.mail.yahoo.com via HTTP; Sat, 26 Jan 2002 09:36:40 PST Date: Sat, 26 Jan 2002 09:36:40 -0800 (PST) From: Tom Kersten Subject: Re: really easy java question.... To: "F.Xavier Noria" , freebsd-questions@freebsd.org In-Reply-To: <20020126100411.0522c546.fxn@retemail.es> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --- "F.Xavier Noria" wrote: > On Fri, 25 Jan 2002 21:19:04 -0800 (PST) > Tom Kersten wrote: > > : I have installed linux-jdk-1.3.1 from on FreeBSD > 4.4 > : from the ports. When I try to type "java" or > "javac" > : it doesn't find the commmand...I can type the > complete > : path (/usr/local/jdxxxx/bin/javac ...or ../java) > and > : it works. I have added /usr/local/linux-jdkxxx/bin > to > : my path in my .cshrc file but still no > luck...what's > : the deal??? > > Perhaps it has to do with shell's own hash? Once > echo $PATH confirms > that the directory is actually in $PATH, does csh > find the executables > after running rehash(1)? Yes, running "rehash" usually seems to work for me...at least with running other programs after an installation. Here is the echo command you mentioned: thomas# echo $PATH /sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/local/linux-jdk1.3.1/bin/:/usr/X11R6/bin:/home/thomas/bin as you can see...it is showing up..and the commands "java" and "javac" are pointing to .java_wrapper in the /usr/local/linux-jdk1.3.1/bin/ directory. All three (java, javac, java_wrapper) are executable by everyone also. I am not sure what is going on...any ideas? Thomas > > -- fxn > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 9:45: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.27in.tv (roc-66-24-112-7.rochester.rr.com [66.24.112.7]) by hub.freebsd.org (Postfix) with ESMTP id 098A437B400 for ; Sat, 26 Jan 2002 09:44:59 -0800 (PST) Received: (from root@localhost) by mail.27in.tv (8.11.6/8.11.6) id g0QHiuB24789; Sat, 26 Jan 2002 12:44:56 -0500 (EST) (envelope-from cjm2@earthling.net) Received: from maxpower (maxpower.lan.27in.tv [10.0.0.250]) by mail.27in.tv (8.11.6/8.11.6av) with SMTP id g0QHisU24775; Sat, 26 Jan 2002 12:44:54 -0500 (EST) (envelope-from cjm2@earthling.net) From: "C J Michaels" To: "alexus" Cc: Subject: RE: out of swap space Date: Sat, 26 Jan 2002 12:45:19 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal In-Reply-To: <200201261642.g0QGgT868534@fedde.littleton.co.us> X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG For a production machine where you have to schedule down time I would suggest going 1/2 way. Thankfully now, the vn(4) device is available as a kld, so you don't have to re-compile the kernel. Create a file on one of your faster drives, configure it as swap space with vnconfig(8), and then use it with swapon(8). And, the best part is, there's already a how-to on this at the FreeBSD Diary: http://www.freebsddiary.org/swap.php But, again, for a production machine, I would _STRONGLY_ recommend that at the first opportunity you have to take it down and arrange for more raw swap space. --Chris > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Chris Fedde > Sent: Saturday, January 26, 2002 11:42 AM > To: alexus > Cc: freebsd-questions@FreeBSD.ORG > Subject: out of swap space > > > On Sat, 26 Jan 2002 09:01:08 -0500 "alexus" wrote: > +------------------ > | hi > | > | is there a way to increase size of swap space? > | > | i have 512mb of ram and 512mb of swap space > | > | i had 256mb of ram before so i created 512mb of swap space > | now i put another 256mb in and i'm still running out of space > | > | so i was asking if there is a way to increase size of swap space? > +------------------ > > You want to spread your swap over all the drives in the box. So > allocate one > or more partitions on each drive. The rule of thumb that swap should be > twice the size of ram. But on a busy server you want enough ram to avoid > swapping at all. > > It is posible to configure swap in a file by using a combination of > vnconfig and swapon but swap configured this way is much slower than raw > partition swap. > > Good Luck > > -- > Chris Fedde > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 10: 2:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web10003.mail.yahoo.com (web10003.mail.yahoo.com [216.136.130.39]) by hub.freebsd.org (Postfix) with SMTP id A44CD37B400 for ; Sat, 26 Jan 2002 10:02:10 -0800 (PST) Message-ID: <20020126180210.73613.qmail@web10003.mail.yahoo.com> Received: from [68.15.191.99] by web10003.mail.yahoo.com via HTTP; Sat, 26 Jan 2002 10:02:10 PST Date: Sat, 26 Jan 2002 10:02:10 -0800 (PST) From: Tom Kersten Subject: FIXED: really easy java question To: freebsd-questions@freebsd.org In-Reply-To: <20020126100411.0522c546.fxn@retemail.es> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG To Everyone who helped, Thanks...I have no idea why it is working now, but, it is. Thank you for your patience and tips along the way. Obviously it was a mistake on my part because I did not have to change any config. files. When I relogged in this morning everything worked fine. I had restarted last night...??? Hmm...I don't know, I must have done something stupid like not edited my PATH variable until after I restarted...that's is all I can come up with. I do have one quick question though...I was under the impression that if I edited my path variable and typed "rehash" it would re-initiate that variable. Because that didnt' seem to happen, I am assuming that the "rehash" command just re-initializes all files in the PATH variable that was defined at the last login. Is this correct?? Is there a way to re-intialize your PATH variable without having to re-login? Thanks again for your patience, Thomas --- "F.Xavier Noria" wrote: > On Fri, 25 Jan 2002 21:19:04 -0800 (PST) > Tom Kersten wrote: > > : I have installed linux-jdk-1.3.1 from on FreeBSD > 4.4 > : from the ports. When I try to type "java" or > "javac" > : it doesn't find the commmand...I can type the > complete > : path (/usr/local/jdxxxx/bin/javac ...or ../java) > and > : it works. I have added /usr/local/linux-jdkxxx/bin > to > : my path in my .cshrc file but still no > luck...what's > : the deal??? > > Perhaps it has to do with shell's own hash? Once > echo $PATH confirms > that the directory is actually in $PATH, does csh > find the executables > after running rehash(1)? > > -- fxn > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 10: 5:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mirapoint2.brutele.be (mirapoint2.brutele.be [212.68.193.7]) by hub.freebsd.org (Postfix) with ESMTP id C234B37B417 for ; Sat, 26 Jan 2002 10:05:41 -0800 (PST) Received: from gateway.lefort.net ([213.189.162.112]) by mirapoint2.brutele.be (Mirapoint) with SMTP id ASD63494; Sat, 26 Jan 2002 19:05:38 +0100 (CET) Received: from jsite.lefort.net (jsite.lefort.net [192.168.1.2]) by gateway.lefort.net (Postfix) with ESMTP id 01A203A7F5 for ; Sat, 26 Jan 2002 19:05:31 +0100 (CET) Received: by jsite.lefort.net (Postfix, from userid 1000) id A48F122EEC; Sat, 26 Jan 2002 19:05:31 +0100 (CET) Date: Sat, 26 Jan 2002 19:05:31 +0100 From: Jean-Yves Lefort To: freebsd-questions@FreeBSD.org Subject: weighted fair queueing with dummynet Message-ID: <20020126190531.A57585@jsite.lefort.net> Mail-Followup-To: freebsd-questions@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, How to implement weighted fair queuing using the weight option of a dummynet queue (hosts A, B and C connected to router: I want to always give the routing priority to host A, when multiple hosts are competing for bandwidth) ? Best regards, Jean-Yves Lefort To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 10:27:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f113.law11.hotmail.com [64.4.17.113]) by hub.freebsd.org (Postfix) with ESMTP id 1D17A37B402 for ; Sat, 26 Jan 2002 10:27:45 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 26 Jan 2002 10:27:44 -0800 Received: from 68.6.89.248 by lw11fd.law11.hotmail.msn.com with HTTP; Sat, 26 Jan 2002 18:27:44 GMT X-Originating-IP: [68.6.89.248] From: "Charles Burns" To: TD790@aol.com Cc: questions@freebsd.org Subject: Re: 64-bit PCI mobos Date: Sat, 26 Jan 2002 11:27:44 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 26 Jan 2002 18:27:44.0974 (UTC) FILETIME=[25EE6EE0:01C1A697] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > >Have you tried to run them with 180watt power supplies? Or in a humid > > >environment? The problems are well-known and have nothing to do with > > >"luck". > > >At least they admit it...they took back about 70 MBs from us without >boxes > > >or > > >accessories. > > > > Can you really blame a motherboard when the system is using such a >minimal > > power supply? Extremely low wattage power supplies are often made with >lower > > > > quality parts as well, as what reason is there to get such a wimpy PS >other > > than price? > > If the Tyan boards malfunctioned in humid conditions whereas other >boards > > worked well, that is certainly not forgivable (though none of the Tyan > > boards that I have used have had such problems). > > > >The 810/815 chipset specs should require less 150watts with a single IDE >drive, as ALL other MBs of similar design function well. Most 1U systems >have >such "wimpy" power supplies (150 is common), so I guess your "world" is >different than mine. I have to remember what list this is after all :-) Not feeling very amicable today? Err, wouldn't the overall power req be more dependant on the CPU grade & transistor size, power usage of >We already, in this thread, have 2 noted "flaws" in MBs from a single >company >(not random occurances, but known and similar design problems), yet you'll >argue (with no technical understanding of the subject) that there are no >problems because you havent experienced them. Why? You might want to read the post before criticizing it. Note that I simply pointed out nonchalantly that I had personally had no such problems, and did not use that as a case against the flaws that may be present in certain Tyan boards. You might also notice that even without that comment I made no case against the two flaws, rather I stated that 150W PSs were a bit on the minimal side and that if the Tyan boards do malfunction in humid conditions that such a flaw would certainly be substantial. In general, it is not good netiquette to be condescending without provocation, but I did not the '@aol.com' attached to the email address, so I will not take it personally. Anyway, you might also notice that there was nothing mentioned about the systems being in 1U chassis. Most *U chassis are generally servers anyway and I rarely see a PS of less than 200-240W even in 1U...note that I did not say that it there are no such 1U power supplies..., and the fact that *U chassis are generally servers (as most desktop systems are not rack-mounted). It is uncommon to see an i810 or i815 system being used as a servers because the chipsets are definitely not designed as such, the i810 being a low end consumer-grade chipset and the i815 not even being able to use more than 2 PC133 modules without going outside the specs. (It also has some problems using USB mice in certain situations). Anyway, not that all that is out of the way... Some Tyan boards might have the problems mentioned, and Tyan is generally not my first choice, but name one company that consistantly turns out flawless boards. Not Supermicro, not Asus, not Tyan, not Intel. No manufacturer of motherboards (at least, not PC motherboards) that I know of has such a track record. One note about the Tyan board's instability with tiny power supplies: A certain rating of power supply (say, 150W) does not mean that the PS can actually output 150W. It can /theoretically/ output 150W. One measure of a good power supply is how close the actual stable output is compared to the rated output. Some 250W power supplies can supply more actual power than many cheap 400W power supplies. For an example of thise, take a look at Anandtech's power supply review from Jan 17th of 2000. While the specs for a system with X components may require a 150W PS, those specs might be assuming a power supply that is well made. Of course, if the Tyan boards didn't work well while other boards did, clearly it is the Tyan board (if that is the only component that changed), but a larger power supply would likely have solved the problem and been much easier to switch out than a motherboard. Note also that instability of those particular boards cannot be assumed to exist for all Tyan boards (if in fact, that is what you were doing--I am not sure) as any problem consistant across an entire brand of boards would certainly be large news in the hardware community, especially from a server board manufacturer that used to build boards for Sun servers. Sorry for the long-winded post, just wanted to cover all the bases. Additionally, if my original post offended you in some way, that was not the intent. Charles Burns _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 10:36:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from db.nexgen.com (db.nexgen.com [66.92.98.149]) by hub.freebsd.org (Postfix) with SMTP id C427837B404 for ; Sat, 26 Jan 2002 10:36:37 -0800 (PST) Received: (qmail 16072 invoked from network); 26 Jan 2002 18:36:26 -0000 Received: from localhost.nexgen.com (HELO noc) (root@127.0.0.1) by localhost.nexgen.com with SMTP; 26 Jan 2002 18:36:26 -0000 Message-ID: <006301c1a698$52ea2140$faa0b542@noc> From: "alexus" To: Subject: FTP only account without user on the shell Date: Sat, 26 Jan 2002 13:36:08 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG is it possible to have ftp only account without adding user on shell? some sort of virtual ftp account? just like for mail? thanks in advance To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 10:38: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f256.law11.hotmail.com [64.4.16.131]) by hub.freebsd.org (Postfix) with ESMTP id 06D4037B402 for ; Sat, 26 Jan 2002 10:37:57 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 26 Jan 2002 10:37:56 -0800 Received: from 68.6.89.248 by lw11fd.law11.hotmail.msn.com with HTTP; Sat, 26 Jan 2002 18:37:56 GMT X-Originating-IP: [68.6.89.248] From: "Charles Burns" To: questions@freebsd.org Subject: Re: Silly question. How to install ports. Date: Sat, 26 Jan 2002 11:37:56 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 26 Jan 2002 18:37:56.0760 (UTC) FILETIME=[92959180:01C1A698] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >I am having trouble installing ports. I am trying to update apache >to 1.3.22. I downloaded the tarball and did a pkg_add >apacheblabla.tar. it made a new group called www and quit. > >Is this how one usually installs ports? How do you install a port in >the ports directory or if its not in a tarball? I know this info is >online somewhere but I cannot seem to find it right now. pkg_add is different from ports, but still works well. I prefer ports because FreeBSD will compile the app using custom compiler options set in make.conf. To install a port: Go to the directory of the port, like /usr/ports/www/apache and type "make install clean" You can find a port by visiting /usr/ports and typing "make search key=blah" where blah is your keyword. This is all covered in detail in the handbook which you can find at http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html Charles Burns _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 10:47:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id 699A937B404 for ; Sat, 26 Jan 2002 10:47:32 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id MAA09751; Sat, 26 Jan 2002 12:47:26 -0600 (CST) Message-Id: <3.0.5.32.20020126124723.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Sat, 26 Jan 2002 12:47:23 -0600 To: "Charles Burns" , questions@FreeBSD.ORG From: jacks@sage-american.com Subject: Re: Silly question. How to install ports. In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This doesn't *seem* to always work to get the expected version of a program though. One example is Samba. While the port info file indicated that a new version of Samba would be installed, it went to fetch from a number of sources, but was not found for one reason or another until it came to one aource and found a copy in "old_versions".... while the Samba version works okay, it is NOT the current one.... this happened twice. I prefer using ports but don't understand how to make it get the latest version under such circumstances. At 11:37 AM 1.26.2002 -0700, Charles Burns wrote: > >>I am having trouble installing ports. I am trying to update apache >>to 1.3.22. I downloaded the tarball and did a pkg_add >>apacheblabla.tar. it made a new group called www and quit. >> >>Is this how one usually installs ports? How do you install a port in >>the ports directory or if its not in a tarball? I know this info is >>online somewhere but I cannot seem to find it right now. > >pkg_add is different from ports, but still works well. I prefer ports >because FreeBSD will compile the app using custom compiler options set in >make.conf. To install a port: >Go to the directory of the port, like /usr/ports/www/apache and type "make >install clean" >You can find a port by visiting /usr/ports and typing "make search key=blah" >where blah is your keyword. >This is all covered in detail in the handbook which you can find at >http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html > >Charles Burns > > >_________________________________________________________________ >Send and receive Hotmail on your mobile device: http://mobile.msn.com > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 10:48:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from maild.telia.com (maild.telia.com [194.22.190.101]) by hub.freebsd.org (Postfix) with ESMTP id 466BB37B402 for ; Sat, 26 Jan 2002 10:48:12 -0800 (PST) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by maild.telia.com (8.11.6/8.11.6) with ESMTP id g0QImA515794 for ; Sat, 26 Jan 2002 19:48:10 +0100 (CET) Received: from falcon.midgard.homeip.net (h185n2fls20o913.telia.com [212.181.163.185]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id TAA26572 for ; Sat, 26 Jan 2002 19:48:07 +0100 (CET) Received: (qmail 74370 invoked by uid 1001); 26 Jan 2002 18:48:06 -0000 Date: Sat, 26 Jan 2002 19:48:05 +0100 From: Erik Trulsson To: Doug Reynolds Cc: "freebsd-questions@FreeBSD.ORG" , "Patrick Fish (patrick@pwhsnet.com)" Subject: Re: 4.4-RELEASE to 4.4-STABLE Message-ID: <20020126184805.GA74355@student.uu.se> Mail-Followup-To: Doug Reynolds , "freebsd-questions@FreeBSD.ORG" , "Patrick Fish (patrick@pwhsnet.com)" References: <20020126074219.GA43298@student.uu.se> <20020126163139.678734844F@wastegate.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020126163139.678734844F@wastegate.net> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 11:33:40AM -0500, Doug Reynolds wrote: > On Sat, 26 Jan 2002 08:42:20 +0100, Erik Trulsson wrote: > > >On Sat, Jan 26, 2002 at 02:29:51AM -0500, Doug Reynolds wrote: > >> > >> cvsup > >> > >> make buildworld > >> make kernel KERNCONF=yourkernelconf > >> reboot > >> boot single user mode by hitting the space and typing boot -s and > >> enter. hit enter when it asks you for the shell; then: > >> fsck -p > >> umount -a > >This umount seems quite unnecessary since if you just rebooted into > >single-user mode the only thing mounted will be / which is mounted > >read-only. OTOH one thing you probably do want here instead is > >swapon -a > >to make sure that any swapspace you have can be used. > >(I once forgot that on a memory-poor machine. The installworld died > > halfway through with an out-of-memory error.) > > I thought / was readonly until you fsck'd and remountd it. swapon -a > would be good, although my machine has 256megs Yes, / is readonly until you mount it readwrite. But there is no need to *un*mount anything there. The only thing which is mounted is / and you don't want to umount it. (If you do it (and I am not sure if you actually can do it) you won't be able to remount it since the mount command won't be accessible.) > > >> mount -a > >> > >> make installworld > >> mergemaster > >> reboot > >> > >> that'll up you to the latest. > >> > >> (btw, if anyone sees any safely problems with this order, lemme know, > >> seems totally redundant) > > > >Redundant? No. You can usually skip the 'reboot into single-user mode' > >part without any ill-effects but that is about it. > > however, if you just shutdown now, you wont be able to test the kernel > before you install the userland. and everyone claims it is hard to go > back to the old userland after you commit it. That is quite correct. That is why I said that you usually can skip the reboot. (usually != always) It is fairly rare that there are any problems with the new kernel. > > on my system, since it isn't production or anything, i'd probably just > do it all in multi-user mode just to see if i could break it. :) > --- > doug reynolds | the maverick | mav@wastegate.net > > PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB > > -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 10:54:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.libero.it (smtp1.libero.it [193.70.192.51]) by hub.freebsd.org (Postfix) with ESMTP id 6FDE137B400 for ; Sat, 26 Jan 2002 10:54:49 -0800 (PST) Received: from rbellomolibero (151.25.84.162) by smtp1.libero.it (6.0.032) id 3BF1798A01DF486D for FreeBSD-questions@FreeBSD.org; Sat, 26 Jan 2002 19:54:47 +0100 Message-ID: <001301c1a69a$ed06ba20$a2541997@it> From: "Roberto Bellomo" To: Subject: Double click rate Date: Sat, 26 Jan 2002 19:44:44 +0100 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0004_01C1A6A1.E729B420" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0004_01C1A6A1.E729B420 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I can't seem to find a way to change the click interval between the clicks when one double clicks on a choice in XFree applications with motif. It is a bit fast,and has been that way for a while, and I would like to slow it down. If anyone could help me out I'd appreciate it. Pasha. ------=_NextPart_000_0004_01C1A6A1.E729B420 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I can't seem to find a way to change = the click=20 interval between
the clicks when one double clicks on a choice in = XFree=20 applications
with motif.
It is a bit fast,and has been that way = for a=20 while,
and I would like to slow it = down.
 
If anyone could help me out I'd = appreciate=20 it.
Pasha.
------=_NextPart_000_0004_01C1A6A1.E729B420-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 11:22:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail12.speakeasy.net (mail12.speakeasy.net [216.254.0.212]) by hub.freebsd.org (Postfix) with ESMTP id 17C3C37B400 for ; Sat, 26 Jan 2002 11:22:15 -0800 (PST) Received: (qmail 3302 invoked from network); 26 Jan 2002 19:22:12 -0000 Received: from unknown (HELO elite.fshcrkr.com) ([216.126.188.185]) (envelope-sender ) by mail12.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 26 Jan 2002 19:22:12 -0000 Received: by elite.fshcrkr.com (sSMTP sendmail emulation); Sat, 26 Jan 2002 11:21:27 -0800 Date: Sat, 26 Jan 2002 11:21:27 -0800 From: scott To: Tom Kersten , questions@freebsd.org Subject: Re: FIXED: really easy java question Message-ID: <20020126112127.A3300@fishcracker.com> References: <20020126100411.0522c546.fxn@retemail.es> <20020126180210.73613.qmail@web10003.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020126180210.73613.qmail@web10003.mail.yahoo.com>; from tomkersten98@yahoo.com on Sat, Jan 26, 2002 at 10:02:10AM -0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG to get your shell to re-initialize your path you have to do "source ~/.tcshrc", or whatever your shell config is. -scott barnes On Sat, Jan 26, 2002 at 10:02:10AM -0800, Tom Kersten wrote: > To Everyone who helped, > > Thanks...I have no idea why it is working now, but, it > is. Thank you for your patience and tips along the > way. Obviously it was a mistake on my part because I > did not have to change any config. files. When I > relogged in this morning everything worked fine. I had > restarted last night...??? Hmm...I don't know, I must > have done something stupid like not edited my PATH > variable until after I restarted...that's is all I can > come up with. I do have one quick question though...I > was under the impression that if I edited my path > variable and typed "rehash" it would re-initiate that > variable. Because that didnt' seem to happen, I am > assuming that the "rehash" command just re-initializes > all files in the PATH variable that was defined at the > last login. Is this correct?? Is there a way to > re-intialize your PATH variable without having to > re-login? > > > Thanks again for your patience, > > > Thomas > > > > --- "F.Xavier Noria" wrote: > > On Fri, 25 Jan 2002 21:19:04 -0800 (PST) > > Tom Kersten wrote: > > > > : I have installed linux-jdk-1.3.1 from on FreeBSD > > 4.4 > > : from the ports. When I try to type "java" or > > "javac" > > : it doesn't find the commmand...I can type the > > complete > > : path (/usr/local/jdxxxx/bin/javac ...or ../java) > > and > > : it works. I have added /usr/local/linux-jdkxxx/bin > > to > > : my path in my .cshrc file but still no > > luck...what's > > : the deal??? > > > > Perhaps it has to do with shell's own hash? Once > > echo $PATH confirms > > that the directory is actually in $PATH, does csh > > find the executables > > after running rehash(1)? > > > > -- fxn > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of > > the message > > > __________________________________________________ > Do You Yahoo!? > Great stuff seeking new owners in Yahoo! Auctions! > http://auctions.yahoo.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- aim: geekstock efnet irc: stock email: stock@stawk.com stock@fishcracker.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 11:41:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r04.mx.aol.com (imo-r04.mx.aol.com [152.163.225.100]) by hub.freebsd.org (Postfix) with ESMTP id 688B137B42C for ; Sat, 26 Jan 2002 11:40:53 -0800 (PST) Received: from TD790@aol.com by imo-r04.mx.aol.com (mail_out_v31_r1.26.) id i.30.21367d4f (3976); Sat, 26 Jan 2002 14:40:41 -0500 (EST) From: TD790@aol.com Message-ID: <30.21367d4f.29846039@aol.com> Date: Sat, 26 Jan 2002 14:40:41 EST Subject: Re: 64-bit PCI mobos To: burnscharlesn@hotmail.com Cc: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: AOL 5.0 for Windows sub 139 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In a message dated 01/26/2002 1:28:29 PM Eastern Standard Time, burnscharlesn@hotmail.com writes: > We already, in this thread, have 2 noted "flaws" in MBs from a single > >company > >(not random occurances, but known and similar design problems), yet you'll > >argue (with no technical understanding of the subject) that there are no > >problems because you havent experienced them. Why? > > You might want to read the post before criticizing it. Note that I simply > pointed out nonchalantly that I had personally had no such problems, and did > > not use that as a case against the flaws that may be present in certain Tyan > > boards. You might also notice that even without that comment I made no case > against the two flaws, rather I stated that 150W PSs were a bit on the > minimal side and that if the Tyan boards do malfunction in humid conditions > that such a flaw would certainly be substantial. > In general, it is not good netiquette to be condescending without > provocation, but I did not the '@aol.com' attached to the email address, so > I will not take it personally. > Anyway, you might also notice that there was nothing mentioned about the > systems being in 1U chassis. Most *U chassis are generally servers anyway > and I rarely see a PS of less than 200-240W even in 1U...note that I did not > > say that it there are no such 1U power supplies..., and the fact that *U > chassis are generally servers (as most desktop systems are not > rack-mounted). It is uncommon to see an i810 or i815 system being used as a > servers because the chipsets are definitely not designed as such, the i810 > being a low end consumer-grade chipset and the i815 not even being able to > use more than 2 PC133 modules without going outside the specs. (It also has > some problems using USB mice in certain situations). > Who said anything about servers? apologies if they are warranted, but your implication that it might be acceptable for a MB to spontaneosly reboot with a 180W P/S that is spec'd at less than 150 was so ridiculous that It needed to be quashed. Anyway, eat the poison berries if you'd like. Those that care have the info they need. DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 11:53:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id 0468937B400 for ; Sat, 26 Jan 2002 11:53:57 -0800 (PST) Received: (qmail 46554 invoked by uid 100); 26 Jan 2002 19:53:55 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15443.2386.304645.778882@guru.mired.org> Date: Sat, 26 Jan 2002 13:53:54 -0600 To: "alexus" Cc: questions@freebsd.org Subject: Re: out of swap space In-Reply-To: <8372594@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alexus types: > hi > > is there a way to increase size of swap space? > > i have 512mb of ram and 512mb of swap space > > i had 256mb of ram before so i created 512mb of swap space > now i put another 256mb in and i'm still running out of space You should have been running out of swap before adding the ram. > so i was asking if there is a way to increase size of swap space? > > this is live server and i can't afford for it to be down, so place no > suggestions like partion magic.. this is so windowish:) > unless thats the only one solution then i might consider.. > > and yes i'm going to put more physical memory, but i still would like to > know if there is a way to increase swap size > > thank you in advance See the vnconfig man page for details on doing this. Since vn is available as a loadable module, you should be able to do this without even needing to reboot (though securelevel may prevent that). http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 11:55:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id EBB6137B402 for ; Sat, 26 Jan 2002 11:55:46 -0800 (PST) Received: (qmail 54127 invoked by uid 100); 26 Jan 2002 19:55:45 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15443.2496.918511.507772@guru.mired.org> Date: Sat, 26 Jan 2002 13:55:44 -0600 To: Christian Sauer Cc: questions@freebsd.org Subject: Re: question about /etc/periodic.conf In-Reply-To: <113003757@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Christian Sauer types: > Hello all, > > I recently wrote a shell script that does a cvsup for my ports tree, and > I put the script in the /etc/periodic/weekly folder. I decided to > follow suit with the other periodic scripts and added to the top of mine: > > if [ -r /etc/defaults/periodic.conf ] > then > . /etc/defaults/periodic.conf > source_periodic_confs > fi > > so I could control my script through the conf files. Instead of editing > any of the confs in /etc/defaults/, I created /etc/periodic.conf which > /etc/defaults/periodic.conf lists as a local override file. I only put > the options for my script in /etc/periodic.conf and left everything else > to run on the defaults. > > problem is, now when the periodic jobs kick off, I keep getting "YES: > not found" listed in the log files that are mailed to me. Your /etc/periodic.conf file is broken, and trying to run the YES command. Without seeing the file, I can't say more. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 12: 4: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id 5884037B400 for ; Sat, 26 Jan 2002 12:04:04 -0800 (PST) Received: (qmail 85593 invoked by uid 100); 26 Jan 2002 20:04:03 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15443.2994.224928.912973@guru.mired.org> Date: Sat, 26 Jan 2002 14:04:02 -0600 To: questions@freebsd.org Subject: Re: shells confusion In-Reply-To: <55357420@toto.iv> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.44 (Python 2.2; freebsd-4.4-STABLE-i386) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG For those interested in *why* scripting in csh is a bad idea, I recommend . Please don't bother saying "this is fixed in FOOBARcsh". I believe you, but that doesn't help with the basic problem. Now, where did I leave that zsh manual??? http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 12: 7:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 218BD37B400 for ; Sat, 26 Jan 2002 12:07:40 -0800 (PST) Received: from gateway ([63.70.155.54]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com; Sat, 26 Jan 2002 15:10:59 -0500 From: "Joe & Fhe Barbish" To: Cc: "Doug Reynolds" , "FBSD Questions" Subject: RE: Apache_FP ? Date: Sat, 26 Jan 2002 15:07:33 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <3.0.5.32.20020126113059.01831ca0@mail.sage-american.com> X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ok, so yes Is the answer to my original question. But reading this thread you talk about /~username and /username as if they are two different things. Please explain the difference. Could you post a example of the declaratives in hhtpd.conf that would create what we are talking about? Will web site content created by mswindows FrontPage 2000, that was ftp loaded into a apache subdirectory work, or does the fp_mod provide more that just the function of downloading from within the mswindows fp client application? Thanks Joe Barbish -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of jacks@sage-american.com Sent: Saturday, January 26, 2002 12:31 PM To: Doug Reynolds; FBSD Questions; Joe & Fhe Barbish Subject: Re: Apache_FP ? Thanks, Doug. I think the confusion is that the original poster's question was unclear in that his "user" example is not the usual structure, i.e., "tom.index" "...Can Apache_FP have directory based web sites that would be accessed by a url of this type http://www.domain.com/dir_name or http://www.domain.com/tom.index where domain points to the apache server and (dir_name and tom.index)..." ...further top the "index" though, each subweb can have an index.html and be reached by: www.website.com/tom/ ...or: www.website.com/tom/tom.html ...and so on... But, Doug, I believe your clarification is correct about the user's home directory & FPage. At 11:50 AM 1.26.2002 -0500, Doug Reynolds wrote: >On Sat, 26 Jan 2002 10:37:26 -0600, jacks@sage-american.com wrote: > >>"....you can't, however, make www.website.com/~username/ accessable by >>frontpage. you have to ftp the files in...." >> >>This is not true. I make www.website.com/websitedir using FrontPage all the >>time (for 5 years) now. They are "subwebs" or "child webs". I have one main >>website with about 20 subwebs. Some are open and some require logins. >> >>After creating a "new web" off of the main domain, you ask FPage to "list >>webs" under www.website and it will show all its children or subwebs >>separately... all of which may have separate logins for admin, authoring or >>whatever. They may be "protected webs" that require a login to enter and >>browse or may be open to all. During creation (or even afterwards) in >>"tools/permissions" you can tell it to have "unique permissions" or have it >>the same as the root. > >that is what I said, even though I wasn't a 100% clear on >www.website.com/dir/ which is a sub web, and i said you can also point >different hostnames to it. like my www.rebel.tj points to the >wastegate.net/mav/ directory. > >however, you can't have the www.website.com/~username/ work under >frontpage. you can have www.website.com/username/, but you have to set >that up though the fpsvradm.exe, whereis the /~username/, all the user >has to do is upload there page to the web directory. > >--- >doug reynolds | the maverick | mav@wastegate.net > >PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB > > > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 12:12: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.cz (diana.mobil.cz [195.39.16.12]) by hub.freebsd.org (Postfix) with ESMTP id 4A91237B402 for ; Sat, 26 Jan 2002 12:11:52 -0800 (PST) Received: from ester.mobil.cz (ester.mobil.cz [194.213.62.23]) by mobil.cz (8.11.6/8.11.0) with ESMTP id g0QKBhe29583 for ; Sat, 26 Jan 2002 21:11:43 +0100 Received: from roman.mobil.cz ([10.2.0.89]) by ester.mobil.cz (Lotus Domino Release 5.0.7) with ESMTP id 2002012621090947:120 ; Sat, 26 Jan 2002 21:09:09 +0100 Received: (from roman@localhost) by roman.mobil.cz (8.11.6/8.11.6) id g0QKMYh33399 for questions@freebsd.org; Sat, 26 Jan 2002 21:22:34 +0100 (CET) (envelope-from neuhauser@mobil.cz) X-Authentication-Warning: roman.mobil.cz: roman set sender to neuhauser@mobil.cz using -f Date: Sat, 26 Jan 2002 21:22:34 +0100 From: Roman Neuhauser To: questions@freebsd.org Subject: Re: shells confusion Message-ID: <20020126212234.F32706@roman.mobil.cz> Mail-Followup-To: questions@freebsd.org References: <55357420@toto.iv> <15443.2994.224928.912973@guru.mired.org> Mime-Version: 1.0 In-Reply-To: <15443.2994.224928.912973@guru.mired.org> User-Agent: Mutt/1.3.23i X-MIMETrack: Itemize by SMTP Server on ester/Mobil(Release 5.0.7 |March 21, 2001) at 01/26/2002 09:09:09 PM, Serialize by Router on ester/Mobil(Release 5.0.7 |March 21, 2001) at 01/26/2002 09:09:15 PM, Serialize complete at 01/26/2002 09:09:15 PM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Sat, 26 Jan 2002 14:04:02 -0600 > To: questions@freebsd.org > Subject: Re: shells confusion > From: "Mike Meyer" > > For those interested in *why* scripting in csh is a bad idea, I > recommend . > > Please don't bother saying "this is fixed in FOOBARcsh". I believe > you, but that doesn't help with the basic problem. > > Now, where did I leave that zsh manual??? I use zsh too. You can finetune it to the exact combination of tcsh- and bash-like behavior you like. Oh, and the manual is in /usr/local/share/doc/zsh. :) -- FreeBSD 4.4-STABLE 9:21PM up 6 days, 3:44, 11 users, load averages: 0.03, 0.03, 0.00 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 12:12:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.carolina.rr.com (fe7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id 4008337B402 for ; Sat, 26 Jan 2002 12:12:29 -0800 (PST) Received: from snafu.enterit.com ([66.57.159.198]) by mail7.carolina.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Sat, 26 Jan 2002 15:11:52 -0500 Message-Id: <5.1.0.14.0.20020126153501.04980750@mail.enterit.com> X-Sender: jconner@enterit.com@mail.enterit.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sat, 26 Jan 2002 15:36:04 -0500 To: "Mike Meyer" From: Jim Conner Subject: Re: shells confusion Cc: Bernie , questions@freebsd.org In-Reply-To: <15442.17229.937600.658651@guru.mired.org> References: <947431@toto.iv> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Below... At 23:49 01.25.2002 -0600, Mike Meyer wrote: >Bernie types: > > i'm planning to learn shell programming but i'm not sure > > on which one to choose... > > > > i've been reading in the 'FreeBSD unleashed' that people > > wanting to do shell programming should stay away from > > c-shell as it's realy good for interactive, but very bad > > for scripts. is this true? > >Yes. However, some of the more serious problems have been fixed in the >variants. > > > also, looking into the scripts in /etc, i see a line on the > > top saying 'bin/sh'. so are they all written in 'sh' and > > not csh ? if so, why freebsd comes with csh as default? > >Because csh is better for interactive use than sh. > > > also, why single user mode proposes /bin/sh as default? > > is there any particular reason for it? > >Probably because no one has bothered to change it. > > > i'm a bit confused on which shell to pick from programming. > > also i've been thinking of perl, but for the moment i think > > i've got to learn at least how to do basic shell programming, > > not only to write programs, but also to understand scrips that > > come with the system. > >I'd agree with that, as Perl scripts often invoke commands, and one of >the design goals was to make it easy for shell programmers to >learn. It's not clear the latter is a *good* thing, but that's a >different thread. > > > but the question is 'which shell' ... > >Unix shells fall into three different classes: sh and variants, csh >and variants, and "other". As Charles pointed out, bash is by far the >most popular shell for interactive use. It picks up most of the nice >interactive features of csh, along with features from variants of csh >and sh. However, not all systems come with bash, though they all come >with an sh variant. An sh script should work fine in bash, but not >necessarily the reverse, because of the extra features. > >Which leads to the conclusion: learn sh for scripting. It will be >applicable on all Unix systems, and everything you learn will be >applicable in bash, though there may be quicker or easier ways to do >certain things. sh is the right way to go. In my last email I suggested ksh and I hold true to that. Fortunately, if you know how to sh script, you know how to basicly ksh script. I still suggest scripting in ksh, however. :) - Jim > -- >Mike Meyer http://www.mired.org/home/mwm/ >Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.0.6 (MingW32) Comment: For info see http://www.gnupg.org - Jim Philosophy is for those who have nothing better to do than wonder why philosophy is for those who have nothing better to do than... mQGiBDxAonQRBACx+sz63XIeo5uTzc5n3Elf7Y13VVZGIM8Pilp3LpBu70/nGQPu anKYDB3aa1U5cfl+cTK5lOtUxN7Fu0a2Uv0ApIlC1qA8CjDZqlu7PDETFTVrpfGZ 007BHO+y2Y0bVsaMPXdnhbi0LAFSIkNYRhyzNWbAkeMsgA+i2k9hcnhvVwCgor7P nflXu7xWN9aWt3RJBzqdUR0EAK/1obJFUKQSK39cKTMPQ4u2UPflbS5dJ871naG5 xBAlQAjHAXT+f/fXE2ezrSyoQnlOD4kVbPN3gB5UT5mWoylPuf5W7WmupthVzUUN IsPDbmAT0YOwgALCfJVS+PrPCC8opmZhTjQBwgxCSY9MWULlzN3X2EEDqWIxluYb o5W/BACgHA+aFOO5F03QZBBScWn9YBS1ZH3sSlkQEK5RiwGXLmHJacOjn660SbOE MEKPDLDDJu/vt1fb3VRLc/fPB3aB7fi4XagfobaHbID9rx55slLhD94Q+5JuJSfg DyJ+vVSA1k+9/SynflPl0QY5zt0xSM+0CBg9mBg2bPyuGsDwXLQ5SmltIENvbm5l ciAoTmV3IEdQRyBLZXkgZm9yIFNuYWZ1WCkgPGpjb25uZXJAZW50ZXJpdC5jb20+ iFcEExECABcFAjxAonQFCwcKAwQDFQMCAxYCAQIXgAAKCRDmnFh04+r7ZdFiAKCh t8Vq7ZT6qvh9Dzn0lzZXRM4gywCfSLU/H5UHX7ZoxapfDs9pLxEEZeO5Ag0EPECj chAIAIsdwiPqW8IsumvpXu59qkfsi4H2nofxvbhMDiapEhgloydehNQOEiHwC/O1 a06PjUmNRLRdK88kjy99R84ILbWUJZUclQB2LcjlttnrIG/FzCMxoLTKOeOCJk8N ONswBdJdcf/XqbWJBTs/MXeNf4rmShYi6WJ5+jc1IE5PXGf4SR/9bz2r+/GESlrX tAoNtWl5a/NUxb6b0hR6zU9Y6oO1vpDDJNbcV9mafdYhsvoFYdD2c6JF+JoN+FHR tEP3k6leYwQ5P0kuUQNgWdWNWZfBq1tQDBfhg1/AV0JBzamyJfd0prFmtUEemKx4 haDsOoT4gLSPNTqSsyDt6TNLtGMAAwUIAINeot1FVpree5bvhy3xL+Pr1UGb++DM b8Qeer6ERkVQNx7YoU8hfpqOwvEQMyfb9s6HPfSWRUfQRF+g+9ohPgYkH+1nqH3V PtGSw1kgLOqxZQTVPEcAMhSflt9LSJETIQQByKKh1e5RvOuApwBFmQq3syRhzqv/ j2b6t3IqAB9WR5TnoYkdUtTWM9MGubiFl5B9uH5EHWAlFF8h760U7Xp9m1J3qTyH EJqjfGj2SP2DK5cisuWOWdPy5aSqT7ZKrcKeSTDUyiHclI1ygFHue8oO0HXqrs+k KjFdRqIKnzfY9gW/b/6gLHhBDV6BoA9w6+1Y9egOByRcVonE8zY/xMeIRgQYEQIA BgUCPECjcgAKCRDmnFh04+r7ZcyDAJ4ogYX7W4u8g+QJsksyL4Ld+dObCwCfU7hB 7I3ZgTsYwP6mr5RPjkH5PG8= =QOu8 -----END PGP PUBLIC KEY BLOCK----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 12:17:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail8.carolina.rr.com (fe8.southeast.rr.com [24.93.67.55]) by hub.freebsd.org (Postfix) with ESMTP id 9C8DB37B400 for ; Sat, 26 Jan 2002 12:17:39 -0800 (PST) Received: from snafu.enterit.com ([66.57.159.198]) by mail8.carolina.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Sat, 26 Jan 2002 15:05:40 -0500 Message-Id: <5.1.0.14.0.20020126151829.02fbdc38@mail.enterit.com> X-Sender: jconner@enterit.com@mail.enterit.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sat, 26 Jan 2002 15:29:51 -0500 To: Cliff Sarginson From: Jim Conner Subject: Re: shells confusion Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <20020126035658.GC1290@raggedclown.net> References: <20020126020430.P175-100000@BLAST> <20020126020430.P175-100000@BLAST> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Below... At 04:56 01.26.2002 +0100, Cliff Sarginson wrote: >On Sat, Jan 26, 2002 at 02:18:16AM +0200, Bernie wrote: > > > > hi, > > > > i'm planning to learn shell programming but i'm not sure > > on which one to choose... > > > > i've been reading in the 'FreeBSD unleashed' that people > > wanting to do shell programming should stay away from > > c-shell as it's realy good for interactive, but very bad > > for scripts. is this true? > >Yes and Yes. > > > also, looking into the scripts in /etc, i see a line on the > > top saying 'bin/sh'. so are they all written in 'sh' and > > not csh ? if so, why freebsd comes with csh as default? > > >/bin/sh is the Unix common denominator of shells, so scripts >get written in it. They are not written in csh, because as >stated csh script is unusable for all practical purposes. > >You will be opening up another war here on the subject >of which shell should be the default user/root shell. >You may notice that "root" has two entries on the system, >one as "root" with csh as it's shell, and one as "toor" >with sh as it's shell. > >By the way, csh = tcsh on FreeBSD, I don't know if there >is a "pure" csh around anymore. The huge difference between >csh as was, and tcsh, being that tcsh is usable (ducks). > > > also, why single user mode proposes /bin/sh as default? > > is there any particular reason for it? > > >Well it is probably true to say that most (all) Unix users >know /bin/sh, not all of them know csh. Again it is the >lowest common denominator I guess is the reasoning here. > > > i'm a bit confused on which shell to pick from programming. > > also i've been thinking of perl, but for the moment i think > > i've got to learn at least how to do basic shell programming, > > not only to write programs, but also to understand scrips that > > come with the system. > > OK. This is where wars get started =P. Therefore, I will simply state my opinion. >Leave perl alone for now and learn shell programming. >There are a few shells that are super-sets of /bin/sh, notably >the Korn shell and the Bash shell. Bash is the one I would >personally advise you to use. You need to install it from >the ports first. Perl is something you should learn once you have learned how to shell program, imo. However, as for the aforementioned question of which shell language to learn, imo, ksh (Korn) is a much more robust language than bash is (strictly speaking from past experience). But, now the question is, which version of ksh? There are two notable versions. Many are familiar with ksh88. This is one that competes well with bash but ksh93 (note it was released in 93) seems to be much more robust than bash. It has the ability to do many c-like things. Go to http://www.kornshell.com/ and see for yourself (see examples). It is said that some shops have even left Perl behind and have gone straight ksh93. I don't see how that's possible, but whatever blows your hair back, I guess. Anyhoo, that is my preferred shell language for non-interactive use. For interactive use I prefer bash and I have nothing negative to say about bash. Note, that ksh also has a dt (desktop) counterpart for use with motif widgets and whatnot called dtksh which is just a superset of ksh93. Thats right folks, now you can create X shell scripts. Quite powerful. I am not sure if bash has the same thing. Never checked. Anyhoo, that's my `echo "$(echo "scale=2;1.00-.98" | bc)"` cents. > > but the question is 'which shell' ... > > > > any advice on this matter will be appreciated. > > >In summary, *not* the csh for scripts. >Learn sh for scripts. >Use bash or tcsh for your day to day interactive use. > >I think most people will give you more or less the same >advice, the choice of tcsh or bash will mostly depend on >their personal Unix backgrounds as much as anything else. > >-- >Regards >Cliff > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.0.6 (MingW32) Comment: For info see http://www.gnupg.org - Jim Philosophy is for those who have nothing better to do than wonder why philosophy is for those who have nothing better to do than... mQGiBDxAonQRBACx+sz63XIeo5uTzc5n3Elf7Y13VVZGIM8Pilp3LpBu70/nGQPu anKYDB3aa1U5cfl+cTK5lOtUxN7Fu0a2Uv0ApIlC1qA8CjDZqlu7PDETFTVrpfGZ 007BHO+y2Y0bVsaMPXdnhbi0LAFSIkNYRhyzNWbAkeMsgA+i2k9hcnhvVwCgor7P nflXu7xWN9aWt3RJBzqdUR0EAK/1obJFUKQSK39cKTMPQ4u2UPflbS5dJ871naG5 xBAlQAjHAXT+f/fXE2ezrSyoQnlOD4kVbPN3gB5UT5mWoylPuf5W7WmupthVzUUN IsPDbmAT0YOwgALCfJVS+PrPCC8opmZhTjQBwgxCSY9MWULlzN3X2EEDqWIxluYb o5W/BACgHA+aFOO5F03QZBBScWn9YBS1ZH3sSlkQEK5RiwGXLmHJacOjn660SbOE MEKPDLDDJu/vt1fb3VRLc/fPB3aB7fi4XagfobaHbID9rx55slLhD94Q+5JuJSfg DyJ+vVSA1k+9/SynflPl0QY5zt0xSM+0CBg9mBg2bPyuGsDwXLQ5SmltIENvbm5l ciAoTmV3IEdQRyBLZXkgZm9yIFNuYWZ1WCkgPGpjb25uZXJAZW50ZXJpdC5jb20+ iFcEExECABcFAjxAonQFCwcKAwQDFQMCAxYCAQIXgAAKCRDmnFh04+r7ZdFiAKCh t8Vq7ZT6qvh9Dzn0lzZXRM4gywCfSLU/H5UHX7ZoxapfDs9pLxEEZeO5Ag0EPECj chAIAIsdwiPqW8IsumvpXu59qkfsi4H2nofxvbhMDiapEhgloydehNQOEiHwC/O1 a06PjUmNRLRdK88kjy99R84ILbWUJZUclQB2LcjlttnrIG/FzCMxoLTKOeOCJk8N ONswBdJdcf/XqbWJBTs/MXeNf4rmShYi6WJ5+jc1IE5PXGf4SR/9bz2r+/GESlrX tAoNtWl5a/NUxb6b0hR6zU9Y6oO1vpDDJNbcV9mafdYhsvoFYdD2c6JF+JoN+FHR tEP3k6leYwQ5P0kuUQNgWdWNWZfBq1tQDBfhg1/AV0JBzamyJfd0prFmtUEemKx4 haDsOoT4gLSPNTqSsyDt6TNLtGMAAwUIAINeot1FVpree5bvhy3xL+Pr1UGb++DM b8Qeer6ERkVQNx7YoU8hfpqOwvEQMyfb9s6HPfSWRUfQRF+g+9ohPgYkH+1nqH3V PtGSw1kgLOqxZQTVPEcAMhSflt9LSJETIQQByKKh1e5RvOuApwBFmQq3syRhzqv/ j2b6t3IqAB9WR5TnoYkdUtTWM9MGubiFl5B9uH5EHWAlFF8h760U7Xp9m1J3qTyH EJqjfGj2SP2DK5cisuWOWdPy5aSqT7ZKrcKeSTDUyiHclI1ygFHue8oO0HXqrs+k KjFdRqIKnzfY9gW/b/6gLHhBDV6BoA9w6+1Y9egOByRcVonE8zY/xMeIRgQYEQIA BgUCPECjcgAKCRDmnFh04+r7ZcyDAJ4ogYX7W4u8g+QJsksyL4Ld+dObCwCfU7hB 7I3ZgTsYwP6mr5RPjkH5PG8= =QOu8 -----END PGP PUBLIC KEY BLOCK----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 12:22:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id 13BD137B416 for ; Sat, 26 Jan 2002 12:22:49 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id OAA14931; Sat, 26 Jan 2002 14:22:40 -0600 (CST) Message-Id: <3.0.5.32.20020126142238.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Sat, 26 Jan 2002 14:22:38 -0600 To: "Joe & Fhe Barbish" From: jacks@sage-american.com Subject: RE: Apache_FP ? Cc: "Doug Reynolds" , "FBSD Questions" In-Reply-To: References: <3.0.5.32.20020126113059.01831ca0@mail.sage-american.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The ~/username (with tilde) is a ~/userhome directory of an #adduser to the system. The other is any name of a directory which can also be named after an existing user, but is NOT the same as the user's $HOME directory. You can FTP files & subdirectories to a web created by FrontPage, BUT FrontPage keeps an index of all stuff kept in its webs and wants to know about them. For instance, FPage keeps track of links should you move a linked file, it will ask it you want it to be changed. Thus, IF you are going to make use of FrontPage to make webs, it's best to use FrontPage to transfer files so it can keep track. Also, you can edit files directly on the live web thru FP. Then, publish the web back to your local machine. It will publish both ways (only changed pages if you desire to save time). If you are going to author web pages locally and primarily use FTP to upload, then there's not much reason to use FP..... At 03:07 PM 1.26.2002 -0500, Joe & Fhe Barbish wrote: >Ok, so yes Is the answer to my original question. >But reading this thread you talk about /~username and /username >as if they are two different things. >Please explain the difference. > >Could you post a example of the declaratives in hhtpd.conf >that would create what we are talking about? > >Will web site content created by mswindows FrontPage 2000, >that was ftp loaded into a apache subdirectory work, >or does the fp_mod provide more that just the function of >downloading from within the mswindows fp client application? > >Thanks >Joe Barbish > >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of >jacks@sage-american.com >Sent: Saturday, January 26, 2002 12:31 PM >To: Doug Reynolds; FBSD Questions; Joe & Fhe Barbish >Subject: Re: Apache_FP ? > >Thanks, Doug. I think the confusion is that the original poster's question >was unclear in that his "user" example is not the usual structure, i.e., >"tom.index" > >"...Can Apache_FP have directory based web sites that would be >accessed by a url of this type http://www.domain.com/dir_name or >http://www.domain.com/tom.index where domain points to the >apache server and (dir_name and tom.index)..." > >...further top the "index" though, each subweb can have an index.html and >be reached by: >www.website.com/tom/ >...or: >www.website.com/tom/tom.html > >...and so on... > >But, Doug, I believe your clarification is correct about the user's home >directory & FPage. > >At 11:50 AM 1.26.2002 -0500, Doug Reynolds wrote: >>On Sat, 26 Jan 2002 10:37:26 -0600, jacks@sage-american.com wrote: >> >>>"....you can't, however, make www.website.com/~username/ accessable by >>>frontpage. you have to ftp the files in...." >>> >>>This is not true. I make www.website.com/websitedir using FrontPage all >the >>>time (for 5 years) now. They are "subwebs" or "child webs". I have one >main >>>website with about 20 subwebs. Some are open and some require logins. >>> >>>After creating a "new web" off of the main domain, you ask FPage to "list >>>webs" under www.website and it will show all its children or subwebs >>>separately... all of which may have separate logins for admin, authoring >or >>>whatever. They may be "protected webs" that require a login to enter and >>>browse or may be open to all. During creation (or even afterwards) in >>>"tools/permissions" you can tell it to have "unique permissions" or have >it >>>the same as the root. >> >>that is what I said, even though I wasn't a 100% clear on >>www.website.com/dir/ which is a sub web, and i said you can also point >>different hostnames to it. like my www.rebel.tj points to the >>wastegate.net/mav/ directory. >> >>however, you can't have the www.website.com/~username/ work under >>frontpage. you can have www.website.com/username/, but you have to set >>that up though the fpsvradm.exe, whereis the /~username/, all the user >>has to do is upload there page to the web directory. >> >>--- >>doug reynolds | the maverick | mav@wastegate.net >> >>PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB >> >> >> >> > >Best regards, >Jack L. Stone, >Server Admin > >=================================================== >Sage-American >http://www.sage-american.com >jacks@sage-american.com > >"My center is giving way, my right is in retreat; >....situation excellent! ....I shall attack!" >=================================================== > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 12:26:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail7.carolina.rr.com (fe7.southeast.rr.com [24.93.67.54]) by hub.freebsd.org (Postfix) with ESMTP id D00E837B404 for ; Sat, 26 Jan 2002 12:26:28 -0800 (PST) Received: from snafu.enterit.com ([66.57.159.198]) by mail7.carolina.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Sat, 26 Jan 2002 15:25:34 -0500 Message-Id: <5.1.0.14.0.20020126154711.049c6860@mail.enterit.com> X-Sender: jconner@enterit.com@mail.enterit.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sat, 26 Jan 2002 15:49:45 -0500 To: "Bob Giesen" From: Jim Conner Subject: Re: shells confusion Cc: "Bernie" , "freebsd-questions" In-Reply-To: <004301c1a684$0de9bb00$ab41d03f@pegasus> References: <20020126020430.P175-100000@BLAST> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 10:11 01.26.2002 -0600, Bob Giesen wrote: > For scripting, the most logical choice to learn first is the Bourne shell >(/bin/sh on most systems). As you've noted, the vast majority of existing >scripts that are supplied with systems are written in Bourne, so you will >have little trouble translating what you learn to all those examples that >you have available to you. Also, should you desire to modify any of those >scripts, you will be less likely to break them through syntax errors. >(Notice the "#!/bin/sh" at the tops of those scripts? The leading "#!" >tells the invoking shell to run the script in a subshell of the following >command (/bin/sh, in this case). So, if you were to insert something from >ksh (Korn Shell), e.g., that /bin/sh doesn't understand, the script will >fail.) > Once you're comfortable with sh, you'll want to consider looking at the >other shells -- especially if you work at the command line a lot and/or do a >lot of scripting. Most other popular UNIX command shells (ksh, bash, zsh) >are mostly supersets of the Bourne shell, so you will find it very easy to >take advantage of their extended features after you've learned Bourne. It >is a natural progression. However, should you learn one of those whiz-bang >shells, first, you may find dealing with Bourne-shell scripts a bit more >frustrating when you find that you have to take into account its >limitations. I seconds Bob's comments. :) You will eventually mold yourself into the best you can be with whatever language you choose. However, the starting point is generally plain old sh (Bourne). And its not hard to move on to the more "advanced" shells for scripting use. I've already made my choice quite clear. You will do research into your most favorite as time progresses. Most likely, you will get to a point where you need to do something advanced in your script like an array and you will notice that sh just doesn't do that. Then you will venture into a shell language that can do it. That's how it happened to me and I chose and expanded into the world of Korn. - Jim >----- Original Message ----- >From: "Bernie" >To: >Sent: Friday, January 25, 2002 6:18 PM >Subject: shells confusion > > > > > > hi, > > > > i'm planning to learn shell programming but i'm not sure > > on which one to choose... > > > > i've been reading in the 'FreeBSD unleashed' that people > > wanting to do shell programming should stay away from > > c-shell as it's realy good for interactive, but very bad > > for scripts. is this true? > > > > also, looking into the scripts in /etc, i see a line on the > > top saying 'bin/sh'. so are they all written in 'sh' and > > not csh ? if so, why freebsd comes with csh as default? > > > > also, why single user mode proposes /bin/sh as default? > > is there any particular reason for it? > > > > i'm a bit confused on which shell to pick from programming. > > also i've been thinking of perl, but for the moment i think > > i've got to learn at least how to do basic shell programming, > > not only to write programs, but also to understand scrips that > > come with the system. > > > > but the question is 'which shell' ... > > > > any advice on this matter will be appreciated. > > > > > > Regards > > > > --Bernie > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.0.6 (MingW32) Comment: For info see http://www.gnupg.org - Jim Philosophy is for those who have nothing better to do than wonder why philosophy is for those who have nothing better to do than... mQGiBDxAonQRBACx+sz63XIeo5uTzc5n3Elf7Y13VVZGIM8Pilp3LpBu70/nGQPu anKYDB3aa1U5cfl+cTK5lOtUxN7Fu0a2Uv0ApIlC1qA8CjDZqlu7PDETFTVrpfGZ 007BHO+y2Y0bVsaMPXdnhbi0LAFSIkNYRhyzNWbAkeMsgA+i2k9hcnhvVwCgor7P nflXu7xWN9aWt3RJBzqdUR0EAK/1obJFUKQSK39cKTMPQ4u2UPflbS5dJ871naG5 xBAlQAjHAXT+f/fXE2ezrSyoQnlOD4kVbPN3gB5UT5mWoylPuf5W7WmupthVzUUN IsPDbmAT0YOwgALCfJVS+PrPCC8opmZhTjQBwgxCSY9MWULlzN3X2EEDqWIxluYb o5W/BACgHA+aFOO5F03QZBBScWn9YBS1ZH3sSlkQEK5RiwGXLmHJacOjn660SbOE MEKPDLDDJu/vt1fb3VRLc/fPB3aB7fi4XagfobaHbID9rx55slLhD94Q+5JuJSfg DyJ+vVSA1k+9/SynflPl0QY5zt0xSM+0CBg9mBg2bPyuGsDwXLQ5SmltIENvbm5l ciAoTmV3IEdQRyBLZXkgZm9yIFNuYWZ1WCkgPGpjb25uZXJAZW50ZXJpdC5jb20+ iFcEExECABcFAjxAonQFCwcKAwQDFQMCAxYCAQIXgAAKCRDmnFh04+r7ZdFiAKCh t8Vq7ZT6qvh9Dzn0lzZXRM4gywCfSLU/H5UHX7ZoxapfDs9pLxEEZeO5Ag0EPECj chAIAIsdwiPqW8IsumvpXu59qkfsi4H2nofxvbhMDiapEhgloydehNQOEiHwC/O1 a06PjUmNRLRdK88kjy99R84ILbWUJZUclQB2LcjlttnrIG/FzCMxoLTKOeOCJk8N ONswBdJdcf/XqbWJBTs/MXeNf4rmShYi6WJ5+jc1IE5PXGf4SR/9bz2r+/GESlrX tAoNtWl5a/NUxb6b0hR6zU9Y6oO1vpDDJNbcV9mafdYhsvoFYdD2c6JF+JoN+FHR tEP3k6leYwQ5P0kuUQNgWdWNWZfBq1tQDBfhg1/AV0JBzamyJfd0prFmtUEemKx4 haDsOoT4gLSPNTqSsyDt6TNLtGMAAwUIAINeot1FVpree5bvhy3xL+Pr1UGb++DM b8Qeer6ERkVQNx7YoU8hfpqOwvEQMyfb9s6HPfSWRUfQRF+g+9ohPgYkH+1nqH3V PtGSw1kgLOqxZQTVPEcAMhSflt9LSJETIQQByKKh1e5RvOuApwBFmQq3syRhzqv/ j2b6t3IqAB9WR5TnoYkdUtTWM9MGubiFl5B9uH5EHWAlFF8h760U7Xp9m1J3qTyH EJqjfGj2SP2DK5cisuWOWdPy5aSqT7ZKrcKeSTDUyiHclI1ygFHue8oO0HXqrs+k KjFdRqIKnzfY9gW/b/6gLHhBDV6BoA9w6+1Y9egOByRcVonE8zY/xMeIRgQYEQIA BgUCPECjcgAKCRDmnFh04+r7ZcyDAJ4ogYX7W4u8g+QJsksyL4Ld+dObCwCfU7hB 7I3ZgTsYwP6mr5RPjkH5PG8= =QOu8 -----END PGP PUBLIC KEY BLOCK----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 12:31:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail8.carolina.rr.com (fe8.southeast.rr.com [24.93.67.55]) by hub.freebsd.org (Postfix) with ESMTP id 6865C37B404 for ; Sat, 26 Jan 2002 12:31:36 -0800 (PST) Received: from snafu.enterit.com ([66.57.159.198]) by mail8.carolina.rr.com with Microsoft SMTPSVC(5.5.1877.687.68); Sat, 26 Jan 2002 15:17:41 -0500 Message-Id: <5.1.0.14.0.20020126153803.049c9008@mail.enterit.com> X-Sender: jconner@enterit.com@mail.enterit.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sat, 26 Jan 2002 15:41:52 -0500 To: Brian T.Schellenberger From: Jim Conner Subject: Re: shells confusion Cc: Cliff Sarginson , freebsd-questions@FreeBSD.ORG In-Reply-To: <20020126070114.C8FD93FE5@i8k.babbleon.org> References: <20020126035658.GC1290@raggedclown.net> <20020126020430.P175-100000@BLAST> <20020126035658.GC1290@raggedclown.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 02:01 01.26.2002 -0500, Brian T.Schellenberger wrote: >On Friday 25 January 2002 10:56 pm, Cliff Sarginson wrote: > > On Sat, Jan 26, 2002 at 02:18:16AM +0200, Bernie wrote: > > > hi, > > > > > > i'm planning to learn shell programming but i'm not sure > > > on which one to choose... > > > > > > i've been reading in the 'FreeBSD unleashed' that people > > > wanting to do shell programming should stay away from > > > c-shell as it's realy good for interactive, but very bad > > > for scripts. is this true? > > > > Yes and Yes. > >I would not agree with this at all. I find csh much more readable/sensible >than /bin/sh for interactive use. Spaces don't matter; if statements are >vastly more readable, etc. > >Now for really complex "shell" programming I use perl, but C shell is, IMHO, >a lot easier to write and read than /bin/sh. > >There *is* one severe problem with csh that I know of: the quoting rules are >just plain broken; if you get into nested quotes things get screwy quickly. >I work around this with > >set Q = "'" >set QQ = '"' >set $S = '$' > >at the top of my scripts, but I freely admit that it is completely stupid >that I should have to do so, but writing > >if ($a > 4) then > echo "$a is greater than 4" >endif > >vs. > >if [[eval $a > 4]];; > echo "$a just tell me that's more readable. I dare you." >fi Then just do: if [ $a -gt 4 ] then echo "$a is greater than 4" fi >(or whatever--the syntax is inexact) it just seems to be to be no contest: >csh wins, hands-down. Its all in the eyes of the beholder >Plus the convenience of > >if ($a =~ foo*) > >vs. (as far as I can tell) having to do a switch just for string tests -- >again, csh is the scripting shell for me. This is true! >EXCEPT that on non-BSD systems, csh isn't necessarily always avaialble. That's probably the crux of the whole conversation so far. However, I do believe this is a good place to state the korn shell (ksh88) is a default shell on Solaris. Heh, just a note and stuff. Only 1239878912730921 Unix flavors to go. >Other than that, when push comes to shove, this is more a matter of personal >opinion than any inherent superiority of one shell over another. > >(Well, bash or zsh, which postdate /bin/sh and csh might be better and of >course tcsh is better than original csh . . . but /bin/sh is really terrible >for scripting if you ask me, never mind that it's widely used.) > > > > also, looking into the scripts in /etc, i see a line on the > > > top saying 'bin/sh'. so are they all written in 'sh' and > > > not csh ? if so, why freebsd comes with csh as default? > > > > /bin/sh is the Unix common denominator of shells, so scripts > > get written in it. They are not written in csh, because as > > stated csh script is unusable for all practical purposes. > >unusable??????? What on earch are you talking about? > >I have many dozens of quite usable csh scripts. And they are readable, too. Yeah. I've heard csh is a goodlanguage....just never learned it. Never had a desire to. Everyone who does, though, afaik, loves it. > > > > You will be opening up another war here on the subject > > of which shell should be the default user/root shell. > > You may notice that "root" has two entries on the system, > > one as "root" with csh as it's shell, and one as "toor" > > with sh as it's shell. > > > > By the way, csh = tcsh on FreeBSD, I don't know if there > > is a "pure" csh around anymore. The huge difference between > > csh as was, and tcsh, being that tcsh is usable (ducks). > >The main difference is the interactive history. Lots of other bells & >whistles, but csh was usable, too. A huge, huge improvement for both >interactive and scripted use over the original /bin/sh. > > > > In summary, *not* the csh for scripts. > > Learn sh for scripts. > >I agree that you might have to (unfortunately) learn a mininum of sh for >scripts, because the vast majority of scripts are written in it, but it's >definately a matter of opinion whether they *should* be written in it. > > > Use bash or tcsh for your day to day interactive use. > > > > I think most people will give you more or less the same > > advice, the choice of tcsh or bash will mostly depend on > > their personal Unix backgrounds as much as anything else. > >-- >Brian T. Schellenberger . . . . . . . bts@wnt.sas.com (work) >Brian, the man from Babble-On . . . . bts@babbleon.org (personal) > http://www.babbleon.org > >-------> Free Dmitry Sklyarov! (let him go home) <----------- > >http://www.eff.org http://www.programming-freedom.org > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.0.6 (MingW32) Comment: For info see http://www.gnupg.org - Jim Philosophy is for those who have nothing better to do than wonder why philosophy is for those who have nothing better to do than... mQGiBDxAonQRBACx+sz63XIeo5uTzc5n3Elf7Y13VVZGIM8Pilp3LpBu70/nGQPu anKYDB3aa1U5cfl+cTK5lOtUxN7Fu0a2Uv0ApIlC1qA8CjDZqlu7PDETFTVrpfGZ 007BHO+y2Y0bVsaMPXdnhbi0LAFSIkNYRhyzNWbAkeMsgA+i2k9hcnhvVwCgor7P nflXu7xWN9aWt3RJBzqdUR0EAK/1obJFUKQSK39cKTMPQ4u2UPflbS5dJ871naG5 xBAlQAjHAXT+f/fXE2ezrSyoQnlOD4kVbPN3gB5UT5mWoylPuf5W7WmupthVzUUN IsPDbmAT0YOwgALCfJVS+PrPCC8opmZhTjQBwgxCSY9MWULlzN3X2EEDqWIxluYb o5W/BACgHA+aFOO5F03QZBBScWn9YBS1ZH3sSlkQEK5RiwGXLmHJacOjn660SbOE MEKPDLDDJu/vt1fb3VRLc/fPB3aB7fi4XagfobaHbID9rx55slLhD94Q+5JuJSfg DyJ+vVSA1k+9/SynflPl0QY5zt0xSM+0CBg9mBg2bPyuGsDwXLQ5SmltIENvbm5l ciAoTmV3IEdQRyBLZXkgZm9yIFNuYWZ1WCkgPGpjb25uZXJAZW50ZXJpdC5jb20+ iFcEExECABcFAjxAonQFCwcKAwQDFQMCAxYCAQIXgAAKCRDmnFh04+r7ZdFiAKCh t8Vq7ZT6qvh9Dzn0lzZXRM4gywCfSLU/H5UHX7ZoxapfDs9pLxEEZeO5Ag0EPECj chAIAIsdwiPqW8IsumvpXu59qkfsi4H2nofxvbhMDiapEhgloydehNQOEiHwC/O1 a06PjUmNRLRdK88kjy99R84ILbWUJZUclQB2LcjlttnrIG/FzCMxoLTKOeOCJk8N ONswBdJdcf/XqbWJBTs/MXeNf4rmShYi6WJ5+jc1IE5PXGf4SR/9bz2r+/GESlrX tAoNtWl5a/NUxb6b0hR6zU9Y6oO1vpDDJNbcV9mafdYhsvoFYdD2c6JF+JoN+FHR tEP3k6leYwQ5P0kuUQNgWdWNWZfBq1tQDBfhg1/AV0JBzamyJfd0prFmtUEemKx4 haDsOoT4gLSPNTqSsyDt6TNLtGMAAwUIAINeot1FVpree5bvhy3xL+Pr1UGb++DM b8Qeer6ERkVQNx7YoU8hfpqOwvEQMyfb9s6HPfSWRUfQRF+g+9ohPgYkH+1nqH3V PtGSw1kgLOqxZQTVPEcAMhSflt9LSJETIQQByKKh1e5RvOuApwBFmQq3syRhzqv/ j2b6t3IqAB9WR5TnoYkdUtTWM9MGubiFl5B9uH5EHWAlFF8h760U7Xp9m1J3qTyH EJqjfGj2SP2DK5cisuWOWdPy5aSqT7ZKrcKeSTDUyiHclI1ygFHue8oO0HXqrs+k KjFdRqIKnzfY9gW/b/6gLHhBDV6BoA9w6+1Y9egOByRcVonE8zY/xMeIRgQYEQIA BgUCPECjcgAKCRDmnFh04+r7ZcyDAJ4ogYX7W4u8g+QJsksyL4Ld+dObCwCfU7hB 7I3ZgTsYwP6mr5RPjkH5PG8= =QOu8 -----END PGP PUBLIC KEY BLOCK----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 12:38:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from radwaste.oaep.go.th (TruPPP0B057.inet.co.th [203.151.125.57]) by hub.freebsd.org (Postfix) with ESMTP id 383CE37B400 for ; Sat, 26 Jan 2002 12:38:32 -0800 (PST) Received: (from pirat@localhost) by radwaste.oaep.go.th (8.11.6/8.11.3) id g0QKwhY02049; Sun, 27 Jan 2002 03:58:43 +0700 (ICT) (envelope-from pirat@access.inet.co.th) X-Authentication-Warning: radwaste.oaep.go.th: pirat set sender to pirat@access.inet.co.th using -f Date: Sun, 27 Jan 2002 03:58:42 +0700 From: pirat To: Joe & Fhe Barbish Cc: questions@FreeBSD.ORG Subject: Re: ppp -nat ISP does not work Message-ID: <20020127035842.A1106@radwaste.oaep.go.th> Mail-Followup-To: pirat , Joe & Fhe Barbish , questions@FreeBSD.ORG References: <20020126095122.A408@radwaste.oaep.go.th> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="sdtB3X0nJg68CQEu" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from barbish@a1poweruser.com on Sat, Jan 26, 2002 at 11:35:17AM -0500 X-Operating-System: FreeBSD-4.4 STABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --sdtB3X0nJg68CQEu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Jan 26, 2002 at 11:35:17AM -0500, Joe & Fhe Barbish wrote: > > Try ppp -ddial -nat makham from the command line to start it > unfortunately, it did give me a prompt but still did not work. thanks anyway. with best regards, psr > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of pirat > Sent: Friday, January 25, 2002 9:51 PM > To: questions@FreeBSD.ORG > Subject: ppp -nat ISP does not work > > hi sirs, > > very apologize for distrubing the list but i face a very strange problem > with user mode ppp. > > the situation is this. > > i write a ppp.conf script for some isp and use that script to dialup without > any problem. now that i change to a new isp, it costs me about 3000 baht > per month without disconnecting, and i change the script accordingly. > > strange very strange, it does not work any more when i fireup ppp -nat > makham > #ppp -nat makham > ppp on Makham>dial > Ppp on Makham> > ppp on Makham> > > well, since i have paid for that, i enter interactive mode or terminal mode > > ppp on Makham>term > (some texts) > ath > OK > atz > OK > at&f > OK > atdt028070707 > > Username: makham > Password: ***** > > PPP on Makham> > > it works ! > > i try a number of variations in changing /etc/ppp/ppp.conf for label makham > but fial. so what is a secret in my case. would the list please finds out > any hints for me to use the script instead of entering terminal mode. > > in an attachment is parts of /etc/ppp/ppp.conf that i use and also log file > for ppp.log > > please cc to me since i do not subscribe to the list. > > thanks in advance. > with best regards, > psr > > --sdtB3X0nJg68CQEu Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="PPP.ACT-error" here is parts of /etc/ppp/ppp.conf makham: allow users pnt pirat proj-A set phone "4711" set authkey XXXXX set authname XXXXX accept pap enable pap set login set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 delete ALL add default HISADDR #tail -80 /var/log/ppp.log Jan 26 09:24:58 ppp[385]: tun0: Chat: Received: ATE1Q0 Jan 26 09:24:58 ppp[385]: tun0: Chat: Received: OK Jan 26 09:24:58 ppp[385]: tun0: Chat: Send: ATL1M1DT028070707 Jan 26 09:25:00 ppp[385]: tun0: Chat: Expect(40): CONNECT Jan 26 09:25:31 ppp[385]: tun0: Chat: Received: ATL1M1DT028070707 Jan 26 09:25:31 ppp[385]: tun0: Chat: Received: CONNECT 31200/ARQ Jan 26 09:25:31 ppp[385]: tun0: Phase: deflink: dial -> carrier Jan 26 09:25:32 ppp[385]: tun0: Phase: deflink: /dev/cuaa2: CD detected Jan 26 09:25:32 ppp[385]: tun0: Phase: deflink: carrier -> login Jan 26 09:25:32 ppp[385]: tun0: Phase: deflink: login -> lcp Jan 26 09:25:32 ppp[385]: tun0: LCP: FSM: Using "deflink" as a transport Jan 26 09:25:32 ppp[385]: tun0: LCP: deflink: State change Initial --> Closed Jan 26 09:25:32 ppp[385]: tun0: LCP: deflink: State change Closed --> Stopped Jan 26 09:25:33 ppp[385]: tun0: LCP: deflink: LayerStart Jan 26 09:25:33 ppp[385]: tun0: LCP: deflink: SendConfigReq(1) state = Stopped Jan 26 09:25:33 ppp[385]: tun0: LCP: ACFCOMP[2] Jan 26 09:25:33 ppp[385]: tun0: LCP: PROTOCOMP[2] Jan 26 09:25:33 ppp[385]: tun0: LCP: ACCMAP[6] 0x00000000 Jan 26 09:25:33 ppp[385]: tun0: LCP: MRU[4] 1500 Jan 26 09:25:33 ppp[385]: tun0: LCP: MAGICNUM[6] 0x2aa5d75a Jan 26 09:25:33 ppp[385]: tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) Jan 26 09:25:33 ppp[385]: tun0: LCP: deflink: State change Stopped --> Req-Sent Jan 26 09:25:36 ppp[385]: tun0: LCP: deflink: SendConfigReq(1) state = Req-Sent Jan 26 09:25:36 ppp[385]: tun0: LCP: ACFCOMP[2] Jan 26 09:25:36 ppp[385]: tun0: LCP: PROTOCOMP[2] Jan 26 09:25:36 ppp[385]: tun0: LCP: ACCMAP[6] 0x00000000 Jan 26 09:25:36 ppp[385]: tun0: LCP: MRU[4] 1500 Jan 26 09:25:36 ppp[385]: tun0: LCP: MAGICNUM[6] 0x2aa5d75a Jan 26 09:25:36 ppp[385]: tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) Jan 26 09:25:36 ppp[385]: tun0: LCP: deflink: RecvConfigAck(1) state = Req-Sent Jan 26 09:25:36 ppp[385]: tun0: LCP: deflink: State change Req-Sent --> Ack-Rcvd Jan 26 09:25:37 ppp[385]: tun0: LCP: deflink: RecvConfigReq(194) state = Ack-Rcvd Jan 26 09:25:37 ppp[385]: tun0: LCP: ACCMAP[6] 0x000a0000 Jan 26 09:25:37 ppp[385]: tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) Jan 26 09:25:37 ppp[385]: tun0: LCP: MAGICNUM[6] 0x860957b5 Jan 26 09:25:37 ppp[385]: tun0: LCP: PROTOCOMP[2] Jan 26 09:25:37 ppp[385]: tun0: LCP: ACFCOMP[2] Jan 26 09:25:37 ppp[385]: tun0: LCP: MRRU[4] 1524 Jan 26 09:25:37 ppp[385]: tun0: LCP: ENDDISC[12] Local Addr: cc_as5300 Jan 26 09:25:37 ppp[385]: tun0: LCP: deflink: SendConfigRej(194) state = Ack-Rcvd Jan 26 09:25:37 ppp[385]: tun0: LCP: MRRU[4] 1524 Jan 26 09:25:38 ppp[385]: tun0: LCP: deflink: RecvConfigReq(195) state = Ack-Rcvd Jan 26 09:25:38 ppp[385]: tun0: LCP: ACCMAP[6] 0x000a0000 Jan 26 09:25:38 ppp[385]: tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) Jan 26 09:25:38 ppp[385]: tun0: LCP: MAGICNUM[6] 0x860957b5 Jan 26 09:25:38 ppp[385]: tun0: LCP: PROTOCOMP[2] Jan 26 09:25:38 ppp[385]: tun0: LCP: ACFCOMP[2] Jan 26 09:25:38 ppp[385]: tun0: LCP: ENDDISC[12] Local Addr: cc_as5300 Jan 26 09:25:38 ppp[385]: tun0: LCP: deflink: SendConfigAck(195) state = Ack-Rcvd Jan 26 09:25:38 ppp[385]: tun0: LCP: ACCMAP[6] 0x000a0000 Jan 26 09:25:38 ppp[385]: tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) Jan 26 09:25:38 ppp[385]: tun0: LCP: MAGICNUM[6] 0x860957b5 Jan 26 09:25:38 ppp[385]: tun0: LCP: PROTOCOMP[2] Jan 26 09:25:38 ppp[385]: tun0: LCP: ACFCOMP[2] Jan 26 09:25:38 ppp[385]: tun0: LCP: ENDDISC[12] Local Addr: cc_as5300 Jan 26 09:25:38 ppp[385]: tun0: LCP: deflink: State change Ack-Rcvd --> Opened Jan 26 09:25:38 ppp[385]: tun0: LCP: deflink: LayerUp Jan 26 09:25:38 ppp[385]: tun0: Phase: bundle: Authenticate Jan 26 09:25:38 ppp[385]: tun0: Phase: deflink: his = PAP, mine = PAP Jan 26 09:25:38 ppp[385]: tun0: Phase: Pap Output: makham ******** Jan 26 09:25:41 ppp[385]: tun0: Phase: Pap Output: makham ******** Jan 26 09:25:41 ppp[385]: tun0: Phase: Pap Input: SUCCESS () Jan 26 09:26:38 ppp[385]: tun0: Phase: deflink: HDLC errors -> FCS: 2, ADDR: 0, COMD: 0, PROTO: 0 Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: RecvTerminateReq(196) state = Opened Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: LayerDown Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: SendTerminateAck(196) state = Opened Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: State change Opened --> Stopping Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: Carrier lost Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: State change Stopping --> Starting Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: LayerFinish Jan 26 09:27:28 ppp[385]: tun0: LCP: deflink: State change Starting --> Initial Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: Disconnected! Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: lcp -> logout Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: Disconnected! Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: logout -> hangup Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: Connect time: 151 secs: 880 octets in, 274 octets out Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: : 14 packets in, 7 packets out Jan 26 09:27:28 ppp[385]: tun0: Phase: total 7 bytes/sec, peak 163 bytes/sec on Sat Jan 26 09:27:28 2002 Jan 26 09:27:28 ppp[385]: tun0: Phase: deflink: hangup -> closed Jan 26 09:27:28 ppp[385]: tun0: Phase: bundle: Dead --sdtB3X0nJg68CQEu-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 12:43:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from c011.snv.cp.net (c011-h003.c011.snv.cp.net [209.228.34.216]) by hub.freebsd.org (Postfix) with SMTP id 512B837B402 for ; Sat, 26 Jan 2002 12:43:19 -0800 (PST) Received: (cpmta 2588 invoked from network); 26 Jan 2002 12:43:18 -0800 Received: from 209.6.191.48 (HELO Fritz) by smtp.namezero.com (209.228.34.216) with SMTP; 26 Jan 2002 12:43:18 -0800 X-Sent: 26 Jan 2002 20:43:18 GMT Message-ID: <001301c1a6aa$187b9d10$0301a8c0@uminafamily.com> From: "Christopher J. Umina" To: Subject: fsck on root Date: Sat, 26 Jan 2002 15:43:21 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0010_01C1A680.2F050F50" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0010_01C1A680.2F050F50 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable How can I run fsck with write capabilities on the root filesystem. The = only way I can see of doing it is rebooting the server incorrectly. = When I reboot it wrong it tells me the superblock is incorrect in size. = I need to run it again. ------=_NextPart_000_0010_01C1A680.2F050F50 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
How can I run fsck with write = capabilities on the=20 root filesystem.  The only way I can see of doing it is rebooting = the=20 server incorrectly.  When I reboot it wrong it tells me the = superblock is=20 incorrect in size.  I need to run it = again.
------=_NextPart_000_0010_01C1A680.2F050F50-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 12:55: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mango-bay.com (mail.mango-bay.com [208.206.15.12]) by hub.freebsd.org (Postfix) with ESMTP id 3D6BE37B402 for ; Sat, 26 Jan 2002 12:54:58 -0800 (PST) Received: from gateway ([63.70.155.54]) by mail.mango-bay.com (Post.Office MTA v3.5.3 release 223 ID# 0-52377U2500L250S0V35) with SMTP id com; Sat, 26 Jan 2002 15:58:19 -0500 From: "Joe & Fhe Barbish" To: Cc: "FBSD Questions" , "Doug Reynolds" Subject: RE: Apache_FP ? Date: Sat, 26 Jan 2002 15:54:53 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <3.0.5.32.20020126142238.01831ca0@mail.sage-american.com> X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG So are you saying that if I code ~/username in a apache declaratives in hhtpd.conf, apache will know it really is at /usr/home/username and if I coded /username apache would know it's really at /usr/local/www/data/username? Could you post a example of the declaratives in hhtpd.conf that would create one of each kind? Would web site content created by mswindows FrontPage 2000 client, that was ftp downloaded from the Winbox into a apache server that does not have the FP_mod installed still work? -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of jacks@sage-american.com Sent: Saturday, January 26, 2002 3:23 PM To: Joe & Fhe Barbish Cc: Doug Reynolds; FBSD Questions Subject: RE: Apache_FP ? The ~/username (with tilde) is a ~/userhome directory of an #adduser to the system. The other is any name of a directory which can also be named after an existing user, but is NOT the same as the user's $HOME directory. You can FTP files & subdirectories to a web created by FrontPage, BUT FrontPage keeps an index of all stuff kept in its webs and wants to know about them. For instance, FPage keeps track of links should you move a linked file, it will ask it you want it to be changed. Thus, IF you are going to make use of FrontPage to make webs, it's best to use FrontPage to transfer files so it can keep track. Also, you can edit files directly on the live web thru FP. Then, publish the web back to your local machine. It will publish both ways (only changed pages if you desire to save time). If you are going to author web pages locally and primarily use FTP to upload, then there's not much reason to use FP..... At 03:07 PM 1.26.2002 -0500, Joe & Fhe Barbish wrote: >Ok, so yes Is the answer to my original question. >But reading this thread you talk about /~username and /username >as if they are two different things. >Please explain the difference. > >Could you post a example of the declaratives in hhtpd.conf >that would create what we are talking about? > >Will web site content created by mswindows FrontPage 2000, >that was ftp loaded into a apache subdirectory work, >or does the fp_mod provide more that just the function of >downloading from within the mswindows fp client application? > >Thanks >Joe Barbish > >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of >jacks@sage-american.com >Sent: Saturday, January 26, 2002 12:31 PM >To: Doug Reynolds; FBSD Questions; Joe & Fhe Barbish >Subject: Re: Apache_FP ? > >Thanks, Doug. I think the confusion is that the original poster's question >was unclear in that his "user" example is not the usual structure, i.e., >"tom.index" > >"...Can Apache_FP have directory based web sites that would be >accessed by a url of this type http://www.domain.com/dir_name or >http://www.domain.com/tom.index where domain points to the >apache server and (dir_name and tom.index)..." > >...further top the "index" though, each subweb can have an index.html and >be reached by: >www.website.com/tom/ >...or: >www.website.com/tom/tom.html > >...and so on... > >But, Doug, I believe your clarification is correct about the user's home >directory & FPage. > >At 11:50 AM 1.26.2002 -0500, Doug Reynolds wrote: >>On Sat, 26 Jan 2002 10:37:26 -0600, jacks@sage-american.com wrote: >> >>>"....you can't, however, make www.website.com/~username/ accessable by >>>frontpage. you have to ftp the files in...." >>> >>>This is not true. I make www.website.com/websitedir using FrontPage all >the >>>time (for 5 years) now. They are "subwebs" or "child webs". I have one >main >>>website with about 20 subwebs. Some are open and some require logins. >>> >>>After creating a "new web" off of the main domain, you ask FPage to "list >>>webs" under www.website and it will show all its children or subwebs >>>separately... all of which may have separate logins for admin, authoring >or >>>whatever. They may be "protected webs" that require a login to enter and >>>browse or may be open to all. During creation (or even afterwards) in >>>"tools/permissions" you can tell it to have "unique permissions" or have >it >>>the same as the root. >> >>that is what I said, even though I wasn't a 100% clear on >>www.website.com/dir/ which is a sub web, and i said you can also point >>different hostnames to it. like my www.rebel.tj points to the >>wastegate.net/mav/ directory. >> >>however, you can't have the www.website.com/~username/ work under >>frontpage. you can have www.website.com/username/, but you have to set >>that up though the fpsvradm.exe, whereis the /~username/, all the user >>has to do is upload there page to the web directory. >> >>--- >>doug reynolds | the maverick | mav@wastegate.net >> >>PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB >> >> >> >> > >Best regards, >Jack L. Stone, >Server Admin > >=================================================== >Sage-American >http://www.sage-american.com >jacks@sage-american.com > >"My center is giving way, my right is in retreat; >....situation excellent! ....I shall attack!" >=================================================== > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 13: 2:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sage-american.com (sage-american.com [216.122.141.44]) by hub.freebsd.org (Postfix) with ESMTP id 1A9C837B400 for ; Sat, 26 Jan 2002 13:02:40 -0800 (PST) Received: from SAGEONE (adsl-64-219-20-214.dsl.crchtx.swbell.net [64.219.20.214]) by sage-american.com (8.9.3/8.9.3) with SMTP id PAA16957; Sat, 26 Jan 2002 15:02:32 -0600 (CST) Message-Id: <3.0.5.32.20020126150229.01831ca0@mail.sage-american.com> X-Sender: jacks@mail.sage-american.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Sat, 26 Jan 2002 15:02:29 -0600 To: "Joe & Fhe Barbish" From: jacks@sage-american.com Subject: RE: Apache_FP ? Cc: "FBSD Questions" , "Doug Reynolds" In-Reply-To: References: <3.0.5.32.20020126142238.01831ca0@mail.sage-american.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Joe: I have never set up anyone's $HOME directory in any of our websites.... we use vhosts where each one is a "root web" under the setups of apache httpd.conf. At 03:54 PM 1.26.2002 -0500, Joe & Fhe Barbish wrote: >So are you saying that if I code ~/username in a apache >declaratives in hhtpd.conf, apache will know it really >is at /usr/home/username and if I coded /username >apache would know it's really at /usr/local/www/data/username? > >Could you post a example of the declaratives in hhtpd.conf >that would create one of each kind? > >Would web site content created by mswindows FrontPage 2000 client, >that was ftp downloaded from the Winbox into a apache server that >does not have the FP_mod installed still work? > > >-----Original Message----- >From: owner-freebsd-questions@FreeBSD.ORG >[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of >jacks@sage-american.com >Sent: Saturday, January 26, 2002 3:23 PM >To: Joe & Fhe Barbish >Cc: Doug Reynolds; FBSD Questions >Subject: RE: Apache_FP ? > >The ~/username (with tilde) is a ~/userhome directory of an #adduser to the >system. The other is any name of a directory which can also be named after >an existing user, but is NOT the same as the user's $HOME directory. > >You can FTP files & subdirectories to a web created by FrontPage, BUT >FrontPage keeps an index of all stuff kept in its webs and wants to know >about them. For instance, FPage keeps track of links should you move a >linked file, it will ask it you want it to be changed. > >Thus, IF you are going to make use of FrontPage to make webs, it's best to >use FrontPage to transfer files so it can keep track. Also, you can edit >files directly on the live web thru FP. Then, publish the web back to your >local machine. It will publish both ways (only changed pages if you desire >to save time). If you are going to author web pages locally and primarily >use FTP to upload, then there's not much reason to use FP..... > >At 03:07 PM 1.26.2002 -0500, Joe & Fhe Barbish wrote: >>Ok, so yes Is the answer to my original question. >>But reading this thread you talk about /~username and /username >>as if they are two different things. >>Please explain the difference. >> >>Could you post a example of the declaratives in hhtpd.conf >>that would create what we are talking about? >> >>Will web site content created by mswindows FrontPage 2000, >>that was ftp loaded into a apache subdirectory work, >>or does the fp_mod provide more that just the function of >>downloading from within the mswindows fp client application? >> >>Thanks >>Joe Barbish >> >>-----Original Message----- >>From: owner-freebsd-questions@FreeBSD.ORG >>[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of >>jacks@sage-american.com >>Sent: Saturday, January 26, 2002 12:31 PM >>To: Doug Reynolds; FBSD Questions; Joe & Fhe Barbish >>Subject: Re: Apache_FP ? >> >>Thanks, Doug. I think the confusion is that the original poster's question >>was unclear in that his "user" example is not the usual structure, i.e., >>"tom.index" >> >>"...Can Apache_FP have directory based web sites that would be >>accessed by a url of this type http://www.domain.com/dir_name or >>http://www.domain.com/tom.index where domain points to the >>apache server and (dir_name and tom.index)..." >> >>...further top the "index" though, each subweb can have an index.html and >>be reached by: >>www.website.com/tom/ >>...or: >>www.website.com/tom/tom.html >> >>...and so on... >> >>But, Doug, I believe your clarification is correct about the user's home >>directory & FPage. >> >>At 11:50 AM 1.26.2002 -0500, Doug Reynolds wrote: >>>On Sat, 26 Jan 2002 10:37:26 -0600, jacks@sage-american.com wrote: >>> >>>>"....you can't, however, make www.website.com/~username/ accessable by >>>>frontpage. you have to ftp the files in...." >>>> >>>>This is not true. I make www.website.com/websitedir using FrontPage all >>the >>>>time (for 5 years) now. They are "subwebs" or "child webs". I have one >>main >>>>website with about 20 subwebs. Some are open and some require logins. >>>> >>>>After creating a "new web" off of the main domain, you ask FPage to "list >>>>webs" under www.website and it will show all its children or subwebs >>>>separately... all of which may have separate logins for admin, authoring >>or >>>>whatever. They may be "protected webs" that require a login to enter and >>>>browse or may be open to all. During creation (or even afterwards) in >>>>"tools/permissions" you can tell it to have "unique permissions" or have >>it >>>>the same as the root. >>> >>>that is what I said, even though I wasn't a 100% clear on >>>www.website.com/dir/ which is a sub web, and i said you can also point >>>different hostnames to it. like my www.rebel.tj points to the >>>wastegate.net/mav/ directory. >>> >>>however, you can't have the www.website.com/~username/ work under >>>frontpage. you can have www.website.com/username/, but you have to set >>>that up though the fpsvradm.exe, whereis the /~username/, all the user >>>has to do is upload there page to the web directory. >>> >>>--- >>>doug reynolds | the maverick | mav@wastegate.net >>> >>>PGP Public Key Fingerprint: 6E7B 9993 B503 6D45 E33A 2019 26E5 C1DB >>> >>> >>> >>> >> >>Best regards, >>Jack L. Stone, >>Server Admin >> >>=================================================== >>Sage-American >>http://www.sage-american.com >>jacks@sage-american.com >> >>"My center is giving way, my right is in retreat; >>....situation excellent! ....I shall attack!" >>=================================================== >> >>To Unsubscribe: send mail to majordomo@FreeBSD.org >>with "unsubscribe freebsd-questions" in the body of the message >> >> >> > >Best regards, >Jack L. Stone, >Server Admin > >=================================================== >Sage-American >http://www.sage-american.com >jacks@sage-american.com > >"My center is giving way, my right is in retreat; >....situation excellent! ....I shall attack!" >=================================================== > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > Best regards, Jack L. Stone, Server Admin =================================================== Sage-American http://www.sage-american.com jacks@sage-american.com "My center is giving way, my right is in retreat; ....situation excellent! ....I shall attack!" =================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 13:19:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cactus.fi.uba.ar (cactus.fi.uba.ar [157.92.49.108]) by hub.freebsd.org (Postfix) with ESMTP id 9951A37B404 for ; Sat, 26 Jan 2002 13:19:44 -0800 (PST) Received: from cactus.fi.uba.ar (cactus.fi.uba.ar [157.92.49.108]) by cactus.fi.uba.ar (8.11.6/8.11.6) with ESMTP id g0QLI2t78821; Sat, 26 Jan 2002 18:18:02 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Sat, 26 Jan 2002 18:18:02 -0300 (ART) From: Fernando Gleiser To: "Christopher J. Umina" Cc: Subject: Re: fsck on root In-Reply-To: <001301c1a6aa$187b9d10$0301a8c0@uminafamily.com> Message-ID: <20020126181552.N77730-100000@cactus.fi.uba.ar> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 26 Jan 2002, Christopher J. Umina wrote: > How can I run fsck with write capabilities on the root filesystem. The only way I can see of doing it is rebooting the server incorrectly. When I reboot it wrong it tells me the superblock is incorrect in size. I need to run it again. > Please, wrap your lines at ~70 chars. You can boot in single user mode and run fsck / while the file system is mounted read-only. Fer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 13:37:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id 5595737B476 for ; Sat, 26 Jan 2002 13:36:56 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 7A55D2B82D; Sat, 26 Jan 2002 22:36:53 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 32D341A5; Sun, 27 Jan 2002 08:36:48 +1100 (EST) Date: Sun, 27 Jan 2002 08:36:48 +1100 From: Edwin Groothuis To: "J . S ." Cc: freebsd-questions@freebsd.org Subject: Re: rc.local? crontab? what? Message-ID: <20020127083648.P823@k7.mavetju.org> Mail-Followup-To: Edwin Groothuis , "J . S ." , freebsd-questions@freebsd.org References: <20020126152755.3bc451ec.johann@broadpark.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020126152755.3bc451ec.johann@broadpark.no>; from johann@broadpark.no on Sat, Jan 26, 2002 at 03:27:55PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 03:27:55PM +0100, J . S . wrote: > I'm in the process of setting up an additional ftpd on my server > (openftpd.org), which has been installed in user ftpd's home directory. > The user ftpd has a nonexistent shell. > > How can I get it loaded at startup? > > I tried putting: > > su ftpd -c /usr/home/ftpd/openftpd/sbin/ftpd > > in /etc/rc.local, but I heard that doesn't work now that I removed ftpd's > shell. Have a look at /etc/inetd.conf on how the normal ftpd is started and use a similair way to start yours. Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 13:39:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp018.mail.yahoo.com (smtp018.mail.yahoo.com [216.136.174.115]) by hub.freebsd.org (Postfix) with SMTP id 9CBE837B416 for ; Sat, 26 Jan 2002 13:39:41 -0800 (PST) Received: from dsl254-081-103.nyc1.dsl.speakeasy.net (HELO yahoo.com) (216.254.81.103) by smtp.mail.vip.sc5.yahoo.com with SMTP; 26 Jan 2002 21:39:41 -0000 Message-ID: <3C532210.7040902@yahoo.com> Date: Sat, 26 Jan 2002 16:39:28 -0500 From: Christian Sauer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.3) Gecko/20020114 X-Accept-Language: en-us MIME-Version: 1.0 To: questions@freebsd.org Subject: Re: question about /etc/periodic.conf (FIXED) References: <15443.2496.918511.507772@guru.mired.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Mike Meyer wrote: > Christian Sauer types: >>problem is, now when the periodic jobs kick off, I keep getting "YES: >>not found" listed in the log files that are mailed to me. >> > > Your /etc/periodic.conf file is broken, and trying to run the YES > command. Without seeing the file, I can't say more. > Yep, that was where the problem was. As I opened it to cut n' paste into a message, I saw that there was misplaced tab in the file: weekly_cvsup_enable= "YES" instead of: weekly_cvsup_enable="YES" Thank you for the pointer ... it's always the little simple things! -Christian _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 14:21:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp05.retemail.es (smtp05.iddeo.es [62.81.186.15]) by hub.freebsd.org (Postfix) with ESMTP id AC20837B400 for ; Sat, 26 Jan 2002 14:21:04 -0800 (PST) Received: from conway.localdomain ([62.174.70.24]) by smtp05.retemail.es (InterMail vM.5.01.03.02 201-253-122-118-102-20010403) with SMTP id <20020126222047.BMAI1011.smtp05.retemail.es@conway.localdomain> for ; Sat, 26 Jan 2002 23:20:47 +0100 Date: Sat, 26 Jan 2002 23:22:56 +0100 From: F.Xavier Noria To: freebsd-questions@freebsd.org Subject: customizing CPUTYPE Message-Id: <20020126232256.281b12f2.fxn@isoco.com> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have an AMD Athlon XP 1700, do you know whether there is a suitable value for CPUTYPE to customize make.conf? -- fxn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 14:36:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 8CAE237B402 for ; Sat, 26 Jan 2002 14:36:41 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 462FCBD4C; Sat, 26 Jan 2002 14:36:41 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id OAA12990; Sat, 26 Jan 2002 14:36:40 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g0QMdnf06829; Sat, 26 Jan 2002 14:39:49 -0800 (PST) (envelope-from swear@blarg.net) To: "Bob Giesen" Cc: "freebsd-questions" Subject: Re: shells confusion References: <20020126020430.P175-100000@BLAST> <004301c1a684$0de9bb00$ab41d03f@pegasus> From: swear@blarg.net (Gary W. Swearingen) Date: 26 Jan 2002 14:39:49 -0800 In-Reply-To: <004301c1a684$0de9bb00$ab41d03f@pegasus> Message-ID: Lines: 40 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Bob Giesen" writes: > [...] However, should you learn one of those whiz-bang > shells, first, you may find dealing with Bourne-shell scripts a bit more > frustrating when you find that you have to take into account its > limitations. Our newbie should also know that "Bourne shell" has no one definition. I'm not sure of the history of the term, but I seem to remember that Mr. Bourne wrote the first one about 25 years ago and at some point AT&T choose it for most of their scripts and developed the official version until I don't know when. (They later switched to KSH, IIRC.) The various non-BSD Unixes (and later the BSDs) all developed their own "sh" programs that had many features in common with the AT&T version and some differences. Eventually (1992?), POSIX came up with a sort of minimal definition which allowed variants. Probably all shells today attempt to follow to a high degree, usually with a POSIX flag which tries harder to follow the rules, but which few use. I suspect that widely-compatible "sh" scripts these days go beyond both old "sh" scripts and POSIX, but I don't know for sure. It shouldn't be hard to find more reliable history with a WWW searcher. But FreeBSD's "sh" (or any other, I suppose) has many features that go beyond old-fashioned Bourne shell and POSIX. I have no reason to believe that the FreeBSD "sh" is anymore compatible with most other systems's "sh" scripts than "ksh", "bash", or true Unix "sh" variants (with or without POSIX flags set), except that the FreeBSD "sh" man page doesn't discuss POSIX issues much (but that might be just a documentation issue.) It does have many FEWER advanced features, though, so I do agree with the above quote. Finally, I know that some people choose to support non-GPL software when it's not a great sacrifice, which rules out "bash" for some. After dropping GNU/Linux, I choose "pdksh" so I could later easily carry it's peculiarities with me between OSes instead of learning those of FreeBSD's "sh" (though maybe it's as portable as "pdksh"). It works well interactively and seems to well-support the writing of broadly- compatible "sh" scripts (when you don't use the documented ksh-only stuff that you reserve for the command line). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 15: 2: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mk-smarthost-1.mail.uk.tiscali.com (mk-smarthost-1.mail.uk.tiscali.com [212.74.112.71]) by hub.freebsd.org (Postfix) with ESMTP id A23AC37B416; Sat, 26 Jan 2002 15:01:46 -0800 (PST) Received: from [80.225.82.231] (helo=ppp-225-82-231.friaco.access.uk.tiscali.com) by mk-smarthost-1.mail.uk.tiscali.com with esmtp (Exim 3.33 #1) id 16UbpQ-000HTp-00; Sat, 26 Jan 2002 23:01:45 +0000 Date: Sat, 26 Jan 2002 23:04:30 +0000 (GMT) From: Tim To: Cc: , Subject: atapi read digitial audio failing Message-ID: <20020126225217.R468-100000@charon.home.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm currently using FreeBSD 4.4 Release with a relatively new mainboard. I have found that I am no longer able to read digital audio from my old CDROM or new DVD. Unfortunately the last time I tested this, and found it to work, was with my old cdrom, old mainboard and FreeBSD 3.2. I've seen this reported on the mailing lists by two others: David Rufino and Mark Hannon I also have a VIA motherboard with VIA 82C686 controller. It seems that this problem is not related to configuration or the applications that are being used, but hardware/drivers. Errors I'm seeing are: acd0: READ_CD - ABORTED COMMAND asc=4e ascq=00 error=04 acd0: READ_CD - ILLEGAL REQUEST asc=21 ascq=00 error=04 If anyone knows what is wrong or how this problem can be fixed could they please let me know. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 15:48:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mk-smarthost-1.mail.uk.tiscali.com (mk-smarthost-1.mail.uk.tiscali.com [212.74.112.71]) by hub.freebsd.org (Postfix) with ESMTP id 41A6737B400; Sat, 26 Jan 2002 15:48:30 -0800 (PST) Received: from [80.225.82.231] (helo=ppp-225-82-231.friaco.access.uk.tiscali.com) by mk-smarthost-1.mail.uk.tiscali.com with esmtp (Exim 3.33 #1) id 16UcYd-000Ngv-00; Sat, 26 Jan 2002 23:48:28 +0000 Date: Sat, 26 Jan 2002 23:51:13 +0000 (GMT) From: Tim Borgeaud To: Cc: , Subject: RE: atapi read digitial audio failing Message-ID: <20020126234841.D538-100000@charon.home.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I also appear to be having a problem getting my email address sorted at the mo. It should be t_borgeaud@lineone.net When I'm in less of a hurry I'll sort it out. Sorry about the daft address in my previous mail. Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 16: 2:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id C608E37B402 for ; Sat, 26 Jan 2002 16:02:43 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 9B2512B832; Sun, 27 Jan 2002 01:02:40 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id E20D5345; Sun, 27 Jan 2002 11:02:33 +1100 (EST) Date: Sun, 27 Jan 2002 11:02:33 +1100 From: Edwin Groothuis To: "F . Xavier Noria" Cc: freebsd-questions@freebsd.org Subject: Re: customizing CPUTYPE Message-ID: <20020127110233.Q823@k7.mavetju.org> Mail-Followup-To: Edwin Groothuis , "F . Xavier Noria" , freebsd-questions@freebsd.org References: <20020126232256.281b12f2.fxn@isoco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020126232256.281b12f2.fxn@isoco.com>; from fxn@isoco.com on Sat, Jan 26, 2002 at 11:22:56PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 11:22:56PM +0100, F . Xavier Noria wrote: > I have an AMD Athlon XP 1700, do you know whether there is a suitable > value for CPUTYPE to customize make.conf? When you boot your kernel, it will tell you what kind of CPU you have: Dec 24 07:18:48 k7 /kernel: CPU: AMD Athlon(tm) Processor (1029.99-MHz 686-class CPU) So for me it would be 686. Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 16: 3:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp03.wxs.nl (smtp03.wxs.nl [195.121.6.37]) by hub.freebsd.org (Postfix) with ESMTP id E2F0F37B416 for ; Sat, 26 Jan 2002 16:03:07 -0800 (PST) Received: from cybertron.kruijff ([213.10.151.186]) by smtp03.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id GQKLH500.G1H; Sun, 27 Jan 2002 01:03:05 +0100 Date: Sun, 27 Jan 2002 01:03:05 +0100 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: Alex X-Priority: 3 (Normal) Message-ID: <8547256571.20020127010305@cybertron.tmfweb.nl> To: Tom Kersten Cc: Aleksander Rozman - Andy , freebsd-questions@freebsd.org Subject: Re[2]: really easy java question.... In-Reply-To: <20020126172914.84527.qmail@web10004.mail.yahoo.com> References: <20020126172914.84527.qmail@web10004.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Tom, Saturday, January 26, 2002, 6:29:14 PM, you wrote: TK> --- Aleksander Rozman - Andy TK> wrote: >> At 26.1.2002, you wrote: >> >Hello all, >> > >> >I have installed linux-jdk-1.3.1 from on FreeBSD >> 4.4 >> >from the ports. When I try to type "java" or >> "javac" >> >it doesn't find the commmand...I can type the >> complete >> >path (/usr/local/jdxxxx/bin/javac ...or ../java) >> and >> >it works. I have added /usr/local/linux-jdkxxx/bin >> to >> >my path in my .cshrc file but still no >> luck...what's >> >the deal??? >> > >> > >> >Thomas >> >> Easy question, easy answer. >> 1. Install JDK from Linux (you must have Linux >> support activated) >> 2. Set path to Linux JDK >> 3. Install >> TK> I think I have done all of this. As I said, I have TK> installed linux-jdk1.3.1. It installed fine. Linux TK> support is activated. I added the absolute path to my TK> path variable in .cshrc and typed "rehash" and TK> restarted. The commands "javac" and "java" still do TK> not work unless I type the complete pathname TK> (eg.-/usr/local/linux-jdk1.3.1/bin/javac) + filename TK> ....then it works fine. But, I do not want to have to TK> do that every time I compile a java program. Any idea TK> what is going wrong? TK> Thomas Does it respond at all when you just type 'java'? Or does it just say File not foud? If the later is the case, then it isn't a Java problem. So it most likly that the path isn't correctly set, evendue you think it is. As a work arround, did you try putting up a alias to the files? -- Best regards, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 16:11:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 7238437B404 for ; Sat, 26 Jan 2002 16:11:35 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 06C6CBD3C; Sat, 26 Jan 2002 16:11:35 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id QAA29317; Sat, 26 Jan 2002 16:11:34 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g0R0EhQ06852; Sat, 26 Jan 2002 16:14:43 -0800 (PST) (envelope-from swear@blarg.net) To: Jim Conner Cc: questions@FreeBSD.ORG Subject: Re: shells confusion References: <947431@toto.iv> <5.1.0.14.0.20020126153501.04980750@mail.enterit.com> From: swear@blarg.net (Gary W. Swearingen) Date: 26 Jan 2002 16:14:42 -0800 In-Reply-To: <5.1.0.14.0.20020126153501.04980750@mail.enterit.com> Message-ID: <4sg04s645p.04s@localhost.localdomain> Lines: 44 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jim Conner writes: > sh is the right way to go. In my last email I suggested ksh and I hold > true to that. Fortunately, if you know how to sh script, you know how > to basicly ksh script. I still suggest scripting in ksh, however. :) I'm afraid that the same could be said for any sh-family script. Worse, if you know how to write ksh (or other advanced shell) script, you don't necessarily know how to write sh script (ie, a script that will work well with other shells that claim to understand sh script). You know too much stuff -- stuff that's only supported by the advanced shell -- but not enough stuff -- all the stuff that makes your script incompatible. Of course, most shell man pages try to tell you what's incompatible, but some aren't very good at it. The FreeBSD sh man page just mentions a "few Berkeley extensions". I suppose those are widely compatible, but it isn't obvious. Will Sun's "sh" or "ksh" or "bash" read almost any FreeBSD "sh" scripts I write using all it's features? But I think you still wind up needing to know at least two shell languages. One that you hope is understood by other shells which you use when you want portability more than a better language and one for the other case. (I which someone would write a man page for that virtual shell language, probably with some notes about unavoidable incompatibilities with various common shells.) I think the suggestion to script in ksh (or bash) is only valid for the non-portable case and the case where you know you can carry the shell with you. The same cases where Python and Perl are competitors with ksh and bash. Since non-portability is generally a bad thing, the issue seems to come down to your choose of language for scripts which require special script interpreters to be installed. From what I've read, ksh93 deserves (except for it's rather restrictive licensing) as much respect as Python or Perl as a choice that should be supported by OS distributions. (But not bash, as it doesn't add enough over portable "sh". OK for the command line, but not for scripting.) But the beginner's first language should always be portable "sh" (the closest to this being "sh" on FreeBSD and (AFAIK) with other sh-family shells being usable only if their "incompatibility/POSIX" notes are paid attention to. (And "pdksh" is best for that, IMO, as it's truly free, portable, well-documented regarding incompatibilities, more sh-compatible than bash, and is good for interactive use.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 16:27:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from apollo.pwhsnet.com (adsl-64-164-36-143.dsl.scrm01.pacbell.net [64.164.36.143]) by hub.freebsd.org (Postfix) with ESMTP id 4BBCB37B402 for ; Sat, 26 Jan 2002 16:27:42 -0800 (PST) Received: from zeus (patrick@zeus [192.168.0.35] (may be forged)) by apollo.pwhsnet.com (8.11.6/8.11.6) with SMTP id g0R0Qoh47709 for ; Sat, 26 Jan 2002 16:26:50 -0800 (PST) (envelope-from patrick@pwhsnet.com) From: Patrick Fish (patrick@pwhsnet.com) Message-ID: <006101c1a6c8$fa13dbc0$2300a8c0@zeus> To: Subject: back to 4.4-stable Date: Sat, 26 Jan 2002 16:24:25 -0800 Organization: PWHS Networks MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_005E_01C1A685.EB91D9F0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_005E_01C1A685.EB91D9F0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I just upgraded to 4.5-RC because i had 4 in my cvsup file, not 4_4, i = just downloaded 4_4 and when i goto make world i get: =3D=3D=3D> share =3D=3D=3D> share/colldef install -c -m 644 -o root -g wheel cs_CZ.ISO_8859-2.out = /usr/share/locale/cs_CZ.ISO_8859-2/LC_COLLATE install -c -m 644 -o root -g wheel de_DE.DIS_8859-15.out = /usr/share/locale/de_DE.DIS_8859-15/LC_COLLATE install -c -m 644 -o root -g wheel de_DE.ISO_8859-1.out = /usr/share/locale/de_DE.ISO_8859-1/LC_COLLATE install -c -m 644 -o root -g wheel es_ES.DIS_8859-15.out = /usr/share/locale/es_ES.DIS_8859-15/LC_COLLATE install -c -m 644 -o root -g wheel es_ES.ISO_8859-1.out = /usr/share/locale/es_ES.ISO_8859-1/LC_COLLATE install -c -m 644 -o root -g wheel is_IS.DIS_8859-15.out = /usr/share/locale/is_IS.DIS_8859-15/LC_COLLATE install -c -m 644 -o root -g wheel is_IS.ISO_8859-1.out = /usr/share/locale/is_IS.ISO_8859-1/LC_COLLATE install -c -m 644 -o root -g wheel la_LN.ASCII.out = /usr/share/locale/la_LN.ASCII/LC_COLLATE install -c -m 644 -o root -g wheel la_LN.DIS_8859-15.out = /usr/share/locale/la_LN.DIS_8859-15/LC_COLLATE install -c -m 644 -o root -g wheel la_LN.ISO_8859-1.out = /usr/share/locale/la_LN.ISO_8859-1/LC_COLLATE install -c -m 644 -o root -g wheel la_LN.ISO_8859-2.out = /usr/share/locale/la_LN.ISO_8859-2/LC_COLLATE install -c -m 644 -o root -g wheel la_LN.ISO_8859-4.out = /usr/share/locale/la_LN.ISO_8859-4/LC_COLLATE install -c -m 644 -o root -g wheel lt_LT.ISO_8859-4.out = /usr/share/locale/lt_LT.ISO_8859-4/LC_COLLATE install -c -m 644 -o root -g wheel ru_SU.CP866.out = /usr/share/locale/ru_SU.CP866/LC_COLLATE install: /usr/share/locale/ru_SU.CP866/LC_COLLATE: Too many levels of = symbolic links *** Error code 71 Stop in /usr/src/share/colldef. *** Error code 1 Stop in /usr/src/share. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. apollo# ...any ideas? i tryed make clean already -- Patrick Fish - patrick@pwhsnet.com PWHS Networks - http://www.pwhsnet.com ------=_NextPart_000_005E_01C1A685.EB91D9F0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I just upgraded to 4.5-RC because i had = 4 in my=20 cvsup file, not 4_4, i just downloaded 4_4 and when i goto make world i=20 get:
 

=3D=3D=3D> share
=3D=3D=3D> share/colldef
install = -c -m 644 -o root -g=20 wheel  cs_CZ.ISO_8859-2.out=20 /usr/share/locale/cs_CZ.ISO_8859-2/LC_COLLATE
install -c -m 644 -o = root -g=20 wheel  de_DE.DIS_8859-15.out=20 /usr/share/locale/de_DE.DIS_8859-15/LC_COLLATE
install -c -m 644 -o = root -g=20 wheel  de_DE.ISO_8859-1.out=20 /usr/share/locale/de_DE.ISO_8859-1/LC_COLLATE
install -c -m 644 -o = root -g=20 wheel  es_ES.DIS_8859-15.out=20 /usr/share/locale/es_ES.DIS_8859-15/LC_COLLATE
install -c -m 644 -o = root -g=20 wheel  es_ES.ISO_8859-1.out=20 /usr/share/locale/es_ES.ISO_8859-1/LC_COLLATE
install -c -m 644 -o = root -g=20 wheel  is_IS.DIS_8859-15.out=20 /usr/share/locale/is_IS.DIS_8859-15/LC_COLLATE
install -c -m 644 -o = root -g=20 wheel  is_IS.ISO_8859-1.out=20 /usr/share/locale/is_IS.ISO_8859-1/LC_COLLATE
install -c -m 644 -o = root -g=20 wheel  la_LN.ASCII.out = /usr/share/locale/la_LN.ASCII/LC_COLLATE
install=20 -c -m 644 -o root -g wheel  la_LN.DIS_8859-15.out=20 /usr/share/locale/la_LN.DIS_8859-15/LC_COLLATE
install -c -m 644 -o = root -g=20 wheel  la_LN.ISO_8859-1.out=20 /usr/share/locale/la_LN.ISO_8859-1/LC_COLLATE
install -c -m 644 -o = root -g=20 wheel  la_LN.ISO_8859-2.out=20 /usr/share/locale/la_LN.ISO_8859-2/LC_COLLATE
install -c -m 644 -o = root -g=20 wheel  la_LN.ISO_8859-4.out=20 /usr/share/locale/la_LN.ISO_8859-4/LC_COLLATE
install -c -m 644 -o = root -g=20 wheel  lt_LT.ISO_8859-4.out=20 /usr/share/locale/lt_LT.ISO_8859-4/LC_COLLATE
install -c -m 644 -o = root -g=20 wheel  ru_SU.CP866.out = /usr/share/locale/ru_SU.CP866/LC_COLLATE
install:=20 /usr/share/locale/ru_SU.CP866/LC_COLLATE: Too many levels of symbolic=20 links
*** Error code 71
 
Stop in /usr/src/share/colldef.
*** Error code 1
 
Stop in /usr/src/share.
*** Error code 1
 
Stop in /usr/src.
*** Error code 1
 
Stop in /usr/src.
*** Error code 1
 
Stop in /usr/src.
*** Error code 1
 
Stop in /usr/src.
apollo#
 
...any ideas? i tryed make clean already

--
Patrick Fish -
patrick@pwhsnet.com
PWHS Networks -=20 http://www.pwhsnet.com
 
 
------=_NextPart_000_005E_01C1A685.EB91D9F0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 16:32: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from poontang.schulte.org (poontang.schulte.org [209.134.156.197]) by hub.freebsd.org (Postfix) with ESMTP id CA67F37B400 for ; Sat, 26 Jan 2002 16:31:58 -0800 (PST) Received: from tarmap.nospam.schulte.org (tarmap.schulte.org [209.134.156.198]) by poontang.schulte.org (Postfix) with ESMTP id ABB6CD1598; Sat, 26 Jan 2002 18:31:57 -0600 (CST) Message-Id: <5.1.0.14.0.20020126182943.03444b00@pop3s.schulte.org> X-Sender: (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sat, 26 Jan 2002 18:31:53 -0600 To: Patrick Fish (patrick@pwhsnet.com) , From: Christopher Schulte Subject: Re: back to 4.4-stable In-Reply-To: <006101c1a6c8$fa13dbc0$2300a8c0@zeus> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 04:24 PM 1/26/2002 -0800, patrick@pwhsnet.com wrote: >I just upgraded to 4.5-RC because i had 4 in my cvsup file, not 4_4, i >just downloaded 4_4 and when i goto make world i get: [snip] >install: /usr/share/locale/ru_SU.CP866/LC_COLLATE: Too many levels of >symbolic links >*** Error code 71 > >...any ideas? i tryed make clean already Try this? # chflags -R noschg /usr/obj/usr # rm -rf /usr/obj/usr # cd /usr/src # make cleandir # make cleandir (yes cleandir 2 times) Then build your world... >-- >Patrick Fish - patrick@pwhsnet.com >PWHS Networks - http://www.pwhsnet.com --chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 17:17:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from pc1-dale5-0-cust136.not.cable.ntl.com (pc1-dale5-0-cust136.not.cable.ntl.com [80.1.76.136]) by hub.freebsd.org (Postfix) with SMTP id B3BA437B402 for ; Sat, 26 Jan 2002 17:17:17 -0800 (PST) Received: (qmail 49653 invoked from network); 27 Jan 2002 01:17:08 -0000 Received: from localhost (HELO matt.thebigchoice.com) (127.0.0.1) by localhost with SMTP; 27 Jan 2002 01:17:08 -0000 Date: Sun, 27 Jan 2002 01:17:08 +0000 From: Matt H To: freebsd-questions@FreeBSD.ORG Subject: Re: shells confusion Message-Id: <20020127011708.5d76e328.matt@proweb.co.uk> In-Reply-To: <4sg04s645p.04s@localhost.localdomain> References: <947431@toto.iv> <5.1.0.14.0.20020126153501.04980750@mail.enterit.com> <4sg04s645p.04s@localhost.localdomain> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 26 Jan 2002 16:14:42 -0800 "swear@blarg.net" wrote: > Jim Conner writes: > > > sh is the right way to go. In my last email I suggested ksh and I hold > > true to that. Fortunately, if you know how to sh script, you know how > > to basicly ksh script. I still suggest scripting in ksh, however. :) another factor to consider is how much software is dynamically loaded with the shell shells compiled against readline pay a penalty in startup times I'll quote from the plan9 mailing list where the dubious merits of the GNU readline library have recently been discussed : > * If [you use] dynamic linked libraries, you have taken the first step > on the slippery slope to the land of gratuitious complexity, > where even a simple "hello, world" C program can execute > 100000 [userland] instructions before it actually prints anything. > (No, I'm not kidding.) For some reason, people seem to think > adding features in dynamic libraries is "free". for quick startup, forking one should try a lean shell the file sizes of the executables don;t gove much away but : -r-xr-xr-x 1 root wheel 799464 Nov 17 20:30 /usr/local/bin/bash -r-xr-xr-x 2 root wheel 636076 Sep 18 18:25 /bin/tcsh -r-xr-xr-x 1 root wheel 448532 Sep 18 18:25 /bin/sh -r-xr-xr-x 1 root wheel 81608 Dec 5 13:40 /usr/local/bin/rc that last one is an implementation of plan9's rc shell in unix rc is worth a look (/usr/ports/shells/rc) , as it will be OS agnostic for it's supported platforms To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 17:20:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web14706.mail.yahoo.com (web14706.mail.yahoo.com [216.136.224.123]) by hub.freebsd.org (Postfix) with SMTP id C164C37B404 for ; Sat, 26 Jan 2002 17:20:29 -0800 (PST) Message-ID: <20020127012029.97046.qmail@web14706.mail.yahoo.com> Received: from [62.103.246.44] by web14706.mail.yahoo.com via HTTP; Sun, 27 Jan 2002 01:20:29 GMT Date: Sun, 27 Jan 2002 01:20:29 +0000 (GMT) From: =?iso-8859-7?q?Dimitri=20T?= Subject: shutdown To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-7 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi, is it possible to give a user (other than root) the right to shutdown the system? thanks, dimitri ps > plz. reply directy to my email address as i'm currently off the list.. ____________________________________________________________ Do You Yahoo!? ÁðïêôÞóôå ôç äùñåÜí @yahoo.gr äéåýèõíóç óáò óôï http://www.otenet.gr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 17:28:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from taiwan.com (u172-43.u203-203.giga.net.tw [203.203.172.43]) by hub.freebsd.org (Postfix) with SMTP id A87EB37B400; Sat, 26 Jan 2002 17:27:14 -0800 (PST) Received: from tpts7 by mars.seed.net.tw with SMTP id icuF59PDfT9jNgClfYvCJFGwD0C2; Sun, 27 Jan 2002 09:23:30 +0800 Message-ID: From: vip_7@pcmail.con.tw To: vip_8@kimo.com.tm Subject: **±¡¤H¸`±j¥´¼öªù°Ó«~** (¤w±½¬r) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_cPF06vWerNc61f5q" X-Mailer: ZRAVD9V24oSZVnBWlyduTsIG X-Priority: 3 X-MSMail-Priority: Normal Date: Sat, 26 Jan 2002 17:27:14 -0800 (PST) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_cPF06vWerNc61f5q Content-Type: multipart/alternative; boundary="----=_NextPart_cPF06vWerNc61f5qAA" ------=_NextPart_cPF06vWerNc61f5qAA Content-Type: text/plain; Content-Transfer-Encoding: quoted-printable =A5=BB=BA=F4=AF=B8=B6i=A4f=B6W=B9L1000=BA=D8=BA=EB=AB~=A4=CE=A8k=A4k=A7=C9=B2=C4=A4=A7=B6=A1=A5=CE=AB~! =AC=FC=C4R=B1=A1=A4H=C1=CA=AA=AB=BA=F4,=B7P=C1=C2=B1z=AA=BA=A5=FA=C1{,=AF=AC=B1z=A6=B3=AD=D3=AC=FC=A6n=AA=BA=A4@=A4=D1 =3D=3D=3D=3D=3D=3D=AFk=B7R=B1z=AA=BA=B1=A1=A4H=3D=3D=3D=3D=3D=3D=3D =B4=A3=BF=F4=B1z=A4=B5=A6~=AA=BA=B1=A1=A4H=B8`=AD=E8=A6n=ACO=A4j=A6~=AA=EC=A4T =A5=BB=BA=F4=A7Y=A4=E9=B0_=B6}=A9l=B1=B5=A8=FC=B9w=AC=F9=B1=A1=A4H=C2=A7=AA=AB! =A8=C3=B7=C7=B3=C6=A6n=C2=A7=ADn=B0e=B5=B9=B1z!! ****=B1=A1=A4H=B8`=B1j=A5=B4=BC=F6=AA=F9=B0=D3=AB~**** =A7=D6=A5=B4=B6}=AA=FE=A5[=C0=C9=AE=D7,=B4=A3=ABe=B4=C0=B1z=AA=BA=B1=A1=A4H=B7=C7=B3=C6=A4@=A5=F7=B6q=A8=AD=ADq=A7@=AA=BA=C2=A7=AA=AB! http://sexbox.ohbi.net/ ------=_NextPart_cPF06vWerNc61f5qAA-- ------=_NextPart_cPF06vWerNc61f5q Content-Type: application/octet-stream; name="C:\My Documents\sexbox\sexbox.htm" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="sexbox.htm" PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT6s/MRSsaGkSMHKqqu69DwvdGl0bGU+DQo8bWV0YSBodHRw LWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1iaWc1Ij4N CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQo8IS0tDQouYTkgeyAgZm9udC1mYW1pbHk6ICK3c7LT qfrF6SI7IGZvbnQtc2l6ZTogOXB0fQ0KLS0+DQo8L3N0eWxlPg0KPC9oZWFkPg0KDQo8Ym9keSBi Z2NvbG9yPSIjRkZGRkZGIiBsZWZ0bWFyZ2luPSIwIiB0b3BtYXJnaW49IjAiIG1hcmdpbndpZHRo PSIwIiBtYXJnaW5oZWlnaHQ9IjAiPg0KPGNlbnRlcj4NCiAgPHRhYmxlIHdpZHRoPSI1MDAiIGJv cmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIxIiBjbGFzcz0iYTkiPg0KICAg IDx0ciBhbGlnbj0iY2VudGVyIiBiZ2NvbG9yPSIjRkZGRkZGIj4gDQogICAgICA8dGQ+PGEgaHJl Zj0iaHR0cDovL3NleGJveC5vaGJpLm5ldC8iPjxpbWcgc3JjPSJodHRwOi8vaG9tZS5raW1vLmNv bS50dy9zdXBlcnN1cGVyODYvc2V4Ym94L3NvZ29fbG9nby5naWYiIHdpZHRoPSIzNTIiIGhlaWdo dD0iNzAiIGJvcmRlcj0iMCI+PC9hPjxicj4NCiAgICAgICAgPHRhYmxlIHdpZHRoPSI1MDAiIGJv cmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIj4NCiAgICAgICAgICA8dHIg Ymdjb2xvcj0iI0ZGRTZGRSI+IA0KICAgICAgICAgICAgPHRkIGJnY29sb3I9IiNGRjk5Q0MiPiZu YnNwOzwvdGQ+DQogICAgICAgICAgPC90cj4NCiAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPHRh YmxlIHdpZHRoPSI1MDAiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIw IiBjbGFzcz0iYTkiIGJnY29sb3I9IiNGRkZGRkYiPg0KICAgICAgICAgIDx0cj4NCiAgICAgICAg ICAgIDx0ZD4NCiAgICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjEi IGNlbGxwYWRkaW5nPSIyIiBjbGFzcz0iYTkiIHdpZHRoPSI1MDAiPg0KICAgICAgICAgICAgICAg IDx0ciBiZ2NvbG9yPSIjREREREZGIiBhbGlnbj0iY2VudGVyIiBjbGFzcz0iYTkiPiANCiAgICAg ICAgICAgICAgICAgIDx0ZCBjbGFzcz0iYTkiIHdpZHRoPSIxMTMiPjxhIGhyZWY9Imh0dHA6Ly9z ZXhib3gub2hiaS5uZXQvc2hvd3Jvb20vdmlldy5waHA/Qz01MzYiPjxpbWcgc3JjPSJodHRwOi8v dXMuZjEueWFob29mcy5jb20vdXNlcnMvNjhkYzI1ZTgvYmMvc2V4Ym94L3BhNDhzLmpwZz9iY09j Q2s4QVVRaDE3MGFZIiB3aWR0aD0iODAiIGhlaWdodD0iNjQiIGJvcmRlcj0iMCI+PC9hPjwvdGQ+ DQogICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjE0MyI+PGEgaHJlZj0iaHR0cDovL3NleGJv eC5vaGJpLm5ldC9zaG93cm9vbS92aWV3LnBocD9DPTU3NiI+PGltZyBzcmM9Imh0dHA6Ly9ob21l LmtpbW8uY29tLnR3L3N1cGVyc3VwZXI4Ni9zZXhib3gvRkc1MjRfQV9TLmpwZyIgd2lkdGg9Ijgw IiBoZWlnaHQ9IjgwIiBib3JkZXI9IjAiPjwvYT48L3RkPg0KICAgICAgICAgICAgICAgICAgPHRk IHdpZHRoPSIxMDYiPjxhIGhyZWY9Imh0dHA6Ly9zZXhib3gub2hiaS5uZXQvc2hvd3Jvb20vdmll dy5waHA/Qz05MSI+PGltZyBzcmM9Imh0dHA6Ly91cy5mMS55YWhvb2ZzLmNvbS91c2Vycy82OGRj MjVlOC9iYy9zZXhib3gvQzMwMF9BX3MuanBnP2JjT2NDazhBcENfUXNYTlgiIHdpZHRoPSI4MCIg aGVpZ2h0PSI4NCIgYm9yZGVyPSIwIj48L2E+PC90ZD4NCiAgICAgICAgICAgICAgICAgIDx0ZCB3 aWR0aD0iMTE3Ij48YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcu cGhwP0M9MTQ3Ij48aW1nIHNyYz0iaHR0cDovL2hvbWUua2ltby5jb20udHcvc3VwZXJzdXBlcjg2 L3NleGJveC9sYjI1NnMuanBnIiB3aWR0aD0iODAiIGhlaWdodD0iODAiIGJvcmRlcj0iMCI+PC9h PjwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8dHIgYmdjb2xv cj0iI0ZGRkZGRiIgYWxpZ249ImNlbnRlciI+IA0KICAgICAgICAgICAgICAgICAgPHRkIHdpZHRo PSIxMTMiPg0KICAgICAgICAgICAgICAgICAgICA8cD48YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9o YmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9NTM2Ij6+ULvuuUMtrGaqTCANCiAgICAgICAgICAg ICAgICAgICAgICDBs6++q6w8L2E+PC9wPg0KICAgICAgICAgICAgICAgICAgICA8cD48YSBocmVm PSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9NTM2Ij6vU73moUcg DQogICAgICAgICAgICAgICAgICAgICAgMTYwpLg8L2E+PC9wPg0KICAgICAgICAgICAgICAgICAg PC90ZD4NCiAgICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iYTkiIHdpZHRoPSIxNDMiPjxhIGhy ZWY9Imh0dHA6Ly9zZXhib3gub2hiaS5uZXQvc2hvd3Jvb20vdmlldy5waHA/Qz01NzYiPqz8sOqt 7LjLtmmkZqRrqcqm27yiv8c8YnI+DQogICAgICAgICAgICAgICAgICAgIK9TveahRyA2OTmkuDwv YT48L3RkPg0KICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSIxMDYiPg0KICAgICAgICAgICAg ICAgICAgICA8cD48YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcu cGhwP0M9OTEiPqTppbuzeqn6qvi49bNKPC9hPjwvcD4NCiAgICAgICAgICAgICAgICAgICAgPHA+ PGEgaHJlZj0iaHR0cDovL3NleGJveC5vaGJpLm5ldC9zaG93cm9vbS92aWV3LnBocD9DPTkxIj6v U73moUcgDQogICAgICAgICAgICAgICAgICAgICAgMTgwpLg8L2E+PC9wPg0KICAgICAgICAgICAg ICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iMTE3Ij48YSBocmVmPSJo dHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9MTQ3Ij5MQjI1Ni2sS6Sn pGsopGopPGJyPg0KICAgICAgICAgICAgICAgICAgICCvU73moUcgNjUwpLg8L2E+PC90ZD4NCiAg ICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgIDx0ciBiZ2NvbG9yPSIjRkZGRkND IiBhbGlnbj0iY2VudGVyIj4gDQogICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjExMyI+PGEg aHJlZj0iaHR0cDovL3NleGJveC5vaGJpLm5ldC9zaG93cm9vbS92aWV3LnBocD9DPTY0Ij48aW1n IHNyYz0iaHR0cDovL3VzLmYxLnlhaG9vZnMuY29tL3VzZXJzLzY4ZGMyNWU4L2JjL3NleGJveC9m czQxNnMuanBnP2JjT2NDazhBQ2htWVAzcE0iIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgYm9yZGVy PSIwIj48L2E+PC90ZD4NCiAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iMTQzIj48YSBocmVm PSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9NjcyIj48aW1nIHNy Yz0iaHR0cDovL2hvbWUua2ltby5jb20udHcvc3VwZXJzdXBlcjg2L3NleGJveC9GMjAxX0Ffcy5q cGciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgYm9yZGVyPSIwIj48L2E+PC90ZD4NCiAgICAgICAg ICAgICAgICAgIDx0ZCB3aWR0aD0iMTA2Ij48YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0 L3Nob3dyb29tL3ZpZXcucGhwP0M9MjgzIj48aW1nIHNyYz0iaHR0cDovL3VzLmYxLnlhaG9vZnMu Y29tL3VzZXJzLzY4ZGMyNWU4L2JjL3NleGJveC9tMjE3cy5qcGc/YmNPY0NrOEE5RUt6R3c1VCIg d2lkdGg9IjgwIiBoZWlnaHQ9IjgwIiBib3JkZXI9IjAiPjwvYT48L3RkPg0KICAgICAgICAgICAg ICAgICAgPHRkIHdpZHRoPSIxMTciPjxhIGhyZWY9Imh0dHA6Ly9zZXhib3gub2hiaS5uZXQvc2hv d3Jvb20vdmlldy5waHA/Qz0xMjMiPjxpbWcgc3JjPSJodHRwOi8vdXMuZjEueWFob29mcy5jb20v dXNlcnMvNjhkYzI1ZTgvYmMvc2V4Ym94L2IxMTRzLmpwZz9iY09jQ2s4QVFWaDNNbldIIiB3aWR0 aD0iODAiIGhlaWdodD0iODAiIGJvcmRlcj0iMCI+PC9hPjwvdGQ+DQogICAgICAgICAgICAgICAg PC90cj4NCiAgICAgICAgICAgICAgICA8dHIgYmdjb2xvcj0iI0ZGRkZGRiIgYWxpZ249ImNlbnRl ciI+IA0KICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSIxMTMiPg0KICAgICAgICAgICAgICAg ICAgICA8cD48YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhw P0M9NjQiPqdOpfrF3KfOwHMgDQogICAgICAgICAgICAgICAgICAgICAgKLVMuXGwyik8L2E+PC9w Pg0KICAgICAgICAgICAgICAgICAgICA8cD48YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0 L3Nob3dyb29tL3ZpZXcucGhwP0M9NjQiPq9TveY6NDkwpLg8L2E+PC9wPg0KICAgICAgICAgICAg ICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iMTQzIj48YSBocmVmPSJo dHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9NjcyIj6t7LjLtmmkZrlH r3Wm173ot1CkaqbRpEfF3KfOwHM8YnI+DQogICAgICAgICAgICAgICAgICAgIK9TveahRyA1ODAg pLg8YnI+DQogICAgICAgICAgICAgICAgICAgIDwvYT4gPC90ZD4NCiAgICAgICAgICAgICAgICAg IDx0ZCB3aWR0aD0iMTA2Ij4NCiAgICAgICAgICAgICAgICAgICAgPHA+PGEgaHJlZj0iaHR0cDov L3NleGJveC5vaGJpLm5ldC9zaG93cm9vbS92aWV3LnBocD9DPTI4MyI+rPyw6ldFVCANCiAgICAg ICAgICAgICAgICAgICAgICC87bfGskc8L2E+PC9wPg0KICAgICAgICAgICAgICAgICAgICA8cD48 YSBocmVmPSJodHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9MjgzIj6v U73mOjQ5MKS4PC9hPjwvcD4NCiAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg ICAgICA8dGQgd2lkdGg9IjExNyI+IA0KICAgICAgICAgICAgICAgICAgICA8cD48YSBocmVmPSJo dHRwOi8vc2V4Ym94Lm9oYmkubmV0L3Nob3dyb29tL3ZpZXcucGhwP0M9MTIzIj6k6aW7qN+ka62m PC9hPjwvcD4NCiAgICAgICAgICAgICAgICAgICAgPHA+PGEgaHJlZj0iaHR0cDovL3NleGJveC5v aGJpLm5ldC9zaG93cm9vbS92aWV3LnBocD9DPTEyMyI+r1O95joxNjUwpLg8L2E+PC9wPg0KICAg ICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAg ICAgIDwvdGFibGU+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICAgIDwvdHI+DQogICAgICAg IDwvdGFibGU+DQogICAgICA8L3RkPg0KICAgIDwvdHI+DQogIDwvdGFibGU+DQogIDx0YWJsZSB3 aWR0aD0iNTAwIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCI+DQog ICAgPHRyIGJnY29sb3I9IiNGRkU2RkUiPiANCiAgICAgIDx0ZCBiZ2NvbG9yPSIjRkY5OUNDIj4m bmJzcDs8L3RkPg0KICAgIDwvdHI+DQogIDwvdGFibGU+DQo8L2NlbnRlcj4NCjwvYm9keT4NCjwv aHRtbD4NCg== ------=_NextPart_cPF06vWerNc61f5q-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 17:30: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id C6D4F37B43E for ; Sat, 26 Jan 2002 17:29:00 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 54CB92B82D; Sun, 27 Jan 2002 02:28:58 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id DCBAA345; Sun, 27 Jan 2002 12:28:50 +1100 (EST) Date: Sun, 27 Jan 2002 12:28:50 +1100 From: Edwin Groothuis To: Dimitri T Cc: questions@freebsd.org Subject: Re: shutdown Message-ID: <20020127122850.R823@k7.mavetju.org> References: <20020127012029.97046.qmail@web14706.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020127012029.97046.qmail@web14706.mail.yahoo.com>; from midiostri@yahoo.co.uk on Sun, Jan 27, 2002 at 01:20:29AM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 27, 2002 at 01:20:29AM +0000, Dimitri T wrote: > is it possible to give a user (other than root) the > right to shutdown the system? If you look at the permissions of /sbin/shutdown, you see: -r-sr-x--- 1 root operator 166304 Sep 19 03:27 /sbin/shutdown So everybody in the group operator can issue the shutdown command. Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 17:30:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f117.law11.hotmail.com [64.4.17.117]) by hub.freebsd.org (Postfix) with ESMTP id ED92C37B428 for ; Sat, 26 Jan 2002 17:29:43 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 26 Jan 2002 17:29:42 -0800 Received: from 68.6.89.248 by lw11fd.law11.hotmail.msn.com with HTTP; Sun, 27 Jan 2002 01:29:42 GMT X-Originating-IP: [68.6.89.248] From: "Charles Burns" To: edwin@mavetju.org, questions@freebsd.org Subject: Re: customizing CPUTYPE Date: Sat, 26 Jan 2002 18:29:42 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 27 Jan 2002 01:29:42.0804 (UTC) FILETIME=[1888B540:01C1A6D2] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have heard that setting this to "k6" yields slightly better results for the Athlon. When you set the CPU type to K7 in the make.conf, it passes -march=k6 to GCC. I have not tested this myself and I personally use i686 for my Athlons, just my $0.01 >On Sat, Jan 26, 2002 at 11:22:56PM +0100, F . Xavier Noria wrote: > > I have an AMD Athlon XP 1700, do you know whether there is a suitable > > value for CPUTYPE to customize make.conf? > >When you boot your kernel, it will tell you what kind of CPU you have: > >Dec 24 07:18:48 k7 /kernel: CPU: AMD Athlon(tm) Processor (1029.99-MHz >686-class > CPU) > >So for me it would be 686. > >Edwin > >-- >Edwin Groothuis | Personal website: http://www.MavEtJu.org >edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: >------------------+ http://www.FatalDimensions.org/ > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message _________________________________________________________________ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 17:34:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by hub.freebsd.org (Postfix) with ESMTP id D618637B402 for ; Sat, 26 Jan 2002 17:34:51 -0800 (PST) Received: from ppp9-28.ath.forthnet.gr Bernie_X@smtp-send.myrealbox.com [213.16.156.28] by smtp-send.myrealbox.com with Novell NIMS $Revision: 2.88 $ on Novell NetWare; Sat, 26 Jan 2002 18:34:50 -0700 Date: Sun, 27 Jan 2002 01:22:00 +0200 (EET) From: Bernie X-X-Sender: root@BLAST To: Edwin Groothuis Cc: Dimitri T , Subject: Re: shutdown In-Reply-To: <20020127122850.R823@k7.mavetju.org> Message-ID: <20020127012015.X4706-100000@BLAST> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 27 Jan 2002, Edwin Groothuis wrote: > On Sun, Jan 27, 2002 at 01:20:29AM +0000, Dimitri T wrote: > > is it possible to give a user (other than root) the > > right to shutdown the system? > > If you look at the permissions of /sbin/shutdown, you see: > -r-sr-x--- 1 root operator 166304 Sep 19 03:27 /sbin/shutdown > > So everybody in the group operator can issue the shutdown command. > > Edwin > > -- > Edwin Groothuis | Personal website: http://www.MavEtJu.org > edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: > ------------------+ http://www.FatalDimensions.org/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > i was looking at the same for 'halt' -r-xr-xr-x 4 root wheel 228812 Dec 27 11:24 halt seems everyone can use it... Regards --Bernie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 17:45:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 4EEDA37B416 for ; Sat, 26 Jan 2002 17:45:28 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id 0641D5D0D; Sat, 26 Jan 2002 17:45:27 -0800 (PST) To: Bernie Cc: Edwin Groothuis , Dimitri T , questions@freebsd.org Subject: Re: shutdown In-reply-to: Your message of "Sun, 27 Jan 2002 01:22:00 +0200." <20020127012015.X4706-100000@BLAST> Date: Sat, 26 Jan 2002 17:45:27 -0800 From: "Kevin Oberman" Message-Id: <20020127014527.0641D5D0D@ptavv.es.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Sun, 27 Jan 2002 01:22:00 +0200 (EET) > From: Bernie > Sender: owner-freebsd-questions@FreeBSD.ORG > > i was looking at the same for 'halt' > > -r-xr-xr-x 4 root wheel 228812 Dec 27 11:24 halt > > seems everyone can use it... No. halt is executable by everyone, but nobody but root has the required privilege to actually get it to do anything. If you have console access, CTRL-ALT-DEL will shutdown the system, regardless of who is logged in (or even if no one is logged in. Of course, this feature may have been disabled. The proper way to allow a user to shutdown the system is to put them in the operator group or, if this is not suited to your situation, use sudo which is in the ports. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 17:50:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by hub.freebsd.org (Postfix) with ESMTP id C3C9737B400 for ; Sat, 26 Jan 2002 17:50:38 -0800 (PST) Received: from k7.mavetju.org (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 910DB2B82D; Sun, 27 Jan 2002 02:50:34 +0100 (CET) Received: by k7.mavetju.org (Postfix, from userid 1001) id 1EC8A5B0; Sun, 27 Jan 2002 12:50:30 +1100 (EST) Date: Sun, 27 Jan 2002 12:50:30 +1100 From: Edwin Groothuis To: Bernie Cc: questions@freebsd.org Subject: Re: shutdown Message-ID: <20020127125030.S823@k7.mavetju.org> References: <20020127122850.R823@k7.mavetju.org> <20020127012015.X4706-100000@BLAST> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020127012015.X4706-100000@BLAST>; from Bernie_X@myrealbox.com on Sun, Jan 27, 2002 at 01:22:00AM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 27, 2002 at 01:22:00AM +0200, Bernie wrote: > > > On Sun, 27 Jan 2002, Edwin Groothuis wrote: > > > On Sun, Jan 27, 2002 at 01:20:29AM +0000, Dimitri T wrote: > > > is it possible to give a user (other than root) the > > > right to shutdown the system? > > > > If you look at the permissions of /sbin/shutdown, you see: > > -r-sr-x--- 1 root operator 166304 Sep 19 03:27 /sbin/shutdown > > > > So everybody in the group operator can issue the shutdown command. > > > > Edwin > > > > -- > > Edwin Groothuis | Personal website: http://www.MavEtJu.org > > edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: > > ------------------+ http://www.FatalDimensions.org/ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > i was looking at the same for 'halt' > > -r-xr-xr-x 4 root wheel 228812 Dec 27 11:24 halt > > seems everyone can use it... Everybody can run it, only a few can run it succesfully: [~] edwin@friet44>halt halt: Operation not permitted [~] edwin@friet44>groups wheel operator Reading the source: if (geteuid()) { errno = EPERM; err(1, NULL); } The call to geteuid will always return non-zero for non-root users, so non-root users will not be able to run halt (reboot, fasthalt, fastboot) Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 17:50:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 12DCE37B400 for ; Sat, 26 Jan 2002 17:50:48 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id 22C505D0B; Sat, 26 Jan 2002 17:50:48 -0800 (PST) To: Edwin Groothuis Cc: "F . Xavier Noria" , freebsd-questions@freebsd.org Subject: Re: customizing CPUTYPE In-reply-to: Your message of "Sun, 27 Jan 2002 11:02:33 +1100." <20020127110233.Q823@k7.mavetju.org> Date: Sat, 26 Jan 2002 17:50:48 -0800 From: "Kevin Oberman" Message-Id: <20020127015048.22C505D0B@ptavv.es.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Sun, 27 Jan 2002 11:02:33 +1100 > From: Edwin Groothuis > Sender: owner-freebsd-questions@FreeBSD.ORG > > On Sat, Jan 26, 2002 at 11:22:56PM +0100, F . Xavier Noria wrote: > > I have an AMD Athlon XP 1700, do you know whether there is a suitable > > value for CPUTYPE to customize make.conf? > > When you boot your kernel, it will tell you what kind of CPU you have: > > Dec 24 07:18:48 k7 /kernel: CPU: AMD Athlon(tm) Processor (1029.99-MHz 686-class > CPU) > > So for me it would be 686. The CPU type in the boot message is relevant to the cpu specification in the kernel configuration, but not to the CPUTYPE in make.conf. This value is used for compiler optimization with the -march option to GNU C and I have been told that K6 is preferred to 686 for the Athlon with the current compiler. There is no specific -march option for the Athlon in gcc 2.95.3. There may be one in version 3 when it is deemed stable enough for FreeBSD. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 17:52:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from c003.snv.cp.net (c003-h013.c003.snv.cp.net [209.228.32.227]) by hub.freebsd.org (Postfix) with SMTP id CC54C37B402 for ; Sat, 26 Jan 2002 17:52:34 -0800 (PST) Received: (cpmta 11772 invoked from network); 26 Jan 2002 17:52:33 -0800 Received: from 64.130.42.113 (HELO ?192.168.1.100?) by smtp.telocity.com (209.228.32.227) with SMTP; 26 Jan 2002 17:52:33 -0800 X-Sent: 27 Jan 2002 01:52:33 GMT Mime-Version: 1.0 X-Sender: RICKEISNER@mail.telocity.com Message-Id: Date: Sat, 26 Jan 2002 17:51:57 -0800 To: questions@FreeBSD.org From: Rick Eisner Subject: Can't find a mouse Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi! I'm trying to get started with FreeBSD (I bought the book "FreeBSD Unleashed"). So this is very much a beginner's question. I tried to set up my installation, but could not find my mouse during the install. I have a USB connected keyboard and a USB connected mouse (a Kensington Turboring, to be precise). The mouse is detected on startup as a Kensington Turboring. But the system won't recognize that I have a mouse at all. I've gone through XF86Setup several times, but can't get the computer to recognize the mouse in any way. I'd appreciate any help you could give. Thanks! Rick -- ----- Rick Eisner rick_eisner@bigfoot.com 510-883-0705 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 17:56:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 27D6137B404 for ; Sat, 26 Jan 2002 17:56:44 -0800 (PST) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Postfix) with ESMTP id D6AB45D0B; Sat, 26 Jan 2002 17:56:42 -0800 (PST) To: jmkelly@ieee.org Cc: FreeBSD-questions@FreeBSD.org Subject: Re: new install, trying to get Xircom PC card to work In-reply-to: Your message of "Fri, 25 Jan 2002 19:12:07 PST." <3C521E87.4004D3C8@uclink.berkeley.edu> Date: Sat, 26 Jan 2002 17:56:42 -0800 From: "Kevin Oberman" Message-Id: <20020127015642.D6AB45D0B@ptavv.es.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Date: Fri, 25 Jan 2002 19:12:07 -0800 > From: John Kelly > Sender: owner-freebsd-questions@FreeBSD.ORG > > I've got FreeBSD 4.4-release running on a Dell Latitude laptop with a > Xircom RealPort CardBus Ethernet 10/100+Modem 56 (RBEM56G-100) PC card > in it, and I can't figure out how to get the card to wake up. Card > services seems to be running okay, it sees that a card has been > inserted, but the system comes up with no Ethernet device. Sorry, but CardBus devices are not supported in FreeBSD V4 at this time. They should be supported under V5 when it comes out hopefully later this year. > > I found the source for the right driver, xe, but when I try to compile > xe.c I get an error: "if_xe.c:138: card_if.h: No such file or > directory." First, you don't need to compile the separately. It should compile automatically when you build the kernel. If you got this message when trying to build the kernel, it's because you don't have device card in your configuration. You need both card and pcic for any PCCARD to be compiled into the kernel. (See the comments in /sys/i386/conf/LINT.) > > Beyond that, I'm having a hard time figuring out how to integrate the xe > driver with the kernel even if I could manage to compile it. I've tried > RTFMing, but haven't seemed to find the right page yet. All help will be > appreciated. It's done, as I said above, when you make your kernel. See the handbook section on kernel building if you don't know how to do this. Unfortunately this is not much help since the CardBus Xircom cards are not supported under V4. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 18:14:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from sigbus.com (we-24-126-148-218.we.mediaone.net [24.126.148.218]) by hub.freebsd.org (Postfix) with ESMTP id 5B35937B404; Sat, 26 Jan 2002 18:14:06 -0800 (PST) Received: (from henrich@localhost) by sigbus.com (8.11.1/8.11.1) id g0R2DDa84683; Sat, 26 Jan 2002 18:13:13 -0800 (PST) (envelope-from henrich) Date: Sat, 26 Jan 2002 18:13:13 -0800 From: Charles Henrich To: mark tinguely Cc: freebsd-multimedia@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: MBone/mrouted troubles Message-ID: <20020126181313.A84662@sigbus.com> Mail-Followup-To: mark tinguely , freebsd-multimedia@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG References: <20020124200726.B70786@sigbus.com> <200201251337.g0PDbOu29231@web.cs.ndsu.nodak.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200201251337.g0PDbOu29231@web.cs.ndsu.nodak.edu>; from tinguely@web.cs.ndsu.nodak.edu on Fri, Jan 25, 2002 at 07:37:24AM -0600 X-Operating-System: FreeBSD 4.2-RELEASE X-PGP-Fingerprint: 1024/F7 FD C7 3A F5 6A 23 BF 76 C4 B8 C9 6E 41 A4 4F X-GPG-Fingerprint: EA4C AB9B 0C38 17C0 AB3F 11DE 41F6 5883 41E7 4F49 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On the subject of Re: MBone/mrouted troubles, mark tinguely stated: I believe thats it. I moved the mrouted process from my local machine (which is running vic/sdr, etc..) to another and it works fine. Hopefully this patch will make it into 4.5 though, its a major annoyance for personal leaf nodes! > could you send the contents of both of your /etc/mrouted.conf and what is > the TTL on the vic session? > > There was a bug discovered in FreeBSD 4.4 in MCAST forwarding when a local > session is also went out the tunnel. The UDP checksum was not calculated on > the forwarding packet. I do not know when the hardware checksum feature was > added to FreeBSD but that may have been FreeBSD 4.2 also. The patch was not > picked up in FreeBSD 4.5 (at least it is not in RC1). To look for this bug, > perform a tcpdump of the tunnel's contents and you will see UDP checksum > errors. If you have this problem, I can give you a simplified version of > Bill Fenner's patch. > > --mark tinguely. Charles Henrich Eon Entertainment henrich@msu.edu http://www.sigbus.com:81/~henrich To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 18:38:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from nic.upatras.gr (nic.upatras.gr [150.140.129.30]) by hub.freebsd.org (Postfix) with SMTP id 6B07937B400 for ; Sat, 26 Jan 2002 18:38:18 -0800 (PST) Received: (qmail 28517 invoked from network); 27 Jan 2002 02:35:03 -0000 Received: from dialup3-ceid-dialinpool-9.upatras.gr (HELO hades.hell.gr) (root@150.140.128.201) by nic.upatras.gr with SMTP; 27 Jan 2002 02:35:03 -0000 Received: (from charon@localhost) by hades.hell.gr (8.11.6/8.11.6) id g0R2c7n06006; Sun, 27 Jan 2002 04:38:07 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Sun, 27 Jan 2002 04:38:07 +0200 From: Giorgos Keramidas To: Vlado Korcek Cc: freebsd-questions@freebsd.org Subject: Re: Repeated DNS queries and responses Message-ID: <20020127023807.GA5840@hades.hell.gr> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.25i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 2002-01-22 10:02:23, Vlado Korcek wrote: > > Could somebody help me with this strange behaviour??? > I've attached the output from Ethereal. > Do I need some aditional configuration of DNS server or something else? > > [-- Attachment #2: Ping6 --] > [-- Type: application/octet-stream, Encoding: base64, Size: 12K --] > > [-- application/octet-stream is unsupported (use 'v' to view this part) --] You've posted a binary attachment, that most of the people on this list will not be able to read. I'm sure that's why I haven't seen any replies in my INBOX for your message. Please post in plain text to the lists. This way everyone can read your question and the possibility of someone answering it increases :) Cheers, -- Giorgos Keramidas . . . . . . . . . keramida@{ceid.upatras.gr,freebsd.org} FreeBSD Documentation Project . . . http://www.freebsd.org/docproj/ FreeBSD: The power to serve . . . . http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 18:39:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from tierzero.apana.org.au (sa.apana.org.au [203.14.158.1]) by hub.freebsd.org (Postfix) with ESMTP id AE68937B402 for ; Sat, 26 Jan 2002 18:39:25 -0800 (PST) Received: from BAPhD.gihon.org.au (dialup-4.pasa.apana.org.au [203.14.158.133]) by tierzero.apana.org.au (8.11.1/8.11.1) with SMTP id g0R2chw21356 for ; Sun, 27 Jan 2002 13:08:44 +1030 (CST) (envelope-from bastill@sa.apana.org.au) Content-Type: text/plain; charset="iso-8859-1" From: Brian Astill Reply-To: bastill@sa.apana.org.au To: freebsd-questions@FreeBSD.ORG Subject: Re: A question from a convert from Windows to FreeBSD Date: Sun, 27 Jan 2002 13:09:13 +1030 X-Mailer: KMail [version 1.2] References: <200201260704.g0Q74u864537@fedde.littleton.co.us> In-Reply-To: <200201260704.g0Q74u864537@fedde.littleton.co.us> MIME-Version: 1.0 Message-Id: <02012713091300.01261@BAPhD.gihon.org.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Saturday 26 January 2002 17:34, Chris Fedde wrote: > On Sat, 26 Jan 2002 14:00:24 +1030 Brian Astill wrote: > +------------------ > | However, what I am saying is that the simple sentence "passwords > | can be changed by root without knowledge of a users existing > | password" was simply not there on any man page - heaps and heaps > | of well-written detail I did not need, was. > > +------------------ > > But the manual page says this in the the first paragraph... > > Passwd changes the user's local, Kerberos, or NIS password. > If the user is not the super-user, passwd first prompts for > the current password and will not continue unless the correct > password is entered. > > The second sentence seems to be just another way of saying exactly > what you say was missing from the page. Maybe I've been reading > these things for too long, but it seems clear to me. Negative logic > can be confusing. Actually, I think it is inferential logic - but it requires a convoluted mind to see it! The operative words are "if the user is not the super-user" passwd first prompts ... from which one can reasonably infer that if the user IS the super-user passwd would NOT so prompt. You are right, but which newbie (like me) would see it? > And maybe this needs some cleaning up. You ain't kidding! :-) > You might want to submit a patch to the FreeBSD Documentation project. Want? - Yes. Be capable of? - No. -- Regards, Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 18:53:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from apollo.pwhsnet.com (adsl-64-164-36-143.dsl.scrm01.pacbell.net [64.164.36.143]) by hub.freebsd.org (Postfix) with ESMTP id 4C6CF37B416 for ; Sat, 26 Jan 2002 18:53:36 -0800 (PST) Received: from zeus (patrick@zeus [192.168.0.35] (may be forged)) by apollo.pwhsnet.com (8.11.6/8.11.6) with SMTP id g0R2pTh54017; Sat, 26 Jan 2002 18:51:29 -0800 (PST) (envelope-from patrick@pwhsnet.com) From: Patrick Fish (patrick@pwhsnet.com) Message-ID: <002301c1a6dd$2cd19340$2300a8c0@zeus> To: "Christopher Schulte" Cc: References: <5.1.0.14.0.20020126182943.03444b00@pop3s.schulte.org> Subject: Re: back to 4.4-stable Date: Sat, 26 Jan 2002 18:49:00 -0800 Organization: PWHS Networks MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG That one didnt work... -- Patrick Fish - patrick@pwhsnet.com PWHS Networks - http://www.pwhsnet.com ----- Original Message ----- From: "Christopher Schulte" To: "Patrick Fish" ; Sent: Saturday, January 26, 2002 4:31 PM Subject: Re: back to 4.4-stable > At 04:24 PM 1/26/2002 -0800, patrick@pwhsnet.com wrote: > >I just upgraded to 4.5-RC because i had 4 in my cvsup file, not 4_4, i > >just downloaded 4_4 and when i goto make world i get: > > [snip] > > >install: /usr/share/locale/ru_SU.CP866/LC_COLLATE: Too many levels of > >symbolic links > >*** Error code 71 > > > > >...any ideas? i tryed make clean already > > Try this? > > # chflags -R noschg /usr/obj/usr > # rm -rf /usr/obj/usr > # cd /usr/src > # make cleandir > # make cleandir > > (yes cleandir 2 times) > > Then build your world... > > >-- > >Patrick Fish - patrick@pwhsnet.com > >PWHS Networks - http://www.pwhsnet.com > > --chris > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 19:14:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mx.pitdc1.stargate.net (smtp2.mx.pitdc1.stargate.net [206.210.69.142]) by hub.freebsd.org (Postfix) with SMTP id 731DF37B402 for ; Sat, 26 Jan 2002 19:14:47 -0800 (PST) Received: (qmail 23310 invoked from network); 27 Jan 2002 02:26:30 -0000 Received: from 1cust111.tnt2.oxnard.ca.da.uu.net (HELO localhost) (63.25.94.111) by smtp2.mx.pitdc1.stargate.net with SMTP; 27 Jan 2002 02:26:30 -0000 X-Sender: biggd@stargate.net From: George Dansome To: "MORTGAGE BORROWERS" Date: Sat, 26 Jan 2002 18:25:20 -0800 Subject: MORTGAGE RATES ARE STILL VERY LOW! Reply-To: biggd@stargate.net MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_001__78273930_66320.33" Message-Id: <20020127031447.731DF37B402@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a Multipart MIME message. ------=_NextPart_000_001__78273930_66320.33 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit ------=_NextPart_000_001__78273930_66320.33 Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: base64 PEhUTUw+DQoNCjxoZWFkPg0KPE1FVEEgSFRUUC1FUVVJVj0iQ29udGVudC1UeXBlIiBDT05U RU5UPSJ0ZXh0L2h0bWw7Y2hhcnNldD1pc28tODg1OS0xIj4NCg0KPE1FVEEgSFRUUC1FUVVJ Vj0iQ29udGVudC1UeXBlIiBDT05URU5UPSJ0ZXh0L2h0bWw7Y2hhcnNldD1pc28tODg1OS0x Ij4NCjwhRE9DVFlQRSBIVE1MIFBVQkxJQyAiLS8vVzNDLy9EVEQgSFRNTCA0LjAgVHJhbnNp dGlvbmFsLy9FTiI+DQo8VElUTEU+RnJlZSBSYXRlIFF1b3RlPC9USVRMRT4NCjxNRVRBIGNv bnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1pc28tODg1OS0xIiBodHRwLWVxdWl2PUNvbnRl bnQtVHlwZT48WE1FVEEgDQpjb250ZW50PSJNb3ppbGxhLzQuNyBbZW5dIChXaW45ODsgSSkg W05ldHNjYXBlXSIgbmFtZT0iR0VORVJBVE9SIj4NCjxNRVRBIGNvbnRlbnQ9Ik1pY3Jvc29m dCBGcm9udFBhZ2UgNC4wIiBuYW1lPUdFTkVSQVRPUj4NCjxTVFlMRT48L1NUWUxFPg0KPC9I RUFEPg0KPEJPRFkgYmFja2dyb3VuZD1odHRwOi8vMjEzLjI0NC4xNzYuMTQ1L21vbmV5X2dy LmpwZyBiZ0NvbG9yPSNmZmZmZmYgYmdwcm9wZXJ0aWVzPSJmaXhlZCI+DQo8RElWIHN0eWxl PSJGT05UOiAxMHB0IGFyaWFsIj4NCjxESVY+Jm5ic3A7PC9ESVY+PC9ESVY+DQo8RElWPg0K ICA8cCBhbGlnbj0iY2VudGVyIj48QlI+PGZvbnQgZmFjZT0iVGltZXMgTmV3IFJvbWFuIiBz aXplPSI2Ij48Yj48aT5BTUVSSUNBJ1MNCiAgQVNTT0NJQVRJT04gT0YgTU9SVEdBR0UgQlJP S0VSUyBBTkQgTEVOREVSUyBIQVMgVEhFIEJFU1QgUkFURVMgTkFUSU9OV0lERSE8L2k+PC9i PjwvZm9udD48L0RJVj4NCjxCUj4NCg0KDQo8UCBhbGlnbj1jZW50ZXI+PGVtPjxiPjxmb250 IGNvbG9yPSIjZmYwMDAwIiBzaXplPSI2IiBmYWNlPSJhcmlhbCI+JnF1b3Q7PC9mb250Pjxm b250IGZhY2U9Ikdlb3JnaWEiIHNpemU9IjYiIGNvbG9yPSIjRkYwMDAwIj5Nb3J0Z2FnZQ0K UmF0ZXMgQXJlIFN0aWxsIEV4dHJlbWVseSBMb3chPC9mb250Pjxmb250IGNvbG9yPSIjZmYw MDAwIiBzaXplPSI2IiBmYWNlPSJhcmlhbCI+JnF1b3Q7PC9mb250PjwvYj48L2VtPjwvUD4N CjxNQVJRVUVFPjxpPjxiPjxGT05UIHNpemU9NCBjb2xvcj0jMDAwMGZmPkhPTUUgRVFVSVRZ IExPQU5TICoqKiBKVU1CTyBMT0FOUyAqKiogSE9NRSBJTVBST1ZFTUVOVCBMT0FOUyAqKiog DQogICAgICBERUJUIENPTlNPTElEQVRJT04gTE9BTlMgKioqIFJFRklOQU5DRSBMT0FOUyAq KiogQUxMIEFSRSBBVkFJTEFCTEUgVE8gWU9VICoqKiBSQVRFUyBBUyBMT1cgQVMgDQogICAg ICAzLjk1JTwvZm9udD48L2I+PC9pPjwvbWFycXVlZT4NCjxCUj48QlI+DQo8cCBhbGlnbj0i Y2VudGVyIj48Yj48Zm9udCBzaXplPSI0Ij5Zb3UgQ2FuIFNhdmUgVGhvdXNhbmRzIE9mIERv bGxhcnMgQnkgVGFraW5nDQpBZHZhbnRhZ2UgTm93ITwvZm9udD48L2I+PC9wPg0KPHAgYWxp Z249ImNlbnRlciI+Jm5ic3A7PC9wPg0KPFAgYWxpZ249Y2VudGVyPjxGT05UIGNvbG9yPSMw MDAwZmYgc2l6ZT00PjxCPldlJm5ic3A7aGF2ZSB0aG91c2FuZHMgb2YgbG9hbiANCnByb2dy YW1zIHRocm91Z2ggaHVuZHJlZHMgb2YgbGVuZGVycyE8QlI+PC9CPjwvRk9OVD48Rk9OVCBz aXplPTM+PC9GT05UPjwvUD4NCjxQIGFsaWduPWNlbnRlcj48c3Ryb25nPjxmb250IHNpemU9 IjUiPkNob29zZSBmcm9tOjwvZm9udD48L3N0cm9uZz48L1A+DQo8UCBhbGlnbj1jZW50ZXI+ PHN0cm9uZz48Zm9udCBzaXplPSI1Ij5BZGp1c3RhYmxlIFJhdGUNCk1vcnRnYWdlcyANCmFz IGxvdyBhcyAzLjk1JTwvZm9udD48L3N0cm9uZz48L1A+DQo8UCBhbGlnbj1jZW50ZXI+PHN0 cm9uZz48Zm9udCBzaXplPSI1Ij5vciBGaXhlZCBSYXRlIE1vcnRnYWdlcyBhcyBsb3cgYXMN CjYuNzUlJm5ic3A7PC9mb250Pjwvc3Ryb25nPjwvUD4NCjxQIGFsaWduPWNlbnRlcj48U1RS T05HPjxGT05UIHNpemU9NT5hbGwgd2l0aCB0aGUgbG93ZXN0IGNvc3RzIE5BVElPTldJREUh PC9GT05UPjwvU1RST05HPjxCSUc+PEJJRz48Rk9OVCBjb2xvcj0jZmYwMDAwPio8L0ZPTlQ+ PC9CSUc+PC9CSUc+PC9QPg0KPFAgYWxpZ249Y2VudGVyPjxGT05UIA0Kc2l6ZT01Pjxmb250 IGNvbG9yPSIjRkYwMDAwIj4mcXVvdDs8Yj48aT5ZT1UgQ0FOIDx1PkJVWSBET1dOIFlPVVIg SU5URVJFU1QgUkFURTwvdT4NClRPPC9pPjwvYj48L2ZvbnQ+PC9GT05UPjwvUD4NCjxQIGFs aWduPWNlbnRlcj48Zm9udCBjb2xvcj0iI0ZGMDAwMCIgc2l6ZT0iNSI+PGI+PGk+QVMgTE9X IEFTIFlPVSBDQU4NCkFGRk9SRCEmcXVvdDs8L2k+PC9iPjwvZm9udD48Rk9OVCANCnNpemU9 NT48QlI+PC9GT05UPjxGT05UIHNpemU9Mz48L0ZPTlQ+PC9QPg0KPFAgYWxpZ249Y2VudGVy PjxGT05UIHNpemU9KzA+PEZPTlQgY29sb3I9IzAwMDBmZiBzaXplPTI+PEJJRz48QklHPjxG T05UIA0KY29sb3I9I2ZmMDAwMCBzaXplPTU+KjwvRk9OVD48L0JJRz48U1RST05HPkFsbCBy YXRlcyBhcmUgYmFzZWQgb24gDQpxdWFsaWZpY2F0aW9uPC9TVFJPTkc+ITwvQklHPjwvRk9O VD48L0ZPTlQ+PC9QPg0KPFAgYWxpZ249Y2VudGVyPjxGT05UIHNpemU9KzA+PEZPTlQgc2l6 ZT0yPjxCSUc+PC9CSUc+PC9GT05UPjxGT05UIA0KY29sb3I9IzAwMDBmZj48Rk9OVCBmYWNl PUFyaWFsPjxGT05UIHNpemU9Mj48QSBocmVmPSJodHRwOi8vMjEzLjI0NC4xNzYuMTQ1IiAN CnRhcmdldD1fYmxhbms+PEZPTlQgc2l6ZT01PjxTVFJPTkc+PEZPTlQgZmFjZT0iVGltZXMg TmV3IFJvbWFuIj5DbGljayBoZXJlIGZvciANCnlvdXIgPC9GT05UPjxGT05UIHNpemU9Nj48 Rk9OVCBmYWNlPSJUaW1lcyBOZXcgUm9tYW4iPjxFTT4iRlJFRSBSQVRFIA0KUVVPVEUiITwv RU0+PC9GT05UPjwvRk9OVD48L1NUUk9ORz48L0ZPTlQ+PC9BPjwvRk9OVD48L0ZPTlQ+PC9G T05UPjwvRk9OVD48L1A+DQo8UCBhbGlnbj1sZWZ0PiZuYnNwOzwvUD4NCjxQIGFsaWduPWxl ZnQ+PGk+PGI+PGZvbnQgZmFjZT0iQXJpYWwiIHNpemU9IiswIj5DTElDSyBPTiBMT0FOUyBC RUxPVyBGT1IgWU9VUg0KRlJFRSBBUFBMSUNBVElPTiE8L2ZvbnQ+PC9iPjwvaT48Rk9OVCBm YWNlPUFyaWFsPjxCUj48L0ZPTlQ+PC9QPg0KPFAgYWxpZ249bGVmdD48U1RST05HPjxFTT48 QSBocmVmPSJodHRwOi8vMjEzLjI0NC4xNzYuMTQ1IiANCnRhcmdldD1fYmxhbms+PGZvbnQg c2l6ZT0iNSIgY29sb3I9IiM4MDAwODAiPlB1cmNoYXNlIExvYW5zPC9mb250PjwvQT4gPEZP TlQgc2l6ZT01Pg0KPC9GT05UPiA8L0VNPjxGT05UIA0Kc2l6ZT00Pi0gPEVNPlRob3VzYW5k cyBvZiBwcm9ncmFtcyANCmZvciBGaXJzdCBNb3J0Z2FnZXMhPC9FTT48L0ZPTlQ+PEk+PC9J PjwvU1RST05HPjxJPjxGT05UIA0KY29sb3I9IzAwMDAwMD48QlI+PEJSPjwvRk9OVD48L0k+ PEEgaHJlZj0iaHR0cDovLzIxMy4yNDQuMTc2LjE0NSIgX2JsYW5rPz48RU0+PFNUUk9ORz48 Zm9udCBzaXplPSI1IiBjb2xvcj0iIzgwMDA4MCI+UmVmaW5hbmNlIExvYW5zPC9mb250Pjwv U1RST05HPjwvRU0+PEk+PEZPTlQgDQpjb2xvcj0jMDAwMDAwIHNpemU9Mj4gPC9GT05UPjwv ST48L0E+PEk+PEZPTlQgY29sb3I9IzAwMDAwMCBzaXplPTQ+LSA8Qj5SZWR1Y2UgeW91ciAN Cm1vbnRobHkgcGF5bWVudHMgYW5kPC9GT05UPjxGT05UIGNvbG9yPSMwMDAwMDAgc2l6ZT0y PiA8L0ZPTlQ+PEZPTlQgDQpjb2xvcj0jZmYwMDAwIHNpemU9NT5HZXQgQ2FzaCBCYWNrITwv Rk9OVD48L0I+PEZPTlQgY29sb3I9IzAwMDAwMCBzaXplPTQ+IA0KPC9GT05UPjxGT05UIGNv bG9yPSMwMDAwMDAgc2l6ZT0zPjxCUj48QlI+PC9GT05UPjwvST48QSANCmhyZWY9Imh0dHA6 Ly8yMTMuMjQ0LjE3Ni4xNDUiIHRhcmdldD1fYmxhbms+PGZvbnQgY29sb3I9IiM4MDAwODAi PjxFTT48Qj48Rk9OVCBzaXplPTU+U2Vjb25kIA0KTW9ydGdhZ2VzPC9GT05UPjwvQj48L0VN PjxJPjxGT05UIHNpemU9Mz4gPC9GT05UPjwvST4NCjwvZm9udD4gPC9BPjxJPjxGT05UIGNv bG9yPSMwMDAwMDAgc2l6ZT0zPiAtIDwvRk9OVD48Qj48Rk9OVCANCmNvbG9yPSMwMDAwMDAg c2l6ZT00PldlIGNhbiBoZWxwIHlvdSBnZXQgZnJvbSA8L0ZPTlQ+PEZPTlQgY29sb3I9I2Zm MDAwMCANCnNpemU9NT45MCU8L0ZPTlQ+PEZPTlQgY29sb3I9IzAwMDAwMCBzaXplPTQ+IHVw IHRvIDwvRk9OVD48Rk9OVCBjb2xvcj0jZmYwMDAwIA0Kc2l6ZT01PjEyNSU8L0ZPTlQ+PEZP TlQgY29sb3I9IzAwMDAwMCBzaXplPTQ+IG9mIHlvdXIgaG9tZXMgdmFsdWUhIChyYXRpb3Mg dmFyeSANCmJ5IHN0YXRlKTwvRk9OVD48L0I+PC9QPg0KPFAgYWxpZ249bGVmdD48QSBocmVm PSJodHRwOi8vMjEzLjI0NC4xNzYuMTQ1IiANCnRhcmdldD1fYmxhbms+PEI+PGZvbnQgc2l6 ZT0iNSIgY29sb3I9IiM4MDAwODAiPkRlYnQgQ29uc29saWRhdGlvbjwvZm9udD48L0I+PC9B PjxGT05UIGNvbG9yPSMwMDAwMDAgc2l6ZT0zPiA8Rk9OVCBjb2xvcj0jMDAwMDAwIHNpemU9 ND4tIA0KPEI+Q29tYmluZSA8L0ZPTlQ+PEZPTlQgY29sb3I9I2ZmMDAwMCBzaXplPTU+YWxs PC9GT05UPjxGT05UIGNvbG9yPSMwMDAwMDAgDQpzaXplPTQ+IHlvdXIgYmlsbHMgaW50byA8 L0ZPTlQ+PEZPTlQgY29sb3I9I2ZmMDAwMCBzaXplPTU+T25lIExvdyBNb250aGx5IA0KUGF5 bWVudCE8L0ZPTlQ+PC9CPjxCUj48QlI+PC9GT05UPjxCPjxBIA0KaHJlZj0iaHR0cDovLzIx My4yNDQuMTc2LjE0NSIgdGFyZ2V0PV9ibGFuaz48Zm9udCBzaXplPSI1IiBjb2xvcj0iIzgw MDA4MCI+Rmlyc3QgVGltZSBIb21lIEJ1eWVyczwvZm9udD48L0E+PEZPTlQgY29sb3I9IzAw MDAwMCBzaXplPTM+IC0gDQo8Rk9OVCBjb2xvcj0jMDAwMDAwIHNpemU9ND5XZSBjYW4gaGVs cCB5b3UgYnV5IHdpdGggPEZPTlQgY29sb3I9I2ZmMDAwMCANCnNpemU9NT5Mb3c8L0ZPTlQ+ PC9GT05UPjxGT05UIGNvbG9yPSNmZjAwMDAgc2l6ZT01PiBNb25leSBEb3duPC9GT05UPjxG T05UIA0KY29sb3I9IzAwMDAwMCBzaXplPTQ+LCBhbmQgZXZlbiA8L0ZPTlQ+PEZPTlQgY29s b3I9I2ZmMDAwMCBzaXplPTU+R2V0IENhc2ggDQpCYWNrITwvRk9OVD48L0ZPTlQ+PC9CPjwv UD48L0k+DQo8UCBhbGlnbj1jZW50ZXI+PEJJRz48QklHPjxGT05UIGNvbG9yPSNmZjAwMDA+ KjwvRk9OVD48L0JJRz5BbGwgcmF0ZXMgYXJlIGJhc2VkIA0Kb24gcXVhbGlmaWNhdGlvbiE8 L0JJRz48L1A+DQo8UCBhbGlnbj1jZW50ZXI+PEI+PEk+PEZPTlQgY29sb3I9IzAwMDAwMCBz aXplPTY+V2UgaGF2ZSBwcm9ncmFtcyBmb3IgDQo8L0ZPTlQ+PEZPTlQgY29sb3I9I2ZmMDAw MCBzaXplPTY+PFU+RVZFUlk8L1U+PC9GT05UPjxGT05UIGNvbG9yPSMwMDAwMDAgc2l6ZT02 PiANCmNyZWRpdCBzaXR1YXRpb24hPC9GT05UPjxCUj48QlI+PEEgaHJlZj0iaHR0cDovLzIx My4yNDQuMTc2LjE0NSIgdGFyZ2V0PV9ibGFuaz48Rk9OVCANCmNvbG9yPSMwMDAwZmYgc2l6 ZT01PkNsaWNrIGhlcmUgZm9yIHlvdXIgRlJFRSBSQVRFIFFVT1RFITwvRk9OVD48L0E+PC9J PjwvQj48L1A+DQo8UCBhbGlnbj1sZWZ0PjxGT05UIGNvbG9yPSMwMDgwMDA+PFNUUk9ORz4m cXVvdDtUaGlzIG1lc3NhZ2UgaXMgYmVpbmcgc2VudCB0bw0KeW91IGluIGNvbXBsaWFuY2Ug d2l0aCZuYnNwO0JpbGwgUy4gMTYxOCBUaXRsZSBJSUkgcGFzc2VkIGJ5IHRoZSAxMDV0aCBV Uw0KQ29uZ3Jlc3MsIHdoaWNoIHN0YXRlcyB0aGF0IHRoaXMgbGV0dGVyIGlzIG5vdCBzcGFt IGJlY2F1c2UgaXQgaW5jbHVkZXM6Jm5ic3A7ICgxKSBWYWxpZCBDb250YWN0IEluZm9ybWF0 aW9uIGFuZCAoMikmbmJzcDthIHdheSB0byBiZSByZW1vdmVkIGZyb20gYW55DQpmdXJ0aGVy IHRyYW5zbWlzc2lvbnMgYXQgbm8gY29zdCBieSBzdWJtaXR0aW5nIGEgcmVxdWVzdCB0byBi ZQ0KcmVtb3ZlZC4mcXVvdDsgLiA8YSBocmVmPSJodHRwOi8vMjEzLjI0NC4xNzYuMTQ1L3Jl bW92ZS5odG0iPkNsaWNrIEhlcmUgdG8gU2VuZCBhIFJlbW92ZSBSZXF1ZXN0PC9hPi4NCiZx dW90O1dlIGhvbm9yIGFsbCByZW1vdmUgZW1haWwgYWRkcmVzcyByZXF1ZXN0cyZuYnNwO2lt bWVkaWF0ZWx5LiZxdW90OzwvU1RST05HPjwvRk9OVD48L1A+PC9CT0RZPjwvSFRNTD4NCg0K DQoNCg0KDQoNCg0KDQo= ------=_NextPart_000_001__78273930_66320.33-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 19:45:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by hub.freebsd.org (Postfix) with ESMTP id 5F28E37B402 for ; Sat, 26 Jan 2002 19:45:41 -0800 (PST) Received: from ppp1-191.ath.forthnet.gr Bernie_X@smtp-send.myrealbox.com [213.16.148.191] by smtp-send.myrealbox.com with Novell NIMS $Revision: 2.88 $ on Novell NetWare; Sat, 26 Jan 2002 20:45:40 -0700 Date: Sun, 27 Jan 2002 03:32:47 +0200 (EET) From: Bernie X-X-Sender: root@BLAST To: freebsd-questions@FreeBSD.ORG Subject: leafnode question Message-ID: <20020127030828.L648-100000@BLAST> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hello, i've just configured pine to work with getmail + leafnode for reading email and news. it seems to be going ok, but it seems i have a problem with leafnode. first, about my setup, it's workstation with dialup to isp. no local network exists. only dialup. so i've been trying to avoid running things like sendmail and nntp etc. it seems that leafnode doesn't run automaticaly on my configuration. i'm not sure if i'm right, but from what i gathered, leafnode is supposed to connect (run fetchnews) automaticaly when a client wants to read news. so far, i got it to work, so i can read news from local directory using pine, but if i want to see if there are new posts for a group i got to run fetchmain manualy. also, if i try to read the body of a message, i get a message saying: leafnode... message ... has been marked for retrival. if i want to see this nessage i have to run fetchmail manualy. is this the way it's supposed to be working? i thought that when i select a group from pine, leafnode would connect and get all new headers, and if i choose a header, it would connect and retrieve the body... any ideas? the entry i put on /etc/inetd.conf is: nntp stream tcp nowait news /usr/local/sbin/leafnode /usr/local/sbin/leafnode is this corrcet? i took this line from someone in the leafnode mailing list archive, but his line was different in that it had /sbin/tcpd in the before-last field, but he was using linux... do i have to enable another service as well? thanks a lot for your help. Regards, --Bernie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 19:51:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mmu.edu.my (ext-dns.mmu.edu.my [203.106.62.11]) by hub.freebsd.org (Postfix) with ESMTP id C030537B400 for ; Sat, 26 Jan 2002 19:51:51 -0800 (PST) Received: from venus.cyber.mmu.edu.my (venus.cyber.mmu.edu.my [203.106.62.12]) by mmu.edu.my (8.9.1b+Sun/8.9.1) with ESMTP id LAA18050; Sun, 27 Jan 2002 11:46:04 +0800 (MYT) Received: from lunar.cyber.mmu.edu.my (lunar.cyber.mmu.edu.my [10.100.3.5]) by venus.cyber.mmu.edu.my (8.8.8+Sun/8.8.8) with ESMTP id LAA27719; Sun, 27 Jan 2002 11:49:31 +0800 (SGT) Received: from dmn (hb1b-1.cyber.mmu.edu.my [10.100.98.21]) by lunar.cyber.mmu.edu.my (8.9.3+Sun/8.9.1) with SMTP id LAA29622; Sun, 27 Jan 2002 11:48:06 +0800 (SGT) Message-ID: <002701c1a6e5$eb754fa0$1562640a@dmn> From: "Sudirman bin Hassan" To: , References: <200201260704.g0Q74u864537@fedde.littleton.co.us> <02012713091300.01261@BAPhD.gihon.org.au> Subject: Re: A question from a convert from Windows to FreeBSD Date: Sun, 27 Jan 2002 11:51:36 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I believe that the best mailing list to discuss what is the good words and what is the best docs whatsoever is freebsd-docs. Please subscribe to that mailing list and give suggestion. I'm sure that somebody there would be very glad to help you regarding documentation. Freebsd-questions is place to ask question. -dman ----- Original Message ----- From: "Brian Astill" To: Sent: Sunday, January 27, 2002 10:39 AM Subject: Re: A question from a convert from Windows to FreeBSD > On Saturday 26 January 2002 17:34, Chris Fedde wrote: > > On Sat, 26 Jan 2002 14:00:24 +1030 Brian Astill wrote: > > +------------------ > > > | However, what I am saying is that the simple sentence "passwords > > | can be changed by root without knowledge of a users existing > > | password" was simply not there on any man page - heaps and heaps > > | of well-written detail I did not need, was. > > > > +------------------ > > > > But the manual page says this in the the first paragraph... > > > > Passwd changes the user's local, Kerberos, or NIS password. > > If the user is not the super-user, passwd first prompts for > > the current password and will not continue unless the correct > > password is entered. > > > > The second sentence seems to be just another way of saying exactly > > what you say was missing from the page. Maybe I've been reading > > these things for too long, but it seems clear to me. Negative logic > > can be confusing. > > Actually, I think it is inferential logic - but it requires a > convoluted mind to see it! > The operative words are "if the user is not the super-user" passwd > first prompts ... from which one can reasonably infer that if the > user IS the super-user passwd would NOT so prompt. > You are right, but which newbie (like me) would see it? > > > And maybe this needs some cleaning up. > > You ain't kidding! :-) > > > You might want to submit a patch to the FreeBSD Documentation project. > > Want? - Yes. Be capable of? - No. > > -- > Regards, > Brian > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 20:59:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 7E5CD37B400 for ; Sat, 26 Jan 2002 20:59:48 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16UhPv-0004Mu-00 for questions@freebsd.org; Sun, 27 Jan 2002 04:59:47 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id DFE1B452B8; Sun, 27 Jan 2002 05:59:45 +0100 (CET) Date: Sun, 27 Jan 2002 05:59:45 +0100 From: Cliff Sarginson To: questions@freebsd.org Subject: Re: shells confusion Message-ID: <20020127045945.GA1370@raggedclown.net> References: <55357420@toto.iv> <15443.2994.224928.912973@guru.mired.org> <20020126212234.F32706@roman.mobil.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020126212234.F32706@roman.mobil.cz> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Jan 26, 2002 at 09:22:34PM +0100, Roman Neuhauser wrote: > > Date: Sat, 26 Jan 2002 14:04:02 -0600 > > To: questions@freebsd.org > > Subject: Re: shells confusion > > From: "Mike Meyer" > > > > For those interested in *why* scripting in csh is a bad idea, I > > recommend . > > > > Please don't bother saying "this is fixed in FOOBARcsh". I believe > > you, but that doesn't help with the basic problem. > > > > Now, where did I leave that zsh manual??? > > I use zsh too. You can finetune it to the exact combination of tcsh- > and bash-like behavior you like. > > Oh, and the manual is in /usr/local/share/doc/zsh. :) > Well, what an interesting set of replies ! Someone has pointed out that the Bourne Shell does itself have some varieties. (For the person who mentioned it I believe that the original original Bourne Shell, as used on the 6th Edition, was re-written I recall for the 7th Edition, I am not even sure if it was by Mr Bourne. The original had a "goto" statement implemented if I recall correctly as an external program ..!. I once had the "pleasure" of putting some changes into the 6th Edition shell to create a restricted shell, which did not exist then. That was fine if you knew Algol68, which is what Mr Bourne loved, and he used the "C" preprocessor to full extent to try and make "C" look like Algol68). That aside, as someone who has worked for years in multi-Unix environments I have never had any significant problem in moving Bourne shell scripts from one platform to another. I was also used the Korn shell for day to to day use. I found it, to have a Heinz like variety of differences betweent platforms, especially to do with the treatment of aliases and functions, which seemed inconsistent even when -- which gives you the ksh version number -- said the same thing. I have never used pdksh, so I cannot speak for that. That aside, everyone knows that "sh" lacks a lot that is found in bash, ksh and zsh. But for all practical purposes these are super (or in the case of zsh super-super) sets of "the shell". So learning to script in sh gives you a) a knowledge of writing portable scripts and b) a good ground for learning any of the other sh-like shells. And yes, as noted on the manual page, bash is huge and slow, neither of which I find a reason to *not* use it, since speed is rarely an issue in a shell script (it would not be written in script if speed was a critical issue in the first place). I am making a transition on these systems from having hosts here based on Linux to ones based on FreeBSD. I have a huge number of scripts written using bash facilities (since at the time of writing they were not intended for use outside of the Linux environment), except for changing the "#!" line and the names/ parametersi/locations for some external commands (which is inevitable, show me how to write portable commands to the "route" program) not a single one has needed a change. So, from all this I think the majority advice still seems to be "sh --> sh-variants" for scripting, choose your poison for interactive use. And to the csh die-hards, I just say "2>&1". -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 21: 7: 5 2002 Delivered-To: freebsd-questions@freebsd.org Received: from fedde.littleton.co.us (cfedde.dsl.frii.net [216.17.139.141]) by hub.freebsd.org (Postfix) with ESMTP id 6BE5637B417 for ; Sat, 26 Jan 2002 21:06:46 -0800 (PST) Received: from fedde.littleton.co.us (localhost [127.0.0.1]) by fedde.littleton.co.us (8.11.6/8.11.4) with ESMTP id g0R56i870725; Sat, 26 Jan 2002 22:06:44 -0700 (MST) Message-Id: <200201270506.g0R56i870725@fedde.littleton.co.us> To: Bernie Cc: freebsd-questions@FreeBSD.ORG Subject: Re: shells confusion In-Reply-To: <20020126020430.P175-100000@BLAST> From: Chris Fedde Date: Sat, 26 Jan 2002 22:06:44 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 26 Jan 2002 02:18:16 +0200 (EET) Bernie wrote: +------------------ | i'm a bit confused on which shell to pick from programming. | also i've been thinking of perl, but for the moment i think | i've got to learn at least how to do basic shell programming, | not only to write programs, but also to understand scrips that | come with the system. +------------------ When Bill Joy was a grad student at Berkeley he wrote the c-shell as a replacement for the /bin/sh that came on the tapes from AT&T. It was the first unix shell to have many of the neat command line features we love today (command completion, history, command editing, etc) but in an attempt to make the shell more like the "C" language he missed some of the more elegant features of the Bourne shell. Still the C-shell became the favorite of the Berkeley admins and was made the default shell for root. Since then there has been no compelling reason to change this default and so, it becomes kind of a "quaint local custom" for BSD boxes to have csh as root's shell. It is possible to program using the c-shell. I used it to write a student management system at a local community college back in the 80's before I was enlightened. An argument giving one side of the issues around using csh as a programming language can be found in a Usenet news article called "Csh Programming Considered Harmful" by Tom Christiansen. It is available at www.faqs.org/faqs/unix-faq/shell/csh-whynot and many ther places as well. Of course in these days there are many other shells to choose from. So these arguments are much less relevent than they were in the early 90's Good Luck! -- Chris Fedde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 21:10:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from m20.unixathome.org (m20.unixathome.org [216.187.106.227]) by hub.freebsd.org (Postfix) with ESMTP id 330F037B423; Sat, 26 Jan 2002 21:10:21 -0800 (PST) Received: by m20.unixathome.org (Postfix, from userid 1001) id E6B5D7A8E; Sun, 27 Jan 2002 00:10:04 -0500 (EST) From: Dan Langille To: freebsd-newbies@freebsd.org, freebsd-questions@freebsd.org Subject: The FreeBSD Diary: 2002-01-06 - 2002-01-26 Message-Id: <20020127051004.E6B5D7A8E@m20.unixathome.org> Date: Sun, 27 Jan 2002 00:10:04 -0500 (EST) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 . These are the articles posted during this period: 16-Jan : Your Makefile has been rebuilt. One very annoying failure of make buildworld... http://freebsddiary.org/badtime.php?2 14-Jan : And one port to install them all! Yeah, sorry, it\'s a cheap title... http://freebsddiary.org/meta-ports.php?2 12-Jan : Checklist for a new box Useful tools to have on each box http://freebsddiary.org/newbox-checklist.php?2 -- Dan Langille - DVL Software Limited The FreeBSD Diary - http://freebsddiary.org/ - practical examples FreshPorts - http://freshports.org/ - the place for ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 21:21:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id E487037B416 for ; Sat, 26 Jan 2002 21:21:46 -0800 (PST) Received: from [212.238.194.207] (helo=tanya.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16UhlB-000DlV-00 for freebsd-questions@freebsd.org; Sun, 27 Jan 2002 05:21:45 +0000 Received: by tanya.raggedclown.net (tanya.raggedclown.intra, from userid 500) id 23B42452B8; Sun, 27 Jan 2002 06:21:45 +0100 (CET) Date: Sun, 27 Jan 2002 06:21:45 +0100 From: Cliff Sarginson To: freebsd-questions@FreeBSD.ORG Subject: Re: leafnode question Message-ID: <20020127052145.GB1370@raggedclown.net> References: <20020127030828.L648-100000@BLAST> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020127030828.L648-100000@BLAST> User-Agent: Mutt/1.3.24i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Jan 27, 2002 at 03:32:47AM +0200, Bernie wrote: > > hello, > > i've just configured pine to work with getmail + leafnode > for reading email and news. it seems to be going ok, but > it seems i have a problem with leafnode. > > first, about my setup, it's workstation with dialup to isp. > no local network exists. only dialup. so i've been trying > to avoid running things like sendmail and nntp etc. > > it seems that leafnode doesn't run automaticaly on my configuration. > i'm not sure if i'm right, but from what i gathered, leafnode is > supposed to connect (run fetchnews) automaticaly when a client wants > to read news. Nope. > > so far, i got it to work, so i can read news from local directory > using pine, but if i want to see if there are new posts for a group > i got to run fetchmain manualy. > Yup. > also, if i try to read the body of a message, i get a message saying: > leafnode... message ... has been marked for retrival. if i want to see > this nessage i have to run fetchmail manualy. is this the way it's > supposed to be working? i thought that when i select a group from > pine, leafnode would connect and get all new headers, and if i choose > a header, it would connect and retrieve the body... Nope. Leafnode is meant for you to create a little local news-server. When configured and you run "fetchnews" for the first time it will download all the info on the news-groups your up-stream news feed supports. Generally when users subscribe to a newsgroup the headers for that group will be downloaded at the next fetchnews run. Your users should indicate that their news-server is now ..wherever it is on your network. When they run up their news program and mark a message for reading it does what you say, it marks it for retrieval. Subsequent runs of fetchnews will get the messages so marked. (I don't think you would want it to fire off a new connection every time you mark a message for reading!). Normally you would run fetchnews from a cron job, or by hand if you like, once/twice a day or whatever. You can however configure it differently, and for a dial-up much more expensively, so that when any newsgroup is subscribed to not only the headers but the body of the message is also downloaded for the all messages in the group (up to a configurable maximum). This is fine if you are not paying telephone/connection time charges, but otherwise can be very expensive. I do it this way, but I have a fixed price 24/7 ADSL link so it has no cost implications for me. When I was using a dial-up ISDN line I was much more circumspect ! -- Regards Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 21:31: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hermes.pressenter.com (hermes.pressenter.com [209.224.20.19]) by hub.freebsd.org (Postfix) with ESMTP id A5C8B37B400 for ; Sat, 26 Jan 2002 21:31:04 -0800 (PST) Received: from [209.224.35.130] (helo=daggar.sbgnet.net) by hermes.pressenter.com with smtp (Exim 3.16 #1) id 16Uhu6-00079B-00 for freebsd-questions@FreeBSD.ORG; Sat, 26 Jan 2002 23:30:59 -0600 Date: Sat, 26 Jan 2002 23:31:36 -0600 From: Stephen Hilton To: FreeBSD Questions Subject: Re: shells confusion Message-Id: <20020126233136.6b2b12eb.nospam@hiltonbsd.com> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i386--freebsd4.5) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Have the distfile locations been fixed for the ksh93 port Last time I tried to install ksh93 it was a no-go due to the source file locations changing. Regards, Stephen Hilton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 21:57:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from radwaste.oaep.go.th (ppp38.modem56.actconnect.net [203.155.127.38]) by hub.freebsd.org (Postfix) with ESMTP id 07D5137B41B for ; Sat, 26 Jan 2002 21:57:12 -0800 (PST) Received: (from pirat@localhost) by radwaste.oaep.go.th (8.11.6/8.11.3) id g0R6F2D02658; Sun, 27 Jan 2002 13:15:02 +0700 (ICT) (envelope-from pirat@access.inet.co.th) X-Authentication-Warning: radwaste.oaep.go.th: pirat set sender to pirat@access.inet.co.th using -f Date: Sun, 27 Jan 2002 13:14:58 +0700 From: pirat To: Joe & Fhe Barbish Cc: questions@FreeBSD.ORG Subject: Re: ppp -nat ISP does not work Message-ID: <20020127131458.B1106@radwaste.oaep.go.th> Mail-Followup-To: pirat , Joe & Fhe Barbish , questions@FreeBSD.ORG References: <20020127035842.A1106@radwaste.oaep.go.th> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="i9LlY+UWpKt15+FH" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from barbish@a1poweruser.com on Sat, Jan 26, 2002 at 04:09:19PM -0500 X-Operating-System: FreeBSD-4.4 STABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --i9LlY+UWpKt15+FH Content-Type: text/plain; charset=us-ascii Content-Disposition: inline hi sirs, it works ! great !! what's a secret behide this? afaik, from the first log file, i have been connected, authenticated but not yet got ip number from the far side. i deeply appreciate for your assistant. both log file and ppp.conf for the default section are attached. i edited the log file ang ppp.conf to save space. with best regards, psr On Sat, Jan 26, 2002 at 04:09:19PM -0500, Joe & Fhe Barbish wrote: > From: "Joe & Fhe Barbish" > > Change ppp.conf this way. > Start it this way ppp -ddial -nat makham > Post complete ppp.conf, need to see default section. > Post ppp.log from this test. > > makham: > # allow users pnt pirat proj-A > set phone "4711" > set authkey XXXXX > set authname XXXXX > # accept pap > # enable pap > set login > set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 > # delete ALL > add default HISADDR --i9LlY+UWpKt15+FH Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="PPP.ACT.ok" #tail -160 /var/log/ppp.log and editted to save space LCP: AUTHPROTO[4] 0xc023 (PAP) LCP: MAGICNUM[6] 0x8bb76228 LCP: PROTOCOMP[2] LCP: ACFCOMP[2] LCP: ENDDISC[12] Local Addr: cc_as5300 LCP: deflink: SendConfigAck(90) state = Req-Sent LCP: ACCMAP[6] 0x000a0000 LCP: AUTHPROTO[4] 0xc023 (PAP) LCP: MAGICNUM[6] 0x8bb76228 LCP: PROTOCOMP[2] LCP: ACFCOMP[2] LCP: ENDDISC[12] Local Addr: cc_as5300 LCP: deflink: State change Req-Sent --> Ack-Sent LCP: deflink: SendConfigReq(1) state = Ack-Sent LCP: ACFCOMP[2] LCP: PROTOCOMP[2] LCP: ACCMAP[6] 0x00000000 LCP: MRU[4] 1500 LCP: MAGICNUM[6] 0x12050e7a LCP: deflink: RecvConfigReq(91) state = Ack-Sent LCP: ACCMAP[6] 0x000a0000 LCP: AUTHPROTO[4] 0xc023 (PAP) LCP: MAGICNUM[6] 0x8bb771b9 LCP: PROTOCOMP[2] LCP: ACFCOMP[2] LCP: MRRU[4] 1524 LCP: ENDDISC[12] Local Addr: cc_as5300 LCP: deflink: SendConfigRej(91) state = Ack-Sent LCP: MRRU[4] 1524 LCP: deflink: State change Ack-Sent --> Req-Sent LCP: deflink: RecvConfigAck(1) state = Req-Sent LCP: deflink: State change Req-Sent --> Ack-Rcvd LCP: deflink: RecvConfigReq(92) state = Ack-Rcvd LCP: ACCMAP[6] 0x000a0000 LCP: AUTHPROTO[4] 0xc023 (PAP) LCP: MAGICNUM[6] 0x8bb771b9 LCP: PROTOCOMP[2] LCP: ACFCOMP[2] LCP: ENDDISC[12] Local Addr: cc_as5300 LCP: deflink: SendConfigAck(92) state = Ack-Rcvd LCP: ACCMAP[6] 0x000a0000 LCP: AUTHPROTO[4] 0xc023 (PAP) LCP: MAGICNUM[6] 0x8bb771b9 LCP: PROTOCOMP[2] LCP: ACFCOMP[2] LCP: ENDDISC[12] Local Addr: cc_as5300 LCP: deflink: State change Ack-Rcvd --> Opened LCP: deflink: LayerUp Phase: bundle: Authenticate Phase: deflink: his = PAP, mine = none Phase: Pap Output: makham ******** Phase: Pap Input: SUCCESS () IPCP: Using trigger address 0.0.0.0 CCP: FSM: Using "deflink" as a transport CCP: deflink: State change Initial --> Closed CCP: deflink: LayerStart. CCP: MPPE: Not usable without CHAP81 CCP: deflink: SendConfigReq(1) state = Closed CCP: DEFLATE[4] win 15 CCP: PRED1[2] CCP: deflink: State change Closed --> Req-Sent Phase: deflink: lcp -> open Phase: bundle: Network IPCP: FSM: Using "deflink" as a transport IPCP: deflink: State change Initial --> Closed IPCP: deflink: LayerStart. IPCP: deflink: SendConfigReq(1) state = Closed IPCP: IPADDR[6] 0.0.0.0 IPCP: COMPPROTO[6] 16 VJ slots with slot compression IPCP: deflink: State change Closed --> Req-Sent IPCP: deflink: RecvConfigReq(1) state = Req-Sent IPCP: IPADDR[6] 203.155.127.62 IPCP: deflink: SendConfigAck(1) state = Req-Sent IPCP: IPADDR[6] 203.155.127.62 IPCP: deflink: State change Req-Sent --> Ack-Sent CCP: deflink: RecvConfigReq(1) state = Req-Sent CCP: MPPE[6] value 0x00000001 ( bits, stateful, compressed) CCP: MPPE: Not usable without CHAP81 CCP: deflink: SendConfigRej(1) state = Req-Sent CCP: MPPE[6] value 0x00000001 ( bits, stateful, compressed) CCP: deflink: RecvConfigRej(1) state = Req-Sent CCP: DEFLATE[4] win 15 CCP: MPPE: Not usable without CHAP81 CCP: deflink: SendConfigReq(2) state = Req-Sent CCP: PRED1[2] IPCP: deflink: RecvConfigRej(1) state = Ack-Sent IPCP: COMPPROTO[6] 16 VJ slots with slot compression IPCP: deflink: SendConfigReq(2) state = Ack-Sent IPCP: IPADDR[6] 0.0.0.0 CCP: deflink: RecvConfigReq(2) state = Req-Sent CCP: LZS-DCP[6] CCP: deflink: SendConfigRej(2) state = Req-Sent CCP: LZS-DCP[6] CCP: deflink: RecvConfigAck(2) state = Req-Sent CCP: deflink: State change Req-Sent --> Ack-Rcvd IPCP: deflink: RecvConfigNak(2) state = Ack-Sent IPCP: IPADDR[6] 203.155.127.38 IPCP: IPADDR[6] changing address: 0.0.0.0 --> 203.155.127.38 IPCP: deflink: SendConfigReq(3) state = Ack-Sent IPCP: IPADDR[6] 203.155.127.38 CCP: deflink: RecvConfigReq(3) state = Ack-Rcvd CCP: STAC[5] CCP: deflink: SendConfigRej(3) state = Ack-Rcvd CCP: STAC[5] IPCP: deflink: RecvConfigAck(3) state = Ack-Sent IPCP: deflink: State change Ack-Sent --> Opened IPCP: deflink: LayerUp. IPCP: myaddr 203.155.127.38 hisaddr = 203.155.127.62 Command: makham: delete ALL Command: makham: add 0 0 HISADDR CCP: deflink: RecvConfigReq(4) state = Ack-Rcvd CCP: STAC[5] CCP: deflink: SendConfigRej(4) state = Ack-Rcvd CCP: STAC[5] CCP: deflink: RecvConfigReq(5) state = Ack-Rcvd CCP: PRED1[2] CCP: deflink: SendConfigAck(5) state = Ack-Rcvd CCP: PRED1[2] CCP: deflink: State change Ack-Rcvd --> Opened CCP: deflink: LayerUp. CCP: Predictor1: Input channel reset CCP: Predictor1: Output channel reset CCP: deflink: Out = PRED1[1], In = PRED1[1] LCP: deflink: RecvEchoRequest(1) state = Opened LCP: deflink: SendEchoReply(1) state = Opened LCP: deflink: RecvEchoRequest(2) state = Opened LCP: deflink: SendEchoReply(2) state = Opened LCP: deflink: RecvEchoRequest(3) state = Opened LCP: deflink: SendEchoReply(3) state = Opened LCP: deflink: RecvEchoRequest(4) state = Opened LCP: deflink: SendEchoReply(4) state = Opened LCP: deflink: RecvEchoRequest(5) state = Opened LCP: deflink: SendEchoReply(5) state = Opened LCP: deflink: RecvEchoRequest(6) state = Opened LCP: deflink: SendEchoReply(6) state = Opened Phase: deflink: HDLC errors -> FCS: 3, ADDR: 0, COMD: 0, PROTO: 0 LCP: deflink: RecvEchoRequest(7) state = Opened LCP: deflink: SendEchoReply(7) state = Opened LCP: deflink: RecvEchoRequest(8) state = Opened LCP: deflink: SendEchoReply(8) state = Opened LCP: deflink: RecvEchoRequest(9) state = Opened LCP: deflink: SendEchoReply(9) state = Opened LCP: deflink: RecvEchoRequest(10) state = Opened LCP: deflink: SendEchoReply(10) state = Opened LCP: deflink: RecvEchoRequest(11) state = Opened LCP: deflink: SendEchoReply(11) state = Opened LCP: deflink: RecvEchoRequest(12) state = Opened LCP: deflink: SendEchoReply(12) state = Opened LCP: deflink: RecvEchoRequest(13) state = Opened LCP: deflink: SendEchoReply(13) state = Opened LCP: deflink: RecvEchoRequest(14) state = Opened LCP: deflink: SendEchoReply(14) state = Opened LCP: deflink: RecvEchoRequest(15) state = Opened LCP: deflink: SendEchoReply(15) state = Opened LCP: deflink: RecvEchoRequest(16) state = Opened LCP: deflink: SendEchoReply(16) state = Opened LCP: deflink: RecvEchoRequest(17) state = Opened LCP: deflink: SendEchoReply(17) state = Opened LCP: deflink: RecvEchoRequest(18) state = Opened LCP: deflink: SendEchoReply(18) state = Opened --i9LlY+UWpKt15+FH Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="PPP.default" ################################################################# # # PPP Sample Configuration File # # Originally written by Toshiharu OHNO # # $Id: ppp.conf.sample,v 1.33 1998/10/03 13:12:14 brian Exp $ # ################################################################# # This file is separated into sections. Each section is named with # a label starting in column 0 and followed directly by a ``:''. The # section continues until the next section. Blank lines and lines # beginning with ``#'' are ignored. # # Lines beginning with "!include" will ``include'' another file. You # may want to ``!include ~/.ppp.conf'' for backwards compatibility. # # Default setup. Always executed when PPP is invoked. # This section is *not* loaded by the ``load'' or ``dial'' commands. # # This is the best place to specify your modem device, it's DTR rate, # and any logging specification. Logging specs should be done first # so that subsequent commands are logged. # default: set log Phase Chat LCP IPCP CCP tun command set device /dev/cuaa2 # set speed 115200 set speed 57600 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" AT OK-AT-OK ATE1Q0 OK \\dATL1M1DT\\T TIMEOUT 40 CONNECT" allow users pirat tarika pnt manee proj-a # set timeout 180 set timeout 0 set redial 5 0 makham: allow users pnt pirat proj-A set phone "028070707" set authkey XXXX set authname XXXX # accept pap # enable pap # set login "sername: makham ssword: zemski9" set login set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 # delete ALL add default HISADDR # Client side PPP # # Although the PPP protocol is a peer to peer protocol, we normally # consider the side that makes the connection as the client and the # side that receives the connection as the server. Authentication # is required by the server either using a unix-style login proceedure # or by demanding PAP or CHAP authentication from the client. # # An on demand example where we have dynamic IP addresses: # If the peer assigns us an arbitrary IP (most ISPs do this) and we # can't predict what their IP will be either, take a wild guess at # some IPs that you can't currently route to. # # The /0 bit in "set ifaddr" says that we insist on 0 bits of the # specified IP actually being correct, therefore, the other side can assign # any IP numbers. # # The forth arg to "set ifaddr" makes us send "0.0.0.0" as our requested # IP number, forcing the peer to make the decision. # # This entry also works with static IP numbers or when not in -auto mode. # The ``add'' line adds a `sticky' default route that will be updated if # and when any of the IP numbers are changed in IPCP negotiations. # The "set ifaddr" is required in -auto mode. # # Finally, the ``enable dns'' bit tells ppp to ask the peer for the # nameserver addresses that should be used. This isn't always supported # by the other side, but if it is, /etc/resolv.conf will automatically be # updated. # pmdemand: set phone 1234567 set login "ABORT NO\\sCARRIER TIMEOUT 5 ogin:--ogin: ppp word: ppp" set timeout 120 set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 add default HISADDR enable dns # When we want to use PAP or CHAP instead of using a unix-style login # proceedure, we do the following. Note, the peer suggests whether we # should send PAP or CHAP. By default, we send whatever we're asked for. # PAPorCHAPpmdemand: set phone 1234567 set login set authname MyName set authkey MyKey set timeout 120 set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 add default HISADDR enable dns # On demand dialup example with static IP addresses: # Here, the local side uses 192.244.185.226 and the remote side # uses 192.244.176.44. # # # ppp -auto ondemand # # With static IP numbers, our setup is similar to dynamic: # Remember, ppp.linkup is searched for a "192.244.176.44" label, then # a "ondemand" label, and finally the "MYADDR" label. # ondemand: set phone 1234567 set login "ABORT NO\\sCARRIER TIMEOUT 5 ogin:--ogin: ppp word: ppp" set timeout 120 set ifaddr 192.244.185.226 192.244.176.44 add default HISADDR enable dns # Example segments # # The following lines may be included as part of your configuration # section and aren't themselves complete. They're provided as examples # of how to achieve different things. examples: # Multi-phone example. Numbers separated by a : are used sequentially. # Numbers separated by a | are used if the previous dial or login script # failed. Usually, you will prefer to use only one of | or :, but both # are allowed. # set phone 12345678|12345679:12345670|12345671 # # Ppp can accept control instructions from the ``pppctl'' program. # First, you must set up your control socket. It's safest to use # a UNIX domain socket, and watch the permissions: # set server /var/tmp/internet MySecretPassword 0177 # # Although a TCP port may be used if you want to allow control # connections from other machines: # set server 6670 MySecretpassword # # If you don't like ppp's builtin chat, use an external one: # set login "\"!chat \\\\-f /etc/ppp/ppp.dev.chat\"" # # If we have a ``strange'' modem that must be re-initialized when we # hangup: # set hangup "\"\" AT OK-AT-OK ATZ OK" # # To adjust logging withouth blasting the setting in default: # set log -command +tcp/ip # # To see log messages on the screen in interactive mode: # set log local LCP IPCP CCP # # If you're seeing a lot of magic number problems and failed connections, # try this (see the man page): # set openmode active 5 # # For noisy lines, we may want to reconnect (up to 20 times) after loss # of carrier, with 3 second delays between each attempt: # set reconnect 3 20 # # When playing server for M$ clients, tell them who our NetBIOS name # servers are: # set nbns 10.0.0.1 10.0.0.2 # # Inform the client if they ask for our DNS IP numbers: # enable dns # # If you don't want to tell them what's in your /etc/resolf.conf file # with `enable dns', override the values: # set dns 10.0.0.1 10.0.0.2 # # If we're using the -alias switch, redirect ftp and http to an internal # machine: # alias port 10.0.0.2:ftp ftp alias port 10.0.0.2:http http # # or don't trust the outside at all # alias deny_incoming yes # # I trust user brian to run ppp, so this goes in the `default' section: # allow user brian # # But label `internet' contains passwords that even brian can't have, so # I empty out the user access list in that section so that only root can # have access: # allow users # # I also may wish to set up my ppp login script so that it asks the client # for the label they wish to use. I may only want user ``dodgy'' to access # their own label in direct mode: # dodgy: allow user dodgy allow mode direct # # If we don't want ICMP and DNS packets to keep the connection alive: # set filter alive 0 deny icmp set filter alive 1 deny udp src eq 53 set filter alive 2 deny udp dst eq 53 set filter alive 3 permit 0 0 # # And we don't want ICMPs to cause a dialup: # set filter dial 0 deny icmp set filter dial 1 permit 0 0 # # or any TCP SYN or RST packets (badly closed TCP channels): # set filter dial 2 deny 0 0 tcp syn finrst # # Once the line's up, allow connections for ident (113), telnet (23), # ftp (20 & 21), DNS (53), my place of work (192.244.191.0/24), # ICMP (ping) and traceroute (>33433). # # Anything else is blocked by default # set filter in 0 permit tcp dst eq 113 set filter out 0 permit tcp src eq 113 set filter in 1 permit tcp src eq 23 estab set filter out 1 permit tcp dst eq 23 set filter in 2 permit tcp src eq 21 estab set filter out 2 permit tcp dst eq 21 set filter in 3 permit tcp src eq 20 dst gt 1023 set filter out 3 permit tcp dst eq 20 set filter in 4 permit udp src eq 53 set filter out 4 permit udp dst eq 53 set filter in 5 permit 192.244.191.0/24 0/0 set filter out 5 permit 0/0 192.244.191.0/24 set filter in 6 permit icmp set filter out 6 permit icmp set filter in 7 permit udp dst gt 33433 set filter out 7 permit udp dst gt 33433 # Server side PPP # If you want the remote system to authenticate itself, you insist # that the peer uses CHAP (or PAP) with the "enable" keyword. Both CHAP and # PAP are disabled by default (we usually only "enable" one of them if the # other side is dialing into our server). # When the peer authenticates itself, we use ppp.secret for verification. # # Ppp is launched with: # # ppp -direct CHAPserver # # Note: We can supply a third field in ppp.secret specifying the IP address # for that user. We can even specify a forth field to specify the # ppp.link{up,down} label to use. # CHAPserver: enable chap enable proxy set ifaddr 192.244.176.44 292.244.184.31 accept dns # If we wish to act as a server, allowing PAP access according to # accounts in /etc/passwd, we do this (Without `enable passwdauth', # you may still enter ``*'' as the users password in ppp.secret and # ppp will look it up in the passwd database. This is useful if you # need to assign a special label or IP number or range): # PAPServerwithPASSWD: enable pap enable passwdauth enable proxy set ifaddr 192.244.176.44 292.244.184.31 accept dns # Example to connect using a null-modem cable: # The important thing here is to allow the lqr packets on both sides. # Without them enabled, we can't tell if the line's dropped - there # should always be carrier on a direct connection. # Here, the server sends lqr's every 10 seconds and quits if five in a # row fail. # # Make sure you don't have "deny lqr" in your default: on the client ! # If the peer denies LQR, we still send ECHO LQR packets at the given # lqrperiod interval (ppp-style-pings). # direct-client: set dial "" set line /dev/cuaa0 set sp 115200 set timeout 900 set lqrperiod 10 set log Phase Chat LQM set login "ABORT NO\\sCARRIER TIMEOUT 5 ogin:--ogin: ppp word: ppp HELLO" set ifaddr 10.0.4.2 10.0.4.1 enable lqr accept lqr direct-server: set timeout 0 set lqrperiod 10 set log Phase LQM set ifaddr 10.0.4.1 10.0.4.2 enable lqr accept lqr # Example to connect via compuserve (who insist on 7 bits even parity # during the chat phase). # compuserve: set phone 1234567 set parity even set login "TIMEOUT 10 \"\" \"\" Name: CIS ID: 99999,9999/go:pppconnect \ word: XXXXXXXX" set timeout 300 set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 delete ALL add default HISADDR # Example for PPP over TCP. # We assume that inetd on tcpsrv.mynet has been # configured to run "ppp -direct tcp-server" when it gets a connection on # port 1234. Read the man page for further details # # Note, we assume we're using a binary-clean connection. If something # such as `rlogin' is involved, you may need to ``set escape 0xff'' # tcp-client: set device tcpsrv.mynet:1234 set dial set login set ifaddr 10.0.5.1 10.0.4.1 255.255.255.0 tcp-server: set ifaddr 10.0.4.1 10.0.5.1 255.255.255.0 # If you want to test ppp, do it through a loopback: # # Requires a line in /etc/services: # ppploop 6671/tcp # loopback ppp daemon # # and a line in /etc/inetd.conf: # ppploop stream tcp nowait root /usr/sbin/ppp ppp -direct loop-in # loop: set timeout 0 set log phase chat connect lcp ipcp command set device localhost:ppploop set dial set login set ifaddr 127.0.0.2 127.0.0.3 set server /var/tmp/loop "" 0177 loop-in: set timeout 0 set log phase lcp ipcp command allow mode direct # If you're going to create a tunnel through a public network, your VPN # should be set up something like this: # # /etc/ppp/secure (which should be executable) says: # #! /bin/sh # exec ssh whatevermachine /usr/sbin/ppp -direct loop-in # sloop: load loop set device !/etc/ppp/secure # If you wish to connect to a server that will dial back *without* using # the ppp callback facility (rfc1570), take advantage of the fact that # ppp doesn't look for carrier 'till `set login' is complete: # # Here, we expect the server to say DIALBACK then disconnect after # we've authenticated ourselves. When this has happened, we wait # 60 seconds for a RING. # dialback: set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" ATZ OK-ATZ-OK \ ATDT\\T TIMEOUT 60 CONNECT" set login "TIMEOUT 5 ogin:--ogin: ppp word: ppp TIMEOUT 15 DIALBACK \ \"\" NO\\sCARRIER \"\" TIMEOUT 60 RING ATA CONNECT" # Alternatively, if the peer is using the PPP callback protocol, use # normal dial and login scripts and add # set callback auth cbcp e.164 1234567 set cbcp 1234567 # If we're running a ppp server that wants to only call back microsoft # clients on numbers configured in /etc/ppp/ppp.secret (the 5th field): # set callback cbcp set cbcp set log +cbcp set redial 3 1 set device /dev/cuaa0 set speed 115200 set dial "TIMEOUT 10 \"\" AT OK-AT-OK ATDT\\T CONNECT" # Or if we want to allow authenticated clients to specify their own # callback number, use this ``set cbcp'' line instead: # set cbcp * # Multilink mode is available (rfc1990). # To enable multilink capabilities, you must specify a MRRU. 1500 is # a reasonable value. To create new links, use the ``clone'' command # to duplicate an existing link. If you already have more than one # link, you must specify which link you wish to run the command on via # the ``link'' command. # # You can now ``dial'' specific links, or even dial all links at the # same time. The `dial' command may also be prefixed with a specific # link that should do the dialing. # mloop: load loop set mode interactive set mrru 1500 clone 1 2 3 link deflink remove # dial # link 2 dial # link 3 dial mloop-in: set timeout 0 set log tun phase allow mode direct set mrru 1500 install: set speed 115200 set device /dev/cuaa1 set ifaddr 202.44.64.54 0 255.255.255.0 0.0.0.0 set timeout 0 enable dns set log local phase set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT" set login set authname 77142@inetaccess set authkey Pa!racH7 set phone 2065001 install: set speed 115200 set device /dev/cuaa1 set ifaddr 202.44.64.54 0 255.255.255.0 0.0.0.0 set timeout 0 enable dns set log local phase set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT" set login set authname 77142@inetaccess set authkey Pa!racH7 set phone 6400333 --i9LlY+UWpKt15+FH-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 22:20: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from cody.jharris.com (cody.jharris.com [205.238.128.83]) by hub.freebsd.org (Postfix) with ESMTP id 168AE37B417 for ; Sat, 26 Jan 2002 22:19:59 -0800 (PST) Received: from localhost (nick@localhost) by cody.jharris.com (8.11.1/8.9.3) with ESMTP id g0R6MwU06391; Sun, 27 Jan 2002 00:22:59 -0600 (CST) (envelope-from nick@rogness.net) Date: Sun, 27 Jan 2002 00:22:58 -0600 (CST) From: Nick Rogness X-Sender: nick@cody.jharris.com To: Allen Landsidel Cc: Doug Reynolds , "freebsd-questions@FreeBSD.ORG" Subject: Re: multihomed routing woes.. In-Reply-To: <20020121223922.8AAE04844F@wastegate.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 21 Jan 2002, Doug Reynolds wrote: > On Sun, 20 Jan 2002 21:15:30 -0500, Allen Landsidel wrote: > > >> > >> The real problem here is that you are running publics on your > >> inside. Why are you doing this and not using static nat for this? > > > > Why should I use nat if I'm paying for an IP block? The lan is not an > > intranet, it's a bunch of "real" servers out on the internet. You didn't understand me, sorry if I didn't explain in detail. You still use your Public address space, except you let nat on the firewall dish out address space via -redirect_address directives as explained by Mr. Reynolds below. > > someone will probably tell me that this is way out of line and maybe > twisted, and you'd probably need a killer firewall machine but hear > goes: > > 1) assign all your ip addresses (that you need) of your server bank LAN > to the nic card in your main firewall machine > 2) assign private addresses to everything > 2) run NATD and put redirect_address statements in a configuration > files for each one of your servers > 3) firewall out all the ports you don't want going to which ever > machine. i'd at least leave open a ssh port open on all the servers so > you can change the configuration. > > the only problem i see is that this must take up to much resources, and > defeat the purpose of having individual servers :) > This is not entirely a bad thing to do. I would not bind the addresses to the NIC. Instead I would route the IP block via the upstream router to the firewall. That way no address binding is needed and natd is still happy. Either way is still a legal play. The resouces used would be minimal if the traffic was reasonable. > or, dump all the ips and NATD everything. > > that only plus on having the above config would be you'd have seperate > ip address for each host, whereas you'd have to CNAME everything just > to NATd everything Nick Rogness - Don't mind me...I'm just sniffing your packets To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Jan 26 23:45:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from web9305.mail.yahoo.com (web9305.mail.yahoo.com [216.136.129.54]) by hub.freebsd.org (Postfix) with SMTP id CBD4D37B423 for ; Sat, 26 Jan 2002 23:44:17 -0800 (PST) Message-ID: <20020127074417.96162.qmail@web9305.mail.yahoo.com> Received: from [212.65.129.53] by web9305.mail.yahoo.com via HTTP; Sat, 26 Jan 2002 23:44:17 PST Date: Sat, 26 Jan 2002 23:44:17 -0800 (PST) From: Omer Faruk Sen Subject: /kernel: sio1: 2 more silo overflows To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have started to have that error messages in my system after making world of 23 Jan. They start to appear after connecting to internet with my ppp account. What they might be? Any ideas? I think that can be sth with my ISP's access servers. Here is error messages: an 26 21:20:38 balli /kernel: sio1: 2 more silo overflows (total 628) Jan 26 21:20:42 balli /kernel: sio1: 3 more silo overflows (total 631) Jan 26 21:20:43 balli /kernel: sio1: 4 more silo overflows (total 635) Jan 26 21:20:44 balli /kernel: sio1: 6 more silo overflows (total 641) Jan 26 21:20:47 balli /kernel: sio1: 2 more silo overflows (total 643) Jan 26 21:20:48 balli /kernel: sio1: 16 more silo overflows (total 659) Jan 26 21:20:52 balli /kernel: sio1: 2 more silo overflows (total 661) Jan 26 21:20:53 balli /kernel: sio1: 5 more silo overflows (total 666) Jan 26 21:20:54 balli /kernel: sio1: 1 more silo overflow (total 667) Jan 26 21:20:55 balli /kernel: sio1: 3 more silo overflows (total 670) Jan 26 21:20:56 balli /kernel: sio1: 3 more silo overflows (total 673) Jan 26 21:20:57 balli /kernel: sio1: 3 more silo overflows (total 676) Jan 26 21:20:58 balli /kernel: sio1: 12 more silo overflows (total 688) Jan 26 21:20:59 balli /kernel: sio1: 3 more silo overflows (total 691) PS: I have installed 4.2R and started to 'make world' after that. Never installed a fresh Release after that. (I'm not sure if that helps but wrote it for debugging) __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
=1B$B!J$J$*!"%^%K%e%"%kFbMF$O=1B(BWeb=1B$B$G!"1Q8l!"F|K\8l$K$+$+= $o$i$:8x3+$5$l$F$$$k$b$N$N%O!<%I%3%T!<$H$7$F$O$+$J$j$NNL0u:~$7$J$1$l$P$J$= i$J$$$f$(!"$$$C$=3D=1B(B1=1B$B:}$NK\$K$J$C$F$$$k$b$N$r$H;W$C$F$$$^$9!K=1B= (B